@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

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

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  font-size: 62.5%; /* 10px / 16px * 100 */
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.666vw; /* 10px / 375px * 100 */
  }
}

body {
  font-family: "Noto Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  body {
    line-height: 1.5;
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
  }
}
img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  height: auto;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 769px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #0851d7;
  -webkit-transition: color 0.2s, opacity 0.2s;
  transition: color 0.2s, opacity 0.2s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

/* button
--------------------------------------------------*/
button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 1.6rem;
  color: inherit;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("/assets/slick/slick.eot");
  src: url("/assets/slick/slick.eot?#iefix") format("embedded-opentype"), url("/assets/slick/slick.woff") format("woff"), url("/assets/slick/slick.ttf") format("truetype"), url("/assets/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  top: 50%;
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.u-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

.p-fv {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
}
.p-fv img {
  position: relative;
  width: 100%;
  z-index: 2;
}
.p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.p-fv__bg-imgwrap {
  width: 100%;
}
.p-fv__bg-img1 {
  -webkit-animation: loop 30s -15s linear infinite;
          animation: loop 30s -15s linear infinite;
}
.p-fv__bg-img2 {
  -webkit-animation: loop2 30s linear infinite;
          animation: loop2 30s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.p-lead-text {
  margin: 9rem auto 0;
  max-width: 400px;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .p-lead-text {
    margin: 6.6rem auto 0;
    max-width: none;
    width: 76%;
  }
}

.p-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 6.7rem auto 0;
}
.p-tab__item {
  position: relative;
  width: 49.5%;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.p-tab__item.-tab1.is-active::before, .p-tab__item.-tab2.is-active::before {
  content: "";
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7rem;
  height: 6.7rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  z-index: 1;
}
.p-tab__item.-tab1.is-active::before {
  background-color: #163272;
}
.p-tab__item.-tab2.is-active::before {
  background-color: #fc5c63;
}
.p-tab__contents {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-tab__contents.-tab1 {
  border: #163272 15px solid;
  background-color: #f5f5f5;
}
.p-tab__contents.-tab2 {
  border: #fc5c63 15px solid;
  background-color: #fdeeef;
}
@media screen and (max-width: 768px) {
  .p-tab {
    margin: 4.1rem auto 0;
  }
  .p-tab__item.-tab1.is-active::before, .p-tab__item.-tab2.is-active::before {
    top: calc(100% - 1rem);
    width: 3.5rem;
    height: 3.5rem;
  }
  .p-tab__contents.-tab1 {
    border: #163272 0.7rem solid;
  }
  .p-tab__contents.-tab2 {
    border: #fc5c63 0.7rem solid;
  }
}

.p-tab-contents {
  padding: 12.3rem 0 10.5rem;
}
.p-tab-contents__lead1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}
.p-tab-contents__lead2 {
  margin-top: 1.7rem;
  font-size: 5.2rem;
  text-align: center;
  font-weight: 700;
  color: #163272;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-tab-contents {
    padding: 4rem 0 6.3rem;
  }
  .p-tab-contents__wrap {
    padding-bottom: 6.3rem;
  }
  .p-tab-contents__lead1 {
    font-size: 2rem;
  }
  .p-tab-contents__lead2 {
    margin-top: 1rem;
    font-size: 3.3rem;
    letter-spacing: 0;
    line-height: 1.3;
  }
}

.section-title {
  margin: 12.5rem auto 0;
  padding: 2.4rem 0;
  border-top: #717375 1px solid;
  border-bottom: #717375 1px solid;
  max-width: 60rem;
}
.section-title__title {
  color: #000000;
  opacity: 0.7;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.4;
}
.section-title__title span {
  letter-spacing: -0.2rem;
}
.section-title.-ptn2 {
  padding: 0.8rem 0;
}
@media screen and (max-width: 768px) {
  .section-title {
    margin: 9rem auto 0;
    width: 87%;
    padding: 0.8rem 0;
  }
  .section-title__title {
    font-size: 2rem;
  }
  .section-title.-ptn2 {
    padding: 0.4rem 0;
  }
  .section-title.-ptn2 .section-title__title {
    font-size: 2.5rem;
  }
}

.p-button-link {
  display: block;
  text-align: center;
  margin-top: 9.5rem;
}
.p-button-link a {
  position: relative;
  display: inline-block;
  padding: 2.1rem 5.5rem;
  background-color: #163272;
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: bold;
  border-radius: 1rem;
}
.p-button-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.5rem;
  width: 0;
  height: 0;
  border-left: 1.2rem solid #ffffff;
  border-bottom: 0.7rem solid transparent;
  border-top: 0.7rem solid transparent;
  border-left-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-button-link {
    margin-top: 4.5rem;
  }
  .p-button-link a {
    font-size: 2rem;
    padding: 0.9rem 3rem;
  }
  .p-button-link a::after {
    top: auto;
    bottom: 0.8rem;
    right: 1.5rem;
    border-left: 1rem solid #ffffff;
    border-bottom: 0.7rem solid transparent;
    border-top: 0.7rem solid transparent;
  }
}

