@charset "UTF-8";

:root {
  /* color */
  --color-black: #333;
  --color-white: #fff;
  --color-gray-1: #f5f5f5;
  --color-gray-2: #efefef;
  --color-gray-3: #d9d9d9;
  --color-gray-4: #737373;
  --color-main: #104cbc; /* 色変更時は#を抜いた文字列で一括置換してください */
  --color-sub-1: #eff8ff;
  --color-sub-2: #c7e3ff; /* 色変更時は#を抜いた文字列で一括置換してください */
  --color-accent: #004ea2; /* 色変更時は#を抜いた文字列で一括置換してください */
  --color-accent-bg: #004ea21a;

  --color-black-transparent: #33333399;
  --color-main-transparent: #104cbc99;

  /* shadow */
  --shadow: 0px 3px 6px 0px rgba(51, 51, 51, 0.1);
  --shadow-color: 0px 3px 6px 0px rgba(16, 76, 188, 0.1);

  /* 角丸 */
  --radius-S: 6px;
  --radius-M: 8px;
  --radius-L: 12px;
  --radius-round: 80px;

  /* fontsize */
  --fs-07: 0.4375rem;
  --fs-08: 0.5rem;
  --fs-10: 0.625rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-34: 2.125rem;
  --fs-36: 2.25rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  --fs-60: 3.75rem;

  /* fontweight */
  --fw-R: 400;
  --fw-M: 500;
  --fw-SB: 600;
  --fw-B: 700;
  --fw-BK: 900;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where(h2, h3, h4) {
  font-weight: var(--fw-B);
  text-align: center;
  line-height: 1.2;
  line-height: 1.4;
}
:where(h1) {
  line-height: 1;
}
:where(h2) {
  font-size: var(--fs-28);
  margin-bottom: 32px;
}
:where(h3) {
  font-size: var(--fs-24);
}
:where(h4) {
  font-size: var(--fs-20);
}
:where(a) {
  color: var(--color-black);
  text-decoration: none;
}
:where(a:hover, button:hover, a:active, button:active) {
  opacity: 0.7;
  transition: 0.2s;
}
:where(ol li, ul li) {
  list-style: none;
}
:where(sup) {
  font-size: 0.6em;
}
:where(button) {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}
:where(summary) {
  display: block;
  list-style-type: none;
}
:where(summary::-webkit-details-marker) {
  display: none;
}
html {
  scroll-padding-top: 60px;
}
body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-family:
    "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
  font-feature-settings: "palt";
  font-kerning: normal;
  font-size: var(--fs-16);
  line-height: 1.6;
}

/* 共通パーツ ************************************************ */
.pc-only {
  display: none;
}
.l-section {
  padding: 40px 16px 60px;
}
.l-wrap {
  margin: 0 auto;
  max-width: 1000px;
}
.l-grid {
  width: 100%;
}
.l-card {
  border-radius: var(--radius-L);
  padding: 20px;
}
/* リスト */
.c-list_note li {
  font-size: var(--fs-12);
}
.c-list_note li,
.c-list_disc li {
  margin-top: 4px;
  margin-left: 1em;
}
.c-list_note li::before,
.c-list_disc li::before {
  flex-shrink: 0;
  display: block;
  margin-left: -1em;
  position: absolute;
  width: 1em;
  height: 1em;
}
ol.c-list_note li span {
  margin-right: 4px;
}
ul.c-list_note > li::before {
  content: "※";
}
.c-list_disc > li::before {
  content: "・";
}
/* リンク */
.c-link_line {
  text-decoration: underline;
}
.c-link_pdf {
  position: relative;
}
.c-link_pdf::after {
  content: "";
  background: url(../img/icon/icon_pdf.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: -1.3em;
  bottom: 0.1em;
  width: 1em;
  height: 1em;
}
/* テキスト強調 */
.c-text_line {
  position: relative;
  z-index: 0;
}
.c-text_line::after {
  content: "";
  background-color: var(--color-sub-2);
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.c-text_em-1,
.c-text_em-2 {
  display: inline-block;
  position: relative;
}
.c-text_em-1::before,
.c-text_em-1::after,
.c-text_em-2::before,
.c-text_em-2::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16"><g><path fill="%23FC6501" d="M11,16c-.5,0-.9-.3-1-.8L7.6,1.2c0-.5.3-1.1.8-1.2.6,0,1.1.3,1.2.8l2.4,14c0,.5-.3,1.1-.8,1.2,0,0-.1,0-.2,0Z M5.5,16c-.3,0-.7-.2-.8-.5L.2,8.5c-.3-.5-.2-1.1.3-1.4.5-.3,1.1-.2,1.4.3l4.5,7c.3.5.2,1.1-.3,1.4-.2.1-.4.2-.5.2Z" /></g></svg>');
  display: block;
  position: absolute;
  bottom: 20%;
  width: 1em;
  height: 1em;
}
.c-text_em-1::before {
  left: -1.2em;
}
.c-text_em-1::after {
  right: -1.2em;
  transform: scale(-1, 1);
}
.c-text_em-2::before,
.c-text_em-2::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 14"><g><path fill="%23FC6501" d="M2.5,14c-.3,0-.7-.2-.9-.5-.3-.5-.1-1.1.4-1.4l3.5-2c.5-.3,1.1-.1,1.4.4s.1,1.1-.4,1.4l-3.5,2c-.2,0-.3.1-.5.1ZM5.2,8H1c-.6,0-1-.4-1-1s.4-1,1-1h4.2c.6,0,1,.4,1,1s-.4,1-1,1ZM6,4c-.2,0-.3,0-.5-.1L2,1.9c-.5-.3-.6-.9-.4-1.4C1.9,0,2.5-.1,3,.1l3.5,2c.5.3.6.9.4,1.4-.2.3-.5.5-.9.5Z" /></g></svg>');
}
.c-text_em-2::before {
  left: -1.2em;
}
.c-text_em-2::after {
  right: -1.2em;
  transform: scale(-1, 1);
}
.c-text_disc {
  background-image: radial-gradient(circle at center, var(--color-accent) 25%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.2em;
}
p:has(.c-text_disc) {
  font-feature-settings: normal;
}
.c-text_color {
  color: var(--color-main);
}
/* 吹き出し */
.c-speech-l,
.c-speech-r,
.c-speech-b {
  position: relative;
  display: inline-block;
  padding: 8px;
  border-radius: var(--radius-M);
  background-color: var(--color-gray-3);
}
.c-speech-l::after,
.c-speech-r::after,
.c-speech-b::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  border-color: transparent var(--color-gray-3) transparent transparent;
}
.c-speech-l {
  margin-left: 10px;
}
.c-speech-l::after {
  translate: -100% -50%;
  top: 50%;
  left: 0;
}
.c-speech-r {
  margin-right: 10px;
}
.c-speech-r::after {
  transform: scale(-1, 1);
  translate: 100% -50%;
  top: 50%;
  right: 0;
}
.c-speech-b {
  margin-bottom: 12px;
}
.c-speech-b::after {
  bottom: 4px;
  left: 50%;
  translate: -50% 100%;
  rotate: -90deg;
}

