/* BackToTopButton */
.BackToTopButton {
  position: fixed;
  right: 60px;
  bottom: 48px;
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  font-size: var(--font-size-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.BackToTopButton_arrow img {
  width: 14px;
  height: 14px;
}

.BackToTopButton_label {
  padding-bottom: 8px;
}

@media screen and (max-width: 723px) {
  .BackToTopButton {
    right: 16px;
    bottom: 32px;
    width: 60px;
    height: 60px;
    font-size: 11px;
    border-radius: 8px;
    border: 1px solid white;
  }

  .BackToTopButton_arrow img {
    width: 11px;
    height: 11px;
  }

  .BackToTopButton_label {
    padding-bottom: 6px;
  }
}
/* --- BackToTopButton */

/* PageContent */
.PageContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1040px;
  margin: 24px auto;
  padding-bottom: 70px;
}
@media screen and (max-width: 723px) {
  .PageContent {
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 8px 10px 70px;
  }
}
/* --- PageContent */

/* Breadcrumbs */
.Breadcrumbs_container {
  background-color: var(--secondary);
  width: 100%;
}

.Breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 8px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  width: 1040px;
  color: var(--primary);
  margin-inline: auto;
  padding-top: 24px;
  padding-bottom: 32px;
}

.Breadcrumbs_separator {
  color: var(--primary-text);
  filter: var(--secondary-icon-filter);
}
.Breadcrumbs_item {
  display: inline;
  gap: 4px;
  text-decoration: underline;
}
.Breadcrumbs_item:last-child {
  color: var(--primary-text);
  pointer-events: none;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 723px) {
  .Breadcrumbs {
    font-size: 12px;
    width: 100%;
    padding: 12px 10px 16px;
    gap: 6px;
  }
}
/* --- Breadcrumbs */

/* PageTitle */
.PageTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-inline: 24px;
}
.PageTitle_title {
  width: fit-content;
  font-size: var(--font-size-title-xl);
  font-weight: 600;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
  word-break: keep-all;
  color: #4a0563;
}
.PageTitle_title:before {
  content: "";
  height: 8px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  background-color: var(--primary);
}
@media screen and (max-width: 723px) {
  .PageTitle_title {
    font-size: var(--font-size-title-sm);
    line-height: 1.5;
  }
}
p.PageTitle_orange {
  color: #e26a46;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  line-height: 30px;
}
/* --- PageTitle */

/* ImageDialog */
[data-image-dialog] {
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
[data-image-dialog]:hover {
  opacity: 0.8;
}
/* --- ImageDialog */

/* BulletPoints */
.BulletPoints {
  list-style-type: disc;
}

.BulletPoints.lg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.BulletPointsItem {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  list-style: none;
  flex-shrink: 0;
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.5;
}

.BulletPointsItem--primary {
  color: var(--primary);
}

.BulletPointsItem--text {
  color: var(--primary-text);
}

.BulletPointsItem--lg {
  font-size: var(--font-size-lg);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-md);
  }
}

.BulletPointsItem--xl {
  font-size: var(--font-size-xl);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-lg);
  }
}

.BulletPointsItem:before {
  content: "";
  width: 12px;
  min-width: 12px;
  height: 12px;
  margin-top: 8px;
  background-color: var(--primary-active);
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
.BulletPointsItem_bullet--primary:before {
  background-color: var(--primary);
}
.BulletPointsItem_bullet--secondary:before {
  background-color: var(--primary-active);
}
@media screen and (max-width: 723px) {
  .BulletPointsItem:before {
    margin-top: 9px;
  }
}
/* --- BulletPoints */

/* Paragraph */
.Paragraph {
  line-height: 1.75;
  color: var(--primary-text);
}

.Paragraph.sm {
  font-size: var(--font-size-sm);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-xs);
  }
}

.Paragraph.md {
  font-size: var(--font-size-md);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-sm);
  }
}

.Paragraph.lg {
  font-size: var(--font-size-lg);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-md);
  }
}

.Paragraph.xl {
  font-size: var(--font-size-xl);

  @media screen and (max-width: 723px) {
    font-size: var(--font-size-lg);
  }
}

/* --- Paragraph */

/* SectionTitle */
.SectionTitle {
  color: #4a0563;
  height: 68px;
  font-size: var(--font-size-title-lg);
  font-weight: 500;
  background-color: var(--thirtary-light);
  display: flex;
  padding-inline: 20px;
  align-items: center;
  border-radius: 100px;
  border: 2px solid var(--primary);

  @media screen and (max-width: 723px) {
    height: unset;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: var(--font-size-xl);
  }
}

h2.SectionTitle.title_orange {
  border: 2px solid #e26a46;
}
/* --- SectionTitle */

