@charset "UTF-8";
/*
Theme Name: official
Theme URI:
Author:
Author URI:
Description: Custom theme
Version: 1.0
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.heading {
  font-size: 30px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
}
.heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 64px;
  }
}

.main {
  display: grid;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 168px;
  }
}

.fv__inner {
  position: relative;
}

.fv__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__image {
    max-width: none;
    margin: 0 auto;
    display: block;
  }
}
.fv__image img,
.fv__image source {
  width: 100%;
  display: block;
}

.goods__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .goods__image {
    max-width: none;
    margin: 0 auto;
    display: block;
  }
}
.goods__image img,
.goods__image source {
  width: 100%;
  display: block;
}

.fv__message {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 80px 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: none;
  }
}

.fv__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: inline;
  }
}

.fv__text {
  margin-top: 16px;
}

.mythought__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .mythought__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.6666666667%;
  }
}

.mythought__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mythought__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.mythought__image img {
  width: 100%;
  display: block;
}

.mythought__message {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mythought__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.mythought__tittle {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .mythought__tittle {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .mythought__tittle {
    font-size: 20px;
  }
}

.mythought__text {
  font-size: 14px;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .mythought__text {
    margin-top: 40px;
  }
}

/* ===============================
   Supporter 修正版
   SP：2列で安定
   PC：横一列で小さめ上品
================================ */
.supporter__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}
@media screen and (min-width: 768px) {
  .supporter__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 14px;
  }
}
@media screen and (min-width: 900px) {
  .supporter__cards {
    gap: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .supporter__cards {
    gap: 22px;
  }
}

.supporter__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 24px rgba(96, 96, 96, 0.12);
          box-shadow: 0 8px 24px rgba(96, 96, 96, 0.12);
  overflow: hidden;
  min-width: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .supporter__card {
    width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media screen and (min-width: 900px) {
  .supporter__card {
    width: 165px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
            flex: 0 0 165px;
  }
}
@media screen and (min-width: 1200px) {
  .supporter__card {
    width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media screen and (min-width: 768px) {
  .supporter__card:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 14px 30px rgba(96, 96, 96, 0.16);
            box-shadow: 0 14px 30px rgba(96, 96, 96, 0.16);
    opacity: 0.98;
  }
}

.supporter-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  background: #fff;
  text-align: center;
}
.supporter-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.supporter-card__image::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: #ececec;
}

.supporter-card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 12px 16px;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  color: #444;
}
@media screen and (min-width: 768px) {
  .supporter-card__body {
    font-size: 11px;
    min-height: 58px;
  }
}
@media screen and (min-width: 900px) {
  .supporter-card__body {
    font-size: 12px;
  }
}

.supporter__more {
  margin-top: 30px;
}

.about {
  background: url(../img/sp/img_message.png) no-repeat top center/cover;
  position: relative;
  padding-block: 280px 50px;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url(../img/consept.png);
    padding-block: 160px 150px;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.about__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 100%;
  }
}

.about__tittle {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__tittle {
    font-size: 35px;
  }
}

.about__text {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 20px;
  }
}

.thought__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .thought__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .thought__inner {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .thought__inner {
    gap: 80px;
  }
}

.thought__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thought__image {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.thought__image img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {
  .thought__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.thought__title {
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .thought__title {
    margin-top: 50px;
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .thought__title {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .thought__title {
    font-size: 28px;
  }
}

.thought__text {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .thought__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

.contact {
  padding-block: 56px;
  background: url(../img/contact.bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 80px;
  }
}

.contact__inner {
  color: #3ea1d1;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.contact__text .is-required {
  color: #e7728e;
}

.contact__items {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .contact__items {
    margin-top: 19px;
  }
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(62, 161, 209, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    padding: 5px 4px 4px;
    clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
  }
}

.form-label__required {
  color: #e7728e;
  font-size: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-label__required {
    font-size: 12px;
  }
}

.form-text {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 16px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
}
.form-text:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}

.form-radio {
  position: relative;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text {
  background-color: #3ea1d1;
  color: #fff;
}
.form-radio__input:focus + .form-radio__text {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.32);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.32);
}

.form-radio__text {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #3ea1d1;
  border: 1px solid #fff;
  background: #fff;
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}

.form-textarea {
  width: 100%;
  height: 122px;
  background: #fff;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(96, 96, 96, 0.16);
  resize: vertical;
  font-size: 16px;
  border: 0;
}
.form-textarea:focus {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}

.form-checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #3ea1d1 auto 1px;
  -webkit-box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
          box-shadow: 5px 6px 16px 0 rgba(62, 161, 209, 0.16);
}

.form-checkbox__text {
  font-size: 16px;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  line-height: 1.4;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #3ea1d1;
}
.form-checkbox__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #3ea1d1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-block: auto;
}
.form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.29px;
  width: 19.414px;
  height: 14.621px;
  background: url(../img/check-icon.png) no-repeat center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 32px;
  border: 1px solid #3ea1d1;
  color: #3ea1d1;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: transparent;
  border-radius: 2px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 12px 40px;
    font-size: 14px;
  }
}
.button:hover {
  background: rgba(62, 161, 209, 0.1);
  border-color: #3ea1d1;
  color: #3ea1d1;
}

