/*
 * ライフビジョン トップページ
 *
 * 【リファクタリング方針】2026-07-27
 * 初版はデスクトップ表示が全セクション position:absolute + 固定 top/height で
 * 組まれており、.l-container に min-height:4468px が指定されていました。
 * この構造ではお知らせ等の可変コンテンツが増減した際にレイアウトが崩壊するため
 * （実測: お知らせ4件目でボタンに重なる）、通常フローへ変更しています。
 *
 *   - セクションは padding / margin による縦積み
 *   - 可変コンテンツ（お知らせ一覧・導入実績カード・件数表示）は flex / grid
 *   - 装飾要素（波・楕円・キービジュアル上のコピー）のみ absolute を維持
 *
 * 見た目は初版から 1px も変えていません（ヘッドレスChromeでピクセル差分検証済み）。
 * 小数px（例: margin-top:81.172px）は初版の座標をそのまま再現するための値です。
 */

@font-face {
  font-family: "DENSO Sans";
  src: url("../fonts/DENSOSans-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DENSO Sans";
  src: url("../fonts/DENSOSans-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-VF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "DENSO TP";
  src: url("../fonts/DENSOTP2017-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DENSO TP";
  src: url("../fonts/DENSOTP2017-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DENSO Sans TP";
  src: url("../fonts/DENSOSansTP2017-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DENSO Sans TP";
  src: url("../fonts/DENSOSansTP2017-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary: #02797e;
  --primary-bright: #02a6ac;
  --secondary: #e5f6f7;
  --surface: #f0f5f5;
  --text: #2f3333;
  --white: #fff;
  --placeholder: #d9d9d9;
  --layout-width: min(100%, 1280px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "DENSO Sans", "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, opacity .3s ease;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 4px;
}

.l-contents {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

/* 全体の高さはセクションの積み上げで決まる（初版の min-height:4468px は撤去） */
.l-container {
  position: relative;
  width: var(--layout-width);
  margin: 0 auto;
  overflow-x: clip;
  overflow-y: visible;
  background: #fff;
}

/* ===== ヘッダー ===== */

.c-header {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 10px rgb(7 65 68 / 13%);
}

.c-header__inner {
  position: relative;
  display: flex;
  height: 80px;
  padding: 0 96px;
  align-items: center;
}

.c-header__logo {
  display: block;
  width: 216px;
  height: auto;
  flex: 0 0 auto;
}

.c-nav-global {
  width: auto;
  height: 80px;
  margin-left: auto;
}

.c-nav-global__list {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.c-nav-global a {
  position: relative;
  display: inline-flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease;
}

.c-nav-global a:not(.c-nav-global__contact)::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  background: var(--primary);
  content: "";
  transition: right .3s ease, left .3s ease;
}

.c-nav-global a:not(.c-nav-global__contact):hover::after,
.c-nav-global a:not(.c-nav-global__contact):focus-visible::after,
.c-nav-global a.is-current::after {
  right: 0;
  left: 0;
}

.c-nav-global a:not(.c-nav-global__contact):hover,
.c-nav-global a:not(.c-nav-global__contact):focus-visible,
.c-nav-global a.is-current {
  color: var(--primary-bright);
}

.c-nav-global .c-nav-global__contact {
  width: auto;
  height: 50px;
  padding: 0 24px;
  border: 1px solid var(--primary);
  border-radius: 25px;
  color: #fff;
  background: var(--primary);
  transition: color .3s ease, background-color .3s ease;
}

.c-nav-global .c-nav-global__contact:hover,
.c-nav-global .c-nav-global__contact:focus-visible,
.c-nav-global .c-nav-global__contact.is-current {
  color: var(--primary);
  background: #fff;
}

.c-header__menu,
.c-nav-mobile {
  display: none;
}

/*
 * セクションは通常フローで縦に積む。
 * z-index は初版の重ね順（「ライフビジョンとは」がプランの装飾円より前面）を維持するため必要。
 */
.p-top-hero,
.p-top-about,
.p-top-plans,
.p-top-results,
.p-top-news,
.c-box-contact,
.c-footer {
  position: relative;
  width: 100%;
}

/* ===== キービジュアル ===== */

.home {
  --layout-width: 100%;
}

.p-top-hero {
  z-index: 1;
  height: 626px;
  overflow: visible;
  background: #fff;
}

.p-top-hero__background,
.p-top-hero__mask,
.p-top-hero__people,
.p-top-hero__copy,
.p-top-hero__mockups {
  position: absolute;
  max-width: none;
}

.p-top-hero__background {
  z-index: 0;
  top: -80px;
  left: 50%;
  width: 1920px;
  height: 746px;
  pointer-events: none;
  transform: translateX(-50%);
}

.p-top-hero__mask {
  z-index: 6;
  top: 500px;
  left: 50%;
  width: 1920px;
  height: 352px;
  pointer-events: none;
  transform: translateX(-50%);
}

.p-top-hero__people {
  z-index: 7;
  top: 64px;
  left: calc(50% - 458px);
  width: 410px;
  height: 510px;
  pointer-events: none;
}

.p-top-hero__copy {
  z-index: 7;
  top: 64px;
  left: calc(50% - 66px);
  width: 506px;
  color: var(--primary);
}

.p-top-hero__copy h1 {
  display: flex;
  align-items: center;
  font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 96px;
  letter-spacing: .005em;
  white-space: nowrap;
}

.p-top-hero__copy h1 span:first-child {
  margin-right: -16px;
}

.p-top-hero__copy p {
  margin-left: 73px;
  font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  white-space: nowrap;
}

.p-top-hero__copy p span {
  display: inline-block;
  margin-left: 74px;
}

.p-top-hero__mockups {
  z-index: 5;
  top: 431px;
  left: calc(50% - 48px);
  display: flex;
  width: 487px;
  height: 225px;
  align-items: flex-start;
  gap: 16px;
}

.p-top-hero__mock-link {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.p-top-hero__mock-link--phone {
  width: 109px;
  height: 223px;
}

.p-top-hero__mock-link--tablet {
  width: 362px;
  height: 223px;
}

.p-top-hero__mock-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(0);
  transition: transform .3s ease;
}

.p-top-hero__mock-link:hover img,
.p-top-hero__mock-link:focus-visible img {
  transform: translateY(-12px);
}

.p-top-hero__hover-label {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  padding: 8px 12px;
  border-radius: 20px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgb(0 0 0 / 18%);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--hero-label-x, 0), var(--hero-label-y, 0), 0);
  transition: opacity .3s ease;
  white-space: nowrap;
}

.p-top-hero__hover-label.is-visible {
  opacity: 1;
}

/* ===== ライフビジョンとは ===== */

.p-top-about {
  z-index: 4;
  height: 498px;
  pointer-events: none;
}

.p-top-about__copy {
  position: absolute;
  top: 40px;
  left: calc(50% - 444px);
  width: 466px;
}

.p-top-about__copy h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.p-top-about__copy p {
  width: 466px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 32px;
}

.p-top-about__image {
  position: absolute;
  top: 0;
  left: calc(50% + 54px);
  width: 390px;
  height: 390px;
}

/* ===== 選べる2つのプラン ===== */

.p-top-plans {
  z-index: 2;
  height: 790px;
  overflow: visible;
  background: transparent;
}

.p-top-plans::before {
  position: absolute;
  z-index: -1;
  top: -293px;
  left: 50%;
  width: 1920px;
  height: 1111px;
  background: url("../images/top-wave-pc.png") center top / 1920px 1111px no-repeat;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.p-top-plans__inner {
  position: relative;
  width: 840px;
  height: 550px;
  margin: 0 auto;
}

.p-top-section-heading {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.p-top-section-heading i {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: #02a6ac;
}

.p-top-plans__list {
  display: flex;
  width: 840px;
  height: 356px;
  margin-top: 64px;
  flex-direction: column;
  gap: 32px;
}

.p-top-plans__item {
  display: grid;
  width: 840px;
  height: 162px;
  grid-template-columns: 270px 1fr;
  gap: 16px;
  align-items: center;
}

.p-top-plans__visual {
  position: relative;
  width: 270px;
  height: 162px;
  overflow: hidden;
}

.p-top-plans__visual--simple .p-top-plans__tablet {
  position: absolute;
  top: 5px;
  left: 16px;
  width: 221px;
  height: 148px;
}

.p-top-plans__visual--simple .p-top-plans__phone {
  position: absolute;
  top: 36px;
  left: 167px;
  width: 81px;
  height: 130px;
}

.p-top-plans__visual--smart {
  display: flex;
  padding: 15px 41px 0;
  gap: 0;
}

.p-top-plans__visual--smart img {
  width: 94px;
  height: 182px;
  object-fit: contain;
}

.p-top-plans__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-top-plans__detail h3 {
  color: var(--primary);
  font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.p-top-plans__detail p {
  font-size: 18px;
  line-height: 28px;
}

.p-top-plans__item--smart .p-top-plans__detail p {
  line-height: 27px;
}

/* ===== 共通ボタン ===== */

.c-btn-center {
  display: flex;
  justify-content: center;
}

.c-btn {
  display: inline-flex;
  width: 236px;
  height: 50px;
  padding: 0 20px 0 30px;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.c-btn i {
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentcolor;
}

.c-btn:hover,
.c-btn:focus-visible {
  color: var(--primary);
  background: #fff;
}

.p-top-plans__button {
  width: 220px;
  height: 50px;
  margin: 48px auto 0;
}

.p-top-plans__button .c-btn {
  width: 220px;
}

/* ===== 導入実績 ===== */

.p-top-results {
  z-index: 3;
  height: 1235px;
  background: transparent;
}

.p-top-results > h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-top-results__map-area {
  position: absolute;
  top: 56px;
  left: 50%;
  width: 840px;
  height: 586px;
  transform: translateX(-50%);
}

.p-top-results__map {
  position: absolute;
  top: 0;
  left: 101px;
  display: block;
  width: 626px;
  height: 564px;
}

.p-top-results__map img {
  width: 626px;
  height: 564px;
}

.p-top-results__count {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 3px;
  display: flex;
  height: 64px;
  align-items: flex-start;
  color: var(--text);
  white-space: nowrap;
}

.p-top-results__count small,
.p-top-results__count span {
  margin-top: 5px;
  font-size: 18px;
  font-style: normal;
  line-height: 36px;
}

.p-top-results__count strong {
  width: auto;
  margin-left: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0;
}

.p-top-results__count span em {
  font-style: normal;
}

.p-top-results__count span b {
  font-weight: 400;
}

.p-top-results__legend {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  margin: 0;
  pointer-events: none;
}

.p-top-results__legend > div {
  position: absolute;
  width: max-content;
  min-width: 64px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.p-top-results__legend > div:nth-child(1) {
  top: 200px;
  left: 783px;
}

.p-top-results__legend > div:nth-child(2) {
  top: 351px;
  left: 777px;
}

.p-top-results__legend > div:nth-child(3) {
  top: 190px;
  left: 395px;
}

.p-top-results__legend > div:nth-child(4) {
  top: 538px;
  left: 333px;
}

.p-top-results__legend > div:nth-child(5) {
  top: 266px;
  left: 198px;
}

.p-top-results__legend > div:nth-child(6) {
  top: 461px;
  left: 32px;
}

.p-top-results__legend dt {
  display: block;
  margin: 0;
}

.p-top-results__legend dd {
  margin: 0;
}

.p-top-results__cases {
  position: absolute;
  top: 714px;
  left: 50%;
  width: 960px;
  height: 328px;
  transform: translateX(-50%);
}

.p-top-results__cases h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}

.p-top-results__cases ul {
  display: flex;
  width: 840px;
  margin: 32px auto 0;
  justify-content: space-between;
}

.p-top-results__cases li,
.p-top-results__cases a {
  display: block;
  width: 376px;
}

.p-top-results__cases img {
  width: 376px;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
  transition: opacity .3s ease;
}

.p-top-results__cases strong,
.p-top-results__cases span {
  display: block;
  width: 100%;
}

.p-top-results__cases strong {
  margin-top: 16px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.p-top-results__cases span {
  margin-top: 4px;
  font-size: 18px;
  line-height: 20px;
}

.p-top-results__cases a:hover img,
.p-top-results__cases a:focus-visible img {
  opacity: .82;
}

.p-top-results__button {
  position: absolute;
  top: 1106px;
  left: 50%;
  width: 236px;
  height: 50px;
  transform: translateX(-50%);
}

/* ===== お知らせ ===== */

.p-top-news {
  height: 579px;
  padding: 81px 0 0;
  background: var(--surface);
}

.p-top-news__inner {
  position: relative;
  width: 960px;
  height: 419px;
  margin: 0 auto;
}

.p-top-news h2 {
  width: 100%;
}

.c-list-news {
  display: flex;
  width: 960px;
  margin-top: 56px;
  flex-direction: column;
  gap: 16px;
}

.c-list-news li {
  width: 100%;
}

.c-list-news a {
  display: flex;
  width: 100%;
  height: 67px;
  padding: 20px 24px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.c-list-news__meta {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.c-list-news time {
  width: 79px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
}

.c-list-news__category {
  display: flex;
  width: 68px;
  height: 25px;
  flex: 0 0 68px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: var(--primary);
  background: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.c-list-news strong {
  min-width: 0;
  flex: 1 1 auto;
  margin-left: 24px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .3s ease;
}

.c-list-news a:hover strong,
.c-list-news a:focus-visible strong {
  color: var(--primary);
}

.p-top-news__button {
  width: 236px;
  height: 50px;
  margin: 48px auto 0;
}
/* ===== お問い合わせ ===== */

.c-box-contact {
  position: relative;
  height: 296px;
  padding: 56px 0 0;
  overflow: hidden;
  color: #fff;
  background-color: var(--primary);
  background-image: url("../images/contact-pc.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}

.c-box-contact__heading {
  position: relative;
  z-index: 2;
  width: 960px;
  margin: 0 auto;
  text-align: center;
}

.c-box-contact__heading > p {
  display: none;
}

.c-box-contact__heading > p span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.c-box-contact__heading h2 {
  margin-top: 0;
  font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.c-box-contact__body {
  position: relative;
  z-index: 3;
  display: flex;
  width: 713px;
  margin: 24px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.c-box-contact__body > div {
  width: 414px;
  padding: 0;
}

.c-box-contact__body h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.c-box-contact__body p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
}

.c-box-contact__button {
  display: flex;
  width: 252px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 25px;
  color: var(--primary);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: color .3s ease, background-color .3s ease;
}

/* position:relative は封筒のフタ（::before/::after の斜線）の配置基準として必須 */
.c-box-contact__button > i {
  display: none;
}

.c-box-contact__button > i::after,
.c-box-contact__button > i::before {
  position: absolute;
  top: 1px;
  width: 10px;
  height: 2px;
  background: currentcolor;
  content: "";
}

.c-box-contact__button > i::before {
  left: 0;
  transform: rotate(35deg);
}

.c-box-contact__button > i::after {
  right: 0;
  transform: rotate(-35deg);
}

.c-box-contact__button > span {
  margin-left: 0;
  line-height: 1;
}

.c-box-contact__button b {
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentcolor;
}

.c-box-contact__button:hover,
.c-box-contact__button:focus-visible {
  color: #fff;
  background: transparent;
}

/* ===== フッター ===== */

.c-footer {
  position: relative;
  height: 274px;
  padding: 0;
  background: #fff;
}

.c-footer__inner {
  position: relative;
  width: 960px;
  height: 274px;
  margin: 0 auto;
  padding-top: 56px;
}

.c-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-footer__brand {
  width: 220px;
}

.c-footer__brand img {
  width: 220px;
  height: auto;
}

.c-footer__nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transform: none;
}

.c-footer__nav a,
.c-footer__company a,
.c-footer__legal a {
  transition: color .3s ease;
}

.c-footer__nav a:hover,
.c-footer__nav a:focus-visible,
.c-footer__company a:hover,
.c-footer__legal a:hover {
  color: var(--primary);
}

.c-footer__bottom {
  display: contents;
  margin-top: 0;
}

.c-footer__company {
  display: contents;
  width: auto;
}

.c-footer__company > img {
  position: absolute;
  top: 147px;
  right: 0;
  width: 96px;
  height: auto;
}

.c-footer__company p,
.c-footer__company a,
.c-footer__legal {
  font-size: 13px;
  line-height: 21px;
}

.c-footer__company p {
  position: absolute;
  top: 101px;
  left: 0;
  width: 379px;
  margin-top: 0;
}

.c-footer__company a {
  display: none;
}

.c-footer__legal {
  display: contents;
  width: auto;
  transform: none;
}

.c-footer__legal > div {
  position: absolute;
  top: 100px;
  right: 0;
  display: flex;
  gap: 24px;
  white-space: nowrap;
}

.c-footer__legal a:first-child {
  display: inline-flex;
  gap: 4px;
}

.c-footer__legal > p {
  position: absolute;
  right: 0;
  bottom: 37px;
  left: 0;
  margin-top: 0;
  text-align: center;
}

/* ===== サービス詳細 ===== */

.feature {
  --layout-width: 100%;
}

.u-sp-only {
  display: none;
}

.c-page-heading {
  position: relative;
  height: 208px;
  overflow: hidden;
  color: #fff;
  background-color: #02a6ac;
  background-image: url("../images/page_title.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}

.c-page-heading__inner {
  position: relative;
  z-index: 1;
  width: 960px;
  margin: 0 auto;
  padding-top: 60px;
}

.c-page-heading h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.c-page-heading p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 28px;
}

.p-feature-nav {
  display: flex;
  width: 960px;
  height: 50px;
  margin: 56px auto 0;
  align-items: stretch;
  gap: 16px;
}

.p-feature-nav a {
  display: flex;
  height: 50px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--primary);
  border-radius: 25px;
  color: var(--primary);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease;
}

.p-feature-nav a:nth-child(1),
.p-feature-nav a:nth-child(2) {
  width: 188px;
}

.p-feature-nav a:nth-child(3) {
  width: 172px;
}

.p-feature-nav a:nth-child(4) {
  width: 140px;
}

.p-feature-nav i {
  width: 0;
  height: 0;
  border-top: 7px solid currentcolor;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.p-feature-nav a:hover,
.p-feature-nav a:focus-visible {
  color: #fff;
  background: var(--primary);
}

.p-feature-plan {
  width: 960px;
  margin-right: auto;
  margin-left: auto;
  scroll-margin-top: 96px;
}

.p-feature-plan--simple {
  height: 686px;
  margin-top: 72px;
}

.p-feature-plan--smart {
  height: 659px;
  margin-top: 79px;
}

.p-feature-plan__intro {
  position: relative;
  display: flex;
  min-height: 280px;
  justify-content: space-between;
}

.p-feature-plan__copy {
  width: 532px;
}

.p-feature-plan__copy h2 {
  position: relative;
  padding-left: 28px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.p-feature-plan__copy h2::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-bright);
  content: "";
}

.p-feature-plan__copy > p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
}

.p-feature-plan__copy > h3 {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.p-feature-plan__issues {
  margin-top: 10px;
}

.p-feature-plan__issues li {
  position: relative;
  min-height: 28px;
  padding-left: 32px;
  font-size: 18px;
  line-height: 28px;
}

.p-feature-plan__issues li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-bright);
  background: var(--secondary);
  content: "△";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.p-feature-plan__devices {
  position: relative;
  width: 352px;
  height: 260px;
  flex: 0 0 auto;
}

.p-feature-plan__devices--simple .p-feature-plan__tablet {
  position: absolute;
  top: 25px;
  left: 0;
  width: 300px;
  height: 200px;
  object-fit: contain;
}

.p-feature-plan__devices--simple .p-feature-plan__phone {
  position: absolute;
  z-index: 1;
  top: 77px;
  right: 0;
  width: 100px;
  height: 160px;
  object-fit: contain;
}

.p-feature-plan__devices--smart {
  display: flex;
  padding: 10px 24px 0 42px;
  align-items: flex-start;
  gap: 12px;
}

.p-feature-plan__devices--smart img {
  width: 118px;
  height: 228px;
  object-fit: contain;
}

.p-feature-plan__features {
  margin-top: 32px;
}

.p-feature-plan__features > h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.p-feature-plan__features > h3 strong {
  color: var(--primary-bright);
  font-size: 40px;
  line-height: 1;
}

.p-feature-plan__feature-list {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-feature-plan__feature-list article {
  text-align: center;
}

.p-feature-plan__feature-image {
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--secondary);
}

.p-feature-plan__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-feature-plan__feature-list h4 {
  margin: 16px -8px 0;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

.p-feature-plan__feature-list p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.p-feature-divider {
  width: 960px;
  height: 1px;
  margin: 80px auto 0;
  background: var(--primary);
}

.p-feature-effects {
  height: 1042px;
  margin-top: 80px;
  scroll-margin-top: 80px;
  background: #e7f8fa;
}

.p-feature-effects__inner {
  width: 960px;
  margin: 0 auto;
  padding-top: 104px;
}

.c-section-heading {
  position: relative;
  padding-left: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.c-section-heading::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-bright);
  content: "";
}

.p-feature-effects__lead {
  margin-top: 32px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}

.p-feature-effects__diagram {
  display: block;
}

.p-feature-effects__diagram--pc {
  width: 962px;
  height: 382px;
  margin-top: 40px;
  object-fit: contain;
}

.p-feature-effects__diagram--sp {
  display: none;
}

.p-feature-scenes {
  margin-top: 56px;
}

.p-feature-scenes h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.p-feature-scenes dl {
  margin: 24px 0 0;
}

.p-feature-scenes dl > div {
  display: grid;
  min-height: 44px;
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.p-feature-scenes dt {
  position: relative;
  color: var(--primary-bright);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.p-feature-scenes dt::after {
  position: absolute;
  top: 0;
  right: 18px;
  width: 2px;
  height: 31px;
  background: var(--primary-bright);
  content: "";
}

.p-feature-scenes dd {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

.p-feature-scenes dd span + span::before {
  content: "　";
}

.p-feature-functions {
  scroll-margin-top: 80px;
}

.p-feature-functions__inner {
  width: 960px;
  margin: 0 auto;
  padding: 80px 0 103px;
}

.p-feature-functions__scroll {
  width: 713px;
  margin: 8px auto 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.p-feature-functions table {
  width: 713px;
  height: 673px;
  border-spacing: 0;
  border-collapse: separate;
  color: var(--text);
  table-layout: fixed;
}

.p-feature-functions thead {
  height: 157px;
}

.p-feature-functions thead td {
  width: 295px;
  border-bottom: 1px solid #c8cccc;
}

.p-feature-functions thead th {
  width: 209px;
  padding: 14px 8px 10px;
  border-top: 1px solid var(--primary-bright);
  border-right: 1px solid var(--primary-bright);
  border-bottom: 1px solid #c8cccc;
  background: #f0fbfc;
  color: var(--primary-bright);
  font-size: 16px;
  vertical-align: bottom;
}

.p-feature-functions thead th:nth-child(2) {
  border-left: 1px solid var(--primary-bright);
  border-radius: 8px 0 0 0;
}

.p-feature-functions thead th:last-child {
  border-radius: 0 8px 0 0;
}

.p-feature-functions__visual {
  position: relative;
  display: block;
  width: 126px;
  height: 94px;
  margin: 0 auto 4px;
}

.p-feature-functions__visual img {
  position: absolute;
  object-fit: contain;
}

.p-feature-functions__visual--simple img:first-child {
  top: 12px;
  left: 0;
  width: 118px;
  height: 79px;
}

.p-feature-functions__visual--simple img:last-child {
  z-index: 1;
  top: 36px;
  right: 0;
  width: 38px;
  height: 61px;
}

.p-feature-functions__visual--smart img {
  top: 0;
  left: 37px;
  width: 52px;
  height: 94px;
}

.p-feature-functions thead span {
  display: block;
}

.p-feature-functions tbody tr {
  height: 43px;
}

.p-feature-functions tbody th {
  width: 295px;
  padding: 0 32px;
  border-bottom: 1px solid #c8cccc;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.p-feature-functions tbody th:first-child {
  border-left: 1px solid #c8cccc;
}

.p-feature-functions tbody td {
  width: 209px;
  border-right: 1px solid var(--primary-bright);
  border-bottom: 1px solid #c8cccc;
  color: var(--primary-bright);
  background: #f0fbfc;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-feature-functions tbody td:first-of-type {
  border-left: 1px solid var(--primary-bright);
}

.p-feature-functions tbody tr:last-child th {
  border-radius: 0 0 0 8px;
}

.p-feature-functions tbody tr:last-child td:nth-of-type(1) {
  border-radius: 0 0 0 8px;
}

.p-feature-functions tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

.p-feature-options {
  height: 857px;
  margin-top: 72px;
}

.p-feature-options > h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

.p-feature-options__list {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.p-feature-options__list article {
  height: 360px;
  padding: 24px 32px;
  border-radius: 8px;
  background: var(--surface);
}

.p-feature-options__list img {
  width: 100%;
  height: 186px;
  object-fit: contain;
}

.p-feature-options__list h4 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.p-feature-options__list p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
}

.p-feature-options__note {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}

/* ===== 導入実績 ===== */

.case {
  --layout-width: 100%;
}

.p-case-main {
  background: #f4fcfc;
}

.p-case-main__inner {
  width: 960px;
  margin: 0 auto;
  padding: 58px 0 103px;
}

.p-case-filter {
  height: 183px;
}

.p-case-filter--sp {
  display: none;
}

.p-case-filter fieldset {
  display: flex;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 0;
  align-items: center;
}

.p-case-filter fieldset + fieldset {
  margin-top: 16px;
}

.p-case-filter legend {
  width: 114px;
  flex: 0 0 114px;
  float: left;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
}

.p-case-filter__options {
  display: flex;
  height: 35px;
  align-items: center;
  gap: 12px;
}

.p-case-filter__options label {
  position: relative;
  display: block;
  height: 35px;
  cursor: pointer;
}

.p-case-filter__options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.p-case-filter__options span {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--primary);
  border-radius: 18px;
  color: var(--primary);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease;
}

.p-case-filter__options input:checked + span,
.p-case-filter__options label:hover span {
  color: #fff;
  background: var(--primary);
}

.p-case-filter__options input:focus-visible + span {
  outline: 3px solid #ffb000;
  outline-offset: 3px;
}

.p-case-filter__result {
  margin-top: 25px;
  font-size: 16px;
  line-height: 21px;
}

.p-case-regions {
  margin-top: 56px;
}

.p-case-region + .p-case-region {
  margin-top: 64px;
}

.p-case-region {
  height: 398px;
}

.p-case-region h2 {
  display: flex;
  height: 29px;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.p-case-region h2 > span {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--primary-bright);
}

.p-case-region__grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, 298px);
  gap: 32px;
}

.p-case-card {
  position: relative;
  height: 334px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}

.p-case-card__visual {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #d8f2f3;
}

.p-case-card__movie {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 68px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 6px;
  color: #fff;
  background: #ff7885;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.p-case-card__visual--simple .p-case-card__tablet {
  position: absolute;
  top: 26px;
  left: 47px;
  width: 192px;
  height: auto;
}

.p-case-card__visual--simple .p-case-card__phone {
  position: absolute;
  z-index: 1;
  top: 55px;
  left: 182px;
  width: 70px;
  height: auto;
}

.p-case-card__visual--smart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-case-card__visual--smart > img {
  width: 61px;
  height: auto;
}

.p-case-card__body {
  position: static;
  height: 166px;
  padding: 24px;
}

.p-case-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.p-case-card__title h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.p-case-card__title span {
  position: relative;
  padding-left: 15px;
  color: #8a9292;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
}

.p-case-card__title span::before {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1px solid currentcolor;
  border-radius: 50%;
  content: "";
}

.p-case-card__title span::after {
  position: absolute;
  top: 14px;
  left: 0;
  width: 11px;
  height: 5px;
  border: 1px solid currentcolor;
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
  content: "";
}

.p-case-card__body > p {
  margin-top: 4px;
  color: #858c8c;
  font-size: 14px;
  line-height: 20px;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.p-case-card__body > a {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 280px 0 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  isolation: isolate;
  line-height: 1;
  transition: color .3s ease;
}

.p-case-card__body > a::before {
  position: absolute;
  z-index: -1;
  bottom: 24px;
  left: 90px;
  width: 118px;
  height: 30px;
  border: 1px solid var(--primary);
  border-radius: 15px;
  background: var(--primary);
  content: "";
  transition: background-color .3s ease;
}

.p-case-card__body > a i {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentcolor;
}

.p-case-card:hover .p-case-card__body > a,
.p-case-card__body > a:focus-visible {
  color: var(--primary);
}

.p-case-card:hover .p-case-card__body > a::before,
.p-case-card__body > a:focus-visible::before {
  background: #fff;
}

/* ===== 導入実績詳細 ===== */

.p-case-detail-main {
  margin-bottom: 52px;
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-case-detail-main__inner {
  width: 960px;
  margin: 0 auto;
}

.p-case-detail-profile {
  padding: 48px 60px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-case-detail-profile__head {
  padding-bottom: 20px;
  box-shadow: inset 0 -1px #cbd4d4;
}

.p-case-detail-profile__head h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.p-case-detail-profile__meta {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 16px;
  color: #828585;
  font-size: 14px;
  line-height: 15px;
}

.p-case-detail-profile__population {
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
}

.p-case-detail-profile__population::before {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: 1px solid currentcolor;
  border-radius: 50%;
  content: "";
}

.p-case-detail-profile__population::after {
  position: absolute;
  top: 10px;
  left: 1px;
  width: 12px;
  height: 5px;
  border: 1px solid currentcolor;
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
  content: "";
}

.p-case-detail-profile__tags {
  display: flex;
  gap: 4px;
}

.p-case-detail-profile__body {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 24px;
}

.p-case-detail-profile__descriptions {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  line-height: 27px;
}

.p-case-detail-profile__descriptions h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.p-case-detail-profile__descriptions p {
  margin-top: 4px;
}

.p-case-detail-profile__devices {
  position: relative;
  width: 390px;
  height: 268.184px;
  flex: 0 0 390px;
  overflow: hidden;
}

.p-case-detail-profile__tablet {
  position: absolute;
  top: -13.22px;
  left: -15.11px;
  width: 405.109px;
  height: auto;
  max-width: none;
}

.p-case-detail-profile__phone {
  position: absolute;
  top: 43.44px;
  left: 259.68px;
  width: 149.201px;
  height: auto;
  max-width: none;
}

.p-case-detail-voice {
  width: 960px;
  margin: 45.816px auto 0;
  padding: 0 60px;
}

.p-case-detail-voice > h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.p-case-detail-voice > h2 > span {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--primary-bright);
}

.p-case-detail-voice__content {
  margin-top: 24px;
}

.p-case-detail-voice__text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.p-case-detail-voice__text p {
  margin-top: 8px;
  font-size: 18px;
  line-height: 27px;
}

.p-case-detail-voice__movie {
  width: 840px;
  height: 474px;
  margin: 20px 0 0;
  overflow: hidden;
  border-radius: 8px;
}

.p-case-detail-voice__movie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case-detail-main--kikuchi {
  margin-bottom: 0;
  padding-bottom: 159.545px;
}

.p-case-detail-voice--kikuchi {
  margin-top: 54.816px;
}

.p-case-detail-voice--kikuchi .p-case-detail-voice__text p {
  margin-top: 16px;
}

.p-case-detail-voice--kikuchi .p-case-detail-voice__movie {
  margin-top: 24px;
}

.p-case-detail-voice__movie--sp-secondary {
  display: none;
}

.p-case-detail-main--ine {
  margin-bottom: -1px;
}

.p-case-detail-voice--ine {
  margin-top: 54.816px;
}

.p-case-related {
  display: flex;
  width: 840px;
  height: 160px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-case-related__image {
  width: 284px;
  height: auto;
  flex: 0 0 284px;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.p-case-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case-related__body {
  display: flex;
  width: 556px;
  height: 160px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  gap: 8px;
}

.p-case-related__body h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.p-case-related__body p {
  font-size: 15px;
  line-height: 22px;
}

.p-case-article {
  width: 960px;
  margin: 24px auto 0;
  padding: 0 60px;
}

.p-case-article__lead-image {
  width: 840px;
  height: 474.486px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.p-case-article__lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case-interview {
  margin-top: 80px;
}

.p-case-interview__heading p {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.p-case-interview__heading h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.p-case-interview__content {
  margin-top: 16px;
}

.p-case-interview__person,
.p-case-interview__scene {
  margin: 0;
}

.p-case-interview__person {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-case-interview__image {
  position: relative;
  display: block;
  width: 840px;
  overflow: hidden;
  border-radius: 8px;
}

.p-case-interview__image img {
  position: absolute;
  max-width: none;
}

.p-case-interview__image--nonaka {
  height: 503px;
}

.p-case-interview__image--nonaka img {
  top: -2.36%;
  left: -2.21%;
  width: 103.85%;
  height: 136.43%;
}

.p-case-interview__image--tablet {
  height: 494px;
}

.p-case-interview__image--tablet img {
  top: -6.85%;
  left: -1.55%;
  width: 104.45%;
  height: 109.67%;
}

.p-case-interview__image--kawashima {
  height: 518px;
}

.p-case-interview__image--kawashima img {
  top: -2.93%;
  left: -2.7%;
  width: 104.25%;
  height: 106.44%;
}

.p-case-interview figcaption {
  font-size: 14px;
  line-height: 21px;
}

.p-case-interview__body {
  margin-top: 24px;
  font-size: 18px;
  line-height: 27px;
}

.p-case-interview__body i {
  display: block;
  height: 27px;
}

.p-case-interview--operator .p-case-interview__heading p {
  line-height: 27px;
}

.p-case-interview--operator .p-case-interview__content {
  margin-top: 12px;
}

.p-case-interview__media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== よくある質問 ===== */

.faq {
  --layout-width: 100%;
}

.faq .l-container {
  padding-bottom: 53px;
}

.p-faq-main {
  margin-bottom: -1px;
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-faq-main__inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  flex-direction: column;
  gap: 24px;
}

.p-faq-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-faq-item summary {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  transition: background-color .3s ease, color .3s ease;
}

.p-faq-item summary::-webkit-details-marker {
  display: none;
}

.p-faq-item[open] summary {
  min-height: 0;
  align-items: center;
  padding-bottom: 0;
}

.p-faq-item__question {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.p-faq-item__question b,
.p-faq-item__answer b {
  flex: 0 0 auto;
  color: var(--primary-bright);
  font-size: 20px;
  font-weight: 700;
}

.p-faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.p-faq-item__icon::before,
.p-faq-item__icon::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-bright);
  content: "";
  transition: transform .3s ease;
}

.p-faq-item__icon::after {
  transform: rotate(90deg);
}

.p-faq-item[open] .p-faq-item__icon::after {
  transform: rotate(90deg) scaleX(0);
}

.p-faq-item.is-closing .p-faq-item__icon::after {
  transform: rotate(90deg);
}

.p-faq-item__answer {
  display: flex;
  margin-top: 8px;
  padding: 0 50px 20px 24px;
  align-items: flex-start;
  gap: 8px;
  font-size: 18px;
  line-height: 27px;
}

.p-faq-item__answer p {
  min-width: 0;
  flex: 1 1 auto;
}

/* ===== お知らせ一覧 ===== */

.news {
  --layout-width: 100%;
}

.p-news-main {
  margin-bottom: -1px;
  padding: 56px 0 112px;
  background: #f4fcfc;
}

.p-news-main__inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.p-news-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.p-news-filter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.p-news-filter h2 {
  display: none;
}

.p-news-filter__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-news-filter__controls button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: var(--primary);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-news-filter__controls button:hover,
.p-news-filter__controls button:focus-visible,
.p-news-filter__controls button.is-active {
  color: #fff;
  background: var(--primary);
}

.p-news-filter__result {
  font-size: 15px;
  line-height: 17px;
}

.p-news-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.p-news-card[hidden] {
  display: none;
}

.p-news-card a {
  display: flex;
  min-height: 67px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
  transition: background-color .3s ease, box-shadow .3s ease;
}

.p-news-card__meta {
  display: flex;
  width: 155px;
  flex: 0 0 155px;
  align-items: center;
  gap: 8px;
}

.p-news-card__meta time {
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.p-news-card__meta > span {
  display: flex;
  width: 68px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: var(--primary);
  background: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-news-card strong {
  margin-left: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  transition: color .3s ease;
}

.p-news-card a:hover,
.p-news-card a:focus-visible {
  background: #f9ffff;
  box-shadow: 0 2px 8px rgb(2 121 126 / 20%);
}

.p-news-card a:hover strong,
.p-news-card a:focus-visible strong {
  color: var(--primary);
}

.p-news-pagination {
  display: flex;
  align-items: center;
  gap: 28px;
}

.p-news-pagination__arrow,
.p-news-pagination__pages a {
  position: relative;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-news-pagination__arrow::before {
  width: 0;
  height: 0;
  content: "";
}

.p-news-pagination__arrow.is-prev::before {
  margin-right: 2px;
  border-top: 4px solid transparent;
  border-right: 6px solid currentcolor;
  border-bottom: 4px solid transparent;
}

.p-news-pagination__arrow.is-next::before {
  margin-left: 2px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentcolor;
}

.p-news-pagination__arrow:hover,
.p-news-pagination__arrow:focus-visible,
.p-news-pagination__pages a:hover,
.p-news-pagination__pages a:focus-visible,
.p-news-pagination__pages a.is-current {
  color: #fff;
  background: var(--primary);
}

.p-news-pagination__pages {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-news-pagination__pages > span {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 2px;
}

.p-news-pagination__counter {
  display: none;
}

/* ===== お知らせ詳細 ===== */

.news-detail {
  --layout-width: 100%;
}

.p-news-detail-main {
  margin-bottom: -1px;
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-news-detail-main__inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-news-detail-card {
  width: 100%;
  padding: 48px 60px;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgb(211 211 216 / 50%), 0 1px 3px #c9c9c9;
}

.p-news-detail-card__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.p-news-detail-card__meta {
  display: flex;
  height: 27px;
  align-items: center;
  gap: 8px;
}

.p-news-detail-card__meta time {
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.p-news-detail-card__meta span {
  display: flex;
  min-width: 68px;
  height: 25px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: var(--primary);
  background: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-news-detail-card h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.p-news-detail-card__image {
  width: 100%;
  height: 407px;
  margin-top: 24px;
  background: var(--placeholder);
}

.p-news-detail-card__body {
  margin-top: 24px;
  font-size: 18px;
  line-height: 27px;
}

.p-news-detail-back {
  display: flex;
  width: 220px;
  height: 50px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px 0 20px;
  gap: 15px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-news-detail-back i {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
}

.p-news-detail-back i::before {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 8px;
  height: 7px;
  background: currentcolor;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
}

.p-news-detail-back:hover,
.p-news-detail-back:focus-visible {
  color: var(--primary);
  background: #fff;
}

/* ===== お問い合わせ ===== */

.contact {
  --layout-width: 100%;
}

.p-contact-main {
  margin-bottom: -1px;
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-contact-main__inner {
  width: 960px;
  margin: 0 auto;
  transform: translateX(3px);
}

.p-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-contact-lead {
  width: 840px;
  font-size: 18px;
  line-height: 27px;
}

.p-contact-form {
  display: flex;
  width: 960px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-contact-form__card {
  display: flex;
  width: 960px;
  flex-direction: column;
  align-items: center;
  padding: 48px 60px;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-contact-field {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.p-contact-field:first-child {
  gap: 5px;
}

.p-contact-field label {
  display: flex;
  min-height: 27px;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.p-contact-field label span {
  color: #ff4c5e;
  font-weight: 400;
}

.p-contact-field input,
.p-contact-field textarea {
  width: 100%;
  height: 59px;
  padding: 16px 24px;
  border: 1px solid #d4d9d9;
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font-size: 18px;
  line-height: 27px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.p-contact-field input::placeholder,
.p-contact-field textarea::placeholder {
  color: #d4d9d9;
  opacity: 1;
}

.p-contact-field input:hover,
.p-contact-field textarea:hover,
.p-contact-field input:focus,
.p-contact-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgb(2 121 126 / 12%);
  outline: 0;
}

.p-contact-field--message textarea {
  height: 130px;
  resize: none;
}

.p-contact-privacy {
  display: flex;
  width: 100%;
  min-height: 154px;
  padding: 32px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d4d9d9;
}

.p-contact-privacy > p {
  width: 100%;
  font-size: 14px;
  line-height: 21px;
}

.p-contact-consent {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
}

.p-contact-consent input {
  width: 32px;
  height: 32px;
  margin: 0;
  flex: 0 0 32px;
  appearance: none;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.p-contact-consent input:checked {
  border-color: var(--primary);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5 10 17l9-10' fill='none' stroke='%2302797e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.p-contact-consent input:hover,
.p-contact-consent input:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(2 121 126 / 15%);
  outline: 0;
}

.p-contact-consent a {
  color: #186df5;
  text-decoration: underline;
}

.p-contact-submit {
  display: flex;
  width: 220px;
  height: 50px;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 0 30px;
  gap: 15px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-contact-submit i {
  width: 8px;
  height: 7px;
  flex: 0 0 8px;
  background: currentcolor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-contact-submit:hover,
.p-contact-submit:focus-visible {
  color: var(--primary);
  background: #fff;
}

/* ===== お問い合わせ確認 ===== */

.contact-confirm {
  --layout-width: 100%;
}

.p-contact-confirm-main {
  margin-bottom: -1px;
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-contact-confirm-main__inner {
  width: 960px;
  margin: 0 auto;
  transform: translateX(1px);
}

.p-contact-confirm-lead {
  width: 840px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 27px;
}

.p-contact-confirm-content {
  display: flex;
  width: 960px;
  margin-top: 16px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-contact-confirm-card {
  display: flex;
  width: 960px;
  margin: 0;
  padding: 48px 60px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-contact-confirm-card > div {
  width: 100%;
  font-weight: 700;
}

.p-contact-confirm-card dt,
.p-contact-confirm-card dd {
  margin: 0;
  line-height: 27px;
}

.p-contact-confirm-card dt {
  color: #cacaca;
  font-size: 15px;
}

.p-contact-confirm-card dd {
  color: var(--text);
  font-size: 18px;
}

.p-contact-confirm-action {
  display: flex;
  width: 262px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-contact-confirm-submit {
  display: flex;
  width: 140px;
  height: 50px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 0 30px;
  gap: 15px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: #fff;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-contact-confirm-submit i {
  width: 8px;
  height: 7px;
  flex: 0 0 8px;
  background: currentcolor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-contact-confirm-submit:hover,
.p-contact-confirm-submit:focus-visible {
  color: var(--primary);
  background: #fff;
}

.p-contact-confirm-edit {
  width: 262px;
  font-size: 15px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  text-decoration: underline;
  transition: color .3s ease;
}

.p-contact-confirm-edit:hover,
.p-contact-confirm-edit:focus-visible {
  color: var(--primary);
}

/* ===== お問い合わせ完了 ===== */

.contact-complete {
  --layout-width: 100%;
}

.p-contact-complete-main {
  margin-bottom: -1px;
  padding: 67px 0 104px;
  background: #f4fcfc;
}

.p-contact-complete-main__inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  transform: translateX(1px);
}

.p-contact-complete-card {
  display: flex;
  width: 960px;
  padding: 48px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px #c9c9c9;
}

.p-contact-complete-card h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.p-contact-complete-card > div {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
}

.p-contact-complete-back {
  display: flex;
  width: 174px;
  height: 47px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 9px 0 30px;
  gap: 15px;
  border: 1px solid var(--primary);
  border-radius: 35px;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.p-contact-complete-back i {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background: currentcolor;
  clip-path: polygon(13% 9%, 87% 50%, 13% 75%);
}

.p-contact-complete-back:hover,
.p-contact-complete-back:focus-visible {
  color: var(--primary);
  background: #fff;
}

/* ===== 情報セキュリティ方針 ===== */

.security-policy {
  --layout-width: 100%;
}

.security-policy .l-container {
  margin-bottom: -1px;
}

.p-security-main {
  padding: 56px 0 104px;
  background: #f4fcfc;
}

.p-security-main__inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.p-security-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  gap: 64px;
}

.p-security-sections {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
}

.p-security-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-security-section h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
}

.p-security-section h2 i {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: #02a6ac;
}

.p-security-section h2 i:last-child {
  display: none;
}

.p-security-section__body,
.p-security-policy-list,
.p-security-signature {
  color: var(--text);
  font-size: 18px;
  line-height: 27px;
}

.p-security-section:first-child .p-security-section__body p:nth-child(2) {
  letter-spacing: .2px;
}

.p-security-policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  counter-reset: security-policy;
}

.p-security-policy-list li {
  display: flex;
  gap: 4px;
  counter-increment: security-policy;
}

.p-security-policy-list li::before {
  color: #02a6ac;
  content: counter(security-policy) ".";
  font-weight: 700;
}

.p-security-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-security-links a {
  color: #066cff;
  text-decoration: underline;
  transition: color .3s ease;
}

.p-security-links a::after {
  display: inline-block;
  margin-left: 3px;
  color: var(--text);
  content: "↗";
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.p-security-links a:hover,
.p-security-links a:focus-visible {
  color: var(--primary);
}

.p-security-signature {
  text-align: right;
}

.p-security-certificate {
  display: block;
  width: 408px;
  height: 316px;
  object-fit: cover;
}

.c-page-top {
  position: fixed;
  z-index: 80;
  right: 96px;
  bottom: 240px;
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-bright);
  border-radius: 50%;
  color: #fff;
  background: var(--primary-bright);
  box-shadow: 0 3px 8px rgb(0 0 0 / 18%);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: color .3s ease, background-color .3s ease, opacity .3s ease, transform .3s ease;
}

.c-page-top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.c-page-top::before {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-bottom: 6px solid currentcolor;
  border-left: 4px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.c-page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.c-page-top:hover,
.c-page-top:focus-visible {
  color: var(--primary-bright);
  background: #fff;
}

@media (max-width: 768px) {
  .l-container {
    width: 100%;
  }

  .c-header {
    position: sticky;
    height: 56px;
    background: #fff;
  }

  .c-header__inner {
    height: 56px;
    padding: 0 105px 0 20px;
  }

  .c-header__logo {
    width: 156px;
    height: auto;
  }

  .c-nav-global {
    display: none;
  }

  .c-header__menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 85px;
    height: 56px;
    padding: 10px 8px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    color: #fff;
    background: var(--primary);
  }

  .c-header__menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentcolor;
    transition: transform .3s ease, opacity .3s ease;
  }

  .c-header__menu em {
    margin-top: 0;
    font-size: 2.7778vw;
    font-style: normal;
    font-weight: 700;
  }

  .c-header__menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .c-header__menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .c-header__menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .c-nav-mobile {
    position: fixed;
    z-index: 100;
    top: 56px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    background: rgb(255 255 255 / 98%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
  }

  .c-nav-mobile[hidden] {
    display: none;
  }

  .c-nav-mobile.is-visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .c-nav-mobile ul {
    padding: 0 0 40px;
  }

  .c-nav-mobile a {
    display: flex;
    min-height: 56px;
    padding: 12px 24px;
    border-bottom: 1px solid #d4d9d9;
    align-items: center;
    font-size: 4.4444vw;
    font-weight: 700;
    line-height: 32px;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
  }

  .c-nav-mobile a.is-current {
    border-bottom: 2px solid var(--primary-bright);
    color: var(--primary-bright);
  }

  .c-nav-mobile li:last-child {
    margin: 24px 24px 0;
  }

  .c-nav-mobile li:last-child a {
    min-height: 50px;
    justify-content: center;
    padding: 9px 20px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: #fff;
    background: var(--primary);
    line-height: 30px;
  }

  .c-nav-mobile li:last-child a:hover,
  .c-nav-mobile li:last-child a:focus-visible,
  .c-nav-mobile li:last-child a.is-current {
    color: var(--primary);
    background: #fff;
  }

  .home .l-container {
    margin-bottom: -4px;
  }

  .p-top-hero {
    height: 421px;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    background-color: #f1fcfe;
  }

  .p-top-hero__background {
    top: 21px;
    left: calc(50% - 583px);
    width: 982px;
    height: 381px;
    transform: none;
  }

  .p-top-hero__mask {
    top: 389px;
    left: 0;
    width: 100%;
    height: auto;
    content: url("../images/hero-mask-sp.svg");
    transform: none;
  }

  .p-top-hero__people {
    z-index: 4;
    top: 161px;
    left: calc(50% - 78px);
    width: 167px;
    height: 207px;
  }

  .p-top-hero__copy {
    top: 41px;
    left: 24px;
    width: calc(100vw - 48px);
    text-align: left;
  }

  .p-top-hero__copy h1 {
    font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
    font-size: 7.7778vw;
    line-height: 31px;
  }

  .p-top-hero__copy h1 span:first-child {
    margin-right: -10px;
  }

  .p-top-hero__copy p {
    width: calc(100vw - 52px);
    margin: 9px 0 0 2px;
    font-family: "DENSO Sans", "Noto Sans JP", sans-serif;
    font-size: 4.4444vw;
    line-height: 24px;
    white-space: nowrap;
  }

  .p-top-hero__copy p span {
    margin-left: 0;
  }

  .p-top-hero__mockups {
    top: 320px;
    left: calc(50% - 125px);
    width: 251px;
    height: 116px;
    gap: 8px;
  }

  .p-top-hero__mock-link--phone {
    width: 56px;
    height: 115px;
  }

  .p-top-hero__mock-link--tablet {
    width: 186px;
    height: 115px;
  }

  .p-top-hero__mock-link:hover img,
  .p-top-hero__mock-link:focus-visible img {
    transform: translateY(-8px);
  }

  .p-top-hero__hover-label {
    display: none;
  }

  .p-top-about {
    display: block;
    height: 436px;
    margin: 0;
    padding: 0;
  }

  .p-top-about__copy {
    top: 24px;
    left: 24px;
    width: calc(100vw - 48px);
    margin: 0;
  }

  .p-top-about__copy h2 {
    font-size: 6.6667vw;
    line-height: 32px;
    text-align: center;
  }

  .p-top-about__copy p {
    width: calc(100vw - 48px);
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-about__image {
    top: 172px;
    left: 50%;
    width: 240px;
    height: 240px;
    margin: 0;
    transform: translateX(-50%);
  }

  .p-top-plans {
    height: 929px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .p-top-plans::before {
    top: -25px;
    left: 0;
    width: 100%;
    height: 1012px;
    background-image: url("../images/top-wave-sp.png");
    background-size: 100% 1012px;
    transform: none;
  }

  .p-top-plans__inner {
    width: calc(100vw - 48px);
    height: 929px;
  }

  .p-top-section-heading {
    height: 33px;
    gap: 10px;
    font-size: 6.1111vw;
    line-height: 33px;
  }

  .p-top-section-heading i {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .p-top-plans .p-top-section-heading {
    position: absolute;
    top: 48px;
    left: 50%;
    width: max(242px, calc(100vw - 120px));
    transform: translateX(-50%);
  }

  .p-top-plans .p-top-section-heading span {
    white-space: nowrap;
  }

  .p-top-plans__list {
    position: absolute;
    top: 89px;
    left: 0;
    display: block;
    width: calc(100vw - 48px);
    height: 710px;
    margin: 0;
  }

  .p-top-plans__item {
    position: absolute;
    left: 0;
    display: block;
    width: calc(100vw - 48px);
  }

  .p-top-plans__item--simple {
    top: 0;
    height: 312px;
  }

  .p-top-plans__item--smart {
    top: 352px;
    height: 358px;
  }

  .p-top-plans__visual {
    width: 312px;
    margin: 0 auto;
  }

  .p-top-plans__visual--simple {
    height: 182px;
  }

  .p-top-plans__visual--simple .p-top-plans__tablet {
    top: 2px;
    left: 15px;
    width: 262px;
    height: 175px;
  }

  .p-top-plans__visual--simple .p-top-plans__phone {
    top: 38px;
    left: 194px;
    width: 96px;
    height: 154px;
  }

  .p-top-plans__visual--smart {
    display: flex;
    height: 216px;
    padding: 1px 45px 0;
  }

  .p-top-plans__visual--smart img {
    width: 111px;
    height: 213px;
  }

  .p-top-plans__detail {
    position: absolute;
    left: 50%;
    width: max(312px, calc(100vw - 48px));
    margin: 0;
    gap: 4px;
    transform: translateX(-50%);
  }

  .p-top-plans__item--simple .p-top-plans__detail {
    top: 182px;
  }

  .p-top-plans__item--smart .p-top-plans__detail {
    top: 228px;
    gap: 4px;
  }

  .p-top-plans__detail h3 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-top-plans__detail p,
  .p-top-plans__item--smart .p-top-plans__detail p {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-plans__button {
    position: absolute;
    top: 823px;
    left: 50%;
    width: max(220px, 61.1111vw);
    height: 50px;
    margin: 0;
    transform: translateX(-50%);
  }

  .c-btn {
    height: 50px;
    font-size: 4.4444vw;
  }

  .p-top-plans__button .c-btn {
    width: 100%;
    margin: 0;
  }

  .p-top-results {
    height: calc(112.5vw + 789px);
    margin: 0;
    padding: 0;
  }

  .p-top-results > h2 {
    top: 56px;
  }

  .p-top-results__map-area {
    top: 113px;
    left: 24px;
    width: calc(100vw - 48px);
    height: 951px;
    transform: none;
  }

  .p-top-results__count {
    top: 16px;
    left: 50%;
    display: grid;
    width: 225px;
    height: 75px;
    grid-template-columns: max-content max-content max-content;
    grid-template-rows: 40px 36px;
    align-items: start;
    justify-content: center;
    transform: translateX(-50%);
    white-space: normal;
  }

  .p-top-results__count small {
    grid-column: 1;
    margin-top: 10px;
    font-size: 5vw;
    line-height: 30px;
  }

  .p-top-results__count strong {
    grid-column: 2;
    width: auto;
    margin: 0;
    font-size: 10vw;
    line-height: 40px;
    letter-spacing: 0;
  }

  .p-top-results__count span {
    display: contents;
    margin: 0;
    font-size: 4.4444vw;
    line-height: 24px;
    text-align: center;
  }

  .p-top-results__count span em {
    grid-column: 3;
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-results__count span b {
    position: absolute;
    top: 40px;
    left: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    width: 225px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
  }

  .p-top-results__map {
    position: absolute;
    top: 103px;
    left: 50%;
    width: 181px;
    height: 180px;
    transform: translateX(-50%);
  }

  .p-top-results__map img {
    width: 181px;
    height: 180px;
  }

  .p-top-results__legend {
    position: absolute;
    top: 294px;
    right: auto;
    bottom: auto;
    left: 0;
    display: grid;
    width: calc(100vw - 48px);
    height: 54px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 12px);
    gap: 9px 24px;
  }

  .p-top-results__legend > div {
    position: relative;
    display: flex;
    width: auto;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    padding-left: 14px;
    color: var(--text);
    font-size: 3.0556vw;
    font-weight: 700;
    line-height: 12px;
    transform: none;
    white-space: normal;
  }

  .p-top-results__legend > div:nth-child(n) {
    top: auto;
    left: auto;
  }

  .p-top-results__legend > div::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #02a6ac;
    content: "";
  }

  .p-top-results__legend dt,
  .p-top-results__legend dd {
    display: block;
    margin: 0;
  }

  .p-top-results__cases {
    top: 515px;
    left: 24px;
    width: calc(100vw - 48px);
    height: auto;
    transform: none;
  }

  .p-top-results__cases h3 {
    width: calc(100vw - 48px);
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-results__cases ul {
    display: flex;
    width: calc(100vw - 48px);
    margin-top: 16px;
    flex-direction: column;
    gap: 24px;
  }

  .p-top-results__cases li,
  .p-top-results__cases a,
  .p-top-results__cases img {
    width: calc(100vw - 48px);
  }

  .p-top-results__cases img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .p-top-results__cases li:nth-child(2) img {
    height: auto;
  }

  .p-top-results__cases strong {
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-results__cases span {
    margin-top: 0;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-top-results__button {
    top: auto;
    bottom: 56px;
    width: max(236px, 65.5556vw);
    height: 50px;
    margin: 0;
  }

  .p-top-news {
    height: 564px;
    margin: 0;
    padding: 24px;
  }

  .p-top-news__inner {
    width: calc(100vw - 48px);
    height: 484px;
  }

  .p-top-news h2 {
    width: calc(100vw - 48px);
  }

  .c-list-news {
    width: calc(100vw - 48px);
    margin-top: 24px;
    gap: 16px;
  }

  .c-list-news a {
    display: block;
    height: auto;
    min-height: 99px;
    padding: 20px;
    border-radius: 8px;
  }

  .c-list-news li:first-child a {
    height: 123px;
  }

  .c-list-news__meta {
    height: 27px;
  }

  .c-list-news time {
    font-size: 4.1667vw;
    line-height: 27px;
  }

  .c-list-news__category {
    font-size: 3.3333vw;
  }

  .c-list-news strong {
    display: block;
    width: 100%;
    margin: 8px 0 0;
    font-size: 4.4444vw;
    line-height: 24px;
    white-space: normal;
  }

  .p-top-news__button {
    width: max(236px, 65.5556vw);
    height: 50px;
    margin: 24px auto 0;
  }

  .p-top-results__button .c-btn,
  .p-top-news__button .c-btn {
    width: 100%;
  }


  .c-box-contact {
    height: 306px;
    min-height: 306px;
    padding: 40px 24px 0;
    border-radius: 0;
    background-image: url("../images/contact-sp.svg");
    background-position: center right;
  }

  .c-box-contact__heading,
  .c-box-contact__body {
    width: 100%;
    margin-left: 0;
  }

  .c-box-contact__heading {
    width: calc(100vw - 48px);
    padding: 0;
  }

  .c-box-contact__heading h2 {
    font-size: 6.6667vw;
    line-height: 32px;
  }

  .c-box-contact__body {
    display: block;
    width: calc(100vw - 48px);
    margin: 16px auto 0;
    padding: 0;
    text-align: left;
  }

  .c-box-contact__body > div {
    width: 100%;
    padding: 0;
  }

  .c-box-contact__body h3 {
    font-size: 5vw;
    line-height: 24px;
    text-align: center;
  }

  .c-box-contact__body p {
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .c-box-contact__button {
    width: clamp(252px, 70vw, 320px);
    height: 50px;
    margin: 24px auto 0;
    padding: 0 20px;
    font-size: 4.4444vw;
    white-space: nowrap;
  }

  .c-footer {
    height: clamp(386px, 97.2093vw, 418px);
    margin-bottom: 4px;
    padding: 24px;
  }

  .c-footer__inner {
    position: relative;
    width: 100%;
    height: clamp(338px, 86.0465vw, 370px);
    padding: 0;
  }

  .c-footer__top,
  .c-footer__bottom {
    display: contents;
  }

  .c-footer__brand {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 156px;
  }

  .c-footer__brand img {
    width: 100%;
    height: auto;
  }

  .c-footer__nav {
    position: absolute;
    top: 115px;
    left: 0;
    display: flex;
    width: calc(100vw - 48px);
    margin-top: 0;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 3.8889vw;
    line-height: 21px;
  }

  .c-footer__nav a {
    padding: 0;
    border-bottom: 0;
  }

  .c-footer__bottom {
    margin-top: 0;
  }

  .c-footer__company,
  .c-footer__legal {
    display: contents;
    width: auto;
  }

  .c-footer__legal {
    margin-top: 0;
  }

  .c-footer__legal > div {
    top: clamp(205px, 51.6279vw, 222px);
    right: auto;
    left: 0;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
    font-size: 3.8889vw;
    line-height: 21px;
    white-space: normal;
  }

  .c-footer__legal > p {
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 3.8889vw;
    line-height: 21px;
    text-align: center;
  }

  .c-footer__company > img {
    top: clamp(279px, 68.1395vw, 293px);
    right: auto;
    left: 0;
    width: 96px;
  }

  .c-footer__company p {
    top: 28px;
    left: 0;
    width: calc(100vw - 48px);
    font-size: 3.8889vw;
    line-height: 21px;
  }

  .u-pc-only {
    display: none;
  }

  .u-sp-only {
    display: inline;
  }

  .c-page-heading {
    height: 94px;
  }

  .c-page-heading__inner {
    width: calc(100vw - 48px);
    padding-top: 32px;
  }

  .c-page-heading h1 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .c-page-heading p {
    display: none;
  }

  .p-feature-nav {
    display: grid;
    width: calc(100vw - 48px);
    height: 130px;
    margin: 0 auto;
    padding: 24px 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 35px);
    gap: 12px;
  }

  .p-feature-nav a,
  .p-feature-nav a:nth-child(1),
  .p-feature-nav a:nth-child(2),
  .p-feature-nav a:nth-child(3),
  .p-feature-nav a:nth-child(4) {
    width: 100%;
    height: 35px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 18px;
    font-size: 3.3333vw;
  }

  .p-feature-nav i {
    border-top-width: 5px;
    border-right-width: 4px;
    border-left-width: 4px;
  }

  .p-feature-plan {
    width: 100%;
    overflow: hidden;
    scroll-margin-top: 64px;
  }

  .p-feature-plan--simple {
    height: 1613px;
    margin-top: 0;
    padding: 24px 24px;
  }

  .p-feature-plan--smart {
    height: 1625px;
    margin-top: 0;
    padding: 40px 24px;
  }

  .p-feature-plan__intro {
    display: grid;
    width: calc(100vw - 48px);
    align-content: start;
    justify-content: stretch;
  }

  .p-feature-plan--simple .p-feature-plan__intro {
    height: 569px;
  }

  .p-feature-plan--smart .p-feature-plan__intro {
    height: 617px;
  }

  .p-feature-plan__copy {
    display: contents;
    width: auto;
  }

  .p-feature-plan__copy h2 {
    order: 1;
    padding-left: 0;
    font-size: 6.1111vw;
    line-height: 33px;
    text-align: center;
  }

  .p-feature-plan__copy h2::before,
  .p-feature-plan__copy h2::after {
    position: relative;
    top: -2px;
    left: auto;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-radius: 50%;
    background: var(--primary-bright);
    content: "";
  }

  .p-feature-plan__copy > p {
    order: 3;
    margin-top: 4px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-plan__copy > h3 {
    order: 4;
    margin-top: 24px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-plan__issues {
    order: 5;
    margin-top: 8px;
  }

  .p-feature-plan__issues li {
    min-height: 24px;
    padding-left: 32px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-plan__issues li + li {
    margin-top: 8px;
  }

  .p-feature-plan__issues li::before {
    top: 0;
    width: 24px;
    height: 24px;
    font-size: 3.6111vw;
  }

  .p-feature-plan__devices {
    order: 2;
    margin-right: auto;
    margin-left: auto;
  }

  .p-feature-plan__devices--simple {
    width: 312px;
    height: 216px;
    margin-top: 4px;
  }

  .p-feature-plan__devices--simple .p-feature-plan__tablet {
    top: 0;
    left: 0;
    width: 297px;
    height: 198px;
  }

  .p-feature-plan__devices--simple .p-feature-plan__phone {
    top: 41px;
    right: 0;
    width: 109px;
    height: 175px;
  }

  .p-feature-plan__devices--smart {
    display: flex;
    width: 312px;
    height: 264px;
    margin-top: 4px;
    padding: 0;
    justify-content: center;
    gap: 8px;
  }

  .p-feature-plan__devices--smart img {
    width: 119px;
    height: 230px;
    margin-top: 14px;
  }

  .p-feature-plan__features {
    margin-top: 24px;
  }

  .p-feature-plan--simple .p-feature-plan__features {
    height: 972px;
  }

  .p-feature-plan--smart .p-feature-plan__features {
    height: 904px;
  }

  .p-feature-plan__features > h3 {
    font-size: 6.1111vw;
    line-height: 48px;
  }

  .p-feature-plan__features > h3 strong {
    font-size: 8.8889vw;
  }

  .p-feature-plan__feature-list {
    display: block;
    margin-top: 24px;
  }

  .p-feature-plan__feature-list article + article {
    margin-top: 32px;
  }

  .p-feature-plan__feature-image {
    width: 130px;
    height: 145px;
    overflow: visible;
    border-radius: 0;
    background: radial-gradient(circle at 50% calc(50% + 7px), var(--secondary) 0 65px, transparent 66px);
  }

  .p-feature-plan__feature-list h4 {
    margin: 8px 0 0;
    font-size: 5vw;
    line-height: 27px;
  }

  .p-feature-plan__feature-list p {
    margin-top: 4px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-divider {
    position: relative;
    z-index: 2;
    width: calc(100vw - 48px);
    height: 0;
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: 0 1px 0 var(--primary);
    transform: none;
  }

  .p-feature-effects {
    height: auto;
    margin-top: 0;
    scroll-margin-top: 56px;
  }

  .p-feature-effects__inner {
    width: calc(100vw - 48px);
    height: auto;
    padding: 40px 0;
  }

  .c-section-heading {
    padding-left: 0;
    font-size: 6.6667vw;
    line-height: 33px;
    text-align: center;
  }

  .c-section-heading::before,
  .c-section-heading::after {
    position: relative;
    top: -2px;
    left: auto;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-radius: 50%;
    background: var(--primary-bright);
    content: "";
  }

  .p-feature-effects__lead {
    margin-top: 24px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-effects__diagram--pc {
    display: none;
  }

  .p-feature-effects__diagram--sp {
    display: block;
    width: calc(100vw - 48px);
    height: auto;
    margin-top: 24px;
  }

  .p-feature-effects__diagram--sp img:first-child {
    width: 280px;
    height: 266px;
    margin: 0 auto;
  }

  .p-feature-effects__diagram--sp img:last-child {
    width: calc(100vw - 48px);
    height: auto;
    margin-top: 32px;
    aspect-ratio: 312 / 249;
  }

  .p-feature-scenes {
    height: auto;
    margin-top: 31px;
  }

  .p-feature-scenes h3 {
    font-size: 5vw;
    line-height: 27px;
  }

  .p-feature-scenes dl {
    margin-top: 16px;
  }

  .p-feature-scenes dl > div {
    display: block;
    min-height: 0;
  }

  .p-feature-scenes dl > div + div {
    margin-top: 16px;
  }

  .p-feature-scenes dt {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-scenes dt::after {
    display: none;
  }

  .p-feature-scenes dd {
    margin-top: 4px;
    padding-left: 12px;
    border-left: 2px solid var(--primary-bright);
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-scenes dd span {
    display: block;
  }

  .p-feature-scenes dd span + span::before {
    content: none;
  }

  .p-feature-functions {
    height: auto;
    scroll-margin-top: 56px;
    overflow: visible;
  }

  .p-feature-functions__inner {
    width: 100%;
    height: auto;
    padding: 40px 0 56px;
  }

  .p-feature-functions__scroll {
    width: calc(100% - 24px);
    height: auto;
    margin: 32px 0 0 24px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .p-feature-functions__scroll::-webkit-scrollbar {
    display: none;
  }

  .p-feature-functions table {
    width: 610px;
    height: auto;
    margin: 0;
  }

  .p-feature-functions thead {
    height: 132px;
  }

  .p-feature-functions thead td {
    width: 218px;
  }

  .p-feature-functions thead th:nth-child(2) {
    width: 208px;
  }

  .p-feature-functions thead th:last-child {
    width: 184px;
  }

  .p-feature-functions__visual {
    height: 87px;
    margin-bottom: 4px;
  }

  .p-feature-functions tbody tr {
    height: 45px;
  }

  .p-feature-functions tbody th {
    width: 218px;
    padding: 0 33px;
    font-size: 4.1667vw;
  }

  .p-feature-functions tbody td:first-of-type {
    width: 208px;
  }

  .p-feature-functions tbody td:last-child {
    width: 184px;
  }

  .p-feature-options {
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .p-feature-options > h3 {
    width: calc(100vw - 48px);
    margin: 0 auto;
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-feature-options__list {
    display: block;
    width: calc(100vw - 48px);
    margin: 16px auto 0;
  }

  .p-feature-options__list article {
    height: auto;
    min-height: 292.962px;
    padding: 24px;
    border-radius: 8px;
  }

  .p-feature-options__list article + article {
    margin-top: 24px;
  }

  .p-feature-options__list article:last-child {
    height: auto;
    min-height: 316.962px;
  }

  .p-feature-options__list img {
    height: 112.962px;
    object-fit: cover;
  }

  .p-feature-options__list h4 {
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-options__list p {
    margin-top: 4px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-feature-options__note {
    width: calc(100vw - 48px);
    margin: 16px auto 0;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-main__inner {
    width: calc(100vw - 48px);
    padding: 24px 0 56px;
  }

  .p-case-filter {
    height: auto;
    min-height: 256px;
  }

  .p-case-filter--pc {
    display: none;
  }

  .p-case-filter--sp {
    display: flex;
    flex-direction: column;
  }

  .p-case-filter--sp h2 {
    display: flex;
    height: 35px;
    align-items: flex-start;
    gap: 4px;
    font-size: 4.4444vw;
    font-weight: 700;
    line-height: 24px;
    border-bottom: 1px solid var(--primary-bright);
  }

  .p-case-filter--sp h2 > span {
    position: relative;
    width: 15px;
    height: 15px;
    border-top: 6px solid var(--text);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    margin-top: 7px;
  }

  .p-case-filter--sp h2 > span::after {
    position: absolute;
    top: -6px;
    left: -1px;
    width: 2px;
    height: 11px;
    background: var(--text);
    content: "";
  }

  .p-case-filter--sp details:first-of-type {
    margin-top: 0;
  }

  .p-case-filter--sp details {
    position: relative;
    flex: 0 0 auto;
    min-height: 56px;
    border-bottom: 1px solid #c7d8d8;
  }

  .p-case-filter--sp details:last-of-type {
    border-bottom: 0;
  }

  .p-case-filter--sp summary {
    position: relative;
    display: flex;
    height: 55px;
    align-items: center;
    padding: 0 8px 0 20px;
    font-size: 4.4444vw;
    font-weight: 700;
    line-height: 24px;
    list-style: none;
    cursor: pointer;
  }

  .p-case-filter--sp summary::-webkit-details-marker {
    display: none;
  }

  .p-case-filter--sp summary > span {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
  }

  .p-case-filter--sp summary > span::before,
  .p-case-filter--sp summary > span::after {
    position: absolute;
    top: 15px;
    left: 9px;
    width: 14px;
    height: 2px;
    background: #fff;
    content: "";
  }

  .p-case-filter--sp summary > span::after {
    transform: rotate(90deg);
    transition: transform .3s ease;
  }

  .p-case-filter--sp details[open] summary > span::after {
    transform: rotate(0);
  }

  .p-case-filter--sp details.is-closing summary > span::after {
    transform: rotate(90deg);
  }

  .p-case-filter--sp details:last-of-type summary {
    height: 56px;
  }

  .p-case-filter__sp-options {
    display: flex;
    padding: 8px 8px 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 4.4444vw;
    font-weight: 700;
    line-height: 1;
  }

  .p-case-filter__sp-options label {
    display: flex;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid var(--primary);
    border-radius: 35px;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #fff;
    cursor: pointer;
    transition: color .3s ease, background-color .3s ease;
  }

  .p-case-filter__sp-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
  }

  .p-case-filter__sp-options label:has(input:checked) {
    color: #fff;
    background: var(--primary);
  }

  .p-case-filter__result {
    margin-top: 12px;
    font-size: 4.1667vw;
    line-height: 1.2;
  }

  .p-case-regions {
    margin-top: 24px;
  }

  .p-case-region + .p-case-region {
    margin-top: 40px;
  }

  .p-case-region {
    height: auto;
  }

  .p-case-region h2 {
    height: 24px;
    gap: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-region h2 > span {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .p-case-region__grid {
    display: grid;
    margin-top: 25px;
    grid-template-columns: 298px;
    justify-content: center;
    gap: 24px;
  }

  .p-case-card__movie,
  .p-case-card__body > a {
    font-size: 3.3333vw;
  }

  .p-case-card__title h3 {
    font-size: 4.4444vw;
  }

  .p-case-card__title span {
    font-size: 3.8889vw;
  }

  .p-case-card__body > p {
    font-size: 3.8889vw;
    white-space: normal;
  }

  .p-case-detail-main {
    margin-bottom: 0;
    padding: 24px 0 0;
  }

  .p-case-detail-main__inner {
    width: 100%;
  }

  .p-case-detail-profile {
    width: calc(100vw - 48px);
    margin: 0 auto;
    padding: 24px;
  }

  .p-case-detail-profile__head {
    padding-bottom: 20px;
  }

  .p-case-detail-profile__head h2 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-case-detail-profile__meta {
    align-items: flex-start;
    margin-top: 12px;
    flex-direction: column;
    gap: 8px;
    font-size: 3.8889vw;
    line-height: 15px;
  }

  .p-case-detail-profile__tags {
    gap: 4px;
  }

  .p-case-detail-profile__body {
    align-items: flex-start;
    margin-top: 20px;
    flex-direction: column;
    gap: 16px;
  }

  .p-case-detail-profile__descriptions {
    width: 100%;
    flex: none;
    gap: 16px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-detail-profile__descriptions h3 {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-detail-profile__devices {
    width: 264px;
    height: 182px;
    flex: none;
  }

  .p-case-detail-profile__tablet {
    top: -8.85px;
    left: -10.4px;
    width: 274.575px;
  }

  .p-case-detail-profile__phone {
    top: 29.58px;
    left: 175.72px;
    width: 100.805px;
  }

  .p-case-detail-voice {
    width: 100%;
    margin: 48px auto 0;
    padding: 0 24px 56px;
  }

  .p-case-detail-voice > h2 {
    gap: 10px;
    font-size: 6.1111vw;
    line-height: 33px;
  }

  .p-case-detail-voice > h2 > span {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .p-case-detail-voice__content {
    margin-top: 16px;
  }

  .p-case-detail-voice__text h3 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-case-detail-voice__text p {
    margin-top: 8px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-detail-voice__movie {
    width: calc(100vw - 48px);
    height: auto;
    margin: 16px 0 0;
    aspect-ratio: 16 / 9;
  }

  .p-case-detail-main--kikuchi {
    padding-bottom: 0;
  }

  .p-case-detail-voice--kikuchi {
    margin-top: 48px;
    padding-bottom: 0;
  }

  .p-case-detail-voice--kikuchi .p-case-detail-voice__text p {
    margin-top: 8px;
  }

  .p-case-detail-voice--kikuchi .p-case-detail-voice__movie {
    height: auto;
    margin-top: 16px;
    aspect-ratio: 370 / 209;
  }

  .p-case-detail-voice__movie--sp-secondary {
    display: block;
  }

  .p-case-detail-voice--ine {
    margin-top: 24px;
    padding-top: 24px;
  }

  .p-case-detail-main--ine {
    margin-bottom: -1px;
  }

  .p-case-detail-voice--ine .p-case-detail-voice__movie {
    position: relative;
    height: auto;
    aspect-ratio: 312 / 176.1633;
  }

  .p-case-detail-voice--ine .p-case-detail-voice__movie img {
    position: absolute;
    top: -3.98%;
    left: -3.75%;
    width: 107.5%;
    height: 108.27%;
    max-width: none;
  }

  .p-case-related {
    width: calc(100vw - 48px);
    height: auto;
    margin-top: 16px;
    flex-direction: column;
  }

  .p-case-related__image {
    width: calc(100vw - 48px);
    height: auto;
    flex-basis: auto;
  }

  .p-case-related__body {
    width: calc(100vw - 48px);
    height: 132px;
    padding: 16px 24px;
  }

  .p-case-related__body h3 {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-related__body p {
    font-size: 4.1667vw;
    line-height: 22px;
  }

  .p-case-article {
    width: 100%;
    margin: -.469px auto 0;
    padding: 40px 24px 55.828px;
  }

  .p-case-article__lead-image {
    display: none;
  }

  .p-case-interview {
    margin-top: 0;
  }

  .p-case-interview + .p-case-interview {
    margin-top: 40px;
  }

  .p-case-interview__heading p {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-interview__heading h2 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-case-interview__content,
  .p-case-interview--operator .p-case-interview__content {
    margin-top: 8px;
  }

  .p-case-interview__person {
    gap: 8px;
  }

  .p-case-interview__image {
    width: calc(100vw - 48px);
  }

  .p-case-interview__image--nonaka {
    height: auto;
    aspect-ratio: 520 / 311;
  }

  .p-case-interview__image--tablet {
    height: auto;
    aspect-ratio: 517 / 304;
  }

  .p-case-interview__image--kawashima {
    height: auto;
    aspect-ratio: 518 / 319;
  }

  .p-case-interview figcaption {
    font-size: 3.8889vw;
    line-height: 21px;
  }

  .p-case-interview__body {
    margin-top: 12px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-case-interview__body i {
    height: 24px;
  }

  .p-case-interview--operator .p-case-interview__heading p {
    line-height: 24px;
  }

  .p-case-interview__media {
    gap: 12px;
  }

  .p-faq-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .faq .l-container {
    padding-bottom: 0;
  }

  .p-faq-main__inner {
    width: calc(100vw - 48px);
    gap: 16px;
  }

  .p-faq-item summary {
    min-height: 48px;
    align-items: center;
    padding: 12px 24px;
    gap: 4px;
  }

  .p-faq-item[open] summary {
    align-items: center;
    padding-bottom: 0;
  }

  .p-faq-item__question {
    align-items: flex-start;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-faq-item__question b,
  .p-faq-item__answer b {
    font-size: 4.4444vw;
  }

  .p-faq-item__answer {
    margin-top: 8px;
    padding: 0 42px 12px 24px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-news-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .news .l-container {
    margin-bottom: -4px;
  }

  .p-news-main__inner {
    width: calc(100vw - 48px);
    gap: 24px;
  }

  .p-news-content {
    gap: 24px;
  }

  .p-news-filter {
    gap: 16px;
  }

  .p-news-filter h2 {
    display: flex;
    width: calc(100vw - 48px);
    height: 35px;
    align-items: flex-start;
    gap: 4px;
    border-bottom: 1px solid #cbd4d4;
    font-size: 5vw;
    font-weight: 700;
    line-height: 27px;
  }

  .p-news-filter h2::before {
    width: 15px;
    height: 15px;
    margin-top: 6px;
    flex: 0 0 15px;
    background: currentcolor;
    clip-path: polygon(0 0, 100% 0, 62% 43%, 62% 80%, 38% 100%, 38% 43%);
    content: "";
  }

  .p-news-filter__controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .p-news-filter__controls button {
    font-size: 4.4444vw;
  }

  .p-news-filter__result {
    font-size: 4.1667vw;
    line-height: 17px;
  }

  .p-news-list {
    gap: 16px;
  }

  .p-news-card a {
    min-height: 83px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 24px;
    gap: 8px;
  }

  .p-news-card__meta {
    width: auto;
    flex: none;
  }

  .p-news-card__meta time {
    font-size: 4.1667vw;
  }

  .p-news-card__meta > span {
    font-size: 3.3333vw;
  }

  .p-news-card strong {
    width: 100%;
    margin-left: 0;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-news-pagination {
    width: calc(100vw - 48px);
    justify-content: space-between;
    gap: 0;
  }

  .p-news-pagination__pages {
    display: none;
  }

  .p-news-pagination__counter {
    display: block;
    font-size: 4.1667vw;
    font-weight: 700;
    line-height: 27px;
  }

  .p-news-detail-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .p-news-detail-main__inner {
    width: calc(100vw - 48px);
    gap: 32px;
  }

  .p-news-detail-card {
    padding: 24px;
  }

  .p-news-detail-card__meta time {
    font-size: 4.1667vw;
  }

  .p-news-detail-card__meta span {
    font-size: 3.3333vw;
  }

  .p-news-detail-card h2 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-news-detail-card__image {
    height: auto;
    margin-top: 12px;
    aspect-ratio: 16 / 9;
  }

  .p-news-detail-card__body {
    margin-top: 12px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-news-detail-back {
    font-size: 4.4444vw;
  }

  .p-contact-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .contact .l-container {
    margin-bottom: -4px;
  }

  .p-contact-main__inner {
    width: calc(100vw - 48px);
    transform: none;
  }

  .p-contact-content {
    gap: 16px;
  }

  .p-contact-lead {
    width: calc(100vw - 48px);
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-form {
    width: calc(100vw - 48px);
    gap: 32px;
  }

  .p-contact-form__card {
    width: calc(100vw - 48px);
    padding: 24px;
    gap: 12px;
  }

  .p-contact-field,
  .p-contact-field:first-child {
    gap: 2px;
  }

  .p-contact-field label {
    min-height: 27px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-field label span {
    font-size: 5vw;
    line-height: 27px;
  }

  .p-contact-field input,
  .p-contact-field textarea {
    height: 40px;
    padding: 8px 12px;
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-field--message textarea {
    height: 130px;
  }

  .p-contact-privacy {
    min-height: 229px;
    padding: 16px;
    gap: 8px;
  }

  .p-contact-privacy > p,
  .p-contact-consent {
    font-size: 3.8889vw;
    line-height: 21px;
  }

  .p-contact-consent {
    width: 198px;
    min-height: 42px;
    align-items: center;
  }

  .p-contact-consent input {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .p-contact-consent span {
    width: 166px;
  }

  .p-contact-submit {
    font-size: 4.4444vw;
  }

  .p-contact-confirm-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .contact-confirm .l-container {
    margin-bottom: -4px;
  }

  .p-contact-confirm-main__inner {
    width: calc(100vw - 48px);
    transform: none;
  }

  .p-contact-confirm-lead {
    width: calc(100vw - 48px);
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-confirm-content {
    width: calc(100vw - 48px);
    margin-top: 16px;
    gap: 32px;
  }

  .p-contact-confirm-card {
    width: calc(100vw - 48px);
    padding: 24px;
    gap: 12px;
  }

  .p-contact-confirm-card dt {
    font-size: 4.1667vw;
    line-height: 21px;
  }

  .p-contact-confirm-card dd {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-confirm-action {
    gap: 8px;
  }

  .p-contact-confirm-submit {
    font-size: 4.4444vw;
  }

  .p-contact-confirm-edit {
    font-size: 4.1667vw;
  }

  .p-contact-complete-main {
    margin-bottom: 0;
    padding: 24px 24px 56px;
  }

  .contact-complete .l-container {
    margin-bottom: -4px;
  }

  .p-contact-complete-main__inner {
    width: calc(100vw - 48px);
    gap: 32px;
    transform: none;
  }

  .p-contact-complete-card {
    width: calc(100vw - 48px);
    padding: 24px;
    gap: 8px;
  }

  .p-contact-complete-card h2 {
    font-size: 5.5556vw;
    line-height: 30px;
  }

  .p-contact-complete-card > div {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-contact-complete-back {
    font-size: 3.8889vw;
  }

  .p-security-main {
    padding: 24px 24px 56px;
    background: #fff;
  }

  .security-policy .l-container {
    margin-bottom: 0;
  }

  .p-security-main__inner {
    width: calc(100vw - 48px);
    gap: 80px;
  }

  .p-security-copy {
    gap: 40px;
  }

  .p-security-sections {
    gap: 40px;
  }

  .p-security-section {
    gap: 8px;
  }

  .p-security-section--access {
    gap: 24px;
  }

  .p-security-section h2 {
    justify-content: flex-start;
    gap: 10px;
    font-size: 6.1111vw;
    line-height: 33px;
  }

  .p-security-section h2 i {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .p-security-section__body,
  .p-security-policy-list,
  .p-security-signature {
    font-size: 4.4444vw;
    line-height: 24px;
  }

  .p-security-section:first-child .p-security-section__body p:nth-child(2) {
    letter-spacing: normal;
  }

  .p-security-policy-list {
    gap: 8px;
  }

  .p-security-links a:first-child {
    font-size: 5vw;
    line-height: 27px;
  }

  .p-security-links a::after {
    font-size: 3.3333vw;
  }

  .p-security-signature {
    width: 100%;
  }

  .p-security-certificate {
    width: 310px;
    height: 240px;
  }

  .c-page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 0;
    line-height: 0;
  }

  .c-page-top::before {
    top: 50%;
    border-right-width: 5px;
    border-bottom-width: 8px;
    border-left-width: 5px;
    transform: translate(-50%, -50%);
  }

  .c-page-top span {
    display: none;
  }
}
