/* レイアウト要素 */
.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.spNone {
  display: inline-block;
}

.sp .spNone {
  display: none;
}

.pcNone {
  display: none;
}

@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }

  .pcNone {
    display: inline-block;
  }
}

.none {
  display: none !important;
}

.hidden {
  visibility: hidden !important;
}

.opacity0 {
  display: none;
  opacity: 0;
  max-height: 0;
}

.opacity_half {
  opacity: 0.3;
}

.opacity1 {
  display: inline-block;
  opacity: 1 !important;
  max-height: unset !important;
}

/* レイヤー */
.z-index0 {
  z-index: 0 !important;
}

.z-index3 {
  z-index: 3 !important;
}

.vertical_center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

p.noindent {
  text-indent: 0 !important;
}

.no_letter_spacing {
  letter-spacing: 0 !important;
}

.small {
  font-size: var(--font-size-xs);
}

.note {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-gray-light);
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(241, 144, 114, 0.3) 90%);
  font-weight: bold;
}

.underline {
  font-weight: bold;
  background: linear-gradient(transparent 65%, #ffc038a2 0%);
}

.required {
  font-size: var(--font-size-xxs);
  color: red;
}

.causion {
  font-size: var(--font-size-xxs);
  color: var(--color-gray-light);
}

.causion:before {
  content: "※";
}

strong {
  font-weight: bold;
}

/* 引用 */
blockquote {
  font-size: var(--font-size-xs);
  background-color: rgba(0, 0, 0, 0.05);
  padding: 24px 32px;
  margin: 20px 0;
  text-align: left;
  line-height: 1;
  border-radius: 5px;
}

/* ホライゾンタル・バー */
hr {
  box-sizing: content-box;
}

hr {
  border: 0;
  display: block;
  height: 55px;
  position: relative;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

hr::before,
hr::after {
  border-radius: 100%;
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  left: 50%;
  margin: 0;
  margin-left: 0px;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

hr::before {
  margin-left: 8px;
}

hr::after {
  margin-left: -8px;
}

hr::before,
hr::after {
  top: 21px;
}

/* アプリメッセージ */
.app_message,
#successUpdateText {
  position: fixed;
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 16px 32px;
  border: 4px solid rgb(93, 93, 93);
  background-color: var(--color-white-offwhite);
  box-shadow: 8px 16px 16px rgba(216, 216, 216, 0.661);
  z-index: 800;
}

#successUpdateText span,
.app_message span {
  display: block;
  width: 100%;
  min-height: 100%;
  margin: auto;
  font-size: var(--font-size-l);
  font-weight: bold;
  color: var(--color-gray-dark);
}

/* パンくずリスト */
.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 0 16px 0;
  padding: 0 0 0 1rem;
  list-style: none;
}

.breadcrumbs_item {
  position: relative;
  display: inline;
  margin-right: 1.5rem;
}

.breadcrumbs_item:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -1rem;
  color: var(--color-gray-dark);
  font-variation-settings: "wght" 200;
}

.breadcrumbs_item:last-child span {
  border-bottom: 1px dashed var(--color-golden);
}

.breadcrumbs_item span {
  font-variation-settings: "wght" 350;
}

/* ツールチップ */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltip_text {
  position: absolute;
  bottom: 125%;
  left: 50%;
  visibility: hidden;
  width: max-content;
  margin-left: -60px;
  padding: 4px;
  background-color: #555;
  color: var(--color-white-offwhite);
  font-size: var(--font-size-xxs);
  text-align: center;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 1;
}

.tooltip[data-active="true"] .tooltip_text {
  visibility: visible;
  opacity: 1;
}

/* クレジット */
.credit {
  font-size: var(--font-size-xxs);
  color: var(--color-gray-light);
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 0;
  }
}
