@charset "utf-8";

/* Breakpoints: sm(640px), md(768px), lg(1024px), xl(1280px), 2xl(1536px) */

/* base */

/* font-family */
.p-font {
  font-family: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
}

/* font-weight */
.p-font-bold {
  font-weight: 700;
}

/* letter-spacing */
.p-tracking-tighter {
  letter-spacing: -0.05em;
}


/* line-height */
.p-leading-none {
  line-height: 0;
}

/* color */
.p-text-black {
  color: #333 !important;
}

.p-text-white,
.has-checked\:p-text-white:has(:checked) {
  color: #fff;
}

/* background-color */
.p-bg-white,
.has-checked\:p-bg-white:has(:checked) {
  background: #fff;
}

.p-bg-main-a,
.has-checked\:p-bg-main-a:has(:checked) {
  background-color: #e1ecff;
}

.p-bg-main-b,
.has-checked\:p-bg-main-b:has(:checked) {
  background-color: #176cff;
}

.p-bg-main-c,
.has-checked\:p-bg-main-c:has(:checked) {
  background-color: #125ad7;
}

.p-bg-sub-a,
.has-checked\:p-bg-sub-a:has(:checked) {
  background-color: #f7faff;
}

.p-bg-sub-b,
.has-checked\:p-bg-sub-b:has(:checked) {
  background-color: #e1ecff;
}

.p-bg-gry-a,
.has-checked\:p-bg-gry-a:has(:checked) {
  background-color: #e6eaed;
}

.p-bg-gry-b,
.has-checked\:p-bg-gry-b:has(:checked) {
  background-color: #c9cccf;
}

.p-bg-gry-c,
.has-checked\:p-bg-gry-c:has(:checked) {
  background-color: #798086;
}

.p-bg-gry-d,
.has-checked\:p-bg-gry-d:has(:checked) {
  background-color: #61676b;
}

/* display */
.p-block {
  display: block !important;
}

.p-hidden {
  display: none !important;
}

.p-grid {
  display: grid;
}

/* grid-template-columns */
.p-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* margin */
.p-m-0 {
  margin: 0px !important;
}

.p-m-4 {
  margin: 4px !important;
}

.p-m-8 {
  margin: 8px !important;
}

.p-m-16 {
  margin: 16px !important;
}

.-p-m-16 {
  margin: -16px;
}

.p-mx-0 {
  margin-inline: 0px !important;
}

.p-mx-8 {
  margin-inline: 8px !important;
}

.p-mx-16 {
  margin-inline: 16px !important;
}

.p-mx-32 {
  margin-inline: 32px;
}

.p-mx-48 {
  margin-inline: 48px;
}

.p-mx-64 {
  margin-inline: 64px;
}

.p-mx-auto {
  margin-inline: auto !important;
}

.p-my-0 {
  margin-block: 0px;
}

.p-my-8 {
  margin-block: 8px;
}

.p-my-32 {
  margin-block: 32px;
}

.p-my-40 {
  margin-block: 40px;
}

.p-my-64 {
  margin-block: 64px;
}

.p-my-auto {
  margin-block: auto !important;
}

.-p-mt-24 {
  margin-top: -24px;
}

.p-mt-0 {
  margin-top: 0px;
}

.p-mt-8 {
  margin-top: 8px;
}

.p-mt-30 {
  margin-top: 30px;
}

.p-mt-32 {
  margin-top: 32px;
}

.p-mb-0 {
  margin-bottom: 0px;
}

.p-mb-16 {
  margin-bottom: 16px;
}

.p-mb-20 {
  margin-bottom: 20px;
}

.p-mb-32 {
  margin-bottom: 32px;
}

.p-mb-40 {
  margin-bottom: 40px;
}

.p-mb-48 {
  margin-bottom: 48px;
}

.p-mb-64 {
  margin-bottom: 64px;
}

.p-mb-80 {
  margin-bottom: 80px;
}