.p-task {
  max-width: 84rem;
  min-height: 28rem;
  width: 95%;
  margin: 4.8rem auto 0;
}
.p-task__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
}
.p-task__item:not(:first-child) {
  margin-top: 4.7rem;
}
.p-task__number {
  z-index: 10;
  position: absolute;
  top: -1.5rem;
  left: -0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5.6rem;
  padding: 0.8rem 0rem 0.8rem 0.9rem;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.3rem;
}
.p-task__number span {
  margin-left: 0.3rem;
  font-size: 2rem;
  line-height: 1;
}
.p-task__number::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 70%;
  height: 100%;
  background-color: #000000;
  -webkit-clip-path: polygon(0 0, 0% 100%, 16% 50%);
          clip-path: polygon(0 0, 0% 100%, 16% 50%);
}
.p-task__left {
  position: relative;
  width: 20rem;
  background-color: #d0d6e3;
}
.p-task__left::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 70%;
  height: 100%;
  background-color: #d0d6e3;
  -webkit-clip-path: polygon(0 0, 0% 100%, 16% 50%);
          clip-path: polygon(0 0, 0% 100%, 16% 50%);
}
.p-task__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-task .p-task-left {
  padding: 2rem 1.5rem 2rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-task .p-task-left__text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.7rem;
}
.p-task .p-task-left__image {
  max-width: 13.5rem;
}
.p-task .p-task-right {
  padding: 2rem 3rem 3rem 5.5rem;
}
.p-task .p-task-right__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #163272;
  opacity: 0.8;
}
.p-task .p-task-right__title.-small {
  font-size: 2.6rem;
}
.p-task .p-task-right__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5rem;
  gap: 4%;
}
.p-task .p-task-right__text {
  width: 43%;
  font-size: 1.5rem;
  line-height: 1.73;
  letter-spacing: 0.2rem;
}
.p-task .p-task-right__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-task .p-task-right__image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-task {
    margin-top: 4.1rem;
    max-width: none;
    min-height: auto;
    width: 87.6%;
  }
  .p-task__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-task__item:not(:first-child) {
    margin-top: 7.4rem;
  }
  .p-task__number {
    top: -1.9rem;
  }
  .p-task__left {
    position: relative;
    width: 100%;
  }
  .p-task__left::before {
    position: absolute;
    content: "";
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d0d6e3;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 16%);
            clip-path: polygon(100% 0, 0 0, 50% 16%);
  }
  .p-task .p-task-left {
    padding: 0 1.5rem 0 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: #d0d6e3;
    gap: 1.2rem;
  }
  .p-task .p-task-left__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 2.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.18rem;
    text-align: left;
  }
  .p-task .p-task-left__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-transform: translate(-0.5rem, 2rem) scale(1.2);
            transform: translate(-0.5rem, 2rem) scale(1.2);
    max-width: 11rem;
    height: auto;
  }
  .p-task .p-task-right {
    padding: 4rem 2.4rem 2.4rem 2.4rem;
  }
  .p-task .p-task-right__title {
    text-align: left;
    font-size: 2.6rem;
    line-height: 1.57;
  }
  .p-task .p-task-right__title.-small {
    font-size: 2.6rem;
  }
  .p-task .p-task-right__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.8rem;
    gap: auto;
  }
  .p-task .p-task-right__text {
    width: 100%;
  }
  .p-task .p-task-right__image {
    margin-top: 1.5rem;
  }
}