.button-wrap {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .button-wrap {
    margin-top: 40px;
  }
}

.top-photo {
  padding: 36px 0;
}
.top-photo__inner {
  max-width: 1100px;
  margin: 10px auto;
}
.top-photo__swiper {
  border-radius: 26px;
  overflow: hidden;
}
.top-photo__slide img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .top-photo__slide img {
    height: 520px;
  }
}

.top-photo {
  overflow: hidden;
}

.top-photo__swiper {
  width: 100%;
  overflow: visible;
}

.top-photo__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-photo__swiper .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.auto-fade-init {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.auto-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fadeup.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ===============================
   ヘッダー全体
================================ */
.header {
  height: 60px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header-space {
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header-space {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ===============================
   ロゴ
================================ */
.header__logo a img {
  width: 120px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 200px;
  }
}

@media screen and (min-width: 768px) {
  .header__logo a:hover img {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
/* ===============================
   ハンバーガーアイコン（最安定版位置）
================================ */
.header__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  z-index: 200;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__icon {
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* ハンバーガー内バーの相対基準を中央揃え */
.drawer-icon {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ===============================
   ドロワーメニュー（SP/PC共通）
================================ */
.header__nav {
  position: fixed;
  right: 0;
  top: 60px;
  width: 270px;
  height: calc(100% - 60px);
  padding: 32px 15px;
  background: #3ea1d1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 100;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    top: 70px;
    width: 400px;
    height: calc(100% - 70px);
  }
}

/* ===============================
   PC ドロワーメニュー（文字中央寄せ & 大きく）
================================ */
@media screen and (min-width: 768px) {
  .header__nav {
    padding-top: 48px;
  }
  .header__nav a {
    text-align: center;
    width: 100%;
    font-size: 20px !important;
    padding-block: 14px;
    display: block;
  }
}
/* ドロワー内リンク（白 → メインカラー）*/
.header__nav a {
  color: #fff !important;
  display: inline-block;
  padding-block: 8px;
  font-size: 18px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav a:hover {
  color: #3ea1d1 !important;
}
@media screen and (min-width: 768px) {
  .header__nav a {
    font-size: 16px;
  }
}

/* ===============================
   PC上部ナビ（横並び）
================================ */
.header__nav-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav-pc {
    display: block;
    margin-left: auto;
    padding-right: 50px;
  }
}

.header__lists-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 46px;
}

/* ===============================
   PC（横幅768px以上）：黒 → メインカラー + 下線
=============================== */
@media (min-width: 768px) {
  .header__nav-pc .header__link {
    color: #000 !important;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header__nav-pc .header__link:hover {
    color: #3EA1D1 !important; /* ← $main-color に置き換えてOK */
  }
  .header__nav-pc .header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #3EA1D1; /* ← $main-color */
    -webkit-transition: width 0.25s ease;
    transition: width 0.25s ease;
  }
  .header__nav-pc .header__link:hover::after {
    width: 100%;
  }
}
/* ===============================
   スクロール時の透明化（PC）
   ふんわりおしゃれバージョン
================================ */
@media screen and (min-width: 768px) {
  .header {
    -webkit-transition: background 0.4s ease, backdrop-filter 0.4s ease;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }
  .header__logo img,
  .header__nav-pc,
  .header__icon {
    -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
  }
  /* スクロールした瞬間の変化 */
  .header.is-scrolled {
    background: rgba(255, 255, 255, 0);
  }
  .header.is-scrolled .header__logo img {
    opacity: 0;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px); /* ← ふわっと上へ溶ける */
  }
  .header.is-scrolled .header__nav-pc {
    opacity: 0;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px); /* ← リストもそっと浮いて消える */
    pointer-events: auto !important;
  }
  .header.is-scrolled .header__icon {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* ← ボタンはそのまま自然に残る */
    pointer-events: auto;
  }
}
/* ===============================
   ハンバーガーアニメーション
================================ */
.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    width: 40px !important;
    height: 26px !important;
  }
}
.drawer-icon .drawer-icon__bar {
  position: absolute;
  left: 15px;
  width: 25px;
  height: 2px;
  background: #3ea1d1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .drawer-icon .drawer-icon__bar {
    width: 50px !important;
  }
}
.drawer-icon .drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon .drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon .drawer-icon__bar:nth-child(3) {
  top: 16px;
}
@media screen and (min-width: 768px) {
  .drawer-icon .drawer-icon__bar:nth-child(1) {
    top: 0 !important;
  }
  .drawer-icon .drawer-icon__bar:nth-child(2) {
    top: 11px !important;
  }
  .drawer-icon .drawer-icon__bar:nth-child(3) {
    top: 22px !important;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1),
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 13px !important;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .header__icon {
    -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  }
  .header__icon.is-hide {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .header__icon {
    position: fixed !important;
    top: 24px;
    right: 40px;
    z-index: 5000;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__icon.is-hide {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .header__icon {
    position: fixed !important; /* ← 絶対必要！ */
    top: 24px !important;
    right: 40px !important;
    left: auto !important; /* ← 左に張り付くのを防止 */
    -webkit-transform: none !important;
            transform: none !important; /* ← wrapper の transform の影響を遮断 */
    z-index: 999999 !important; /* ← メインより前に絶対出す */
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__icon.is-hide {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    pointer-events: none;
  }
}
.site-footer {
  margin-top: 80px;
  color: #333333;
  background: #f6f9fc;
}
@media screen and (min-width: 768px) {
  .site-footer {
    margin-top: 120px;
  }
}

/* =========================
  TOP
========================= */
.site-footer__top {
  padding: 56px 0 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fbfd), to(#f3f7fb));
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f7fb 100%);
}
@media screen and (min-width: 768px) {
  .site-footer__top {
    padding: 72px 0 40px;
  }
}

.site-footer__top-inner {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .site-footer__top-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

/* =========================
  YOUTUBE
========================= */
.site-footer__youtube {
  padding: 48px 0 48px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .site-footer__youtube {
    padding: 72px 0 64px;
  }
}

.site-footer__youtube-inner {
  display: block;
}

/* =========================
  共通セクション
========================= */
.footer-card {
  padding: 0;
  border-bottom: none;
}

.footer-card__head {
  margin-bottom: 16px;
}

.footer-card__sub {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  color: rgba(51, 51, 51, 0.48);
  text-transform: uppercase;
}

.footer-card__title {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .footer-card__title {
    font-size: 34px;
  }
}

.footer-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(51, 51, 51, 0.78);
}
@media screen and (min-width: 768px) {
  .footer-card__text {
    font-size: 15px;
  }
}

/* =========================
  ボタン
========================= */
.footer-card__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 22px;
  min-width: 180px;
  padding: 12px 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #333333;
  background: transparent;
  border: none;
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
  transition: color 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.footer-card__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.26);
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .footer-card__button:hover {
    color: #3ea1d1;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  .footer-card__button:hover::after {
    background: rgba(62, 161, 209, 0.8);
    -webkit-transform: scaleX(1.02);
            transform: scaleX(1.02);
  }
}

.footer-card__button--ghost {
  color: rgba(51, 51, 51, 0.72);
}
.footer-card__button--ghost::after {
  background: rgba(51, 51, 51, 0.18);
}

/* =========================
  YouTube group
========================= */
.footer-card--youtube-group {
  width: 100%;
}

.footer-card__head--youtube {
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .footer-card__head--youtube {
    margin-bottom: 28px;
  }
}

.footer-card__title--icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.footer-card__title-icon {
  width: 28px;
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ff0000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-card__title-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-card__title-icon {
    width: 30px;
    height: 30px;
  }
}

.footer-youtube-grid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer-youtube-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

.footer-youtube-col {
  min-width: 0;
}

/* =========================
  YouTube item
========================= */
.footer-movie {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .footer-movie {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-movie:hover {
    opacity: 0.95;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.footer-movie__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  background: #e9eef3;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.footer-movie__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

@media screen and (min-width: 768px) {
  .footer-movie:hover .footer-movie__thumb img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.footer-movie__body {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-movie__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(62, 161, 209, 0.08);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: rgba(62, 161, 209, 0.9);
  text-transform: uppercase;
}

.footer-movie__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer-movie__title {
    font-size: 15px;
  }
}

.footer-movie__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(51, 51, 51, 0.52);
}

/* =========================
  SNS
========================= */
.site-footer__sns {
  padding: 40px 0 64px;
  background: linear-gradient(135deg, #2c91be 0%, #3ea1d1 100%);
}
@media screen and (min-width: 768px) {
  .site-footer__sns {
    padding: 48px 0 80px;
  }
}

.site-footer__sns-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-sns-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .footer-sns-grid {
    gap: 34px;
  }
}

.footer-sns-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 8px;
}

.footer-sns-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(62, 161, 209, 0.22);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  -webkit-transition: background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .footer-sns-card__icon {
    width: 62px;
    height: 62px;
  }
}

.footer-sns-card__icon img,
.footer-sns-card__icon svg {
  width: 22px;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .footer-sns-card__icon img,
  .footer-sns-card__icon svg {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .footer-sns-card:hover .footer-sns-card__icon {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.6);
  }
}
.footer-sns-card__name {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  line-height: 1.4;
}

.footer-sns-card__desc {
  display: none;
}

/* =========================
  BOTTOM
========================= */
.site-footer__bottom {
  position: relative;
  padding: 24px 0 20px;
  background: linear-gradient(135deg, #2c91be 0%, #3ea1d1 100%);
}
@media screen and (min-width: 768px) {
  .site-footer__bottom {
    padding: 26px 0;
  }
}

.site-footer__bottom-inner {
  display: grid;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom-inner {
    grid-template-columns: 1fr auto;
    gap: 20px 32px;
    text-align: left;
  }
}

.site-footer__bottom-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom-brand {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.site-footer__bottom-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom-meta {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
}

.site-footer__logo a {
  display: inline-block;
}

.site-footer__logo img {
  width: 220px;
  display: block;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .site-footer__logo img {
    width: 260px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .site-footer__logo img:hover {
    opacity: 0.8;
  }
}

/* =========================
  HOME LINK
========================= */
.site-footer__home-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.site-footer__home-link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.site-footer__home-link-text {
  position: relative;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__home-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (min-width: 768px) {
  .site-footer__home-link:hover {
    opacity: 0.82;
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  .site-footer__home-link:hover .site-footer__home-link-arrow {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  .site-footer__home-link:hover .site-footer__home-link-text::after {
    background: rgba(255, 255, 255, 0.72);
    -webkit-transform: scaleX(1.04);
            transform: scaleX(1.04);
  }
}
/* =========================
  MENU / COPY
========================= */
.site-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .site-footer__menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.site-footer__menu-link {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .site-footer__menu-link:hover {
    opacity: 0.72;
  }
}

.site-footer__copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
  PAGE TOP
========================= */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(62, 161, 209, 0.25);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .page-top {
    right: 32px;
    bottom: 32px;
  }
  .page-top:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page-top__text {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #3ea1d1;
  font-weight: 600;
}

.news {
  padding-bottom: 60px;
}

.news__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 1120px;
    padding-inline: 40px;
  }
}

.news__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__cards {
    gap: 24px;
  }
}

.news__card {
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e8e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .news__card {
    padding-bottom: 24px;
  }
}

.news__button {
  margin-top: 42px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 44px;
  }
}

.news-card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .news-card:hover .news-card__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news-card__image {
  width: 100%;
  overflow: hidden;
}
.news-card__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-card__image {
    width: 260px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .news-card__image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.news-card__body {
  width: 100%;
  margin-top: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .news-card__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.news-card__time {
  display: block;
  font-size: 14px;
}

.news-card__title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-card__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.news-card__text {
  margin-top: 14px;
  color: #888;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .news-card__text {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* ===============================
   News Archive Hero with Background - Compact
================================ */
.news-hero {
  background: linear-gradient(135deg, #3ea1d1 0%, rgb(103.1841004184, 181.0585774059, 218.8158995816) 40%, #ffffff 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-hero {
    padding: 90px 20px 110px;
  }
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.news-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.news-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .news-hero__title {
    font-size: 58px;
  }
}

.news-hero__sub {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.9;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .news-hero__sub {
    font-size: 18px;
  }
}

.news-hero__line {
  display: block;
  width: 80px;
  height: 3px;
  background: #3ea1d1;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .news-hero__line {
    width: 100px;
  }
}

/* ========== News Single ========== */
.news-hero.news-hero--single {
  margin-bottom: 40px;
}
.news-hero.news-hero--single .news-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  text-align: center;
}

.news-single {
  padding: 0 0 80px;
}
@media screen and (min-width: 768px) {
  .news-single {
    padding: 0 0 100px;
  }
}

.news-single__inner {
  max-width: 880px;
  margin: 0 auto;
}

.news-single__article {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 24px 20px 32px;
}
@media screen and (min-width: 768px) {
  .news-single__article {
    padding: 40px 48px 48px;
  }
}

.news-single__header {
  margin-bottom: 24px;
}

.news-single__cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef5fb;
  color: #4578b3;
  margin-bottom: 8px;
}

.news-single__date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.news-single__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .news-single__title {
    font-size: 24px;
  }
}

.news-single__thumb {
  margin: 0 -20px 24px;
}
.news-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .news-single__thumb img {
    border-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .news-single__thumb {
    margin: 0 0 32px;
  }
}

.news-single__content {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.news-single__content p {
  margin-bottom: 1.4em;
}
.news-single__content a {
  text-decoration: underline;
}
.news-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}

.news-single__tags {
  margin-top: 24px;
  font-size: 12px;
}
.news-single__tags .news-single__tag-label {
  display: inline-block;
  margin-right: 8px;
  color: #666;
}
.news-single__tags a {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  margin-right: 6px;
  margin-bottom: 4px;
}

/* ▼ 前後ナビ + 一覧へ戻る */
.news-single__nav {
  margin-top: 32px;
  text-align: center;
}

.news-single__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.news-single__nav-links a {
  display: inline-block;
  padding: 8px 12px;
}

.news-single__nav-prev,
.news-single__nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-single__back {
  margin-top: 8px;
}

.news-single__back-link {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-single__back-link:hover {
  border-color: #333;
}

.goods,
.goods-page {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .goods,
  .goods-page {
    padding: 80px 0;
  }
}

/* 内側レイアウト */
.goods__inner,
.goods-page__inner {
  padding-inline: 56px;
}
@media screen and (min-width: 768px) {
  .goods__inner,
  .goods-page__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

/* ----------------------------
   商品カード（共通デザイン）
---------------------------- */
.goods-card,
.goods-item {
  display: block;
  text-decoration: none;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.goods-card:hover,
.goods-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 画像部分 */
.goods-card__image,
.goods-item__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  overflow: hidden;
}
.goods-card__image img,
.goods-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* ホバーで画像すこしズーム */
.goods-card:hover img,
.goods-item:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* テキスト部分 */
.goods-card__body,
.goods-item__body {
  text-align: center;
  padding: 16px 18px;
}
@media screen and (min-width: 768px) {
  .goods-card__body,
  .goods-item__body {
    font-size: 18px;
  }
}

.goods-card__tittle,
.goods-item__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.goods-card__price,
.goods-item__price {
  margin-top: 8px;
  font-size: 15px;
  color: #777;
}

/* ----------------------------
   トップページ（3件表示）
---------------------------- */
.goods__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .goods__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 900px) {
  .goods__cards {
    gap: 80px;
  }
}

.goods__button {
  text-align: center;
  margin-top: 44px;
}

/* ----------------------------
   一覧ページ（グリッド表示）
---------------------------- */
.goods-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .goods-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
@media screen and (min-width: 900px) {
  .goods-list {
    gap: 80px;
  }
}

.goods-none {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #777;
}

/* ===========================
   Goods Single（商品詳細ページ）
=========================== */
.single-goods {
  padding-top: 40px;
  padding-bottom: 80px;
}
.single-goods__title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .single-goods__title {
    font-size: 34px;
    margin-bottom: 50px;
  }
}
.single-goods__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .single-goods__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.single-goods {
  /* 画像エリア */
}
.single-goods__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-goods__image-frame {
  width: 100%;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.single-goods__image-frame img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-goods {
  /* 情報エリア */
}
.single-goods__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-goods__info-box {
  background: #fff;
  padding: 30px 22px;
  border-radius: 12px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .single-goods__info-box {
    padding: 40px 35px;
  }
}
.single-goods__price {
  font-size: 26px;
  font-weight: 700;
  color: #3ea1d1;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .single-goods__price {
    font-size: 28px;
  }
}
.single-goods__description {
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: 16px;
  color: #333333;
}
.single-goods__description p {
  margin-bottom: 1.2em;
}
.single-goods__description ul,
.single-goods__description ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.single-goods__buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  background: #3ea1d1;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.single-goods__buy-btn:hover {
  opacity: 0.85;
}
.single-goods__back {
  text-align: center;
  margin-top: 45px;
}
.single-goods__back .button--back {
  color: #777;
  text-decoration: none;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.single-goods__back .button--back:hover {
  opacity: 0.6;
}

/* ===========================
   グッズ一覧へ戻るボタン
=========================== */
.back-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #3ea1d1;
  border-radius: 6px;
  color: #3ea1d1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .back-button {
    font-size: 16px;
    padding: 14px 24px;
  }
}
.back-button:hover {
  background-color: #3ea1d1;
  color: #fff;
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}

