@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

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

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: 0;
}

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media (min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.8771929825vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #000;
  font-size: max(1.4rem, 11px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

img {
  border: none;
  display: block;
  width: 100%;
  height: auto;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 777;
}

/* ------------------------------------------------
l-footer
--------------------------------------------------- */
/* --------------------------------
l-wrapper
----------------------------------- */
.l-wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* --------------------------------
l-main
----------------------------------- */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  width: 22px;
  height: inherit;
  position: relative;
  display: block;
  z-index: 999;
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 22px;
  background-color: #000;
  border-radius: 0.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

.c-hamburger.is-open {
  border: 0.5px solid #fff;
  height: 36px;
  width: 18px;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.c-hamburger.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-64deg);
          transform: translate(-50%, -50%) rotate(-64deg);
  width: 40px;
  height: 0.5px;
  background-color: #fff;
}

.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(64deg);
          transform: translate(-50%, -50%) rotate(64deg);
  width: 40px;
  height: 0.5px;
  background-color: #fff;
}

/* ------------------------------------------------
c-border-btn
--------------------------------------------------- */
.c-border-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;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  width: 365px;
  height: 45px;
  padding-left: 10px;
  padding-bottom: 2px;
  color: #000;
  position: relative;
  -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
          clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  outline: 1px solid #19254A;
  outline-offset: -1px;
  -webkit-transition: background-color 0.3s, color 0.3s, outline 0.3s;
  transition: background-color 0.3s, color 0.3s, outline 0.3s;
  overflow: visible; /* 擬似要素が見えるように */
}
@media only screen and (max-width: 767px) {
  .c-border-btn {
    max-width: 250px;
    height: 40px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding-left: 4px;
    -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  }
}
.c-border-btn span {
  display: block;
}

/* 共通の斜め線スタイル */
.c-border-btn::before,
.c-border-btn::after {
  content: "";
  position: absolute;
  width: 26px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #19254A;
}
@media only screen and (max-width: 767px) {
  .c-border-btn::before,
  .c-border-btn::after {
    width: 16px; /* 線の長さ */
  }
}

/* 左上の斜め線 */
.c-border-btn::before {
  top: 19px;
  left: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media only screen and (max-width: 767px) {
  .c-border-btn::before {
    top: 11px;
  }
}

/* 右下の斜め線 */
.c-border-btn::after {
  bottom: 19px;
  right: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
@media only screen and (max-width: 767px) {
  .c-border-btn::after {
    bottom: 11px;
  }
}

.c-border-btn span:nth-child(1) {
  font-size: 11px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .c-border-btn span:nth-child(1) {
    letter-spacing: 0.1em;
  }
}

.c-border-btn span:nth-child(2) {
  width: 122px;
  height: 1px;
  background-color: #19254A;
  position: relative;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  margin-top: 3px;
}
@media only screen and (max-width: 767px) {
  .c-border-btn span:nth-child(2) {
    width: 60px;
  }
}
.c-border-btn span:nth-child(2)::before {
  position: absolute;
  content: "";
  top: -3px;
  right: 0;
  width: 10px;
  height: 3px;
  background-color: #19254A;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-border-btn span:nth-child(2)::before {
    width: 8px;
  }
}

.c-border-btn--sm {
  width: 200px;
  height: 40px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-left: 4px;
  -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
          clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}
.c-border-btn--sm::before {
  width: 16px;
  top: 11px;
  left: -1px;
}
.c-border-btn--sm::after {
  width: 16px;
  bottom: 11px;
  right: -1px;
}
.c-border-btn--sm span:nth-child(2) {
  width: 60px;
}
.c-border-btn--sm span:nth-child(2)::before {
  width: 8px;
}

.c-border-btn--white {
  color: #fff;
  outline: 1px solid #fff;
}
.c-border-btn--white::before, .c-border-btn--white::after {
  background-color: #fff;
}
.c-border-btn--white span:nth-child(2) {
  background-color: #fff;
}
.c-border-btn--white span:nth-child(2)::before {
  background-color: #fff;
}

.c-border-btn--archive {
  outline: 1px solid #0D5F9A;
}
.c-border-btn--archive::before {
  background-color: #0D5F9A;
}
.c-border-btn--archive::after {
  background-color: #0D5F9A;
}
.c-border-btn--archive span:nth-child(1) {
  color: #0D5F9A;
}
.c-border-btn--archive span:nth-child(2) {
  background-color: #0D5F9A;
}
.c-border-btn--archive span:nth-child(2)::before {
  background-color: #0D5F9A;
}

.c-border-btn--single {
  width: 23rem;
  outline: 1px solid #0D5F9A;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--single {
    width: 20rem;
  }
}
.c-border-btn--single::before {
  background-color: #0D5F9A;
}
.c-border-btn--single::after {
  background-color: #0D5F9A;
}
.c-border-btn--single span:nth-child(1) {
  color: #0D5F9A;
}
.c-border-btn--single span:nth-child(2) {
  background-color: #0D5F9A;
  width: 6rem;
}
.c-border-btn--single span:nth-child(2)::before {
  background-color: #0D5F9A;
}

@media only screen and (max-width: 767px) {
  .c-border-btn--sp {
    outline: 1px solid #19254A;
  }
  .c-border-btn--sp span:nth-child(1) {
    color: #19254A;
  }
  .c-border-btn--sp span:nth-child(2) {
    background-color: #19254A;
  }
  .c-border-btn--sp span:nth-child(2)::before {
    background-color: #19254A;
  }
  .c-border-btn--sp::before, .c-border-btn--sp::after {
    background-color: #19254A;
  }
}

.c-border-btn:hover {
  background-color: #19254A;
  color: #fff;
}
.c-border-btn:hover span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-color: #fff;
}
.c-border-btn:hover span:nth-child(2)::before {
  background-color: #fff;
}

.c-border-btn--sm:hover span:nth-child(2) {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

a.c-border-btn--white:hover {
  background-color: #fff;
  outline: #fff;
  color: #427BB1;
}
a.c-border-btn--white:hover span:nth-child(1) {
  color: #427BB1;
}
a.c-border-btn--white:hover span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-color: #427BB1;
}
a.c-border-btn--white:hover span:nth-child(2)::before {
  background-color: #427BB1;
}

@media only screen and (max-width: 767px) {
  a.c-border-btn--sp:hover {
    outline: 1px solid #19254A;
    background-color: #19254A;
    color: #fff;
  }
  a.c-border-btn--sp:hover::before, a.c-border-btn--sp:hover::after {
    background-color: #19254A;
  }
  a.c-border-btn--sp:hover span:nth-child(1) {
    color: #fff;
  }
  a.c-border-btn--sp:hover span:nth-child(2) {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    background-color: #fff;
  }
  a.c-border-btn--sp:hover span:nth-child(2)::before {
    background-color: #fff;
  }
}

.c-border-btn--archive:hover,
.c-border-btn--single:hover {
  background-color: #0D5F9A;
}
.c-border-btn--archive:hover span:nth-child(1),
.c-border-btn--single:hover span:nth-child(1) {
  color: #fff;
}
.c-border-btn--archive:hover span:nth-child(2),
.c-border-btn--single:hover span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-color: #fff;
}
.c-border-btn--archive:hover span:nth-child(2)::before,
.c-border-btn--single:hover span:nth-child(2)::before {
  background-color: #fff;
}

.c-border-btn--white-blue02:hover {
  color: #55A4CD !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue02:hover {
    color: #fff !important;
  }
}
.c-border-btn--white-blue02:hover span:nth-child(1) {
  color: #55A4CD !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue02:hover span:nth-child(1) {
    color: #fff !important;
  }
}
.c-border-btn--white-blue02:hover span:nth-child(2) {
  background-color: #55A4CD !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue02:hover span:nth-child(2) {
    background-color: #fff !important;
  }
}
.c-border-btn--white-blue02:hover span:nth-child(2)::before {
  background-color: #55A4CD !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue02:hover span:nth-child(2)::before {
    background-color: #fff !important;
  }
}

.c-border-btn--white-blue04:hover {
  color: #4D63A0 !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue04:hover {
    color: #fff !important;
  }
}
.c-border-btn--white-blue04:hover span:nth-child(1) {
  color: #4D63A0 !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue04:hover span:nth-child(1) {
    color: #fff !important;
  }
}
.c-border-btn--white-blue04:hover span:nth-child(2) {
  background-color: #4D63A0 !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue04:hover span:nth-child(2) {
    background-color: #fff !important;
  }
}
.c-border-btn--white-blue04:hover span:nth-child(2)::before {
  background-color: #4D63A0 !important;
}
@media only screen and (max-width: 767px) {
  .c-border-btn--white-blue04:hover span:nth-child(2)::before {
    background-color: #fff !important;
  }
}

/* ------------------------------------------------
c-arrow-btn
--------------------------------------------------- */
.c-arrow-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3px;
  width: 365px;
  height: 45px;
  padding-left: 10px;
  padding-bottom: 2px;
  color: #000;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-arrow-btn {
    max-width: 250px;
    height: 40px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding-left: 4px;
  }
}
.c-arrow-btn span {
  display: block;
}

.c-arrow-btn span:nth-child(1) {
  font-size: 11px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .c-arrow-btn span:nth-child(1) {
    letter-spacing: 0.1em;
  }
}

.c-arrow-btn span:nth-child(2) {
  width: 160px;
  height: 1px;
  background-color: #19254A;
  position: relative;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  margin-top: 3px;
}
@media only screen and (max-width: 767px) {
  .c-arrow-btn span:nth-child(2) {
    width: 100px;
  }
}
.c-arrow-btn span:nth-child(2)::before {
  position: absolute;
  content: "";
  top: -3px;
  right: 0;
  width: 10px;
  height: 3px;
  background-color: #19254A;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-arrow-btn span:nth-child(2)::before {
    width: 8px;
  }
}

.c-arrow-btn--white {
  color: #fff;
}
.c-arrow-btn--white span:nth-child(2) {
  background-color: #fff;
}
.c-arrow-btn--white span:nth-child(2)::before {
  background-color: #fff;
}

.c-arrow-btn:hover span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.c-arrow-btn--sm:hover span:nth-child(2) {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-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;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  width: 243px;
  height: 48px;
  padding-left: 10px;
  padding-bottom: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
          clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .c-btn {
    width: 190px;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn {
    width: 20rem;
    height: 40px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding-left: 4px;
    -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  }
}
.c-btn span {
  display: block;
}

.c-btn span:nth-child(1) {
  font-size: 12px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .c-btn span:nth-child(1) {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

.c-btn span:nth-child(2) {
  width: 72px;
  height: 1px;
  margin-top: 2px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 1024px) {
  .c-btn span:nth-child(2) {
    width: 60px;
  }
}
.c-btn span:nth-child(2)::before {
  position: absolute;
  content: "";
  top: -3px;
  right: 0;
  width: 10px;
  height: 3px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
@media only screen and (max-width: 1024px) {
  .c-btn span:nth-child(2)::before {
    width: 8px;
  }
}

.c-btn--blue01 {
  color: #427BB1;
}
.c-btn--blue01 span:nth-child(2) {
  background-color: #427BB1;
}
.c-btn--blue01 span:nth-child(2)::before {
  background-color: #427BB1;
}

.c-btn--blue02 {
  color: #55A4CD;
}
.c-btn--blue02 span:nth-child(2) {
  background-color: #55A4CD;
}
.c-btn--blue02 span:nth-child(2)::before {
  background-color: #55A4CD;
}

.c-btn--blue03 {
  color: #4D63A0;
}
.c-btn--blue03 span:nth-child(2) {
  background-color: #4D63A0;
}
.c-btn--blue03 span:nth-child(2)::before {
  background-color: #4D63A0;
}

.c-btn--bg-blue01 {
  background-color: #427BB1;
}
.c-btn--bg-blue01 span:nth-child(2) {
  background-color: #fff;
}
.c-btn--bg-blue01 span:nth-child(2)::before {
  background-color: #fff;
}

.c-btn--bg-blue02 {
  background-color: #55A4CD;
}
.c-btn--bg-blue02 span:nth-child(2) {
  background-color: #fff;
}
.c-btn--bg-blue02 span:nth-child(2)::before {
  background-color: #fff;
}

.c-btn--sm {
  width: 200px;
  height: 40px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-left: 0.6;
  -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
          clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}
.c-btn--sm span:nth-child(1) {
  font-size: 11px;
}
.c-btn--sm span:nth-child(2) {
  width: 60px;
}
.c-btn--sm span:nth-child(2)::before {
  width: 8px;
}

.c-btn:hover {
  background-color: rgb(255, 255, 255);
}
.c-btn:hover span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.c-btn--bg-blue01:hover span:nth-child(1) {
  color: #55A4CD;
}
.c-btn--bg-blue01:hover span:nth-child(2) {
  background-color: #55A4CD;
}
.c-btn--bg-blue01:hover span:nth-child(2)::before {
  background-color: #55A4CD;
}

.c-btn--bg-blue02:hover span:nth-child(1) {
  color: #427BB1;
}
.c-btn--bg-blue02:hover span:nth-child(2) {
  background-color: #427BB1;
}
.c-btn--bg-blue02:hover span:nth-child(2)::before {
  background-color: #427BB1;
}

.c-btn--sm:hover span:nth-child(2) {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ------------------------------------------------
c-pulldown
--------------------------------------------------- */
.c-pulldown {
  position: relative;
}

/* ------------------------------------------------
c-pulldown-menu
--------------------------------------------------- */
.c-pulldown-menu {
  position: absolute;
  top: 6rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 26rem;
  background-color: #d4edf8;
  padding: 1rem 2rem;
}
.c-pulldown-menu a {
  padding-block: 1rem;
  position: relative;
}
.c-pulldown-menu a:not(:last-child) {
  border-bottom: 1px solid #19254A;
  border-bottom: 1px solid #fff;
}

.c-pulldown-menu a:hover {
  color: #005290;
}

/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  color: #19254A;
  padding-bottom: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title {
    -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;
  }
}
.c-section-title span {
  display: block;
}
.c-section-title span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  -webkit-transform: scale(1, 1.15);
          transform: scale(1, 1.15);
  position: relative;
  padding-bottom: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title span:nth-child(1) {
    font-size: 2.4rem;
    font-size: 3rem;
    padding-bottom: 1.4rem;
  }
}
.c-section-title span:nth-child(1)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.2rem;
  height: 0.7rem;
  background-color: #19254A;
}
@media only screen and (max-width: 767px) {
  .c-section-title span:nth-child(1)::before {
    width: 2.4rem;
    height: 0.5rem;
  }
}
.c-section-title span:nth-child(2) {
  font-size: 12px;
  letter-spacing: 0.12em;
  padding-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title span:nth-child(2) {
    margin-top: 1.4rem;
    font-size: 1rem;
    font-size: 1.2rem;
    padding-bottom: 0;
    letter-spacing: 0.16em;
  }
}

.c-section-title--white {
  color: #fff;
}
.c-section-title--white span:nth-child(1)::before {
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 870px) {
  .c-section-title--870 {
    -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;
  }
  .c-section-title--870 span:nth-child(1) {
    padding-bottom: 1.6rem;
  }
  .c-section-title--870 span:nth-child(2) {
    margin-top: 1.8rem;
  }
}

/* ------------------------------------------------
c-lower-title
--------------------------------------------------- */
.c-lower-title {
  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;
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 2rem;
  color: #19254A;
}
.c-lower-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.2rem;
  height: 0.8rem;
  background-color: #19254A;
}
@media only screen and (max-width: 767px) {
  .c-lower-title::after {
    width: 2.4rem;
    height: 0.7rem;
  }
}
.c-lower-title span:nth-child(1) {
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
  .c-lower-title span:nth-child(1) {
    font-size: 2.1rem;
  }
}

.c-lower-title--mixed span:nth-child(1) {
  display: inline-block;
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-style: normal;
  -webkit-transform: scale(1, 0.95);
          transform: scale(1, 0.95);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--mixed span:nth-child(1) {
    font-size: 2.3rem;
    letter-spacing: 0.02em;
  }
}
.c-lower-title--mixed span:nth-child(2) {
  display: inline-block;
  font-size: 4rem;
  letter-spacing: 0.06em;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--mixed span:nth-child(2) {
    font-size: 2.1rem;
  }
}

.c-lower-title[data-text] {
  padding-top: 3.4rem;
}
@media only screen and (max-width: 767px) {
  .c-lower-title[data-text] {
    padding-top: 3.2rem;
  }
}
.c-lower-title[data-text]::before {
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: inherit;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .c-lower-title[data-text]::before {
    top: 1.4rem;
    font-size: 1.5rem;
  }
}

.c-lower-title--en {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--en {
    padding-top: 3.2rem;
  }
}
.c-lower-title--en::before, .c-lower-title--en::after {
  display: none;
}
.c-lower-title--en span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 4.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  -webkit-transform: scale(1, 1.15);
          transform: scale(1, 1.15);
  position: relative;
  padding-bottom: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--en span:nth-child(1) {
    font-size: 2.7rem;
    padding-bottom: 1.2rem;
  }
}
.c-lower-title--en span:nth-child(1)::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.2rem;
  height: 0.7rem;
  background-color: #19254A;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--en span:nth-child(1)::after {
    width: 2.4rem;
    height: 0.6rem;
  }
}
.c-lower-title--en span:nth-child(2) {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-lower-title--en span:nth-child(2) {
    margin-top: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 767px) {
  .c-lower-title--les span:nth-child(1) {
    letter-spacing: -0.01em;
    -webkit-transform: scale(0.95, 1.15);
            transform: scale(0.95, 1.15);
  }
}

/* ------------------------------------------------
c-lead
--------------------------------------------------- */
.c-lead {
  font-size: 2.3rem;
  font-size: max(2.3rem, 18px);
  line-height: 1.4782608696;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .c-lead {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-lead--sp-c {
    text-align: center;
  }
}

.c-lead--white {
  color: #fff;
  font-weight: 500;
}

.c-lead--center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-lead--center {
    text-align: left;
  }
}

/* ------------------------------------------------
c-text
--------------------------------------------------- */
.c-text {
  font-size: max(1.4rem, 11px);
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 1.2rem;
  }
}