/* border */
.p-border-collapse {
  border-collapse: collapse;
}

.p-border {
  border-width: 1px;
}

.p-border-2 {
  border-width: 2px;
}

.p-border-b {
  border-bottom-width: 1px;
}

.p-border-solid {
  border-style: solid;
}

.p-border-main-a {
  border-color: #e1ecff;
}

.p-border-main-b {
  border-color: #176cff;
}

.p-border-main-c {
  border-color: #125ad7;
}

.p-border-sub-a {
  border-color: #f7faff;
}

.p-border-sub-b {
  border-color: #e1ecff;
}

.p-border-gry-a {
  border-color: #e6eaed;
}

.p-border-gry-b {
  border-color: #c9cccf;
}

.p-border-gry-c {
  border-color: #798086;
}

.p-border-gry-d {
  border-color: #61676b;
}

.p-border-black {
  border-color: #000;
}

/* padding */
.p-p-4 {
  padding: 4px;
}

.p-p-8 {
  padding: 8px;
}

.p-p-16 {
  padding: 16px;
}

.p-p-32 {
  padding: 32px;
}

.p-pt-32 {
  padding-top: 32px;
}

.p-pt-64 {
  padding-top: 64px;
}

.p-pt-80 {
  padding-top: 80px;
}

.p-pb-20 {
  padding-bottom: 20px;
}

.p-pb-40 {
  padding-bottom: 40px;
}

.p-pb-80 {
  padding-bottom: 80px;
}

.p-p-30 {
  padding: 30px;
}

.p-px-0 {
  padding-inline: 0px !important;
}

.p-px-4 {
  padding-inline: 4px;
}

.p-px-8 {
  padding-inline: 8px;
}

.p-px-16 {
  padding-inline: 16px;
}

.p-px-32 {
  padding-inline: 32px;
}

.p-py-8 {
  padding-block: 8px;
}

.p-py-16 {
  padding-block: 16px;
}

.p-py-24 {
  padding-block: 24px;
}

.p-py-32 {
  padding-block: 32px;
}

.p-py-40 {
  padding-block: 40px;
}

.p-py-80 {
  padding-block: 80px;
}

/* border-radius */
.p-rounded-lg {
  border-radius: 8px;
}

.p-rounded-2xl {
  border-radius: 16px;
}