.back-button__icon {
  font-size: 18px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .back-button__icon {
    font-size: 20px;
  }
}

.back-button__text {
  letter-spacing: 0.03em;
  font-weight: 600;
}

.goods-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.goods-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 14px;
  font-size: 14px;
  color: #333333;
  border: 1px solid #ddd;
  border-radius: 24px;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pagination .page-numbers:hover {
  background-color: #3ea1d1;
  color: #fff;
  border-color: #3ea1d1;
}
.pagination .page-numbers.current {
  background-color: #3ea1d1;
  color: #fff;
  border-color: #3ea1d1;
  cursor: default;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
  pointer-events: none;
}

/* ===============================
   Profile Page - Polished (REWRITE)
   ✅スマホ〜でも「円＋写真」を重ねる（写真が上）
   ✅900px以上：PCっぽく左右に重ねる
   ※ mq(sm / lg / xl) は既存mixinを想定
================================ */
/* -------------------------
  Tokens（全体の統一感）
-------------------------- */
:root {
  --accent: #3EA1D1;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(0,0,0,0.08);
  --bg-soft: #f6fbff;
  --card: rgba(255,255,255,0.75);
  --shadow: 0 14px 40px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

/* -------------------------
  MAIN
-------------------------- */
.profile-main {
  padding: 70px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-soft)), color-stop(65%, #fff));
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 65%);
}

