@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : BEM（FLOU）をベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://use.fontawesome.com/releases/v5.15.1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1239px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1240px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1239px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1240px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 599px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 600px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: 16px;
}

html {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  min-width: 375px;
  padding: 0px;
  color: #2E2E2E;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

button,
input[type=button],
input[type=submit] {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #376EC4;
  text-decoration: underline;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

body._ios a:hover {
  opacity: 1;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
body {
  padding-top: 76px;
}
@media (max-width: 1023px) {
  body {
    padding-top: 60px;
  }
}

.l-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #E6E6E6;
  background-color: #fff;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  background-color: #fff;
  z-index: 2;
  overflow: hidden;
}
.l-header__logo {
  margin: 0;
  color: #000;
  line-height: 0;
}
.l-header__logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.l-header__gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
@media (max-width: 1023px) {
  .l-header {
    height: 60px;
  }
  .l-header__inner {
    padding: 8px 70px 8px 20px;
  }
  .l-header__logo {
    width: 220px;
  }
  .l-header__gnav {
    display: none;
  }
}

.c-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin: 0 0 0 -32px;
}
.c-gnav__item {
  position: relative;
  margin: 0 0 0 32px;
  line-height: 1.25;
  text-align: center;
}
.c-gnav__btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2E2E2E;
  font-weight: 700;
  text-decoration: none;
}
.c-gnav__btn:hover, .c-gnav__btn.-current {
  color: #376EC4;
  opacity: 1;
}
.c-gnav__contactBtn {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 15px 2em;
  border-radius: 10em;
  background: -webkit-gradient(linear, left top, right top, from(#FD7777), color-stop(25%, #9377BF), color-stop(50%, #0E74B8), color-stop(75%, #9377BF), to(#FD7777)) 100% 0/200% auto;
  background: linear-gradient(to right, #FD7777 0%, #9377BF 25%, #0E74B8 50%, #9377BF 75%, #FD7777 100%) 100% 0/200% auto;
  color: #fff;
  font-weight: 700;
  -webkit-transition: background 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: background 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.c-gnav__contactBtn:hover {
  background-position: 0 0;
  opacity: 1;
}
.c-gnav [data-gnav] {
  cursor: pointer;
}
@media (max-width: 1239px) {
  .c-gnav {
    margin-left: -24px;
  }
  .c-gnav__item {
    margin-left: 24px;
    font-size: 0.875rem;
  }
}

.l-megamenu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
.l-megamenu__contents {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
}
.l-megamenu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.l-megamenu__unitL {
  width: 18.6666666667%;
}
.l-megamenu__top {
  margin: 0;
  font-size: 1.375rem;
  color: #376EC4;
  font-weight: 700;
  line-height: 1.5;
}
.l-megamenu__topBtn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-right: 1.5em;
  color: #376EC4;
  text-decoration: none;
}
.l-megamenu__topBtn:hover .l-megamenu__topBtnIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.l-megamenu__topBtn:hover .l-megamenu__topBtnIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-megamenu__topBtnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  border-color: transparent;
  background-color: #376EC4;
  color: #fff;
}
.l-megamenu__topBtnIcon.-arrowRight::before, .l-megamenu__topBtnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.l-megamenu__topBtnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.l-megamenu__topBtnIcon.-arrowRight::before, .l-megamenu__topBtnIcon.-arrowRight::after {
  border-color: transparent;
}
.l-megamenu__unitR {
  width: 79.3333333333%;
}
.l-megamenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -24px -24px;
}
.l-megamenu__list > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(25% - 24px);
  margin: 0 0 24px 24px;
}
.l-megamenu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.l-megamenu__btn::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.l-megamenu__btn:hover {
  color: #376EC4;
  opacity: 1;
}
.l-megamenu__btn:hover .l-megamenu__btnIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.l-megamenu__btn:hover .l-megamenu__btnIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-megamenu__btn:hover::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-megamenu__btnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.75em);
  right: 0;
  color: #376EC4;
}
.l-megamenu__btnIcon.-arrowRight::before, .l-megamenu__btnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.l-megamenu__btnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.l-megamenu__btnIcon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.75em);
  right: 0;
  color: #376EC4;
}
.l-megamenu__btnIcon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.l-megamenu__btn.-disabled {
  color: #CCC;
  pointer-events: none;
}
.l-megamenu__btn.-disabled .l-megamenu__btnIcon {
  color: #CCC;
}

.l-menuLayer {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
}