.p-rounded-t-lg {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.p-rounded-t-2xl {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* box-shadow */
.p-shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.p-shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* table */
.p-table-auto {
  table-layout: auto;
}

.p-table-fixed {
  table-layout: fixed;
}

/* width */
.p-w-full {
  width: 100%;
}

/* text */
.p-text-xs {
  font-size: 12px;
  line-height: calc(1 / 0.75);
}

.p-text-sm {
  font-size: 14px;
  line-height: calc(1.25 / 0.875);
}

.p-text-base {
  font-size: 16px;
  line-height: calc(1.5 / 1);
}

.p-text-lg {
  font-size: 18px;
  line-height: calc(1.75 / 1.125);
}

.p-text-xl {
  font-size: 20px;
  line-height: calc(1.75 / 1.25);
}

.p-text-2xl {
  font-size: 24px;
  line-height: calc(2 / 1.5);
}

.p-text-3xl {
  font-size: 30px;
  line-height: calc(2.25 / 1.875);
}

.p-text-4xl {
  font-size: 36px;
  line-height: calc(2.5 / 2.25);
}

.p-text-5xl {
  font-size: 48px;
  line-height: 1;
}

.p-text-7xl {
  font-size: 72px;
  line-height: 1;
}

/* text align */
.p-text-left {
  text-align: left;
}

.p-text-center {
  text-align: center;
}

/* flex */
.p-flex {
  display: flex;
}

.p-flex-wrap {
  flex-wrap: wrap;
}

.p-basis-1\/1 {
  flex-basis: calc(100% / 1);
}

.p-basis-1\/2 {
  flex-basis: calc(100% / 2);
}

.p-basis-1\/3 {
  flex-basis: calc(100% / 3);
}

.p-basis-2\/3 {
  flex-basis: calc(100% * 2 / 3);
}

.p-basis-1\/4 {
  flex-basis: calc(100% / 4);
}

.p-basis-1\/5 {
  flex-basis: calc(100% * 1 / 5);
}

.p-basis-2\/5 {
  flex-basis: calc(100% * 2 / 5);
}

.p-basis-3\/5 {
  flex-basis: calc(100% * 3 / 5);
}

.p-basis-4\/5 {
  flex-basis: calc(100% * 4 / 5);
}

/* align-items */
.p-items-center {
  align-items: center;
}

.p-items-start {
  align-items: flex-start;
}

.p-items-stretch {
  align-items: stretch;
}

/* text-wrap */
.p-text-nowrap {
  text-wrap: nowrap;
}

/* justify-content */
.p-justify-center {
  justify-content: center;
}

.p-container {
  width: 100%;
  margin: 0 auto;
}

/* Small (>=640px) */
@media (min-width: 640px) {
  .p-container {
    max-width: 640px
  }

  /* display */
  .sm\:p-block {
    display: block !important;
  }

  .sm\:p-hidden {
    display: none !important;
  }

  .sm\:p-py-80 {
    padding-block: 80px;
  }

  /* font-size */
  .sm\:p-text-4xl {
    font-size: 36px;
    line-height: calc(2.5 / 2.25);
  }

  /* flex-basis */
  .sm\:p-basis-1\/2 {
    flex-basis: calc(100% / 2);
  }

  .sm\:p-basis-1\/3 {
    flex-basis: calc(100% / 3);
  }
}

/* Medium (>=768px) */
@media (min-width: 768px) {
  .p-container {
    max-width: 768px
  }

  /* margin */
  .md\:p-m-8 {
    margin: 8px !important;
  }

  /* padding */
  .md\:p-p-8 {
    padding: 8px !important;
  }

  .md\:p-py-80 {
    padding-block: 80px;
  }

  /* flex-basis */
  .md\:p-basis-1\/2 {
    flex-basis: calc(100% / 2);
  }

  .md\:p-basis-1\/4 {
    flex-basis: calc(100% / 4);
  }

  .md\:p-basis-3\/5 {
    flex-basis: calc(100% * 3 / 5);
  }

  .md\:p-basis-4\/5 {
    flex-basis: calc(100% * 4 / 5);
  }

  /* grid-template-columns: */
  .md\:p-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* font-size */
  .md\:p-text-sm {
    font-size: 14px;
    line-height: calc(1.25 / 0.875);
  }

  .md\:p-text-base {
    font-size: 16px;
    line-height: calc(1.5 / 1);
  }
}

/* Large (>=1024px) */
@media (min-width: 1024px) {
  .p-container {
    max-width: 1024px
  }

  /* line-height */
  .lg\:p-leading-40 {
    line-height: 40px;
  }

  /* font-size */
  .lg\:p-text-xs {
    font-size: 12px;
    line-height: calc(1 / 0.75);
  }

  .lg\:p-text-sm {
    font-size: 14px;
    line-height: calc(1.25 / 0.875);
  }

  .lg\:p-text-base {
    font-size: 16px;
    line-height: calc(1.5 / 1);
  }

  .lg\:p-text-lg {
    font-size: 18px;
    line-height: calc(1.75 / 1.125);
  }

  .lg\:p-text-xl {
    font-size: 20px;
    line-height: calc(1.75 / 1.25);
  }

  .lg\:p-text-2xl {
    font-size: 24px;
    line-height: calc(2 / 1.5);
  }

  .lg\:p-text-3xl {
    font-size: 30px;
    line-height: calc(2.25 / 1.875);
  }

  .lg\:p-text-4xl {
    font-size: 36px;
    line-height: calc(2.5 / 2.25);
  }

  .lg\:p-text-5xl {
    font-size: 48px;
    line-height: 1;
  }

  .lg\:p-text-7xl {
    font-size: 72px;
    line-height: 1;
  }

  /* padding */
  .lg\:p-px-0 {
    padding-inline: 0px;
  }

  .lg\:p-p-16 {
    padding: 16px;
  }

  /* display */
  .lg\:p-block {
    display: block !important;
  }

  .lg\:p-hidden {
    display: none;
  }

  .lg\:p-flex-wrap {
    flex-wrap: wrap;
  }

  /* margin */
  .lg\:p-mx-0 {
    margin-inline: 0px !important;
  }

  .lg\:p-mt-40 {
    margin-top: 40px;
  }

  .lg\:p-mt-50 {
    margin-top: 50px;
  }

  .lg\:p-mt-60 {
    margin-top: 60px;
  }

  .lg\:p-text-center {
    text-align: center;
  }

  .lg\:p-basis-1\/1 {
    flex-basis: calc(100% / 1);
  }

  .lg\:p-basis-1\/2 {
    flex-basis: calc(100% / 2);
  }

  .lg\:p-basis-1\/3 {
    flex-basis: calc(100% / 3);
  }

  .lg\:p-basis-1\/4 {
    flex-basis: calc(100% / 4);
  }

  .lg\:p-basis-1\/5 {
    flex-basis: calc(100% / 5);
  }

  .lg\:p-basis-3\/5 {
    flex-basis: calc(100% * 3 / 5);
  }

  .lg\:p-basis-4\/5 {
    flex-basis: calc(100% * 4 / 5);
  }

  .lg\:p-flex {
    display: flex;
  }
}

/* Extra Large (>=1280px) */
@media (min-width: 1280px) {
  .p-container {
    max-width: 1240px;
  }
}

/* 2XL (>=1536px) */
@media (min-width: 1536px) {
  .p-container {
    max-width: 1240px;
  }
}

/* accordion */
.p-accordion-item {
  border-bottom: 1px solid #ccc;
  background: #f7faff;
  overflow: hidden;
}

.p-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  list-style: none;
}

.p-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  list-style: none;
  position: relative;
}