/* Disclaimer */
.Disclaimer {
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.Disclaimer.is-visible {
  display: flex;
}

.Disclaimer_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.Disclaimer_modal {
  background: #fff;
  width: 880px;
  z-index: 1000;
  border-radius: 20px;
  overflow: hidden;
}

.Disclaimer_titleSection {
  padding-top: 36px;
  padding-bottom: 40px;
}

.Disclaimer_titleContainer {
  display: flex;
  justify-content: center;
}

.Disclaimer_caption {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--primary);
  background-color: var(--secondary);
  font-size: var(--font-size-title-md);
  font-weight: 600;
  line-height: 1.7;
  padding-top: 32px;
  padding-bottom: 40px;
  padding-inline: 100px;
}

.Disclaimer_buttons {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.Disclaimer button {
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: var(--font-size-title-md);
  font-weight: 600;
  cursor: pointer;
  box-shadow: #00000029 0 3px 6px;
}

.Disclaimer_yesButton {
  background-color: var(--primary);
  color: white;
}

.Disclaimer_noButton {
  background-color: white;
  color: var(--primary);
}

@media screen and (max-width: 723px) {
  .Disclaimer_modal {
    margin-inline: 20px;
  }

  .Disclaimer_titleSection {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .Disclaimer_title img {
    width: 100%;
    max-width: 558px;
    padding-inline: 10px;
  }

  .Disclaimer_caption {
    font-size: var(--font-size-md);
    padding-inline: 10px;
    padding-top: 20px;
    padding-bottom: 24px;
    gap: 24px;
  }

  .Disclaimer_buttons {
    gap: 20px;
  }

  .Disclaimer button {
    height: 48px;
    font-size: var(--font-size-lg);
  }
}
/* --- Disclaimer */

/* Link */
.Link {
  color: var(--primary);
  display: inline;
  gap: 4px;
  text-decoration: underline;
}
/* --- Link */

/* PageContentsWrapper */
.PageContents_container {
  background-color: var(--secondary);
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
}

.PageContents_wrapper {
  width: 1280px;
  background-color: white;
  padding-inline: 160px;
  padding-top: 40px;
  padding-bottom: 80px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 40px;
}

@media screen and (max-width: 723px) {
  .PageContents_container {
    padding: 0 10px 64px;
  }

  .PageContents_wrapper {
    width: 100%;
    padding-inline: 10px;
    padding-top: 28px;
    padding-bottom: 64px;
    gap: 32px;
  }
}
/* --- PageContentsWrapper */

/* PageNav */
.PageNav {
  width: 960px;
  background-color: var(--secondary);
  border-radius: 20px;
  padding: 32px 80px 40px;
}

.PageNav_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  text-decoration: none;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.PageNav_headingLabel {
  font-size: var(--font-size-title-md);
  font-weight: 700;
}

.PageNav_links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  justify-content: space-between;
  margin-top: 16px;
}

.PageNav_link {
  width: 380px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--primary);
  border-bottom: 2px dashed var(--primary);
  padding-bottom: 6px;
}

.PageNav_left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.PageNav_icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.PageNav_label {
  font-size: var(--font-size-xl);
  font-weight: 600;
  padding-right: 24px;
  line-height: 1.5;
}

.PageNav_arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: transform 0.2s ease;
}

.PageNav_arrow img {
  width: 10px;
  height: 10px;
  object-fit: contain;
  margin-left: 2px;
  filter: var(--white-icon-filter);
}

.PageNav_arrow--active {
  background-color: white;
  transform: rotate(-90deg);
}

.PageNav_arrow--active img {
  filter: var(--primary-icon-filter);
  margin-left: 0;
}

@media screen and (max-width: 723px) {
  .PageNav {
    width: 100%;
    padding: 32px 20px 24px;
  }

  .PageNav_heading {
    padding-bottom: 12px;
  }

  .PageNav_headingLabel {
    font-size: var(--font-size-lg);
  }
  .PageNav_links {
    gap: 12px;
  }
  .PageNav_link {
    width: 100%;
    height: auto;
    padding-bottom: 12px;
  }

  .PageNav_icon {
    width: 32px;
    height: 32px;
  }

  .PageNav_label {
    font-size: var(--font-size-md);
  }
}
/* --- PageNav */

/* SectionContentContainer */
.SectionContentContainer {
  margin-top: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 723px) {
  .SectionContentContainer {
    margin-bottom: 16px;
  }
}
/* --- SectionContentContainer */

/* AttentionBox */
.AttentionBox {
  margin-top: 40px;
  background-color: var(--background-attention);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.AttentionBoxIcon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.AttentionEmphasis {
  font-weight: 700;
  color: var(--primary);
}

@media screen and (max-width: 723px) {
  .AttentionBox {
    display: block;
    padding: 32px 24px 40px;
  }

  .AttentionBoxIcon {
    width: 40px;
    height: 40px;
    float: left;
    margin-right: 20px;
    margin-top: 8px;
  }
}
/* --- AttentionBox */

/* 汎用 */
.ft18{
	font-size: 18px;
}
/*--- 汎用 */