/* =========================
  HERO WRAP
  - Mobile: 縦並びだけど「重ね」(写真が上)
  - 900px〜: 左右に重ね
========================= */
.profile-main__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /* Mobile〜: 写真→テキストの順（写真が上） */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0; /* 重ねるのでgapは無し */
  padding: 44px 16px 26px;
  /* 900px以上：左右に重ね（PC表現） */
}
@media screen and (min-width: 900px) {
  .profile-main__inner { /* ← ここが「900px以上」のmqになっている想定 */
    display: block;
    max-width: 1200px;
    /* 被り回避：Heroの高さ＋下余白 */
    min-height: 820px;
    padding: 70px 50px 140px;
  }
}
.profile-main__inner {
  /* 1200px以上：微調整したいなら */
}
@media screen and (min-width: 1200px) {
  .profile-main__inner {
    /* min-height: 860px; */
  }
}

/* -------------------------
  右（上）：切り抜き写真
  ✅スマホでも円と重ねる（写真が上）
-------------------------- */
.profile-main__image {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 写真を最前面に */
  z-index: 3;
  /* スマホでテキストに食い込ませて重ねる */
  margin-bottom: -56px;
}
@media screen and (min-width: 600px) {
  .profile-main__image {
    margin-bottom: -68px;
  }
}
.profile-main__image {
  /* 900px〜：右へabsolute配置 */
}
@media screen and (min-width: 900px) {
  .profile-main__image {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: auto;
    /* PCではテキストを上にしたければ 1 のままでOK */
    z-index: 1;
  }
}