/* ベース：下向き（∨相当だが角度は90°の直角） */
.p-accordion-header::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  /* 直角記号のサイズ */
  height: 0.6em;
  border-right: 2px solid currentColor;
  /* 線の太さ・色 */
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  /* 下向きに見える角度 */
  transition: transform 0.25s ease;
  vertical-align: middle;
  position: absolute;
  right: 16px;
}

/* 開いたとき：上向きに反転（∧相当、直角のまま） */
.p-accordion-item[open] .p-accordion-header::after {
  transform: rotate(-135deg);
}

.p-accordion-panel {
  background: #fff;
  overflow: hidden;
  max-height: 0;
  padding: 0 16px;
}

.p-accordion-item[open] .p-accordion-panel {
  max-height: 100%;
  padding: 16px 48px;
}

/* annotation */
ul.p-annotation {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

ul.p-annotation li::before {
  content: "※";
  margin-right: .25em;
}

ol.p-annotation {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

ol.p-annotation li {
  counter-increment: my-counter;
}

ol.p-annotation li::before {
  content: "※"counter(my-counter);
  margin-right: .5em;
}

/* tooltip */
.p-tooltip {
  /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  color: #4682b4;
}

.p-balloon_top {
  /* ツールチップのスタイル */
  width: 150px;
  /* 横幅 */
  position: absolute;
  left: 50%;
  bottom: 80%;
  /* Y軸の位置 */
  transform: translateX(-50%);
  margin-bottom: 15px;
  /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px;
  /* 角の丸み */
  background-color: #666;
  /* ツールチップの背景色 */
  font-size: 0.7em;
  color: #fff;
  text-align: center;
  visibility: hidden;
  /* ツールチップを非表示に */
  opacity: 0;
  /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all;
  /* マウスオーバー時のアニメーション速度 */
}

.p-balloon_top::before {
  /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 12px solid #666;
  /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}

.p-tooltip:hover .p-balloon_top {
  /* マウスオーバー時のスタイル */
  bottom: 100%;
  /* Y軸の位置 */
  visibility: visible;
  /* ツールチップを表示 */
  opacity: 1;
  /* 不透明度を100％に */
}

.p-tooltip::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  background: url('/meigi/images/icon_circle-question-regular-full.svg') no-repeat center / contain;
  vertical-align: text-bottom;
}

/* p-triangle */
.p-triangle {
  background: #125ad7;
  height: calc(tan(60deg) * 32px / 2);
  width: 180px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* p-steps */
.p-steps-item,
.p-steps-item-light {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-steps-number-dark,
.p-steps-number-light {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}

.p-steps-number-dark {
  color: #e1ecff;
  background: #176cff;
}

.p-steps-number-light {
  color: #176cff;
  background: #e1ecff;
}

.p-steps-item::before,
.p-steps-item::after,
.p-steps-item-light::before,
.p-steps-item-light::after {
  content: "";
  background-image: linear-gradient(to right, #176cff 4px);
  height: 4px;
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-steps-item::before,
.p-steps-item-light::before {
  left: 0;
}

.p-steps-item::after,
.p-steps-item-light::after {
  right: 0;
}

.p-steps-item-light::before,
.p-steps-item-light::after {
  background-image: linear-gradient(to right, #e1ecff 4px, transparent 4px) !important;
  background-size: 8px 100%;
}

.p-steps-item-first::before,
.p-steps-item-last::after {
  display: none;
}

/* js */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s, visibility 1.5s;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: none !important;
  margin: 0;
}

.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s, visibility 1.5s;
  height: auto;
  padding: initial;
  overflow: visible;
}

.js-hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.js-visible {
  opacity: 1;
  max-height: 20000px;
  /* コンテンツの最大高さを十分大きく設定 */
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.p-em {
  background-color: #176cff;
  color: #fff;
}

/* box */
.p-box {
  border: solid 1px #c9cccf;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* button */
.p-btn-square-light {
  display: block;
  background: #fff;
  border: solid 1px #176cff;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #176cff;
}

.p-btn-square-light:hover {
  background: #e1ecff;
}

.p-btn-square-dark {
  display: block;
  background: #e1ecff;
  border: solid 1px #176cff;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.p-btn-square-dark:hover {
  background: #e1ecff;
}

.p-btn-rounded-light:disabled,
.p-btn-rounded-dark:disabled {
  display: block;
  background: #e6eaed;
  color: #c9cccf;
  border: solid 1px #c9cccf;
  border-radius: 32px;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.p-btn-rounded-light:not(:disabled) {
  display: block;
  background: #fff;
  border: solid 1px #176cff;
  border-radius: 32px;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.p-btn-rounded-light:not(:disabled):hover {
  background: #e1ecff;
}

.p-btn-rounded-dark:not(:disabled) {
  display: block;
  background: #176cff;
  color: #fff;
  border: solid 1px #176cff;
  border-radius: 32px;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.p-btn-rounded-dark:not(:disabled):hover {
  background: #e1ecff;
  color: #000;
}

.p-btn-radio {
  display: block;
  background: #fff;
  border: solid 1px #176cff;
  padding: 8px 16px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-align: center;
  font-weight: 700;
}

input[type="radio"]:checked+.p-btn-radio,
input[type="checkbox"]:checked+.p-btn-radio {
  background: #e1ecff;
}

.p-btn-label,
.p-textLink-label {
  display: inline-block;
  line-height: 16px;
  vertical-align: middle;
}

.p-btn-icon {
  display: inline-block;
  margin-left: 8px;
  height: 16px;
  vertical-align: middle;
}

/* cat */
.p-cat {
  position: relative;
  margin: 0 auto;
  font-size: 24px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
  color: #e1ecff;
  background: #176cff;
}

/* showMore */
.p-wrapper {
  position: relative;
}

.p-contents {
  position: relative;
  max-height: 400px;
  overflow: hidden;
  padding-bottom: 120px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

.p-contents::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p-contents.active::before {
  background: none;
  display: none;
}

.p-btn-showMore {
  width: 300px;
  margin: 0 auto;
  z-index: 99;
  position: absolute;
  bottom: 40px;
  left: calc(50% - 150px);
  display: block;
  text-align: center;
  /* テキスト中央揃え */
  padding: 8px 32px 8px 16px;
  /* 右側にアイコン分の余白を追加 */
  background: #fff;
  border: solid 1px #176cff;
  font-weight: 700;
  cursor: pointer;
}

.p-btn-showMore::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: transform 0.25s ease;
}

/* 開いたとき：上向きに反転（∧相当、直角のまま） */
.active+.p-btn-showMore::after {
  transform: rotate(-135deg);
}

.p-heading-lv4 {
  border-bottom: 2px solid #c9cccf;
}

.p-heading-lv4::before {
  content: var(--heading-num);
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #333;
  color: #333;
  margin-right: .5em;
  margin-bottom: .2em;
  font-weight: bold;
  font-size: 20px;
}

/* ボタン押下でbodyに付与されるクラス名に応じて要素を出し分ける（meigi.js） */
[data-m] {
  display: none;
}

.name1 [data-m=personal],
.name2 [data-m=business] {
  display: block;
}

.name2.type1 [data-m="advance_doc_inherit_biz"],
.name2.type2 [data-m="advance_doc_rename_biz"],
.name2.type3.corporate [data-m="advance_doc_transfer_biz_01"],
.name2.type3.individual [data-m="advance_doc_transfer_biz_02"],
.name1.type1[class*=relation]:not(.relation99) [data-m="advance_doc_inherit_rel"],
.name1.type1.relation99 [data-m="advance_doc_inherit"],
.name1.type2 [data-m="advance_doc_rename"],
.name1.type3.individual [data-m="advance_doc_transfer_01"],
.name1.type3.corporate [data-m="advance_doc_transfer_02"] {
  display: block;
}

/* index.html / attention.html: コンテンツ制御 */

.line4 #cancellation {
  display: block !important;
}

.numLines2 #csv {
  display: block !important;
}

/* attention.html: 留意事項のコンテンツ制御 */

/* 手数料について */
#service-fee {
  display: none !important;
}

.type3 #service-fee {
  display: block !important;
}

/* フレッツ光の下記サービスを利用のお客さま */
.line3:not(.line1):not(.line2):not(.line4) #flets-hikari {
  display: none;
}

.line4:not(.line1):not(.line2):not(.line3) #flets-hikari {
  display: none;
}

.line3.line4:not(.line1):not(.line2) #flets-hikari {
  display: none;
}

/* 料金について */
.line4:not(.line1):not(.line2):not(.line3) #payment {
  display: none;
}

/* 電話帳への掲載希望 */
/* 
電話のユーザ（ひかり電話・固定電話）に表示するコンテンツ
インターネット回線※1（ひかり電話をセットで利用中） 
インターネット回線※1（ひかり電話の利用なし）
利用中の固定電話（加入電話）
休止中の番号（利用休止番号）※2
*/

#townpage {
  display: none;
}

.line1 #townpage,
.line3 #townpage {
  display: block;
}

/* 申し込みフォーム画像 */
.p-screenshot-transfer,
.p-screenshot-rename,
.p-screenshot-inherit {
  display: none;
}

/* 譲渡 */
.name2.type3 .p-screenshot-transfer,
.name1.type3 .p-screenshot-transfer {
  display: block;
}

/* 改称 */
.name2.type2 .p-screenshot-rename,
.name1.type2 .p-screenshot-rename {
  display: block;
}

/* 承継 */
.name2.type1 .p-screenshot-inherit,
.name1.type1 .p-screenshot-inherit {
  display: block;
}