@charset "UTF-8";
/* ----------------------------------- */
/* Page Title */
/* ----------------------------------- */
.page-title {
  padding: 11.9rem 0 11rem;
}
.page-title .page-title__inner {
  max-width: 110.4rem;
  width: 100%;
  padding: 0;
}
.page-title .page-title__category {
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  margin: 0 0 1.2rem;
  letter-spacing: 0.02em;
}
.page-title .page-title__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0 0 1.6rem;
}
.page-title .page-title__date {
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
}
.page-title .page-title__categories {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.page-title .page-title__campaign {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 0;
}
.page-title .page-title__campaign-label {
  display: inline-block;
  background: linear-gradient(to right, #e50011 60%, #f39800 100%);
  color: #ffffff;
  padding: 0.4rem 1.6rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.page-title .page-title__campaign-dates {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #E50011;
  letter-spacing: 0.04em;
}
.page-title .page-title__heading {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-title {
    padding: 3.7rem 0 5.6rem;
  }
  .page-title .page-title__inner {
    max-width: 33.9rem;
  }
  .page-title .page-title__meta {
    gap: 0.8rem;
    margin: 0 0 1.2rem;
  }
  .page-title .page-title__date {
    font-size: 1rem;
  }
  .page-title .page-title__category {
    font-size: 1rem;
    margin: 0 0 0.6rem;
  }
  .page-title .page-title__campaign {
    gap: 0.8rem;
    margin: 0 0 1.2rem;
  }
  .page-title .page-title__campaign-label {
    font-size: 1rem;
    padding: 0.3rem 1.2rem;
  }
  .page-title .page-title__campaign-dates {
    font-size: 1.2rem;
  }
  .page-title .page-title__heading {
    font-size: 2.6rem;
    letter-spacing: 0.04em;
  }
}

/* ----------------------------------- */
/* Breadcrumb */
/* ----------------------------------- */
.breadcrumb {
  border-bottom: 0.2rem solid transparent;
  border-image: linear-gradient(to right, #E50011, #fed867) 1;
  padding: 1.5rem 0;
  margin-bottom: 3.8rem;
}
.breadcrumb .breadcrumb__inner {
  max-width: 110.4rem;
  width: 100%;
  padding: 0;
}
.breadcrumb .breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb .breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.3);
}
.breadcrumb .breadcrumb__item:first-child {
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.breadcrumb .breadcrumb__item:last-child {
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.breadcrumb .breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 0.15rem;
  background-color: #E50011;
  margin: 0 0.7rem 0rem 1rem;
  flex-shrink: 0;
}
.breadcrumb .breadcrumb__link {
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.breadcrumb .breadcrumb__link.custom-color {
  color: #000000 !important;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb__list {
    row-gap: 0.8rem;
  }
  .breadcrumb {
    padding: 1.5rem 0;
  }
  .breadcrumb .breadcrumb__item {
    font-size: 1rem;
  }
  .breadcrumb .breadcrumb__item:not(:first-child) .breadcrumb__link {
    letter-spacing: 0.01em;
  }
  .breadcrumb .breadcrumb__item + .breadcrumb__item::before {
    width: 2.4rem;
    margin: 0 0.8rem 0rem 0.9rem;
  }
  .breadcrumb .breadcrumb__item:last-child {
    letter-spacing: 0.04em;
  }
  .breadcrumb .breadcrumb__inner {
    max-width: 33.9rem;
  }
}

.breadcrumb__notice {
  padding: 1.2rem 0 0;
  margin-top: -5rem;
}
.breadcrumb__notice .container {
  max-width: 110.4rem;
  margin: 0 auto;
  color: #E50011;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__notice .container {
    max-width: 33.9rem;
  }
}

/* ----------------------------------- */
/* Related Nav                         */
/* ----------------------------------- */
/* Marquee animation for watermark */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Pause animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .related-nav__watermark-track {
    animation: none;
  }
}
.related-nav {
  background-color: #3a3a3a;
  padding: 8.8rem 0 9rem;
  position: relative;
}
.related-nav .related-nav__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
  max-width: 118.4rem;
  width: 100%;
  padding: 0 4rem;
  margin: 0 auto;
}
.related-nav .related-nav__watermark {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: -0.6rem;
  left: 0;
}
.related-nav .related-nav__item--content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.related-nav .related-nav__watermark-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.related-nav .related-nav__watermark span {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #707070;
  white-space: nowrap;
  margin-right: 2.4rem;
}
.related-nav .related-nav__heading {
  flex: 0 0 25.8rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 3.6rem;
  letter-spacing: 0.08em;
  margin: 0;
}
.related-nav .related-nav__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2.4rem;
  max-width: 77.6rem;
}
.related-nav .related-nav__link {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0 0 1.2rem;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-direction: column;
}
.related-nav .related-nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E50011;
  transition: width 0.3s ease;
}
@media screen and (min-width: 769px) {
  .related-nav .related-nav__link:hover {
    color: #FFFFFF;
  }
  .related-nav .related-nav__link:hover::after {
    width: 100%;
  }
  .related-nav .related-nav__link:hover .related-nav__icon {
    transform: translateX(0.8rem);
  }
}
.related-nav .related-nav__num {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.04em;
  margin-right: 0;
  min-width: 3rem;
  margin-bottom: -0.2rem;
  align-self: flex-start;
}
.related-nav .related-nav__text {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  flex: 1;
  display: block;
  align-self: flex-end;
  padding-bottom: 0.2rem;
}
.related-nav .related-nav__icon {
  width: 2rem;
  height: auto;
  flex-shrink: 0;
  margin-right: 1.6rem;
  transition: transform 0.3s ease;
}
.related-nav .related-nav__icon-window {
  width: 2.2rem;
  height: 1.6;
  flex-shrink: 0;
}
.related-nav .related-nav__link:not(.related-nav__link--arrow) .related-nav__text {
  color: rgba(255, 255, 255, 0.5);
}
.related-nav .related-nav__link:not(.related-nav__link--arrow) .related-nav__num {
  opacity: 0.5;
}
.related-nav .related-nav__link:not(.related-nav__link--arrow) .related-nav__icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .related-nav {
    padding: 3.4rem 0 4.8rem;
    overflow: hidden;
  }
  .related-nav .related-nav__watermark {
    top: 0;
  }
  .related-nav .related-nav__watermark span {
    font-size: 2.9rem;
  }
  .related-nav .related-nav__inner {
    flex-direction: column;
    padding: 0 1.8rem !important;
    gap: 1.9rem;
  }
  .related-nav .related-nav__heading {
    flex: 0;
    width: 100%;
    font-size: 2rem;
    letter-spacing: 0.09em;
    margin-top: 1.5rem;
  }
  .related-nav .related-nav__list {
    flex: 0;
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 1.4rem;
  }
}
.top-links {
  padding: 0;
  list-style: none;
}