.c-menuBtn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  z-index: 101;
  cursor: pointer;
}
.c-menuBtn__bar {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -13px;
}
.c-menuBtn__bar, .c-menuBtn__bar::before, .c-menuBtn__bar::after {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: "";
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-menuBtn__bar::before {
  top: -8px;
}
.c-menuBtn__bar::after {
  top: 8px;
}
.c-menuBtn.-open .c-menuBtn__bar {
  background-color: transparent;
}
.c-menuBtn.-open .c-menuBtn__bar::before {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-menuBtn.-open .c-menuBtn__bar::after {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 1023px) {
  .c-menuBtn {
    display: block;
  }
}

.l-spnav {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  max-height: calc(100% - 60px);
  z-index: 100;
}
.l-spnav__container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: calc(100vh - 60px);
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.l-spnav__container::-webkit-scrollbar {
  display: none;
}
.l-spnav__inner {
  display: block;
  padding: 20px 20px 40px;
}
.l-spnav__list > li {
  display: block;
  border-bottom: 1px solid #E6E6E6;
}
.l-spnav__contact {
  display: block;
  margin: 32px auto 0;
}
.l-spnav__contactBtn {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 1em 2em;
  border-radius: 10em;
  background: -webkit-gradient(linear, left top, right top, from(#FD7777), color-stop(25%, #9377BF), color-stop(50%, #0E74B8), color-stop(75%, #9377BF), to(#FD7777)) 100% 0/200% auto;
  background: linear-gradient(to right, #FD7777 0%, #9377BF 25%, #0E74B8 50%, #9377BF 75%, #FD7777 100%) 100% 0/200% auto;
  color: #fff;
  font-weight: 700;
  -webkit-transition: background 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: background 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.l-spnav__contactBtn:hover {
  background-position: 0 0;
  opacity: 1;
}
@media (min-width: 1024px) {
  .l-spnav {
    display: none !important;
  }
}

.c-spnav {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-spnav a {
  color: inherit;
  text-decoration: none;
}
.c-spnav a.-disabled {
  color: #CCC;
  pointer-events: none;
}
.c-spnav__primary {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #E6E6E6;
}
.c-spnav__secondary {
  display: none;
  font-size: 0.875rem;
  margin: 0;
  padding: 0 0 1rem;
  padding-left: 1.5em;
  line-height: 1.5;
}
.c-spnav__secondary > li::marker {
  color: #376EC4;
}
.c-spnav__secondary > li + li {
  margin-top: 0.75em;
}
.c-spnav__btn {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 1em 1.5em 1em 0;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
.c-spnav__btnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-spnav__btnIcon.-arrowRight::before, .c-spnav__btnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-spnav__btnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-spnav__btnIcon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-spnav__btnIcon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-spnav__btnIcon.-accordion {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-spnav__btnIcon.-accordion::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.5em;
  content: "";
  -webkit-mask: url(../img/icon-plus.svg) 50% 50%/cover;
          mask: url(../img/icon-plus.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-spnav__btn:hover {
  color: #376EC4;
  opacity: 1;
}
.c-spnav__btn.-open .c-spnav__btnIcon.-accordion::after {
  -webkit-mask-image: url(../img/icon-minus.svg);
          mask-image: url(../img/icon-minus.svg);
}

/**************************************************/
/* Footer */
/**************************************************/
.c-ftrContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: 400px;
  background: #999 url(../img/bg-grad.jpg) repeat-y center/100% auto;
  color: #fff;
  font-size: 2.75rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.c-ftrContact__main {
  display: block;
  letter-spacing: 0.05em;
}
.c-ftrContact__sub {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: block;
  margin-top: 0.75em;
  font-size: 0.3636363636em;
  font-weight: 500;
}
.c-ftrContact__icon {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.8181818182em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
  border-width: 0.0454545455em;
}
.c-ftrContact__icon::before, .c-ftrContact__icon::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-ftrContact__icon::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-ftrContact__icon::before, .c-ftrContact__icon::after {
  -webkit-mask-image: url(../img/icon-arrow-right-thin.svg);
          mask-image: url(../img/icon-arrow-right-thin.svg);
}
.c-ftrContact:hover .c-ftrContact__icon::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.c-ftrContact:hover .c-ftrContact__icon::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 767px) {
  .c-ftrContact {
    min-height: 200px;
    font-size: 1.75rem;
  }
  .c-ftrContact__sub {
    display: block;
    font-size: 0.4642857143em;
  }
  .c-ftrContact__icon {
    right: 20px;
    font-size: 1.1428571429em;
  }
}

.l-footer {
  position: relative;
  background-color: #F1F5F7;
  z-index: 5;
}
.l-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.l-footer__contact {
  display: block;
}
.l-footer__sitemap {
  padding: 80px 0;
}
.l-footer__bottom {
  padding: 24px 0;
  border-top: 2px solid #fff;
}
.l-footer__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__utility a {
  color: inherit;
  text-decoration: none;
}
.l-footer__utList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  font-size: 0.75rem;
  margin: 0 0 -1rem -1rem;
  line-height: 1.5;
}
.l-footer__utItem {
  display: block;
  margin: 0 0 1rem 1rem;
}
.l-footer__copyright {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-footer__sitemap {
    padding: 50px 0;
  }
  .l-footer__utility {
    display: block;
  }
  .l-footer__utList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer__copyright {
    margin: 16px 0 0;
    text-align: center;
  }
}

.c-ftrSitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.c-ftrSitemap__unitL {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 340px;
}
.c-ftrSitemap__unitR {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: calc(100% - 380px);
  max-width: 700px;
  margin-left: 40px;
}
.c-ftrSitemap__logo {
  margin: 0;
  line-height: 0;
}
.c-ftrSitemap__spnav {
  display: none;
}
.c-ftrSitemap__tel {
  display: block;
  margin: 20px 0 0;
}
.c-ftrSitemap__telHead {
  margin: 0;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
  font-size: 0.75rem;
  line-height: 1.25;
}
.c-ftrSitemap__telHead em {
  font-size: 0.8125rem;
  font-weight: 700;
}
.c-ftrSitemap__telNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 12px 0 0;
  line-height: 1.25;
}
.c-ftrSitemap__telFreecole {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-left: 40px;
  font-size: 1.375rem;
  color: #376EC4;
  font-weight: 700;
  text-decoration: none;
}
.c-ftrSitemap__telFreecole::after {
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  width: 32px;
  height: 30px;
  background: #2E2E2E;
  content: "";
  -webkit-mask: url(../img/icon-freecole.svg) no-repeat 50% 50%/contain;
          mask: url(../img/icon-freecole.svg) no-repeat 50% 50%/contain;
}
.c-ftrSitemap__telTime {
  display: inline-block;
  font-size: 0.75rem;
}
@media (max-width: 1023px) {
  .c-ftrSitemap {
    display: block;
  }
  .c-ftrSitemap__unitR {
    width: auto;
    max-width: none;
    margin: 40px 0 0;
  }
  .c-ftrSitemap__tel {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .c-ftrSitemap__logo {
    max-width: 77.6119402985%;
    margin: 0 auto;
    text-align: center;
  }
  .c-ftrSitemap__unitR {
    display: none;
  }
  .c-ftrSitemap__spnav {
    display: block;
    margin-top: 24px;
  }
}

.c-fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -16px -32px;
}
.c-fnav a {
  color: inherit;
  text-decoration: none;
}
.c-fnav a.-disabled {
  color: #CCC;
  pointer-events: none;
}
.c-fnav__unit {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(50% - 32px);
  margin: 0 0 16px 32px;
}
.c-fnav__unit > *:first-child {
  margin-top: 0 !important;
}
.c-fnav__primary {
  font-size: 1rem;
  margin: 1rem 0 0;
  font-weight: 700;
  line-height: 1.5;
}
.c-fnav__list {
  font-size: 0.875rem;
  margin: 0.875rem 0 0;
  padding-left: 1.5em;
  line-height: 1.5;
}
.c-fnav__list > li::marker {
  color: #376EC4;
}
.c-fnav__list > li + li {
  margin-top: 0.75em;
}
@media (max-width: 767px) {
  .c-fnav {
    display: none;
  }
}

/**************************************************/
/* components - layout */
/**************************************************/
.l-page-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.l-page-contents {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 20px;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}
.l-bcnav {
  position: relative;
  border-top: 1px solid #E6E6E6;
}
.l-bcnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 16px 20px;
}
.l-bcnav__list > li {
  position: relative;
  padding: 0.5em;
  font-size: 0.8125rem;
  line-height: 1.25;
}
.l-bcnav__list > li + li {
  margin-left: 1em;
}
.l-bcnav__list > li + li::after {
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  left: -1em;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-bcnav__list > li a {
  display: inline-block;
  color: inherit;
}
@media (max-width: 767px) {
  .l-bcnav {
    display: none;
  }
  .l-bcnav__list {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .l-bcnav__list > li {
    font-size: 0.625rem;
  }
}

.l-section {
  position: relative;
  padding: 100px 0 120px;
}
.l-section.-fill {
  background-color: #EEE;
}
@media (max-width: 767px) {
  .l-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.l-pagetitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 400px;
  padding: 0 5.8565153734%;
  overflow: hidden;
}
.l-pagetitle__textarea {
  position: relative;
  z-index: 1;
}
.l-pagetitle__textarea > *:first-child {
  margin-top: 0 !important;
}
.l-pagetitle__bgimg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 5.8565153734%;
  border-radius: 0 0 40px 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.l-pagetitle__bgimg img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eee;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .l-pagetitle {
    height: 280px;
  }
  .l-pagetitle.-recruit {
    height: 375px;
  }
  .l-pagetitle__bgimg {
    border-radius: 0 0 24px 0;
  }
}

.l-pagetitleB {
  position: relative;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .l-pagetitleB {
    padding-top: 40px;
  }
}

.l-block {
  display: block;
  position: relative;
  min-height: 368px;
  margin: 100px 0 0;
}
.l-block__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  width: calc((100vw - 100%) / 2 + 53.3333333333%);
  max-width: 100vw;
  height: 368px;
  margin: 0;
  background: no-repeat center/cover;
  overflow: hidden;
}
.l-block__img > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 40px 0 0 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-block__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 40%;
  margin: 0;
}
.l-block__content > *:first-child {
  margin-top: 0 !important;
}
.l-block.-reflect .l-block__img {
  right: auto;
  left: calc(50% - 50vw);
}
.l-block.-reflect .l-block__img > img {
  border-radius: 0 40px 40px 0;
}
.l-block.-reflect .l-block__content {
  margin-left: auto;
  margin-right: 0;
}
.l-block + .l-block {
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .l-block {
    min-height: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 400px;
  }
  .l-block__img {
    right: 0;
    width: 93.3333333333%;
  }
  .l-block__content {
    width: auto;
    padding: 0 6.6666666667%;
  }
  .l-block.-reflect .l-block__img {
    left: 0;
  }
}
@media (max-width: 767px) {
  .l-block {
    margin-top: 60px;
    padding-top: 204px;
  }
  .l-block__img {
    width: 94.6666666667%;
    height: 180px;
  }
  .l-block__img > img {
    border-radius: 12px 0 0 12px;
  }
  .l-block__content {
    padding: 0 5.3333333333%;
  }
  .l-block.-reflect .l-block__img {
    left: 0;
  }
  .l-block.-reflect .l-block__img > img {
    border-radius: 0 12px 12px 0;
  }
  .l-block + .l-block {
    margin-top: 60px;
  }
}

@media (max-width: 1023px) {
  .pg-business .l-block {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pg-business .l-block__img {
    position: relative;
    margin: 20px 0 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .pg-business .l-block.-reflect .l-block__img {
    margin: 20px auto 0 0;
  }
}
@media (max-width: 767px) {
  .pg-business .l-block__img {
    height: 200px;
  }
  .pg-business .l-block + .l-block {
    margin-top: 40px;
  }
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-footBanner {
  position: relative;
  padding: 80px 0;
  background: #EAF3FC;
}
.c-footBanner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -30px -30px;
}
.c-footBanner__list > li {
  width: 300px;
  margin: 0 0 30px 30px;
  line-height: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-footBanner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .c-footBanner__list {
    margin: 0 0 -12px -12px;
  }
  .c-footBanner__list > li {
    width: calc(50% - 12px);
    margin: 0 0 12px 12px;
  }
}

.c-jobInfo {
  position: relative;
  margin: 120px auto 0;
  padding: 120px 20px;
  border-radius: 24px;
  background: #eee url(../img/bg-recruit.jpg) center/cover;
  color: #fff;
}
.c-jobInfo > *:first-child {
  margin-top: 0 !important;
}
.c-jobInfo__more {
  max-width: 340px;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .c-jobInfo {
    margin-top: 60px;
    padding: 100px 20px;
    border-radius: 12px;
    background: url(../img/bg-recruit-sp.jpg) repeat-x center/auto 100%;
  }
}

.c-localnav {
  position: relative;
  margin: 120px 0 0;
  padding: 52px 60px 60px;
  border-radius: 6px;
  background: #F1F5F7;
}
.c-localnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -24px -40px;
  padding: 0;
}
.c-localnav__list > li {
  position: relative;
  width: calc(25% - 40px);
  margin: 0 0 24px 40px;
}
.c-localnav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding: 0.5em 0;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.c-localnav__btn::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-localnav__btn.-active {
  color: #376EC4;
  border-bottom: 1px solid #376EC4;
}
.c-localnav__btn:hover {
  color: #376EC4;
  opacity: 1;
}
.c-localnav__btn:hover .c-localnav__btnIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.c-localnav__btn:hover .c-localnav__btnIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-localnav__btn:hover::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-localnav__btnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-localnav__btnIcon.-arrowRight::before, .c-localnav__btnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-localnav__btnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-localnav__btnIcon.-arrowDown {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-localnav__btnIcon.-arrowDown::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-down.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-down.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-localnav__btnIcon.-arrowUp {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-localnav__btnIcon.-arrowUp::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-up.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-up.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-localnav__btnIcon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-localnav__btnIcon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
@media (max-width: 1023px) {
  .c-localnav {
    padding: 32px 40px 40px;
  }
  .c-localnav__list > li {
    width: calc(50% - 40px);
  }
}
@media (max-width: 767px) {
  .c-localnav {
    margin-top: 60px;
    padding: 16px 24px 24px;
  }
  .c-localnav__list {
    margin: 0;
  }
  .c-localnav__list > li {
    width: 100%;
    margin: 0;
  }
  .c-localnav__btn {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
}

.c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pager__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.c-pager__page > li {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: block;
  margin: 0 4px;
}
.c-pager__btn {
  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: 36px;
  height: 36px;
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 500;
  text-align: center;
}
.c-pager__btn.-current {
  color: #BCBCBC;
}
.c-pager__pageLink {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-pager__pageLink:hover {
  opacity: 1;
}
.c-pager__pageLink:hover .c-pager__btn {
  color: #376EC4;
  text-decoration: underline;
}
.c-pager__prev, .c-pager__next {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  text-align: center;
}
.c-pager__prev {
  margin-right: 16px;
}
.c-pager__next {
  margin-left: 16px;
}
.c-pager__icon {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.75em;
  overflow: hidden;
  color: #376EC4;
  top: calc(50% - 0.5em);
}
.c-pager__icon::before, .c-pager__icon::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-pager__icon::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-pager__icon.-arrowLeft {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1023px) {
  .c-pager__page > li {
    margin: 0 2px;
  }
  .c-pager__btn {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  .c-pager__prev, .c-pager__next {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  .c-pager__prev {
    margin-right: 8px;
  }
  .c-pager__next {
    margin-left: 8px;
  }
  .c-pager__icon {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    width: 1em;
    height: 1em;
    border: 0.0833333333em solid;
    border-radius: 50%;
    color: inherit;
    font-size: 1.4285714286em;
    overflow: hidden;
  }
  .c-pager__icon::before, .c-pager__icon::after {
    display: block;
    position: absolute;
    top: calc(50% - 0.5em);
    left: calc(50% - 0.5em);
    width: 1em;
    height: 1em;
    background: currentColor;
    font-size: 0.4666666667em;
    content: "";
    -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
            mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
    -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
    transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  }
  .c-pager__icon::after {
    opacity: 0;
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

.c-link {
  display: inline-block;
  position: relative;
  padding-right: 1.75em;
  color: inherit;
  text-decoration: none;
}
.c-link__icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.25em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-link__icon.-arrowRight::before, .c-link__icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-link__icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-link__icon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.25em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.c-link__icon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-link:hover {
  color: #376EC4;
  opacity: 1;
}
.c-link:hover .c-link__icon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.c-link:hover .c-link__icon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-text {
  margin: 1em 0 0;
  font-size: 1rem;
  line-height: 2;
}
@media (max-width: 1023px) {
  .c-text {
    font-size: 0.875rem;
  }
}

.c-signature {
  margin: 2em 0 0;
  line-height: 2;
  text-align: right;
}
@media (max-width: 1023px) {
  .c-signature {
    font-size: 0.875rem;
  }
}

.c-text-notfound {
  margin: 1.5em 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.c-text-notfound.-center {
  text-align: center;
}
@media (max-width: 1023px) {
  .c-text-notfound {
    font-size: 0.875rem;
  }
}

.c-headingA {
  position: relative;
  margin: 120px 0 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.c-headingA__main {
  display: block;
  letter-spacing: 0.05em;
}
.c-headingA__sub {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: block;
  margin-top: 0.75em;
  font-size: 0.3636363636em;
  color: #376EC4;
  font-weight: 500;
}
.c-headingA.-white {
  color: #fff;
}
.c-headingA.-white .c-headingA__sub {
  color: #fff;
}
.c-headingA.-left {
  text-align: left;
}
@media (max-width: 1023px) {
  .c-headingA {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .c-headingA {
    font-size: 1.75rem;
  }
  .c-headingA__sub {
    font-size: 0.4642857143em;
  }
}

.c-headingB {
  position: relative;
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #E6E6E6;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-headingB::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
}
@media (max-width: 1023px) {
  .c-headingB {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .c-headingB {
    font-size: 1.375rem;
  }
}

.c-headingC {
  position: relative;
  margin: 100px 0 0;
  padding-bottom: 0.6666666667em;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-headingC::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
}
.c-headingC + .c-text {
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .c-headingC {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-headingC {
    margin-top: 60px;
    font-size: 1.25rem;
  }
  .c-headingC + .c-text {
    margin-top: 1rem;
  }
}

.c-headingD {
  position: relative;
  margin: 60px 0 0;
  padding-bottom: 0.9090909091em;
  border-bottom: 2px solid #E6E6E6;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .c-headingD {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-headingD {
    margin-top: 40px;
    font-size: 1.125rem;
  }
}

.c-headingE {
  margin: 1.5em 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-headingE + .c-list,
.c-headingE + .c-listB,
.c-headingE + .c-orderList,
.c-headingE + .c-orderListB,
.c-headingE + .c-text {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-headingE {
    font-size: 0.875rem;
  }
}

.c-btnA {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  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-height: 68px;
  padding: 0.5em 3em;
  border: 2px solid #376EC4;
  border-radius: 10em;
  background-color: #376EC4;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.c-btnA.-noclick {
  cursor: default;
}
.c-btnA__icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.3333333333em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
}
.c-btnA__icon.-arrowRight::before, .c-btnA__icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-btnA__icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-btnA__icon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.3333333333em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
}
.c-btnA__icon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-btnA__label {
  display: inline-block;
}
.c-btnA:hover {
  background-color: #fff;
  color: #376EC4;
  opacity: 1;
}
.c-btnA:hover .c-btnA__icon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.c-btnA:hover .c-btnA__icon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-btnA.-ghost {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
  -webkit-transition: border 0.1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: border 0.1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.c-btnA.-ghost::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10em;
  background: -webkit-gradient(linear, left top, right top, from(#FD7777), color-stop(25%, #0E74B8), color-stop(50%, rgba(253, 119, 119, 0)), to(rgba(253, 119, 119, 0))) 100% 0/400% auto;
  background: linear-gradient(to right, #FD7777 0%, #0E74B8 25%, rgba(253, 119, 119, 0) 50%, rgba(253, 119, 119, 0) 100%) 100% 0/400% auto;
  content: "";
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.c-btnA.-ghost:hover::after {
  background-position: 0 0;
  opacity: 1;
}
@media (max-width: 767px) {
  .c-btnA {
    min-height: 50px;
    font-size: 1rem;
  }
}

.c-articlesA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -40px -40px;
}
.c-articlesA > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 40px);
  margin: 0 0 40px 40px;
}
@media (min-width: 1024px) {
  .c-articlesA.-column3 > li {
    width: calc(33.3333333333% - 40px);
  }
}
@media (max-width: 1023px) {
  .c-articlesA {
    margin-bottom: -20px;
    margin-left: -20px;
  }
  .c-articlesA > li {
    width: calc(50% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .c-articlesA {
    margin-top: 40px;
  }
  .c-articlesA > li {
    width: calc(100% - 20px);
  }
}

.c-articlesB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -40px -40px;
}
.c-articlesB > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 40px);
  margin: 0 0 40px 40px;
}
@media (min-width: 768px) {
  .c-articlesB > .col2 {
    width: calc(50% - 20px);
  }
  .c-articlesB > .col3 {
    width: calc(50% - 20px);
  }
  .c-articlesB > .col4 {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .c-articlesB > .col2 {
    width: calc(50% - 40px);
  }
  .c-articlesB > .col3 {
    width: calc(33.3333333333% - 40px);
  }
  .c-articlesB > .col4 {
    width: calc(25% - 40px);
  }
}
@media (max-width: 1023px) {
  .c-articlesB {
    margin-bottom: -20px;
    margin-left: -20px;
  }
  .c-articlesB > li {
    width: calc(100% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .c-articlesB {
    margin-top: 40px;
  }
  .c-articlesB > li {
    width: calc(100% - 20px);
  }
}

.c-cardA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
.c-cardA__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
}
.c-cardA__thumb img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.c-cardA__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0.6666666667em 1em;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-cardA__titleLabel {
  display: inline-block;
}
.c-cardA__icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.2em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  color: #376EC4;
}
.c-cardA__icon.-arrowRight::before, .c-cardA__icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-cardA__icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-cardA__icon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.2em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  color: #376EC4;
}
.c-cardA__icon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.c-cardA:hover {
  color: #376EC4;
  opacity: 1;
}
.c-cardA:hover .c-cardA__icon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.c-cardA:hover .c-cardA__icon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-cardA:hover .c-cardA__thumb img {
  opacity: 0.7;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-cardA.-disabled {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media (min-width: 1024px) {
  .c-cardA.-sm .c-cardA__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 1023px) {
  .c-cardA__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-cardA {
    border-radius: 10px;
  }
  .c-cardA__title {
    font-size: 1rem;
  }
}

.c-newsList {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
}
.c-newsList > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
.c-newsList > li:first-child {
  border-top: 1px solid #E6E6E6;
}

.c-list {
  margin: 1em 0 0;
  padding-left: 1.5em;
  list-style: disc;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .c-list {
    font-size: 0.875rem;
  }
}

.c-listB {
  list-style: none;
  margin: 1em 0 0;
  padding-left: 0;
  line-height: 1.75;
}
.c-listB > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .c-listB {
    font-size: 0.875rem;
  }
}

.c-orderList {
  margin: 1em 0 0;
  padding-left: 1.5em;
  list-style: decimal;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .c-orderList {
    font-size: 0.875rem;
  }
}

.c-orderListB {
  list-style: none;
  margin: 1em 0 0;
  padding-left: 0;
  line-height: 1.75;
  counter-reset: orderB;
}
.c-orderListB > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  position: relative;
  text-align: left;
}
.c-orderListB > li::before {
  display: inline-block;
  margin-right: 0.5em;
  white-space: nowrap;
  counter-increment: orderB;
  content: "(" counter(orderB) ")";
}
.c-orderListB.-katakana > li::before {
  counter-increment: orderB;
  content: "(" counter(orderB, katakana) ")";
}
@media (max-width: 767px) {
  .c-orderListB {
    font-size: 0.875rem;
  }
}

.c-table {
  margin: 60px auto 0;
}
.c-table table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.c-table th, .c-table td {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  padding: 1.75em 2em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}
.c-table th.-txtl, .c-table td.-txtl {
  text-align: left;
}
.c-table th.-txtc, .c-table td.-txtc {
  text-align: center;
}
.c-table th.-txtr, .c-table td.-txtr {
  text-align: right;
}
.c-table th.-top, .c-table td.-top {
  vertical-align: top;
}
.c-table th.-nobg, .c-table td.-nobg {
  background-color: transparent;
}
.c-table th {
  width: 10em;
  background-color: #F1F5F7;
}
.c-table td {
  padding-left: 3em;
  padding-right: 3em;
}
.c-table td > *:first-child {
  margin-top: 0 !important;
}
.c-table__head {
  margin: 1em 0 0;
  font-weight: 700;
}
.c-table__text {
  margin: 0;
}
@media (max-width: 1023px) {
  .c-table th, .c-table td {
    padding: 1.5em 1.75em;
  }
}
@media (max-width: 767px) {
  .c-table {
    margin-top: 30px;
  }
  .c-table table, .c-table thead, .c-table tbody, .c-table tr, .c-table th, .c-table td {
    display: block;
  }
  .c-table tr {
    border-top: 1px solid #E6E6E6;
  }
  .c-table tr:last-child {
    border-bottom: 1px solid #E6E6E6;
  }
  .c-table th, .c-table td {
    width: auto;
    border: none;
    font-size: 0.875rem;
  }
  .c-table th {
    padding: 0.75rem 1rem;
  }
  .c-table td {
    padding: 1.25rem 1rem;
  }
}

.c-tableB {
  margin: 40px auto 0;
}
.c-tableB table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.c-tableB th, .c-tableB td {
  border: 1px solid #E6E6E6;
  padding: 1em 2em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  vertical-align: middle;
}
.c-tableB th.-txtl, .c-tableB td.-txtl {
  text-align: left;
}
.c-tableB th.-txtc, .c-tableB td.-txtc {
  text-align: center;
}
.c-tableB th.-txtr, .c-tableB td.-txtr {
  text-align: right;
}
.c-tableB th.-top, .c-tableB td.-top {
  vertical-align: top;
}
.c-tableB th.-nobg, .c-tableB td.-nobg {
  background-color: transparent;
}
.c-tableB th {
  background-color: #F1F5F7;
  text-align: center;
}
.c-tableB td > *:first-child {
  margin-top: 0 !important;
}
.c-tableB__head {
  margin: 1em 0 0;
  font-weight: 700;
}
.c-tableB__text {
  margin: 0;
}
@media (max-width: 767px) {
  .c-tableB th, .c-tableB td {
    font-size: 0.875rem;
    padding: 1em 0.75em;
  }
  .c-tableB.-block table, .c-tableB.-block thead, .c-tableB.-block tbody, .c-tableB.-block tr, .c-tableB.-block th, .c-tableB.-block td {
    display: block;
  }
  .c-tableB.-block th, .c-tableB.-block td {
    border: none;
  }
}

/**************************************************/
/* components - form */
/**************************************************/
form label {
  cursor: pointer;
}
form textarea {
  line-height: 1.2;
  resize: vertical;
}

*:-moz-placeholder-shown {
  color: #aaa;
}

*:-ms-input-placeholder {
  color: #aaa;
}

*:placeholder-shown {
  color: #aaa;
}
*::-webkit-input-placeholder {
  color: #aaa;
}
*:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #aaa;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

.f-error-text {
  display: block;
  position: relative;
  margin: 0.5em 0 0;
  color: #EF2C2C;
  font-weight: 700;
}
.f-error-text.-center {
  text-align: center;
}

.f-error-message {
  display: block;
  margin-bottom: 40px;
  padding: 1em;
  border-radius: 8px;
  background-color: white;
  color: #EF2C2C;
  font-weight: bold;
}
.f-error-message > .error {
  display: block;
  margin: 0;
  background-color: transparent;
}

.f-field {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 12px 12px;
  border: 2px solid #E6E6E6;
  border-radius: 6px;
  line-height: 1.25em;
}
.f-field.-active {
  ime-mode: active;
}
.f-field.-inactive {
  ime-mode: inactive;
}

textarea.f-field {
  display: block;
  line-height: 1.5;
}

.f-checkbox {
  display: inline-block;
  text-align: left;
}
.f-checkbox__label {
  display: block;
  padding: 2px 2px 2px 28px;
  font-size: 1rem;
  line-height: 1.5;
  background: url(../img/icon-checkbox.svg) no-repeat 0 5px/18px 18px;
}
.f-checkbox > input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.f-checkbox > input[type=checkbox]:checked + .f-checkbox__label {
  background-image: url(../img/icon-checkbox-on.svg);
}

.f-radio {
  display: inline-block;
  text-align: left;
}
.f-radio__label {
  display: block;
  padding: 2px 2px 2px 28px;
  font-size: 1rem;
  line-height: 1.5;
  background: url(../img/icon-radio.svg) no-repeat 0 5px/18px 18px;
}
.f-radio > input[type=radio] {
  position: absolute;
  opacity: 0;
}
.f-radio > input[type=radio]:checked + .f-radio__label {
  background-image: url(../img/icon-radio-on.svg);
}

.f-selectbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  padding: 12px 54px 12px 12px;
  border: 2px solid #E6E6E6;
  border-radius: 6px;
  background: url(../img/icon-select.svg) no-repeat right 13px top 50%/16px 16px, -webkit-gradient(linear, left bottom, left top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777)) no-repeat right 50%/42px 100%, #fff;
  background: url(../img/icon-select.svg) no-repeat right 13px top 50%/16px 16px, linear-gradient(to top, #0E74B8 0%, #9377BF 50%, #FD7777 100%) no-repeat right 50%/42px 100%, #fff;
  font-size: 1rem;
  line-height: 1.25rem;
}
.f-selectbox::-ms-expand {
  display: none;
}
.f-selectbox.-full {
  width: 100%;
}

.f-btn {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  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: 68px;
  margin: 0 auto;
  padding: 0.5em 3em;
  border: none;
  border-radius: 5em;
  border-radius: 10em;
  background: -webkit-gradient(linear, left top, right top, from(#FD7777), color-stop(25%, #9377BF), color-stop(50%, #0E74B8), color-stop(75%, #9377BF), to(#FD7777)) 100% 0/200% auto;
  background: linear-gradient(to right, #FD7777 0%, #9377BF 25%, #0E74B8 50%, #9377BF 75%, #FD7777 100%) 100% 0/200% auto;
  color: #fff;
  font-size: 1.125rem;
  -webkit-transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  font-weight: 700;
}
.f-btn:hover {
  background-position: 0 0;
  opacity: 1;
}
.f-btn__label {
  display: inline-block;
  position: relative;
}
.f-btn.-back {
  background: #BCBCBC;
}
@media (max-width: 767px) {
  .f-btn {
    min-height: 50px;
    font-size: 1rem;
  }
}

.f-input-form.-middle {
  max-width: 288px;
}
.f-input-form.-long {
  max-width: 440px;
}

.f-input-columns {
  list-style: none;
  margin: 0;
  padding-left: 0;
  line-height: 1.5;
}
.f-input-columns > li + li {
  padding-top: 10px;
}

.f-input-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -10px -20px;
  line-height: 1.5;
}
.f-input-rows > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 10px 20px;
}
.f-input-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -10px -20px;
  line-height: 1.5;
}
.f-input-unit__item {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 10px 20px;
}
.f-input-unit.-name {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: -10px;
}
.f-input-unit.-name .f-input-unit__item {
  width: calc(50% - 10px);
  margin-left: 10px;
}
.f-input-unit.-zip {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
}
.f-input-unit.-zip .f-input-unit__item {
  margin-left: 10px;
}
.f-input-unit.-zip .f-input-unit__item:nth-child(2) {
  width: 100px;
}
.f-input-unit.-zip .f-input-unit__item:nth-child(4) {
  width: 140px;
}
@media (max-width: 767px) {
  .f-input-unit {
    margin-left: 0;
  }
  .f-input-unit__item {
    margin-left: 0;
  }
}

.f-input-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin: 0;
  padding: 0;
}
.f-input-grid > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.f-toConfirm {
  max-width: 340px;
  margin: 40px auto 0;
}

.f-toSend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 40px 0 -16px -40px;
}
.f-toSend__unit {
  display: block;
  width: 340px;
  margin: 0 0 16px 40px;
}
@media (max-width: 767px) {
  .f-toSend {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 16px;
  }
  .f-toSend__unit {
    width: 240px;
    margin-left: 16px;
  }
}

.f-form {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.f-form > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .f-form {
    margin-top: 60px;
  }
}

.f-heading {
  position: relative;
  margin: 60px 0 0;
  padding-left: 24px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
.f-heading::after {
  display: block;
  position: absolute;
  top: calc(0.75em - 5px);
  left: 4px;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 1023px) {
  .f-heading {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .f-heading {
    font-size: 1.125rem;
  }
}

.f-block {
  display: block;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .f-block {
    margin-top: 20px;
  }
}

.f-table {
  margin: 40px 0 0;
}
.f-table table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.f-table th, .f-table td {
  padding: 20px 0;
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: left;
}
.f-table th {
  width: 16em;
  font-weight: 700;
  vertical-align: top;
}
.f-table td {
  padding-left: 60px;
}
.f-table td > *:first-child {
  margin-top: 0 !important;
}
.f-table__required {
  display: block;
  position: relative;
  padding-right: 3.5em;
}
.f-table__required::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 2em;
  background-color: #EF2C2C;
  color: #fff;
  font-size: 0.7222222222em;
  font-weight: 700;
  line-height: 2.3846153846em;
  content: "必須";
}
.f-table__text {
  margin: 0.5em 0 0;
}
@media (max-width: 1023px) {
  .f-table th, .f-table td {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .f-table th.-top {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .f-table {
    display: block;
  }
  .f-table table, .f-table tbody, .f-table tr, .f-table th, .f-table td {
    display: block;
  }
  .f-table tr + tr {
    margin-top: 24px;
  }
  .f-table th, .f-table td {
    width: auto;
    padding: 0;
  }
  .f-table td {
    margin-top: 8px;
  }
  .f-table__required {
    padding-right: 0;
  }
  .f-table__required::after {
    position: static;
    margin-left: 1em;
    vertical-align: bottom;
  }
}

.f-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  max-width: 580px;
  margin: 80px auto 0;
}
.f-progress > li {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 33.3333333333%;
  text-align: center;
}
.f-progress > li + li::after {
  display: block;
  position: absolute;
  top: 28px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: #BCBCBC;
  z-index: -1;
  content: "";
}
.f-progress__step {
  display: block;
  line-height: 1.25;
  text-align: center;
}
.f-progress__num {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 57px;
  height: 57px;
  margin: 0 auto;
  padding-top: 0.1em;
  border-radius: 50%;
  background: #BCBCBC;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
}
.f-progress__txt {
  display: block;
  margin-top: 0.75em;
  color: #BCBCBC;
  font-size: 1rem;
  font-weight: 700;
}
.f-progress > li.-complete::after {
  background: #376EC4;
}
.f-progress > li.-complete .f-progress__num {
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
}
.f-progress > li.-complete .f-progress__txt {
  color: #2E2E2E;
}
.f-progress > li.-current::after {
  background: #376EC4;
}
.f-progress > li.-current .f-progress__num {
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
}
.f-progress > li.-current .f-progress__txt {
  color: #376EC4;
}
@media (max-width: 767px) {
  .f-progress {
    margin-top: 60px;
  }
  .f-progress > li + li::after {
    top: 22px;
  }
  .f-progress__num {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  .f-progress__txt {
    font-size: 0.875rem;
  }
}

.f-policy {
  max-width: 880px;
  margin: 80px auto 0;
}
.f-policy__text {
  margin: 0;
  line-height: 2;
  text-align: center;
}
.f-policy__agreement {
  display: block;
  margin: 40px auto 0;
  text-align: center;
}
.f-policy__cb {
  display: inline-block;
  text-align: left;
}
.f-policy__cbLabel {
  display: block;
  padding: 2px 2px 2px 28px;
  font-size: 1rem;
  line-height: 1.5;
  background: url(../img/icon-checkbox.svg) no-repeat 0 5px/18px 18px;
}
.f-policy__cb > input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.f-policy__cb > input[type=checkbox]:checked + .f-policy__cbLabel {
  background-image: url(../img/icon-checkbox-on.svg);
}
@media (max-width: 767px) {
  .f-policy {
    margin-top: 60px;
  }
  .f-policy__text {
    font-size: 0.875rem;
    text-align: left;
  }
  .f-policy__box {
    margin-top: 24px;
    padding: 24px 16px;
    font-size: 0.875rem;
  }
  .f-policy__agreement {
    margin-top: 24px;
  }
}

.f-policyBox {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 300px;
  margin: 40px auto 0;
  padding: 30px;
  font-size: 0.875rem;
  line-height: 1.75;
  border: 2px solid #EAF3FC;
  overflow-y: scroll;
}
.f-policyBox > *:first-child {
  margin-top: 0 !important;
}
.f-policyBox h2, .f-policyBox h3, .f-policyBox h4 {
  margin: 1.5em 0 0;
  font-weight: 700;
}
.f-policyBox h2 {
  font-size: 1.4285714286em;
  color: #376EC4;
}
.f-policyBox h3 {
  font-size: 1.1428571429em;
}
.f-policyBox h4 {
  font-size: 1em;
}
.f-policyBox p, .f-policyBox ul, .f-policyBox ol, .f-policyBox dl {
  margin: 1em 0 0;
  font-size: 1em;
}
.f-policyBox__notes {
  list-style: none;
  padding-left: 0;
}
.f-policyBox__notes > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  position: relative;
  text-align: left;
}

.f-requestTypeDetail {
  margin: 28px 0 0;
  padding: 30px;
  border-radius: 12px;
  background: #F1F5F7;
}

.f-contactFaq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 32px 20px;
  border-radius: 6px;
  background: #F1F5F7;
}
.f-contactFaq__text {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}
.f-contactFaq__faq {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 0 0 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .f-contactFaq {
    padding: 24px 20px;
  }
  .f-contactFaq__text {
    font-size: 0.8125rem;
  }
}

.f-confirm-request {
  margin: 40px 0 0;
}
.f-confirm-request__type {
  margin: 1em 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.f-confirm-request__text {
  margin: 1em 0 0;
  font-size: 1rem;
  line-height: 1.75;
}
.f-confirm-request__type + .f-confirm-request__text {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .f-confirm-request {
    margin-top: 20px;
  }
  .f-confirm-request__type {
    font-size: 1rem;
  }
  .f-confirm-request__text {
    font-size: 0.9375rem;
  }
}

.f-complete {
  margin: 60px 0 0;
}
.f-complete__text {
  margin: 1em 0 0;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
}
.f-complete__return {
  max-width: 340px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .f-complete__text {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .f-complete {
    margin-top: 40px;
  }
  .f-complete__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.f-forbidden {
  margin: 80px 0 0;
}
.f-forbidden__text {
  margin: 1em 0 0;
  font-size: 1.125rem;
  line-height: 2;
}
.f-forbidden__return {
  max-width: 340px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .f-forbidden__text {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .f-forbidden {
    margin-top: 40px;
  }
  .f-forbidden__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

/**************************************************/
/* news */
/**************************************************/
.c-newsList {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
}
.c-newsList > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-newsList > li:first-child {
  border-top: 1px solid #E6E6E6;
}
.c-newsList__date {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  width: 9ch;
  font-weight: 500;
  margin-top: 0.25em;
}
.c-newsList__category {
  margin-left: 24px;
  padding: 0.4em 0;
  line-height: 1.5;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 110px;
  background-color: #376EC4;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  font-size: 0.75rem;
}
.c-newsList__title {
  display: block;
  margin-left: 24px;
  margin-top: 0.1em;
}
.c-newsList__title a {
  text-decoration: none;
  color: #2E2E2E;
}
.c-newsList__title a:hover {
  color: #376EC4;
  opacity: 1;
}
.c-newsList__icon {
  display: inline-block;
  margin-left: 0.5em;
}
.c-newsList__edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.c-newsList__editBtn {
  display: block;
  background: transparent;
  font-size: 0.75rem;
  border: 1px solid #E6E6E6;
  border-bottom: 0;
  padding: 2px 10px;
}
@media (max-width: 767px) {
  .c-newsList > li {
    display: block;
  }
  .c-newsList__title {
    display: block;
    margin: 0.6em 0 0;
  }
}
@media (max-width: 1023px) {
  .c-newsList > li {
    padding: 17px 0;
  }
  .c-newsList__date {
    font-size: 0.875rem;
  }
  .c-newsList__category {
    font-size: 0.625rem;
    min-width: 88px;
    margin-left: 14px;
  }
  .c-newsList__title {
    font-size: 0.875rem;
  }
}

.p-newsIndex > *:first-child {
  margin-top: 0 !important;
}
.p-newsIndex__pager {
  margin: 80px 0 0;
}
@media (max-width: 1023px) {
  .p-newsIndex__pager {
    margin: 50px 0 0;
  }
}

.p-newsEntry {
  max-width: 1080px;
  margin: 0 auto;
}
.p-newsEntry__date {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  margin: 30px 0 60px;
  text-align: right;
  font-weight: 500;
  font-size: 1rem;
}
.p-newsEntry__body > *:first-child {
  margin-top: 0 !important;
}
.p-newsEntry__body .column-media-auto {
  margin: 40px 0;
}
.p-newsEntry__bottom {
  margin-top: 112px;
  font-weight: 700;
  text-align: center;
}
.p-newsEntry__btn {
  display: inline-block;
  padding-right: 28px;
  position: relative;
  font-size: 1rem;
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 700;
}
.p-newsEntry__icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.p-newsEntry__icon.-arrowRight::before, .p-newsEntry__icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-newsEntry__icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
@media (max-width: 1023px) {
  .p-newsEntry__date {
    margin: 20px 0 40px;
    font-size: 0.875rem;
  }
  .p-newsEntry__bottom {
    margin-top: 60px;
    font-size: 0.875rem;
  }
}

.p-voicePagetitle {
  position: relative;
  height: 400px;
  padding: 0 5.8565153734%;
  overflow: hidden;
}
.p-voicePagetitle__textarea {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 112px;
  padding: 0 5.8565153734%;
  z-index: 1;
}
.p-voicePagetitle__textarea > *:first-child {
  margin-top: 0 !important;
}
.p-voicePagetitle__bgimg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5.8565153734%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.p-voicePagetitle__bgimg img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 0 40px 0;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voicePagetitle__heading {
  margin: 0;
  font-size: 1.875rem;
  color: #376EC4;
  font-weight: 700;
  line-height: 1;
}
.p-voicePagetitle__headingLine {
  display: block;
}
.p-voicePagetitle__headingLine:not(:first-child) {
  margin-top: 10px;
}
.p-voicePagetitle__headingLine > span {
  display: inline-block;
  background-color: #fff;
  padding: 0.5em;
}
.p-voicePagetitle__profile {
  margin: 60px 0 0;
  color: #376EC4;
}
.p-voicePagetitle__profileJob {
  font-size: 1.125rem;
  margin-right: 8px;
  font-weight: 700;
}
.p-voicePagetitle__profileName {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
}
.p-voicePagetitle__profileAge {
  font-size: 1rem;
  margin-left: 8px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-voicePagetitle__textarea {
    padding-right: 0;
  }
  .p-voicePagetitle__heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-voicePagetitle {
    height: 375px;
  }
  .p-voicePagetitle__bgimg {
    border-radius: 0 0 0 24px;
  }
  .p-voicePagetitle__heading {
    font-size: 1.125rem;
  }
  .p-voicePagetitle__headingLine:not(:first-child) {
    margin-top: 8px;
  }
  .p-voicePagetitle__headingLine > span {
    padding: 0.68em;
  }
  .p-voicePagetitle__profile {
    margin-top: 30px;
  }
  .p-voicePagetitle__profileJob {
    font-size: 1rem;
  }
  .p-voicePagetitle__profileName {
    font-size: 1.75rem;
  }
  .p-voicePagetitle__profileAge {
    font-size: 0.875rem;
  }
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* pages - home */
/**************************************************/
@media (max-width: 767px) {
  ._view-md-high:first-child + * {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  ._view-md-low:first-child + * {
    margin-top: 0;
  }
}
.p-homeMv {
  position: relative;
  padding: 0 0 60px;
  background: transparent;
  background-size: 100% auto;
  z-index: 2;
  overflow: hidden;
}
.p-homeMv__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 680px;
  padding: 0 5.8565153734%;
  overflow: hidden;
}
.p-homeMv__textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 240px;
  left: 7.3206442167%;
  z-index: 1;
}
.p-homeMv__copy {
  margin: 0;
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
.p-homeMv__copyLine {
  display: block;
}
.p-homeMv__copyLine span {
  display: inline-block;
  position: relative;
  padding: 0.15em 0.25em 0.15em;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  white-space: nowrap;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-homeMv__copyLine span::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
  z-index: 1;
}
.p-homeMv__copyLine + .p-homeMv__copyLine {
  margin-top: 0.5em;
}
.p-homeMv__bgimg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 5.8565153734%;
  z-index: 0;
  border-radius: 0 0 40px 0;
  background: #F1F5F7;
  overflow: hidden;
  pointer-events: none;
}
.p-homeMv__bgimg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 90% 25%;
     object-position: 90% 25%;
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.p-homeMv__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  right: 3.2210834553%;
  font-size: 0.75rem;
  color: #376EC4;
  font-weight: 500;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-homeMv__scrollTxt {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
}
.p-homeMv__scrollBar {
  display: block;
  width: 120px;
  height: 1px;
  margin-left: 1em;
  background: #E6E6E6;
}
.p-homeMv__scrollBar::before {
  display: block;
  width: 100%;
  height: 100%;
  background: #376EC4;
  content: "";
  -webkit-animation: homeMv_scroll 2s ease infinite;
          animation: homeMv_scroll 2s ease infinite;
}
.p-homeMv__hero.-active .p-homeMv__copyLine span {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-animation: homeMv_copyLine 0.4s ease-in-out 1 forwards;
          animation: homeMv_copyLine 0.4s ease-in-out 1 forwards;
}
.p-homeMv__hero.-active .p-homeMv__copyLine span::after {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: homeMv_copyLine2 0.4s ease-in-out 1 forwards;
          animation: homeMv_copyLine2 0.4s ease-in-out 1 forwards;
}
.p-homeMv__hero.-active .p-homeMv__copyLine:nth-child(1) span {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-homeMv__hero.-active .p-homeMv__copyLine:nth-child(2) span {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-homeMv__hero.-active .p-homeMv__copyLine:nth-child(1) span::after {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.p-homeMv__hero.-active .p-homeMv__copyLine:nth-child(2) span::after {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.p-homeMv__hero.-active .p-homeMv__bgimg img {
  -webkit-transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
}
@media (max-width: 1023px) {
  .p-homeMv__copy {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-homeMv {
    padding-bottom: 20px;
    background-position: 50% 260px;
  }
  .p-homeMv__hero {
    height: 460px;
    padding: 0;
  }
  .p-homeMv__textarea {
    top: 39.1304347826%;
    left: 5.3333333333%;
  }
  .p-homeMv__copy {
    font-size: 1.5rem;
  }
  .p-homeMv__bgimg {
    right: 10.6666666667%;
    border-radius: 0 0 24px 0;
  }
  .p-homeMv__scroll {
    right: 6.4%;
  }
  .p-homeMv__scrollBar {
    width: 60px;
  }
}

@-webkit-keyframes homeMv_copyLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes homeMv_copyLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes homeMv_copyLine2 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-size: 100% auto;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-size: 200% auto;
  }
}
@keyframes homeMv_copyLine2 {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-size: 100% auto;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-size: 200% auto;
  }
}
@-webkit-keyframes homeMv_scroll {
  0% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  49% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes homeMv_scroll {
  0% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  49% {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.p-homeInfo {
  max-width: 800px;
  margin: -50px auto 80px;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-homeInfo {
    max-width: 290px;
    margin-top: -30px;
    margin-bottom: 50px;
  }
}

.p-homeStrength {
  position: relative;
  margin-top: -340px;
  padding: 380px 0 0;
  background: url(../../images/home/bg-intro.jpg) no-repeat 50% 0;
  background-size: 100% auto;
  z-index: 0;
}
.p-homeStrength::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(20% + 120px);
  background: linear-gradient(to top, #fff 120px, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: -1;
  pointer-events: none;
}
.p-homeStrength__box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: 40px auto 0;
  padding: 80px 0 120px 80px;
  z-index: 0;
}
.p-homeStrength__box::before, .p-homeStrength__box::after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  border-radius: 40px 0 0 0;
  content: "";
  pointer-events: none;
}
.p-homeStrength__box::before {
  height: 50%;
  z-index: -2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(55, 110, 196, 0.1)), to(rgba(55, 110, 196, 0)));
  background: linear-gradient(to bottom, rgba(55, 110, 196, 0.1) 75%, rgba(55, 110, 196, 0) 100%);
  -webkit-filter: blur(16px);
          filter: blur(16px);
}
.p-homeStrength__box::after {
  height: 100%;
  background: #fff;
  z-index: -1;
}
.p-homeStrength__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -40px -8px;
}
.p-homeStrength__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(25% - 8px);
  margin: 0 0 40px 8px;
}
.p-homeStrength__list > li:nth-child(2) .p-homeStrength__img img {
  -o-object-position: 95% 50%;
     object-position: 95% 50%;
}
.p-homeStrength__list > li:nth-child(3) .p-homeStrength__img img {
  -o-object-position: 75% 50%;
     object-position: 75% 50%;
}
.p-homeStrength__list > li:nth-child(4) .p-homeStrength__img img {
  -o-object-position: 5% 50%;
     object-position: 5% 50%;
}
.p-homeStrength__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
}
.p-homeStrength__img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 275/275;
}
.p-homeStrength__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  margin: 0;
  padding: 16px 0 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-homeStrength__title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to top, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
  z-index: 0;
  pointer-events: none;
}
.p-homeStrength__more {
  max-width: 520px;
  margin: 60px auto 0;
}
@media (min-width: 1024px) {
  .p-homeStrength__list > li:nth-child(1) .p-homeStrength__img {
    border-radius: 24px 0 0 0;
  }
  .p-homeStrength__list > li:nth-child(4) .p-homeStrength__img {
    border-radius: 0 24px 0 0;
  }
}
@media (max-width: 1023px) {
  .p-homeStrength {
    background-size: cover;
  }
  .p-homeStrength__box {
    padding: 40px 20px 100px;
  }
  .p-homeStrength__box::before, .p-homeStrength__box::after {
    width: 100%;
    border-radius: 24px 24px 0 0;
  }
  .p-homeStrength__list {
    margin-left: -20px;
  }
  .p-homeStrength__list > li {
    width: calc(50% - 20px);
    margin-left: 20px;
  }
  .p-homeStrength__img img {
    aspect-ratio: 295/160;
  }
}
@media (max-width: 767px) {
  .p-homeStrength {
    margin-top: -200px;
    padding-top: 240px;
  }
  .p-homeStrength__box {
    margin-top: 20px;
    padding: 24px 20px 50px;
  }
  .p-homeStrength__box::before, .p-homeStrength__box::after {
    border-radius: 10px 10px 0 0;
  }
  .p-homeStrength__list {
    margin: 0 0 -20px 0;
  }
  .p-homeStrength__list > li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .p-homeStrength__img {
    border-radius: 8px 8px 0 0;
  }
  .p-homeStrength__title {
    padding: 12px 0 0 20px;
    font-size: 1.125rem;
  }
  .p-homeStrength__more {
    margin-top: 40px;
  }
}

.p-homeBusiness {
  position: relative;
  padding: 100px 0 120px;
  background: #999 url(../../images/home/bg-business.jpg) center/cover;
  z-index: 1;
}
.p-homeBusiness::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-homeBusiness {
    padding: 50px 0;
  }
}

.p-homeCompany {
  position: relative;
  padding: 60px 0 100px;
  z-index: 1;
}
.p-homeCompany::after {
  position: absolute;
  top: 360px;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/bg-gradB.jpg) repeat-y center/100% auto;
  content: "";
  z-index: -1;
}
.p-homeCompany__marquee {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 116px;
  background: url(../../images/home/txt-company.png) repeat-x 50% 50%;
  z-index: -1;
  pointer-events: none;
  -webkit-animation: homeCompany-marquee 60s linear infinite;
          animation: homeCompany-marquee 60s linear infinite;
}
.p-homeCompany__spbox {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px auto 0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
}
.p-homeCompany__splist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -1px;
}
.p-homeCompany__splist > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% + 1px);
  margin-left: -1px;
  border-left: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.p-homeCompany__splist > li.col3 {
  width: calc(33.3333333333% + 1px);
}
.p-homeCompany__spcard {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  padding: 24px 8px;
  color: inherit;
  text-decoration: none;
  text-align: center;
}
.p-homeCompany__spcard.-disabled {
  pointer-events: none;
  -webkit-filter: opacity(0.5) grayscale(1);
          filter: opacity(0.5) grayscale(1);
}
.p-homeCompany__spicon {
  display: block;
  max-width: 120px;
  margin: 0 auto;
}
.p-homeCompany__sptitle {
  display: block;
  margin-top: 0.75em;
  font-size: 0.9375rem;
  line-height: 1.25;
}
@media (max-width: 1023px) {
  .p-homeCompany::after {
    top: 250px;
  }
  .p-homeCompany__spbox {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-homeCompany {
    padding: 30px 0 50px;
  }
  .p-homeCompany::after {
    top: 200px;
  }
  .p-homeCompany__marquee {
    top: 15px;
    height: 72px;
    background-size: 1332px auto;
    -webkit-animation-name: homeCompanySp-marquee;
            animation-name: homeCompanySp-marquee;
  }
  .p-homeCompany__spicon {
    max-width: 60px;
  }
}

@-webkit-keyframes homeCompany-marquee {
  0% {
    background-position: 2220px 50%;
  }
  100% {
    background-position: -2220px 50%;
  }
}

@keyframes homeCompany-marquee {
  0% {
    background-position: 2220px 50%;
  }
  100% {
    background-position: -2220px 50%;
  }
}
@-webkit-keyframes homeCompanySp-marquee {
  0% {
    background-position: 1332px 50%;
  }
  100% {
    background-position: -1332px 50%;
  }
}
@keyframes homeCompanySp-marquee {
  0% {
    background-position: 1332px 50%;
  }
  100% {
    background-position: -1332px 50%;
  }
}
.p-homeRecruit {
  position: relative;
  padding: 160px 0;
  background: #999 url(../img/bg-recruit.jpg) center/cover;
  color: #fff;
}
.p-homeRecruit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -20px -40px;
}
.p-homeRecruit__unit {
  width: 340px;
  margin: 0 0 20px 40px;
}
@media (max-width: 767px) {
  .p-homeRecruit {
    padding: 80px 0;
    background: url(../img/bg-recruit-sp.jpg) repeat-x center/auto 100%;
  }
}

.p-homeTopics {
  position: relative;
  padding: 100px 0 120px;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-homeTopics {
    padding: 60px 0 60px;
  }
}

.p-homeNews {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 80px auto 0;
  padding: 64px 50px;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
}
.p-homeNews__titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
}
.p-homeNews__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-homeNews__titleMain {
  display: inline-block;
}
.p-homeNews__titleSub {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
  margin-left: 1em;
  font-size: 0.5333333333em;
  color: #376EC4;
  font-weight: 500;
}
.p-homeNews__titleMore {
  display: inline-block;
  margin: 0;
  font-weight: 700;
}
.p-homeNews__listWrap {
  margin: 32px auto 0;
}
.p-homeNews__listWrap > *:first-child {
  margin-top: 0 !important;
}
.p-homeNews__more {
  display: none;
  margin: 24px 0 0;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-homeNews {
    margin-top: 50px;
    padding: 32px 20px;
    border-radius: 10px;
  }
  .p-homeNews__title {
    font-size: 1.25rem;
  }
  .p-homeNews__titleMain {
    display: inline-block;
  }
  .p-homeNews__titleSub {
    font-size: 0.65em;
  }
  .p-homeNews__titleMore {
    display: none;
  }
  .p-homeNews__listWrap {
    margin-top: 24px;
  }
  .p-homeNews__more {
    display: block;
  }
}

.p-homeBnr {
  margin-top: 100px;
}
.p-homeBnr__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -30px -30px;
}
.p-homeBnr__list > li {
  display: block;
  width: 300px;
  margin: 0 0 30px 30px;
}
.p-homeBnr__link {
  display: block;
}
@media (max-width: 767px) {
  .p-homeBnr {
    margin-top: 60px;
  }
  .p-homeBnr__list {
    margin: 0 0 -10px -10px;
  }
  .p-homeBnr__list > li {
    width: calc(50% - 10px);
    margin: 0 0 10px 10px;
  }
}

/**************************************************/
/* pages - strength */
/**************************************************/
.p-strengthLead {
  position: relative;
  padding-bottom: 70px;
  border-bottom: 1px solid #E6E6E6;
}
.p-strengthLead__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 55.5%;
  grid-template-columns: auto 55.5%;
  gap: 30px;
}
.p-strengthLead__wrap > .c-text {
  margin: 0;
}
.p-strengthLead__heading {
  margin: 0;
  font-size: 1.75rem;
}
@media (max-width: 1023px) {
  .p-strengthLead {
    padding-bottom: 40px;
  }
  .p-strengthLead__wrap {
    display: block;
  }
  .p-strengthLead__wrap > .c-text {
    margin-top: 30px;
  }
  .p-strengthLead__heading {
    font-size: 1.375rem;
  }
}

.p-strengthLead::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  pointer-events: none;
  content: "";
}
@media (max-width: 1023px) {
  .p-strengthLead::after {
    width: 100px;
  }
}

.p-strengthBlock {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto min(7%, 80px) min(55%, 620px);
  grid-template-columns: auto min(55%, 620px);
  gap: 60px min(7%, 80px);
  position: relative;
  min-height: 368px;
  margin: 120px 0 0;
}
.p-strengthBlock__img {
  text-align: center;
}
.p-strengthBlock__img img {
  border-radius: 24px;
}
.p-strengthBlock__num {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding-bottom: 0.2em;
  font-size: 5rem;
  color: #376EC4;
  font-weight: 500;
  line-height: 1;
  z-index: 3;
}
.p-strengthBlock__num::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  pointer-events: none;
  content: "";
}
.p-strengthBlock__heading {
  margin: 37px 0 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-strengthBlock__heading em {
  color: #376EC4;
}
.p-strengthBlock__heading + .c-text {
  margin-top: 2rem;
}
.p-strengthBlock__link {
  margin: 1em 0 0;
  text-align: right;
}
.p-strengthBlock__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding-bottom: 0.5em;
  padding-right: 2em;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.p-strengthBlock__link a::before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-strengthBlock__link a:hover {
  color: #376EC4;
  opacity: 1;
}
.p-strengthBlock__link a:hover .p-strengthBlock__linkIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-strengthBlock__link a:hover .p-strengthBlock__linkIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-strengthBlock__link a:hover::before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-strengthBlock__linkIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0;
  color: #376EC4;
}
.p-strengthBlock__linkIcon.-arrowRight::before, .p-strengthBlock__linkIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-strengthBlock__linkIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-strengthBlock.-reflect {
  -ms-grid-columns: min(55%, 620px) auto;
  grid-template-columns: min(55%, 620px) auto;
}
.p-strengthBlock.-reflect .p-strengthBlock__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (max-width: 1023px) {
  .p-strengthBlock__num {
    font-size: 3.25rem;
  }
  .p-strengthBlock__heading {
    margin-top: 18px;
    font-size: 1.375rem;
  }
  .p-strengthBlock__content > .c-text {
    margin-top: 18px;
  }
  .p-strengthBlock__link a {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-strengthBlock {
    display: block;
    margin-top: 60px;
  }
  .p-strengthBlock__img {
    margin-top: 30px;
    border-radius: 12px;
  }
}

.p-strengthAffiliated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -60px -60px;
}
.p-strengthAffiliated > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 60px);
  margin: 0 0 60px 60px;
}
.p-strengthAffiliated__card {
  display: block;
}
.p-strengthAffiliated__logo img {
  display: block;
  width: 100%;
}
.p-strengthAffiliated__title {
  margin: 32px 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-strengthAffiliated__text {
  margin: 1em 0 0;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-strengthAffiliated {
    margin-left: -20px;
  }
  .p-strengthAffiliated > li {
    width: calc(50% - 20px);
    margin-left: 20px;
  }
  .p-strengthAffiliated__title {
    font-size: 1.25rem;
  }
  .p-strengthAffiliated__text {
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .p-strengthAffiliated {
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .p-strengthAffiliated > li {
    width: calc(100% - 20px);
    margin-bottom: 40px;
  }
  .p-strengthAffiliated__title {
    margin-top: 24px;
    font-size: 1.125rem;
  }
  .p-strengthAffiliated__text {
    margin-top: 0.5em;
    font-size: 0.875rem;
  }
}

.p-licenseBlock {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  padding: 25px 30px;
  background: #F1F5F7;
  font-size: 0.875rem;
  border-radius: 6px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.p-licenseBlock__list {
  margin: 0;
  padding-left: 1em;
}
.p-licenseBlock__list li {
  padding: 0.1em;
  line-height: 1.5;
}
.p-licenseBlock__list li::marker {
  content: "・";
}
@media (max-width: 1023px) {
  .p-licenseBlock {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .p-licenseBlock {
    display: block;
    margin-top: 20px;
  }
}

.p-strengthFlow {
  margin-top: 120px;
  padding: max(40px, 6.6666666667%) 6.6666666667% 6.6666666667%;
  background: #F1F5F7;
  border-radius: clamp(10px, 2.8333333333vw, 34px);
  counter-reset: num 0;
}
.p-strengthFlow__heading {
  position: relative;
  margin: 0;
  padding-bottom: 0.5em;
  font-size: 2.125rem;
  line-height: 1.5;
  text-align: center;
}
.p-strengthFlow__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100px;
  height: 4px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
}
.p-strengthFlow__list {
  margin: 60px 0 0;
}
.p-strengthFlow__list + .p-strengthFlow__list {
  position: relative;
  margin: 36px 0 0;
}
.p-strengthFlow__list + .p-strengthFlow__list::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 18px;
  display: block;
  width: 50px;
  height: 25px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #376EC4;
}
.p-strengthFlow__list dt {
  position: relative;
  padding: 0.3em 0.8em 0.3em 110px;
  border-radius: 12px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2;
  background: #fff;
}
.p-strengthFlow__list dt::before {
  content: "0" counter(num);
  counter-increment: num 1;
  position: absolute;
  left: 30px;
  padding-right: 25px;
  border-right: 1px solid #E6E6E6;
  color: #376EC4;
  letter-spacing: 0.04em;
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
.p-strengthFlow__list:nth-of-type(n+10) dt::before {
  content: counter(num);
}
.p-strengthFlow__list dd {
  margin: 1em 0 0 110px;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-strengthFlow {
    margin-top: 60px;
  }
  .p-strengthFlow__heading {
    font-size: 1.625rem;
  }
  .p-strengthFlow__list {
    margin-top: 40px;
  }
  .p-strengthFlow__list + .p-strengthFlow__list {
    margin-top: 56px;
  }
  .p-strengthFlow__list + .p-strengthFlow__list::before {
    top: -35px;
    left: 50%;
    display: block;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #376EC4;
    -webkit-transform: rotateX(-50%);
            transform: rotateX(-50%);
  }
  .p-strengthFlow__list dt {
    padding-left: 90px;
    border-radius: 12px;
    font-size: 1.125rem;
  }
  .p-strengthFlow__list dt::before {
    left: 25px;
    padding-right: 20px;
  }
  .p-strengthFlow__list dd {
    margin-left: 0;
    font-size: 0.875rem;
  }
}

/**************************************************/
/* pages - business */
/**************************************************/
.p-businessSubHeading {
  margin: 1.6em 0 0;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-businessSubHeading {
    margin-top: 0.9em;
    font-size: 0.75rem;
  }
}

.p-businessDescription {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px auto 0;
  padding: 24px;
  border-radius: 6px;
  background: #F1F5F7;
  overflow: hidden;
}
.p-businessDescription > *:first-child {
  margin-top: 0 !important;
}
.p-businessDescription__title {
  margin: 1em 0 0;
  font-size: 0.875rem;
  color: #376EC4;
  font-weight: 700;
  line-height: 1.5;
}
.p-businessDescription__text {
  margin: 0.5em 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
.p-businessDescription__list {
  margin: 0.5em 0 0;
  padding-left: 1.5em;
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-businessDescription__list > li::marker {
  color: #376EC4;
}
.p-businessDescription__list > li + li {
  margin-top: 0.25em;
}
.p-businessDescription__inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0 0 -1em;
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-businessDescription__inline > li {
  padding: 0 1em;
}
.p-businessDescription__inline > li + li {
  border-left: 1px solid #BCBCBC;
}
@media (max-width: 767px) {
  .p-businessDescription {
    margin-top: 24px;
  }
}

.p-inspectionBlock {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 60px;
  padding: 60px;
  border-radius: 12px;
  background: #F1F5F7;
  overflow: hidden;
}
.p-inspectionBlock__unit {
  display: block;
  padding-left: 60px;
}
.p-inspectionBlock__unit + .p-inspectionBlock__unit {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid #E6E6E6;
}
.p-inspectionBlock__title {
  position: relative;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-inspectionBlock__titleNum {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
  position: absolute;
  left: -60px;
  top: 0;
  color: #376EC4;
  font-size: 1.0909090909em;
  font-weight: 400;
}
.p-inspectionBlock__titleLabel {
  display: inline-block;
}
.p-inspectionBlock__text {
  margin: 1em 0 0;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-inspectionBlock {
    margin-top: 40px;
    padding: 32px 24px;
  }
  .p-inspectionBlock__unit {
    padding-left: 0;
  }
  .p-inspectionBlock__unit + .p-inspectionBlock__unit {
    margin-top: 24px;
    padding-top: 24px;
  }
  .p-inspectionBlock__title {
    padding-left: 2.5em;
    font-size: 1.125rem;
  }
  .p-inspectionBlock__titleNum {
    left: 0;
  }
  .p-inspectionBlock__text {
    font-size: 0.875rem;
  }
}

.p-businessBlock__link {
  margin: 1.875rem 0 0;
  text-align: right;
}
.p-businessBlock__link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding-bottom: 0.5em;
  padding-right: 2em;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.p-businessBlock__link a::before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-businessBlock__link a:hover {
  color: #376EC4;
  opacity: 1;
}
.p-businessBlock__link a:hover .p-strengthBlock__linkIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-businessBlock__link a:hover .p-strengthBlock__linkIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-businessBlock__link a:hover::before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-businessBlock__linkIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0;
  color: #376EC4;
}
.p-businessBlock__linkIcon.-arrowRight::before, .p-businessBlock__linkIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-businessBlock__linkIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-businessBlock.-reflect {
  -ms-grid-columns: min(55%, 620px) auto;
  grid-template-columns: min(55%, 620px) auto;
}
.p-businessBlock.-reflect .p-strengthBlock__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (max-width: 1023px) {
  .p-businessBlock__link {
    margin-top: 0.75rem;
  }
  .p-businessBlock__link a {
    font-size: 0.75rem;
  }
}

.pg-businessChild .c-localnav {
  padding: 38px 60px 40px;
}
@media (max-width: 1023px) {
  .pg-businessChild .c-localnav {
    padding: 32px 40px 40px;
  }
}

.p-businessChild-head {
  margin-top: 56px;
  padding-bottom: 60px;
  position: relative;
  border-bottom: solid 1px #E6E6E6;
}
.p-businessChild-head::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
}
.p-businessChild-head__category {
  font-weight: bold;
  font-size: 1.875rem;
  margin: 0;
}
.p-businessChild-head__categoryChild {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0.625rem 0 0 0;
  letter-spacing: 0.08em;
}
.p-businessChild-head__lead {
  margin: 2rem 0 0 0;
  font-size: 0.9375rem;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-businessChild-head::after {
    width: 100px;
  }
  .p-businessChild-head__category {
    font-size: 1.25rem;
  }
  .p-businessChild-head__categoryChild {
    font-size: 1.75rem;
  }
  .p-businessChild-head__lead {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-businessChild-head {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .p-businessChild-head__categoryChild {
    margin-top: 0.25rem;
  }
  .p-businessChild-head__lead {
    margin-top: 20px;
  }
}

.p-businessChild-mv {
  margin-top: 3rem;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
}
.p-businessChild-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-businessChild-mv {
    height: 200px;
    border-radius: 12px;
    margin-top: 2rem;
  }
}
@media (max-width: 599px) {
  .p-businessChild-mv {
    height: 160px;
  }
}

.p-businessChild-info {
  margin-top: 5.5rem;
  background-color: #F1F5F7;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.p-businessChild-info .heading {
  font-weight: bold;
  margin: 0;
  color: #5989C9;
  font-size: 1.125rem;
  text-align: center;
}
.p-businessChild-info .text {
  line-height: 2;
  font-size: 0.9375rem;
  margin: 0.75rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-businessChild-info {
    margin-top: 2.5rem;
    border-radius: 0.75rem;
    padding: 1.875rem 1.25rem;
  }
  .p-businessChild-info .heading {
    font-size: 1rem;
  }
  .p-businessChild-info .text {
    font-size: 0.875rem;
  }
}

.p-businessChild-list {
  margin: 88px 0 0 0;
  padding: 0;
  list-style: none;
  max-width: 900px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 40px;
}
.p-businessChild-list__item {
  width: calc(50% - 20px);
}
.p-businessChild-list__heading {
  font-weight: bold;
  font-size: 1.875rem;
  margin: 0;
}
.p-businessChild-list__heading-num {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  line-height: 40px;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: 8px;
  border-radius: 100px;
  background-color: #5989C9;
  text-align: center;
}
.p-businessChild-list__img {
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 430/340;
}
.p-businessChild-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-businessChild-list__img.-hc_duct {
  background-color: #E8F6FF;
}
.p-businessChild-list__img.-hc_duct img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-businessChild-list__time {
  margin: 1.875rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.125rem;
}
.p-businessChild-list__time__head {
  border-radius: 0.25rem 0 0 0.25rem;
  height: 100%;
  background-color: #5989C9;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 0 1.125rem;
  font-size: 1.5rem;
  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;
}
.p-businessChild-list__time__head::before {
  display: inline-block;
  margin-right: 0.3125rem;
  position: relative;
  content: "";
  background: url(../../images/business/icon-time.svg) center center no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
}
.p-businessChild-list__time__min {
  border-radius: 0 0.25rem 0.25rem 0;
  height: 100%;
  background-color: #75A2DD;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  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;
  font-weight: bold;
  padding: 0 0.875rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
.p-businessChild-list__time__min .big {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}
.p-businessChild-list__description {
  line-height: 2;
  margin: 0.625rem 0 0 0;
}
.p-businessChild-list__price {
  font-weight: bold;
  color: #4A94F7;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
}
.p-businessChild-list__price__price {
  font-size: 3.875rem;
  display: inline-block;
  line-height: 1.2;
}
.p-businessChild-list__price__yen {
  font-size: 2rem;
  display: inline-block;
}
.p-businessChild-list__price__tax {
  font-size: 1rem;
  display: inline-block;
}
.p-businessChild-list__more {
  color: #4A94F7;
  font-size: 0.875rem;
  margin: 1rem 0 0 0;
  display: inline-block;
}
@media (max-width: 1023px) {
  .p-businessChild-list__heading {
    font-size: 1.25rem;
  }
  .p-businessChild-list__heading-num {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 26px;
    font-size: 1.25rem;
  }
  .p-businessChild-list__time {
    height: 2.25rem;
  }
  .p-businessChild-list__time__head {
    font-size: 1.0625rem;
    padding: 0 0.875rem;
  }
  .p-businessChild-list__time__head::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-businessChild-list__time__min {
    font-size: 0.875rem;
  }
  .p-businessChild-list__time__min > .big {
    font-size: 1.125rem;
  }
  .p-businessChild-list__description {
    font-size: 0.875rem;
  }
  .p-businessChild-list__price__price {
    font-size: 3rem;
  }
  .p-businessChild-list__price__yen {
    font-size: 1.5rem;
  }
  .p-businessChild-list__price__tax {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-businessChild-list {
    margin: 60px 0 0 0;
    gap: 40px;
  }
  .p-businessChild-list__item {
    width: 100%;
  }
  .p-businessChild-list__img {
    aspect-ratio: 430/280;
    border-radius: 12px;
  }
  .p-businessChild-list__time {
    margin-top: 1.25rem;
  }
  .p-businessChild-list__more {
    margin-top: 0.625rem;
  }
}

.p-businessVoice > .c-headingC {
  margin-top: 7.25rem;
}
@media (max-width: 767px) {
  .p-businessVoice > .c-headingC {
    margin-top: 3.75rem;
  }
}
.p-businessVoice > .c-localnav {
  margin-top: 2rem;
}
.p-businessVoice__list {
  margin: 4rem 0 0 0;
  padding: 0 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
  list-style: none;
}
.p-businessVoice__heading {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: solid 1px #376EC4;
  font-weight: bold;
  color: #376EC4;
}
.p-businessVoice__prefectures {
  display: inline-block;
  margin-right: 0.625rem;
}
.p-businessVoice__text {
  margin: 0.875rem 0 0 0;
  line-height: 2;
}
.p-businessVoice__more {
  margin-top: 3.75rem;
  text-align: center;
}
.p-businessVoice__more > a {
  display: inline-block;
  font-weight: bold;
  padding-right: 1.75rem;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.p-businessVoice__more > a:hover {
  color: #376EC4;
  opacity: 1;
}
.p-businessVoice__more > a:hover .p-businessVoice__linkIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-businessVoice__more > a:hover .p-businessVoice__linkIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-businessVoice__more > a .p-businessVoice__linkIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.p-businessVoice__more > a .p-businessVoice__linkIcon.-arrowRight::before, .p-businessVoice__more > a .p-businessVoice__linkIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-businessVoice__more > a .p-businessVoice__linkIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
@media (max-width: 1023px) {
  .p-businessVoice__list {
    padding: 0 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-businessVoice__list {
    margin-top: 2.5rem;
    row-gap: 1.875rem;
    padding: 0;
  }
  .p-businessVoice__heading {
    font-size: 0.875rem;
    padding-bottom: 0.75rem;
  }
  .p-businessVoice__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.pg-businessChild .p-businessVoice__item:nth-child(n+7) {
  display: none;
}

.p-businessPopup {
  z-index: 1000;
  background-color: rgba(61, 61, 61, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 11.25rem 1.25rem;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-businessPopup.-index {
  display: none;
}
.p-businessPopup__box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  max-width: 1000px;
  padding: 6.25rem 3.75rem;
  background-color: #fff;
  border-radius: 1.5rem;
  margin-inline: auto;
}
.p-businessPopup__close {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  display: inline-block;
  position: absolute;
  top: -2.75rem;
  right: -2.75rem;
  background: url(../img/icon-close.svg) center center no-repeat;
  background-size: contain;
  cursor: pointer;
}
.p-businessPopup__category {
  text-align: center;
  margin: 0;
}
.p-businessPopup__category__a {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}
.p-businessPopup__category__b {
  font-weight: bold;
  font-size: 1.875rem;
  display: block;
}
.p-businessPopup__category__b:has(.p-businessPopup__category__b-num) {
  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;
}
.p-businessPopup__category__b-num {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  line-height: 40px;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: 8px;
  border-radius: 100px;
  background-color: #5989C9;
}
.p-businessPopup__mainImg {
  margin-top: 2.5rem;
  width: 100%;
  height: 21.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-businessPopup__mainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-businessPopup__mainImg.-hc_duct {
  background-color: #E8F6FF;
}
.p-businessPopup__mainImg.-hc_duct img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-businessPopup__priceBox {
  margin-top: 2.5rem;
  background-color: #F1F5F7;
  border-radius: 1.5rem;
  text-align: center;
  padding: 1.25rem 1.25rem 2.8125rem;
}
.p-businessPopup__price {
  font-weight: bold;
  color: #4A94F7;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
}
.p-businessPopup__price__price {
  font-size: 3.875rem;
  display: inline-block;
  line-height: 1.2;
}
.p-businessPopup__price__yen {
  font-size: 2rem;
  display: inline-block;
}
.p-businessPopup__price__tax {
  font-size: 1rem;
  display: inline-block;
}
.p-businessPopup__time {
  margin: -1.5625rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.125rem;
}
.p-businessPopup__time__head {
  border-radius: 0.25rem 0 0 0.25rem;
  height: 100%;
  background-color: #5989C9;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 0 1.125rem;
  font-size: 1.5rem;
  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;
}
.p-businessPopup__time__head::before {
  display: inline-block;
  margin-right: 0.3125rem;
  position: relative;
  content: "";
  background: url(../../images/business/icon-time.svg) center center no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
}
.p-businessPopup__time__min {
  border-radius: 0 0.25rem 0.25rem 0;
  height: 100%;
  background-color: #75A2DD;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  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;
  font-weight: bold;
  padding: 0 0.875rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
.p-businessPopup__time__min .big {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}
.p-businessPopup__lead {
  margin: 2.5rem 0 0 0;
  line-height: 2;
  max-width: 43.125rem;
  margin-inline: auto;
}
@media (max-width: 1239px) {
  .p-businessPopup__close {
    top: -3.75rem;
    right: 0;
  }
}
@media (max-width: 1023px) {
  .p-businessPopup {
    padding: 5rem 1.25rem;
  }
  .p-businessPopup__close {
    top: -2.5rem;
    width: 1.875rem;
    height: 1.875rem;
  }
  .p-businessPopup__category__a {
    font-size: 1.75rem;
  }
  .p-businessPopup__category__b {
    font-size: 1.25rem;
  }
  .p-businessPopup__category__b-num {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 26px;
    font-size: 1.25rem;
  }
  .p-businessPopup__price__price {
    font-size: 3rem;
  }
  .p-businessPopup__price__yen {
    font-size: 1.5rem;
  }
  .p-businessPopup__price__tax {
    font-size: 0.875rem;
  }
  .p-businessPopup__time {
    margin-top: -1.125rem;
    height: 2.25rem;
  }
  .p-businessPopup__time__head {
    font-size: 1.0625rem;
    padding: 0 0.875rem;
    white-space: nowrap;
  }
  .p-businessPopup__time__head::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-businessPopup__time__min {
    font-size: 0.875rem;
  }
  .p-businessPopup__time__min > .big {
    font-size: 1.125rem;
  }
  .p-businessPopup__lead {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-businessPopup__box {
    padding: 2.5rem 1.25rem;
    border-radius: 1rem;
  }
  .p-businessPopup__mainImg {
    height: 200px;
    margin-top: 1.875rem;
    border-radius: 12px;
  }
  .p-businessPopup__priceBox {
    border-radius: 12px;
    padding: 1rem 1rem 1.875rem;
    margin-top: 1.5rem;
  }
  .p-businessPopup__lead {
    margin-top: 1.875rem;
  }
}

.p-businessPopup-bfaf {
  background-color: #F1F5F7;
  border-radius: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 6.25rem;
  padding: 3.75rem 5.9375rem;
}
.p-businessPopup-bfaf__title {
  text-align: center;
  color: #1A69D5;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  margin: 0;
}
.p-businessPopup-bfaf__title > span {
  display: inline-block;
  padding-left: 3.875rem;
  position: relative;
  vertical-align: middle;
}
.p-businessPopup-bfaf__title > span::before {
  position: absolute;
  content: "";
  background: url(../../images/business/icon-bfaf.svg) center center no-repeat;
  background-size: contain;
  width: 3.25rem;
  height: 2.5625rem;
  left: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-businessPopup-bfaf__imgWrap {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
}
.p-businessPopup-bfaf__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 320/252;
}
.p-businessPopup-bfaf__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-businessPopup-bfaf__img.-before {
  position: relative;
}
.p-businessPopup-bfaf__img.-before::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #376ec4;
  border-width: 23.5px 0px 23.5px 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2.1875rem;
}
.p-businessPopup-bfaf__lead {
  line-height: 2;
  margin: 2.5rem 0 0 0;
}
@media (max-width: 1023px) {
  .p-businessPopup-bfaf {
    padding: 2.5rem;
  }
  .p-businessPopup-bfaf__title {
    font-size: 1.5rem;
  }
  .p-businessPopup-bfaf__title > span {
    padding-left: 3.125rem;
  }
  .p-businessPopup-bfaf__title > span::before {
    width: 2.5rem;
    height: 1.875rem;
  }
  .p-businessPopup-bfaf__imgWrap {
    margin-top: 1.875rem;
  }
  .p-businessPopup-bfaf__lead {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-businessPopup-bfaf {
    margin-bottom: 3.75rem;
    margin-top: 1.875rem;
    border-radius: 0.75rem;
    padding: 1.875rem;
  }
  .p-businessPopup-bfaf__imgWrap {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-businessPopup-bfaf__img {
    max-width: 320px;
  }
  .p-businessPopup-bfaf__img.-before::before {
    top: auto;
    bottom: -3.125rem;
    -webkit-transform: translateX(-50%) translateY(0) rotate(90deg);
            transform: translateX(-50%) translateY(0) rotate(90deg);
    right: auto;
    left: 50%;
  }
}

.p-businessPopup-work > .c-headingC {
  margin-top: 2.5rem;
}
.p-businessPopup-work__lead {
  margin: 2rem 0 0 0;
  line-height: 2;
}
.p-businessPopup-work__leadList {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}
.p-businessPopup-work__leadList > li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2;
}
.p-businessPopup-work__leadList > li::before {
  position: relative;
  content: "・";
  color: #376EC4;
  font-weight: bold;
}
.p-businessPopup-work__imgWrap {
  margin: 2.5rem 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.p-businessPopup-work__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-businessPopup-work__img img {
  width: 100%;
}
.p-businessPopup-work__img__caption {
  line-height: 2;
  margin: 0.75rem 0 0 0;
}
.p-businessPopup-work__box {
  margin-top: 3.75rem;
  background-color: #F1F5F7;
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.p-businessPopup-work__box__heading {
  font-size: 1.375rem;
  font-weight: bold;
  margin: 0;
}
.p-businessPopup-work__box__list {
  margin: 1.875rem 0 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}
.p-businessPopup-work__box__item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2;
}
.p-businessPopup-work__box__item::before {
  position: relative;
  content: "・";
  color: #376EC4;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .p-businessPopup-work__lead {
    font-size: 0.875rem;
  }
  .p-businessPopup-work__caption {
    font-size: 0.875rem;
  }
  .p-businessPopup-work__box__heading {
    font-size: 1.0625rem;
  }
  .p-businessPopup-work__box__item {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-businessPopup-work__lead {
    margin-top: 1rem;
  }
  .p-businessPopup-work__imgWrap {
    margin-top: 1.875rem;
    gap: 1.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-businessPopup-work__img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(50% - 10px);
  }
  .p-businessPopup-work__img__caption {
    line-height: 1.8;
    margin-top: 8px;
    font-size: 0.875rem;
  }
  .p-businessPopup-work__box {
    margin-top: 2.5rem;
    border-radius: 12px;
    padding: 1.25rem;
  }
  .p-businessPopup-work__box__list {
    margin-top: 0.875rem;
  }
}

.p-businessPopup-notes {
  margin-top: 3.75rem;
  border-radius: 1.5rem;
  background-color: #F5F5F5;
  padding: 2.5rem;
}
.p-businessPopup-notes > *:first-child {
  margin-top: 0 !important;
}
.p-businessPopup-notes__heading {
  color: #376EC4;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 6.25rem 0 0 0;
}
.p-businessPopup-notes__list {
  margin: 1.875rem 0 0 0;
  padding: 0;
  list-style: none;
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}
.p-businessPopup-notes__item {
  padding-left: 1.5em;
  line-height: 2;
  position: relative;
}
.p-businessPopup-notes__item::before {
  position: absolute;
  counter-increment: number 1;
  content: counter(number) ".";
  font-weight: bold;
  top: 0;
  left: 0;
}
@media (max-width: 1023px) {
  .p-businessPopup-notes__heading {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
  .p-businessPopup-notes__item {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-businessPopup-notes {
    margin-top: 2.5rem;
    padding: 1.25rem;
    border-radius: 12px;
  }
  .p-businessPopup-notes__list {
    margin-top: 0.875rem;
  }
}

.p-businessPopup-contact {
  margin-top: 3.75rem;
  text-align: center;
}
.p-businessPopup-contact__btn {
  border: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  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: 21.25rem;
  max-width: 100%;
  min-height: 68px;
  margin: 0 auto;
  padding: 0.5em 3em;
  border: none;
  border-radius: 5em;
  border-radius: 10em;
  background: -webkit-gradient(linear, left top, right top, from(#FD7777), color-stop(25%, #9377BF), color-stop(50%, #0E74B8), color-stop(75%, #9377BF), to(#FD7777)) 100% 0/200% auto;
  background: linear-gradient(to right, #FD7777 0%, #9377BF 25%, #0E74B8 50%, #9377BF 75%, #FD7777 100%) 100% 0/200% auto;
  color: #fff;
  font-size: 1.125rem;
  -webkit-transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  font-weight: 700;
}
.p-businessPopup-contact__btn:hover {
  background-position: 0 0;
  opacity: 1;
}
@media (max-width: 767px) {
  .p-businessPopup-contact {
    margin-top: 2.5rem;
  }
  .p-businessPopup-contact__btn {
    min-height: 50px;
    font-size: 1rem;
    width: 17.5rem;
  }
}

.pg-businessVoice .c-localnav {
  padding: 38px 60px 40px;
}
@media (max-width: 1023px) {
  .pg-businessVoice .c-localnav {
    padding: 32px 40px 40px;
  }
}

.p-businessChild-youtube {
  width: calc(100% - 3rem);
  max-width: 37.5rem;
  margin: 5rem auto 0;
}
@media (max-width: 1023px) {
  .p-businessChild-youtube {
    margin-top: 2.5rem;
  }
}
.p-businessChild-youtube__modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.p-businessChild-youtube__modal iframe, .p-businessChild-youtube__modal a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**************************************************/
/* pages */
/**************************************************/
.p-outlineTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin: 60px auto 0;
}
.p-outlineTop__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 45%;
}
.p-outlineTop__img img {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.p-outlineTop__textarea {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 48.3333333333%;
}
.p-outlineTop__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6428571429;
}
.p-outlineTop__title em {
  color: #376EC4;
}
.p-outlineTop__text {
  margin: 1.875em 0 0;
  line-height: 1.875;
}
@media (max-width: 1023px) {
  .p-outlineTop__img {
    width: 45.0549450549%;
  }
  .p-outlineTop__textarea {
    width: 52.1978021978%;
  }
}
@media (max-width: 767px) {
  .p-outlineTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .p-outlineTop__img {
    width: auto;
    max-width: 460px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 30px auto 0;
  }
  .p-outlineTop__img img {
    border-radius: 10px;
  }
  .p-outlineTop__textarea {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0 auto;
  }
  .p-outlineTop__title {
    font-size: 1.25rem;
  }
  .p-outlineTop__text {
    margin-top: 30px;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-outlineLicense {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 60px 0 0;
}
.p-outlineLicense__item {
  border-left: 1px solid #E6E6E6;
}
.p-outlineLicense__item dd {
  margin: 0;
  padding-left: 20px;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-outlineLicense {
    margin-top: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .p-outlineLicense__item {
    border-left: none;
  }
  .p-outlineLicense__item dd {
    padding-left: 0;
  }
}

.p-outlineCeo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin: 60px auto 0;
}
.p-outlineCeo__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 38.3333333333%;
}
.p-outlineCeo__img img {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.p-outlineCeo__textarea {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 55%;
}
.p-outlineCeo__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.9090909091;
}
.p-outlineCeo__text {
  margin: 1.875em 0 0;
  line-height: 1.875;
}
.p-outlineCeo__name {
  margin: 1.875em 0 0;
  text-align: right;
}
.p-outlineCeo__post {
  display: inline-block;
  margin: 0;
  font-weight: 700;
  line-height: 1.75;
}
.p-outlineCeo__signe {
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .p-outlineCeo__img {
    width: 38.4615384615%;
  }
  .p-outlineCeo__textarea {
    width: 58.7912087912%;
  }
}
@media (max-width: 767px) {
  .p-outlineCeo {
    display: block;
    margin-top: 30px;
  }
  .p-outlineCeo__img {
    width: auto;
    max-width: 460px;
    margin: 0 auto;
  }
  .p-outlineCeo__img img {
    border-radius: 10px;
  }
  .p-outlineCeo__textarea {
    width: auto;
    margin: 40px auto 0;
  }
  .p-outlineCeo__title {
    font-size: 1.25rem;
  }
  .p-outlineCeo__text {
    margin-top: 30px;
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .p-outlineCeo__name {
    margin-top: 40px;
  }
  .p-outlineCeo__post {
    font-size: 0.875rem;
  }
  .p-outlineCeo__signe {
    max-width: 160px;
    margin-top: 10px;
  }
}

.p-outlineSlogan {
  margin: 60px 0 0;
}
.p-outlineSlogan__lead {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.75;
}
.p-outlineSlogan__lead em {
  color: #376EC4;
}
.p-outlineSlogan__list {
  margin: 22px 0 0;
}
.p-outlineSlogan__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
.p-outlineSlogan__list__item:first-child {
  border-top: 1px solid #E6E6E6;
}
.p-outlineSlogan__list__item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
.p-outlineSlogan__list__item dt em {
  color: #376EC4;
}
.p-outlineSlogan__list__item dd {
  margin: 0;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .p-outlineSlogan {
    margin-top: 30px;
  }
  .p-outlineSlogan__list__item {
    display: block;
  }
}

.p-outlineEarnings {
  margin: 60px auto 0;
}
.p-outlineEarnings__table {
  overflow-x: scroll;
}
.p-outlineEarnings__table table {
  min-width: 1200px;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}
.p-outlineEarnings__table tr {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.p-outlineEarnings__table th, .p-outlineEarnings__table td {
  border-right: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  padding: 12px 0;
}
.p-outlineEarnings__table th.-txtl, .p-outlineEarnings__table td.-txtl {
  text-align: left;
}
.p-outlineEarnings__table th.-txtc, .p-outlineEarnings__table td.-txtc {
  text-align: center;
}
.p-outlineEarnings__table th.-txtr, .p-outlineEarnings__table td.-txtr {
  text-align: right;
}
.p-outlineEarnings__table th.-top, .p-outlineEarnings__table td.-top {
  vertical-align: top;
}
.p-outlineEarnings__table th.-nobg, .p-outlineEarnings__table td.-nobg {
  background-color: transparent;
}
.p-outlineEarnings__table th.-heading span, .p-outlineEarnings__table td.-heading span {
  margin-top: 0.625rem;
}
.p-outlineEarnings__table th.-small, .p-outlineEarnings__table td.-small {
  line-height: 1;
}
.p-outlineEarnings__table th.-small span, .p-outlineEarnings__table td.-small span {
  display: inline-block;
  font-size: 0.875rem;
}
.p-outlineEarnings__table th {
  width: 5.75rem;
  background-color: #F1F5F7;
}
.p-outlineEarnings__table td > *:first-child {
  margin-top: 0 !important;
}
.p-outlineEarnings__graph {
  margin-top: 70px;
}
.p-outlineEarnings__graph__title {
  font-size: 1.125rem;
  line-height: 1.33;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.p-outlineEarnings__graph__image {
  margin-top: 28px;
}
.p-outlineEarnings__graph__image img {
  overflow-x: scroll;
  min-width: 1200px;
}
@media (max-width: 767px) {
  .p-outlineEarnings {
    margin-top: 30px;
  }
  .p-outlineEarnings__graph {
    margin-top: 30px;
  }
  .p-outlineEarnings__graph .title {
    text-align: left;
  }
}

.p-branchMap img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .p-branchMap img {
    width: 740px;
    max-width: 740px;
  }
}

.p-branchInfo {
  margin: 80px 0 0;
}
.p-branchInfo__list {
  margin: 0 0 -80px -40px;
  padding-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
}
.p-branchInfo__list > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 270px;
  min-width: 260px;
  margin: 0 0 80px 40px;
}
.p-branchInfo__list > li::after {
  pointer-events: none;
  position: absolute;
  top: calc((var(--btnHeight) - 1.5em) / 2);
  right: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.4%22%20height%3D%2223.4%22%20viewBox%3D%220%200%2023.4%2023.4%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_130%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20130%22%20transform%3D%22translate(0.327%200.7)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_14%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2014%22%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20transform%3D%22translate(0.373)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_117%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20117%22%20transform%3D%22translate(7.457%207.457)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_1%22%20data-name%3D%22%E7%B7%9A%201%22%20x1%3D%224%22%20y1%3D%224%22%20transform%3D%22translate(3.916%20-0.457)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_2%22%20data-name%3D%22%E7%B7%9A%202%22%20x1%3D%228%22%20transform%3D%22translate(-0.084%203.543)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_3%22%20data-name%3D%22%E7%B7%9A%203%22%20y1%3D%224%22%20x2%3D%224%22%20transform%3D%22translate(3.916%203.543)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") center/contain no-repeat;
}
.p-branchInfo__list > li.-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-branchInfo__map > iframe {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid #ECECEC;
  border-radius: 16px;
}
.p-branchInfo__name {
  margin: 16px 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-branchInfo__address {
  margin: 8px 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
.p-branchInfo__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0 -1em 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
.p-branchInfo__details > li {
  display: block;
  margin: 0 1em 0 0;
}
@media (max-width: 1239px) {
  .p-branchInfo__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 943px) {
  .p-branchInfo__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-branchInfo {
    margin-top: 30px;
  }
  .p-branchInfo__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 0 0 -80px -40px;
  }
  .p-branchInfo__name {
    margin-top: 0;
    padding: 20px 0;
    font-size: 1.125rem;
    cursor: pointer;
  }
  .p-branchInfo__address {
    margin: 0;
    font-size: 0.9375rem;
  }
  .p-branchInfo__list {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    width: 100%;
    margin: 0;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .p-branchInfo__list > li {
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: var(--btnHeight);
    min-width: auto;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .p-branchInfo__list > li.-open {
    height: var(--cardHeight);
  }
  .p-branchInfo__list > li::after {
    content: "";
  }
  .p-branchInfo__map {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 20px;
  }
  .p-branchInfo__map > iframe {
    width: 100%;
  }
}

.p-contributionBlock {
  display: block;
  position: relative;
  min-height: 368px;
  margin: 80px 0 0;
  padding-top: 50px;
}
.p-contributionBlock__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50px;
  right: calc(50% - 50vw);
  width: calc((100vw - 100%) / 2 + 53.3333333333%);
  max-width: 100vw;
  height: 368px;
  margin: 0;
  background: no-repeat center/cover;
  overflow: hidden;
}
.p-contributionBlock__img > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 40px 0 0 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-contributionBlock__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 40%;
  margin: 0;
}
.p-contributionBlock__content > *:first-child {
  margin-top: 0 !important;
}
.p-contributionBlock__num {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-size: 6.25rem;
  color: #376EC4;
  font-weight: 500;
  line-height: 1;
  z-index: 3;
}
.p-contributionBlock__heading {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-contributionBlock__heading em {
  color: #376EC4;
}
.p-contributionBlock__heading + .c-text {
  margin-top: 2rem;
}
.p-contributionBlock.-reflect .p-contributionBlock__img {
  right: auto;
  left: calc(50% - 50vw);
}
.p-contributionBlock.-reflect .p-contributionBlock__img > img {
  border-radius: 0 40px 40px 0;
}
.p-contributionBlock.-reflect .p-contributionBlock__content {
  margin-left: auto;
  margin-right: 0;
}
.p-contributionBlock.-reflect .p-contributionBlock__num {
  right: auto;
  left: 0;
}
.p-contributionBlock + .p-contributionBlock {
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .p-contributionBlock {
    min-height: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 450px;
  }
  .p-contributionBlock__img {
    right: 0;
    width: 93.3333333333%;
  }
  .p-contributionBlock__content {
    width: auto;
    padding: 0 6.6666666667%;
  }
  .p-contributionBlock__num {
    right: 20px;
  }
  .p-contributionBlock__heading {
    font-size: 1.375rem;
  }
  .p-contributionBlock.-reflect .p-contributionBlock__img {
    left: 0;
  }
  .p-contributionBlock.-reflect .p-contributionBlock__num {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .p-contributionBlock {
    margin-top: 40px;
    padding-top: 234px;
  }
  .p-contributionBlock__img {
    top: 30px;
    width: 94.6666666667%;
    height: 180px;
  }
  .p-contributionBlock__img > img {
    border-radius: 12px 0 0 12px;
  }
  .p-contributionBlock__content {
    padding: 0 5.3333333333%;
  }
  .p-contributionBlock__num {
    font-size: 3.75rem;
  }
  .p-contributionBlock__heading {
    font-size: 1.125rem;
  }
  .p-contributionBlock__heading + .c-text {
    margin-top: 1rem;
  }
  .p-contributionBlock.-reflect .p-contributionBlock__img {
    left: 0;
  }
  .p-contributionBlock.-reflect .p-contributionBlock__img > img {
    border-radius: 0 12px 12px 0;
  }
  .p-contributionBlock + .p-contributionBlock {
    margin-top: 40px;
  }
}

/**************************************************/
/* pages - recruit */
/**************************************************/
.p-recruitSection {
  position: relative;
  padding: 100px 0 120px;
  z-index: 0;
}
.p-recruitSection.-voice {
  background: url(../../images/recruit/bg-voice.png) repeat-x 50% 0/100% auto;
}
.p-recruitSection.-voice::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: -1;
  pointer-events: none;
}
.p-recruitSection.-industry::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: url(../img/bg-grad.jpg) repeat-y center/100% auto;
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .p-recruitSection {
    padding: 50px 0 60px;
  }
  .p-recruitSection.-voice {
    background-size: 960px auto;
  }
}

.p-recruitIntro {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.p-recruitIntro__marquee {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../img/txt-intro.png) repeat-x 50% 50%;
  z-index: -1;
  pointer-events: none;
  -webkit-animation: recruitIntro-marquee 60s linear infinite;
          animation: recruitIntro-marquee 60s linear infinite;
}
.p-recruitIntro__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.p-recruitIntro__unitL {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-recruitIntro__unitR {
  margin-left: 20px;
  width: 48.3333333333%;
}
.p-recruitIntro__copy {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75;
}
.p-recruitIntro__copy em {
  color: #376EC4;
}
.p-recruitIntro__text {
  margin: 0;
  line-height: 2;
}
.p-recruitIntro__more {
  max-width: 340px;
  margin: 60px 0 0;
}
@media (max-width: 1023px) {
  .p-recruitIntro__wrap {
    display: block;
  }
  .p-recruitIntro__unitR {
    margin: 20px 0 0;
    width: auto;
  }
}
@media (max-width: 1023px) {
  .p-recruitIntro {
    padding: 40px 0 60px;
  }
  .p-recruitIntro__marquee {
    bottom: 20px;
    height: 72px;
    background-size: 1440px auto;
    -webkit-animation-name: recruitIntroSp-marquee;
            animation-name: recruitIntroSp-marquee;
  }
  .p-recruitIntro__copy {
    font-size: 1.5rem;
  }
  .p-recruitIntro__text {
    font-size: 0.875rem;
  }
  .p-recruitIntro__more {
    margin-top: 40px;
  }
}

@-webkit-keyframes recruitIntro-marquee {
  0% {
    background-position: 2400px 50%;
  }
  100% {
    background-position: -2400px 50%;
  }
}

@keyframes recruitIntro-marquee {
  0% {
    background-position: 2400px 50%;
  }
  100% {
    background-position: -2400px 50%;
  }
}
@-webkit-keyframes recruitIntroSp-marquee {
  0% {
    background-position: 1440px 50%;
  }
  100% {
    background-position: -1440px 50%;
  }
}
@keyframes recruitIntroSp-marquee {
  0% {
    background-position: 1440px 50%;
  }
  100% {
    background-position: -1440px 50%;
  }
}
.p-recruitIndustryCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
}
.p-recruitIndustryCard__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
}
.p-recruitIndustryCard__thumb img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.p-recruitIndustryCard__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
}
.p-recruitIndustryCard__body > *:first-child {
  margin-top: 0 !important;
}
.p-recruitIndustryCard__skill {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 32px auto 0;
  padding: 24px;
  border-radius: 6px;
  background: #F1F5F7;
  overflow: hidden;
}
.p-recruitIndustryCard__skill > *:first-child {
  margin-top: 0 !important;
}
.p-recruitIndustryCard__skillHead {
  position: relative;
  margin: 1em 0 0;
  padding-left: 1.5em;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-recruitIndustryCard__skillHead::after {
  display: block;
  position: absolute;
  top: calc(0.75em - 4px);
  left: 3px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-recruitIndustryCard__skillList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
.p-recruitIndustryCard__skillList > li {
  display: block;
  margin-right: 1em;
}
@media (max-width: 1023px) {
  .p-recruitIndustryCard__body {
    padding: 32px 24px;
  }
}
@media (max-width: 767px) {
  .p-recruitIndustryCard {
    border-radius: 12px;
  }
  .p-recruitIndustryCard__body {
    padding: 24px 20px;
  }
  .p-recruitIndustryCard__skill {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-recruitVoice {
  position: relative;
}
.p-recruitVoice__block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 60px;
  padding: 0 48px;
}
@media (max-width: 767px) {
  .p-recruitVoice__block {
    margin-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.p-recruitVoiceSwiper {
  --swiper-navigation-size: 36px;
  --swiper-navigation-color: #376EC4;
}
@media (max-width: 767px) {
  .p-recruitVoiceSwiper {
    --swiper-navigation-size: 24px;
  }
}

.p-recruitVoiceCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 12px;
  background: #fff url(../../images/recruit/bg-voiceCard.png) no-repeat 50%/cover;
  font-size: var(--recruitVoiceCard);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 10px rgba(55, 110, 196, 0.1);
  aspect-ratio: 3/2;
}
.p-recruitVoiceCard__heading {
  position: absolute;
  top: 12.5%;
  left: 0;
  margin: 0;
  font-size: 1em;
  color: #376EC4;
  font-weight: 700;
  line-height: 1.25;
}
.p-recruitVoiceCard__headingLine {
  display: block;
}
.p-recruitVoiceCard__headingLine:not(:first-child) {
  margin-top: 10px;
}
.p-recruitVoiceCard__headingLine > span {
  display: inline-block;
  background-color: #fff;
  padding: 0.5em 0.5em;
}
.p-recruitVoiceCard__profile {
  position: absolute;
  bottom: 8.3333333333%;
  left: 6.4516129032%;
  margin: 0;
  font-size: 1em;
  color: #fff;
  line-height: 1.25;
}
.p-recruitVoiceCard__profileJob {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 700;
}
.p-recruitVoiceCard__profileName {
  font-family: "Poppins", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  display: inline-block;
  font-size: 2em;
  font-weight: 400;
}
.p-recruitVoiceCard__icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 2.1em;
  overflow: hidden;
  position: absolute;
  bottom: 10%;
  right: 6.4516129032%;
  border-color: transparent;
  background: #fff;
  color: #376EC4;
}
.p-recruitVoiceCard__icon.-arrowRight::before, .p-recruitVoiceCard__icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-recruitVoiceCard__icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-recruitVoiceCard__icon.-arrowRight::before, .p-recruitVoiceCard__icon.-arrowRight::after {
  -webkit-mask-image: url(../img/icon-arrow-right-thin.svg);
          mask-image: url(../img/icon-arrow-right-thin.svg);
}
.p-recruitVoiceCard:hover .p-recruitVoiceCard__icon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-recruitVoiceCard:hover .p-recruitVoiceCard__icon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-recruitVoice + .p-recruitEducation {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .p-recruitVoice + .p-recruitEducation {
    margin-top: 80px;
  }
}

.p-recruitEducation {
  margin: 0 auto 0;
}

.p-recruitEducationCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
          box-shadow: 0 0 16px rgba(55, 110, 196, 0.1);
}
.p-recruitEducationCard__title {
  margin: 0;
  font-size: 1.625rem;
  color: #376EC4;
  font-weight: 700;
  line-height: 1.5;
}
.p-recruitEducationCard__text {
  margin: 1em 0 0;
  line-height: 2;
}
.p-recruitEducationCard__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
}
.p-recruitEducationCard__thumb img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.p-recruitEducationCard__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
}
.p-recruitEducationCard__body > *:first-child {
  margin-top: 0 !important;
}
.p-recruitEducationCard__skill {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 32px auto 0;
  padding: 24px;
  border-radius: 6px;
  background: #F1F5F7;
  overflow: hidden;
}
.p-recruitEducationCard__skill > *:first-child {
  margin-top: 0 !important;
}
.p-recruitEducationCard__skillList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0 -5px -0.75em;
  font-size: 0.875rem;
  line-height: 1.25;
  overflow: hidden;
}
.p-recruitEducationCard__skillList > li {
  display: block;
  margin: 0 0 5px -1px;
  padding: 0 0.75em;
  border-left: 1px solid #BCBCBC;
}
.p-recruitEducationCard__more {
  margin: 24px 0 0;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}
.p-recruitEducationCard__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding-bottom: 0.5em;
  padding-right: 2em;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.p-recruitEducationCard__btn::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-recruitEducationCard__btn:hover {
  color: #376EC4;
  opacity: 1;
}
.p-recruitEducationCard__btn:hover .p-recruitEducationCard__btnIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-recruitEducationCard__btn:hover .p-recruitEducationCard__btnIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-recruitEducationCard__btn:hover::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-recruitEducationCard__btnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0;
  color: #376EC4;
}
.p-recruitEducationCard__btnIcon.-arrowRight::before, .p-recruitEducationCard__btnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-recruitEducationCard__btnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-recruitEducationCard__btnIcon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.7em);
  right: 0;
  color: #376EC4;
}
.p-recruitEducationCard__btnIcon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
@media (max-width: 1023px) {
  .p-recruitEducationCard__body {
    padding: 32px 24px;
  }
  .p-recruitEducationCard__more {
    margin-top: 16px;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-recruitEducationCard {
    border-radius: 12px;
  }
  .p-recruitEducationCard__body {
    padding: 24px 20px;
  }
  .p-recruitEducationCard__title {
    font-size: 1.125rem;
  }
  .p-recruitEducationCard__text {
    font-size: 0.875rem;
  }
  .p-recruitEducationCard__skill {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-recruitEducationCard__skillList {
    display: block;
    margin: 0.5em 0 0;
  }
  .p-recruitEducationCard__skillList > li {
    display: block;
    margin: 0;
    padding: 0;
    border-left: none;
  }
  .p-recruitEducationCard__skillList > li + li {
    margin-top: 0.5em;
  }
}

/**************************************************/
/* pages - pm-academy */
/**************************************************/
.p-pmTopLead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-pmTopLead__heading {
  margin: 0;
  font-size: 1.75rem;
}
.p-pmTopLead__lead {
  margin: 0;
  line-height: 2;
  width: 66%;
}
@media (max-width: 1023px) {
  .p-pmTopLead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }
  .p-pmTopLead__heading {
    font-size: 1.375rem;
  }
  .p-pmTopLead__lead {
    width: 100%;
    font-size: 0.875rem;
  }
}

.p-pmTopImg {
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 50px;
}
.p-pmTopImg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
@media (max-width: 767px) {
  .p-pmTopImg {
    border-radius: 12px;
    margin-top: 40px;
    height: 200px;
  }
}

.p-pmHeading {
  position: relative;
  padding-bottom: 90px;
  border-bottom: 1px solid #E6E6E6;
  margin: 100px 0 0 0;
  font-size: 1.875rem;
  line-height: 1.6666666667;
}
.p-pmHeading::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  pointer-events: none;
  content: "";
}
@media (max-width: 1023px) {
  .p-pmHeading::after {
    width: 100px;
  }
}
@media (max-width: 1023px) {
  .p-pmHeading {
    padding-bottom: 40px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-pmHeading {
    margin-top: 60px;
  }
}

@media (max-width: 1023px) {
  .pg-pm .l-block {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pg-pm .l-block__img {
    position: relative;
    margin: 20px 0 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .pg-pm .l-block.-reflect .l-block__img {
    margin: 20px auto 0 0;
  }
}
@media (max-width: 767px) {
  .pg-pm .l-block__img {
    height: 200px;
  }
  .pg-pm .l-block + .l-block {
    margin-top: 40px;
  }
}

.p-pmAbout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem 5rem;
  width: calc(100% + 2.5rem);
}
.p-pmAbout__textarea {
  width: 39%;
}
.p-pmAbout__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 6.25rem;
}
@media (max-width: 1023px) {
  .p-pmAbout {
    width: 100%;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-pmAbout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-pmAbout__textarea {
    width: 100%;
  }
  .p-pmAbout__img {
    margin-top: 0;
  }
}

.p-pmTraining > .c-headingC {
  margin-top: 5rem;
}
.p-pmTraining__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 100px 60px;
  margin: 60px 0 0 0;
  padding: 0;
  list-style: none;
}
.p-pmTraining__item {
  width: calc((100% - 120px) / 3);
}
.p-pmTraining__item > a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
}
.p-pmTraining__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 360/280;
}
.p-pmTraining__img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-pmTraining__text {
  margin: 24px 0 0 0;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .p-pmTraining__list {
    gap: 40px 20px;
  }
  .p-pmTraining__item {
    width: calc((100% - 40px) / 3);
  }
  .p-pmTraining__text {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-pmTraining > .c-headingC {
    margin-top: 3.125rem;
  }
  .p-pmTraining__item {
    width: calc((100% - 20px) / 2);
  }
  .p-pmTraining__img {
    border-radius: 10px;
  }
  .p-pmTraining__text {
    margin-top: 12px;
  }
}

.p-pmPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(61, 61, 61, 0.7);
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
}
.p-pmPopup__box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 75px 20px;
  max-width: 880px;
  margin-inline: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-pmPopup__close {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  display: inline-block;
  position: absolute;
  top: 31px;
  right: -1.5rem;
  background: url(../img/icon-close.svg) center center no-repeat;
  background-size: contain;
  cursor: pointer;
}
.p-pmPopup__img {
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  aspect-ratio: 880/410;
}
.p-pmPopup__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pmPopup__body {
  background-color: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 40px;
}
.p-pmPopup__title {
  font-size: 1.375rem;
  font-weight: bold;
  margin: 0;
}
.p-pmPopup__text {
  line-height: 2;
  margin: 2.5rem 0 0 0;
}
@media (max-width: 1023px) {
  .p-pmPopup__close {
    top: 35px;
    right: 20px;
    width: 1.875rem;
    height: 1.875rem;
  }
  .p-pmPopup__title {
    font-size: 1.0625rem;
  }
  .p-pmPopup__text {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-pmPopup__img {
    border-radius: 0.75rem 0.75rem 0 0;
    aspect-ratio: 880/560;
  }
  .p-pmPopup__body {
    padding: 30px 20px;
    border-radius: 0 0 0.75rem 0.75rem;
  }
  .p-pmPopup__text {
    margin-top: 1.5rem;
  }
}

.p-pmFixed {
  position: fixed;
  right: 0;
  bottom: 32px;
  z-index: 100;
}
.p-pmFixed > a {
  display: inline-block;
  width: 160px;
  border-radius: 16px 0 0 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .p-pmFixed {
    bottom: 20px;
  }
  .p-pmFixed > a {
    width: 120px;
  }
}

/**************************************************/
/* pages - faq */
/**************************************************/
.p-faqTabHead__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  gap: 60px;
  margin: 0;
}
.p-faqTabHead__list li a {
  position: relative;
  display: block;
  padding-bottom: 1em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  text-decoration: none;
  color: inherit;
  opacity: 0.4;
}
.p-faqTabHead__list li a.-current {
  opacity: 1;
}
.p-faqTabHead__list li a.-current::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  height: 6px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  pointer-events: none;
  content: "";
}
.p-faqTabHead__sp {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: none;
  width: 100%;
  padding: 12px 54px 12px 12px;
  border: 2px solid #E6E6E6;
  border-radius: 6px;
  background: url(../img/icon-select.svg) no-repeat right 13px top 50%/16px 16px, -webkit-gradient(linear, left bottom, left top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777)) no-repeat right 50%/42px 100%, #fff;
  background: url(../img/icon-select.svg) no-repeat right 13px top 50%/16px 16px, linear-gradient(to top, #0E74B8 0%, #9377BF 50%, #FD7777 100%) no-repeat right 50%/42px 100%, #fff;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.p-faqTabHead__sp::-ms-expand {
  display: none;
}
@media (max-width: 1023px) {
  .p-faqTabHead__list {
    display: none;
  }
  .p-faqTabHead__sp {
    display: block;
  }
}
.p-faqTabBody {
  margin-top: 80px;
}
.p-faqTabBody__panel {
  counter-reset: num 0;
}
.p-faqTabBody__panel__list {
  margin: 24px 0 0;
}
.p-faqTabBody__panel__list dt {
  position: relative;
  padding: 24px 24px 24px 80px;
  border-radius: 6px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  font-weight: 700;
  text-align: justify;
  background: #F1F5F7;
  cursor: pointer;
}
.p-faqTabBody__panel__list dt::before, .p-faqTabBody__panel__list dt::after {
  pointer-events: none;
}
.p-faqTabBody__panel__list dt::before {
  counter-increment: num 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  color: #376EC4;
  content: "Q" counter(num) ".";
}
.p-faqTabBody__panel__list dt::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223.4%22%20height%3D%2223.4%22%20viewBox%3D%220%200%2023.4%2023.4%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_130%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20130%22%20transform%3D%22translate(0.327%200.7)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_14%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2014%22%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%2211%22%20transform%3D%22translate(0.373)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_117%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20117%22%20transform%3D%22translate(7.457%207.457)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_1%22%20data-name%3D%22%E7%B7%9A%201%22%20x1%3D%224%22%20y1%3D%224%22%20transform%3D%22translate(3.916%20-0.457)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_2%22%20data-name%3D%22%E7%B7%9A%202%22%20x1%3D%228%22%20transform%3D%22translate(-0.084%203.543)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_3%22%20data-name%3D%22%E7%B7%9A%203%22%20y1%3D%224%22%20x2%3D%224%22%20transform%3D%22translate(3.916%203.543)%22%20fill%3D%22none%22%20stroke%3D%22%23376ec4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") center/contain no-repeat;
}
.p-faqTabBody__panel__list dt.-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-faqTabBody__panel__list dd {
  margin: 0;
  padding: 24px 24px 24px 80px;
  text-align: justify;
}
.p-faqTabBody__panel__list dd em {
  color: #EF2C2C;
}
@media (max-width: 1023px) {
  .p-faqTabBody {
    margin-top: 30px;
  }
  .p-faqTabBody__panel__list {
    margin-top: 10px;
  }
  .p-faqTabBody__panel__list dt {
    padding: 20px 70px;
    font-size: 1rem;
  }
  .p-faqTabBody__panel__list dt::after {
    content: "";
  }
  .p-faqTabBody__panel__list dd {
    padding: 20px 0;
    font-size: 0.875rem;
  }
}
.entryFormLiteEditor em {
  color: #EF2C2C;
}

/**************************************************/
/* pages - strength */
/**************************************************/
.p-sdgsHeading {
  position: relative;
  padding-bottom: 90px;
  border-bottom: 1px solid #E6E6E6;
  margin: 100px 0 0 0;
  font-size: 1.875rem;
  line-height: 1.6666666667;
}
.p-sdgsHeading::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  pointer-events: none;
  content: "";
}
@media (max-width: 1023px) {
  .p-sdgsHeading::after {
    width: 100px;
  }
}
@media (max-width: 1023px) {
  .p-sdgsHeading {
    padding-bottom: 40px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .p-sdgsHeading {
    margin-top: 60px;
  }
}

.p-sdgsGoal {
  margin-top: 90px;
  border: solid 3px #F1F5F7;
  border-radius: 24px;
  padding: 60px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-sdgsGoal__heading {
  font-size: 1.5rem;
  margin: 0;
}
.p-sdgsGoal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-sdgsGoal__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-sdgsGoal__img > img {
  max-width: 100px;
}
.p-sdgsGoal__textarea {
  margin-top: 32px;
}
.p-sdgsGoal__text {
  margin: 16px 0 0 0;
}
@media (max-width: 1239px) {
  .p-sdgsGoal__heading {
    font-size: 1.25rem;
  }
  .p-sdgsGoal__content {
    gap: 20px;
  }
  .p-sdgsGoal__img {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .p-sdgsGoal__textarea {
    margin-top: 20px;
  }
  .p-sdgsGoal__text {
    max-width: 220px;
    margin-top: 8px;
  }
}
@media (max-width: 1023px) {
  .p-sdgsGoal {
    padding: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    border-radius: 12px;
  }
  .p-sdgsGoal__heading {
    font-size: 1.125rem;
  }
  .p-sdgsGoal__item {
    width: calc((100% - 40px) / 3);
  }
  .p-sdgsGoal__img > img {
    max-width: calc(50% - 10px);
  }
  .p-sdgsGoal__text {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-sdgsGoal {
    margin-top: 40px;
  }
  .p-sdgsGoal__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-sdgsGoal__item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .p-sdgsGoal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-sdgsGoal__item {
    width: 100%;
    max-width: 220px;
    margin-inline: auto;
  }
}

.p-sdgsBlock {
  margin-top: 100px;
  padding: 100px 100px 100px 240px;
  position: relative;
}
.p-sdgsBlock::after {
  height: 100%;
  background-color: #F1F5F7;
  z-index: -1;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  border-radius: 24px 0 0 24px;
  content: "";
  pointer-events: none;
}
.p-sdgsBlock.-first {
  margin-top: 130px;
}
.p-sdgsBlock.-reflect::after {
  left: auto;
  right: 0;
  border-radius: 0 24px 24px 0;
}
.p-sdgsBlock__icon {
  width: 100px;
  position: absolute;
  top: 100px;
  left: 100px;
}
.p-sdgsBlock__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-sdgsBlock__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-sdgsBlock__textarea > .c-text {
  margin-top: 32px;
}
.p-sdgsBlock__heading {
  font-size: 1.5rem;
  margin: 0;
  position: relative;
  padding-bottom: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.p-sdgsBlock__heading::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0E74B8), color-stop(50%, #9377BF), to(#FD7777));
  background: linear-gradient(to right, #0E74B8 0%, #9377BF 50%, #FD7777 100%);
  content: "";
}
.p-sdgsBlock__heading > span {
  color: #376EC4;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
.p-sdgsBlock__img {
  width: min(40%, 300px);
  border-radius: 8px;
  overflow: hidden;
}
.p-sdgsBlock__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .p-sdgsBlock {
    padding: 40px 40px 40px 180px;
  }
  .p-sdgsBlock__icon {
    left: 40px;
    top: 40px;
  }
  .p-sdgsBlock__heading {
    font-size: 1.125rem;
    padding-bottom: 1.5rem;
  }
  .p-sdgsBlock__heading > span {
    font-size: 0.875rem;
  }
  .p-sdgsBlock__textarea > .c-text {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .p-sdgsBlock {
    padding: 24px;
    margin-top: 40px;
  }
  .p-sdgsBlock::after {
    border-radius: 12px 0 0 12px;
  }
  .p-sdgsBlock.-reflect::after {
    border-radius: 0 12px 12px 0;
  }
  .p-sdgsBlock.-first {
    margin-top: 60px;
  }
  .p-sdgsBlock__icon {
    position: relative;
    top: 0;
    left: 0;
    width: 80px;
  }
  .p-sdgsBlock__content {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .p-sdgsBlock__img {
    width: min(100%, 300px);
  }
}

.p-sdgsBlock-box {
  margin-top: 40px;
  border-radius: 6px;
  background-color: #fff;
  padding: 32px;
}
.p-sdgsBlock-box .c-text {
  margin: 0;
}
.p-sdgsBlock-box__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-sdgsBlock-box__img {
  border-radius: 8px;
  overflow: hidden;
  max-width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-sdgsBlock-box__heading {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 24px 0;
}
.p-sdgsBlock-box__heading > span {
  color: #376EC4;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  .p-sdgsBlock-box {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .p-sdgsBlock-box {
    padding: 20px;
  }
  .p-sdgsBlock-box__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .p-sdgsBlock-box__heading {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .p-sdgsBlock-box__heading > span {
    font-size: 0.8125rem;
  }
}

.p-sdgsAbout__poster {
  margin-top: 100px;
  max-width: 900px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-sdgsAbout__poster {
    margin-top: 40px;
  }
}

/**************************************************/
/* pages -others */
/**************************************************/
.p-contactTitle {
  position: relative;
  padding: 100px 0 64px;
}
.p-contactTitle__heading {
  position: relative;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .p-contactTitle__heading {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .p-contactTitle {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-contactTitle__heading {
    font-size: 1.375rem;
  }
}

.p-contactLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 20px;
  background: url(../img/bg-grad.jpg) repeat-y center/100% auto;
  color: #fff;
}
.p-contactLabel__head {
  margin: 0 24px 0 0;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
}
.p-contactLabel__headSub {
  display: block;
  font-size: 0.875rem;
}
.p-contactLabel__headMain {
  display: block;
  font-size: 1.25rem;
}
.p-contactLabel__freecole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-left: 68px;
  line-height: 1.25;
}
.p-contactLabel__freecoleLink {
  display: inline-block;
  position: relative;
  margin-right: 12px;
  font-size: 2.375rem;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.p-contactLabel__freecoleLink::after {
  display: block;
  position: absolute;
  top: calc(50% - 24px);
  left: -68px;
  width: 56px;
  height: 48px;
  background: currentColor;
  content: "";
  -webkit-mask: url(../img/icon-freecole.svg) 50% 50%/contain;
          mask: url(../img/icon-freecole.svg) 50% 50%/contain;
}
.p-contactLabel__time {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-contactLabel {
    padding: 20px 20px;
  }
  .p-contactLabel__head {
    margin-right: 8px;
  }
  .p-contactLabel__headSub {
    font-size: 0.625rem;
  }
  .p-contactLabel__headMain {
    font-size: 0.75rem;
  }
  .p-contactLabel__freecole {
    display: block;
    padding-left: 34px;
  }
  .p-contactLabel__freecoleLink {
    margin-right: 0;
    font-size: 1.25rem;
  }
  .p-contactLabel__freecoleLink::after {
    top: calc(50% - 12px);
    left: -34px;
    width: 28px;
    height: 24px;
  }
  .p-contactLabel__time {
    display: block;
    font-size: 0.625rem;
  }
}

.p-sitemap {
  display: block;
  margin: 80px auto 0;
}
.p-sitemap > *:first-child {
  margin-top: 0 !important;
}
.p-sitemap__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin: 60px 0 -60px -20px;
}
.p-sitemap__unit {
  width: calc(33.3333333333% - 20px);
  margin: 0 0 60px 20px;
}
.p-sitemap__unit > *:first-child {
  margin-top: 0 !important;
}
.p-sitemap__primary {
  margin: 60px 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-sitemap__secondary {
  list-style: none;
  max-width: 240px;
  margin: 24px 0 0;
  padding: 0;
  line-height: 1.5;
}
.p-sitemap__secondary > li {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-sitemap__secondary > li + li {
  margin-top: 16px;
}
.p-sitemap__btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-right: 1.5em;
  color: #376EC4;
  text-decoration: none;
}
.p-sitemap__btn:hover .p-sitemap__btnIcon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-sitemap__btn:hover .p-sitemap__btnIcon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-sitemap__btnIcon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.45em);
  right: 0;
  border-color: transparent;
  background-color: #376EC4;
  color: #fff;
}
.p-sitemap__btnIcon.-arrowRight::before, .p-sitemap__btnIcon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-sitemap__btnIcon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-sitemap__btnIcon.-arrowRight::before, .p-sitemap__btnIcon.-arrowRight::after {
  border-color: transparent;
}
.p-sitemap__btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
  padding: 0.5em 1.5em 0.5em 0;
  border-bottom: 1px solid #E6E6E6;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.p-sitemap__btn2::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #376EC4;
  content: "";
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-sitemap__btn2:hover {
  color: #376EC4;
  opacity: 1;
}
.p-sitemap__btn2:hover .p-sitemap__btn2Icon.-arrowRight::before {
  opacity: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.p-sitemap__btn2:hover .p-sitemap__btn2Icon.-arrowRight::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-sitemap__btn2:hover::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-sitemap__btn2Icon.-arrowRight {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.0833333333em solid;
  border-radius: 50%;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.p-sitemap__btn2Icon.-arrowRight::before, .p-sitemap__btn2Icon.-arrowRight::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 0.4666666667em;
  content: "";
  -webkit-mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
          mask: url(../img/icon-arrow-right.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
.p-sitemap__btn2Icon.-arrowRight::after {
  opacity: 0;
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.p-sitemap__btn2Icon.-external {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit;
  font-size: 1.125em;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  color: #376EC4;
}
.p-sitemap__btn2Icon.-external::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background: currentColor;
  font-size: 1em;
  content: "";
  -webkit-mask: url(../img/icon-external.svg) 50% 50%/cover;
          mask: url(../img/icon-external.svg) 50% 50%/cover;
  -webkit-transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.8s cubic-bezier(1, 0, 0, 1);
}
@media (max-width: 1023px) {
  .p-sitemap__primary {
    font-size: 1.25rem;
  }
  .p-sitemap__secondary {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-sitemap {
    margin-top: 40px;
  }
  .p-sitemap__wrap {
    margin: 30px 0 -30px -20px;
  }
  .p-sitemap__unit {
    width: calc(100% - 20px);
    margin: 0 0 30px 20px;
  }
  .p-sitemap__primary {
    margin-top: 30px;
    font-size: 1.125rem;
  }
  .p-sitemap__secondary {
    max-width: none;
    margin-top: 8px;
  }
  .p-sitemap__secondary > li + li {
    margin-top: 0;
  }
  .p-sitemap__btn2 {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
}
/*# sourceMappingURL=site.css.map */