/* contact ************************************************ */
.c-contact {
  background-color: var(--color-accent-bg);
  padding: 24px 0;
  width: 100%;
}
.c-contact_button {
  background-color: var(--color-accent);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-20);
  font-weight: var(--fw-B);
  margin: 0 auto;
  width: 240px;
  height: 60px;
}
/* 追従ボタン */
.c-contact-follow {
  box-shadow: 0 -3px 6px 0px rgba(51, 51, 51, 0.1);
  border-top-left-radius: var(--radius-L);
  border-top-right-radius: var(--radius-L);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 54px;
}
.c-contact-follow-l {
  background-color: var(--color-accent);
  border-top-left-radius: var(--radius-L);
  color: var(--color-white);
  font-size: var(--fs-18);
  font-weight: var(--fw-B);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c-contact-follow-r {
  background-color: var(--color-white);
  border-top-right-radius: var(--radius-L);
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c-contact-follow-r_icon {
  position: relative;
  margin-left: 32px;
  line-height: 1.2;
}
.c-contact-follow-r_icon > span:first-child {
  font-weight: var(--fw-SB);
  line-height: 1.2;
}
.c-contact-follow-r_icon > span:last-child {
  font-size: var(--fs-14);
  font-weight: var(--fw-SB);
}
.c-contact-follow-r_icon::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 26"><g><path stroke="%23104CBC" fill="none" stroke-width="1.5px" d="M21.2,11.2h6.3 M20.6,13.8h6.8 M16.5,16.4h11 M21.2,7.3h8.8c.9,0,1.6.7,1.6,1.5v10.1c0,.8-.7,1.5-1.6,1.5h-2.6v3.9c0,.5-.7.8-1,.4l-4-4.3h-8.3c-.9,0-1.6-.7-1.6-1.5v-3.6 M18.2.8H2.3c-.9,0-1.6.7-1.6,1.5v10.1c0,.8.7,1.5,1.6,1.5h2.6v3.9c0,.5.7.8,1,.4l4-4.3h8.3c.9,0,1.6-.7,1.6-1.5V2.2c0-.8-.7-1.5-1.6-1.5h0Z M15.8,4.6H4.8 M15.8,7.3H4.8 M15.8,9.9H4.8" /></g></svg>');
  display: block;
  position: absolute;
  bottom: 6px;
  left: -36px;
  width: 32px;
  height: 26px;
}
/* 追従ボタン -終- */

/* header ************************************************ */
.l-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  display: flex;
  padding: 0 20px;
  position: fixed;
  top: 0;
  height: 60px;
  width: 100%;
  z-index: 2;
}
.l-header h1 {
  align-self: center;
}
.l-header_nav {
  position: relative;
  width: 100%;
}
.l-header_nav_menu {
  background: var(--color-white);
  box-shadow: -3px 3px 6px 0px rgba(51, 51, 51, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 60px;
  padding: 20px;
  position: fixed;
  right: 0;
  width: 232px;
  height: 100vh;
  transform: translate(300px, 0);
  transition: .2s;
}
.l-header_nav_menu.active {
  transform: translate(0, 0);
}
.l-header a {
  box-sizing: border-box;
  font-weight: var(--fw-SB);
}
.l-header_button-contact,
.l-header_button-myportal {
  border-radius: var(--radius-round);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  margin: 0 auto;
  padding: 8px 16px;
  width: 100%;
  height: 40px;
}
.l-header_nav_menu li:has(.l-header_button-contact, .l-header_button-myportal) {
  width: 100%;
}
.l-header_button-contact {
  background-color: var(--color-accent);
  color: var(--color-white);
  margin: 0 auto;
}
.l-header_button-myportal {
  background-color: var(--color-white);
  border: solid 2px var(--color-main);
  margin-top: 24px;
  position: relative;
  color: var(--color-main);
  padding-left: 1em;
}
.l-header_button-myportal p {
  margin-left: 18px;
}
.l-header_button-myportal::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 22"><g><path stroke="%23104CBC" fill="none" stroke-width="1.5px" d="M7.2,8.5c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9-3.9,1.7-3.9,3.9,1.7,3.9,3.9,3.9Z M13.6,16.7H.8c0-3.5,2.9-6.4,6.4-6.4s6.4,2.9,6.4,6.4Z" /></g></svg>');
  position: absolute;
  top: 26%;
  left: 44px;
  width: 1.5em;
  height: 1.5em;
}
.l-header_button-myportal::after {
  content: "ご契約者さま向け";
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--fs-12);
  position: absolute;
  width: fit-content;
  top: -28px;
  left: 25%;
}

/* ハンバーガーメニュー */
.l-header_nav_button {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: var(--fs-08);
  font-weight: var(--fw-SB);
  font-size: 9px;
  width: 27px;
  height: 39px;
}
.l-header_nav_button span {
  background: var(--color-black);
  border-radius: var(--radius-round);
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  right: 2px;
  transition: 0.2s;
}
.l-header_nav_button span:nth-child(1) {
  top: -8px;
}
.l-header_nav_button span:nth-child(2) {
  top: 0px;
}
.l-header_nav_button span:nth-child(3) {
  top: 8px;
}
.l-header_nav_button.active span:nth-child(1) {
  rotate: -45deg;
  translate: 0 10px;
}
.l-header_nav_button.active span:nth-child(2) {
  display: none;
}
.l-header_nav_button.active span:nth-child(3) {
  rotate: 45deg;
  top: 2px;
}
.l-nav_bg {
  background-color: rgba(51, 51, 51, 0.5);
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
}
.l-nav_bg.active {
  display: block;
}
/* ハンバーガーメニュー -終- */