.top-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8rem 0;
  text-decoration: none;
  border-bottom: 1px solid #EAEAEA;
  transition: opacity 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .top-link {
    position: relative;
  }
  .top-link::after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #E50011;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .top-link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .top-link:hover .top-link__arrow,
  .top-link:hover .icon-arrow-red,
  .top-link:hover .top-campaign__arrow-img,
  .top-link:hover .gnavi-dropdown__arrow {
    transform: translateX(0.8rem);
  }
}
.top-link .top-link__num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #E50011;
  margin-bottom: 0.8rem;
  display: block;
  font-family: var(--font-en);
}
.top-link .top-link__content {
  display: flex;
  align-items: center;
  width: 100%;
}
.top-link .top-link__text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  flex: 1;
}
.top-link .top-link__arrow {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-link .top-link__arrow {
    position: relative;
    top: 0.2rem;
  }
}
.top-link .top-link__arrow img {
  width: 2rem;
  height: auto;
}

.top-section-header {
  margin-bottom: 4rem;
}
.top-section-header__en {
  display: block;
  color: #E50011;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-section-header__en {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.top-section-header__en--white {
  color: #FFFFFF;
}
.top-section-header__en--red {
  color: #E50011;
}
.top-section-header__ja {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-section-header__ja {
    font-size: 2.4rem;
  }
  .top-section-header__ja br {
    display: none;
  }
}
.top-section-header__ja--white {
  color: #FFFFFF;
}

/*====================================================================
  privacy-protection – page layout
====================================================================*/
.main--private .page-title {
  padding: 12.1rem 0 11rem;
}
@media screen and (max-width: 768px) {
  .main--private .page-title {
    padding: 3.7rem 0 5.5rem;
  }
}

@media screen and (max-width: 768px) {
  .page-intro__nav > .page-intro__nav-item:first-child {
    align-items: center;
  }
  .page-intro__nav > .page-intro__nav-item:first-child::before {
    top: 44%;
    transform: translateY(-50%);
  }
}

