@charset "UTF-8";
/**
 * Foundation - Reset
 * ブラウザのデフォルトスタイルをリセットし、
 * vw計算やレイアウトを崩れにくくします。
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

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

/**
 * Foundation - Setting
 * プロジェクト全体の共通変数と関数を定義します。
 */
.js-target, .p-home-problem__title, .p-home-problem__item, .p-home-problem__note, .p-home-case__lead, .p-home-case__header, .p-home-case__item, .p-hero__device, .p-hero__text {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-target.is-animated, .is-animated.p-home-problem__title, .is-animated.p-home-problem__item, .is-animated.p-home-problem__note, .is-animated.p-home-case__lead, .is-animated.p-home-case__header, .is-animated.p-home-case__item, .is-animated.p-hero__device, .is-animated.p-hero__text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.u-delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.u-delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.u-delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.u-delay-7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.u-delay-8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.u-delay-9 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.u-delay-10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

body {
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 16;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
  }
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
  }
}

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

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.9444444444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 18.6666666667vw;
    padding: 0 5.3333333333vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__logo {
  width: 12.5vw;
  height: auto;
}
.l-header__logo a {
  display: block;
  width: 100%;
  line-height: 0;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 32vw;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .l-header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.0833333333vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header__nav li {
    font-weight: 500;
    position: relative;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-animation: ani-fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
            animation: ani-fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .l-header__nav li {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .l-header__nav li {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header__nav li:nth-child(1) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .l-header__nav li:nth-child(2) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .l-header__nav li:nth-child(3) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .l-header__nav li:nth-child(4) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .l-header__nav li:nth-child(5) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .l-header__nav li .c-btn-link {
    display: inline-block;
    padding: 8px 0;
    position: relative;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .l-header__nav li .c-btn-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #005ea4;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .l-header__nav li .c-btn-link:hover {
    color: #005ea4;
  }
  .l-header__nav li .c-btn-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.l-header {
  /* ハンバーガーボタン */
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__hamburger {
    display: grid;
    grid-template-columns: repeat(2, 12px);
    grid-template-rows: repeat(2, 12px);
    gap: 4px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 110;
    position: relative;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .l-header__hamburger span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #2e61a8;
    border-radius: 2px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: absolute;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 0;
    left: 16px;
  }
  .l-header__hamburger span:nth-child(3) {
    top: 16px;
    left: 0;
  }
  .l-header__hamburger span:nth-child(4) {
    top: 16px;
    left: 16px;
  }
}
.l-header__hamburger.is-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-header__hamburger.is-open span {
  border-radius: 6px;
}
.l-header__hamburger.is-open span:nth-child(1) {
  top: 8px;
  left: 0;
  width: 28px;
  height: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  top: 8px;
  left: 0;
  width: 28px;
  height: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header__hamburger.is-open span:nth-child(3) {
  top: 8px;
  left: 0;
  width: 28px;
  height: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(4) {
  top: 8px;
  left: 0;
  width: 28px;
  height: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
.l-header {
  /* スマホ用ドロワーメニュー */
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 105;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    padding: 100px 5% 0;
  }
  .l-header__drawer.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l-header__drawer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .l-header__drawer li {
    font-size: 16px;
    font-weight: bold;
  }
}

@-webkit-keyframes ani-fade-up {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes ani-fade-up {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-footer {
  background-color: #fff;
  width: 100%;
}
.l-footer__nav {
  margin: 3.4722222222vw 1.0416666667vw;
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.7777777778vw;
}
.l-footer__nav-link {
  color: #005bac;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .l-footer__nav-link {
    font-size: max(14px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link {
    font-size: 3.7333333333vw;
  }
}
.l-footer__nav-link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__nav-link:hover {
  opacity: 0.7;
}
.l-footer__logo {
  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;
}
.l-footer__logo img {
  width: 10.4166666667vw;
  height: auto;
}
.l-footer__copyright {
  text-align: center;
  padding: 1.3888888889vw 0;
}
.l-footer__copyright small {
  font-size: max(10px, 0.8333333333vw);
  color: #888;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-footer__cta {
    margin-bottom: 13.3333333333vw;
  }
  .l-footer__inner {
    width: 90%;
    margin: auto;
  }
  .l-footer__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5.3333333333vw;
  }
  .l-footer__nav-link {
    font-size: 4.2666666667vw;
  }
  .l-footer__logo img {
    width: 53.3333333333vw;
  }
}

.l-header__nav .c-btn-download {
  background-color: #00609c;
  color: #fff;
  padding: 20px 35px;
  font-weight: bold;
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}

.c-btn-download:hover {
  opacity: 0.8;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.0833333333vw;
  background-color: #005ea4;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .c-button {
    font-size: max(20px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 4.8vw;
  }
}
.c-button {
  text-decoration: none;
  padding: 1.25vw 4.1666666667vw;
  border-radius: 6.9444444444vw;
  position: relative;
  -webkit-box-shadow: 0 0.4166666667vw 0 #003d75;
          box-shadow: 0 0.4166666667vw 0 #003d75;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-button::after {
  content: "";
  width: 1.25vw;
  height: 1.25vw;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-button:hover {
  opacity: 0.9;
}
.c-button:hover::after {
  -webkit-transform: translateX(0.5555555556vw);
          transform: translateX(0.5555555556vw);
}
.c-button:active {
  -webkit-transform: translateY(0.2777777778vw);
          transform: translateY(0.2777777778vw);
  -webkit-box-shadow: 0 0.1388888889vw 0 #003d75;
          box-shadow: 0 0.1388888889vw 0 #003d75;
}
@media screen and (max-width: 768px) {
  .c-button {
    padding: 3.2vw 10.6666666667vw;
    font-size: 4.2666666667vw;
    gap: 5.3333333333vw;
    -webkit-box-shadow: 0 1.0666666667vw 0 #003d75;
            box-shadow: 0 1.0666666667vw 0 #003d75;
  }
  .c-button::after {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  .c-button:active {
    -webkit-transform: translateY(0.5333333333vw);
            transform: translateY(0.5333333333vw);
    -webkit-box-shadow: 0 0.5333333333vw 0 #003d75;
            box-shadow: 0 0.5333333333vw 0 #003d75;
  }
}

.c-button-teal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #009e9e;
  color: #fff;
  padding: 0.6944444444vw 2.0833333333vw;
  border-radius: 3.4722222222vw;
  font-size: 0.9722222222vw;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  text-decoration: none;
}
.c-button-teal::after {
  content: "→";
  margin-left: 0.5555555556vw;
  font-size: 1.1em;
}
.c-button-teal:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 768px) {
  .c-button-teal {
    padding: 2.1333333333vw 5.3333333333vw;
    font-size: 3.2vw;
    margin: 15px auto 0 auto;
  }
}

.c-btn-cta {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#244b8a), to(#308b9c));
  background: linear-gradient(to right, #244b8a 0%, #308b9c 100%);
  padding: 3.4722222222vw 0;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  z-index: 1;
}
.c-btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#308b9c), to(#244b8a));
  background: linear-gradient(to right, #308b9c 0%, #244b8a 100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.c-btn-cta__inner {
  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;
  gap: 1.0416666667vw;
}
.c-btn-cta__icon {
  width: 2.4305555556vw;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn-cta__text {
  color: #fff;
  font-size: 1.6666666667vw;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn-cta__arrow {
  display: inline-block;
  position: relative;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  margin-left: 1.0416666667vw;
  border-top: 0.2083333333vw solid #fff;
  border-right: 0.2083333333vw solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.c-btn-cta:hover::before {
  opacity: 1;
}
.c-btn-cta:hover .c-btn-cta__arrow {
  -webkit-transform: translateX(1.0416666667vw) rotate(45deg);
          transform: translateX(1.0416666667vw) rotate(45deg);
}
.c-btn-cta:hover .c-btn-cta__icon {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.c-btn-cta:active {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: -webkit-transform 0.05s;
  transition: -webkit-transform 0.05s;
  transition: transform 0.05s;
  transition: transform 0.05s, -webkit-transform 0.05s;
}
@media screen and (max-width: 768px) {
  .c-btn-cta {
    padding: 4.8vw 0;
  }
  .c-btn-cta__text {
    font-size: 4.8vw;
  }
  .c-btn-cta__icon {
    width: 6.4vw;
  }
  .c-btn-cta__arrow {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top-width: 0.5333333333vw;
    border-right-width: 0.5333333333vw;
    margin-left: 2.6666666667vw;
  }
}

.c-btn-thanks-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.0416666667vw;
  background-color: #f2a83e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  width: 34.7222222222vw;
  max-width: 90%;
  height: auto;
  border-radius: 3.4722222222vw;
  padding: 1.0416666667vw;
  margin-top: 2.0833333333vw;
  -webkit-box-shadow: 0 0.4166666667vw 0 0 #d38c2c;
          box-shadow: 0 0.4166666667vw 0 0 #d38c2c;
}
@media screen and (min-width: 769px) {
  .c-btn-thanks-download {
    font-size: max(18px, 1.4583333333vw);
  }
}
@media screen and (max-width: 768px) {
  .c-btn-thanks-download {
    font-size: 4.2666666667vw;
  }
}
.c-btn-thanks-download {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn-thanks-download:hover {
  background-color: #f4b55c;
  -webkit-transform: translateY(0.1388888889vw);
          transform: translateY(0.1388888889vw);
  -webkit-box-shadow: 0 0.2777777778vw 0 0 #d38c2c;
          box-shadow: 0 0.2777777778vw 0 0 #d38c2c;
}
.c-btn-thanks-download:active {
  -webkit-transform: translateY(0.4166666667vw);
          transform: translateY(0.4166666667vw);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-btn-thanks-download__text {
  line-height: 1;
}
.c-btn-thanks-download__icon {
  width: 2.2222222222vw;
  height: 2.2222222222vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn-thanks-download__icon svg {
  width: 100%;
  height: 100%;
}
.c-btn-thanks-download {
  /* スマートフォン表示 */
}
@media screen and (max-width: 768px) {
  .c-btn-thanks-download {
    width: 90%;
    height: 17.0666666667vw;
    border-radius: 8.5333333333vw;
    gap: 2.6666666667vw;
    -webkit-box-shadow: 0 1.0666666667vw 0 0 #d38c2c;
            box-shadow: 0 1.0666666667vw 0 0 #d38c2c;
  }
  .c-btn-thanks-download__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}

.p-hero {
  margin-top: 6.9444444444vw;
  position: relative;
  width: 100%;
  height: calc(100vh - 6.9444444444vw);
  min-height: 600px;
  max-height: 1400px;
  background-color: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) and (max-width: 1400px) {
  .p-hero {
    height: 600px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero {
    margin-top: 18.1333333333vw;
    height: auto;
    min-height: 0;
    max-height: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10.6666666667vw;
  }
}
.p-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 62vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__bg {
    width: 50%;
    right: -5%;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__bg {
    width: 150%;
    height: 70%;
    right: -25%;
    top: -5%;
  }
}
.p-hero__device {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55vw;
  z-index: 10;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__device {
    position: relative;
    width: 50%;
    right: auto;
    bottom: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__device {
    position: relative;
    width: 100%;
    margin-top: 5.3333333333vw;
    margin-bottom: 8vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-hero__text {
  position: relative;
  padding-left: 5%;
  z-index: 20;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__text {
    width: 50%;
    padding-left: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__text {
    width: 90%;
    padding-left: 0;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
  }
}
.p-hero .c-text-gradient {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#56a2d1), to(#90c35b));
  background: linear-gradient(90deg, #56a2d1 0%, #90c35b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .p-hero .c-text-gradient {
    background: none;
    color: #56a2d1;
  }
}
.p-hero__sub {
  display: block;
  font-weight: 500;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 769px) {
  .p-hero__sub {
    font-size: max(16px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .p-hero__sub {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__sub {
    margin-top: 1.0416666667vw;
  }
}
.p-hero__title {
  padding: 2.0833333333vw 0.6944444444vw;
}
.p-hero__title img {
  width: 80%;
}
@media screen and (min-width: 769px) {
  .p-hero__title {
    font-size: max(28px, 3.1944444444vw);
  }
}
@media screen and (max-width: 768px) {
  .p-hero__title {
    font-size: 5.6vw;
  }
}
.p-hero__title {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.7361111111vw 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-hero__desc {
    font-size: max(16px, 1.5277777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-hero__desc {
    font-size: 3.7333333333vw;
  }
}
.p-hero__desc {
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-hero__desc {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .p-hero__desc br {
    display: none;
  }
}

.c-ribbon-z {
  width: 100%;
  height: 100%;
  display: block;
}
.c-ribbon-z__mask-path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
}
@media screen and (min-width: 769px) {
  .c-ribbon-z__mask-path {
    -webkit-animation: ani-draw-z-right 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
            animation: ani-draw-z-right 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  }
}
@media screen and (max-width: 768px) {
  .c-ribbon-z__mask-path {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes ani-draw-z-right {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ani-draw-z-right {
  to {
    stroke-dashoffset: 0;
  }
}
.c-bg-gradient--light {
  background: -webkit-gradient(linear, left top, right top, from(#e9eff6), to(#ecf5f5));
  background: linear-gradient(to right, #e9eff6 0%, #ecf5f5 100%);
}
.c-bg-gradient--main {
  background: -webkit-gradient(linear, left top, right top, from(#285ca0), to(#489b9d));
  background: linear-gradient(to right, #285ca0 0%, #489b9d 100%);
}

.c-page-header {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#285ca0), to(#489b9d));
  background: linear-gradient(to right, #285ca0 0%, #489b9d 100%);
  padding: 3.4722222222vw 0;
  color: #fff;
  margin-top: 6.9444444444vw;
}
@media screen and (min-width: 769px) {
  .c-page-header {
    background: url(https://www.technosjapan.jp/elive/images/common/page-ttl-bg.png), -webkit-gradient(linear, left top, right top, from(#285ca0), to(#489b9d));
    background: url(https://www.technosjapan.jp/elive/images/common/page-ttl-bg.png), linear-gradient(to right, #285ca0 0%, #489b9d 100%);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.c-page-header__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.c-page-header__sub {
  font-size: 1.1111111111vw;
  font-weight: 400;
  margin-bottom: 0.6944444444vw;
  letter-spacing: 0.05em;
}
.c-page-header__title {
  font-size: 2.7777777778vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-page-header {
    margin-top: 18.1333333333vw;
    padding: 30px 0 40px;
  }
  .c-page-header__inner {
    width: 90%;
  }
  .c-page-header__sub {
    font-size: 3.7333333333vw;
  }
  .c-page-header__title {
    font-size: 7.4666666667vw;
  }
}

.c-pagetop {
  position: fixed;
  right: max(20px, 2.0833333333vw);
  bottom: max(20px, 2.0833333333vw);
  z-index: 100;
  width: max(40px, 4.1666666667vw);
  height: max(40px, 4.1666666667vw);
  background-color: #2b5fac;
  border-radius: 50%;
  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;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.c-pagetop.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-pagetop:hover {
  opacity: 0.8;
}
.c-pagetop__icon {
  display: block;
  width: max(12px, 1.0416666667vw);
  height: max(12px, 1.0416666667vw);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(2px);
          transform: rotate(-45deg) translateY(2px);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-pagetop {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
  .c-pagetop__icon {
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(-45deg) translateY(2px);
            transform: rotate(-45deg) translateY(2px);
  }
}
@media screen and (max-width: 768px) {
  .c-pagetop {
    width: 44px;
    height: 44px;
    right: 15px;
    bottom: 15px;
  }
}

/**
 * Project - HOME
 * トップページ
 */
/* ==========================================================================
   アニメーション基本設定 (共通)
   ========================================================================== */
.js-target, .p-home-case__item, .p-home-case__header, .p-home-case__lead, .p-home-problem__note, .p-home-problem__item, .p-home-problem__title {
  opacity: 0;
  -webkit-transform: translateY(2.7777777778vw);
          transform: translateY(2.7777777778vw);
  -webkit-transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-target.is-animated, .is-animated.p-home-case__item, .is-animated.p-home-case__header, .is-animated.p-home-case__lead, .is-animated.p-home-problem__note, .is-animated.p-home-problem__item, .is-animated.p-home-problem__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-delay-1 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.u-delay-2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.u-delay-3 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.u-delay-4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.u-delay-5 {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

/* ==========================================================================
   p-home-intro (見守りとは)
   ========================================================================== */
.p-home-intro {
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, right top, from(#244b8a), to(#308b9c));
  background: linear-gradient(to right, #244b8a 0%, #308b9c 100%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-home-intro {
    padding: 16vw 5.3333333333vw;
  }
}
.p-home-intro__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 80px 60px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-intro__inner {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .p-home-intro__inner {
    width: 100%;
    padding: 10.6666666667vw 5.3333333333vw;
    border-radius: 20px;
  }
}
.p-home-intro__heading {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-home-intro__heading {
    margin-bottom: 8vw;
  }
}
.p-home-intro__title {
  color: #005a9b;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-home-intro__title {
    font-size: max(24px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-intro__title {
    font-size: 5.3333333333vw;
  }
}
.p-home-intro__title {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .p-home-intro__lead {
    font-size: max(15px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-intro__lead {
    font-size: 3.4666666667vw;
  }
}
.p-home-intro__lead {
  line-height: 2;
  color: #666;
}
.p-home-intro__content {
  position: relative;
  margin-bottom: 50px;
}
.p-home-intro__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5555555556vw 8.3333333333vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.p-home-intro__list::before { /* 縦線 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 0;
  background-color: #ccc;
  -webkit-transition: height 0.8s ease 1.4s;
  transition: height 0.8s ease 1.4s;
  z-index: -1;
}
.p-home-intro__list::after { /* 横線 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 1px;
  background-color: #ccc;
  -webkit-transition: width 0.8s ease 1.4s;
  transition: width 0.8s ease 1.4s;
  z-index: -1;
}
.p-home-intro__list.is-animated::before {
  height: 80%;
}
.p-home-intro__list.is-animated::after {
  width: 80%;
}
.p-home-intro__center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 16.6666666667vw;
  background-color: #fff;
  padding: 1.0416666667vw;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease 0.8s, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
  transition: opacity 0.6s ease 0.8s, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s, opacity 0.6s ease 0.8s;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s, opacity 0.6s ease 0.8s, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
}
.p-home-intro__center-logo.is-animated {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.p-home-intro__item {
  text-align: center;
  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 screen and (min-width: 769px) {
  .p-home-intro__item-title {
    font-size: max(18px, 2.2222222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-intro__item-title {
    font-size: 4.8vw;
  }
}
.p-home-intro__item-title {
  color: #005ea4;
  font-weight: bold;
}
.p-home-intro__item-title span {
  display: block;
}
@media screen and (min-width: 769px) {
  .p-home-intro__item-title span {
    font-size: max(16px, 1.4583333333vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-intro__item-title span {
    font-size: 3.7333333333vw;
  }
}
.p-home-intro__item-title span {
  margin-top: 0.3472222222vw;
  font-weight: 400;
  color: #666;
}
.p-home-intro__item-img {
  width: 100%;
  height: 12.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-intro__item-img img {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-home-intro__btn {
  margin: 2.7777777778vw auto;
}

/* ==========================================================================
   p-home-problem (お悩み解決)
   ========================================================================== */
.p-home-problem {
  padding: 6.9444444444vw 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-problem {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem {
    padding: 40px 0;
  }
}
.p-home-problem__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-problem__inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__inner {
    width: 90%;
  }
}
.p-home-problem__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4.1666666667vw;
}
.p-home-problem__title-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (min-width: 769px) {
  .p-home-problem__title-inner {
    font-size: max(28px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__title-inner {
    font-size: 5.3333333333vw;
  }
}
.p-home-problem__title-inner {
  color: #009e9e;
  font-weight: bold;
}
.p-home-problem__staff {
  width: 8.3333333333vw;
  height: auto;
}
.p-home-problem__staff img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-home-problem__staff {
    width: 60px;
  }
}
.p-home-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 768px) {
  .p-home-problem__list {
    gap: 20px;
  }
}
.p-home-problem__item {
  width: calc(50% - 0.8333333333vw);
  background-color: #009e9e;
  border-radius: 1.0416666667vw;
  padding: 2.7777777778vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}
.p-home-problem__item:nth-child(odd) {
  -webkit-transform: translateX(-2.0833333333vw);
          transform: translateX(-2.0833333333vw);
}
.p-home-problem__item:nth-child(even) {
  -webkit-transform: translateX(2.0833333333vw);
          transform: translateX(2.0833333333vw);
}
.p-home-problem__item.is-animated {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-home-problem__item {
    width: 100%;
    padding: 30px 20px;
    -webkit-transform: translateY(20px) !important;
            transform: translateY(20px) !important;
  }
}
@media screen and (min-width: 769px) {
  .p-home-problem__item-head {
    font-size: max(24px, 2.2222222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__item-head {
    font-size: 4.8vw;
  }
}
.p-home-problem__item-head {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.0416666667vw;
}
.p-home-problem__item-head span {
  color: #fbed21;
}
@media screen and (min-width: 769px) {
  .p-home-problem__item-text {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__item-text {
    font-size: 3.7333333333vw;
  }
}
.p-home-problem__item-text {
  text-align: center;
  line-height: 1.6;
}
.p-home-problem__item-arrow {
  margin: 1.3888888889vw auto;
  width: 2.7777777778vw;
}
.p-home-problem__item-arrow img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-home-problem__item-arrow {
    width: 30px;
    margin: 15px auto;
  }
}
.p-home-problem__item-lower {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-home-problem__result-label {
    font-size: max(20px, 1.6666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__result-label {
    font-size: 4.2666666667vw;
  }
}
.p-home-problem__result-label {
  font-weight: bold;
  margin-bottom: 0.6944444444vw;
}
.p-home-problem__result-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.p-home-problem__result-value .u-font-en {
  color: #fbed21;
  font-size: 8.3333333333vw;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-problem__result-value .u-font-en {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__result-value .u-font-en {
    font-size: 70px;
  }
}
.p-home-problem__result-value .u-font-en .u-font-en-small {
  font-size: 5.5555555556vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-problem__result-value .u-font-en .u-font-en-small {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__result-value .u-font-en .u-font-en-small {
    font-size: 50px;
  }
}
.p-home-problem__unit {
  font-size: 2.2222222222vw;
  margin-left: 0.6944444444vw;
}
.p-home-problem__unit small {
  font-size: 0.5em;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-home-problem__unit {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-problem__unit {
    font-size: 20px;
  }
}
.p-home-problem__sub-unit {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0.5em;
  font-size: 1.6666666667vw;
  margin-right: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  .p-home-problem__sub-unit {
    font-size: 16px;
  }
}
.p-home-problem__note {
  text-align: right;
  margin-top: 1.3888888889vw;
  font-size: max(10px, 0.9722222222vw);
  color: #666;
}
.p-home-problem__staff img {
  width: 10.4166666667vw;
}

/* ==========================================================================
   p-home-case (導入事例)
   ========================================================================== */
.p-home-case {
  padding: 6.9444444444vw 0;
}
.p-home-case__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-home-case__lead {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__lead {
    font-size: 3.7333333333vw;
  }
}
.p-home-case__lead {
  line-height: 1.8;
  margin-bottom: 4.1666666667vw;
}
.p-home-case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4.1666666667vw;
}
@media screen and (min-width: 769px) {
  .p-home-case__title {
    font-size: max(30px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__title {
    font-size: 6.4vw;
  }
}
.p-home-case__title {
  color: #009e9e;
  font-weight: bold;
  margin-bottom: 0;
}
.p-home-case__subtitle {
  display: block;
}
@media screen and (min-width: 769px) {
  .p-home-case__subtitle {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__subtitle {
    font-size: 3.7333333333vw;
  }
}
.p-home-case__subtitle {
  color: #009e9e;
  margin-top: 0.3472222222vw;
}
.p-home-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0833333333vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-home-case__list {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .p-home-case__list {
    margin-bottom: 0;
  }
}
.p-home-case {
  /* ボタンのラッパー */
}
.p-home-case__btn-wrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-home-case__btn-wrapper {
    position: absolute;
    top: 3.4722222222vw;
    right: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-home-case__item {
  width: calc(33.333% - 1.3888888889vw);
}
.p-home-case__item:nth-child(2) {
  -webkit-transform: translateY(-3.4722222222vw);
          transform: translateY(-3.4722222222vw);
}
.p-home-case__item:nth-child(2).is-animated {
  -webkit-transform: translateY(-3.4722222222vw);
          transform: translateY(-3.4722222222vw);
}
.p-home-case__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-home-case__link:hover .p-home-case__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-home-case__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 1.3888888889vw;
  border-radius: 0.6944444444vw;
  background-color: #eee;
}
.p-home-case__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (min-width: 769px) {
  .p-home-case__item-title {
    font-size: max(18px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__item-title {
    font-size: 4.2666666667vw;
  }
}
.p-home-case__item-title {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.0416666667vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-home-case__facility {
    font-size: max(14px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__facility {
    font-size: 3.7333333333vw;
  }
}
.p-home-case__facility {
  color: #666;
}
@media screen and (max-width: 768px) {
  .p-home-case {
    padding: 10.6666666667vw 0;
  }
  .p-home-case__inner {
    width: 100%;
  }
  .p-home-case__lead {
    padding: 0 5%;
  }
  .p-home-case__header {
    -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;
    margin-bottom: 8vw;
    padding: 0 5%;
  }
  .p-home-case__scroll-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-home-case__list {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    gap: 3.2vw;
    padding: 0 0 5.3333333333vw;
    scrollbar-width: none;
  }
  .p-home-case__list::-webkit-scrollbar {
    display: none;
  }
  .p-home-case__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 88%;
            flex: 0 0 88%;
    width: auto;
    -webkit-transform: none !important;
            transform: none !important;
    scroll-snap-align: start;
  }
  .p-home-case__item:nth-child(n+2) {
    display: block;
  }
  .p-home-case__nav-btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 18.2vw;
    width: 9.6vw;
    height: 9.6vw;
    border-radius: 50%;
    border: 2px solid #009e9e;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-home-case__nav-btn::before {
    content: "";
    display: block;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top: 2px solid #009e9e;
    border-right: 2px solid #009e9e;
  }
  .p-home-case__nav-btn--prev::before {
    -webkit-transform: rotate(-135deg) translate(-15%, 15%);
            transform: rotate(-135deg) translate(-15%, 15%);
  }
  .p-home-case__nav-btn--next::before {
    -webkit-transform: rotate(45deg) translate(-15%, 15%);
            transform: rotate(45deg) translate(-15%, 15%);
  }
  .p-home-case__nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
  }
  .p-home-case__nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.1333333333vw;
  }
}
.p-home-case__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-home-case__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-home-case__nav-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-home-case__nav-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.0666666667vw;
    background: #009e9e;
    color: #fff;
    font-size: 3.2vw;
    font-weight: 700;
    padding: 2.1333333333vw 5.3333333333vw;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .p-home-case__nav-link::after {
    content: "→";
  }
  .p-home-case__nav-link:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 768px) {
  .p-home-case__header-btn {
    display: none;
  }
}

/**
 * Project - About (eライブとは)
 * デザイントークン: _p-lp.scss と同一基準
 *   __title  : color $color-text-main / font-weight 900
 *   __lead   : color #777
 *   カード   : border 1px solid #d8e4ec / shadow なし / 角丸なし
 *   Before   : border 3px solid #d0d8e0
 *   After    : border 3px solid $color-main
 */
/* ==========================================================================
   SECTION 1 — p-about-structure（eライブの構成と、つながる仕組み）
   ========================================================================== */
.p-about-structure {
  padding: 0 0 6.25vw 0;
  background: #fff;
  margin-top: 6.9444444444vw;
}
.p-about-structure__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.p-about-structure__heading {
  text-align: center;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-about-structure__heading {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-structure__title {
    font-size: max(26px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-structure__title {
    font-size: 6.4vw;
  }
}
.p-about-structure__title {
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 769px) {
  .p-about-structure__lead {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-structure__lead {
    font-size: 3.7333333333vw;
  }
}
.p-about-structure__lead {
  line-height: 1.8;
  color: #777;
  max-width: 55.5555555556vw;
  margin: 0 auto;
}
.p-about-structure__diagram {
  margin-bottom: 4.4444444444vw;
  text-align: center;
}
.p-about-structure__diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.p-about-structure__diagram-label {
  font-size: max(13px, 0.9027777778vw);
  color: #009e9e;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.1111111111vw;
}
.p-about-structure__diagram-core {
  display: inline-block;
  background: #fff;
  padding: 1.6666666667vw 2.7777777778vw;
  border: 2px solid #005ea4;
  border-radius: 0.8333333333vw;
  margin-bottom: 1.1111111111vw;
}
.p-about-structure__diagram-core-name {
  font-size: max(16px, 1.25vw);
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5555555556vw;
}
.p-about-structure__diagram-core-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5555555556vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.p-about-structure__diagram-core-tags li {
  background: #005ea4;
  color: #fff;
  border-radius: 0.2777777778vw;
  padding: 0.2777777778vw 0.6944444444vw;
  font-size: max(13px, 0.9027777778vw);
  font-weight: 600;
}
.p-about-structure__diagram-note {
  font-size: max(13px, 0.9027777778vw);
  color: #777;
  margin: 1.1111111111vw 0;
}
.p-about-structure__diagram-peripherals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1111111111vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.p-about-structure__diagram-peripherals li {
  background: rgba(0, 158, 158, 0.08);
  border: 2px solid #009e9e;
  color: #009e9e;
  border-radius: 0.2777777778vw;
  padding: 0.4166666667vw 0.9722222222vw;
  font-size: max(13px, 0.9027777778vw);
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .p-about-structure__subtitle {
    font-size: max(18px, 1.5277777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-structure__subtitle {
    font-size: 4.8vw;
  }
}
.p-about-structure__subtitle {
  font-weight: 700;
  color: #009e9e;
  padding-left: 1.1111111111vw;
  border-left: 5px solid #009e9e;
  margin-bottom: 2.2222222222vw;
}
.p-about-structure__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6666666667vw;
  list-style: none;
  margin-bottom: 4.4444444444vw;
}
.p-about-structure__product-item {
  background: #fff;
  border: 2px solid #d8e4ec;
  border-radius: 0.9722222222vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-structure__product-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-about-structure__product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 1.1111111111vw;
}
.p-about-structure__product-body {
  padding: 1.6666666667vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f8fafc;
}
@media screen and (min-width: 769px) {
  .p-about-structure__product-name {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-structure__product-name {
    font-size: 4vw;
  }
}
.p-about-structure__product-name {
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5555555556vw;
}
.p-about-structure__product-desc {
  font-size: max(13px, 0.9027777778vw);
  line-height: 1.75;
  color: #555;
}
.p-about-structure__connections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6666666667vw;
  list-style: none;
}
.p-about-structure__connection-item {
  text-align: center;
  background: #fff;
  border: 2px solid #d8e4ec;
  border-radius: 0.9722222222vw;
  padding: 2.2222222222vw 1.6666666667vw;
}
.p-about-structure__connection-icon {
  width: 6.1111111111vw;
  height: 6.1111111111vw;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1111111111vw;
}
.p-about-structure__connection-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-structure__connection-name {
  font-size: max(13px, 1.0416666667vw);
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5555555556vw;
}
.p-about-structure__connection-desc {
  font-size: max(13px, 0.9027777778vw);
  line-height: 1.75;
  color: #555;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-about-structure {
    padding: 16vw 0;
  }
  .p-about-structure__inner {
    width: 92%;
  }
  .p-about-structure__lead {
    max-width: 100%;
  }
  .p-about-structure__diagram {
    padding: 6.4vw;
    margin-bottom: 10.6666666667vw;
  }
  .p-about-structure__products {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4vw;
    margin-bottom: 12.8vw;
  }
  .p-about-structure__connections {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4vw;
  }
  .p-about-structure__connection-icon {
    width: 19.2vw;
    height: 19.2vw;
  }
}

/* ==========================================================================
   SECTION 2 — p-about-facility（こんな施設で導入されています）
   ========================================================================== */
.p-about-facility {
  padding: 6.25vw 0;
  background: -webkit-gradient(linear, left top, right top, from(#e9eff6), to(#ecf5f5));
  background: linear-gradient(to right, #e9eff6 0%, #ecf5f5 100%);
}
.p-about-facility__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.p-about-facility__heading {
  text-align: center;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-about-facility__heading {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-facility__title {
    font-size: max(26px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-facility__title {
    font-size: 6.4vw;
  }
}
.p-about-facility__title {
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 769px) {
  .p-about-facility__lead {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-facility__lead {
    font-size: 3.7333333333vw;
  }
}
.p-about-facility__lead {
  line-height: 1.8;
  color: #777;
  max-width: 55.5555555556vw;
  margin: 0 auto;
}
.p-about-facility__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2222222222vw;
  list-style: none;
  margin-bottom: 2.2222222222vw;
}
.p-about-facility__item {
  padding: 2.2222222222vw;
  background: #fff;
  border: 4px solid #d8e4ec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-facility__item:nth-child(1) {
  border-top: 4px solid #005ea4;
}
.p-about-facility__item:nth-child(1) .p-about-facility__name {
  color: #005ea4;
  border-bottom-color: #005ea4;
}
.p-about-facility__item:nth-child(1) .p-about-facility__subtypes li::before {
  color: #005ea4;
}
.p-about-facility__item:nth-child(2) {
  border-top: 4px solid #009e9e;
}
.p-about-facility__item:nth-child(2) .p-about-facility__name {
  color: #009e9e;
  border-bottom-color: #009e9e;
}
.p-about-facility__item:nth-child(2) .p-about-facility__subtypes li::before {
  color: #009e9e;
}
.p-about-facility__item:nth-child(3) {
  border-top: 4px solid #6b8caa;
}
.p-about-facility__item:nth-child(3) .p-about-facility__name {
  color: #6b8caa;
  border-bottom-color: #6b8caa;
}
.p-about-facility__item:nth-child(3) .p-about-facility__subtypes li::before {
  color: #6b8caa;
}
.p-about-facility__icon {
  width: 4.4444444444vw;
  height: auto;
  margin-bottom: 1.1111111111vw;
}
.p-about-facility__icon img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-about-facility__name {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-facility__name {
    font-size: 4.5333333333vw;
  }
}
.p-about-facility__name {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.6666666667vw;
  padding-bottom: 0.5555555556vw;
  border-bottom: 2px solid;
}
.p-about-facility__subtypes {
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-facility__subtypes li {
  font-size: max(13px, 0.9722222222vw);
  line-height: 1.9;
  color: #555;
  padding-left: 1.5em;
  position: relative;
}
.p-about-facility__subtypes li::before {
  content: "⚫︎";
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1.6;
}
.p-about-facility__footer-note {
  font-size: max(13px, 0.9027777778vw);
  color: #777;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about-facility {
    padding: 16vw 0;
  }
  .p-about-facility__inner {
    width: 92%;
  }
  .p-about-facility__lead {
    max-width: 100%;
  }
  .p-about-facility__list {
    grid-template-columns: 1fr;
    gap: 6.4vw;
  }
  .p-about-facility__item {
    padding: 6.4vw;
    border-radius: 3.2vw;
  }
  .p-about-facility__icon {
    width: 14.4vw;
    height: auto;
    margin-bottom: 4.2666666667vw;
  }
}

/* ==========================================================================
   SECTION 3 — p-about-scene（現場のシーン別に、こう変わる）
   ========================================================================== */
.p-about-scene {
  padding: 6.25vw 0;
  background: #fff;
}
.p-about-scene__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.p-about-scene__heading {
  text-align: center;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-about-scene__heading {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-scene__title {
    font-size: max(26px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-scene__title {
    font-size: 6.4vw;
  }
}
.p-about-scene__title {
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 769px) {
  .p-about-scene__lead {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-scene__lead {
    font-size: 3.7333333333vw;
  }
}
.p-about-scene__lead {
  line-height: 1.8;
  color: #777;
  max-width: 55.5555555556vw;
  margin: 0 auto;
}
.p-about-scene__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.7777777778vw;
  counter-reset: scene-counter;
}
.p-about-scene__item {
  counter-increment: scene-counter;
  padding: 3.3333333333vw 4.4444444444vw;
  position: relative;
  overflow: hidden;
}
.p-about-scene__item::before {
  content: "0" counter(scene-counter);
  position: absolute;
  top: -0.6944444444vw;
  right: 2.7777777778vw;
  font-size: 11.1111111111vw;
  font-weight: 900;
  color: rgba(0, 94, 164, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 769px) {
  .p-about-scene__scene-title {
    font-size: max(19px, 1.6666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-scene__scene-title {
    font-size: 5.3333333333vw;
  }
}
.p-about-scene__scene-title {
  font-weight: 900;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1111111111vw;
  padding-bottom: 2.2222222222vw;
  margin-bottom: 2.7777777778vw;
  border-bottom: 1px solid #d8e4ec;
  position: relative;
  z-index: 1;
}
.p-about-scene__scene-num {
  display: inline-block;
  background: #005ea4;
  color: #fff;
  border-radius: 0.2777777778vw;
  padding: 0.4166666667vw 1.25vw;
  font-size: max(14px, 1.0416666667vw);
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0.03em;
}
.p-about-scene__compare {
  display: grid;
  grid-template-columns: 1fr 3.3333333333vw 1fr;
  gap: 1.6666666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.p-about-scene__before, .p-about-scene__after {
  border-radius: 0.6944444444vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.p-about-scene__before {
  background: #fff;
  border: 3px solid #d0d8e0;
}
.p-about-scene__after {
  background: #fff;
  border: 3px solid #005ea4;
}
.p-about-scene__after .p-about-scene__text {
  font-size: max(15px, 1.1111111111vw);
  font-weight: 700;
  color: #333333;
}
.p-about-scene__arrow {
  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: 3.3333333333vw;
  height: 3.3333333333vw;
}
.p-about-scene__arrow::after {
  content: "";
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-top: 3px solid #005ea4;
  border-right: 3px solid #005ea4;
  -webkit-transform: translateX(-1px) rotate(45deg);
          transform: translateX(-1px) rotate(45deg);
}
.p-about-scene__label {
  display: block;
}
@media screen and (min-width: 769px) {
  .p-about-scene__label {
    font-size: max(13px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-scene__label {
    font-size: 3.7333333333vw;
  }
}
.p-about-scene__label {
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.6944444444vw 1.25vw;
  margin: 0;
}
.p-about-scene__label--before {
  background: #d0d8e0;
  color: #555;
}
.p-about-scene__label--after {
  background: #005ea4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about-scene__label {
    padding: 2.1333333333vw 4.2666666667vw;
  }
}
.p-about-scene__text {
  font-size: max(13px, 0.9722222222vw);
  line-height: 1.8;
  color: #555;
  padding: 1.6666666667vw;
  margin: 0;
}
.p-about-scene__quote {
  font-size: max(13px, 0.9027777778vw);
  color: #777;
  border-left: 3px solid #d0d8e0;
  padding: 1.1111111111vw 1.6666666667vw;
  margin: 0 1.6666666667vw 1.6666666667vw;
  font-style: italic;
  line-height: 1.7;
}
.p-about-scene__result p {
  background: rgba(0, 158, 158, 0.07);
  padding: 1.1111111111vw 1.6666666667vw;
  margin: 0 1.6666666667vw 0.5555555556vw 1.6666666667vw;
  font-size: max(13px, 0.9027777778vw);
  line-height: 1.4;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about-scene__result p + p {
  margin-top: 0.5555555556vw;
}
.p-about-scene__result p strong {
  font-size: max(20px, 1.6666666667vw);
  font-weight: 900;
  color: #009e9e;
  line-height: 1.2;
  margin-left: 0.1388888889vw;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .p-about-scene {
    padding: 16vw 0;
  }
  .p-about-scene__inner {
    width: 92%;
  }
  .p-about-scene__lead {
    max-width: 100%;
  }
  .p-about-scene__list {
    gap: 8.5333333333vw;
  }
  .p-about-scene__item {
    padding: 8.5333333333vw 6.4vw;
  }
  .p-about-scene__item::before {
    font-size: 26.6666666667vw;
    top: 0;
    right: 4.2666666667vw;
  }
  .p-about-scene__scene-title {
    font-size: 4.8vw;
    padding-bottom: 6.4vw;
    margin-bottom: 6.4vw;
  }
  .p-about-scene__compare {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .p-about-scene__arrow {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    margin: 0 auto;
  }
  .p-about-scene__arrow::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    border-top: none;
    border-right: 3px solid #009e9e;
    border-bottom: 3px solid #009e9e;
    border-left: none;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/* ==========================================================================
   SECTION 4 — p-about-security（セキュリティ万全のオンプレ型）
   ========================================================================== */
.p-about-security {
  padding: 6.25vw 0;
  background: -webkit-gradient(linear, left top, right top, from(#e9eff6), to(#ecf5f5));
  background: linear-gradient(to right, #e9eff6 0%, #ecf5f5 100%);
}
.p-about-security__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.p-about-security__heading {
  text-align: center;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-about-security__heading {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-security__title {
    font-size: max(26px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-security__title {
    font-size: 6.4vw;
  }
}
.p-about-security__title {
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 769px) {
  .p-about-security__lead {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-security__lead {
    font-size: 3.7333333333vw;
  }
}
.p-about-security__lead {
  line-height: 1.8;
  color: #777;
  max-width: 55.5555555556vw;
  margin: 0 auto;
}
.p-about-security__diagram {
  background: #fff;
  border-radius: 0.9722222222vw;
  padding: 3.3333333333vw;
  margin-bottom: 4.4444444444vw;
  text-align: center;
  border: 2px solid #d8e4ec;
}
.p-about-security__diagram-center {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5555555556vw;
  padding: 2.2222222222vw 4.4444444444vw;
  background: -webkit-gradient(linear, left top, right top, from(#285ca0), to(#489b9d));
  background: linear-gradient(to right, #285ca0 0%, #489b9d 100%);
  color: #fff;
  border-radius: 0.8333333333vw;
}
.p-about-security__diagram-label {
  font-size: max(13px, 0.9027777778vw);
  opacity: 0.85;
  margin: 0;
}
.p-about-security__diagram-core {
  font-size: max(18px, 1.5277777778vw);
  font-weight: 700;
  margin: 0;
}
.p-about-security__diagram-sub {
  font-size: max(13px, 0.9027777778vw);
  opacity: 0.85;
  margin: 0;
  line-height: 1.55;
  text-align: center;
}
.p-about-security__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2222222222vw;
  list-style: none;
}
.p-about-security__feature-item {
  border-radius: 0.9722222222vw;
  padding: 2.2222222222vw 2.7777777778vw;
  background-color: #009e9e;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .p-about-security__feature-name {
    font-size: max(16px, 1.4583333333vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-security__feature-name {
    font-size: 4.5333333333vw;
  }
}
.p-about-security__feature-name {
  font-weight: 700;
  color: #fbed21;
  margin-top: 0;
  margin-bottom: 0.5555555556vw;
}
.p-about-security__feature-desc {
  font-size: max(13px, 0.9722222222vw);
  line-height: 1.75;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-about-security {
    padding: 16vw 0;
  }
  .p-about-security__inner {
    width: 92%;
  }
  .p-about-security__lead {
    max-width: 100%;
  }
  .p-about-security__diagram {
    padding: 6.4vw;
    margin-bottom: 10.6666666667vw;
  }
  .p-about-security__diagram-center {
    width: 100%;
    padding: 6.4vw 8.5333333333vw;
  }
  .p-about-security__features {
    grid-template-columns: 1fr;
    gap: 6.4vw;
  }
  .p-about-security__feature-item {
    border-radius: 3.2vw;
    padding: 6.4vw;
  }
}

/* ==========================================================================
   SECTION 5 — p-about-flow（導入までの流れ）
   ========================================================================== */
.p-about-flow {
  padding: 6.25vw 0;
  background: #fff;
}
.p-about-flow__inner {
  width: 83.3333333333vw;
  margin: 0 auto;
}
.p-about-flow__heading {
  text-align: center;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 768px) {
  .p-about-flow__heading {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-flow__title {
    font-size: max(26px, 2.5vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-flow__title {
    font-size: 6.4vw;
  }
}
.p-about-flow__title {
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.6666666667vw;
}
@media screen and (min-width: 769px) {
  .p-about-flow__lead {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-flow__lead {
    font-size: 3.7333333333vw;
  }
}
.p-about-flow__lead {
  line-height: 1.8;
  color: #777;
  max-width: 55.5555555556vw;
  margin: 0 auto;
}
.p-about-flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin-bottom: 3.3333333333vw;
  border-bottom: 2px solid #dce8f0;
}
.p-about-flow__step {
  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;
  gap: 0.4166666667vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.1111111111vw 0.5555555556vw;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.p-about-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.4166666667vw;
  top: 50%;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  width: 0.625vw;
  height: 0.625vw;
  border-top: 2px solid #b8cfe0;
  border-right: 2px solid #b8cfe0;
  z-index: 1;
  pointer-events: none;
}
.p-about-flow__step:hover {
  background: rgba(0, 94, 164, 0.04);
}
.p-about-flow__step--active {
  border-bottom-color: #005ea4;
  background: rgba(0, 94, 164, 0.05);
}
.p-about-flow__step--active .p-about-flow__step-num {
  background: #005ea4;
  color: #fff;
  border-color: #005ea4;
}
.p-about-flow__step--active .p-about-flow__step-label {
  color: #005ea4;
  font-weight: 700;
}
.p-about-flow__step-num {
  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: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  background: #f0f5fa;
  border: 2px solid #d8e4ec;
  font-size: max(11px, 0.7638888889vw);
  font-weight: 700;
  color: #009e9e;
  letter-spacing: 0.04em;
  line-height: 1;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.p-about-flow__step-label {
  font-size: max(13px, 0.9027777778vw);
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
  text-align: center;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.p-about-flow__details {
  min-height: 19.4444444444vw;
}
.p-about-flow__detail-card {
  display: none;
  grid-template-columns: 30.5555555556vw 1fr;
  gap: 2.2222222222vw;
  background: #f8fafc;
  border-radius: 0.9722222222vw;
  border: 2px solid #d8e4ec;
  overflow: hidden;
}
.p-about-flow__detail-card.is-active {
  display: grid;
}
.p-about-flow__detail-img {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#e9eff6), to(#ecf5f5));
  background: linear-gradient(to right, #e9eff6 0%, #ecf5f5 100%);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 16.6666666667vw;
}
.p-about-flow__detail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-about-flow__detail-body {
  padding: 1.1111111111vw 2.2222222222vw 1.6666666667vw 0;
  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;
}
.p-about-flow__detail-num {
  font-size: max(28px, 2.7777777778vw);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 94, 164, 0.08);
  margin-bottom: 0.2777777778vw;
}
@media screen and (min-width: 769px) {
  .p-about-flow__detail-title {
    font-size: max(17px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-flow__detail-title {
    font-size: 4.8vw;
  }
}
.p-about-flow__detail-title {
  font-weight: 700;
  color: #333333;
  margin-top: 0;
  margin-bottom: 0.2777777778vw;
}
@media screen and (min-width: 769px) {
  .p-about-flow__detail-desc {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-about-flow__detail-desc {
    font-size: 3.7333333333vw;
  }
}
.p-about-flow__detail-desc {
  line-height: 1.8;
  color: #555;
  margin-top: 0;
  margin-bottom: 0.5555555556vw;
}
.p-about-flow__detail-meta {
  display: inline-block;
  font-size: max(13px, 0.9027777778vw);
  font-weight: 700;
  color: #009e9e;
  background: rgba(0, 158, 158, 0.06);
  border: 2px solid rgba(0, 158, 158, 0.35);
  border-radius: 0.2777777778vw;
  padding: 0.2777777778vw 0.8333333333vw;
  margin-bottom: 1.1111111111vw;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-about-flow__detail-link {
  display: inline-block;
  font-size: max(13px, 0.9722222222vw);
  font-weight: 700;
  color: #009e9e;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-about-flow__detail-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-about-flow {
    padding: 16vw 0;
  }
  .p-about-flow__inner {
    width: 92%;
  }
  .p-about-flow__lead {
    max-width: 100%;
  }
  .p-about-flow__steps {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 8.5333333333vw;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(75%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(75%, black), to(transparent));
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
  }
  .p-about-flow__steps::-webkit-scrollbar {
    display: none;
  }
  .p-about-flow__step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 4.2666666667vw 4.2666666667vw;
    gap: 1.0666666667vw;
  }
  .p-about-flow__step:not(:last-child)::after {
    display: none;
  }
  .p-about-flow__step-num {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    font-size: 2.6666666667vw;
  }
  .p-about-flow__step-label {
    font-size: 2.9333333333vw;
  }
  .p-about-flow__details {
    min-height: 0;
  }
  .p-about-flow__detail-card.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about-flow__detail-img {
    aspect-ratio: 3/2;
  }
  .p-about-flow__detail-body {
    padding: 6.4vw;
  }
  .p-about-flow__detail-num {
    font-size: 8.5333333333vw;
  }
  .p-about-flow__detail-title {
    font-size: 4.8vw;
    margin-bottom: 2.1333333333vw;
  }
  .p-about-flow__detail-meta {
    font-size: 3.2vw;
    padding: 1.0666666667vw 2.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}

/**
 * Project - FAQ (よくある質問)
 */
.p-faq {
  padding: 6.9444444444vw 0;
  background-color: #f2f5f7;
}
.p-faq__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    width: 92%;
  }
}
.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3888888889vw;
}

.p-faq-item {
  background-color: #f9f9f9;
  border-radius: 1.0416666667vw;
  border: 2px solid transparent;
  margin-bottom: 1.3888888889vw;
  overflow: hidden;
  -webkit-transition: border-color 0.4s ease, background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: border-color 0.4s ease, background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.p-faq-item.is-open {
  border-color: #005bac;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 91, 172, 0.1);
          box-shadow: 0 10px 30px rgba(0, 91, 172, 0.1);
}
.p-faq-item {
  /* 質問ヘッダー */
}
.p-faq-item__header {
  padding: 2.0833333333vw 2.7777777778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-faq-item__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3888888889vw;
}
.p-faq-item__icon-q {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  background-color: #005bac;
  color: #fff;
  border-radius: 50%;
  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;
  font-weight: 900;
  font-size: 1.3888888889vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .p-faq-item__question {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-faq-item__question {
    font-size: 4.2666666667vw;
  }
}
.p-faq-item__question {
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.p-faq-item__arrow {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border-bottom: 2px solid #005bac;
  border-right: 2px solid #005bac;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-open .p-faq-item__arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .p-faq-item__arrow {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.p-faq-item {
  /* 回答ボディ（アニメーションの肝） */
}
.p-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), -ms-grid-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #fff;
}
.is-open .p-faq-item__body {
  grid-template-rows: 1fr;
}
.p-faq-item__body-inner {
  overflow: hidden;
}
.p-faq-item__content {
  padding: 2.0833333333vw 2.7777777778vw 2.7777777778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.3888888889vw;
  border-top: 1px solid #eee;
}
.p-faq-item__icon-a {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  background-color: #e2e8ed;
  color: #005bac;
  border-radius: 50%;
  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;
  font-weight: 900;
  font-size: 1.3888888889vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .p-faq-item__answer {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-faq-item__answer {
    font-size: 3.7333333333vw;
  }
}
.p-faq-item__answer {
  line-height: 1.8;
  color: #444;
}
@media screen and (max-width: 768px) {
  .p-faq-item {
    border-radius: 2.6666666667vw;
  }
  .p-faq-item__header {
    padding: 5.3333333333vw;
  }
  .p-faq-item__icon-q, .p-faq-item__icon-a {
    width: 8vw;
    height: 8vw;
    font-size: 3.7333333333vw;
  }
  .p-faq-item__content {
    padding: 5.3333333333vw;
  }
}

/**
 * Project - Download (資料ダウンロード)
 */
.p-download {
  padding: 6.9444444444vw 0;
  position: relative;
  overflow: hidden;
}
.p-download__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-download__inner {
    width: 92%;
  }
}
.p-download__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .p-download__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.6666666667vw;
  }
}
.p-download {
  /* --- 左側コンテンツ --- */
}
.p-download__content {
  width: 34.7222222222vw;
}
@media screen and (max-width: 768px) {
  .p-download__content {
    width: 100%;
  }
}
.p-download__visual {
  margin-bottom: 2.7777777778vw;
}
.p-download__visual img {
  width: 100%;
  height: auto;
  border: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .p-download__btn-wrap {
    text-align: center;
  }
}
.p-download__info {
  background-color: #f8f8f8;
  margin-top: 4.1666666667vw;
  padding: 1.3888888889vw 2.0833333333vw;
}
@media screen and (min-width: 769px) {
  .p-download__info {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download__info {
    font-size: 3.7333333333vw;
  }
}
.p-download__btn-wrap {
  text-align: center;
  margin-bottom: 1em;
}
.p-download {
  /* --- 右側フォームカード --- */
}
.p-download__form-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 4.1666666667vw 3.4722222222vw;
  border-radius: 1.3888888889vw;
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .p-download__form-box {
    padding: 8vw 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-download__form-title {
    font-size: max(20px, 1.6666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download__form-title {
    font-size: 5.3333333333vw;
  }
}
.p-download__form-title {
  font-weight: 700;
  margin-bottom: 2.7777777778vw;
}

/* フォーム部品の調整（CF7） */
.p-download-form__item {
  margin-bottom: 1.3888888889vw;
}
.p-download-form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5555555556vw;
}
@media screen and (min-width: 769px) {
  .p-download-form__label {
    font-size: max(14px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download-form__label {
    font-size: 3.7333333333vw;
  }
}
.p-download-form__label span {
  color: #e95451;
  margin-left: 5px;
  font-size: 0.8em;
}
.p-download-form input[type=text],
.p-download-form input[type=email],
.p-download-form input[type=tel],
.p-download-form select,
.p-download-form textarea {
  width: 100%;
  padding: 0.8333333333vw;
  border: 1px solid #ccc;
  border-radius: 0.2777777778vw;
  background-color: #fff;
}
.p-download-form input[type=text]:focus,
.p-download-form input[type=email]:focus,
.p-download-form input[type=tel]:focus,
.p-download-form select:focus,
.p-download-form textarea:focus {
  border-color: #00a09d;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 160, 157, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 160, 157, 0.1);
}
.p-download-form {
  /* ラジオボタン全体のレイアウト */
}
.p-download-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.0416666667vw 2.0833333333vw;
  padding: 0.6944444444vw 0;
}
@media screen and (min-width: 769px) {
  .p-download-form .wpcf7-radio {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download-form .wpcf7-radio {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-download-form .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2vw;
  }
}
.p-download-form__submit {
  margin-top: 2.7777777778vw;
  text-align: center;
}
.p-download-form__submit input[type=submit] {
  background: -webkit-gradient(linear, left top, right top, from(#94b471), to(#7da255));
  background: linear-gradient(90deg, #94b471 0%, #7da255 100%);
  color: #fff;
  font-weight: 700;
  padding: 1.0416666667vw 4.1666666667vw;
  border-radius: 3.4722222222vw;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .p-download-form__submit input[type=submit] {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download-form__submit input[type=submit] {
    font-size: 4.2666666667vw;
  }
}
.p-download-form__submit input[type=submit] {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-download-form__submit input[type=submit]:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  .p-download-form__consent-text {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-download-form__consent-text {
    font-size: 3.7333333333vw;
  }
}
.p-download-form__consent-text {
  color: #333;
  margin-bottom: 2.7777777778vw;
}
.p-download-form__consent-text a {
  color: #005ea4;
  text-decoration: underline;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-download-form__consent-text a:hover {
  opacity: 0.7;
}

/* 同意テキスト部分 */
/* ==========================================================================

   ========================================================================== */
.c-dwimage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
.c-dwimage-list__item {
  border: 1px solid #aaa;
}

/**
 * Project - Case Studies (導入事例一覧)
 */
.p-case-archive {
  padding: 6.9444444444vw 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-case-archive {
    padding: 16vw 0;
  }
}
.p-case-archive__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-case-archive__inner {
    width: 92%;
  }
}
.p-case-archive {
  /* グリッドレイアウト：PC3列 / SP1列 */
}
.p-case-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.0833333333vw;
     -moz-column-gap: 2.0833333333vw;
          column-gap: 2.0833333333vw;
  row-gap: 4.1666666667vw;
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .p-case-archive__list {
    grid-template-columns: 1fr;
    row-gap: 10.6666666667vw;
    margin-bottom: 16vw;
  }
}

/* 導入事例カード */
.p-case-card__link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.p-case-card__link:hover .p-case-card__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-case-card__link:hover .p-case-card__title span {
  color: #0068b7;
}
.p-case-card {
  /* 画像エリア：アスペクト比を固定（画像14.27.21参照） */
}
.p-case-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.3888888889vw;
  border-radius: 0.2777777778vw;
}
.p-case-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-case-card__body {
  padding: 0 0.3472222222vw;
}
.p-case-card {
  /* タイトルと矢印の並び（画像14.43.49再現） */
}
.p-case-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6944444444vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (min-width: 769px) {
  .p-case-card__title span {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-card__title span {
    font-size: 4.2666666667vw;
  }
}
.p-case-card__title span {
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-case-card {
  /* デザイン画像の青い矢印アイコン */
  /* 施設名 */
}
@media screen and (min-width: 769px) {
  .p-case-card__facility {
    font-size: max(13px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-card__facility {
    font-size: 3.4666666667vw;
  }
}
.p-case-card__facility {
  color: #666;
  margin-bottom: 1.0416666667vw;
  font-weight: 500;
}
.p-case-card {
  /* カテゴリバッジ（管理画面で設定した色をインラインで適用） */
}
.p-case-card__cat-badge {
  display: inline-block;
  font-size: max(12px, 0.8333333333vw);
  font-weight: 700;
  line-height: 1;
  padding: 0.2777777778vw 0.6944444444vw;
  border-radius: 1.3888888889vw;
  text-decoration: none;
  margin-bottom: 0.5555555556vw;
  background-color: #e8edf2;
  color: #3a4a5c;
}
.p-case-card {
  /* タグエリア：青バッジデザイン */
}
.p-case-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5555555556vw;
  list-style: none;
  padding: 0;
}
.p-case-card__tag-item {
  border: 2px solid #0068b7;
  color: #0068b7;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .p-case-card__tag-item {
    font-size: max(12px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-card__tag-item {
    font-size: 3.2vw;
  }
}
.p-case-card__tag-item {
  padding: 0.2777777778vw 0.8333333333vw;
  border-radius: 1.3888888889vw;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

/* ページネーション */
.p-case-archive__pagination {
  text-align: center;
  margin-top: 4.1666666667vw;
}
.p-case-archive__pagination .nav-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4166666667vw;
}
.p-case-archive__pagination .page-numbers {
  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: 3.0555555556vw;
  height: 3.0555555556vw;
  border: 1px solid #d5d5d5;
  background: #fff;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .p-case-archive__pagination .page-numbers {
    font-size: max(13px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-archive__pagination .page-numbers {
    font-size: 3.7333333333vw;
  }
}
.p-case-archive__pagination .page-numbers {
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.p-case-archive__pagination .page-numbers.current {
  background: #404040;
  color: #fff;
  border-color: #404040;
}
.p-case-archive__pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}
.p-case-archive__pagination .page-numbers.prev, .p-case-archive__pagination .page-numbers.next {
  font-size: 0;
  position: relative;
}
.p-case-archive__pagination .page-numbers.prev::after, .p-case-archive__pagination .page-numbers.next::after {
  content: "";
  display: block;
  width: 0.5555555556vw;
  height: 0.5555555556vw;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
}
.p-case-archive__pagination .page-numbers.prev::after {
  -webkit-transform: rotate(-135deg) translate(1px, -1px);
          transform: rotate(-135deg) translate(1px, -1px);
}
.p-case-archive__pagination .page-numbers.next::after {
  -webkit-transform: rotate(45deg) translate(-1px, 1px);
          transform: rotate(45deg) translate(-1px, 1px);
}
@media screen and (max-width: 768px) {
  .p-case-archive__pagination {
    margin-top: 10.6666666667vw;
  }
  .p-case-archive__pagination .page-numbers {
    width: 10.1333333333vw;
    height: 10.1333333333vw;
  }
}

/* スマホ用の微調整 */
@media screen and (max-width: 768px) {
  .p-case-card__img {
    margin-bottom: 4vw;
  }
  .p-case-card__title {
    margin-bottom: 2.6666666667vw;
  }
  .p-case-card__facility {
    margin-bottom: 2.6666666667vw;
  }
  .p-case-card__tag-item {
    padding: 0.8vw 2.6666666667vw;
  }
  .p-case-archive__pagination .pagination .page-numbers {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
/* 導入事例詳細ページ */
.p-case-detail {
  padding: 6.9444444444vw 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .p-case-detail {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-case-detail {
  /* コンテンツ幅の制限（ヘッダー以外） */
}
.p-case-detail__container {
  width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-case-detail__container {
    width: 96%;
  }
}
.p-case-detail {
  /* =========================================
     1. ヘッダーエリア（アイキャッチ左、施設紹介右）
     ========================================= */
}
.p-case-detail__header {
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .p-case-detail__header {
    margin-bottom: 16vw;
  }
}
.p-case-detail__header-inner {
  width: 76.3888888889vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.1666666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-case-detail__header-inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8vw;
  }
}
.p-case-detail__header-visual {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-case-detail__header-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case-detail__header-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-case-detail__header-body {
    font-size: max(15px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail__header-body {
    font-size: 4vw;
  }
}
.p-case-detail__header-body {
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .p-case-detail__title {
    font-size: max(21px, 1.9444444444vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail__title {
    font-size: 5.6vw;
  }
}
.p-case-detail__title {
  font-weight: 700;
  margin-bottom: 2.0833333333vw;
  line-height: 1.4;
  color: #005ea4;
}
.p-case-detail {
  /* 施設紹介リスト */
}
.p-case-detail .p-case-profile {
  border-top: 2px solid #005ea4;
  padding-top: 3.4722222222vw;
}
.p-case-detail .p-case-profile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-profile__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.p-case-detail .p-case-profile__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-profile__figure {
    width: 35%;
  }
}
.p-case-detail .p-case-profile__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case-detail .p-case-profile__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-case-detail .p-case-profile__list {
  margin-bottom: 20px;
}
.p-case-detail .p-case-profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  margin-top: 0.6944444444vw;
  padding-bottom: 0.6944444444vw;
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-profile__item {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-profile__item {
    font-size: 3.7333333333vw;
  }
}
.p-case-detail .p-case-profile__item dt {
  width: 8.3333333333vw;
  font-weight: 500;
  color: #333333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-profile__item dt {
    width: 21.3333333333vw;
  }
}
.p-case-detail .p-case-profile__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #666;
}
.p-case-detail {
  /* =========================================
     2. 記事コンテンツ部 (SCF 繰り返しフィールド)
     ========================================= */
}
.p-case-detail .p-case-section {
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section {
    margin-bottom: 16vw;
  }
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-section__large-title {
    font-size: max(21px, 1.9444444444vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section__large-title {
    font-size: 5.6vw;
  }
}
.p-case-detail .p-case-section__large-title {
  font-weight: 700;
  color: #005ea4;
  margin-bottom: 3.4722222222vw;
  padding-bottom: 0.6944444444vw;
  border-bottom: 3px solid #005ea4;
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-section__title {
    font-size: max(18px, 1.4583333333vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section__title {
    font-size: 4.8vw;
  }
}
.p-case-detail .p-case-section__title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}
.p-case-detail .p-case-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section__body {
    gap: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-section__img img {
    width: 80%;
  }
}
.p-case-detail .p-case-section__img img {
  height: auto;
  border-radius: 0.3472222222vw;
  margin: auto;
}
.p-case-detail .p-case-section__caption {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-section__caption {
    font-size: max(13px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section__caption {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-case-detail .p-case-section__text {
    font-size: max(15px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section__text {
    font-size: 4vw;
  }
}
.p-case-detail .p-case-section__text {
  line-height: 2;
  color: #333;
}
.p-case-detail .p-case-section__text ul {
  list-style-type: circle;
  margin: 0 0 0 1.5em;
}
.p-case-detail .p-case-section {
  /* --- レイアウト切り替え --- */
}
.p-case-detail .p-case-section.is-left .p-case-section__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section.is-left .p-case-section__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-case-detail .p-case-section.is-left .p-case-section__img {
  width: 27.7777777778vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-case-detail .p-case-section.is-left .p-case-section__img {
    width: 100%;
  }
}
.p-case-detail .p-case-section.is-bottom .p-case-section__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-case-detail .p-case-section.is-bottom .p-case-section__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.p-case-detail .p-case-section.is-bottom .p-case-section__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-case-detail {
  /* =========================================
     3. 下部ナビゲーション（ボタン）
     ========================================= */
}
.p-case-detail__footer {
  margin-top: 6.9444444444vw;
  text-align: center;
}
.p-case-detail__footer .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20.8333333333vw;
  padding: 1.0416666667vw 2.7777777778vw;
  background-color: #0068b7;
  color: #fff;
  text-decoration: none;
  border-radius: 3.4722222222vw;
  font-weight: 700;
  -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;
}
.p-case-detail__footer .c-button:hover {
  background-color: #004a82;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .p-case-detail__footer .c-button {
    min-width: 64vw;
    padding: 3.2vw 8vw;
  }
}

/* ==========================================================================
   Component: SNS List 
   ========================================================================== */
.c-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 20px;
}
.c-sns-list__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-sns-list__link:hover {
  opacity: 0.7;
}
.c-sns-list__link img {
  width: 45px;
  height: auto;
  display: block;
}

/**
 * Project - Thanks Page (送信完了ページ)
 */
.p-thanks {
  padding: 6.9444444444vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks {
    padding: 16vw 0;
  }
}
.p-thanks__inner {
  width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-thanks__inner {
    width: 90%;
  }
}
.p-thanks {
  /* 完了メッセージエリア */
}
.p-thanks__content {
  background-color: #f2f5f7;
  padding: 4.1666666667vw 2.7777777778vw;
  border-radius: 1.3888888889vw;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .p-thanks__content {
    padding: 10.6666666667vw 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.p-thanks {
  /* チェックマークアイコン（CSSで作成） */
}
.p-thanks__icon {
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  background-color: #8db369;
  border-radius: 50%;
  margin: 0 auto 2.0833333333vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-thanks__icon::after {
  content: "";
  width: 2.4305555556vw;
  height: 1.25vw;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -0.3472222222vw;
}
@media screen and (max-width: 768px) {
  .p-thanks__icon {
    width: 16vw;
    height: 16vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-thanks__icon::after {
    width: 6.6666666667vw;
    height: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__title {
    font-size: max(24px, 2.2222222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__title {
    font-size: 5.8666666667vw;
  }
}
.p-thanks__title {
  font-weight: 700;
  color: #333;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .p-thanks__title {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__text {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__text {
    font-size: 4vw;
  }
}
.p-thanks__text {
  line-height: 2;
  color: #444;
}
.p-thanks__text span {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-thanks__text span {
    display: inline;
  }
}
.p-thanks {
  /* ホームへ戻るボタン */
}
.p-thanks__btn {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .p-thanks__btn {
    margin-top: 10.6666666667vw;
  }
}
.p-thanks__btn .c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0068b7;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  width: 22.2222222222vw;
  height: 4.8611111111vw;
  border-radius: 2.4305555556vw;
}
@media screen and (min-width: 769px) {
  .p-thanks__btn .c-button {
    font-size: max(18px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__btn .c-button {
    font-size: 4.2666666667vw;
  }
}
.p-thanks__btn .c-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-thanks__btn .c-button::before {
  content: "←";
  margin-right: 10px;
  font-size: 1.2em;
}
.p-thanks__btn .c-button:hover {
  background-color: #004a82;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-thanks__btn .c-button {
    width: 100%;
    max-width: 74.6666666667vw;
    height: 14.9333333333vw;
  }
}

.p-privacy {
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 768px) {
  .p-privacy {
    padding: 16vw 0;
  }
}
.p-privacy__inner {
  width: 62.5vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner {
    width: 90%;
  }
}
.p-privacy__section {
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .p-privacy__section {
    margin-bottom: 10.6666666667vw;
  }
}
.p-privacy__section:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .p-privacy__heading {
    font-size: max(18px, 1.5277777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-privacy__heading {
    font-size: 4.8vw;
  }
}
.p-privacy__heading {
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #0068b7;
  padding-bottom: 1.0416666667vw;
  margin-bottom: 1.7361111111vw;
}
@media screen and (max-width: 768px) {
  .p-privacy__heading {
    padding-bottom: 2.6666666667vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-privacy__body p {
    font-size: max(15px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-privacy__body p {
    font-size: 4vw;
  }
}
.p-privacy__body p {
  line-height: 2;
  margin-bottom: 1.3888888889vw;
  color: #444;
}
.p-privacy__body p:last-child {
  margin-bottom: 0;
}
.p-privacy__list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 1.3888888889vw 0;
}
@media screen and (min-width: 769px) {
  .p-privacy__list li {
    font-size: max(15px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-privacy__list li {
    font-size: 4vw;
  }
}
.p-privacy__list li {
  line-height: 1.8;
  margin-bottom: 1.0416666667vw;
  color: #444;
}
.p-privacy__list li:last-child {
  margin-bottom: 0;
}

.p-news {
  padding: 5.5555555556vw 0 8.3333333333vw;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding: 13.3333333333vw 0 21.3333333333vw;
  }
}
.p-news__inner {
  width: 76.3888888889vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    width: 92%;
  }
}
.p-news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 4.1666666667vw;
  overflow-x: auto;
  scrollbar-width: none;
}
.p-news__tabs::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-news__tabs {
    margin-bottom: 10.6666666667vw;
  }
}
.p-news__tab {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 1.1111111111vw 1.9444444444vw;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .p-news__tab {
    font-size: max(13px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news__tab {
    font-size: 3.7333333333vw;
  }
}
.p-news__tab {
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
@media screen and (max-width: 768px) {
  .p-news__tab {
    padding: 3.2vw 4.2666666667vw;
  }
}
.p-news__tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #005ea4;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-news__tab.is-active {
  color: #333333;
}
.p-news__tab.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-news__tab:hover:not(.is-active) {
  color: #374151;
}
.p-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.2222222222vw;
     -moz-column-gap: 2.2222222222vw;
          column-gap: 2.2222222222vw;
  row-gap: 3.8888888889vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-news__grid {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.6666666667vw;
       -moz-column-gap: 1.6666666667vw;
            column-gap: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-news__grid {
    grid-template-columns: 1fr;
    row-gap: 10.6666666667vw;
  }
}
.p-news__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 5.5555555556vw 0;
}
@media screen and (min-width: 769px) {
  .p-news__empty {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news__empty {
    font-size: 3.7333333333vw;
  }
}
.p-news__empty {
  color: #9ca3af;
}

.p-news-card[hidden] {
  display: none;
}
.p-news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-news-card__link:hover .p-news-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-news-card__link:hover .p-news-card__title {
  color: #005ea4;
}
.p-news-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 1.1111111111vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 768px) {
  .p-news-card__thumb {
    border-radius: 4px;
    margin-bottom: 3.2vw;
  }
}
.p-news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8333333333vw;
  margin-bottom: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  .p-news-card__meta {
    gap: 2.6666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.p-news-card__cat {
  display: inline-block;
  padding: 0.2777777778vw 0.6944444444vw;
  border-radius: 0.2777777778vw;
}
@media screen and (min-width: 769px) {
  .p-news-card__cat {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-card__cat {
    font-size: 3.2vw;
  }
}
.p-news-card__cat {
  font-weight: 600;
  line-height: 1.2;
  background: var(--badge-bg, #e5e7eb);
  color: var(--badge-color, #374151);
}
@media screen and (max-width: 768px) {
  .p-news-card__cat {
    padding: 0.8vw 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-card__date {
    font-size: max(13px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-card__date {
    font-size: 3.4666666667vw;
  }
}
.p-news-card__date {
  color: #9ca3af;
}
@media screen and (min-width: 769px) {
  .p-news-card__title {
    font-size: max(15px, 1.1805555556vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-card__title {
    font-size: 4vw;
  }
}
.p-news-card__title {
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0.5555555556vw;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
@media screen and (max-width: 768px) {
  .p-news-card__title {
    margin-bottom: 1.6vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .p-news-card__title {
    font-size: max(14px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-news-card__title {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-card__excerpt {
    font-size: max(13px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-card__excerpt {
    font-size: 3.4666666667vw;
  }
}
.p-news-card__excerpt {
  color: #6b7280;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news-single {
  padding: 5.5555555556vw 0 8.3333333333vw;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-news-single {
    padding: 10.6666666667vw 0 21.3333333333vw;
  }
}
.p-news-single__inner {
  width: 55.5555555556vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p-news-single__inner {
    width: 86%;
  }
}
@media screen and (max-width: 768px) {
  .p-news-single__inner {
    width: 92%;
  }
}
.p-news-single__breadcrumb {
  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;
  gap: 0.4166666667vw;
}
@media screen and (min-width: 769px) {
  .p-news-single__breadcrumb {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-single__breadcrumb {
    font-size: 3.2vw;
  }
}
.p-news-single__breadcrumb {
  color: #9ca3af;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .p-news-single__breadcrumb {
    margin-bottom: 6.4vw;
    gap: 1.3333333333vw;
  }
}
.p-news-single__breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.p-news-single__breadcrumb a:hover {
  color: #005ea4;
}
.p-news-single__breadcrumb span[aria-hidden] {
  color: #d1d5db;
}

.p-news-article__header {
  margin-bottom: 3.8888888889vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__header {
    margin-bottom: 10.6666666667vw;
  }
}
.p-news-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8333333333vw;
  margin-bottom: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__meta {
    gap: 2.6666666667vw;
    margin-bottom: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-article__title {
    font-size: max(22px, 2.0833333333vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__title {
    font-size: 5.8666666667vw;
  }
}
.p-news-article__title {
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__title {
    margin-bottom: 6.4vw;
  }
}
.p-news-article__eyecatch {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.4166666667vw;
}
.p-news-article__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-news-article__eyecatch {
    border-radius: 4px;
  }
}
.p-news-article__footer {
  margin-top: 5.5555555556vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-news-article__footer {
    margin-top: 14.9333333333vw;
  }
}
.p-news-article__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5555555556vw;
  padding: 0.9722222222vw 2.7777777778vw;
  border: 2px solid #005ea4;
  color: #005ea4;
}
@media screen and (min-width: 769px) {
  .p-news-article__back {
    font-size: max(13px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__back {
    font-size: 3.7333333333vw;
  }
}
.p-news-article__back {
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.2777777778vw;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
@media screen and (max-width: 768px) {
  .p-news-article__back {
    padding: 3.2vw 8.5333333333vw;
  }
}
.p-news-article__back::before {
  content: "←";
}
.p-news-article__back:hover {
  background: #005ea4;
  color: #fff;
}

.p-news-related {
  margin-top: 5vw;
  padding-top: 3.8888888889vw;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  .p-news-related {
    margin-top: 12.8vw;
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-related__title {
    font-size: max(17px, 1.3888888889vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-related__title {
    font-size: 4.8vw;
  }
}
.p-news-related__title {
  font-weight: 700;
  color: #333333;
  padding-left: 0.9722222222vw;
  border-left: 4px solid #005ea4;
  margin-bottom: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .p-news-related__title {
    padding-left: 3.2vw;
    margin-bottom: 6.4vw;
  }
}

.p-news-share {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8333333333vw;
  margin-top: 4.4444444444vw;
  padding-top: 3.3333333333vw;
  border-top: 1px solid #e5e7eb;
}
@media screen and (max-width: 768px) {
  .p-news-share {
    gap: 2.6666666667vw;
    margin-top: 12.8vw;
    padding-top: 8.5333333333vw;
  }
}
.p-news-share__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5555555556vw;
  padding: 0.6944444444vw 1.6666666667vw;
  border: 1px solid #d1d5db;
  border-radius: 0.2777777778vw;
}
@media screen and (min-width: 769px) {
  .p-news-share__btn {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-share__btn {
    font-size: 3.2vw;
  }
}
.p-news-share__btn {
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
@media screen and (max-width: 768px) {
  .p-news-share__btn {
    padding: 2.4vw 4.8vw;
  }
}
.p-news-share__btn img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news-share__btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.p-news-share__toast {
  position: absolute;
  bottom: calc(100% + 0.5555555556vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
@media screen and (min-width: 769px) {
  .p-news-share__toast {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-share__toast {
    font-size: 3.2vw;
  }
}
.p-news-share__toast {
  padding: 0.4166666667vw 1.1111111111vw;
  border-radius: 0.2777777778vw;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-news-share__toast.is-show {
  opacity: 1;
}

.p-news-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1111111111vw;
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .p-news-nav {
    grid-template-columns: 1fr;
    gap: 3.2vw;
    margin-top: 6.4vw;
  }
}
.p-news-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5555555556vw;
  padding: 1.3888888889vw 1.6666666667vw;
  border: 1px solid #e5e7eb;
  border-radius: 0.2777777778vw;
  text-decoration: none;
  color: inherit;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
@media screen and (max-width: 768px) {
  .p-news-nav__item {
    padding: 4.2666666667vw 4.8vw;
    gap: 1.6vw;
  }
}
.p-news-nav__item--next {
  text-align: right;
}
.p-news-nav__item.is-empty {
  pointer-events: none;
  border-color: transparent;
}
.p-news-nav__item:not(.is-empty):hover {
  border-color: #005ea4;
  background: #f0f6ff;
}
@media screen and (min-width: 769px) {
  .p-news-nav__label {
    font-size: max(11px, 0.8333333333vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-nav__label {
    font-size: 3.2vw;
  }
}
.p-news-nav__label {
  color: #9ca3af;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .p-news-nav__title {
    font-size: max(13px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-nav__title {
    font-size: 3.7333333333vw;
  }
}
.p-news-nav__title {
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news-article__content > * + * {
  margin-top: 1.9444444444vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content > * + * {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-article__content p {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content p {
    font-size: 4vw;
  }
}
.p-news-article__content p {
  line-height: 1.85;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-news-article__content h2 {
    font-size: max(18px, 1.5277777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content h2 {
    font-size: 5.0666666667vw;
  }
}
.p-news-article__content h2 {
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  padding-left: 0.8333333333vw;
  border-left: 5px solid #333333;
  margin-top: 3.8888888889vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content h2 {
    padding-left: 2.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-article__content h3 {
    font-size: max(16px, 1.25vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content h3 {
    font-size: 4.5333333333vw;
  }
}
.p-news-article__content h3 {
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  padding-bottom: 0.6944444444vw;
  border-bottom: 2px solid #e5e7eb;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content h3 {
    padding-bottom: 2.1333333333vw;
    margin-top: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-article__content ul, .p-news-article__content ol {
    font-size: max(14px, 1.1111111111vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content ul, .p-news-article__content ol {
    font-size: 4vw;
  }
}
.p-news-article__content ul, .p-news-article__content ol {
  line-height: 1.8;
  color: #333333;
  padding-left: 1.6666666667vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content ul, .p-news-article__content ol {
    padding-left: 5.3333333333vw;
  }
}
.p-news-article__content ul {
  list-style: disc;
}
.p-news-article__content ul li::marker {
  color: #005ea4;
}
.p-news-article__content ol {
  list-style: decimal;
}
.p-news-article__content li + li {
  margin-top: 0.4166666667vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content li + li {
    margin-top: 1.3333333333vw;
  }
}
.p-news-article__content blockquote,
.p-news-article__content .wp-block-quote {
  position: relative;
  padding: 1.3888888889vw 1.6666666667vw;
  background: #f8fafc;
  border-left: 4px solid #009e9e;
  border-radius: 0 0.2777777778vw 0.2777777778vw 0;
}
@media screen and (max-width: 768px) {
  .p-news-article__content blockquote,
  .p-news-article__content .wp-block-quote {
    padding: 4.2666666667vw 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-news-article__content blockquote p,
  .p-news-article__content .wp-block-quote p {
    font-size: max(13px, 1.0416666667vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content blockquote p,
  .p-news-article__content .wp-block-quote p {
    font-size: 3.7333333333vw;
  }
}
.p-news-article__content blockquote p,
.p-news-article__content .wp-block-quote p {
  font-style: italic;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}
.p-news-article__content blockquote cite,
.p-news-article__content .wp-block-quote cite {
  display: block;
}
@media screen and (min-width: 769px) {
  .p-news-article__content blockquote cite,
  .p-news-article__content .wp-block-quote cite {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content blockquote cite,
  .p-news-article__content .wp-block-quote cite {
    font-size: 3.2vw;
  }
}
.p-news-article__content blockquote cite,
.p-news-article__content .wp-block-quote cite {
  color: #9ca3af;
  margin-top: 0.6944444444vw;
  font-style: normal;
}
.p-news-article__content blockquote cite::before,
.p-news-article__content .wp-block-quote cite::before {
  content: "— ";
}
.p-news-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.2777777778vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content img {
    border-radius: 3px;
  }
}
.p-news-article__content figure,
.p-news-article__content .wp-block-image {
  margin: 0;
}
@media screen and (min-width: 769px) {
  .p-news-article__content figure figcaption,
  .p-news-article__content figure .wp-element-caption,
  .p-news-article__content .wp-block-image figcaption,
  .p-news-article__content .wp-block-image .wp-element-caption {
    font-size: max(12px, 0.9027777778vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content figure figcaption,
  .p-news-article__content figure .wp-element-caption,
  .p-news-article__content .wp-block-image figcaption,
  .p-news-article__content .wp-block-image .wp-element-caption {
    font-size: 3.2vw;
  }
}
.p-news-article__content figure figcaption,
.p-news-article__content figure .wp-element-caption,
.p-news-article__content .wp-block-image figcaption,
.p-news-article__content .wp-block-image .wp-element-caption {
  color: #9ca3af;
  text-align: center;
  margin-top: 0.5555555556vw;
}
@media screen and (max-width: 768px) {
  .p-news-article__content figure figcaption,
  .p-news-article__content figure .wp-element-caption,
  .p-news-article__content .wp-block-image figcaption,
  .p-news-article__content .wp-block-image .wp-element-caption {
    margin-top: 1.6vw;
  }
}
.p-news-article__content hr,
.p-news-article__content .wp-block-separator {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 3.3333333333vw 0;
}
@media screen and (max-width: 768px) {
  .p-news-article__content hr,
  .p-news-article__content .wp-block-separator {
    margin: 8.5333333333vw 0;
  }
}
.p-news-article__content table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) {
  .p-news-article__content table {
    font-size: max(13px, 0.9722222222vw);
  }
}
@media screen and (max-width: 768px) {
  .p-news-article__content table {
    font-size: 3.4666666667vw;
  }
}
.p-news-article__content table th, .p-news-article__content table td {
  padding: 0.8333333333vw 1.1111111111vw;
  border: 1px solid #e5e7eb;
  line-height: 1.6;
}
.p-news-article__content table th {
  background: #e9eff6;
  font-weight: 700;
  color: #333333;
}
.p-news-article__content table td {
  color: #4b5563;
}/*# sourceMappingURL=style.css.map */