.c-text--white {
  color: #fff;
}

/* ------------------------------------------------
c-fv-overlay
--------------------------------------------------- */
.c-fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.c-fv-overlay--01 {
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 34.140625vw;
  height: 27.8125vw;
}
@media only screen and (max-width: 767px) {
  .c-fv-overlay--01 {
    width: 36.5333333333vw;
    height: 19.7901049475vh;
  }
}

.c-fv-overlay--02 {
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 10.15625vw 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 10.15625vw 0, 100% 100%, 0% 100%);
  width: 64.0625vw;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .c-fv-overlay--02 {
    top: initial;
    bottom: 1.2rem;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
            clip-path: polygon(0 0, 0% 100%, 100% 100%);
    width: 120vw;
    height: 67.4662668666vh;
  }
}

.c-fv-overlay--03 {
  background: linear-gradient(135deg, #005290 0, #04235e 70%);
  -webkit-clip-path: polygon(0 0, 9.0625vw 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 9.0625vw 0, 100% 100%, 0% 100%);
  width: 62.96875vw;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-fv-overlay--03 {
    top: initial;
    bottom: 0;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
            clip-path: polygon(0 0, 0% 100%, 100% 100%);
    width: 120vw;
    height: 67.4662668666vh;
  }
}

.c-fv-overlay--04 {
  top: initial;
  left: initial;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #fff;
  width: 16.40625vw;
  height: 14.53125vw;
}
@media only screen and (max-width: 767px) {
  .c-fv-overlay--04 {
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    width: 14.9333333333vw;
    height: 8.9955022489vh;
  }
}

/* ------------------------------------------------
c-scroll-down
--------------------------------------------------- */
.c-scroll-down {
  position: absolute;
  bottom: 0;
  left: 10rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  .c-scroll-down {
    left: 2rem;
  }
}
.c-scroll-down span {
  display: inline-block;
  color: #fff;
  font-size: max(1.1rem, 10px);
  letter-spacing: 0.3em;
  padding-top: 0.4rem;
  padding-left: 0.8rem;
  padding-bottom: 6.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-scroll-down span {
    font-size: 0.8rem;
    padding-bottom: 7rem;
  }
}
.c-scroll-down span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: scroll-down 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll-down 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* ------------------------------------------------
c-page-title
--------------------------------------------------- */
.c-page-title {
  font-size: 2.7rem;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 10.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-page-title {
    font-size: 1.7rem;
    padding-top: 6rem;
  }
}
.c-page-title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.2rem;
  height: 6.2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .c-page-title::before {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-page-title[data-mod=csd] {
    font-size: 1.5rem;
  }
}

.c-page-title--sagene {
  padding-top: 9.8rem;
}
@media only screen and (max-width: 767px) {
  .c-page-title--sagene {
    padding-top: 6rem;
  }
}
.c-page-title--sagene::before {
  width: 5rem;
  height: 6.9rem;
  background-image: url(../img/common/icon_sagane.svg);
}
@media only screen and (max-width: 767px) {
  .c-page-title--sagene::before {
    width: 3.6rem;
    height: 4.8rem;
  }
}

.c-page-title--circle01::before {
  background-image: url(../img/common/icon_circle01.svg);
}

.c-page-title--circle02::before {
  background-image: url(../img/common/icon_circle02.svg);
}

.c-page-title--circle03::before {
  background-image: url(../img/common/icon_circle03.svg);
}

.c-page-title--csd span:nth-child(1) {
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-page-title--csd span:nth-child(1) {
    font-size: 1.5rem;
  }
}
.c-page-title--csd span:nth-child(2) {
  display: block;
  font-size: max(2.7rem, 20px);
  font-weight: 600;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-page-title--csd span:nth-child(2) {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
c-system-item
--------------------------------------------------- */
.c-system-item {
  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;
  height: 12.5rem;
  border-radius: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .c-system-item {
    width: 13.5rem;
    height: 13rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.6rem;
    padding-bottom: 1rem;
  }
}
.c-system-item span:nth-child(2) {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2727272727;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .c-system-item span:nth-child(2) {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
  }
}

.p-system-list--wms-wcs .c-system-item {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  background-color: #ccd5e7;
}
@media only screen and (max-width: 767px) {
  .p-system-list--wms-wcs .c-system-item {
    background-color: #427BB1;
  }
}
.p-system-list--wms-wcs .c-system-item span:nth-child(1) {
  width: 7.8rem;
}
@media only screen and (max-width: 767px) {
  .p-system-list--wms-wcs .c-system-item span:nth-child(1) {
    width: 7.6rem;
  }
}
.p-system-list--wms-wcs .c-system-item span:nth-child(2) {
  color: #427BB1;
}
@media only screen and (max-width: 767px) {
  .p-system-list--wms-wcs .c-system-item span:nth-child(2) {
    color: #fff;
  }
}

.p-system-list--traceability .c-system-item {
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  background-color: #dbe7f4;
}
@media only screen and (max-width: 767px) {
  .p-system-list--traceability .c-system-item {
    background-color: #55A4CD;
  }
}
.p-system-list--traceability .c-system-item span:nth-child(1) {
  width: 7.1rem;
}
@media only screen and (max-width: 767px) {
  .p-system-list--traceability .c-system-item span:nth-child(1) {
    width: 7.4rem;
  }
}
.p-system-list--traceability .c-system-item span:nth-child(2) {
  color: #55A4CD;
}
@media only screen and (max-width: 767px) {
  .p-system-list--traceability .c-system-item span:nth-child(2) {
    color: #fff;
  }
}

.p-system-list--auto .c-system-item {
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
  background-color: #d6d7e8;
}
@media only screen and (max-width: 767px) {
  .p-system-list--auto .c-system-item {
    background-color: #4D63A0;
  }
}
.p-system-list--auto .c-system-item span:nth-child(1) {
  width: 6.8rem;
}
@media only screen and (max-width: 767px) {
  .p-system-list--auto .c-system-item span:nth-child(1) {
    width: 6.6rem;
  }
}
.p-system-list--auto .c-system-item span:nth-child(2) {
  color: #4D63A0;
}
@media only screen and (max-width: 767px) {
  .p-system-list--auto .c-system-item span:nth-child(2) {
    color: #fff;
  }
}

@media only screen and (min-width: 768px) {
  .p-concept .c-system-item {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

/* ------------------------------------------------
c-page-top
--------------------------------------------------- */
.c-page-top {
  position: fixed;
  width: 5.6rem;
  bottom: 4rem;
  right: 4rem;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .c-page-top {
    width: 4.6rem;
    bottom: 2rem;
    right: 2rem;
  }
}

/* ------------------------------------------------
パンくず
--------------------------------------------------- */
.c-breadcrumbs {
  font-size: 10PX;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
}

/* 矢印（>）部分 */
.c-breadcrumbs .l-inner > span {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
}

/* パンくずリンクとテキスト */
.c-breadcrumbs a,
.c-breadcrumbs span {
  display: inline-block;
  vertical-align: middle;
}

.c-breadcrumbs a {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-bottom: 0.2rem;
}

.c-breadcrumbs a:hover {
  opacity: 0.5;
}

.c-breadcrumbs span:not(:last-of-type) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-breadcrumbs .current-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 任意の行数を指定 */
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 4rem;
  background-color: #fff;
}
@media (min-width: 1060px) and (max-width: 1279px) {
  .p-header {
    padding-left: 6rem;
  }
}
@media only screen and (max-width: 1059px) {
  .p-header {
    padding-left: 0;
    height: 54px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
    padding-right: 20px;
  }
}

.p-header__logo {
  position: fixed;
  z-index: 555;
  width: 15.8rem;
  height: 6rem;
  top: 0;
  left: 4.5rem;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .p-header__logo {
    left: 20px;
  }
}
@media only screen and (max-width: 1059px) {
  .p-header__logo {
    width: 158px;
    height: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .p-header__logo {
    z-index: 999;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    left: 0;
    width: 8.8rem;
    height: 8.8rem;
  }
}
.p-header__logo a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-header__logo a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .p-header__logo a:hover {
    opacity: 1;
  }
}

.p-header__nav-wrap {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}

.p-header-nav {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}

.p-header-nav__lists {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header-nav__list {
  height: inherit;
}
.p-header-nav__list a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1rem, 10px);
  line-height: 1.1818181818;
  letter-spacing: 0.14em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header-nav__list a:hover {
  color: #005290;
}
.p-header-nav__list span {
  display: block;
  padding-inline: 0.9rem;
  padding-bottom: 0.1rem;
  border-right: 0.05rem solid #000;
}
.p-header-nav__list:first-child span {
  border-left: 0.05rem solid #000;
}

.p-header-nav__list .is-invalid {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1rem, 10px);
  line-height: 1.1818181818;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.p-header-nav__tel {
  font-size: max(1.1rem, 11px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.4rem;
}
.p-header-nav__tel a {
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-left: max(2.4rem, 20px);
  height: inherit;
  display: grid;
  place-content: center;
}
.p-header-nav__tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: max(1.2rem, 11px);
  height: max(1.2rem, 11px);
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.p-header__tel a {
  display: block;
  width: 15px;
}
.p-header__tel a svg {
  width: 100%;
  height: 22px;
  fill: #19254A;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.p-header__tel a:hover svg {
  fill: #2F839D;
}

.p-header__btn {
  position: fixed;
  z-index: 888;
  top: 0;
  right: 0;
  width: 17rem;
  height: 9.5rem;
  pointer-events: none;
}
@media only screen and (max-width: 1059px) {
  .p-header__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: static;
    z-index: 1;
  }
}
.p-header__btn a {
  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;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(56% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(56% 0, 100% 0%, 100% 100%, 0% 100%);
  background-color: #23A4DA;
  padding-left: 5.4rem;
  padding-top: 3rem;
  pointer-events: all;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-header__btn a:hover {
  background-color: #005290;
}
@media only screen and (max-width: 1059px) {
  .p-header__btn a {
    -webkit-clip-path: none;
            clip-path: none;
    width: 21px;
    height: auto;
    background-color: transparent;
    padding-left: 0;
    padding-top: 0;
  }
  .p-header__btn a .icon_mail-black {
    width: 100%;
    height: 13px;
    fill: #19254A;
    stroke: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .p-header__btn a:hover .icon_mail-black {
    fill: #2F839D;
  }
}
.p-header__btn span {
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #fff;
}
.p-header__btn span::before {
  position: absolute;
  content: "";
  top: -2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.6rem;
  height: 1.7rem;
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  padding-inline: 25px;
  overflow-y: auto;
  padding-top: 120px;
  padding-bottom: 100 px;
  z-index: 888;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: linear-gradient(135deg, #106eab 0%, #1a2e6f 100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  padding-bottom: 8rem;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.p-drawer__tel {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.p-drawer__tel span {
  font-size: 9px;
  width: 75px;
  height: 21px;
  display: grid;
  place-content: center;
  border: 0.5px solid #fff;
}
.p-drawer__tel a {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: default;
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-drawer-nav__list {
  display: inline-block;
}
.p-drawer-nav__list > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  padding-block: 13px;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-drawer-nav__list > a span {
  font-size: 9px;
  font-weight: 300;
}

.p-drawer-nav__list .is-invalid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  padding-block: 13px;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0.05em;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .p-drawer-nav__list a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .p-drawer-nav__list a:hover {
    opacity: 1;
  }
}
.p-drawer-nav__sub {
  padding-left: 20px;
}

.p-drawer-nav__sub a {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-block: 6px;
  padding-left: 11px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-drawer-nav__sub a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 5px;
  height: 5px;
  border-bottom: 0.5px solid #fff;
  border-right: 0.5px solid #fff;
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  padding-inline: 10rem;
  background: linear-gradient(135deg, #106eab 0%, #1a2e6f 40%);
  color: #fff;
  padding-block: 7.8rem 3rem;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-footer {
    padding-inline: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer {
    padding-inline: 2rem;
    padding-block: 3rem 2.4rem;
  }
}

.p-footer__deco {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #23A4DA;
  width: min(64.453125vw, 825px);
  height: min(64.453125vw, 825px);
}
@media only screen and (max-width: 767px) {
  .p-footer__deco {
    width: 32.5333333333vw;
    height: 32.5333333333vw;
  }
}

.p-footer__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-footer__logo {
  width: 152px;
}
@media only screen and (max-width: 767px) {
  .p-footer__logo {
    width: 114px;
    margin-inline: auto;
  }
}

.p-footer__address {
  margin-top: 3.7rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__address {
    margin-top: 2.8rem;
  }
}
.p-footer__address p {
  font-size: max(1.3rem, 12px);
  line-height: 1.6923076923;
}
@media only screen and (max-width: 767px) {
  .p-footer__address p {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-footer__map {
  margin-top: 3.1rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__map {
    margin-top: 6px;
  }
}
.p-footer__map a {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  position: relative;
  padding-inline: 4px 22px;
  padding-bottom: 3px;
  border-bottom: 0.5px solid #fff;
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-footer__map a {
    font-size: 10px;
    padding-inline: 8px 22px;
    padding-bottom: 5px;
  }
}
.p-footer__map a::before {
  position: absolute;
  content: "";
  top: 51%;
  right: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 7px;
  background-image: url(../img/common/arrow_map.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.p-footer__map a:hover {
  opacity: 0.7;
}

.p-footer__tel {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(1.5rem, 12px);
     -moz-column-gap: max(1.5rem, 12px);
          column-gap: max(1.5rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-footer__tel {
    margin-top: 1.5rem;
  }
}
.p-footer__tel span {
  border: 0.5px solid #fff;
  width: 95px;
  height: 24px;
  padding-left: 0.2rem;
  display: grid;
  place-content: center;
  font-size: 10px;
  line-height: 2.2;
  letter-spacing: 0.12em;
}
.p-footer__tel a {
  font-size: max(1.7rem, 14px);
  letter-spacing: 0.05em;
  line-height: 1.2941176471;
  text-transform: uppercase;
  font-weight: 600;
}

.p-footer__mail {
  margin-top: 9px;
}
.p-footer__mail a {
  font-size: max(1.3rem, 11px);
  font-weight: 200;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  text-indent: -0.6em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__mail a:hover {
  opacity: 0.7;
}

.p-footer__foot {
  position: relative;
  margin-top: 4.3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-footer__foot {
    margin-top: 2.6rem;
  }
}
.p-footer__foot small {
  font-size: 7px !important;
  letter-spacing: 0.5em;
}
@media only screen and (max-width: 767px) {
  .p-footer__foot small {
    font-size: 6px;
    letter-spacing: 0.24em;
  }
}

/* ------------------------------------------------
p-footer-nav
--------------------------------------------------- */
.p-footer-nav {
  margin-top: 46px;
}
@media (min-width: 1280px) {
  .p-footer-nav {
    width: 40.625vw;
  }
}

.p-footer-nav__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.p-footer-nav__title span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #fff;
}

.p-footer-nav__wrap {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
}
.p-footer-nav__wrap > ul {
  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: 5px;
}
.p-footer-nav__wrap > ul > li > a {
  display: inline-block;
  font-size: max(1.2rem, 11px);
  letter-spacing: 0.15em;
  padding-block: 0.9rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer-nav__wrap > ul > li > a:hover {
  opacity: 0.7;
}
.p-footer-nav__wrap > ul > li > a.is-invalid {
  cursor: default;
  pointer-events: none;
}
.p-footer-nav__wrap > ul > li > a span {
  font-size: max(0.8rem, 6px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-footer-nav__wrap > ul > li > a span {
    letter-spacing: 0.05em;
  }
}

.p-footer-nav__sub {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
}
.p-footer-nav__sub a {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1.1578947368;
  padding-block: 0.4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer-nav__sub a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------
p-banner
--------------------------------------------------- */
.p-banner {
  position: relative;
  z-index: 10;
}

.p-banner__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-banner__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-banner__item a {
  position: relative;
  display: block;
}
.p-banner__item a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 0, 0, 0.4);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-banner__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-top: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .p-banner__title {
    padding-top: 0;
  }
}
.p-banner__title span {
  z-index: 5;
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.24em;
  text-align: center;
  color: #fff;
  min-width: 21.4rem;
  padding-block: 2rem;
  padding-inline: 2rem 1.6rem;
  -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
          clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  outline: 1px solid #fff;
  outline-offset: -1px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  overflow: visible; /* 擬似要素が見えるように */
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-banner__title span {
    font-size: 1.5rem;
    min-width: 16.7rem;
    padding-block: 1.6rem;
  }
}

/* 共通の斜め線スタイル */
.p-banner__title span::before,
.p-banner__title span::after {
  z-index: 3;
  content: "";
  position: absolute;
  height: 1.1px; /* 線の太さ */
  background: #fff; /* 線の色 */
}

/* 左上の斜め線 */
.p-banner__title span::before {
  top: 19px;
  left: -1px;
  width: 27px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

/* 右下の斜め線 */
.p-banner__title span::after {
  bottom: 19px;
  right: -1px;
  width: 27px; /* 線の長さ */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.p-banner__item a:hover::before {
  background-color: rgba(4, 0, 0, 0.6);
}

/* ------------------------------------------------
p-lower-head
--------------------------------------------------- */
.p-lower-head {
  padding-top: 18.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-lower-head {
    padding-top: 10rem;
  }
}

.p-lower-head__bg {
  position: absolute;
  top: 0;
}

.p-lower-head__bg--left {
  left: 0;
  width: min(45.625vw, 584px);
  height: min(46.09375vw, 590px);
  background: linear-gradient(135deg, #1162a0 5%, #174483 20%, #1a2e6f 40%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media only screen and (max-width: 767px) {
  .p-lower-head__bg--left {
    top: 5.4rem;
    width: 42.6666666667vw;
    height: 42.6666666667vw;
  }
}

.p-lower-head__bg--right {
  right: 0;
  width: 413px;
  height: 336px;
  background-color: #23A4DA;
  -webkit-clip-path: polygon(82% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(82% 0, 100% 0%, 100% 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 1140px) {
  .p-lower-head__bg--right {
    width: 41.3rem;
    height: 33.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-lower-head__bg--right {
    top: 4.2rem;
    width: 25.6vw;
    height: 25.6vw;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
}

/* ------------------------------------------------
p-row-head
--------------------------------------------------- */
.p-row-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 9.2rem;
     -moz-column-gap: 9.2rem;
          column-gap: 9.2rem;
}
@media (min-width: 871px) and (max-width: 1024px) {
  .p-row-head {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
}
@media only screen and (max-width: 870px) {
  .p-row-head {
    -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;
    row-gap: 2.4rem;
  }
}

.p-row-head__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-row-head__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: -0.8rem;
}
@media (min-width: 768px) and (max-width: 870px) {
  .p-row-head__content {
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-row-head__content {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-row-head__lead {
    text-align: center;
  }
}

.p-row-head__text {
  margin-top: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .p-row-head__text {
    text-align: justify;
  }
}

/* ------------------------------------------------
p-system-list
--------------------------------------------------- */
.p-system-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .p-system-list {
    grid-template-columns: repeat(2, 13rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6rem;
  }
}

.p-loading {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #106eab 0%, #1a2e6f 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: opacity 2s ease, visibility 2s ease, -webkit-transform 1.5s ease;
  transition: opacity 2s ease, visibility 2s ease, -webkit-transform 1.5s ease;
  transition: opacity 2s ease, visibility 2s ease, transform 1.5s ease;
  transition: opacity 2s ease, visibility 2s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.p-loading::-webkit-scrollbar {
  display: none;
}
.p-loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-loading__inner {
  width: 100%;
  height: calc(100% + 1px);
  display: grid;
  place-content: center;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-loading__inner {
    padding-bottom: 2rem;
  }
}

.p-loading__logo {
  width: 28.8rem;
  opacity: 0;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1s;
  transition: opacity 1.5s ease, -webkit-transform 1s;
  transition: opacity 1.5s ease, transform 1s;
  transition: opacity 1.5s ease, transform 1s, -webkit-transform 1s;
}
@media only screen and (max-width: 767px) {
  .p-loading__logo {
    width: 18rem;
  }
}
.p-loading__logo.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-loading__logo.is-hide {
  opacity: 0;
}

/* ------------------------------------------------
ページネーション
--------------------------------------------------- */
.wp-pagenavi {
  margin-top: 10.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 6rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  width: 4rem;
  height: 4rem;
  color: #19254A;
  border: 1px solid #19254A !important;
  background-color: #fff;
  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-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin-top: 5.6rem;
    font-size: 1.6rem;
    width: 3.4rem;
    height: 3.4rem;
  }
}

.wp-pagenavi span.extend {
  border: none !important;
  background-color: transparent !important;
  cursor: default;
  pointer-events: none;
  width: 2rem;
  padding-bottom: 1.2rem !important;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi span.extend {
    width: 1.6rem;
  }
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  border: 1px solid #2F839D !important;
  background-color: #2F839D;
  color: #fff;
}

.wp-pagenavi span.current {
  color: #fff;
  border: 1px solid #2F839D !important;
  background-color: #2F839D;
}

.wp-pagenavi .pagination-arrow {
  border: none !important;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
}

.wp-pagenavi .pagination-arrow::before {
  position: absolute;
  content: "";
  top: 51.5%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 1.4rem;
  background-color: #19254A;
  -webkit-mask-image: url(../img/common/arrow-double.svg);
          mask-image: url(../img/common/arrow-double.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .pagination-arrow::before {
    width: 0.6rem;
    height: 1.05rem;
    top: 50%;
  }
}

.wp-pagenavi a.first .pagination-arrow::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
  left: 47%;
}

.wp-pagenavi .pagination-arrow:hover {
  background-color: #2F839D;
}
.wp-pagenavi .pagination-arrow:hover::before {
  background-color: #fff !important;
}

/* ------------------------------------------------
p-sidebar
--------------------------------------------------- */
.p-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-sidebar {
    gap: 4rem;
  }
}

.p-sidebar__title {
  font-size: 1.7rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .p-sidebar__title {
    font-size: 1.5rem;
  }
}

.p-sidebar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0.6rem;
}

.p-sidebar-item a {
  padding-block: 1rem;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-sidebar-item a:hover {
  opacity: 0.6;
}

.p-sidebar-item__title {
  font-size: max(1.5rem, 12px);
  letter-spacing: 0.1em;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media only screen and (max-width: 767px) {
  .p-sidebar-item__title {
    font-size: 1.4rem;
  }
}

.p-sidebar__items--archive {
  padding-top: 1.2rem;
}
.p-sidebar__items--archive li a {
  font-size: max(1.5rem, 12px);
  letter-spacing: 0.05em;
  padding-block: 0.8rem;
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  padding-left: 2rem;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-sidebar__items--archive li a {
    font-size: 1.4rem;
  }
}
.p-sidebar__items--archive li a::before {
  position: absolute;
  content: "";
  top: 52%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  left: 0;
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
}
@media only screen and (max-width: 767px) {
  .p-sidebar__items--archive li a::before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.p-sidebar__items--archive li a:hover {
  opacity: 0.6;
}

/* page */
/* top */
/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top {
  padding-block: 6rem;
}
@media only screen and (max-width: 1060px) {
  .p-top {
    padding-top: 53px;
    padding-bottom: 1rem;
  }
}

/* ------------------------------------------------
p-top-fv
--------------------------------------------------- */
.p-top-fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 6rem);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-top-fv {
    height: calc(100vh - 5.4rem);
  }
}

.p-top-fv__video {
  width: 81%;
  margin-left: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__video {
    width: 100%;
    height: 68.5157421289vh;
    overflow: hidden;
  }
}
.p-top-fv__video::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 82, 144, 0.1);
  background-image: radial-gradient(#19254A 30%, transparent 31%), radial-gradient(#19254A 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}
.p-top-fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block; /* 確実に表示 */
}

.p-top-fv__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-fv__overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-fv__logo {
  position: absolute;
  bottom: 9%;
  left: 32%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 21.875vw;
  width: max(21.875vw, 230px);
}
@media only screen and (max-width: 767px) {
  .p-top-fv__logo {
    width: 21.4rem;
    bottom: 8%;
    left: 15%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-top-fv__catch {
  position: absolute;
  top: 9%;
  left: 23%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13.671875vw;
  width: max(13.671875vw, 160px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1.5625vw;
     -moz-column-gap: 1.5625vw;
          column-gap: 1.5625vw;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__catch {
    width: 11rem;
    top: 10.5%;
    left: 21%;
  }
}

.p-top-fv__catch p {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: -webkit-clip-path 1s ease-in;
  transition: -webkit-clip-path 1s ease-in;
  transition: clip-path 1s ease-in;
  transition: clip-path 1s ease-in, -webkit-clip-path 1s ease-in;
}
.p-top-fv__catch p.is-animated {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.p-top-fv__catch p.is-static {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: none;
  transition: none;
}
.p-top-fv__catch p:nth-of-type(3) {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-top-fv__catch p:nth-of-type(2) {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-top-fv__catch p:nth-of-type(1) {
  -webkit-transition-duration: 0.65s;
          transition-duration: 0.65s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.p-top-fv__recruit {
  position: absolute;
  bottom: 9%;
  right: 7.8125vw;
  width: 18.6rem;
  opacity: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  scale: 1.3;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__recruit {
    width: 13rem;
    bottom: 23.988005997vh;
    right: 9.3333333333vw;
    scale: 1.2;
  }
}
.p-top-fv__recruit.is-animated {
  -webkit-animation: bound 0.6s cubic-bezier(0.12, 0, 0.39, 0) forwards;
          animation: bound 0.6s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}
.p-top-fv__recruit.is-static {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: none;
  transition: none;
}

@-webkit-keyframes bound {
  0% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    opacity: 0;
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bound {
  0% {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    opacity: 0;
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.p-top-fv__btn {
  position: absolute;
  top: 1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url(../img/top/fv/icon_batsu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__btn {
    width: 1rem;
    height: 1rem;
  }
}

.p-top-fv__link {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__link {
    bottom: 2rem;
  }
}
.p-top-fv__link span:nth-child(1) {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__link span:nth-child(1) {
    scale: 0.8;
  }
}
.p-top-fv__link span:nth-child(2) {
  margin-top: 0.6rem;
  width: 10rem;
  height: 1px;
  position: relative;
  background-color: #19254A;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-item-align: center;
      align-self: center;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__link span:nth-child(2) {
    margin-top: 0.3rem;
    width: 7rem;
  }
}
.p-top-fv__link span:nth-child(2)::before {
  display: block;
  position: absolute;
  content: "";
  top: -0.3rem;
  right: 0;
  width: 0.9rem;
  height: 0.3rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #19254A;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__link span:nth-child(2)::before {
    top: -0.13rem;
    width: 0.6rem;
    height: 0.15rem;
  }
}
.p-top-fv__link:hover span:nth-child(2) {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

.p-top-fv__recruit.is-hidden {
  display: none;
}

/* ------------------------------------------------
p-topics
--------------------------------------------------- */
.p-topics {
  padding-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-topics {
    padding-top: 4rem;
  }
}

.p-topics__inner {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-topics__inner {
    width: 100%;
  }
}

.p-topics__container {
  margin-top: 6rem;
  position: relative;
  padding-inline: 4.7rem;
}
@media only screen and (max-width: 767px) {
  .p-topics__container {
    margin-top: 3rem;
    width: 100%;
    padding-inline: 3rem;
  }
}

.p-topics__contents {
  margin-inline: auto;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-topics__contents {
    width: 100%;
  }
}

.p-topics__btn {
  margin-top: 6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-topics__btn {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
p-topics-item お知らせ
--------------------------------------------------- */
.p-topics-item {
  width: 20.8474576271vw;
  padding-right: 0.5084745763vw;
  padding-bottom: 0.5084745763vw;
  margin-inline: 0.593220339vw;
}
@media only screen and (min-width: 1180px) {
  .p-topics-item {
    width: 246px;
    padding-right: 6px;
    padding-bottom: 6px;
    margin-inline: 7px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-topics-item {
    width: 31%;
    margin-inline: 1.4%;
  }
}
@media only screen and (max-width: 767px) {
  .p-topics-item {
    width: 47%;
    margin-inline: 1.5%;
  }
}
@media only screen and (max-width: 560px) {
  .p-topics-item {
    width: 98%;
    margin-inline: 1%;
  }
}
.p-topics-item a {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-topics-item a {
    width: 100%;
  }
}

.p-topics-item__inner {
  -webkit-box-shadow: 0.4rem 0.5rem 0.4rem rgba(0, 0, 0, 0.16);
          box-shadow: 0.4rem 0.5rem 0.4rem rgba(0, 0, 0, 0.16);
}

.p-topics-item__img {
  width: 100%;
  overflow: hidden;
}
.p-topics-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/126;
  aspect-ratio: 240/140;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-topics-item__body {
  padding: 1rem 0.8rem 1rem;
  padding: 1.6rem 1rem 1.6rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-topics-item__body {
    padding: 1.6rem;
  }
}

.p-topics-item__day {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #000;
  padding-inline: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .p-topics-item__day {
    font-size: 11px;
  }
}

.p-topics-item__title {
  margin-top: 0.6rem;
  margin-top: 1rem;
  font-size: max(1.6rem, 12px);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  height: 4.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-topics-item__title {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

.p-topics-item__text {
  margin-top: 0.6rem;
  font-size: max(1.2rem, 10px);
  line-height: 1.6;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 767px) {
  .p-topics-item__text {
    margin-top: 0.8rem;
    font-size: 12px;
    line-height: 1.4;
  }
}

.p-topics-item a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-topics-item a:hover .p-topics-item__title {
  color: #2F839D;
}

/* ------------------------------------------------
swiper
--------------------------------------------------- */
/* デフォルト矢印削除 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

.p-topics__prev,
.p-topics__next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: min(2.7118644068vw, 32px);
}
@media only screen and (max-width: 767px) {
  .p-topics__prev,
  .p-topics__next {
    width: 2.4rem;
  }
}

.p-topics__prev {
  left: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .p-topics__prev {
    left: 0;
  }
}
.p-topics__prev img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-topics__next {
  right: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .p-topics__next {
    right: 0;
  }
}

.p-topics__prev.is-hidden,
.p-topics__next.is-hidden {
  display: none;
}

/* ------------------------------------------------
p-top-concept コンセプト
--------------------------------------------------- */
.p-top-concept {
  padding-block: 10rem 12.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-concept {
    padding-block: 7.2rem;
  }
}

.p-top-concept__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-top-concept__contents {
  padding-top: 5.3rem;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__contents {
    display: contents;
  }
}

.p-top-concept__content {
  margin-top: 4.2rem;
  width: 59rem;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__content {
    display: contents;
  }
}

@media only screen and (max-width: 767px) {
  .p-topics__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-concept__lead {
    margin-top: 2.4rem;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-top-concept__text {
  margin-top: 3rem;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__text {
    margin-top: 2.4rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-top-concept__img {
  width: 50rem;
  margin-left: -1rem;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__img {
    margin-top: 1.8rem;
    width: 100%;
    padding-inline: 2.2rem;
    margin-left: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-top-concept__btn {
  margin-top: 5.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-top-concept__btn {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
p-top-system SCADAシステム
--------------------------------------------------- */
.p-top-system {
  position: relative;
  color: #fff;
}

.p-top-system__img {
  width: 100%;
  height: 820px;
}
@media only screen and (max-width: 1140px) {
  .p-top-system__img {
    height: 82rem;
  }
}
@media only screen and (max-width: 885px) {
  .p-top-system__img {
    height: 88rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-system__img {
    height: 80vw;
  }
}
.p-top-system__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-system__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .p-top-system__wrapper {
    height: 80vw;
    padding-inline: 20px;
  }
}

.p-top-system__contents {
  max-width: 86rem;
  width: 100%;
}

.p-top-system__logo {
  width: 31.3rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-system__logo {
    width: 15.2rem;
  }
}

.p-top-system__title {
  margin-top: 5.2rem;
  font-size: 2rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top-system__title {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.6666666667;
  }
}

.p-top-system__system {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-top-system__system {
    margin-top: 1.2rem;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-top-system__content {
  margin-top: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-system__content {
    color: #000;
    padding-inline: 20px;
  }
}
.p-top-system__content h3 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-system__content h3 {
    font-size: 1.3rem;
  }
}
.p-top-system__content span {
  display: block;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: linear-gradient(to right, #fff, #fff 2px, transparent 2px, transparent 4px); /* 幅2の線を作る */
  background-size: 4px 1px; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
}
@media only screen and (max-width: 767px) {
  .p-top-system__content span {
    background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 4px); /* 幅2の線を作る */
  }
}

.p-top-system__text {
  margin-top: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-system__text {
    font-size: 1.1rem;
    line-height: 1.6363636364;
    text-align: justify;
  }
}

/* ------------------------------------------------
p-top-support サポートメニュー
--------------------------------------------------- */
.p-top-support {
  padding-block: 11.8rem 14rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support {
    padding-block: 6rem;
  }
}

.p-top-support__body {
  margin-top: 6.4rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-support__body {
    margin-top: 4rem;
  }
}

.p-top-support__menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support__menus {
    grid-template-columns: 1fr;
    row-gap: 2.2rem;
  }
}

/* ------------------------------------------------
p-top-support-menu
--------------------------------------------------- */
.p-top-support-menu {
  padding: 3rem 4.4rem 4.6rem 4.2rem;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - 3.4rem), calc(100% - 3.4rem) 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% calc(100% - 3.4rem), calc(100% - 3.4rem) 100%, 0 100%, 0 0);
}
@media (min-width: 768px) and (max-width: 800px) {
  .p-top-support-menu {
    padding-inline: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu {
    padding: 2.4rem 2rem 3rem 2rem;
  }
}

.p-top-support-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.6rem;
     -moz-column-gap: 3.6rem;
          column-gap: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__head {
    -webkit-column-gap: 1.3rem;
       -moz-column-gap: 1.3rem;
            column-gap: 1.3rem;
  }
}

.p-top-support-menu__logo {
  width: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__logo {
    width: 3.6rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-top-support-menu__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__title {
    font-size: 1.9rem;
  }
}

.p-top-support-menu__lead {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-size: max(1.4rem, 11px);
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__lead {
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }
}

.p-top-support-menu__body {
  margin-top: 4.3rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__body {
    margin-top: 1.6rem;
  }
}

.p-top-support-menu__text {
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  line-height: 1.8333333333;
  height: 14rem;
  text-align: justify;
}
@media (min-width: 768px) and (max-width: 850px) {
  .p-top-support-menu__text {
    height: 19rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__text {
    font-size: 1rem;
    height: auto;
  }
}

.p-top-support-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 1.6rem;
  height: 14rem;
}
@media (min-width: 768px) and (max-width: 850px) {
  .p-top-support-menu__items {
    height: 19rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__items {
    height: auto;
    gap: 0.8rem 1rem;
  }
}

.p-top-support-menu__item {
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  padding: 1rem 1.2rem;
  border: 0.5px solid #fff;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__item {
    font-size: 1rem;
    text-align: center;
    line-height: 1.32;
    padding: 0.8rem 0;
    width: calc((100% - 1rem) / 2);
    display: grid;
    place-content: center;
  }
}

.p-top-support-menu__btn {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-support-menu__btn {
    margin-top: 3rem;
  }
}

/* ------------------------------------------------
p-top-product 「サガネ係長のSMART FACTORY」 製品構成
--------------------------------------------------- */
.p-top-product {
  padding-block: 11.8rem 14rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product {
    padding-block: 8.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-product__inner.l-inner {
    padding-inline: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-product__head {
    padding-inline: 20px;
  }
}

.p-top-product__body {
  margin-top: 6.4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product__body {
    margin-top: 4.4rem;
  }
}

.p-top-product__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .p-top-product__types {
    grid-template-columns: 1fr;
  }
}

.p-top-product__type {
  padding: 7rem 3rem 6rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-top-product__type {
    padding: 3.8rem 3rem 5rem;
  }
}

/* ------------------------------------------------
p-top-product-type
--------------------------------------------------- */
.p-top-product-type__logo {
  height: 7.5rem;
  width: auto;
}
.p-top-product-type__logo img {
  height: 100%;
  width: auto;
}

.p-top-product-type__title {
  margin-top: 4.5rem;
  height: 5.2rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1rem;
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type__title {
    margin-top: 1.5rem;
    font-size: 2.4rem;
    height: auto;
  }
}
.p-top-product-type__title span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.p-top-product-type__text {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type__text {
    margin-top: 2.8rem;
    text-align: justify;
  }
}

.p-top-product-type__items {
  margin-top: 6.5rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type__items {
    margin-top: 4.5rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8rem;
    max-width: 30rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-top-product-type__btn {
  margin-top: 4.3rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type__btn {
    margin-top: 5rem;
  }
}

/* ------------------------------------------------
p-top-product-item
--------------------------------------------------- */
.p-top-product-item figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
  height: 7.4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-item figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
}
.p-top-product-item figcaption {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-product-item figcaption {
    font-size: 1.8rem;
    text-align: center;
  }
}

.p-top-product-item:last-child {
  position: relative;
  padding-bottom: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-item:last-child {
    padding-bottom: 6rem;
  }
}
.p-top-product-item:last-child span {
  position: absolute;
  bottom: 0;
  display: block;
  text-align: right;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top-product-item:last-child span {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-product-type:nth-of-type(1) .p-top-product-item:last-child {
    padding-bottom: 8rem;
  }
}
.p-top-product-type:nth-of-type(1) .p-top-product-item:last-child span {
  right: -1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type:nth-of-type(1) .p-top-product-item:last-child span {
    right: 0;
  }
}

.p-top-product-type:nth-of-type(2) .p-top-product-item:last-child span {
  right: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .p-top-product-type:nth-of-type(2) .p-top-product-item:last-child span {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-top-product-type:nth-of-type(3) .p-top-product-type__title {
    margin-top: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-product-type:nth-of-type(3) .p-top-product-type__items {
    row-gap: 9rem;
  }
}
.p-top-product-type:nth-of-type(3) .p-top-product-item:last-child span {
  right: 0;
}

.p-top-product-item__img {
  width: 9rem;
}

/* ------------------------------------------------
p-top-case-study 導入事例
--------------------------------------------------- */
.p-top-case-study {
  padding-block: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-top-case-study {
    padding-block: 6rem;
  }
}

.p-top-case-study__items {
  margin-top: 6.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.6rem;
     -moz-column-gap: 3.6rem;
          column-gap: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top-case-study__items {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    row-gap: 6rem;
  }
}

.p-top-case-study__btn {
  margin-top: 7.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
p-top-case
--------------------------------------------------- */
.p-top-case__img {
  overflow: hidden;
}
.p-top-case__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 337/210;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-top-case__body {
  margin-top: 1.8rem;
  color: #fff;
}

.p-top-case__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.8rem;
     -moz-column-gap: 2.8rem;
          column-gap: 2.8rem;
  padding-bottom: 0.9rem;
  border-bottom: 0.5px solid #fff;
}
.p-top-case__meta span {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.p-top-case__meta time {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.p-top-case__title {
  margin-top: 1.3rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .p-top-case__title {
    margin-top: 1rem;
  }
}

.p-top-case__text {
  margin-top: 1.2rem;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media only screen and (max-width: 767px) {
  .p-top-case__text {
    margin-top: 0.2rem;
  }
}

.p-top-case__btn {
  margin-top: 3.6rem;
  margin-inline: auto;
}

.p-top-case:hover .p-top-case__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-top-case:hover .c-arrow-btn--white span:nth-child(2) {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

/* ------------------------------------------------
p-company 主な導入先企業様一覧/パートナー企業様一覧
--------------------------------------------------- */
.p-company {
  padding-block: 10rem 9rem;
}
@media only screen and (max-width: 767px) {
  .p-company {
    padding-block: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-company__inner.l-inner {
    padding-inline: 0;
  }
}

.p-company__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media only screen and (max-width: 870px) {
  .p-company__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-company__title {
  font-size: 2.2rem;
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  letter-spacing: 0.14em;
  position: relative;
  padding-left: 14.7rem;
}
@media only screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.8rem;
    padding-left: 8.8rem;
  }
}
.p-company__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12.5rem;
  height: 2.5rem;
  background-color: #19254A;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0% 100%);
}
@media only screen and (max-width: 767px) {
  .p-company__title::before {
    width: 8.4rem;
  }
}

.p-company__text {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  font-weight: 400;
  letter-spacing: 0;
}
@media only screen and (max-width: 870px) {
  .p-company__text {
    margin-top: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-company__text {
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-company__contents {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-company__contents {
    margin-top: 4rem;
    padding-inline: 3rem;
  }
}

.p-company-title--partner::before {
  background-color: #23A4DA;
}

.p-company__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 3rem;
}

.p-company--introduction .p-company__items {
  max-width: 67.8rem;
  margin-inline: auto;
  -webkit-column-gap: 8.4rem;
     -moz-column-gap: 8.4rem;
          column-gap: 8.4rem;
  row-gap: 6.6rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__items {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    row-gap: 3rem;
  }
}
.p-company--introduction .p-company__item:nth-child(1) {
  width: 13rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__item:nth-child(1) {
    width: 24vw;
  }
}
.p-company--introduction .p-company__item:nth-child(2) {
  width: 10.8rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__item:nth-child(2) {
    width: 21.3333333333vw;
  }
}
.p-company--introduction .p-company__item:nth-child(3) {
  width: 20.2rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__item:nth-child(3) {
    width: 32vw;
  }
}
.p-company--introduction .p-company__item:nth-child(4) {
  width: 28.3rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__item:nth-child(4) {
    width: 42.6666666667vw;
  }
}
.p-company--introduction .p-company__item:nth-child(5) {
  width: 28.3rem;
}
@media only screen and (max-width: 767px) {
  .p-company--introduction .p-company__item:nth-child(5) {
    width: 42.6666666667vw;
  }
}

@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-company--partner .p-company__item:nth-child(1) {
  width: 22.3rem;
}
@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__item:nth-child(1) {
    width: 36.8vw;
  }
}
.p-company--partner .p-company__item:nth-child(2) {
  width: 18rem;
}
@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__item:nth-child(2) {
    width: 29.8666666667vw;
  }
}
.p-company--partner .p-company__item:nth-child(3) {
  width: 25.2rem;
}
@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__item:nth-child(3) {
    width: 45.3333333333vw;
  }
}
.p-company--partner .p-company__item:nth-child(4) {
  width: 11.6rem;
}
@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__item:nth-child(4) {
    width: 20vw;
  }
}
.p-company--partner .p-company__item:nth-child(5) {
  width: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-company--partner .p-company__item:nth-child(5) {
    width: 12vw;
  }
}

/* concept */
/* ------------------------------------------------
p-concept
--------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .p-concept {
    padding-bottom: 6rem;
  }
}

.p-concept__wrapper {
  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: 11.6rem;
}
@media only screen and (max-width: 767px) {
  .p-concept__wrapper {
    row-gap: 6.6rem;
  }
}

/* ------------------------------------------------
p-concept-intro
--------------------------------------------------- */
.p-concept-intro {
  padding-block: 11rem 10rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro {
    padding-block: 5.6rem;
    overflow: hidden;
  }
}

.p-concept-intro__breadcrumbs {
  margin-top: 6rem;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-concept-intro__body {
  margin-top: 5rem;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__body {
    margin-top: 2.4rem;
  }
}

.p-concept-intro__imgs {
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__imgs {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.p-concept-intro__contents {
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__contents {
    margin-top: 3rem;
  }
}

.p-concept-intro__content {
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}

.p-concept-intro__text {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__text {
    margin-top: 2rem;
  }
}

.p-concept-intro__value {
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__value {
    margin-top: 4rem;
  }
}

.p-concept-intro__value-items {
  margin-top: 8.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-intro__value-items {
    margin-top: 1.8rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ------------------------------------------------
p-concept-value
--------------------------------------------------- */
.p-concept-value {
  text-align: center;
}

.p-concept-value__catch {
  display: inline-block;
  font-size: 2rem;
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.16em;
  background-color: #19254A;
  color: #fff;
  padding: 1.2rem 3rem 1.2rem 3.4rem;
  border-radius: 1.2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-concept-value__catch {
    font-size: 1.4rem;
    padding: 1rem 2.4rem 1rem 2.8rem;
    line-height: 1.3846153846;
    width: 100%;
  }
}
.p-concept-value__catch::before {
  position: absolute;
  content: "";
  bottom: -1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.2rem;
  height: 1.9rem;
  background-color: #19254A;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media only screen and (max-width: 767px) {
  .p-concept-value__catch::before {
    bottom: -1rem;
  }
}

.p-concept-value__title {
  margin-top: 4.2rem;
  font-size: 1.8rem;
  font-size: max(1.8rem, 14px);
  font-weight: 600;
  letter-spacing: 0.1em;
  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;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-value__title {
    margin-top: 2.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }
}
.p-concept-value__title span {
  display: inline-block;
}
.p-concept-value__title span:nth-child(1) {
  background-color: #4D63A0;
  padding: 0.8rem 0.8rem 1rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-concept-value__title span:nth-child(1) {
    letter-spacing: 0;
    padding: 0.5rem 0.7rem 0.7rem 0.7rem;
  }
}

/* ------------------------------------------------
p-concept-value-item
--------------------------------------------------- */
.p-concept-value-item {
  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;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  padding-block: 2rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .p-concept-value-item {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    padding-block: 1.2rem;
    padding-inline: 4.4rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
  }
}

.p-concept-value-item__img {
  width: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-value-item__img {
    width: 4rem;
  }
}

.p-concept-value-item__desc {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2941176471;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-concept-value-item__desc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.4rem;
  }
}
.p-concept-value-item__desc span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
}

/* ------------------------------------------------
p-concept-system
--------------------------------------------------- */
.p-concept-system {
  overflow: hidden;
  position: relative;
  padding-bottom: 6.6rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-system {
    padding-bottom: 0;
  }
}

.p-concept-system__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32rem;
}

.p-concept-system__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__head {
    -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-concept-system__contents {
  width: 50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__contents {
    width: 100%;
    display: contents;
  }
}

.p-concept-system__title {
  position: relative;
  padding-top: 9.3rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 6.8rem;
  }
}
.p-concept-system__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.2rem;
  height: 6.2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__title::before {
    width: 4.6rem;
    height: 4.6rem;
  }
}
.p-concept-system__title span {
  display: block;
  text-align: center;
}
.p-concept-system__title span:nth-child(1) {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__title span:nth-child(1) {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-concept-system__title span:nth-child(2) {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.0625;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__title span:nth-child(2) {
    font-size: 2.1rem;
    line-height: 1.1428571429;
  }
}

.p-concept-system__text {
  margin-top: 2.3rem;
  max-width: 39.4rem;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: initial;
  }
}

.p-concept-system__btn {
  margin-top: 6.8rem;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__btn {
    margin-top: 3.2rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-concept-system__img-box {
  width: 50%;
  height: 37.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__img-box {
    display: contents;
  }
}

.p-concept-system__img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + (100vw - 100%) / 2);
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__img {
    margin-top: 2.7rem;
    position: static;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    height: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-concept-system__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept-system__foot {
  margin-top: 5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-concept-system__foot {
    margin-top: 3.2rem;
  }
}

.p-concept-system--wms-wcs .p-concept-system__title::before {
  background-image: url(../img/common/icon_circle01.svg);
}

.p-concept-system--traceability .p-concept-system__head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .p-concept-system--traceability .p-concept-system__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-concept-system--traceability .p-concept-system__title::before {
  background-image: url(../img/common/icon_circle02.svg);
}
.p-concept-system--traceability .p-concept-system__img {
  left: auto;
  right: 0;
}

.p-concept-system--auto .p-concept-system__title::before {
  background-image: url(../img/common/icon_circle03.svg);
}
.p-concept-system--auto .p-concept-system__title span:nth-child(1) {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.0625;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-concept-system--auto .p-concept-system__title span:nth-child(1) {
    font-size: 2.1rem;
    line-height: 1.1428571429;
  }
}

/* product */
/* ------------------------------------------------
p-product-point
--------------------------------------------------- */
.p-product-point {
  margin-top: 4rem;
  text-align: left;
  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: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-product-point {
    margin-top: 3rem;
    width: 100%;
    row-gap: 1.7rem;
  }
}

.p-product-point__list {
  position: relative;
  padding-left: 5.8rem;
}
@media only screen and (max-width: 767px) {
  .p-product-point__list {
    padding-left: 3.2rem;
  }
}
.p-product-point__list::before {
  position: absolute;
  content: attr(data-num);
  top: -0.6rem;
  left: 0;
  color: #c0cbe2;
  font-size: max(3.5rem, 24px);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-product-point__list::before {
    top: -0.2rem;
    font-size: 2.4rem;
  }
}

.p-product-point__list h3 {
  color: #fff;
  font-size: max(1.9rem, 13px);
  font-weight: 600;
  line-height: 1.4736842105;
  letter-spacing: 0.16em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-product-point__list h3 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4285714286;
    letter-spacing: 0;
  }
}

.p-product-point__text {
  margin-top: 1.8rem;
  font-size: max(1.4rem, 11px);
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-product-point__text {
    margin-top: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

.p-product-point--wms-wcs .p-product-point__list:nth-child(3) {
  position: relative;
  padding-bottom: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .p-product-point--wms-wcs .p-product-point__list:nth-child(3) {
    padding-bottom: 1rem;
  }
}
.p-product-point--wms-wcs .p-product-point__list:nth-child(3) .p-product-point__memo {
  position: absolute;
  bottom: 0;
  left: 6rem;
  font-size: max(1.1rem, 9px);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.16em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-product-point--wms-wcs .p-product-point__list:nth-child(3) .p-product-point__memo {
    left: 3.4rem;
    font-size: 0.8rem;
  }
}

.p-product-point--traceability {
  row-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-product-point--traceability {
    row-gap: 3rem;
  }
}

/* ------------------------------------------------
p-product-item
--------------------------------------------------- */
.p-product-item__img {
  margin-inline: auto;
}

.p-product-item__body {
  padding-top: 3rem;
  color: #020b5c;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-product-item__body {
    padding-top: 1rem;
  }
}

.p-product-item__title {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.5454545455;
  letter-spacing: 0.16em;
  display: inline-block;
  padding-inline: 1.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-product-item__title {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
    padding-inline: 0.8rem;
  }
}

.p-product-item__title::before,
.p-product-item__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #020b5c;
  width: 0.1rem;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-product-item__title::before {
  left: 0;
}

.p-product-item__title::after {
  right: 0;
}

.p-product-item__text {
  margin-top: 2.7rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-product-item__text {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.p-product-wms-wcs .p-product-item__img {
  width: 10.3rem;
}
@media only screen and (max-width: 767px) {
  .p-product-wms-wcs .p-product-item__img {
    width: 7rem;
  }
  .p-product-wms-wcs .p-product-item__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-product-traceability .p-product-item__img {
  width: 13.8rem;
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item__img {
    width: 9.9rem;
  }
}

.p-product-traceability .p-product-item:nth-child(4) .p-product-item__img {
  width: 12.3rem;
  padding-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(4) .p-product-item__img {
    width: 8.2rem;
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(4) .p-product-item__body {
    padding-top: 0.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(4) .p-product-item__text {
    margin-top: 1.4rem;
  }
}

.p-product-traceability .p-product-item:nth-child(5) .p-product-item__img {
  width: 12.3rem;
  padding-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(5) .p-product-item__img {
    width: 8.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(5) .p-product-item__body {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-traceability .p-product-item:nth-child(5) .p-product-item__text {
    margin-top: 1.1rem;
  }
}

/* ------------------------------------------------
p-product-feature
--------------------------------------------------- */
.p-product-feature {
  padding-block: 7rem 15rem;
}
@media only screen and (max-width: 767px) {
  .p-product-feature {
    padding-block: 3.4rem 5.8rem;
  }
}

.p-product-feature__title {
  width: 85rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-product-feature__title {
    width: 100%;
  }
}

.p-product-feature__items {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem calc(15.8602vw - 81.8065px);
}
@media only screen and (min-width: 1141px) {
  .p-product-feature__items {
    gap: 7rem 9.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-feature__items {
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.8rem 2.1rem;
  }
}

.p-product-feature__items--auto {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (min-width: 1141px) {
  .p-product-feature__items--auto {
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product-feature__items--auto {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ------------------------------------------------
p-product-wms-wcs
--------------------------------------------------- */
.p-product-wms-wcs {
  position: relative;
}
/* ------------------------------------------------
p-wms-wcs-intro
--------------------------------------------------- */
.p-wms-wcs-intro {
  padding-block: 13rem 6rem;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-intro {
    padding-block: 6.3rem 5.4rem;
  }
}

.p-wms-wcs-intro__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-intro__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-wms-wcs-intro__body {
  margin-top: 5rem;
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__body {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-intro__body {
    margin-top: 2.4rem;
  }
}

.p-wms-wcs-intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.4rem;
     -moz-column-gap: 4.4rem;
          column-gap: 4.4rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.p-wms-wcs-intro__img-box {
  height: 46.7rem;
  position: relative;
  width: 38.5185185185%;
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__img-box {
    width: 100%;
    height: initial;
  }
}

.p-wms-wcs-intro__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 40.3125vw;
  height: 100%;
}
@media only screen and (min-width: 1281px) {
  .p-wms-wcs-intro__img {
    width: calc(100% + 50vw - 540px);
  }
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__img {
    position: initial;
    width: 100%;
    height: initial;
    margin-left: initial;
  }
}

.p-wms-wcs-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-wms-wcs-intro__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__text {
    width: 100%;
  }
}

.p-wms-wcs-intro__desc {
  margin-top: 1.953125vw;
}
@media only screen and (min-width: 1281px) {
  .p-wms-wcs-intro__desc {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__desc {
    margin-top: 2rem;
  }
}

.p-wms-wcs-intro__lists {
  margin-top: 1.09375vw;
}
@media only screen and (min-width: 1281px) {
  .p-wms-wcs-intro__lists {
    margin-top: 1.4rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-wms-wcs-intro__lists {
    margin-top: 2rem;
  }
}

.p-wms-wcs-intro__list {
  letter-spacing: 0.1em;
}
.p-wms-wcs-intro__system-items {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-intro__system-items {
    margin-top: 3.8rem;
  }
}

.p-wms-wcs-point__wrap {
  text-align: center;
  padding-block: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-point__wrap {
    padding-block: 3rem 3.6rem;
  }
}

.p-wms-wcs-point__lists {
  margin-inline: auto;
  width: 94rem;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-point__lists {
    width: 100%;
    margin-top: 2.4rem;
  }
}

.p-wms-wcs-point__title {
  padding-inline: 1.5rem;
  position: relative;
  display: inline-block;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-wms-wcs-point__title {
    padding-inline: 0.05rem 0.7rem;
  }
}
.p-wms-wcs-point__title::before, .p-wms-wcs-point__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #fff;
  width: 0.15rem;
  height: 100%;
  top: 50%;
}
.p-wms-wcs-point__title::before {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
}
.p-wms-wcs-point__title::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}

/* ------------------------------------------------
p-product-slider
--------------------------------------------------- */
.p-product-slider {
  overflow: hidden;
  width: 100%;
}

.p-product-slider__items {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  contain: layout style paint;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-product-slider__items.is-active {
  -webkit-animation: scroll 50s linear infinite;
          animation: scroll 50s linear infinite;
  --scroll-width: calc(-50%);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(var(--scroll-width, -50%));
            transform: translateX(var(--scroll-width, -50%));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(var(--scroll-width, -50%));
            transform: translateX(var(--scroll-width, -50%));
  }
}
.p-product-slider__item {
  width: 20.78125vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .p-product-slider__item {
    width: 33.0666666667vw;
  }
}

.p-product-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 266/217;
}
@media only screen and (max-width: 767px) {
  .p-product-slider__item img {
    aspect-ratio: 124/91;
  }
}

/* ------------------------------------------------
p-product-traceability
--------------------------------------------------- */
.p-product-traceability {
  position: relative;
}

/* ------------------------------------------------
p-traceability-intro
--------------------------------------------------- */
.p-traceability-intro {
  padding-block: 13rem 6rem;
}
@media only screen and (max-width: 767px) {
  .p-traceability-intro {
    padding-block: 6.3rem 5.4rem;
  }
}

.p-traceability-intro__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-traceability-intro__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-traceability-intro__body {
  margin-top: 5rem;
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__body {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-traceability-intro__body {
    margin-top: 2.4rem;
  }
}

.p-traceability-intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 4.4rem;
     -moz-column-gap: 4.4rem;
          column-gap: 4.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.p-traceability-intro__img-box {
  height: 34rem;
  position: relative;
  width: 38.5185185185%;
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__img-box {
    width: 100%;
    height: initial;
  }
}

.p-traceability-intro__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40.3125vw;
  height: 100%;
}
@media only screen and (min-width: 1281px) {
  .p-traceability-intro__img {
    width: calc(100% + 50vw - 540px);
  }
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__img {
    position: initial;
    width: 100%;
    height: initial;
    margin-left: initial;
  }
}

.p-traceability-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-traceability-intro__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__text {
    width: 100%;
  }
}

.p-traceability-intro__desc {
  margin-top: 1.953125vw;
}
@media only screen and (min-width: 1281px) {
  .p-traceability-intro__desc {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__desc {
    margin-top: 2rem;
  }
}

.p-traceability-intro__lists {
  margin-top: 1.09375vw;
}
@media only screen and (min-width: 1281px) {
  .p-traceability-intro__lists {
    margin-top: 1.4rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-traceability-intro__lists {
    margin-top: 2rem;
  }
}

.p-traceability-intro__list {
  letter-spacing: 0.1em;
}
.p-traceability-intro__system-items {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-traceability-intro__system-items {
    margin-top: 3.8rem;
  }
}

/* ------------------------------------------------
p-traceability-point
--------------------------------------------------- */
.p-traceability-point {
  padding-block: 9rem;
  color: #fff;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-traceability-point {
    padding-bottom: 3.6rem;
  }
}

.p-traceability-point__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-traceability-point__img-box {
  width: 38.5185185185%;
  height: 55.2rem;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point__img-box {
    display: contents;
  }
}

.p-traceability-point__img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(47.7777777778% + (100vw - 100%) / 2);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point__img {
    position: static;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    height: auto;
  }
}
.p-traceability-point__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point__img img {
    height: auto;
  }
}

.p-traceability-point__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 960px) {
  .p-traceability-point__contents {
    margin-top: 6rem;
    max-width: 760px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-traceability-point__contents {
    margin-top: 3rem;
  }
}

/* ------------------------------------------------
p-product-auto-machine
--------------------------------------------------- */
.p-product-auto-machine {
  position: relative;
}

/* ------------------------------------------------
p-auto-machine-intro
--------------------------------------------------- */
.p-auto-machine-intro {
  padding-block: 13rem 6rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-machine-intro {
    padding-block: 6.3rem 5.4rem;
  }
}

.p-auto-machine-intro__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-machine-intro__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-auto-machine-intro__body {
  margin-top: 5rem;
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__body {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-auto-machine-intro__body {
    margin-top: 2.4rem;
  }
}

.p-auto-machine-intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.4rem;
     -moz-column-gap: 4.4rem;
          column-gap: 4.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.p-auto-machine-intro__img-box {
  height: 39.2rem;
  position: relative;
  width: 38.5185185185%;
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__img-box {
    width: 100%;
    height: initial;
  }
}

.p-auto-machine-intro__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 40.3125vw;
  height: 100%;
}
@media only screen and (min-width: 1281px) {
  .p-auto-machine-intro__img {
    width: calc(100% + 50vw - 540px);
  }
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__img {
    position: initial;
    width: 100%;
    height: initial;
    margin-left: initial;
  }
}

.p-auto-machine-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-auto-machine-intro__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__text {
    width: 100%;
  }
}

.p-auto-machine-intro__desc {
  margin-top: 1.953125vw;
}
@media only screen and (min-width: 1281px) {
  .p-auto-machine-intro__desc {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__desc {
    margin-top: 2rem;
  }
}

.p-auto-machine-intro__lists {
  margin-top: 1.09375vw;
}
@media only screen and (min-width: 1281px) {
  .p-auto-machine-intro__lists {
    margin-top: 1.4rem;
  }
}
@media only screen and (max-width: 960px) {
  .p-auto-machine-intro__lists {
    margin-top: 2rem;
  }
}

.p-auto-machine-intro__list {
  letter-spacing: 0.1em;
}
.p-auto-machine-intro__system-items {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-machine-intro__system-items {
    margin-top: 3.8rem;
  }
}

/* ------------------------------------------------
p-auto-point
--------------------------------------------------- */
.p-auto-point {
  text-align: center;
  color: #fff;
  padding-block: 7rem 8rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-point {
    padding-block: 3rem 3.6rem;
  }
}

.p-auto-point__title {
  padding-inline: 1.5rem;
  position: relative;
  display: inline-block;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-auto-point__title {
    padding-inline: 1.8rem 1.5rem;
  }
}
.p-auto-point__title::before, .p-auto-point__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #fff;
  width: 0.15rem;
  height: 100%;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .p-auto-point__title::before, .p-auto-point__title::after {
    height: 90%;
    top: 60%;
  }
}
.p-auto-point__title::before {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
}
.p-auto-point__title::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}

.p-auto-point__sub-lead {
  margin-top: 3rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-auto-point__sub-lead {
    font-size: 1.5rem;
  }
}

.p-auto-point__lists {
  margin-inline: auto;
  width: 85rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-point__lists {
    width: 100%;
    margin-top: 2.4rem;
  }
}

/* ------------------------------------------------
p-auto-item
--------------------------------------------------- */
.p-auto-item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-auto-item__body {
  padding-top: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .p-auto-item__body {
    padding-top: 1rem;
  }
}

.p-auto-item__title {
  text-align: center;
  font-size: max(1.9rem, 13px);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-auto-item__title {
    font-size: 1.4rem;
  }
}

.p-auto-item__text {
  margin-top: 2.6rem;
  font-size: max(1.4rem, 11px);
  line-height: 1.5714285714;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-auto-item__text {
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }
}

/* form*/
/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__head {
    padding-top: 5.6rem;
  }
}

.p-contact__breadcrumbs {
  margin-top: 6rem;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-contact__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-contact__container {
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
  margin-top: 5rem;
  padding-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__container {
    margin-top: 2.4rem;
    padding-bottom: 8rem;
  }
}

.p-contact__container--confirm {
  margin-top: 5rem;
  padding-top: 5rem;
}
.p-contact__container--confirm .p-form__contents {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}

/* ------------------------------------------------
p-contact-item
--------------------------------------------------- */
.p-contact-item:nth-child(1) {
  padding-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-contact-item:nth-child(1) {
    padding-bottom: 5.6rem;
  }
}

.p-contact-item__head {
  background-color: #0068ae;
  display: grid;
  place-content: center;
  padding-block: 1.3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__head {
    padding-block: 1rem;
    padding-inline: 2rem;
  }
}

.p-contact-item__head--mail {
  padding-block: 3rem;
}

.p-contact-item__title {
  width: 100%;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__title {
    font-size: 1.8rem;
  }
}

.p-contact-item__btn {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__btn {
    margin-top: 1.8rem;
  }
}

.p-contact-item__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
  padding: 1rem 3rem;
  border: 1px solid #fff;
  border-radius: 2.3rem;
  font-size: max(1.7rem, 13px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__btn a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    border-radius: 1rem;
  }
}
.p-contact-item__btn a span {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 2.4rem;
  scale: 1, 1.15;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.p-contact-item__btn a:hover {
  background-color: #fff;
  color: #0068ae;
}

.p-contact-item__num {
  margin-top: 4rem;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0068ae;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__num {
    margin-top: 2rem;
    font-size: 2.8rem;
  }
}

.p-contact-item__note {
  margin-top: 2rem;
  font-size: max(1.5rem, 11px);
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-contact-item__note {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
p-confirm
--------------------------------------------------- */
.p-confirm__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm__head {
    padding-top: 5.6rem;
  }
}

.p-confirm___breadcrumbs {
  margin-top: 6rem;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-confirm___breadcrumbs {
    margin-top: 4rem;
  }
}

.p-confirm__container {
  margin-top: 5rem;
  padding-bottom: 12rem;
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-confirm__container {
    margin-top: 2.4rem;
    padding-bottom: 5rem;
  }
}

.p-confirm__container {
  margin-top: 5rem;
  padding-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm__container {
    padding-top: 0;
  }
}

/* ------------------------------------------------
p-form
--------------------------------------------------- */
.p-form__contents {
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-form__contents {
    margin-top: 2rem;
  }
}

.p-form__note {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-form__note {
    font-size: 1rem;
  }
}
.p-form__note span {
  color: #FF0000;
}

.p-form__items {
  margin-top: 3.6rem;
  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: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-form__items {
    row-gap: 3.2rem;
  }
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__item:last-child {
  border-bottom: none;
}

.p-form-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.9rem, 15px);
  letter-spacing: 0.1em;
  line-height: 1;
  width: 21.2rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item > label {
    font-size: 1.6rem;
    width: 100%;
  }
}

span.u-required {
  font-size: 1.5rem;
  color: #FF0000;
  margin-left: 0.8rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  span.u-required {
    font-size: 1rem;
    margin-left: 0.4rem;
  }
}

.p-form-item__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-form-item__input {
    margin-top: 1rem;
    width: 100%;
  }
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  display: block;
  height: 6rem;
  border: 1px solid #707070;
  font-size: max(1.6rem, 13px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 1.8rem 0 1.8rem 2.4rem;
}
@media only screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    padding: 0.8rem 0 0.8rem 1.2rem;
    font-size: 1.4rem;
    height: 4rem;
  }
}

.p-form-item__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-form-item__textarea {
    margin-top: 0.8rem;
    width: 100%;
  }
}
.p-form-item__textarea p {
  margin-top: 0.5rem;
}
.p-form-item__textarea p span.wpcf7-character-count.down {
  color: #000;
}

textarea {
  display: block;
  border: 1px solid #707070;
  width: 100%;
  min-height: 32rem;
  padding: 1.8rem 2.4rem;
  font-size: max(1.6rem, 13px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400 !important;
}
@media only screen and (max-width: 767px) {
  textarea {
    min-height: 20rem;
    padding: 0.8rem 0.8rem 0.8rem 1.2rem;
    font-size: 1.4rem;
  }
}

.p-form__check {
  margin-top: 3.3rem;
}

.p-form__privacy-policy {
  cursor: pointer;
}

.p-form__privacy-policy input + span {
  position: relative;
  font-size: max(1.6rem, 12px);
  line-height: 1.4444444444;
  padding-left: max(3.6rem, 20px);
}
@media only screen and (max-width: 767px) {
  .p-form__privacy-policy input + span {
    font-size: 1.2rem;
    padding-left: 2.5rem;
    display: block;
  }
}

.p-form__privacy-policy input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1rem;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #707070;
}
@media only screen and (max-width: 767px) {
  .p-form__privacy-policy input + span::before {
    width: 1.8rem;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-form__privacy-policy input + span::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 0.45rem;
  -webkit-transform: translateY(-50%) rotate(-40deg);
          transform: translateY(-50%) rotate(-40deg);
  width: max(1.2rem, 10px);
  height: 1rem;
  border-left: 2px solid #0068ae;
  border-bottom: 2px solid #0068ae;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-form__privacy-policy input + span::after {
    top: 0.8rem;
    left: 0.4rem;
    width: 1rem;
    height: 0.6rem;
  }
}

[type=checkbox]:checked + span::after {
  display: block;
}

.p-form__foot {
  margin-top: 6rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-form__foot {
    margin-top: 2.8rem;
  }
}
.p-form__foot p {
  font-size: max(1.7rem, 13px);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-form__foot p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.p-form__foot p a {
  color: #0068ae;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-form__foot p a:hover {
  opacity: 0.6;
}
.p-form__foot .p-form__check {
  margin-top: 1.4rem;
  font-size: max(1.7rem, 13px);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-form__foot .p-form__check {
    margin-top: 0;
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
資料請求にあるチェックボックス等
--------------------------------------------------- */
.p-form-item--column {
  margin-top: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .p-form-item--column {
    margin-top: 2.4rem;
  }
}
.p-form-item--column p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  font-size: max(1.9rem, 15px);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-form-item--column p {
    font-size: 1.7rem;
    font-weight: 500;
  }
}
.p-form-item--column p span {
  font-size: max(1.5rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-form-item--column p span {
    font-size: 1rem;
  }
}
.p-form-item--column > label {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-form-item--column > label {
    line-height: 1.4;
  }
}
.p-form-item--column .p-form-item__textarea {
  width: 100%;
}
.p-form-item--column .p-form-item__textarea textarea {
  margin-top: 2rem;
  display: block;
  height: 22rem;
  min-height: 22rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item--column .p-form-item__textarea textarea {
    margin-top: 0.6rem;
    height: 15rem;
    min-height: 15rem;
  }
}
.p-form-item--column .p-form-item__textarea p {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-form-item--column .p-form-item__textarea p {
    font-size: 1rem;
  }
}
.p-form-item--column .p-form-item__textarea p span.wpcf7-character-count.down {
  color: #000;
}

.p-form-item__check-box {
  margin-top: 4rem;
  padding-left: 21.2rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item__check-box {
    margin-top: 2rem;
    padding-left: 0;
  }
}

.p-form-item__check-box .wpcf7-form-control.wpcf7-checkbox {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 0.9rem;
  width: 100%;
}
.p-form-item__check-box .wpcf7-form-control.wpcf7-checkbox span {
  display: inline-block;
  position: relative;
}

.p-form-item__check-box input + span {
  width: 100%;
  position: relative;
  font-size: max(1.7rem, 13px);
  line-height: 1.875;
  letter-spacing: 0.1em;
  padding-left: max(3.6rem, 20px);
}
@media only screen and (max-width: 767px) {
  .p-form-item__check-box input + span {
    font-size: 1.3rem;
    padding-left: 2.5rem;
    display: block;
  }
}

.p-form-item__check-box input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.4rem;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .p-form-item__check-box input + span::before {
    width: 1.8rem;
    top: 0.3rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-form-item__check-box input + span::after {
  position: absolute;
  content: "";
  top: 53.5%;
  left: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-40deg);
          transform: translateY(-50%) rotate(-40deg);
  width: 1.4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-form-item__check-box input + span::after {
    top: 1.2rem;
    left: 0.4rem;
    width: 1rem;
  }
}

[type=checkbox]:checked + span::after {
  display: block;
}

/* ------------------------------------------------
送信ボタン
--------------------------------------------------- */
.p-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  margin-top: 6rem;
  height: 6rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-contact__btn {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    margin-top: 5rem;
    height: 4rem;
  }
}

input[type=submit] {
  -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
          clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  width: 24rem;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #bcbcbc;
  padding-top: 0.2rem;
  padding-left: 0.4rem;
  color: #fff;
  cursor: not-allowed;
}
@media only screen and (max-width: 767px) {
  input[type=submit] {
    width: 20rem;
    font-size: 1.4rem;
    -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    padding-left: 0.4rem;
  }
}

.wpcf7-submit.is-active {
  background-color: #0068ae;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

/* ------------------------------------------------
バリデーションエラー 送信ボタンを押して初めて表示
--------------------------------------------------- */
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  position: absolute;
  display: none;
  bottom: -1.8rem;
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
    bottom: -1.2rem;
  }
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
  font-size: max(1.2rem, 9px);
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
    font-size: 1rem;
  }
}

.p-form-item__textarea .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  bottom: -4.5rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item__textarea .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
    bottom: -3.5rem;
  }
}

/* ------------------------------------------------
確認画面での戻るボタン・送信ボタン
--------------------------------------------------- */
.p-confirm .p-contact__btn,
.p-request-confirm .p-contact__btn {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-contact__btn,
  .p-request-confirm .p-contact__btn {
    margin-top: 6rem;
  }
}
.p-confirm .p-contact__btn .return-btn,
.p-request-confirm .p-contact__btn .return-btn {
  background-color: #bcbcbc;
  -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
          clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  width: 24rem;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #bcbcbc;
  padding-top: 0.2rem;
  padding-left: 0.4rem;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-contact__btn .return-btn,
  .p-request-confirm .p-contact__btn .return-btn {
    font-size: 1.4rem;
    width: 13rem;
    -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    padding-left: 0.4rem;
  }
}
.p-confirm .p-contact__btn .submit-btn,
.p-request-confirm .p-contact__btn .submit-btn {
  background-color: #0068ae;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-contact__btn .submit-btn,
  .p-request-confirm .p-contact__btn .submit-btn {
    width: 13rem;
  }
}

.p-confirm .p-form__contents {
  margin-top: 0;
}
.p-confirm .p-form__items {
  margin-top: 0;
}
.p-confirm .p-form-item > label {
  font-weight: 500;
}
.p-confirm .p-form-item__input {
  font-size: max(1.5rem, 11px);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-item__input {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.p-confirm .p-form-item__textarea {
  font-size: max(1.5rem, 11px);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .p-confirm .p-form-item__textarea {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
資料請求確認画面
--------------------------------------------------- */
.p-request-confirm .p-form__items {
  row-gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form__items {
    row-gap: 4rem;
  }
}
.p-request-confirm .p-form-item--column {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form-item--column p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form-item--column > label {
    line-height: 1.6;
    font-weight: 500;
  }
}
.p-request-confirm .p-form-item > label, .p-request-confirm .p-form-item > p {
  font-weight: 600;
}
.p-request-confirm .p-form-item__check-box {
  margin-top: 1.6rem;
  padding-left: 0;
  font-size: max(1.5rem, 11px);
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form-item__check-box {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.p-request-confirm .p-form-item__input {
  font-size: max(1.5rem, 11px);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form-item__input {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.p-request-confirm .p-form-item__textarea {
  margin-top: 2rem;
  font-size: max(1.5rem, 11px);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .p-request-confirm .p-form-item__textarea {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-thanks__head {
    padding-top: 5.6rem;
  }
}

.p-thanks__breadcrumbs {
  margin-top: 5rem;
  max-width: 717px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-thanks__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-thanks__container {
  margin-top: 5rem;
  padding-top: 5rem;
  padding-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-thanks__container {
    margin-top: 2.4rem;
    padding-top: 2rem;
  }
}

.p-thanks__contents {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 71.7rem;
  width: 100%;
  margin-inline: auto;
}

.p-thanks__text {
  margin-top: 4rem;
}

.p-thanks__btn {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
p-request
--------------------------------------------------- */
.p-request__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-request__head {
    padding-top: 5.6rem;
  }
}

.p-request__breadcrumbs {
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-request__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-request__container {
  margin-top: 5rem;
  padding-bottom: 12rem;
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-request__container {
    margin-top: 2.4rem;
    padding-bottom: 5rem;
  }
}

.p-request .p-contact-item__note {
  text-align: left;
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
}

/* ------------------------------------------------
p-support
--------------------------------------------------- */
.p-support {
  padding-bottom: 16rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-support {
    padding-bottom: 8rem;
  }
}

.p-support__container {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-support__container {
    padding-top: 5.6rem;
  }
}

.p-support__breadcrumbs {
  max-width: 1140px;
  margin-top: 6rem;
  margin-inline: auto;
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .p-support__breadcrumbs {
    margin-top: 4rem;
    padding-inline: 20px;
  }
}

.p-support__type {
  padding-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-support__type {
    padding-top: 2.4rem;
  }
}

.p-support__type:nth-of-type(2) {
  padding-top: 10.3rem;
}
@media only screen and (max-width: 767px) {
  .p-support__type:nth-of-type(2) {
    padding-top: 8rem;
  }
}

/* ------------------------------------------------
p-support-type
--------------------------------------------------- */
.p-support-type__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-support-type__head {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-support-type__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-support-type__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-support-type__content {
    margin-top: 3.6rem;
    width: 100%;
  }
}

.p-support-type__title {
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-top: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .p-support-type__title {
    font-size: 2.5rem;
  }
}
.p-support-type__title span {
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 1rem 0.7rem;
  color: #23A4DA;
  border-bottom: 1px solid #23A4DA;
  border-left: 1px solid #23A4DA;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.p-support-type__lead {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-support-type__lead {
    font-size: 1.6rem;
  }
}

.p-support-type__items {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-support-type__items {
    margin-top: 1.8rem;
    -webkit-column-gap: 0.9rem;
       -moz-column-gap: 0.9rem;
            column-gap: 0.9rem;
  }
}

.p-support-type__item {
  height: 9rem;
  display: grid;
  place-content: center;
  border: 1px solid #2271ac;
  border-radius: 1.3rem;
  color: #2271ac;
  font-size: 1.8rem;
  line-height: 1.2222222222;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-support-type__item {
    font-size: 1.2rem;
    height: 5.7rem;
    border-radius: 1.2rem;
  }
}

.p-support-type__img {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-support-type__img {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .p-support-type__img {
    width: 100%;
  }
}

.p-support-type__body {
  margin-top: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .p-support-type__body {
    margin-top: 1.8rem;
  }
}
.p-support-type__body figcaption {
  margin-top: 3rem;
  max-width: 94rem;
  margin-inline: auto;
  font-size: max(1.2rem, 10px);
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-support-type__body figcaption {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
}

.p-support-type__flowchart {
  margin-top: 7.6rem;
  max-width: 86rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-support-type__flowchart {
    margin-top: 2.6rem;
  }
}

.p-support-type__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-support-type__contents {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-support-type__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-support-type__contents .p-support-type__text {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-support-type__contents .p-support-type__text {
    margin-top: 1.8rem;
  }
}

/* ------------------------------------------------
p-support-menu
--------------------------------------------------- */
.p-support-menu {
  margin-top: 9.6rem;
}
@media only screen and (max-width: 767px) {
  .p-support-menu {
    margin-top: 4rem;
  }
}

.p-support-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
  padding-bottom: 1.4rem;
  width: 79.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__head {
    -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;
    width: 100%;
    padding-bottom: 0.8rem;
  }
}
.p-support-menu__head::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: calc(79.4rem + (100vw - 100%) / 2);
  height: 1px;
  background-color: #000;
  width: 100%;
}
.p-support-menu__head span {
  font-size: max(1.6rem, 12px);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__head span {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-support-menu__title {
  font-size: max(2.4rem, 18px);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #2F839D;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__title {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.p-support-menu__items {
  margin-top: 5rem;
  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: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__items {
    margin-top: 3rem;
    row-gap: 4rem;
  }
}

.p-support-menu__item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.4rem;
     -moz-column-gap: 3.4rem;
          column-gap: 3.4rem;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__item dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-support-menu__item dt {
  width: 28.7rem;
  height: 8.5rem;
  -webkit-clip-path: polygon(calc(100% - 3rem) 0, 100% 50%, calc(100% - 3rem) 100%, 0 100%, 0 0);
          clip-path: polygon(calc(100% - 3rem) 0, 100% 50%, calc(100% - 3rem) 100%, 0 100%, 0 0);
  background-color: #19254A;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__item dt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 7rem;
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0);
            clip-path: polygon(100% 0, 100% calc(100% - 2rem), 50% 100%, 0 calc(100% - 2rem), 0 0);
    padding-left: 0;
    padding-bottom: 1rem;
  }
}
.p-support-menu__item dt::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 27.6rem;
  height: 8.3rem;
  -webkit-clip-path: polygon(calc(100% - 2.95rem) 0, 100% 50%, calc(100% - 2.95rem) 100%, 0 100%, 0 0);
          clip-path: polygon(calc(100% - 2.95rem) 0, 100% 50%, calc(100% - 2.95rem) 100%, 0 100%, 0 0);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__item dt::before {
    right: 0;
    left: 50%;
    top: inherit;
    bottom: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 2px);
    height: 6.3rem;
    -webkit-clip-path: polygon(100% 0, 100% calc(100% - 1.95rem), 50% 100%, 0 calc(100% - 1.95rem), 0 0);
            clip-path: polygon(100% 0, 100% calc(100% - 1.95rem), 50% 100%, 0 calc(100% - 1.95rem), 0 0);
  }
}
.p-support-menu__item dt span {
  position: relative;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3043478261;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__item dt span {
    font-size: 1.8rem;
  }
}
.p-support-menu__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(1.7rem, 13px);
  line-height: 1.6470588235;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-support-menu__item dd {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.025em;
  }
}
.p-support-menu__item dd span {
  color: #2F839D;
  font-weight: 500;
}

/* ------------------------------------------------
p-news
--------------------------------------------------- */
.p-news__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-news__head {
    padding-top: 5.6rem;
  }
}

.p-news__container {
  padding-bottom: 18rem;
}
@media only screen and (max-width: 767px) {
  .p-news__container {
    padding-bottom: 8rem;
  }
}

.p-news__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-news__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-news__body {
  margin-top: 5rem;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-news__body {
    margin-top: 2.4rem;
  }
}

.p-news__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem 4rem;
}
@media only screen and (max-width: 767px) {
  .p-news__lists {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.p-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-news-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-news-card__img {
  overflow: hidden;
}
.p-news-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 260/180;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-news-card__body {
  padding-top: 1.2rem;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-news-card__day {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.p-news-card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0.8rem;
  font-size: max(1.6rem, 12px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-news-card__btn {
  margin-top: 3.6rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-news-card__btn {
    margin-top: 2.4rem;
  }
}

.p-news-card a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-news-card a:hover .c-border-btn--archive {
  background-color: #0d5f9a;
}
.p-news-card a:hover .c-border-btn--archive span:nth-child(1) {
  color: #fff;
}
.p-news-card a:hover .c-border-btn--archive span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-color: #fff;
}
.p-news-card a:hover .c-border-btn--archive span:nth-child(2)::before {
  background-color: #fff;
}

.p-news-card[data-mod=case_study] .p-news-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.p-news-card[data-mod=case_study] .p-news-card__case p {
  font-size: max(1.4rem, 11px);
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-news-card[data-mod=case_study] .p-news-card__case p {
    font-size: 1.4rem;
  }
}

.archive-back {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
p-news-detail
--------------------------------------------------- */
.p-news-detail__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__head {
    padding-top: 5.6rem;
  }
}

.p-news-detail__breadcrumbs {
  max-width: 980px;
  margin-inline: auto;
  width: 100%;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-news-detail__container {
  margin-top: 5rem;
  max-width: 980px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.6rem;
     -moz-column-gap: 4.6rem;
          column-gap: 4.6rem;
  padding-bottom: 20rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__container {
    margin-top: 4rem;
    padding-bottom: 7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6rem;
  }
}
.p-news-detail__container article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-news-detail__container aside {
  width: 33rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__container aside {
    width: 100%;
  }
}

.p-news-detail__img {
  width: 100%;
}
.p-news-detail__img img {
  width: 100%;
  height: auto;
}

.p-news-detail__heading {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__heading {
    padding-bottom: 0.8rem;
  }
}

.p-news-detail__day {
  font-size: max(1.5rem, 12px);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__day {
    font-size: 1rem;
  }
}

.p-news-detail__title {
  margin-top: 1rem;
  font-size: max(2.5rem, 20px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__title {
    margin-top: 0.4rem;
    font-size: 1.6rem;
  }
}

.p-news-detail__img {
  margin-top: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__img {
    margin-top: 2rem;
  }
}

.p-news-detail__content {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__content {
    margin-top: 2rem;
  }
}
.p-news-detail__content p {
  margin-block: 4rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__content p {
    margin-block: 2rem;
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
.p-news-detail__content h2 {
  margin-block: 4rem;
  font-weight: 600;
  font-size: max(2rem, 18px);
  letter-spacing: 0.1em;
}
.p-news-detail__content h3 {
  margin-block: 4rem;
  font-weight: 600;
  font-size: max(1.8rem, 15px);
  letter-spacing: 0.1em;
  color: #427BB1;
}

.p-news-detail__btn {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-news-detail__btn {
    margin-top: 4.7rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
p-case-study
--------------------------------------------------- */
.p-case-study__container {
  padding-block: 5.6rem 18rem;
}
@media only screen and (max-width: 767px) {
  .p-case-study__container {
    padding-bottom: 8rem;
  }
}

.p-case-study__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-case-study__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-case-study__body {
  margin-top: 5rem;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-case-study__body {
    margin-top: 2.4rem;
  }
}

.p-case-study__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem 4rem;
}
@media only screen and (max-width: 767px) {
  .p-case-study__lists {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.p-case-study-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-case-study-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-case-study-card__img {
  overflow: hidden;
}
.p-case-study-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 260/180;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-case-study-card__body {
  padding-top: 1.2rem;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-case-study-card__day {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.p-case-study-card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0.8rem;
  font-size: max(1.6rem, 12px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-case-study-card__btn {
  margin-top: 3.6rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-case-study-card__btn {
    margin-top: 2.4rem;
  }
}

.p-case-study-card a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-case-study-card a:hover .c-border-btn--archive {
  background-color: #0d5f9a;
}
.p-case-study-card a:hover .c-border-btn--archive span:nth-child(1) {
  color: #fff;
}
.p-case-study-card a:hover .c-border-btn--archive span:nth-child(2) {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-color: #fff;
}
.p-case-study-card a:hover .c-border-btn--archive span:nth-child(2)::before {
  background-color: #fff;
}

.p-case-study-card[data-mod=case_study] .p-case-study-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.p-case-study-card[data-mod=case_study] .p-case-study-card__case p {
  font-size: max(1.4rem, 11px);
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-case-study-card[data-mod=case_study] .p-case-study-card__case p {
    font-size: 1.4rem;
  }
}

.archive-back {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
導入事例詳細
--------------------------------------------------- */
.c-csd-sec-title h4 {
  display: inline-block;
  font-size: max(2rem, 17px);
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  width: max(60rem, 500px);
}
@media only screen and (max-width: 767px) {
  .c-csd-sec-title h4 {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.c-csd-sec-title h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% + 50vw - 540px);
  height: 0.1rem;
  height: 1px;
  background-color: #707070;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .c-csd-sec-title h4::before {
    width: calc(100% + 30px);
  }
}
@media only screen and (max-width: 767px) {
  .c-csd-sec-title h4::before {
    width: calc(100% + 20px);
  }
}

.c-left-deco-line {
  position: relative;
  padding-left: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .c-left-deco-line {
    padding-left: 1.5rem;
  }
}
.c-left-deco-line::before {
  content: "";
  width: 0.7rem;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #4D63A0;
}
@media only screen and (max-width: 767px) {
  .c-left-deco-line::before {
    width: 0.6rem;
  }
}

.p-case-study-detail__container {
  padding-block: 5.6rem 20rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-case-study-detail__container {
    padding-block: 5.6rem 8rem;
  }
}
.p-case-study-detail__container img {
  width: 100%;
  height: auto;
}

.p-case-study-detail__breadcrumbs {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-case-study-detail__breadcrumbs {
    margin-top: 4rem;
  }
}

.p-case-study-detail__body {
  margin-top: 5rem;
  width: 100%;
  margin-inline: auto;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-case-study-detail__body {
    margin-top: 2.4rem;
  }
}

.p-csd-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-csd-company__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__textarea {
    display: contents;
  }
}

.p-csd-company__date time {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__date time {
    font-size: 1rem;
  }
}

.p-csd-company__company-name {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  margin-top: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__company-name {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.p-csd-company__company-name h3 {
  font-size: 3.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__company-name h3 {
    font-size: 1.6rem;
  }
}
.p-csd-company__company-name p {
  font-size: 2.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__company-name p {
    font-size: 1.3rem;
  }
}

.p-csd-company-info {
  margin-top: 7.2rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-company-info {
    margin-top: 3rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-csd-company-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.3rem;
     -moz-column-gap: 2.3rem;
          column-gap: 2.3rem;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-company-info-item {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    margin-top: 1.6rem;
  }
}

.p-csd-company-info-item__logo {
  width: 20rem;
  padding-inline: 2.4rem;
  aspect-ratio: 200/130;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-csd-company-info-item__logo {
    width: 9.6rem;
    padding-inline: 1.2rem;
  }
}

.p-csd-company-info-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
}
.p-csd-company-info-item__text p {
  font-size: 1.5rem;
  line-height: 1.5714285714;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-csd-company-info-item__text p {
    font-size: 1rem;
  }
}

.p-csd-company__image {
  width: 41.5rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-company__image {
    width: 28.8rem;
    margin-inline: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2rem;
  }
}
.p-csd-company__image img {
  height: auto;
}

.p-csd-solution {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution {
    margin-top: 3rem;
  }
}

.p-csd-solution__contents {
  margin-top: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution__contents {
    margin-top: 2.4rem;
  }
}

.p-csd-solution__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .p-csd-solution__items {
    grid-template-columns: 1fr;
  }
}

.p-csd-solution-item {
  padding: 2.5rem 2.8rem 2.5rem 3.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item {
    padding: 2rem;
  }
}

.p-csd-solution-item__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-csd-solution-item__heading h5 {
  width: 16.5rem;
  height: 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: grid;
  place-content: center;
  border-radius: 0.8rem;
  padding-bottom: 0.2rem;
  padding-left: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item__heading h5 {
    width: 10rem;
    height: 2rem;
    font-size: 1.2rem;
    border-radius: 0.6rem;
    padding-left: 0.1rem;
    padding-bottom: 0;
  }
}

.p-csd-solution-item__list {
  margin-top: 2.4rem;
  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: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item__list {
    margin-top: 1rem;
    row-gap: 1.2rem;
  }
}
.p-csd-solution-item__list li p {
  padding-left: 2.8rem;
}
.p-csd-solution-item__list li .main-text {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item__list li .main-text {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}
.p-csd-solution-item__list li .main-text::before {
  content: attr(data-num);
  position: absolute;
  top: 0;
  left: 0;
}
.p-csd-solution-item__list li .sub-text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-top: 0.4rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item__list li .sub-text {
    font-size: 1.1rem;
  }
}

.p-csd-solution-item__arrow {
  display: block;
  width: 10.8rem;
  height: 0.1rem;
  background: #4D63A0;
  position: absolute;
  top: 4.2rem;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution-item__arrow {
    width: 3.3rem;
    height: 2.2rem;
    background: #C0D8EA;
    top: -0.1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

@media only screen and (max-width: 767px) {
  .p-csd-solution-item:nth-of-type(1) {
    padding-top: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-csd-solution-item:nth-of-type(2) {
    padding-top: 3.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-csd-solution-item:nth-of-type(2) .p-csd-solution-item__arrow {
    background: #C0D8EA;
    right: initial;
    left: 0;
  }
  .p-csd-solution-item:nth-of-type(2) .p-csd-solution-item__arrow::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 0.6rem;
    background: #C0D8EA;
    position: absolute;
    bottom: 100%;
    right: 0;
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}
.p-csd-solution-item:nth-of-type(2) .p-csd-solution-item__list {
  color: #fff;
}

.p-csd-solution__text {
  margin-top: 4rem;
  position: relative;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution__text {
    margin-top: 2rem;
  }
}
.p-csd-solution__text p {
  font-size: max(1.8rem, 14px);
  line-height: 1.6111111111;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution__text p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-csd-solution__image {
  margin-top: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-solution__image {
    margin-top: 1rem;
  }
}

.p-csd-system {
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system {
    margin-top: 4.8rem;
  }
}

.p-csd-system__contents {
  margin-top: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system__contents {
    margin-top: 2.7rem;
  }
}

.p-csd-system__blocks {
  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: 5.6rem;
}

.p-csd-system-block__title h5 {
  width: 16.8rem;
  height: 4rem;
  border: 0.1rem solid #000;
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__title h5 {
    width: 10.7rem;
    height: 2.7rem;
    font-size: 1.1rem;
    border-radius: 0.8rem;
  }
}

.p-csd-system-block__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3rem;
  margin-top: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__contents {
    margin-top: 1.2rem;
  }
}

.p-csd-system-block__image-area {
  width: 21rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__image-area {
    width: 10.7rem;
  }
}

.p-csd-system-block__textarea {
  margin-left: 1.8rem;
  margin-right: 3.3rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__textarea {
    width: 22rem;
    margin-left: 0.4rem;
    margin-right: 0;
  }
}
.p-csd-system-block__textarea p {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__textarea p {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}
.p-csd-system-block__textarea ul {
  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.4rem;
  margin-top: 0.4rem;
}
.p-csd-system-block__textarea ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding-left: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__textarea ul li {
    padding-left: 1.5rem;
    font-size: 1.1rem;
    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.2rem;
  }
}
.p-csd-system-block__textarea ul li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: #000;
  position: absolute;
  top: 1.3rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__textarea ul li::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.9rem;
  }
}
.p-csd-system-block__textarea ul li span {
  display: inline-block;
}
.p-csd-system-block__textarea ul li span:nth-of-type(2) {
  font-weight: 400;
  margin-left: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block__textarea ul li span:nth-of-type(2) {
    margin-left: 0;
    font-size: 1rem;
  }
}

.p-csd-system-block-item {
  width: 16.6rem;
  margin-right: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block-item {
    width: 10.4rem;
    margin-right: 1.1rem;
  }
}

.p-csd-system-block-item__capture p {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block-item__capture p {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

.p-csd-system-block-item__image {
  margin-top: 0.6rem;
}
.p-csd-system-block-item__image img {
  aspect-ratio: 166/102;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block-item__image img {
    aspect-ratio: 104/74;
  }
}

@media only screen and (max-width: 767px) {
  .p-csd-system-block-item03 {
    margin-right: 0;
  }
}

.p-csd-system-block01 .p-csd-system-block__image {
  width: 12.2rem;
  margin-left: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-system-block01 .p-csd-system-block__image {
    width: 7.8rem;
    margin-inline: auto;
  }
}

.p-csd-interview {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview {
    margin-top: 5.3rem;
  }
}

.p-csd-interview__contents {
  margin-top: 5.8rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview__contents {
    margin-top: 2.5rem;
  }
}

.p-csd-interview__faq {
  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: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview__faq {
    row-gap: 0.6rem;
  }
}
.p-csd-interview__faq dt {
  font-size: max(1.8rem, 14px);
  line-height: 1.5555555556;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview__faq dt {
    font-size: 1.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.05em;
  }
}
.p-csd-interview__faq dd {
  font-size: max(1.5rem, 12px);
  line-height: 1.7142857143;
  text-align: justify;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview__faq dd {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.p-csd-interview__faq dd span {
  font-weight: 600;
}

.p-csd-interview-faq02 {
  margin-top: 3.4rem;
}

.p-csd-interview-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.8rem;
     -moz-column-gap: 6.8rem;
          column-gap: 6.8rem;
}
@media only screen and (min-width: 768px) {
  .p-csd-interview-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-csd-interview-head__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-csd-interview-head__textarea {
    margin-top: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-head__textarea {
    display: contents;
  }
}

.p-csd-interview-head__textarea .p-csd-interview__faq {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-head__textarea .p-csd-interview__faq {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-csd-interview-head__title h3 {
  font-size: 2.7rem;
  line-height: 1.2592592593;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-head__title h3 {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    letter-spacing: 0.05em;
  }
}

.p-csd-interview-head__image {
  width: 37.8rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-head__image {
    width: 24.8rem;
    margin-inline: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 3rem;
  }
}

.p-csd-interview__items {
  margin-top: 7.4rem;
  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: 7.4rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview__items {
    margin-top: 3rem;
    row-gap: 3rem;
  }
}

.p-csd-interview-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7rem;
     -moz-column-gap: 7rem;
          column-gap: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.6rem;
  }
}

.p-csd-interview-item__image {
  width: 34.2rem;
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-item__image {
    width: 24.8rem;
    margin-inline: auto;
  }
}

.p-csd-interview-item__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-csd-interview-item__textarea {
    margin-top: 0.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-csd-interview-item__textarea {
    row-gap: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-csd-interview-item02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-case-study-detail__btn {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-case-study-detail__btn {
    margin-top: 5rem;
  }
}

/* ------------------------------------------------
p-privacy-policy
--------------------------------------------------- */
.p-privacy-policy {
  padding-bottom: 16rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-bottom: 8rem;
  }
}

.p-privacy-policy__head {
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__head {
    padding-top: 5.6rem;
  }
}

.p-privacy-policy___breadcrumbs {
  margin-top: 6rem;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy___breadcrumbs {
    margin-top: 4rem;
  }
}

.p-privacy-policy__container {
  margin-top: 5rem;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container {
    margin-top: 2.4rem;
  }
}

.p-privacy-policy__text {
  max-width: 760px;
  margin-inline: auto;
  width: 100%;
}

.p-privacy-policy__contents {
  margin-top: 8rem;
}

.p-privacy-policy__items {
  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: 6.8rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__items {
    row-gap: 4.6rem;
  }
}

.p-privacy-policy__item h3 {
  font-size: max(1.9rem, 15px);
  font-weight: 600;
  line-height: 1.8666666667;
  letter-spacing: 0.1em;
  padding-bottom: 0.8rem;
  color: #0068AE;
  text-indent: -1.4em;
  padding-left: 1.4em;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item h3 {
    font-size: 1.5rem;
    padding-bottom: 0.4rem;
    line-height: 1.3333333333;
  }
}
.p-privacy-policy__item p {
  margin-top: 1.1rem;
  font-family: "Noto Serif JP", serif;
  font-size: max(1.4rem, 11px);
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item p {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.p-privacy-policy__item p + p {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item p + p {
    margin-top: 4rem;
  }
}
.p-privacy-policy__item ul {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item ul {
    margin-top: 2rem;
  }
}
.p-privacy-policy__item li {
  font-family: "Noto Serif JP", serif;
  font-size: max(1.4rem, 11px);
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  text-align: justify;
  text-indent: -1em;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__item li {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

/* --------------------------------
p-404
----------------------------------- */
.p-404 {
  position: relative;
}

.p-404__container {
  padding-block: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-404__container {
    padding-block: 6rem 8rem;
  }
}

.p-404__text {
  font-size: max(1.6rem, 12px);
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-404__text {
    max-width: 420px;
    margin-inline: auto;
    margin-top: 3.6rem;
    text-align: left;
    font-size: 1.4rem;
  }
}

.p-404__btn {
  margin-top: 8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 6rem;
  }
}

/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media (min-width: 961px) {
  .u-960 {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .u-961 {
    display: none !important;
  }
}

@media (min-width: 1060px) {
  .u-1059 {
    display: none !important;
  }
}

@media (max-width: 1059px) {
  .u-1060 {
    display: none !important;
  }
}

@media (min-width: 1111px) {
  .u-961-1110 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .u-961-1110 {
    display: none !important;
  }
}

@media (min-width: 1060px) {
  .u-768-1059 {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-768-1059 {
    display: none !important;
  }
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt28 {
  margin-top: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .u-mt28 {
    margin-top: 2rem;
  }
}

.u-bg-blue01 {
  background-color: #427BB1;
}

.u-bg-blue02 {
  background-color: #55A4CD;
}

.u-bg-blue03 {
  background-color: #4D63A0;
}

.u-text-indent {
  text-indent: -0.5em;
}

.u-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.u-les-10 {
  letter-spacing: -0.01em !important;
}

.u-les0 {
  letter-spacing: 0 !important;
}

.u-les20 {
  letter-spacing: 0.02em !important;
}

.u-les30 {
  letter-spacing: 0.03em !important;
}

.u-les40 {
  letter-spacing: 0.04em !important;
}

.u-les50 {
  letter-spacing: 0.05em !important;
}

@media only screen and (max-width: 767px) {
  .u-sp-les20 {
    letter-spacing: 0.02em !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp-les0 {
    letter-spacing: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .u-pain8-10 {
    padding-inline: 0.8rem !important;
  }
}
@media only screen and (min-width: 1140px) {
  .u-pain8-10 {
    padding-inline: 1rem !important;
  }
}

.u-nowrap {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .u-nowrap {
    white-space: normal;
  }
}

.u-width {
  width: max(60rem, 400px) !important;
}
@media only screen and (max-width: 767px) {
  .u-width {
    width: 100% !important;
  }
}

.u-csd-bg-light-blue {
  background: #c0d8ea;
}

.u-csd-bg-light-navy {
  background: #4D63A0;
}

.u-csd-color-light-blue {
  color: #c0d8ea;
}

.u-csd-color-light-navy {
  color: #4D63A0;
}/*# sourceMappingURL=style.css.map */