/* kv ************************************************ */
.p-kv_pic {
  display: inline-block;
  margin: 60px 16px 24px;
  position: relative;
}
.p-kv_pic img {
  border-radius: var(--radius-L);
  width: 100%;
}
.p-kv h2 {
  color: var(--color-main);
  font-size: 7vw;
  text-align: start;
  position: absolute;
  top: 5vw;
  left: 4vw;
}
.p-kv_inner {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-M);
  font-size: var(--fs-18);
  font-size: clamp(var(--fs-18), 5vw, var(--fs-36));
  font-weight: var(--fw-B);
  margin: 0 16px 40px;
  padding: 8px 16px;
  text-align: center;
}
.p-kv_inner img {
  width: 100%;
}
.p-kv_item {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 8px;
}
.p-kv_item p {
  background-color: var(--color-sub-2);
  border-radius: var(--radius-S);
  color: var(--color-main);
  font-size: clamp(var(--fs-22), 4.8vw, var(--fs-24));
  padding: 1px 8px 3px;
  width: fit-content;
  white-space: nowrap;
}
.p-kv_item img {
  width: 16px;
}
/* バナー */
.p-kv-banner {
  border-radius: var(--radius-M) 0 0 var(--radius-M);
  box-shadow: var(--shadow);
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-main), #003290);
  margin-left: auto;
  margin-bottom: 40px;
  width: fit-content;
  padding: 8px 30px 8px 12px;
  position: relative;
}
.p-kv-banner .c-speech-b {
  background: var(--color-white);
  border-radius: var(--radius-S);
  box-shadow: var(--shadow);
  color: var(--color-black);
  font-size: clamp(var(--fs-12), 1.77vw, var(--fs-22));
  font-weight: var(--fw-B);
  line-height: 1;
  padding: 4px 8px 6px;
  position: absolute;
  top: -20px;
  left: -30px;
  rotate: -15deg;
}
.p-kv-banner .c-speech-b::after {
  border-color: transparent var(--color-white) transparent transparent;
}
.p-kv-banner::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 8"><g><path fill="%23C7E3FF" d="M6.1,7.7L10.9,1.2c.3-.5,0-1.2-.7-1.2H.8C.2,0-.2.7.1,1.2l4.7,6.5c.3.4,1,.4,1.3,0h0Z" /></g></svg>');
  display: block;
  width: 11px;
  height: 8px;
  position: absolute;
  top: 30%;
  right: 8px;
  translate: -50% 100%;
  rotate: -90deg;
}
.p-kv-banner_inner p {
  color: var(--color-white);
}
.p-kv-banner_inner p:first-of-type {
  font-weight: var(--fw-BK);
  font-size: clamp(var(--fs-16), 4.266vw, var(--fs-22));
}
.p-kv-banner_inner span {
  font-size: clamp(var(--fs-14), 3.75vw, var(--fs-18));
}
.p-kv-banner_text-note {
  font-size: clamp(var(--fs-07), 1.9vw, var(--fs-10));
}

/* Control-plane campaign image: fill KV column (default .p-kv-banner is width: fit-content for text) */
.p-kv_wrap > div:not(.p-kv_pic) > a[data-action="registerpolicy"] {
  display: block;
  width: 100%;
}

.p-kv-banner:has(> img:only-child) {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.p-kv-banner:has(> img:only-child)::after {
  display: none;
}

.p-kv-banner:has(> img:only-child) img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-M) 0 0 var(--radius-M);
}
/* バナー -終- */

/* trouble ************************************************ */
.p-trouble {
  background-color: var(--color-gray-1);
  font-weight: var(--fw-SB);
}
.p-trouble h2 {
  color: var(--color-main);
}
.p-trouble-example {
  background-color: var(--color-white);
  border-radius: var(--radius-M);
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 32px;
  padding: 8px 16px 16px;
  width: 100%;
  max-width: 500px;
}
.p-trouble-example > p:first-of-type {
  color: var(--color-gray-4);
  margin-bottom: 12px;
}
.p-trouble-example_inner {
  display: flex;
  justify-content: space-around;
}
.p-trouble-example_inner img {
  align-self: flex-start;
  width: 100%;
  height: 44px;
}
.p-trouble_text {
  text-align: center;
  margin-bottom: 16px;
}
.p-trouble_text span {
  font-size: var(--fs-18);
  font-weight: var(--fw-B);
}
.p-trouble_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
.p-trouble_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-trouble_item:nth-child(odd) {
  align-self: flex-end;
}
.p-trouble_item img {
  border-radius: var(--radius-M);
  height: 60px;
}