.profile-main__image img {
  width: 100%;
  max-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  -webkit-filter: drop-shadow(0 18px 40px rgba(17, 24, 39, 0.18));
          filter: drop-shadow(0 18px 40px rgba(17, 24, 39, 0.18));
}
@media screen and (min-width: 600px) {
  .profile-main__image img {
    max-width: 360px;
  }
}
.profile-main__image img {
  /* 900px〜: 収まりをよくする */
}
@media screen and (min-width: 900px) {
  .profile-main__image img {
    max-width: clamp(380px, 40vw, 500px);
  }
}
@media screen and (min-width: 1200px) {
  .profile-main__image img {
    max-width: 540px;
  }
}

/* 装飾：背景グラデ円（上品に）
   ✅スマホでも写真の背面に来る */
.profile-gradient-circle {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle at 30% 30%, rgba(62, 161, 209, 0.3), rgba(255, 255, 255, 0) 65%);
  border-radius: 50%;
  /* 写真より後ろ */
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .profile-gradient-circle {
    width: 260px;
    height: 260px;
    top: -28px;
    right: -28px;
  }
}
@media screen and (min-width: 900px) {
  .profile-gradient-circle {
    width: 320px;
    height: 320px;
    top: -36px;
    right: -36px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-gradient-circle {
    width: 340px;
    height: 340px;
    top: -40px;
    right: -40px;
  }
}

/* -------------------------
  左（下）：円＋テキスト
  ✅スマホでも写真と重なる（写真が上）
-------------------------- */
.profile-main__textbox {
  position: relative;
  width: 100%;
  max-width: 560px;
  /* 写真より後ろ */
  z-index: 1;
  /* スマホで写真に寄せる（重なり調整） */
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (min-width: 600px) {
  .profile-main__textbox {
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
  }
}
.profile-main__textbox {
  /* 900px〜：左にabsolute配置 */
}
@media screen and (min-width: 900px) {
  .profile-main__textbox {
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 3;
    max-width: clamp(420px, 42vw, 560px);
  }
}

.text-content {
  padding: 28px 14px;
}
@media screen and (min-width: 600px) {
  .text-content {
    padding: 38px 18px;
  }
}
@media screen and (min-width: 900px) {
  .text-content {
    padding: 50px 22px;
  }
}
@media screen and (min-width: 1200px) {
  .text-content {
    padding: 56px 22px;
  }
}

.profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  color: var(--text);
}
@media screen and (min-width: 600px) {
  .profile-name {
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .profile-name {
    font-size: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-name {
    font-size: 48px;
  }
}

.profile-title {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
@media screen and (min-width: 600px) {
  .profile-title {
    font-size: 14px;
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 900px) {
  .profile-title {
    font-size: 15px;
  }
}

.profile-intro {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}
@media screen and (min-width: 600px) {
  .profile-intro {
    font-size: 15px;
  }
}
@media screen and (min-width: 900px) {
  .profile-intro {
    font-size: 16px;
  }
}

/* ===============================
   STORY LEAD
================================ */
.profile-story {
  padding: 70px 16px;
}
@media screen and (min-width: 600px) {
  .profile-story {
    padding: 80px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-story {
    padding: 90px 0;
  }
}

.story-lead {
  max-width: 820px;
  margin: 0 auto;
  line-height: 2.1;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
@media screen and (min-width: 600px) {
  .story-lead {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .story-lead {
    font-size: 17px;
  }
}

/* ===============================
   BLOCKS（左右交互のストーリー）
================================ */
.profile-block {
  padding: 86px 16px;
}
@media screen and (min-width: 600px) {
  .profile-block {
    padding: 92px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-block {
    padding: 100px 0;
  }
}

.profile-block__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1200px) {
  .profile-block__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 90px;
  }
}

.profile-block__image img {
  width: 100%;
  border-radius: var(--radius);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
@media screen and (min-width: 1200px) {
  .profile-block__image img {
    width: 500px;
  }
}

.profile-block__text {
  font-size: 13px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--text);
}
@media screen and (min-width: 600px) {
  .profile-block__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-block__text {
    font-size: 17px;
  }
}

.profile-block__title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
}
@media screen and (min-width: 1200px) {
  .profile-block__title {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

.profile-block__text p {
  line-height: 2;
  color: var(--muted);
}

@media screen and (min-width: 1200px) {
  .profile-block.reverse .profile-block__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* ===============================
   KEY MESSAGE
================================ */
.profile-key {
  text-align: center;
  padding: 30px 16px 20px;
}
@media screen and (min-width: 1200px) {
  .profile-key {
    padding: 40px 0 20px;
  }
}

.profile-key__line {
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
}
@media screen and (min-width: 600px) {
  .profile-key__line {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .profile-key__line {
    font-size: 32px;
  }
}

/* ===============================
   PROFILE KEY 署名画像
================================ */
.profile-key__image2 {
  margin-top: 28px;
  padding-right: 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .profile-key__image2 {
    margin-top: 44px;
    padding-right: 100px;
    text-align: right;
  }
}

.profile-key__image2 img {
  width: 150px;
  height: auto;
  opacity: 0.92;
  display: inline-block;
  -webkit-filter: drop-shadow(0 10px 18px rgba(17, 24, 39, 0.1));
          filter: drop-shadow(0 10px 18px rgba(17, 24, 39, 0.1));
}
@media screen and (min-width: 1200px) {
  .profile-key__image2 img {
    width: 210px;
  }
}

/* ===============================
   Animation
================================ */
@-webkit-keyframes slowRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes slowRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ===============================
   Scroll reveal (fade-up)
================================ */
.js-reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 700ms ease, -webkit-transform 700ms ease;
  transition: opacity 700ms ease, -webkit-transform 700ms ease;
  transition: opacity 700ms ease, transform 700ms ease;
  transition: opacity 700ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  will-change: opacity, transform;
}

.js-reveal.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-reveal.delay-1 {
  -webkit-transition-delay: 120ms;
          transition-delay: 120ms;
}

.js-reveal.delay-2 {
  -webkit-transition-delay: 240ms;
          transition-delay: 240ms;
}

.js-reveal.delay-3 {
  -webkit-transition-delay: 360ms;
          transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
/* =========================================
   Sponsor Page (Sponsor & Supporter)
   - 既存の .inner / .section / .heading / .btn がある前提
   - sponsor_hero.png は切り抜きPNG想定
========================================= */
/* =========================================
   Section spacing
========================================= */
.sponsor-hero,
.sponsor-current,
.sponsor-compare,
.sponsor-value,
.sponsor-pdf,
.supporter-program,
.sponsor-faq,
.sponsor-contact {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .sponsor-hero,
  .sponsor-current,
  .sponsor-compare,
  .sponsor-value,
  .sponsor-pdf,
  .supporter-program,
  .sponsor-faq,
  .sponsor-contact {
    padding: 30px 0;
  }
}

/* =========================================
   HERO
========================================= */
.sponsor-hero {
  position: relative;
  overflow: visible;
  padding-bottom: 10px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
}
@media screen and (min-width: 768px) {
  .sponsor-hero {
    --hero-photo-w: min(460px, 42vw);
  }
}
.sponsor-hero__inner {
  position: relative;
  display: grid;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .sponsor-hero__inner {
    grid-template-columns: 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    min-height: 520px;
  }
}
.sponsor-hero__text {
  max-width: 720px;
}
@media screen and (min-width: 768px) {
  .sponsor-hero__text {
    padding-right: 0 !important;
    max-width: calc(100% - var(--hero-photo-w));
  }
}
.sponsor-hero .heading {
  letter-spacing: 0.08em;
}
.sponsor-hero__lead {
  margin-top: 12px;
  line-height: 1.9;
  opacity: 0.86;
}
.sponsor-hero__cta {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .sponsor-hero__cta {
    gap: 14px;
  }
}
.sponsor-hero__partners {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.sponsor-hero__partners-label {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.sponsor-hero__partner-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.sponsor-hero__partner-logos a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
}
.sponsor-hero__partner-logos a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}
.sponsor-hero__partner-logos img {
  display: block;
  width: auto;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .sponsor-hero__partner-logos img {
    height: 38px;
  }
}
@media screen and (min-width: 768px) {
  .sponsor-hero__photo {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--hero-photo-w);
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    z-index: 2;
    pointer-events: none;
  }
}
.sponsor-hero__photo {
  border-radius: 0;
  overflow: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sponsor-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* HERO画像のはみ出し分、次セクションの上余白を確保 */
@media screen and (min-width: 768px) {
  .sponsor-current {
    padding-top: 110px;
  }
}

/* =========================================
   Current Sponsor Cards
========================================= */
.sponsor-current .supporter__cards {
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .sponsor-current .supporter__cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
.sponsor-current .supporter-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.sponsor-current .supporter-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.sponsor-current .supporter-card__image {
  display: grid;
  place-items: center;
  padding: 18px 16px 8px;
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-current .supporter-card__image img {
  display: block;
  width: 100%;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sponsor-current .supporter-card__body {
  padding: 12px 16px 16px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  opacity: 0.86;
}

/* =========================================
   Compare
========================================= */
.sponsor-compare {
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-compare__grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .sponsor-compare__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.sponsor-compare__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .sponsor-compare__card {
    padding: 24px 22px;
  }
}
.sponsor-compare__card .btn {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.sponsor-compare__title {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .sponsor-compare__title {
    font-size: 18px;
  }
}
.sponsor-compare__list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.sponsor-compare__list li {
  line-height: 1.75;
  opacity: 0.86;
}

/* =========================================
   Value list
========================================= */
.sponsor-value .value-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.sponsor-value .value-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
  opacity: 0.86;
}
.sponsor-value .value-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

/* =========================================
   PDF
========================================= */
.sponsor-pdf__head {
  margin-bottom: 18px;
}
.sponsor-pdf__lead {
  margin-top: 10px;
  line-height: 1.8;
  opacity: 0.86;
}
.sponsor-pdf__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .sponsor-pdf__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
}
.sponsor-pdf__box, .sponsor-pdf__points {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sponsor-pdf__box {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sponsor-pdf__preview {
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-pdf__preview img {
  display: block;
  width: 100%;
  border-radius: 18px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.sponsor-pdf__preview--fallback {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  text-align: center;
  line-height: 1.8;
  color: #555;
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-pdf__viewer {
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-pdf__viewer iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}
@media screen and (min-width: 768px) {
  .sponsor-pdf__viewer iframe {
    height: 560px;
  }
}
.sponsor-pdf__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .sponsor-pdf__actions {
    gap: 14px;
    padding: 18px;
  }
}
.sponsor-pdf__points {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .sponsor-pdf__points {
    padding: 22px;
  }
}
.sponsor-pdf__points-title {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.sponsor-pdf__points-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  line-height: 2;
  color: #555;
}
.sponsor-pdf__points-list li {
  line-height: 1.75;
  opacity: 0.86;
}

/* =========================================
   Supporter Program
========================================= */
.supporter-program__lead {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  opacity: 0.86;
}
@media screen and (min-width: 768px) {
  .supporter-program__lead {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}
.supporter-program__plans {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .supporter-program__plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.supporter-program .plan-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .supporter-program .plan-card {
    padding: 24px 22px;
  }
}
.supporter-program .plan-card__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #f3f6f8;
  color: #333;
}
.supporter-program .plan-card__price {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .supporter-program .plan-card__price {
    font-size: 32px;
  }
}
.supporter-program .plan-card__unit {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.supporter-program .plan-card__catch {
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.86;
}
.supporter-program .plan-card__list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.supporter-program .plan-card__list li {
  line-height: 1.75;
  opacity: 0.86;
}
.supporter-program .plan-card .btn {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.supporter-program .plan-card--single {
  border: 1px solid #d9e3e8;
}
.supporter-program__pdf {
  margin-top: 18px;
}

/* =========================================
   FAQ
========================================= */
.sponsor-faq {
  background: rgba(0, 0, 0, 0.02);
}
.sponsor-faq .faq {
  overflow: hidden;
  margin-top: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sponsor-faq .faq dt {
  padding: 16px 16px 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.sponsor-faq .faq dt:first-child {
  border-top: none;
}
.sponsor-faq .faq dd {
  margin: 0;
  padding: 0 16px 16px;
  line-height: 1.8;
  opacity: 0.86;
}

/* =========================================
   Contact
========================================= */
.sponsor-contact {
  text-align: center;
}
.sponsor-contact__lead {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .sponsor-contact__lead {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}
.sponsor-contact__actions {
  margin-top: 18px;
  margin-bottom: 200px;
  text-align: center;
}
.sponsor-contact__actions .btn {
  margin: 6px;
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  -webkit-transition: background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease;
}
.btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.btn--primary {
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.9);
}
.btn--primary:hover {
  background: rgb(0, 0, 0);
}
.btn--ghost {
  color: rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.7);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ===============================
   Privacy Policy
================================ */
.privacy {
  padding-block: 56px;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .privacy__inner {
    max-width: 980px;
  }
}

.privacy__lead {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  background: #fff;
  padding: 16px 18px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.12);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.12);
}
@media screen and (min-width: 768px) {
  .privacy__lead {
    font-size: 16px;
    padding: 18px 22px;
  }
}

.privacy__content {
  display: grid;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .privacy__content {
    gap: 28px;
  }
}

.privacy__block {
  background: #fff;
  padding: 18px 18px;
  -webkit-box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.12);
          box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.12);
}
@media screen and (min-width: 768px) {
  .privacy__block {
    padding: 22px 24px;
  }
}

.privacy__title {
  font-size: 16px;
  font-weight: 700;
  color: #3ea1d1;
  padding-left: 10px;
  border-left: 3px solid #3ea1d1;
}
@media screen and (min-width: 768px) {
  .privacy__title {
    font-size: 18px;
  }
}

.privacy__text {
  margin-top: 10px;
  color: #333333;
  font-size: 14px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .privacy__text {
    font-size: 16px;
  }
}

.privacy__list {
  margin-top: 10px;
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
  color: #333333;
  font-size: 14px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .privacy__list {
    font-size: 16px;
  }
}

.privacy__link {
  color: #3ea1d1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.thanks {
  padding: 120px 0;
  background: #f7f7f7;
}
.thanks__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.thanks__box {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 60px;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  text-align: center;
}
@media (max-width: 768px) {
  .thanks__box {
    padding: 60px 30px;
  }
}
.thanks__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.thanks__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 40px;
}
.thanks__note {
  padding: 24px;
  background: #f2f2f2;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 48px;
}
.thanks__button .btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid #000;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.thanks__button .btn:hover {
  background: #000;
  color: #fff;
}