.p-slider-title {
  margin: 5.5rem auto 0.2rem;
  max-width: 60rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-slider-title {
    margin-top: 5rem;
    max-width: none;
    width: 87.6%;
    font-size: 1.5rem;
  }
}

.p-slider {
  margin: 0 auto;
  max-width: 60rem;
  width: 80%;
}
.p-slider .p-slider-arrow {
  position: absolute;
  top: 50%;
  width: 2.1rem;
  height: 4.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-slider .p-slider-arrow img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-slider .p-slider-arrow.-prev {
  left: -5.7rem;
}
.p-slider .p-slider-arrow.-next {
  right: -5.7rem;
}
@media screen and (max-width: 768px) {
  .p-slider {
    width: 87.6%;
  }
  .p-slider .p-slider-arrow {
    width: 0.7rem;
    height: 1.4rem;
  }
  .p-slider .p-slider-arrow.-prev {
    left: -1.5rem;
  }
  .p-slider .p-slider-arrow.-next {
    right: -1.5rem;
  }
}

.p-function-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 1.4rem auto 0;
  max-width: 84rem;
  width: 95%;
}
.p-function-list__item {
  width: 31%;
  margin-top: 3rem;
}
.p-function-list__item a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.p-function-list__item a::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("../image/ico_expansion.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.p-function-list__item p {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .p-function-list {
    margin-top: 1rem;
    max-width: none;
    width: 87.6%;
  }
  .p-function-list__item {
    width: 46.5%;
    margin-top: 3rem;
  }
  .p-function-list__item a::before {
    top: 0.4rem;
    right: 0.4rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .p-function-list__item p {
    margin-top: 1.1rem;
    font-size: 1.5rem;
  }
}