/* solution ************************************************ */
.p-solution {
  font-weight: var(--fw-SB);
}
.p-solution h2 {
  color: var(--color-main);
}
.p-solution p:has(.c-text_line) {
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.p-solution .c-text_line {
  font-size: var(--fs-18);
  font-weight: var(--fw-B);
}
.p-solution .l-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-solution-flow,
.p-solution-result {
  display: flex;
  flex: 1;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.p-solution-flow {
  margin-bottom: 24px;
}
.p-solution-flow_title {
  background-color: var(--color-gray-2);
  border-radius: var(--radius-S);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  margin: auto;
  margin-bottom: 8px;
  width: 100%;
  max-width: 550px;
}
.p-solution-flow_title::before,
.p-solution-flow_title::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.2 14.7"><g><path fill="%23FC6501" d="M16,13.2L8.9.5c-.3-.7-1.3-.7-1.7,0L0,13.2c-.3.7.1,1.5.9,1.5h14.1c.8,0,1.3-.8.9-1.5ZM7,3.7h2.1v1.9l-.3,4.1h-1.4l-.4-4.1v-1.9ZM9,12.7c-.2.3-.5.4-.9.4s-.7-.1-.9-.4c-.2-.2-.3-.5-.3-.9s0-.7.3-.9c.2-.3.5-.4.9-.4s.7.1.9.4c.3.2.4.5.4.9s-.2.6-.4.9" /></g></svg>');
  width: 16px;
  height: 15px;
}
.p-solution-flow-l,
.p-solution-flow-r {
  font-size: var(--fs-14);
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.p-solution-flow-l,
.p-solution-result-l {
  max-width: 202px;
}
.p-solution-flow-l p,
.p-solution-flow-r p {
  border-radius: var(--radius-S);
  padding: 4px 0;
  text-align: center;
  width: 100%;
}
.p-solution-flow-l p {
  background-color: var(--color-gray-1);
}
.p-solution-flow-r p {
  background-color: var(--color-sub-1);
}
.p-solution-flow-l .c-arrow {
  fill: var(--color-gray-3);
  width: 11px;
}
.p-solution-flow-r .c-arrow {
  fill: var(--color-sub-2);
  width: 11px;
}
/* 画像付き見出し */
.p-solution-flow-l_pic,
.p-solution-flow-r_pic {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-M);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 163px;
  height: 88px;
}
.p-solution-flow-l_pic {
  background-image: url(../img/solution_01.webp);
}
.p-solution-flow-r_pic {
  background-image: url(../img/solution_02.webp);
}
.p-solution-flow-l_pic p,
.p-solution-flow-r_pic p {
  border-radius: 0;
  color: var(--color-white);
  display: block;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 22px;
  line-height: 0.8;
}
.p-solution-flow-l_pic p {
  background-color: var(--color-black-transparent);
}
.p-solution-flow-r_pic p {
  background-color: var(--color-main-transparent);
}
/* 画像付き見出し -終- */

.p-solution-flow-l_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  width: 100%;
}
.p-solution-flow-r_inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  width: 100%;
}
.p-solution-flow-r_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 8px;
}
.p-solution-flow-r_card {
  display: flex;
  flex-grow: 1;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}
.p-solution-flow-r_arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 8px;
  width: 50%;
}
.p-solution-result {
  display: flex;
  margin-bottom: 32px;
}
.p-solution-result img {
  width: 24px;
  height: 24px;
}
.p-solution-result-l,
.p-solution-result-r {
  width: 100%;
}
.p-solution-result-l > div,
.p-solution-result-r > div {
  background-color: var(--color-gray-4);
  border-radius: var(--radius-S) var(--radius-S) 0 0;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--fs-18);
  font-weight: var(--fw-B);
  padding: 6px 12px;
  line-height: 1.2;
}
.p-solution-result-l > p,
.p-solution-result-r > p {
  background-color: var(--color-gray-1);
  border-radius: 0 0 var(--radius-S) var(--radius-S);
  font-size: var(--fs-14);
  font-weight: var(--fw-R);
  text-align: center;
  padding: 4px;
}
.p-solution-result-r > div {
  background-color: var(--color-main);
}
.p-solution-result-r > p {
  background-color: var(--color-sub-1);
}
.p-solution_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.p-solution_wrap p:last-of-type {
  font-size: var(--fs-20);
  line-height: 1.4;
}
.p-solution_wrap img {
  align-self: center;
  width: 100%;
  max-width: 350px;
}

/* feature ************************************************ */
.p-feature {
  font-size: var(--fs-14);
  background-color: var(--color-sub-1);
}
.p-feature_wrap {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.p-feature_inner {
  background-color: var(--color-white);
  box-shadow: var(--shadow-color);
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 60px 1fr;
  padding: 12px;
}
.p-feature_inner h3 {
  color: var(--color-main);
  font-size: var(--fs-20);
  text-align: start;
  margin-bottom: 8px;
}
.p-feature_text-num {
  color: var(--color-gray-2);
  font-size: var(--fs-40);
  font-weight: var(--fw-BK);
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

/* price ************************************************ */
.p-price {
  background-color: var(--color-sub-2);
}
.p-price .l-card {
  background-color: var(--color-white);
  box-shadow: var(--shadow-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.p-price-read_block {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}
.p-price-read_block p {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: var(--fs-18);
  font-weight: var(--fw-SB);
  border-radius: var(--radius-S);
  padding: 1px 8px 3px;
  text-align: center;
  width: fit-content;
}
.p-price-read_block img {
  width: 16px;
}
.p-price-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.p-price-headline_inner {
  text-align: center;
}
.p-price_wrap .c-arrow {
  display: block;
  fill: var(--color-gray-4);
  margin: 0 auto 16px;
  width: 32px;
}
/* 画像付き見出し */
.p-price-before_pic,
.p-price-after_pic {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-M);
  font-size: var(--fs-14);
  font-weight: var(--fw-SB);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 120px;
  height: 80px;
}
.p-price-before_pic {
  background-image: url(../img/price_01.webp);
}
.p-price-after_pic {
  background-image: url(../img/price_04.webp);
  margin-bottom: 8px;
}
.p-price-before_pic p,
.p-price-after_pic p {
  border-radius: 0;
  color: var(--color-white);
  display: block;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 18px;
  line-height: 1.2;
}
.p-price-before_pic p {
  background-color: var(--color-black-transparent);
}
.p-price-after_pic p {
  background-color: rgba(16, 76, 188, 0.6);
}
/* 画像付き見出し -終- */
/* 今まで */
.p-price-before_wrap.l-card {
  background-color: var(--color-gray-1);
  margin-bottom: 16px;
}
.p-price-before_wrap .p-price-headline_inner > p {
  font-size: var(--fs-20);
  font-weight: var(--fw-B);
  margin-bottom: 8px;
}
.p-price-before_wrap .p-price-headline_inner > div {
  display: flex;
  justify-content: center;
  gap: 8px;
}
/* 今まで -終- */
/* これから */
.p-price-after_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
:where(.p-price-after_wrap p) {
  font-weight: var(--fw-SB);
  text-align: center;
}
.p-price-after_text {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}
.p-price-after_text-num {
  color: var(--color-main);
  font-size: 3.5rem;
  font-weight: var(--fw-B);
  line-height: 1;
}
.p-price-after_text-num span {
  font-size: var(--fs-32);
}
.p-price-after_item {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-M);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px;
  width: 100%;
}
/* 機器一覧 */
.p-price-after_card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-price-after_card img {
  width: 100%;
}
.p-price-after_card-l {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.p-price-after_card-s {
  display: grid;
  flex-wrap: wrap;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
}
.p-price-after_card-l > div,
.p-price-after_card-s > div {
  background-color: var(--color-white);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-color);
}
.p-price-after_card-l > div {
  width: 68px;
  height: 68px;
}
.p-price-after_card-s > div {
  aspect-ratio: 1 / 1;
  max-width: 46px;
  height: 100%;
  max-height: 46px;
}
/* 機器一覧 -終- */
.p-price-after_text-note {
  background-color: var(--color-sub-2);
  border-radius: 4px;
  font-size: var(--fs-12);
  font-weight: var(--fw-M);
  padding: 0 4px 2px 8px;
  width: fit-content;
}
/* これから -終- */
/* オプション */
.p-price-option_title {
  font-size: var(--fs-20);
  line-height: 1.4;
}
.p-price-option_wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: var(--fs-14);
  font-weight: var(--fw-SB);
}
.p-price-option_inner {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-M);
  padding: 8px;
}
.p-price-option_inner img {
  background-color: var(--color-white);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-color);
  min-width: 60px;
}
.p-price-option_text-supplement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.p-price-option_text-supplement p:nth-of-type(2) {
  font-size: var(--fs-20);
}
.p-price-option_text-supplement p:nth-of-type(3) {
  font-weight: var(--fw-R);
  text-align: justify;
}
/* オプション -終- */

