@charset 'UTF-8';

/*
css
　 ├ style.css--------：WEB 1,400px以上
　 ├ pc.css-----------：WEB 1,440x以下、1,025以上
　 ├ tablet.css-------：WEB 1,024以下、601px以上
　 └ smart.css--------：WEB 600px以下
*/

/* css記載順序
01. 共通
02. トップページ
03. 下層ページ contact

/*************************** 01. 共通 *******************/
body {
  font-family: "Noto Sans JP";
  line-height: 1;
  background: #292929;
  color: #fff;
}

section {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

.l-content {
  margin-bottom: 0;
}

.inner {
}

.section__content {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-bottom: 5rem;
  margin-top: 0;
  padding-left: 8rem;
  &::after {
    content: "";
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.section-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  font-family: Jost;
  font-size: clamp(8rem, 12vw, 21rem);
  font-weight: 500;
  line-height: 1.2;
  background: #e2e6e9;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__title-sub {
  color: #dfe3e7;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.btn {
  border-radius: 50px;
  border: 1px solid #6a829c;
  background: #cdaa6d;
  max-width: 360px;
  width: 100%;
  padding: 25px 10px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  &:hover {
    opacity: 0.5 !important;
  }
}

.btn-text {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.btn-icon {
  background: url(../../img/btn-arrow.webp) no-repeat center center / contain;
  width: 27px;
  height: 19px;
  display: inline-block;
}

.u-sp {
  display: none;
}

.upc {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 6rem;
  z-index: 100;
}
.header__inner {
  padding-inline: 8rem;
  max-width: 1760px;
  width: 100%;
  margin-inline: auto;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__btn {
  max-width: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.header__btn-bar {
  width: 100%;
  background: #e2e6e9;
  height: 4px;
  border-radius: 2px;
  display: block;
}
.header__btn-bar:nth-child(2) {
  width: 80%;
}
.header__btn-bar:nth-child(3) {
  width: 60%;
}

.drawer {
  border-radius: 20px;
  background: #e2e6e9;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 10;
}
.drawer__inner {
  padding-inline: 28px;
}
.drawer__content {
  padding-block: 42px;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
}
.draewr__item {
}
.drawer__link {
  color: #42464d;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding-left: 14px;
  display: inline-block;
}
.drawer__link::before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.header__sns {
}
.header__sns-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__sns-item {
  max-width: 38px;
  width: 100%;
  height: auto;
}
.header__sns-link {
}

/*************************** 02. toppage *******************/
.fv {
  padding-top: 11rem;
  position: relative;
}
.fv__inner {
  position: relative;
}
.fv::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../img/fv__bg.webp) no-repeat center center/ cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.fv__contents-inner {
  position: relative;
  padding-inline: 8rem;
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
}

.fv__contents-wrap {
  display: flex;
  gap: 6rem;
  align-items: flex-end;
  justify-content: center;
}

.fv__content {
  margin-bottom: 13%;
}

.fv__title-sub {
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.fv__title-sub-big {
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}

.fv__title-sub-accent {
  font-size: 6.6rem;
  font-weight: 700;
}

.fv__title-sub-small {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 2.3rem;
  display: block;
}

.fv__title {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  padding-block: 4rem 2rem;
  position: relative;
}
.fv__title::before,
.fv__title::after {
  content: "";
  width: 53.5rem;
  height: 0.2rem;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  position: absolute;
}

.fv__title::before {
  top: 0;
  left: 0;
}
.fv__title::after {
  bottom: 0;
  left: 0;
}

.fv__title-big {
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Jost;
  font-size: 12rem;
  line-height: 1;
}

.fv__title-small {
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Jost;
  font-size: 6rem;
}

.fv__image {
  max-width: 85.6rem;
  width: 100%;
  height: auto;
}

.fv__game {
  border: 0.1rem solid #6a829c;
  background: #08090e;
  max-width: 40rem;
  width: 100%;
  position: absolute;
  bottom: 7%;
  right: 0;
  margin-right: 2rem;
}

.fv__game-inner {
}

.fv__game-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  border-bottom: 0.1rem solid #6a829c;
}

.fv__game-title {
  font-family: Jost;
  font-size: 2.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.fv__game-sub {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.fv__game-match {
  padding: 2rem 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  border-bottom: 0.1rem solid #6a829c;
}

.fv__game-team {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.fv__game-team-name {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fv__game-team-name-ja {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__game-team-name-en {
  font-family: Jost;
  color: #3a424b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.fv__game-team-emblem {
  max-width: 3.8rem;
  width: 100%;
  aspect-ratio: 1/1;
}

.fv__game-match-accent {
  font-family: Montserrat !important;
  font-size: 2.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__game-event {
  padding-block: 1.5rem;
  border-bottom: 0.1rem solid #6a829c;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.fv__game-datetime {
  font-family: Jost;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__game-place {
  color: #e2e6e9;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 1rem;
  border-left: 0.1rem solid #e2e6e9;
}

.about {
  margin-top: 0;
  padding-block: 20rem 0;
}
.about__inner {
  position: relative;
}
.about__image {
  max-width: 1560px;
  width: 80%;
  height: auto;
  margin-left: auto;
}
.about__head {
  margin-top: 15rem;
  position: relative;
  z-index: 1;
  &::after {
    content: none;
  }
}

.about__content {
  max-width: 156rem;
  width: 80%;
  margin-left: auto;
  border-radius: 0.1rem;
  background: #323232;
  padding-block: 15rem 35rem;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -10rem;
}

.about__content-inner {
  max-width: 100rem;
  padding-left: 5rem;
  width: 100%;
}

.about__text {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 2.4;
}
.about__profile-head {
  margin-top: 12rem;
  padding-bottom: 5rem;
  position: relative;
  &::after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #6a829c 0%, #e2e6e9 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.about__profile-title {
  img {
    max-width: 35rem;
  }
}
.about__profile-body {
  margin-top: 10.6rem;
}
.about__profile-name {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.about__profile-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.about__profile-item {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.2;
  &:nth-child(3) {
    line-height: 2.5;
  }
}
.about__profile-image {
  max-width: 1560px;
  width: 80%;
  height: auto;
  margin-top: -10%;
  position: relative;
  z-index: 1;
}

.news {
  padding-block: 32rem 16rem;
  position: relative;
}
.news::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../img/news__bg.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.news__inner {
}

.news__section-head {
  text-align: right;
  padding-top: 5rem;
  padding-right: 8rem;
  &::after {
    top: 0;
    right: 0;
    left: auto;
  }
}
.news__content {
}

.news__list {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
}
.news__item {
}
.news__item-link {
  color: #fff;
  padding-block: 2.2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  border-bottom: 0.1rem solid #f0f2f7;
}
.news__item-head {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.news__item-time {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
}
.news__item-category {
  border-radius: 0.4rem;
  border: 0.1rem solid #8fa8c0;
  padding: 0.5rem 2.5rem;
  line-height: 1.2;
}
.news__item-text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}

.funclub {
  position: relative;
  padding-bottom: 16rem;
}
.funclub__bg {
  width: 100%;
  height: 500px;
}
.funclub__bg img {
  height: 100%;
}

.funclub__section-head {
  margin-top: -8rem;
}

.funclub__inner {
}

.funclub__content {
  margin-top: 10rem;
}

.funclub__plan {
}

.funclub__plan-image {
  max-width: 1200px;
  margin-top: 10rem;
}

.funclub__text {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 6.4rem;
}

.funclub__plan-text {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 6.4rem;
  text-align: end;
}
.funclub__btn {
}
.funclub__btn .btn .btn-text {
  font-size: 24px;
}

.funclub__special {
  margin-top: 10rem;
  max-width: 88rem;
  width: 100%;
  margin-inline: auto;
}

.funclub__special-title {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 6.4rem;
  text-align: center;
}

.funclub__special-title-small {
  font-size: 26px;
}

.funclub__special-list {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4rem 8rem;
}

.funclub__special-item {
  max-width: 40rem;
  width: 100%;
  height: auto;
}

.shop {
  padding-block: 16rem;
}
.shop__inner {
}
.shop__section-head {
  text-align: right;
  padding-top: 5rem;
  padding-right: 8rem;
  &::after {
    top: 0;
    right: 0;
    left: auto;
  }
}

.shop__content {
}
.shop__list {
  border-radius: 1.8rem;
  background: #323232;
  padding: 8rem 15rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  justify-content: space-between;
}
.shop__item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.shop__item-head {
  max-width: 34rem;
  aspect-ratio: 340/420;
}
.shop__item-body {
  padding-top: 2rem;
  border-top: 0.1rem solid #6a829c;
  margin-top: 0;
}
.shop__item-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.shop__item-price {
  color: #d9d9d9;
  font-family: Jost;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
}
.shop__btn {
  margin-top: 6rem;
}

.sponsor {
  position: relative;
  padding-block: 19rem 16rem;
  &::after {
    content: "";
    background: url(../../img/sponsors.webp) no-repeat center left / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.sponsor__inner {
}

.sponsor__section-head {
  text-align: right;
  padding-right: 8rem;
  &::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
}

.sponsor__contents {
  max-width: 1050px;
  padding-inline: 2rem;
  width: 100%;
  margin-right: 4.2%;
  margin-left: auto;
}

.sponcer__group {
}
.personal-sponsor .swell-block-columns__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 4rem);
  width: 100%;
}

.supplier .swell-block-columns__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2vw, 4rem);
}

.personal-sponsor .swell-block-columns__inner .swell-block-column {
  max-width: 310px;
  width: 100%;
  aspect-ratio: 31/9;
}

.supplier .swell-block-columns__inner .swell-block-column {
  max-width: 222px;
  width: 100%;
  aspect-ratio: 22/9;
}

.sponcer__group .swell-block-column {
  background-color: #d9d9d9;
  padding: 1rem;
  max-width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

/* 画像もはみ出さないように */
.sponcer__group .swell-block-column img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*************************** 02. 下層ページ contact *******************/
.contact {
  padding-block: 10rem;
}
.contact__content {
  margin-top: 10rem;
  max-width: 900px;
  width: 80%;
}
.contact__disc {
  text-align: center;
  font-size: 2rem;
}
.contact__title {
}
.contact__form-wrap {
  margin-top: 10rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  &.--aifs {
    align-items: flex-start;
  }
}
.contact__head {
  font-size: 2rem;
  line-height: normal;

  span.--must,
  span.--optional {
    position: relative;
    display: inline-block;
    &::after {
      content: "必須";
      position: absolute;
      top: calc(50% + 1px);
      translate: 0 -50%;
      left: calc(100% + 14px);
      font-size: 12px;
      line-height: normal;
      display: inline-block;
      padding: 3px 10px;
      border-radius: 4px;
      background: #6a829ccc;
      white-space: nowrap;
    }
  }

  span.--optional {
    &::after {
      content: "任意";
      background: #d5d5d5;
      color: black;
    }
  }
}

select {
  cursor: pointer;
}

[type="submit"] {
  background: #cdaa6d;
}

.contact__data {
  width: 100%;

  textarea {
    min-height: 30rem;
    line-height: 1.2;
  }
}

.contact__acceptance-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: fit-content;
  margin-inline: auto;

  input {
    max-width: 30px;
    width: 100%;
    aspect-ratio: 1/1;
    cursor: pointer;
    flex-shrink: 0;
  }
}

.contact__acceptance-text {
  cursor: pointer;
}

.contact__acceptance-link {
  padding-bottom: 0.3rem;
  border-bottom: 2px solid;
  cursor: pointer;
}

.contact__form-wrap {
  .wpcf7-not-valid-tip {
    margin-top: 2rem;
  }
}

.wpcf7-turnstile.cf-turnstile {
  text-align: center;
}

/* thanksページ */
.contact__thanks-contents {
  margin-top: 4rem;
  max-width: 1000px;
  padding: 4rem 2rem;
  background: #3f3d3d;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-inline: auto;
}

.contact__thanks-check {
  max-width: 100px;
}

.contact__thanks-title {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact__thanks-text {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}

.contact__thanks-btn {
  margin-top: 8rem;
}

/*************************** 下層ページ news *******************/
.page-news {
  padding-block: 9.4rem 13rem;
}
.page-news > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-news__inner {
}
.page-news__content {
  margin-top: 8rem;
}
.page-news__empty {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #dfe3e7;
}

/* お知らせ一覧 ページネーション */
.page-news__pagination {
  margin-top: 5rem;
}
.page-news__pagination .navigation.pagination {
  margin: 0;
}
.page-news__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-news__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 1.6rem;
}
.page-news__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.4rem;
  border: 0.1rem solid #8fa8c0;
  border-radius: 0.4rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background-color: #c3c3c3;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.page-news__pagination a.page-numbers:hover {
  border-color: #cdaa6d;
  background: #cdaa6d;
  color: #fff;
}
.page-news__pagination .page-numbers.current {
  background: #cdaa6d;
  border-color: #cdaa6d;
  color: #fff;
  font-weight: 700;
}
.page-news__pagination .page-numbers.dots {
  min-width: auto;
  padding: 0 0.4rem;
  border: none;
  color: #8fa8c0;
}
.page-news__pagination .prev.page-numbers,
.page-news__pagination .next.page-numbers {
  min-width: 10rem;
  padding-inline: 2.4rem;
  border-color: #6a829c;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.page-news__pagination .prev.page-numbers:hover,
.page-news__pagination .next.page-numbers:hover {
  background: #cdaa6d;
  border-color: #cdaa6d;
  color: #fff;
}

/* お知らせ詳細 */
.news-detail {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.news-detail__head {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid #f0f2f7;
}
.news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.news-detail__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.news-detail__thumb {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.news-detail__thumb-img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail__body {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  color: #dfe3e7;
}
.news-detail__body > *:first-child {
  margin-top: 0;
}
.news-detail__body > *:last-child {
  margin-bottom: 0;
}
.news-detail__body p {
  margin-bottom: 2.4rem;
}
.news-detail__body h2 {
  margin-block: 4rem 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid #6a829c;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.news-detail__body h3 {
  margin-block: 3rem 1.6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.news-detail__body ul,
.news-detail__body ol {
  margin-bottom: 2.4rem;
  padding-left: 2.4rem;
}
.news-detail__body li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
.news-detail__body a {
  color: #cdaa6d;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.news-detail__body a:hover {
  opacity: 0.85;
}
.news-detail__body img {
  max-width: 100%;
  height: auto;
  margin-block: 2.4rem;
  border-radius: 0.8rem;
}
.news-detail__body blockquote {
  margin-block: 2.4rem;
  padding: 2rem 2.4rem;
  border-left: 0.4rem solid #6a829c;
  background: #3f3d3d;
  border-radius: 0.4rem;
}
.news-detail__footer {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 0.1rem solid #f0f2f7;
}
.news-detail__back {
  text-decoration: none;
}

/* プライバシーポリシー */
.page-privacy {
  padding-block: 9.4rem 13rem;
}
.page-privacy .section__head {
  padding-inline: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}
.privacy__content {
  margin-top: 8rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  color: #dfe3e7;
}
.privacy__content > *:first-child {
  margin-top: 0;
}
.privacy__content > *:last-child {
  margin-bottom: 0;
}
.privacy__content p {
  margin-bottom: 2.4rem;
}
.privacy__content h2 {
  margin-block: 4rem 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid #6a829c;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.privacy__content h3 {
  margin-block: 3rem 1.6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.privacy__content ul,
.privacy__content ol {
  margin-bottom: 2.4rem;
  padding-left: 2.4rem;
}
.privacy__content li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
.privacy__content a {
  color: #cdaa6d;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.privacy__content a:hover {
  opacity: 0.85;
}