.p-customer {
  max-width: 72rem;
  width: 95%;
  margin: 10rem auto 0;
}
.p-customer__title {
  border-radius: 2rem 2rem 0 0;
  padding: 0.4rem 1rem;
  background-color: #163272;
  opacity: 0.7;
}
.p-customer__title h3 {
  text-align: center;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.35;
}
.p-customer .p-customer-list {
  padding: 2rem 6rem 2rem;
  background-color: #ffffff;
  list-style: none;
}
.p-customer .p-customer-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2.5rem 0;
  gap: 2.7rem;
}
.p-customer .p-customer-list__item:first-child {
  border-bottom: 1px solid #9f9f9f;
}
.p-customer .p-customer-list__image {
  width: 8.6rem;
  height: 8.6rem;
}
.p-customer .p-customer-list__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-customer .p-customer-list__lead1 {
  font-size: 1.8rem;
  line-height: 2.1;
}
.p-customer .p-customer-list__lead2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: #163272;
}
@media screen and (max-width: 768px) {
  .p-customer {
    max-width: 72rem;
    width: 87.6%;
    margin: 10rem auto;
  }
  .p-customer__title {
    padding: 0.6rem 1rem;
  }
  .p-customer__title h3 {
    font-size: 2rem;
  }
  .p-customer .p-customer-list {
    padding: 0 1.3rem 0 2.2rem;
  }
  .p-customer .p-customer-list__item {
    padding: 2.5rem 0 2.8rem;
    gap: 1rem;
  }
  .p-customer .p-customer-list__item:first-child {
    border-bottom: 1px solid #9f9f9f;
  }
  .p-customer .p-customer-list__lead1 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-customer .p-customer-list__lead2 {
    font-size: 1rem;
    white-space: nowrap;
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
}

.p-card {
  max-width: 84rem;
  width: 95%;
  margin: 10.4rem auto 0;
  padding: 6rem 4rem 5rem 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.p-card__detail {
  width: 44.5%;
  margin-right: 2rem;
}
.p-card__title-wrap {
  padding: 0.9rem 0 0.8rem;
  border-top: #3572aa 1px solid;
  border-bottom: #3572aa 1px solid;
}
.p-card__title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #3572aa;
}
.p-card__text {
  margin-top: 1.4rem;
  font-size: 2.2rem;
  line-height: 1.72;
  letter-spacing: 0.1rem;
  text-align: justify;
}
.p-card__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-card__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-card {
    width: 87.6%;
    margin: 6.7rem auto 0;
    padding: 4rem 2.5rem 2.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-card__detail {
    width: 100%;
    margin-right: 0;
  }
  .p-card__title-wrap {
    padding: 0.9rem 0 0.8rem;
  }
  .p-card__title {
    font-size: 2rem;
  }
  .p-card__text {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: normal;
  }
  .p-card__image {
    width: 84%;
    margin: 1.1rem auto 0;
  }
}

.p-contact-wrap {
  width: 100%;
  margin-top: 9.5rem;
  overflow-y: auto;
}
.p-contact-wrap iframe {
  width: 100%;
  height: 63rem;
}
@media screen and (max-width: 768px) {
  .p-contact-wrap {
    margin-top: 6.5rem;
  }
  .p-contact-wrap iframe {
    height: 40rem;
  }
}

.p-tab2 {
  position: fixed;
  visibility: hidden;
  top: 5rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: visibility 0s 0.2s, opacity 0.2s;
  transition: visibility 0s 0.2s, opacity 0.2s;
}
.p-tab2.is-show {
  visibility: visible;
  -webkit-transition: visibility 0s, opacity 0.2s;
  transition: visibility 0s, opacity 0.2s;
  opacity: 1;
}
.p-tab2__item {
  width: 16.9rem;
}
.p-tab2__item img {
  -webkit-transform: translateX(0.8rem);
          transform: translateX(0.8rem);
}
@media (hover: hover) {
  .p-tab2__item:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .p-tab2 {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: auto;
    bottom: 0;
  }
  .p-tab2__item {
    width: 50%;
  }
  .p-tab2__item img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-tab__contents.-tab1 {
  border-color: #163272;
  background-color: #eff1f5;
}
.p-tab__contents.-tab1 .p-button-link a {
  background-color: #163272;
}
.p-tab__contents.-tab1 .p-tab-contents__lead2 {
  color: #163272;
}
.p-tab__contents.-tab1 .p-task__left {
  background-color: #d0d6e3;
}
.p-tab__contents.-tab1 .p-task__left::before {
  background-color: #d0d6e3;
}
.p-tab__contents.-tab1 .p-task .p-task-right__title {
  color: #163272;
}
.p-tab__contents.-tab1 .p-customer__title {
  background-color: #163272;
}
.p-tab__contents.-tab1 .p-customer .p-customer-list__lead2 {
  color: #163272;
}
.p-tab__contents.-tab1 .p-card__title-wrap {
  border-top: #3572aa 1px solid;
  border-bottom: #3572aa 1px solid;
}
.p-tab__contents.-tab1 .p-card__title {
  color: #3572aa;
}
.p-tab__contents.-tab2 {
  border-color: #fc5c63;
  background-color: #fdeeef;
}
.p-tab__contents.-tab2 .p-button-link a {
  background-color: #fc5c63;
}
.p-tab__contents.-tab2 .p-tab-contents__lead2 {
  color: #fc5c63;
}
.p-tab__contents.-tab2 .p-task__left {
  background-color: #feced0;
}
.p-tab__contents.-tab2 .p-task__left::before {
  background-color: #feced0;
}
.p-tab__contents.-tab2 .p-task .p-task-right__title {
  color: #fc5c63;
}
.p-tab__contents.-tab2 .p-customer__title {
  background-color: #fc5c63;
}
.p-tab__contents.-tab2 .p-customer .p-customer-list__lead2 {
  color: #fc5c63;
}
.p-tab__contents.-tab2 .p-card__title-wrap {
  border-top: #fc5c63 1px solid;
  border-bottom: #fc5c63 1px solid;
}
.p-tab__contents.-tab2 .p-card__title {
  letter-spacing: normal;
  color: #fc5c63;
}