.page-intro .page-intro__sections--privacy-protection .page-intro__item {
  padding-top: 0;
  position: relative;
}
.page-intro .page-intro__sections--privacy-protection {
  /*====================================================================
    privacy-policy – Block 1: 個人情報保護方針
  ====================================================================*/
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy {
  max-width: 84rem;
  padding: 0.2rem 0 9rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy--law {
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 3.2rem;
  margin-bottom: 12rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy--human-rights {
  padding-bottom: 5.4rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy {
    padding: 1.2rem 0 4rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy--law {
    padding-bottom: 2.4rem;
    margin-bottom: 5.1rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy--human-rights {
    padding-bottom: 0.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- Header: 01 + Title + Lead --- */
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__header {
  margin-bottom: 6.1rem;
  padding-bottom: 6.6rem;
  border-bottom: 2px solid #DDDDDD;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__header--border-bottom {
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__header {
    margin-bottom: 4.3rem;
    padding-bottom: 4.7rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__header--border-bottom {
    padding-bottom: 0;
    margin-bottom: 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__title-block {
    margin-bottom: 2.5rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__num {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: -0.3rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__num {
    margin-bottom: 0.2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 4.8rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__title {
    line-height: 3.6rem;
    font-size: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__lead {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- Basic Policy Section --- */
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__section {
  margin-bottom: 3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 3.1rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__section-title {
    line-height: 3.6rem;
    margin: 0 0 2.5rem;
    font-size: 1.8rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__section-text {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- Policy Items List --- */
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-bottom: 6.4rem;
  border-bottom: 2px solid #ddd;
  margin-bottom: 6.1rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list {
    gap: 2.4rem;
    padding-bottom: 4.8rem;
    margin-bottom: 4.3rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item {
  background-color: #F5F5F5;
  padding: 4.6rem 4.8rem 3.8rem;
  border-radius: 0.6rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space {
  padding-bottom: 4.3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space-bottom, .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--special {
  padding-bottom: 5.3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space-special {
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item {
    padding: 3.8rem 2.9rem 3.1rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space, .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space-bottom, .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--space-special {
    padding-bottom: 3.2rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--special {
    padding-bottom: 1.8rem;
    margin-bottom: -2.8rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--2 {
  padding: 4.2rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--2 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--3 {
  padding: 4.3rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--3 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--4 {
  padding: 4.1rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--4 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--5 {
  padding: 4.1rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--5 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--6 {
  padding: 4.1rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--6 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--7 {
  padding: 4.1rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--7 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--8 {
  padding: 4.3rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__list-item--8 {
    padding: 3.6rem 2.9rem 3.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__item-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__item-header {
    margin-bottom: 1.7rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__item-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: -0.2rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__item-num {
    margin-bottom: -0.3rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__item-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 3.6rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__item-title {
    line-height: 3.6rem;
    font-size: 2rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__item-title span {
    white-space: nowrap;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__item-text {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
  margin-left: 0.1rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__item-text span {
  margin-right: 0.7rem;
  margin-left: -1.4rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__item-text span {
    margin: 0;
    white-space: nowrap;
  }
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- Note List (— items) --- */
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__note-list {
  list-style: none;
  padding: 2.2rem 2.4rem;
  margin: 3rem 0 0;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__note-list {
    padding: 1.8rem 2rem;
    margin-top: 2.2rem;
    gap: 2rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-policy__note-list--space-bottom {
    padding-bottom: 7rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__note-item {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  padding-left: 2.4rem;
  position: relative;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__note-item span {
  margin-left: -0.4rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__note-item .privacy-law__link {
  font-size: 1.6rem;
  text-decoration: underline;
  color: #E50011;
  font-weight: 500;
  letter-spacing: 0.041em;
  display: inline;
  word-break: break-all;
  overflow-wrap: break-word;
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__note-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  height: 1px;
  width: 1.6rem;
  background: #e50011;
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- Privacy Law List --- */
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 3rem;
  padding-bottom: 6.4rem;
  border-bottom: 2px solid #ddd;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__list {
    gap: 2.7rem;
    padding-bottom: 5rem;
    margin-bottom: 4rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 {
  padding: 4.6rem 4.8rem 4.3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-policy__item-header {
  margin-bottom: 3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--1 .privacy-policy__note-list {
  margin-top: 0.8rem;
  padding-bottom: 2.5rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__sub-category-title {
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__sub-category-title {
    margin-top: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__link-list {
  margin-top: 0.8rem;
  padding-bottom: 1.3rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__link-list {
    padding-top: 1.7rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__text {
  margin-bottom: 0;
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__text {
    margin-top: 0.2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-law__sub-category--2 .privacy-law__link-list--space-bottom {
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 {
    padding: 3.8rem 2.9rem 3.1rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-policy__item-num {
    margin-bottom: -0.5rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--1 .privacy-policy__item-header {
    margin-bottom: 1.8rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 {
  padding: 4.2rem 4.8rem 3.9rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 {
    padding: 6.3rem 2.9rem 3.1rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 .privacy-policy__item-header .privacy-policy__item-title {
    margin-top: -0.3rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 > .privacy-law__sub-category-title:nth-child(3) {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 > .privacy-law__sub-category-title:nth-child(3) {
    margin-top: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 > .privacy-law__sub-category-title:nth-child(5) {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 > .privacy-law__sub-category-title:nth-child(5) {
    margin-top: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 .privacy-policy__note-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--2 .privacy-policy__note-list {
    padding-top: 1.9rem;
    padding-bottom: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--3 {
  padding: 4.4rem 4.8rem 4rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--3 .privacy-law__sub-category-title--space-bottom {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--3 {
    padding: 3.4rem 2.9rem 3.1rem;
    margin-bottom: 0;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--3 .privacy-policy__item-header .privacy-policy__item-title {
    margin-top: -0.2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--4 {
  padding: 4.4rem 4.8rem 4.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--4 {
    padding: 3.4rem 2.9rem 3.1rem;
    margin-bottom: 0;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--4 .privacy-policy__item-header .privacy-policy__item-title {
    margin-top: -0.2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__item--4 .privacy-law__sub-category-title--space-others {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__item--4 .privacy-law__sub-category-title--space-others {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title {
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 4.4rem;
  margin: 3rem 0 0;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title .privacy-law__sub-category-num {
  position: absolute;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #E50011;
  font-family: "Poppins", sans-serif;
  top: -0.6rem;
  left: -0.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-top: 0.3rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--special, .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-bottom, .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-top, .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-others {
  font-weight: 400;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-special {
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: -1.6rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title span {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title {
    margin-top: 2.3rem;
    margin-bottom: 0;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-bottom {
    margin-top: 1.8rem;
    padding-left: 4rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-top {
    margin-top: 3.6rem;
    padding-left: 4rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-special {
    padding-left: 4rem;
    margin-bottom: 0;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--special {
    margin-bottom: 2rem;
    margin-top: 1.8rem;
    padding-left: 4rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__sub-category-title--space-others {
    margin-top: 0.7rem;
    margin-bottom: -1.4rem;
    padding-left: 4rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__link-list {
  margin-top: 2.9rem;
  padding-top: 2.2rem;
  padding-left: 4.8rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item {
  font-size: 1.6rem;
  list-style: none;
  line-height: 2.8rem;
  letter-spacing: 0.038em;
  margin-bottom: 1.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item {
    margin-bottom: 2.4rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item .privacy-law__link {
  font-size: 1.6rem;
  text-decoration: underline;
  color: #E50011;
  font-weight: 500;
  letter-spacing: 0.037em;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  height: 1px;
  width: 1.6rem;
  background-color: #e50011;
  top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list {
    margin-top: 2.1rem;
    padding-top: 1.9rem;
    padding-left: 4.4rem;
    padding-right: 2rem;
    margin-bottom: 2.1rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item--space-bottom {
    margin-bottom: 2.4rem;
    margin-top: 0;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item--space-special {
    margin-top: 2rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item .privacy-law__link {
    display: inline;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__link-list .privacy-law__link-item:last-child {
    margin-bottom: 0;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__text {
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.044em;
  margin-top: 0.6rem;
  margin-bottom: -0.2rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download {
  padding-bottom: 6.5rem;
  margin-top: 1.8rem;
  border-bottom: 2px solid #ddd;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .human-rights__download {
    margin-top: 3.2rem;
    padding-bottom: 4.9rem;
    margin-bottom: -1.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download-btn {
  display: flex;
  flex-direction: row;
  height: 5.6rem;
  width: 23.7rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.4rem;
  border-radius: 3rem;
  background: #000000;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download-btn:hover {
  background-color: #E50011;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download-btn .human-rights__download-btn-text {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download-btn .human-rights__download-btn-icon {
  width: 1.5rem;
  height: 1.6rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__download-btn .human-rights__download-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-intro .page-intro__sections--privacy-protection {
  /*====================================================================
    privacy-policy__section-num – inline section number
  ====================================================================*/
}
.page-intro .page-intro__sections--privacy-protection .privacy-policy__section-num {
  display: inline;
  margin-right: 0.6rem;
}
.page-intro .page-intro__sections--privacy-protection {
  /*====================================================================
    privacy-law-table – Block 2 Section 1: 利用目的テーブル
  ====================================================================*/
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table--guide {
  position: absolute;
  top: 54.5rem;
  left: 50%;
  transform: translatex(-50%);
  width: 16rem;
  height: auto;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table--guide img {
  width: 100%;
  height: auto;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table.is-scrolled .privacy-law-table--guide {
  opacity: 0;
  pointer-events: none;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__head {
  display: grid;
  grid-template-columns: 26.2rem 1fr;
  background-color: #E50011;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__head {
    grid-template-columns: 25.8rem minmax(48.2rem, 1fr);
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__head-cell {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  line-height: 2.8rem;
  padding: 1.4rem 2.4rem;
  text-align: center;
  border-right: 4px solid #f5f5f5;
  background-color: #e50011;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__head-cell:last-child {
  border-right: none;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__row {
  display: grid;
  grid-template-columns: 26.2rem 1fr;
  border-top: 4px solid #f5f5f5;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__row:first-of-type {
  border-top: none;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__row {
    grid-template-columns: 25.8rem minmax(48.2rem, 1fr);
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__cell {
  padding: 1.1rem 2.3rem 1.7rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  color: #000000;
  background-color: #fff;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__cell--label {
  border-right: 4px solid #f5f5f5;
  font-weight: 400;
  position: relative;
  padding-left: 6rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__cell--label {
    padding: 1.4rem 1.6rem 1.4rem 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__cell--content {
    padding: 1.4rem 1.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__label-num {
  display: block;
  font-size: 1.6rem;
  color: #E50011;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.09em;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: "Poppins", sans-serif;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: table-ol;
  display: flex;
  flex-direction: column;
  gap: 0.47rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol > li {
  counter-increment: table-ol;
  padding-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.043em;
  color: #000000;
  position: relative;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol > li::before {
  content: counter(table-ol) ".";
  position: absolute;
  left: 0.1rem;
  top: -0.6rem;
  font-size: 1.6rem;
  color: #E50011;
  font-weight: 500;
  line-height: 4rem;
  top: -0.3rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol > li {
    line-height: 2.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol .privacy-law-table__ol-item--special {
  line-height: 2.7rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ul {
  list-style: none;
  margin: 1.4rem 0.1rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #f5f5f5;
  padding: 1.4rem 1.6rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ul > li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  padding-left: 2.4rem;
  color: #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__ul > li {
    line-height: 2.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ul-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.045em;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ul-label::before {
  content: "— ";
  color: #E50011;
  font-size: 1.8rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__ol-item--highlight {
  color: #E50011;
  font-weight: 500;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__note {
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  color: #000000;
  margin: 0.4rem 0 0;
  padding-left: 2.5rem;
  position: relative;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-table__note::before {
  content: "※";
  font-size: 1.6rem;
  font-weight: 600;
  position: absolute;
  left: 0.1rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-table__note {
    line-height: 2.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection {
  /*====================================================================
    privacy-law-items – Block 2 Section 2: 保有個人データ
  ====================================================================*/
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__item {
  padding: 0 0 1.2rem 4.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__item {
    padding-left: 4rem;
    padding-bottom: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__header {
  display: flex;
  align-items: baseline;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__title {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__num {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.06em;
  line-height: 4rem;
  position: absolute;
  left: -0.6rem;
  top: -0.4rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__text {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__subitems {
  list-style: none;
  padding: 2.2rem 2.4rem 2.5rem;
  margin: 1.4rem 0 0 -4.5rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__subitems {
    padding-top: 1.8rem;
    margin-top: -1.4rem;
    padding-bottom: 0.8rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__subitem {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__subitem {
    gap: 1.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__subnum {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: #E50011;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__subtext {
  font-size: 1.6rem;
  color: #333333;
  line-height: 2.8rem;
  letter-spacing: 0.042em;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__subtext {
    margin-bottom: 1rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__subtext span {
    white-space: nowrap;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-label {
  font-weight: 500;
  color: #E50011;
  text-decoration: underline;
  line-height: 2.3rem;
  margin: 0;
  font-size: 1.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0.1rem;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-label {
    line-height: 2.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download {
  margin: 1.2rem 0 1.6rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-btn {
  display: inline-flex;
  flex-direction: row;
  height: 5.6rem;
  width: 23.7rem;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.4rem;
  border-radius: 3rem;
  background: #000000;
  text-decoration: none;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-btn .privacy-law-items__download-btn-text {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-btn .privacy-law-items__download-btn-icon {
  width: 1.5rem;
  height: 1.6rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__download-btn .privacy-law-items__download-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__note {
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  color: #000000;
  margin: 0;
  position: relative;
  padding-left: 2.5rem;
}
.page-intro .page-intro__sections--privacy-protection .privacy-law-items__note::before {
  content: "※";
  font-size: 1.6rem;
  font-weight: 600;
  position: absolute;
  left: 0.1rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law-items__note {
    line-height: 2.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__section {
  background: #f5f5f5;
  padding: 4.1rem 4.7rem 3.9rem;
  margin-bottom: 3.2rem;
  border-radius: 0.6rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__section {
    padding: 3.8rem 2.9rem;
    margin-bottom: 3rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.9rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__section-header {
    margin-bottom: 1.8rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__section-header .privacy-law__section-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #E50011;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__section-header .privacy-law__section-num {
    margin-bottom: -0.1rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .privacy-law__section-header .privacy-law__item-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 3.6rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .privacy-law__section-header .privacy-law__item-title {
    font-size: 2rem;
  }
  .page-intro .page-intro__sections--privacy-protection .privacy-law__section-header .privacy-law__item-title span {
    white-space: nowrap;
  }
}
.page-intro .page-intro__sections--privacy-protection {
  /*====================================================================
    human-rights – Block 3: 全農グループ人権方針 sub-sections
  ====================================================================*/
}
.page-intro .page-intro__sections--privacy-protection .human-rights__sections {
  display: flex;
  flex-direction: column;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__section {
  padding: 6rem 0 6.6rem;
  border-top: 2px solid #DDDDDD;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .human-rights__section {
    padding: 4.4rem 0 3.8rem;
  }
  .page-intro .page-intro__sections--privacy-protection .human-rights__section--space-bottom {
    padding: 6rem 0 3.6rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .human-rights__section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 3.6rem;
  margin: 0 0 3rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .human-rights__section-title {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .human-rights__section-text {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection {
  /* --- 注1〜3 footnotes --- */
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes {
  list-style: none;
  padding: 0;
  margin: 2.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .human-rights__notes {
    gap: 2rem;
    margin-top: 9.4rem;
  }
  .page-intro .page-intro__sections--privacy-protection .human-rights__notes::before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #EAEAEA;
    top: -4.7rem;
    position: absolute;
  }
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes-header {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes-num {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #E50011;
  letter-spacing: 0.06em;
  line-height: 2.8rem;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-intro .page-intro__sections--privacy-protection .human-rights__notes-text {
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  margin: 0;
  padding-left: 6.8rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .human-rights__notes-text span {
    white-space: nowrap;
  }
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-policy__num {
  margin-top: 0;
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section .privacy-law__section-header {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section .privacy-law__section-header {
    margin-bottom: 2.3rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section .privacy-law__item-title {
  margin-top: -0.6rem;
  margin-left: 0.1rem;
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section--2 .privacy-law__section-header {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section--2 {
    padding: 3.5rem 2.9rem;
  }
  .page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section--2 .privacy-law__section-header {
    margin-bottom: 1.8rem;
  }
  .page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section--2 .privacy-law__item-title {
    margin-top: -0.4rem;
    margin-left: 0;
    margin-right: -0.3rem;
  }
  .page-intro .page-intro__sections--privacy-protection .page-intro__item--2 .privacy-law__section--2 .privacy-law-items__subitems {
    margin-top: 1.5rem;
    padding-top: 1.7rem;
    padding-right: 2rem;
  }
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--3 .privacy-policy__header {
  margin-top: -0.1rem;
}
.page-intro .page-intro__sections--privacy-protection .page-intro__item--3 .human-rights__sections {
  padding-top: 0;
}