/* service ************************************************ */
.p-service_text {
  font-size: var(--fs-24);
  font-weight: var(--fw-SB);
  margin-bottom: 24px;
  text-align: center;
}
.p-service_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.p-service_inner {
  border: solid 2px var(--color-main);
  border-radius: var(--radius-L);
}
.p-service_inner:last-of-type {
  margin-top: 12px;
}
.p-service_title {
  background-color: var(--color-main);
  border-radius: var(--radius-M) var(--radius-M) 0 0;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 56px;
}
.p-service_title p {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-round);
  color: var(--color-main);
  font-weight: var(--fw-SB);
  line-height: 1.2;
  padding: 2px 12px;
  position: absolute;
  top: -14px;
  height: 24px;
}
.p-service_item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-service_text-pic {
  background: url(../img/service_01.webp) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-M);
  color: var(--color-white);
  font-size: var(--fs-20);
  font-weight: var(--fw-SB);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 2px 4px rgba(51, 51, 51, 0.1);
  width: 100%;
  height: 120px;
}
.p-service_text-pic span {
  background-image: radial-gradient(circle at center, var(--color-white) 25%, transparent 20%);
}
.p-service_item .c-list_disc {
  background-color: var(--color-gray-1);
  border-radius: var(--radius-M);
  font-size: var(--fs-12);
  padding: 4px 8px 8px;
  position: relative;
  width: 100%;
}
.p-service_item ul span {
  position: absolute;
  right: 8px;
}
.p-service_item .c-text_em-2 {
  font-weight: var(--fw-SB);
}
.p-service_block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-service_card {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-M);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.p-service_card > div {
  font-weight: var(--fw-B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
  width: 60px;
  height: 60px;
}
.p-service_card > div img {
  width: 20px;
  height: 20px;
}
.p-service_card > div span {
  background-color: var(--color-main);
  border-radius: 4px;
  color: var(--color-white);
  font-size: var(--fs-12);
  padding: 0 6px 2px;
}
.p-service_card > p {
  font-size: var(--fs-14);
  width: calc(100% - 68px);
}

/* detail ************************************************ */
.p-detail {
  background-color: var(--color-gray-1);
  margin-top: -40px;
}
.p-detail_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-detail_inner {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-detail_inner > * {
  margin-bottom: 16px;
}
.p-detail_inner > *:last-child {
  margin-bottom: 0;
}
.p-detail_inner > img {
  width: 100%;
  max-width: 294px;
}
.p-detail .l-wrap p {
  text-align: center;
}
.p-detail_title {
  background-color: var(--color-main);
  border-radius: var(--radius-S);
  color: var(--color-white);
  font-weight: var(--fw-SB);
  display: block;
  margin: 0 auto 16px;
  padding: 2px 12px 3px;
  width: 180px;
}
.p-detail_title::after {
  border-right-color: var(--color-main);
  border-width: 8px 12px 8px 0;
}
.p-detail_text-num {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-round);
  color: var(--color-main);
  font-size: var(--fs-20);
  font-weight: var(--fw-B);
  line-height: 1.75;
  margin: 0 auto 16px;
  text-align: center;
  width: 40px;
  height: 40px;
}
.p-detail_text-em {
  font-weight: var(--fw-SB);
}
.p-detail_item {
  display: grid;
  font-size: var(--fs-10);
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  justify-items: center;
  text-align: center;
}
.p-detail_card {
  width: 100%;
  height: fit-content;
}
.p-detail_card div {
  box-shadow: var(--shadow);
  border-radius: var(--radius-round);
  aspect-ratio: 1 / 1;
  margin: 0 auto 4px;
  width: 100%;
  max-width: 60px;
  height: 100%;
  max-height: 60px;
}
.p-detail_card div img {
  width: 100%;
}
.p-detail .c-text_color {
  font-weight: var(--fw-SB);
}
.p-detail_text-small {
  font-size: var(--fs-08);
}
.p-detail ol li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* voice ************************************************ */
.p-voice_wrap {
  display: grid;
  gap: 32px;
}
.p-voice_inner {
  border-radius: var(--radius-L);
  background-color: var(--color-sub-1);
}
.p-voice_item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.p-voice_item img {
  align-self: center;
  width: 60px;
  height: 60px;
}
.p-voice_text-read {
  font-weight: var(--fw-SB);
}
.p-voice_text-attribute {
  display: block;
  font-size: var(--fs-14);
  text-align-last: right;
}

/* flow ************************************************ */
.p-flow {
  background-color: var(--color-gray-1);
}
.p-flow h3 {
  margin-bottom: 24px;
}
.p-flow h3 span {
  color: var(--color-main);
  margin-right: 0.5em;
}
.p-flow_wrap {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.p-flow_line {
  border-bottom: solid 2px var(--color-gray-2);
  margin: 0 auto;
  margin-bottom: 16px;
  padding-bottom: 16px;
  width: 100%;
  max-width: 500px;
}
.p-flow_line:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-flow_wrap .c-list_note {
  margin-top: 8px;
}
/* 01 */
.p-flow_inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-flow_num {
  color: var(--color-main);
  font-weight: var(--fw-SB);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
}
.p-flow_num img {
  width: 40px;
}
/* 02,03 */
.p-flow h4 {
  background-color: var(--color-main);
  border-radius: var(--radius-L) var(--radius-L) 0 0;
  color: var(--color-white);
  padding: 4px 0;
}
.p-flow h4 + .l-card {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.p-flow_inner-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-flow_inner-row:has(+ div) {
  margin-bottom: 16px;
}
.p-flow_inner-row .p-flow_line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.p-flow_inner-row .p-flow_line img {
  width: 100%;
  max-width: 257px;
}
.p-flow_item {
  background-color: var(--color-sub-1);
  border-radius: var(--radius-M);
  padding: 16px;
  height: 100%;
}
.p-flow_item p:first-of-type {
  font-weight: var(--fw-SB);
  text-align: center;
  margin-bottom: 8px;
}

/* contact ************************************************ */
.p-contact h3 {
  margin-bottom: 16px;
}
.p-contact h3:has(+ .p-contact-other_wrap) {
  font-size: var(--fs-20);
}
.p-contact-after_item {
  margin: 16px auto 32px auto;
}
.p-contact_wrap {
  background-color: var(--color-gray-1);
  margin-bottom: 32px;
}
.p-contact_wrap p {
  margin-bottom: 8px;
}
.p-contact-before_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-contact-before_item a,
.p-contact-after_item a {
  background-color: var(--color-white);
  border: solid 2px var(--color-main);
  border-radius: var(--radius-M);
  box-shadow: var(--shadow);
  color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: var(--fw-SB);
  padding: 8px;
}
.p-contact-before_item a {
  flex-direction: column;
  height: 120px;
  line-height: 1.6;
  margin-top: 16px;
  text-align: center;
}
.chat-button-fix.chat-inactive {
  pointer-events: none;
  opacity: 0.5;
  border-color: var(--color-gray-3);
  color: var(--color-gray-4);
}
.p-contact-after_item a {
  line-height: 1.2;
  padding: 12px 0;
  text-align: center;
}
.p-contact-after_item a span:last-of-type {
  font-size: var(--fs-14);
}
.p-contact-after_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-contact-other_inner {
  margin-bottom: 16px;
}
.p-contact-other_inner:last-of-type {
  margin-bottom: 0;
}
.p-contact-other_inner a {
  text-decoration: underline;
}
.p-contact-other_inner p {
  background-color: var(--color-gray-1);
  border-radius: var(--radius-S);
  display: inline-block;
  font-weight: var(--fw-SB);
  margin-bottom: 8px;
  padding: 2px 0;
  text-align: center;
  width: 100%;
}
.p-contact-other_tel dd::before,
.p-contact-other_mail dd::before {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../img/icon/icon_tel.svg);
  background-size: contain;
  display: inline-block;
  margin-right: 4px;
  vertical-align: sub;
  width: 1em;
  height: 1em;
}
.p-contact-other_mail dd::before {
  background-image: url(../img/icon/icon_mail.svg);
}
.p-contact-before_chat {
  position: relative;
  margin-top: 28px;
}
.p-contact-before_tel {
  position: relative;
  margin-top: 24px;
}
.p-contact-after_myportal {
  position: relative;
  margin-left: 20px;
}
.p-contact-after_tel {
  position: relative;
  margin-left: 26px;
}
.p-contact-before_chat::before,
.p-contact-before_tel::before,
.p-contact-after_myportal::before,
.p-contact-after_tel::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
}
.p-contact-before_chat::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 26"><g><path stroke="%23104CBC" fill="none" stroke-width="1.5px" d="M21.2,11.2h6.3 M20.6,13.8h6.8 M16.5,16.4h11 M21.2,7.3h8.8c.9,0,1.6.7,1.6,1.5v10.1c0,.8-.7,1.5-1.6,1.5h-2.6v3.9c0,.5-.7.8-1,.4l-4-4.3h-8.3c-.9,0-1.6-.7-1.6-1.5v-3.6 M18.2.8H2.3c-.9,0-1.6.7-1.6,1.5v10.1c0,.8.7,1.5,1.6,1.5h2.6v3.9c0,.5.7.8,1,.4l4-4.3h8.3c.9,0,1.6-.7,1.6-1.5V2.2c0-.8-.7-1.5-1.6-1.5h0Z M15.8,4.6H4.8 M15.8,7.3H4.8 M15.8,9.9H4.8" /></g></svg>');
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 29px;
  height: 24px;
}
.p-contact-before_tel::before,
.p-contact-after_tel::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 26"><g><path stroke="%23104CBC" fill="none" stroke-width="2px"  stroke-linecap="round" stroke-linejoin="round" d="M2.4,2.2c-3.4,3.4-1.4,10.7,4.4,16.5,5.8,5.8,13.1,7.7,16.5,4.4,1-1,1.5-3.3,1.5-3.3,0-.4-.1-.8-.5-.9l-6-2.4c-.3-.1-.9,0-1.1.3l-1.8,1.8c-.3.3-.8.4-1.2.2h0c-1.3-.7-2.7-1.8-4.1-3.1-1.3-1.3-2.4-2.7-3.1-4.1h0c-.2-.4,0-.9.2-1.2l1.8-1.8c.3-.3.4-.8.3-1.1L6.6,1.3c0-.3-.6-.6-.9-.5,0,0-2.3.5-3.3,1.5h0" /></g></svg>');
}
.p-contact-before_tel::before {
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}
.p-contact-after_myportal::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g><path stroke="%23104CBC" fill="none" stroke-width="1.5px" d="M7.2,8.5c2.1,0,3.9-1.7,3.9-3.9s-1.7-3.9-3.9-3.9-3.9,1.7-3.9,3.9,1.7,3.9,3.9,3.9Z M13.6,16.7H.8c0-3.5,2.9-6.4,6.4-6.4s6.4,2.9,6.4,6.4Z" /></g></svg>');
  bottom: -1px;
  left: -22px;
  width: 20px;
  height: 20px;
}
.p-contact-after_tel::before {
  bottom: 5px;
  left: -26px;
  width: 20px;
  height: 20px;
}

/* faq ************************************************ */
.p-faq {
  background-color: var(--color-sub-1);
}
.p-faq_wrap {
  background-color: var(--color-white);
  box-shadow: var(--shadow-color);
  margin-top: 12px;
}
.p-faq_text-q {
  cursor: pointer;
  font-weight: var(--fw-SB);
  width: calc(100% - (1em + 8px));
  transition: .2s;
}
.p-faq_text-q,
.p-faq_text-a {
  padding-left: calc(1em + 8px);
  position: relative;
}
.p-faq_text-q span,
.p-faq_text-a span {
  font-weight: var(--fw-BK);
  position: absolute;
  left: 0;
}
.p-faq_text-q span {
  color: var(--color-main);
}
.p-faq_text-a span {
  color: var(--color-gray-4);
}
.p-faq_text-q::before,
.p-faq_text-q::after {
  content: "";
  background-color: var(--color-gray-4);
  display: block;
  position: absolute;
  top: 50%;
  right: -24px;
  width: 1em;
  height: 2px;
  transition: .2s;
}
.p-faq_text-q::after {
  rotate: 90deg;
}
.p-faq_inner {
  margin-top: 8px;
}
.p-faq_inner ul {
  margin-top: 8px;
}
.p-faq_inner li {
  margin-left: 2em;
}
/* faq クリック時 */
.p-faq_text-q.active::after {
  rotate: 0deg;
}

/* terms ************************************************ */
.p-terms a {
  text-decoration: underline;
}
.p-terms_text {
  font-weight: var(--fw-SB);
  margin-bottom: 8px;
}
.p-terms > div > ul {
  margin-bottom: 32px;
}
.p-terms dl {
  background-color: var(--color-gray-1);
  border-radius: var(--radius-M);
  font-size: var(--fs-14);
  padding: 16px 20px 20px;
}

/* footer ************************************************ */
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  padding: 20px 16px 32px;
}
.l-footer_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.l-footer small {
  font-size: var(--fs-12);
}
.l-footer_inner {
  font-size: var(--fs-12);
  display: flex;
  gap: 16px;
  line-height: 1;
}
.l-footer_inner img {
  align-self: center;
  width: auto;
  height: 20px;
}

@media screen and (max-width: 374px) {
  :where(h2) {
    font-size: var(--fs-26);
  }
  :where(h3) {
    font-size: var(--fs-22);
  }
  .c-contact-follow-r_icon > span:first-child {
    font-size: var(--fs-14);
  }
  .c-contact-follow-r_icon > span:last-child {
    font-size: var(--fs-12);
  }
  .c-contact-follow-r_icon::before {
    left: -32px;
    width: 30px;
  }
  .p-kv_inner {
    font-size: var(--fs-16);
  }
  .p-kv_item p {
    font-size: var(--fs-18);
  }
  .p-kv-banner_inner p:first-of-type {
    font-size: var(--fs-15);
  }
  .p-feature_inner h3 br {
    display: none;
  }
  .p-solution p:has(.c-text_line) {
    font-size: var(--fs-14);
  }
  .p-solution-flow-l p,
  .p-solution-flow-r p,
  .p-solution-result-l > p,
  .p-solution-result-r > p {
    font-size: var(--fs-13);
  }
  .p-solution-result-l > div,
  .p-solution-result-r > div {
    font-size: var(--fs-16);
  }
  .p-solution_wrap p:last-of-type {
    font-size: var(--fs-18);
  }
  .p-price-read_block p {
    font-size: var(--fs-16);
    padding: 1px 5px 3px;
  }
  .p-contact_wrap p {
    font-size: var(--fs-12);
  }
  .p-contact-before_item a {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  .c-contact-follow-r_icon {
    margin-left: 36px;
  }
  .c-contact-follow-r_icon > span:first-child {
    font-size: var(--fs-18);
  }
  .c-contact-follow-r_icon > span:last-child {
    margin-left: 8px;
  }
  .c-contact-follow-r_icon::before {
    bottom: 0;
  }

  .l-section {
    padding: 60px 24px 80px;
  }
  .l-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0px, 1fr));
  }
  .l-grid > * {
    grid-column: 2 / span 10;
  }

  .p-kv .l-wrap {
    max-width: initial;
  }
  .p-kv_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-top: 60px;
    padding: 24px 0 64px;
  }
  .p-kv_pic {
    margin: 0 16px 0 0;
  }
  .p-kv_pic img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .p-kv_inner {
    font-size: clamp(var(--fs-16), 2.25vw, var(--fs-32));
    max-width: 544px;
    padding: 20px;
  }
  .p-kv h2 {
    font-size: 3vw;
    top: 2.5vw;
    left: 3vw;
  }
  .p-kv-banner {
    margin-bottom: 0;
  }
  .p-kv-banner_text-note {
    font-size: clamp(var(--fs-07), 1vw, var(--fs-12));
  }
  .p-kv-banner_inner p:first-of-type {
    font-size: clamp(var(--fs-16), 2.366vw, var(--fs-30));
  }
  .p-kv-banner_inner span {
    font-size: clamp(var(--fs-14), 1.85vw, var(--fs-24));
  }

  .p-trouble-example,
  .p-trouble_inner {
    grid-column: 3 / span 8;
  }
  .p-trouble_wrap {
    display: grid;
    grid-template-columns: repeat(12, minmax(0px, 1fr));
  }

  .p-solution-flow_title {
    grid-column: 2 / span 10;
    max-width: initial;
    margin-left: auto;
    margin-right: auto;
  }
  .p-solution-flow,
  .p-solution-result {
    max-width: initial;
    grid-column: 2 / span 10;
  }
  .p-solution-flow-l,
  .p-solution-result-l {
    max-width: 220px;
  }
  .p-solution-flow-r,
  .p-solution-result-r {
    max-width: initial;
  }

  .p-price-headline {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }
  .p-price-after_wrap {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 8fr 0fr 4fr;
  }
  .p-price-after_card {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .p-price-after_card-s > div {
    min-width: 24px;
  }

  .p-feature_wrap {
    grid-template-columns: repeat(12, minmax(0px, 1fr));
  }
  .p-feature_inner:nth-child(1) {
    grid-column: 1 / span 4;
  }
  .p-feature_inner:nth-child(2) {
    grid-column: 5 / span 4;
  }
  .p-feature_inner:nth-child(3) {
    grid-column: 9 / span 4;
  }

  .p-service_title h3 {
    font-size: clamp(var(--fs-20), 2.4vw, var(--fs-24));
  }
  .p-service p:has(.c-text_disc) {
    font-size: clamp(var(--fs-14), 1.8vw, var(--fs-20));
  }
  .p-service_text {
    margin-bottom: 40px;
  }
  .p-service_wrap {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 4fr 0fr 8fr;
  }
  .p-service_inner:first-of-type {
    min-width: 200px;
  }
  .p-service_inner {
    height: 100%;
    margin-top: 0 !important;
  }
  .p-service_block {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-service_card {
    flex-direction: column;
  }
  .p-service_card > p {
    width: 100%;
  }

  .p-detail_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .p-detail .l-wrap .p-detail_wrap p:not(.p-detail_text-num, .p-detail_item p) {
    text-align: start;
  }
  .p-detail_inner {
    padding: 20px 20px 24px;
  }
  .p-detail_inner:last-of-type {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
  .p-detail_item {
    grid-template-columns: repeat(5, 1fr);
  }

  .p-voice_wrap {
    gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .p-flow_wrap {
    margin-bottom: 54px;
  }
  .p-flow_inner-row {
    display: grid;
    grid-template-columns: 4fr 8fr;
  }
  .p-flow_inner-row:has(.p-flow_item) {
    grid-template-columns: 8fr 4fr;
  }
  .p-flow_inner-row .p-flow_line {
    border-right: solid 2px var(--color-gray-2);
    margin-right: 16px;
    padding-right: 16px;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100%;
  }
  .p-flow_item p:first-of-type {
    white-space: nowrap;
  }

  .p-contact > div > p,
  .p-contact_wrap p {
    text-align: center;
  }
  .p-contact-before_item {
    gap: 16px;
  }
  .p-contact-after_item {
    flex-direction: row;
    width: 100%;
  }
  .p-contact-after_item a {
    flex: 1;
  }
  .p-contact h3:has(+ .p-contact-other_wrap) {
    text-align: start;
  }
  .p-contact-other_inner,
  .p-contact-other_inner dl {
    display: flex;
    gap: 8px;
  }
  .p-contact-other_inner p {
    margin: 0;
    width: 120px;
  }

  .l-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 24px 32px;
  }
  .l-footer_wrap {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 1080px) {
  .l-header {
    align-items: center;
    justify-content: space-between;
  }
  .l-header_nav {
    background-color: transparent;
    width: fit-content;
  }
  .l-header_nav_button {
    display: none;
  }
  .l-header_nav_menu {
    box-shadow: none;
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
    padding: 0;
    position: initial;
    transform: initial;
    width: fit-content;
    height: fit-content;
  }
  .l-header_nav_menu {
    background-color: transparent;
  }
  .l-header nav ul li a {
    font-size: clamp(var(--fs-14), 2vw, var(--fs-16));
    white-space: nowrap;
  }
  .l-header_button-myportal {
    margin-top: 0;
  }
  .l-header_button-myportal::before {
    left: 18px;
  }
  .l-header_button-myportal::after {
    border-radius: var(--radius-round);
    font-size: var(--fs-10);
    padding: 0 4px;
    position: absolute;
    top: -8px;
    left: 23%;
  }
  .l-header_button-contact,
  .l-header_button-myportal {
    width: 152px;
  }
  .p-trouble-example,
  .p-trouble_inner {
    max-width: 500px;
  }
}

@media screen and (min-width: 1280px) {
  .pc-none {
    display: none;
  }
  .l-wrap,
  .p-flow .l-wrap,
  .p-contact .l-wrap {
    max-width: initial;
  }
  .p-kv_wrap {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }
  .p-kv_inner {
    margin: 0 auto 60px;
  }
  .p-kv-banner .c-speech-b {
    padding: 6px 12px 8px;
    position: absolute;
    top: -33px;
    left: -60px;
  }
  .p-kv-banner {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 44px;
  }
  .p-kv-banner:has(> img:only-child) {
    padding: 0;
  }
  .p-kv-banner::after {
    width: 16px;
    height: 12px;
  }
  .p-kv-banner_inner p:first-of-type {
    font-size: clamp(var(--fs-16), 2.1vw, var(--fs-30));
  }
}

@media screen and (min-width: 1440px) {
  :where(h2) {
    font-size: var(--fs-32);
  }
  .l-section {
    padding: 60px 48px 80px;
  }
  .l-wrap,
  .p-flow .l-wrap,
  .p-contact .l-wrap,
  .p-trouble .l-wrap,
  .p-solution .l-wrap {
    max-width: 1440px;
  }
  .p-trouble-example,
  .p-trouble_inner {
    grid-column: 5 / span 4;
    max-width: initial;
  }
  .p-solution-flow_title {
    max-width: 1200px;
  }
  .p-service_item .c-list_disc {
    padding: 4px 8px 8px;
  }
  .p-service_card {
    padding: 8px 16px 16px;
  }
  .p-service_inner:first-of-type {
    max-width: initial;
  }
  .p-detail_inner {
    padding: 20px 32px;
  }
  .p-detail .l-wrap .p-detail_wrap p:not(.p-detail_text-num, .p-detail_item p) {
    max-width: 490px;
  }
  .p-flow_item {
    padding: 16px 24px;
  }
}

@media screen and (min-width: 1823px) {
  .p-kv_wrap {
    width: 100%;
    max-width: 1823px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-kv h2 {
    font-size: var(--fs-60);
  }
}
