@charset "UTF-8";
/*=============================
font
=============================*/
:root {
  --font-heading: Futura, Jost, Noto Sans JP, sans-serif;
  --font-body: Futura, Jost, Noto Sans JP, sans-serif;
}

/*=============================
color
=============================*/
:root {
  --color-primary: #ea5514;
  --color-bg: #ffffff;
  --color-text-base: #000;
  --color-text-white: #ffffff;
}

/*=============================
Breakpoints
=============================*/
/* =============================
  Device Utility
============================= */
.pc {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}

/*=============================
loading
=============================*/
.loading {
  position: fixed;
  inset: 0;
  background: #F24C0C;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* 追加：ふわっと消す */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loading.is-hide {
  opacity: 0;
  visibility: hidden;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* 追加：ロゴも気持ちよく */
.loading.is-hide .loading-inner {
  transform: translateY(-6px);
  transition: transform 0.8s ease;
}

.loading-logo {
  width: 160px;
  animation: logoFloat 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .loading-logo {
    width: 120px;
  }
}

.loading-text {
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 14px;
  animation: logoFloat 2.5s ease-in-out infinite;
}

.loading-text::after {
  content: "...";
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ローディングは最初は出さない */
.loading {
  display: none;
}

/* 初回だけ html にフラグが付いたら表示 */
html.has-loading .loading {
  display: flex;
}

/*=============================
common
=============================*/
html {
  width: 100%;
  font-size: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-base);
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-size: clamp(13px, 12px + 0.2vw, 15px);
  font-weight: 400;
  text-align: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-weight: 600;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all ease 0.3s !important;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

a, button {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:visited,
a:active {
  color: inherit;
}

ul,
li {
  list-style: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.section {
  padding: 80px 0 0;
}
@media screen and (max-width: 959px) {
  .section {
    padding: 45px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0 0;
  }
}

.inner {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .inner {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
}

.caption {
  font-size: 12px;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 10px;
  }
}

.section-title__top {
  font-size: clamp(17px, 0.3vw + 15.9px, 20px);
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-title__top {
    margin-bottom: 30px;
  }
}
.section-title__top .h2-sub {
  display: block;
  font-size: clamp(10px, 0.3vw + 8.9px, 13px);
  font-weight: 500;
}

.bg-orange {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  padding: 0.5em 1.5em;
  border-radius: 50px;
  font-weight: 600;
}
.arrow-link .arrow {
  width: 20px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.3s ease;
}
.arrow-link:hover .arrow {
  transform: translateX(2px);
}

.page-mv {
  height: clamp(260px, 55vh, 520px);
  padding: 0 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .page-mv {
    height: clamp(180px, 28vh, 240px);
    padding: 0px;
    padding-top: 20px;
  }
}

.page-mv-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 2vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-mv-wrapper {
    border-radius: 0;
  }
}

.page-mv-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
.page-mv-overlay .page-mv-copy {
  position: absolute;
  text-align: left;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 35px + 2vw, 80px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .page-mv-overlay .page-mv-copy {
    line-height: 1.3;
    bottom: 15%;
  }
}
.page-mv-overlay .page-mv-copy .page-mv-copy__sub {
  display: block;
  font-size: clamp(12px, 11px + 0.3vw, 16px);
  letter-spacing: 0.12em;
  margin-bottom: 1.2em;
  font-weight: 700;
}

.page-support {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .page-support {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .any-page .breadcrumb {
    margin-top: 30px;
    font-size: 10px;
    margin-bottom: 20px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  text-align: left;
  color: #636363;
  margin-top: 40px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 10px;
  }
}

.breadcrumb-home-icon {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .breadcrumb-home-icon {
    width: 11px;
    height: 11px;
  }
}

.note {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  text-align: right;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 8px;
  }
}

/*=============================
header
=============================*/
#header {
  position: sticky;
  transition: transform 0.5s ease;
}

header {
  width: 95%;
  top: 20px;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
  border-radius: 1vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header {
    border-radius: 4vw;
    top: 10px;
  }
}
header .header_inner {
  height: 90px;
  margin: 0 auto;
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  header .header_inner {
    height: 70px;
    padding: 0 4%;
  }
}
header .header-l {
  display: block;
  width: 30%;
  max-width: 170px;
  z-index: 100;
}
@media screen and (max-width: 959px) {
  header .header-l {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  header .header-l {
    width: 40%;
  }
}
header .header-r {
  margin-right: 2%;
  width: 30%;
  max-width: 450px;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  header .header-r {
    width: 30%;
    margin-right: 8%;
  }
}
@media screen and (max-width: 767px) {
  header .header-r {
    display: none;
    margin-right: 0;
  }
}
header .header-r .header-r__donate {
  margin-left: 15px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  padding: 0.7em 1.5em;
  border-radius: 25px;
  font-weight: 500;
}
header .header-r .header-r__register {
  font-weight: 500;
}
header .nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1500;
}
header .nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
header {
  /* =============================
     nav debug（開発中のみ）
  ============================= */
}
header .header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  height: 100dvh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s ease;
}
header .header-nav.active {
  transform: translateX(0);
}
@media screen and (max-width: 959px) {
  header .header-nav {
    width: 100vw;
  }
}
header .header-nav .header-nav__wrapper {
  height: 100%;
  padding: 80px 8vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper {
    padding: 70px 25px 30px;
  }
}
header .header-nav .header-nav__wrapper .header-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .header-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
header .header-nav .header-nav__wrapper .navi-heading {
  display: block;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-size: clamp(22px, 0.9vw + 18.5px, 32px);
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .navi-heading {
    line-height: 1.5;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
}
header .header-nav .header-nav__wrapper .navi-heading:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .navi-heading:not(:last-child) {
    line-height: 1.5;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
}
header .header-nav .header-nav__wrapper .navi-heading__sub {
  display: block;
  font-size: clamp(12px, 0.1vw + 11.6px, 13px);
  letter-spacing: 0.1em;
  color: #111;
  font-weight: 600;
}
header .header-nav .header-nav__wrapper .nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-footer {
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
header .header-nav .header-nav__wrapper .nav-logo {
  width: 40%;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-logo {
    width: 160px;
    margin-right: 10%;
  }
  header .header-nav .header-nav__wrapper .nav-logo img {
    width: 100%;
    height: auto;
  }
}
header .header-nav .header-nav__wrapper .nav-sns {
  width: 40%;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-sns {
    width: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
header .header-nav .header-nav__wrapper .nav-sns a {
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-sns a:nth-child(2) img {
    margin-top: 1px;
  }
}
header .header-nav .header-nav__wrapper .nav-sns a:nth-child(4) img {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-sns a:nth-child(4) img {
    margin-top: 2px;
  }
}
header .header-nav .header-nav__wrapper .nav-sns a img {
  width: 80%;
  cursor: pointer;
  height: auto;
}
@media screen and (max-width: 767px) {
  header .header-nav .header-nav__wrapper .nav-sns a img {
    width: 65px;
  }
}
header .hamburger {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  header .hamburger {
    width: 38px;
    height: 38px;
    right: 20px;
  }
}
header .hamburger span {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 4px;
  background-color: #251714;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.43 ease;
}
header .hamburger span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -10px);
}
header .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0);
}
header .hamburger span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 10px);
}
header .hamburger.active span {
  background-color: var(--color-primary);
}
header .hamburger.active span:nth-of-type(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active span:nth-of-type(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

/*=============================
mv
=============================*/
.mv {
  height: calc(100vh - 85px);
  padding: 0 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 0px;
    margin-top: -70px;
  }
}

.mv-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 2vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-wrapper {
    border-radius: 0;
  }
}

.footer_wave {
  position: absolute;
  top: 400px;
  left: -50%;
  transform: rotate(90deg);
  z-index: 1;
  width: 110vw;
}
@media screen and (max-width: 767px) {
  .footer_wave {
    width: 250vw;
    top: 300px;
    left: -120%;
  }
}

.parallax > use {
  animation: move-forever 7s linear infinite;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
.parallax > use:nth-child(1) {
  animation-duration: 12s;
  opacity: 0.3;
}

.parallax > use:nth-child(2) {
  animation-duration: 8s;
  opacity: 0.7;
}

.parallax > use:nth-child(3) {
  animation-duration: 5s;
  opacity: 1;
}

.editorial {
  display: block;
  width: 90%;
  height: 100%;
}

.mv-swiper,
.mv-swiper .swiper-wrapper,
.mv-swiper .swiper-slide {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.mv-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
.mv-overlay .mv-copy {
  position: absolute;
  text-align: left;
  left: 5%;
  bottom: 10%;
  font-size: clamp(20px, 35px + 2vw, 80px);
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv-overlay .mv-copy {
    line-height: 1.3;
    bottom: 15%;
  }
}
.mv-overlay .mv-copy .mv-copy__sub {
  display: block;
  font-size: clamp(12px, 11px + 0.3vw, 16px);
  letter-spacing: 0.12em;
  margin-bottom: 1.2em;
  font-weight: 700;
}
.mv-overlay .mv-news {
  position: absolute;
  z-index: 10;
  pointer-events: auto;
  right: 0;
  bottom: 0;
  width: 40%;
  min-height: 100px;
  max-width: 600px;
  padding: 1.5em 2.5em;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(12px, 11px + 0.25vw, 20px);
}
.mv-overlay .mv-news:hover {
  background-color: #ff5a13;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .mv-overlay .mv-news {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mv-overlay .mv-news {
    padding: 1.2em 2em;
    min-height: 60px;
  }
}
.mv-overlay .mv-news .mv-news__title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.mv-overlay .mv-news .mv-news__conts {
  flex: 1;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mv-overlay .mv-news .mv-news__conts {
    font-weight: 600;
  }
}
.mv-overlay .mv-news .mv-news__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.mv-overlay .mv-news .mv-news__btn .mv-news__btn-icon {
  position: absolute;
  margin-left: 0.1rem;
  width: 0;
  height: 0;
  border-left: 0.4rem solid #ea5b0c;
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  transition: transform 0.3s ease;
}
.mv-overlay .mv-news:hover .mv-news__btn {
  transform: translateX(0.4rem);
}
.mv-overlay .mv-news:hover .mv-news__btn-icon {
  transform: translateX(0rem);
}

.mv-news-list {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #ea5514;
}

.mv-news-list .mv-news {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  max-width: 600px;
  pointer-events: none;
  opacity: 0;
  transition: all 1s ease;
}
@media screen and (max-width: 767px) {
  .mv-news-list .mv-news {
    width: 100%;
    min-height: 65px;
  }
}

.mv-news-list .mv-news.is-active {
  pointer-events: auto;
  opacity: 1;
}

/*=============================
intro
=============================*/
.top-intro .intro-message {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-message {
    width: 100%;
  }
}
.top-intro .intro-message img {
  margin: 0 auto;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-message img {
    width: 50%;
  }
}
.top-intro .intro-message .intro-message__copy {
  margin-top: 30px;
  font-size: clamp(18px, 1.6vw + 12px, 35px);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-message .intro-message__copy {
    font-weight: 800;
    font-size: 22px;
  }
}
.top-intro .intro-message .intro-message__copy span {
  display: block;
  font-weight: 600;
  font-size: clamp(12px, 10.5px + 0.4vw, 16px);
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-message .intro-message__copy span {
    margin-top: 5px;
    line-height: 1.2;
  }
}
.top-intro .intro-message .intro-message__text {
  text-align: justify;
  margin-top: 35px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-message .intro-message__text {
    margin-top: 25px;
    font-weight: 600;
    line-height: 2.2;
    letter-spacing: normal;
  }
}
.top-intro .intro-wrapper {
  text-align: left;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper {
    display: block;
    margin-top: 35px;
  }
}
.top-intro .intro-wrapper .intro-card {
  width: 48%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-card {
    width: 100%;
  }
  .top-intro .intro-wrapper .intro-card:first-of-type {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-card:first-of-type {
    margin-bottom: 35px;
  }
}
.top-intro .intro-wrapper .intro-card .img-wrap {
  border-radius: 1vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-card .img-wrap {
    border-radius: 1vw;
  }
}
.top-intro .intro-wrapper .intro-card .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.top-intro .intro-wrapper .intro-card p {
  margin-top: 10px;
  letter-spacing: 0.05em;
  flex-grow: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-card p {
    font-weight: 600;
  }
}
.top-intro .intro-wrapper .intro-title {
  margin-top: 30px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  margin-bottom: initial;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-title {
    font-weight: 800;
    margin-top: 25px;
  }
}
.top-intro .intro-wrapper .intro-title .h2-sub {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
}
.top-intro .intro-wrapper .intro-title .h2-sub::after {
  content: "";
  width: 100%;
  height: 0.5px;
  background: #000;
  margin-left: 15px;
}
.top-intro .intro-wrapper .intro-link {
  margin-top: 18px;
  padding: 10px 10px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  transition: background-color 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-intro .intro-wrapper .intro-link {
    width: 150px;
  }
}
.top-intro .intro-wrapper .intro-link .intro-link__icon {
  width: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.top-intro .intro-wrapper .intro-link:hover .intro-link__icon {
  transform: translateX(2px);
}

/*=============================
top-pr
=============================*/
.top-pr {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-pr {
    padding-bottom: 50px;
  }
}
.top-pr .section-title__top {
  font-weight: 600;
  margin-bottom: 20px;
}
.top-pr .section-title__top .h2-sub {
  font-weight: 600;
}

.pr-movie__card {
  width: min(100%, 980px); /* ←この “min” がサイズ感の正体 */
  margin: 0 auto;
  border-radius: 1vw;
  overflow: hidden;
  /* 高さを固定しすぎず、画面に合わせて気持ちよく伸縮 */
  height: clamp(300px, 44vw, 520px);
}
@media screen and (max-width: 767px) {
  .pr-movie__card {
    height: clamp(270px, 36vw, 490px);
  }
}

.pr-movie__card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*=============================
top-news
=============================*/
.top-news {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-bottom: 50px;
  }
}
.top-news .section-title__top {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-news .section-title__top {
    font-weight: 900;
  }
}
.top-news .section-title__top .h2-sub {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-news .section-title__top .h2-sub {
    font-weight: 800;
  }
}
.top-news .news-swiper {
  position: relative;
}
.top-news .news-swiper-pagination {
  margin: 40px auto;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-news .news-swiper-pagination {
    margin: 30px auto;
    gap: 3px;
  }
}
.top-news .news-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-news .news-swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
.top-news .news-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1.15);
}
.top-news .news-card {
  text-align: left;
}
.top-news .news-card img {
  border-radius: 1vw;
  overflow: hidden;
}
.top-news .news-card h3 {
  margin-top: 18px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 3em;
}
@media screen and (max-width: 767px) {
  .top-news .news-card h3 {
    font-weight: 800;
  }
}
.top-news .news-card .news-meta {
  font-size: clamp(9px, 0.3vw + 8px, 12px);
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.top-news .news-card .news-meta .tag {
  font-size: clamp(8.5px, 0.1vw + 8px, 10px);
  background-color: #fff;
  border-radius: 4vw;
  color: var(--color-primary);
  padding: 3px 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-news .news-card .news-meta .tag {
    font-size: 10px;
  }
}
.top-news .news-card .news-meta time {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-news .news-card .news-meta time {
    font-weight: 600;
    font-size: 10px;
  }
}
.top-news .news-link {
  color: var(--color-primary);
  background-color: #fff;
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .top-news .news-link {
    width: 175px;
  }
}

.news-card {
  transition: all 0.4s ease;
}

.news-card:hover {
  filter: brightness(1.1);
  opacity: 1;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: inherit;
  min-height: 200px;
}

/*=============================
top-support
=============================*/
.top-support {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-support .inner {
    width: 100%;
  }
}
.top-support .section-title__top {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-support .section-title__top {
    font-weight: 700;
    margin-bottom: 20px;
  }
}
.top-support .section-title__top .h2-sub {
  font-weight: 800;
}
.top-support .support-message {
  text-align: justify;
  margin: 0 auto;
  width: 70%;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .top-support .support-message {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .top-support .support-message {
    width: 90%;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 2.2;
  }
}
.top-support .support-wrapper {
  margin-top: 45px;
  display: flex;
  border-radius: 2vw;
  overflow: hidden;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .top-support .support-wrapper {
    flex-direction: column;
    margin-top: 30px;
    border-radius: 0;
  }
}
.top-support .support-left {
  width: 50%;
  padding: 50px;
  background: var(--color-primary);
  color: #fff;
}
@media screen and (max-width: 959px) {
  .top-support .support-left {
    padding: 35px;
  }
}
@media screen and (max-width: 767px) {
  .top-support .support-left {
    padding: 30px;
    padding-bottom: 35;
    width: 100%;
  }
}
.top-support .support-title {
  font-size: clamp(18px, 0.2vw + 17.3px, 20px);
  font-weight: 600;
  display: inline;
  background: linear-gradient(transparent 60%, #ea2d14 60%);
}
@media screen and (max-width: 767px) {
  .top-support .support-title {
    font-weight: 700;
  }
}
.top-support .support-text {
  margin-top: 30px;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-support .support-text {
    font-weight: 600;
    letter-spacing: normal;
    margin-top: 20px;
  }
}
.top-support .support-right {
  width: 50%;
  padding: 50px;
}
@media screen and (max-width: 959px) {
  .top-support .support-right {
    padding: 35px;
  }
}
@media screen and (max-width: 767px) {
  .top-support .support-right {
    padding: 35px 30px;
    width: 100%;
  }
}
.top-support .support-choice {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}
.top-support .tab_left {
  padding-left: 15px !important;
}
.top-support .tab_right {
  padding-right: 15px !important;
}
.top-support .support-choice__tab {
  font-size: clamp(14px, 0.2vw + 13.3px, 16px);
  letter-spacing: 0.2em;
  flex: 1;
  padding: 0.9rem 0;
  border: none;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.top-support .support-choice__tab.is-active {
  background: var(--color-primary);
  color: var(--color-text-white);
}
.top-support .support-content {
  margin-top: 30px;
  display: none;
  letter-spacing: 0em;
}
.top-support .support-content.is-active {
  display: block;
}
.top-support .support-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.top-support .support-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: clamp(12px, 0.2vw + 11.3px, 14px);
  text-align: left;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .top-support .support-list li {
    font-weight: 600;
  }
}
.top-support .support-list li img {
  width: 1rem;
}
.top-support .support-btn {
  background: #ef5a0c;
  color: #fff;
  padding: 1em 2em;
}
.top-support .support-btn:hover {
  opacity: 0.85;
}

/*=============================
gallery
=============================*/
.gallery-loop {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.gallery-track img {
  flex-shrink: 0;
  width: 30%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 959px) {
  .gallery-track img {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .gallery-track img {
    width: 60%;
  }
}
/*=============================
faq
=============================*/
.top-faq {
  padding-bottom: 70px;
}
.top-faq .inner {
  max-width: 1100px;
}
.top-faq .section-title__top {
  font-weight: 700;
}
.top-faq .section-title__top .h2-sub {
  font-weight: 800;
}
.top-faq .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  width: 85%;
  margin: 0 auto;
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  .top-faq .faq-wrapper {
    width: 100%;
  }
}
.top-faq .faq-item {
  overflow: hidden;
}
.top-faq .faq-item .question {
  border: 1.5px solid #dbdcdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top-faq .faq-item .question {
    padding: 1em;
  }
}
.top-faq .faq-item .question-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .top-faq .faq-item .question-left {
    gap: 12px;
  }
}
.top-faq .faq-item .question img {
  width: 1.5em;
}
.top-faq .faq-item .question p {
  font-weight: 600;
}
.top-faq .faq-item .faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.top-faq .faq-item .faq-toggle span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}
.top-faq .faq-item .faq-toggle span:last-child {
  transform: rotate(90deg);
}
.top-faq .faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-faq .faq-item .answer .answer-inner {
  padding: 1.5em 1.6em;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-faq .faq-item .answer img {
  width: 1.5em;
}
.top-faq .faq-item .answer p {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-faq .faq-item .answer p {
    font-weight: 600;
  }
}
.top-faq .faq-item.is-open .answer {
  max-height: 500px;
}
.top-faq .faq-item.is-open .answer .answer-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.top-faq .faq-item.is-open .faq-toggle span:last-child {
  transform: rotate(0deg);
}

/*=============================
footer
=============================*/
.footer {
  padding: 80px 0 60px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
}
.footer .footer-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
}
@media screen and (max-width: 959px) {
  .footer .footer-inner {
    max-width: 100%;
    padding: 0 20px;
    flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-logo {
  width: 15%;
  min-width: 150px;
}
@media screen and (max-width: 959px) {
  .footer .footer-logo {
    width: 30%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-logo {
    width: 40%;
  }
  .footer .footer-logo img {
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) and (max-width: 959px) {
  .footer .footer-logo img {
    margin: 0 auto;
  }
}
.footer .footer-nav {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .footer .footer-nav {
    margin: 0 auto;
  }
}
.footer .footer-nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0;
}
@media screen and (max-width: 959px) {
  .footer .footer-nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.footer .footer-nav ul li a {
  font-size: clamp(14px, 0.2vw + 13.3px, 16px);
  font-weight: 600;
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  padding: 4px 0;
}
@media screen and (max-width: 959px) {
  .footer .footer-nav ul li a {
    font-size: clamp(16px, 1vw, 18px);
  }
}
.footer .footer-nav ul li span {
  font-weight: 600;
  display: block;
  font-size: clamp(11px, 0.2vw + 10.3px, 13px);
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  opacity: 0.9;
}
@media screen and (max-width: 959px) {
  .footer .footer-nav ul li span {
    font-size: clamp(13px, 0.8vw, 15px);
  }
}
.footer .footer-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .footer .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-l {
    width: 100%;
  }
}
.footer .footer-l .company {
  max-width: 700px;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .footer .footer-l .company {
    width: 100%;
  }
}
.footer .footer-l .company p {
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: normal;
  font-size: 17px;
}
.footer .footer-l .company a {
  font-size: clamp(11px, 0.3vw + 9.9px, 14px);
  display: block;
  margin-top: 4px;
}
.footer .footer-l .company .address {
  letter-spacing: 0.05em;
  font-weight: 600;
}
.footer .footer-l .company .tel {
  letter-spacing: 0.05em;
  font-weight: 600;
}
.footer .footer-l .footer-sns {
  margin-top: 20px;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer .footer-l .footer-sns img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .footer .footer-l .footer-sns {
    width: 100%;
  }
  .footer .footer-l .footer-sns img {
    width: 70px;
  }
}
.footer .footer-r {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-right: 7%;
}
@media screen and (max-width: 959px) {
  .footer .footer-r {
    width: 100%;
    flex-direction: row;
    gap: 20px;
    margin-right: 0%;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-r {
    flex-direction: column;
    gap: 15px;
    margin-right: 0%;
  }
}
.footer .footer-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 180px;
  padding: 1em 0;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  color: var(--color-primary);
  transition: all 0.25s ease, color 0.25s ease;
  border: 1px solid #fff;
}
.footer .footer-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid #fff;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .footer .footer-btn {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-btn {
    width: 80%;
    height: 60px;
    margin: 0 auto;
  }
}
.footer .footer-copyright {
  font-weight: 300;
  font-size: 10px;
}
@media screen and (max-width: 959px) {
  .footer .footer-copyright {
    margin-top: -10px;
    text-align: center;
  }
}

.footer-bottom {
  display: flex;
  justify-content: flex-start; /* 中央寄せ */
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap; /* SPで折り返し */
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    gap: 1px;
  }
}

.footer-copyright {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    text-align: left;
    font-size: 9px !important;
    letter-spacing: 0.8px;
  }
}

.footer-privacy {
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  margin-left: 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer-privacy {
    margin-left: 0px;
    font-size: 9px !important;
    letter-spacing: 0.8px;
  }
}

/*=============================
about-intro
=============================*/
.about-intro {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .about-intro {
    padding-bottom: 50px;
  }
}

.about-intro-img {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 25%;
  right: 0%;
}
@media screen and (max-width: 959px) {
  .about-intro-img {
    top: 20%;
    width: 70%;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .about-intro-img {
    width: 125%;
    top: 0%;
    opacity: 0.25;
    display: block;
  }
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.about-intro-text {
  text-align: left;
}

.about-intro-copy {
  font-size: clamp(35px, 0.94vw + 31.48px, 45px);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about-intro-copy {
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
  }
}

.about-intro-copy__sub {
  display: block;
  font-size: clamp(13px, 0.28vw + 11.94px, 16px);
  margin-top: 30px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .about-intro-copy__sub {
    margin-top: 20px;
    font-weight: 700;
  }
}

.about-intro-message {
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .about-intro-message {
    font-weight: 700;
    line-height: 2;
  }
}

/*=============================
about-project
=============================*/
.about-project {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .about-project {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

.about-project-title {
  position: relative;
}

.about-project-title-text {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 1.88vw + 12.96px, 40px);
  font-weight: 600;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .about-project-title-text {
    top: -20px;
    font-weight: 800;
  }
}

.about-project-title-img {
  position: absolute;
  top: -90%;
  right: 0;
  width: 100%;
  mix-blend-mode: multiply;
}

.about-project-items {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about-project-items {
    margin-top: 25px;
  }
}

.about-project-item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  background: var(--color-bg);
  color: var(--color-text-base);
  border-radius: 2vw;
  max-width: 1000px;
  margin: 0px auto 50px;
}
@media screen and (max-width: 767px) {
  .about-project-item {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}

.about-project-item-left {
  padding: 5%;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .about-project-item-left {
    width: 100%;
    padding-bottom: 8%;
  }
}

.about-project-item-kicker {
  font-size: clamp(12px, 0.75vw + 9.18px, 20px);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .about-project-item-kicker {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.about-project-item-title {
  font-size: clamp(20px, 0.94vw + 16.48px, 30px);
  color: var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about-project-item-title {
    font-weight: 800;
    margin-bottom: 15px;
  }
}

.about-project-item-line {
  height: 0.5px;
  background-color: var(--color-text-base);
}
@media screen and (max-width: 767px) {
  .about-project-item-line {
    height: 0.5px;
  }
}

.about-project-item-text {
  text-align: justify;
  margin-top: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .about-project-item-text {
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.about-project-item-right {
  width: 40%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about-project-item-right {
    width: 100%;
  }
}

.about-project-item-right img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 2vw 2vw 0px;
}
@media screen and (max-width: 767px) {
  .about-project-item-right img {
    height: 250px;
    border-radius: 2vw 2vw 0px 0px;
  }
}

/*=============================
about-outline
=============================*/
.about-outline {
  max-width: 1000px;
  margin: 0px auto;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .about-outline {
    padding-top: 50px;
  }
}

.about-outline-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .about-outline-title {
    margin-bottom: 30px;
  }
}

.about-outline-title__jp {
  font-size: clamp(20px, 0.47vw + 18.24px, 25px);
  color: var(--color-primary);
  font-weight: 600;
}

.about-outline-title__en {
  font-size: clamp(12px, 0.19vw + 11.3px, 14px);
  font-weight: 600;
  color: var(--color-primary);
}

.about-outline-title__line {
  flex: 1;
  height: 1px;
  background-color: var(--color-primary);
}

/* 見出し横のライン */
.about-outline__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ff3b00;
  opacity: 0.6;
}

/* dl全体 */
.about-outline__dl {
  margin: 0;
  border-top: 1px solid #eee;
  text-align: left;
}

/* 1行 */
.about-outline__row {
  display: grid;
  grid-template-columns: 110px 1fr; /* 左ラベル幅 */
  -moz-column-gap: 60px;
       column-gap: 60px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .about-outline__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 15px;
  }
}

.about-outline__dt {
  margin: 0;
  color: #ff3b00;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-outline__dd {
  margin: 0;
  color: #111;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.about-outline__dd span {
  opacity: 0.5;
  font-weight: 300;
  font-size: 12px;
}

/* 箇条書き */
.about-outline__list {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 5px; /* 行間 */
}

.about-outline__list li {
  line-height: 2.2;
  list-style: disc;
  font-weight: 500;
}

/*=============================
about-partner
=============================*/
.about-partner {
  max-width: 1000px;
  margin: 0px auto;
}

.about-partner-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .about-partner-title {
    margin-bottom: 30px;
  }
}

.about-partner-title__jp {
  font-size: clamp(20px, 0.47vw + 18.24px, 25px);
  color: var(--color-primary);
  font-weight: 600;
}

.about-partner-title__en {
  font-size: clamp(12px, 0.19vw + 11.3px, 14px);
  font-weight: 600;
  color: var(--color-primary);
}

.about-partner-title__line {
  flex: 1;
  height: 1px;
  background-color: var(--color-primary);
}

.about-partner__banner {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 32px 50px;
  margin: 0 auto 50px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .about-partner__banner {
    padding: 20px 0px;
    margin-bottom: 35px;
  }
}
.about-partner__banner h3 {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  font-size: clamp(15px, 1.22vw + 10.42px, 28px);
}
@media screen and (max-width: 767px) {
  .about-partner__banner h3 {
    font-size: 14px;
    margin-bottom: 0px;
  }
}
.about-partner__banner p {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about-partner__banner p {
    padding: 0px 30px;
    font-size: 10px;
    line-height: 1.8;
    margin-top: 5px;
  }
}

.about-partner__list {
  list-style: none;
  margin: 0 auto;
  padding-left: 15px;
  max-width: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0px;
       column-gap: 0px;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .about-partner__list {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

/* 1行の中の●とテキスト */
.about-partner__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-partner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b00;
  flex: 0 0 10px;
  transform: translateY(-1px); /* ベースライン微調整 */
}

.about-partner__text {
  font-size: clamp(13px, 0.19vw + 12.3px, 15px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

/*=============================
member-intro
=============================*/
.member-intro {
  max-width: 800px;
  margin: 0 auto;
}
.member-intro p {
  line-height: 2.2;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .member-intro p {
    line-height: 1.8;
    letter-spacing: normal;
  }
}

/*=============================
member-item
=============================*/
.member-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: flex-start;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .member-items {
    width: 90%;
    justify-content: space-between;
  }
}

.member-item {
  width: 23%;
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .member-item {
    width: 48%;
    margin-bottom: 30px;
  }
}

.member-item__media {
  position: relative;
  overflow: hidden;
  border-radius: 1vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .member-item__media {
    border-radius: 2vw;
  }
}

.member-item__media p {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 1px;
  background: rgba(232, 93, 12, 0.831372549);
  color: #fff;
  writing-mode: vertical-rl; /* 縦書き */
  text-orientation: mixed;
  letter-spacing: 0.2em;
  min-height: 120px;
  font-weight: normal;
  letter-spacing: 0.4em;
}

.member-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1vw;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .member-item__media img {
    border-radius: 2vw;
  }
}
.member-item__media img:hover {
  scale: 1.1;
}

.member-item__body {
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .member-item__body {
    padding-top: 10px;
  }
}

.member-item__name {
  margin: 0 0 5px;
  font-size: clamp(15px, 0.47vw + 13.24px, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .member-item__name {
    margin: 0 0 2px;
  }
}

.member-item__meta {
  margin: 0 0 6px;
  display: flex;
  gap: 0px;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .member-item__meta {
    margin: 0 0 0px;
  }
}

.member-item__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #111;
  opacity: 0.8;
  min-width: 2.8em; /* 「犬種」「保有資格」の頭が揃う */
}
@media screen and (max-width: 767px) {
  .member-item__label {
    min-width: 3em;
    font-size: 10px;
  }
}

.member-item__value {
  position: relative;
  display: inline-block;
  align-items: center;
  font-size: clamp(10px, 0.28vw + 8.94px, 13px);
  font-weight: 300;
  color: #111;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
  letter-spacing: normal;
}
.member-item__value::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8em; /* 文字高さに合わせる */
  background: #000;
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  .member-item__value::before {
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .member-item__value {
    letter-spacing: normal;
  }
}

.member-item__rule {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 5px 0;
}
@media screen and (max-width: 767px) {
  .member-item__rule {
    margin: 7px 0px;
  }
}

/* 資格リスト（●がオレンジ） */
.member-item__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0px;
}
@media screen and (max-width: 767px) {
  .member-item__list {
    gap: 0px;
  }
}

.member-item__list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .member-item__list li {
    font-size: 10px;
  }
}

.member-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3b00;
  transform: translateY(-60%);
}

/*=============================
news-side
=============================*/
.news-side {
  position: absolute;
  left: 10%;
  margin-top: 80px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .news-side {
    position: static;
    margin-top: 50px;
  }
}

.news-filter {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.news-filter a {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-filter a {
    display: block;
  }
}

.news-filter a:hover {
  opacity: 0.65;
  transform: translateY(-3px);
}

/* アクティブだけ●＋色変更 */
.news-filter a.is-active {
  color: var(--color-primary);
}

/* ● */
.news-filter a.is-active::before {
  content: "";
  position: absolute;
  left: 0.6em;
  top: 0.9em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.news-filter-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .news-filter-sp {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 7%;
    margin: 10px 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -2%;
  }
  .news-filter-title {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
  }
  /* オレンジ丸 */
  .news-filter-title::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
  }
  .news-filter-sp::-webkit-scrollbar {
    display: none;
  }
  .news-filter-sp a {
    flex: 0 0 auto;
    padding: 5px 20px;
    border-radius: 8vw;
    background: rgba(255, 60, 0, 0.0862745098);
    color: #111;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 5px;
    font-size: 12px;
  }
  .news-filter-sp a.is-active {
    background: var(--color-primary);
    color: #fff;
  }
}
/*=============================
news-item
=============================*/
.news-items {
  min-height: 400px;
}
@media screen and (max-width: 767px) {
  .news-items {
    min-height: 0px;
    padding-top: 25px;
  }
}

.news-item {
  background: rgba(255, 60, 0, 0.0862745098);
  display: flex;
  align-items: stretch;
  width: 80%;
  margin-left: auto;
  text-align: left;
  cursor: pointer;
  border-radius: 1vw;
  transition: all 0.25s ease;
  margin-bottom: 50px;
}
.news-item:hover {
  background: #ea5514;
  transform: translateY(-5px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .news-item {
    margin-bottom: 30px;
    border-radius: 2vw;
    width: 100%;
    align-items: flex-start;
  }
}

.news-item-left {
  padding: 70px 50px;
  flex: 0 0 65%;
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-item-left {
    width: 100%;
    padding: 5% 5%;
  }
}

.news-item__pill {
  font-size: 12px;
  background-color: var(--color-primary);
  border-radius: 2vw;
  color: #fff;
  padding: 2px 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  transition: all 0.25s ease;
  text-align: center;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-item__pill {
    font-size: 9px;
    border-radius: 4vw;
    font-weight: 600;
    padding: 3px 10px 2px;
    letter-spacing: 0.1em;
  }
}

.news-item:hover .news-item__pill {
  background-color: #fff;
  color: var(--color-primary);
}

.news-item__date {
  font-size: 12px;
  margin-left: 10px;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .news-item__date {
    font-size: 9px;
    margin-left: 5px;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}

.news-item:hover .news-item__date {
  color: #fff;
}

.news-item__title {
  font-size: clamp(15px, 0.66vw + 12.54px, 22px);
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    margin-top: 10px;
    -webkit-line-clamp: 2;
    font-weight: 700;
    font-size: 12px;
  }
}

.news-item:hover .news-item__title {
  color: #fff;
}

.news-item-right {
  border-radius: 0 1vw 1vw 0;
  overflow: hidden;
  flex: 0 0 35%;
  aspect-ratio: 1/1; /* 比率固定（超重要） */
  overflow: hidden;
  min-height: 130px;
}
@media screen and (max-width: 767px) {
  .news-item-right {
    width: 130px;
    border-radius: 0 2vw 2vw 0;
    aspect-ratio: 1/1; /* 比率固定（超重要） */
    overflow: hidden;
    flex: 0 0 35%;
  }
}

.news-item-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .news-item-right img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*=============================
news-pagination
=============================*/
.pagination {
  margin: 80px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 45px;
  }
}

.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .pagination .nav-links {
    gap: 10px;
  }
}

/* 共通 */
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.25s ease;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .pagination a,
  .pagination span {
    font-size: 13px;
    min-width: 30px;
    height: 30px;
  }
}

/* 通常の数字 */
.pagination a:hover {
  background: rgba(255, 60, 0, 0.0862745098);
}

/* 現在ページ（●付きの1） */
.pagination .current {
  background: var(--color-primary);
  color: #fff;
}

/* … */
.pagination .dots {
  min-width: auto;
  padding: 0 6px;
  color: var(--color-primary);
}

/* 前へ・次へ（三角） */
.pagination .prev,
.pagination .next {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .pagination .prev,
  .pagination .next {
    min-width: 30px;
    height: 30px;
  }
}

.pagination .prev:hover,
.pagination .next:hover {
  opacity: 0.6;
}

/*=============================
news-post
=============================*/
.news-post {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .news-post {
    width: 100%;
  }
}

.news-post__meta {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news-post__meta {
    margin-bottom: 10px;
  }
}

.news-post__pill {
  font-size: 12px;
  padding: 3px 15px;
  background-color: var(--color-primary);
  border-radius: 2vw;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news-post__pill {
    border-radius: 4vw;
    font-weight: 600;
    font-size: 10px;
    padding: 3px 12px;
    letter-spacing: 0.1em;
  }
}

.news-post__date {
  font-size: 12px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .news-post__date {
    margin-left: 5px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

.news-post__title {
  font-size: clamp(15px, 0.94vw + 11.48px, 25px);
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news-post__title {
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.8;
    font-size: 18px;
  }
}

.news-post__hero {
  width: 100%;
  aspect-ratio: 16/9; /* 好みで 3/2, 4/3 もOK */
  overflow: hidden;
  border-radius: 20px; /* 角丸してるなら */
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news-post__hero {
    margin-bottom: 30px;
    border-radius: 2vw;
  }
}
.news-post__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠にフィット（はみ出しはトリミング） */
  -o-object-position: center;
     object-position: center;
  display: block;
}

.news-post__body {
  width: 85%;
  max-width: 850px;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .news-post__body {
    width: 100%;
  }
}

.news-post__body p {
  margin-bottom: 40px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .news-post__body p {
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.8;
  }
}

.news-post__body img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news-post__body img {
    margin-bottom: 30px;
  }
}

.news-post__relate {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .news-post__relate {
    margin-top: 80px;
  }
}

.news-post__relate-title {
  font-size: clamp(14px, 0.56vw + 11.89px, 20px);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .news-post__relate-title {
    font-size: 17px;
  }
}

.news-post-item {
  display: flex;
  align-items: stretch;
  text-align: left;
  background: rgba(255, 60, 0, 0.0862745098);
  width: 85%;
  max-width: 750px;
  margin: 50px auto 30px;
  border-radius: 1vw;
  cursor: pointer;
  transition: all 0.25s ease;
}
.news-post-item:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .news-post-item {
    border-radius: 2vw;
    width: 100%;
    margin-top: 30px;
  }
}

.post-item__meta {
  width: calc(100% - 180px);
  padding: 50px 50px;
  flex: 0 0 65%;
}
@media screen and (max-width: 767px) {
  .post-item__meta {
    width: 100%;
    padding: 5% 5%;
  }
}

.post-item__pill {
  font-size: 11px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 3px 12px;
  border-radius: 4vw;
  transition: all 0.25s ease;
  display: inline-block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .post-item__pill {
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

.news-post-item:hover .post-item__pill {
  background-color: #fff;
  color: var(--color-primary);
}

.post-item__date {
  font-size: 11px;
  margin-left: 5px;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .post-item__date {
    font-size: 9px;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
}

.news-post-item:hover .post-item__date {
  color: #fff;
}

.post-item__title {
  font-size: clamp(15px, 0.66vw + 12.54px, 22px);
  font-weight: 500;
  margin-top: 15px;
  transition: all 0.25s ease;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .post-item__title {
    font-weight: 700;
    line-height: 1.6;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.news-post-item:hover .post-item__title {
  color: #fff;
}

.post-item__img {
  flex: 0 0 35%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .post-item__img {
    width: 100%;
    aspect-ratio: auto;
  }
}

.post-item__img img {
  border-radius: 0 1vw 1vw 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .post-item__img img {
    border-radius: 0 2vw 2vw 0;
  }
}

.news-post__all {
  margin-top: 80px;
  background-color: #ea5514;
  border-radius: 4vw;
  padding: 5px 25px;
  display: inline-block;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .news-post__all {
    margin-top: 50px;
    border-radius: 6vw;
  }
}
.news-post__all:hover {
  opacity: 0.8;
}
.news-post__all a {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

/*=============================
support-head
=============================*/
.support-head-title {
  font-size: clamp(20px, 1.41vw + 14.72px, 35px);
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .support-head-title {
    margin-bottom: 40px;
    letter-spacing: normal;
    font-weight: 800;
  }
}
.support-head-title span {
  font-size: 15px;
  display: block;
}
@media screen and (max-width: 767px) {
  .support-head-title span {
    font-size: 10px;
    font-weight: 600;
  }
}

.support-head-cta {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 900px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .support-head-cta {
    display: block;
    margin-bottom: 50px;
  }
}

.cta {
  position: relative;
  width: 48%;
  background-color: var(--color-primary);
  border-radius: 1vw;
  color: #fff !important;
  font-size: clamp(15px, 1.41vw + 9.72px, 30px);
  font-weight: 700;
  padding: 50px 0px;
  transition: all 0.25s ease;
}
.cta:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .cta {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 20px 0px;
    border-radius: 2vw;
  }
}
.cta span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .cta span {
    font-size: 9px;
  }
}

.donate::after, .join::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .donate::after, .join::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--color-primary);
    bottom: -12px;
  }
}

/*=============================
support-donate
=============================*/
.support-donate {
  background-color: #F5F6F6;
  width: 80%;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 1vw;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .support-donate {
    border-radius: 0;
    width: 100%;
    margin-bottom: 0px;
  }
}

.support-donate-title {
  font-size: clamp(20px, 1.2vw + 7.69px, 25px);
  background-color: var(--color-primary);
  border-radius: 1vw 1vw 0vw 0vw;
  color: #fff;
  padding: 15px 0px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .support-donate-title {
    margin-bottom: 30px;
    border-radius: 0;
    font-size: 15px;
  }
}

.support-donate-copy {
  font-size: clamp(20px, 1.2vw + 7.69px, 25px);
  margin-bottom: 40px;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .support-donate-copy {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 800;
  }
}

.support-donate-lead {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .support-donate-lead {
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 13px;
  }
}

.support-donate-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .support-donate-wrapper {
    display: block;
    margin-top: 25px;
  }
}

.support-donate-info {
  text-align: left;
  width: 35%;
  margin-top: 2%;
}
@media screen and (max-width: 767px) {
  .support-donate-info {
    width: 100%;
  }
}
.support-donate-info p, .support-donate-info li, .support-donate-info a {
  font-size: clamp(10px, 0.28vw + 8.94px, 13px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .support-donate-info p, .support-donate-info li, .support-donate-info a {
    font-size: 12px;
    font-weight: 500;
  }
}
.support-donate-info h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  background-color: var(--color-primary);
  display: inline-block;
  color: #fff;
  padding: 3px 18px;
  border-radius: 2vw;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .support-donate-info h4 {
    border-radius: 6vw;
    margin-bottom: 15px;
  }
}
.support-donate-info p {
  margin-bottom: 20px;
}
.support-donate-info .support-donate-address {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .support-donate-info .support-donate-address {
    margin-top: 25px;
  }
}
.support-donate-info span {
  font-weight: bold;
}
.support-donate-info span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.donate-tax-lead {
  text-align: center !important;
  font-weight: 600;
}

.support-donate-form {
  width: 60%;
  background-color: var(--color-primary);
  padding: 45px 50px 45px;
  border-radius: 1vw;
}
@media screen and (max-width: 767px) {
  .support-donate-form {
    width: 100%;
    margin-top: 30px;
    padding: 35px 25px 35px;
    border-radius: 2vw;
  }
}

.wpcf7 .wpcf7-submit,
.wpcf7 input[type=submit].donate-mail__submit,
.donate-mail__submit {
  border: none;
  outline: none;
  box-shadow: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
}

.wpcf7 .wpcf7-submit:focus,
.wpcf7 .wpcf7-submit:focus-visible,
.donate-mail__submit:focus,
.donate-mail__submit:focus-visible {
  outline: none;
  box-shadow: none;
}

.wpcf7-response-output {
  border-color: transparent !important;
  color: #fff !important;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: normal;
}

.wpcf7-not-valid-tip {
  color: #932200 !important;
  font-size: 13px;
  letter-spacing: normal;
}

.wpcf7-acceptance {
  margin-top: 20px;
  font-size: 14px;
}

.wpcf7-acceptance input {
  margin-right: 8px;
}

.wpcf7-acceptance a {
  text-decoration: underline;
  color: #fff; /* 背景オレンジなら白 */
}

.support-donate-form h4 {
  font-size: clamp(15px, 0.66vw + 12.54px, 22px);
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support-donate-form h4 {
    font-size: 17px;
  }
}

.donation-form {
  text-align: left;
}

.donate-mail__submit {
  outline: none !important;
}

.field {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .field {
    margin-bottom: 10px;
  }
}

.field__label {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .field__label {
    font-size: 11px;
    font-weight: 600;
  }
}

.field__input {
  width: 100%;
  padding: 0 18px;
  border: none !important;
  background: #fff;
  outline: none;
  font-size: 16px;
  border-radius: 0.5vh;
}

.donate-mail__submit {
  background-color: #fff;
  color: var(--color-primary);
  padding: 10px 30px;
  font-weight: 600;
  letter-spacing: 0.2em;
  display: block;
  margin: 40px auto 0;
  border-radius: 4vw;
}
@media screen and (max-width: 767px) {
  .donate-mail__submit {
    border-radius: 6vw;
    margin-top: 20px;
  }
}

.support-donate-tax {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .support-donate-tax {
    margin-top: 25px;
  }
}

.donate-tax-lead {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .donate-tax-lead {
    font-weight: 600;
  }
}
.donate-tax-lead span {
  background: linear-gradient(transparent 65%, #ea5b0c 30%);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .donate-tax-lead span {
    font-weight: 600;
  }
}

.donate-tax-box {
  background-color: var(--color-primary);
  border-radius: 1vw;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .donate-tax-box {
    display: block;
    padding: 20px 30px;
  }
}

.tax-box-left {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .tax-box-left {
    width: 100%;
    text-align: left;
    font-weight: 600;
  }
}

.tax-box-right {
  width: 70%;
  font-size: 25px;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .tax-box-right {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
  }
}
.tax-box-right span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .tax-box-right span {
    width: 100%;
    font-size: 10px;
  }
}

.donate-tax-caption {
  font-size: 12px;
  text-align: left;
  letter-spacing: normal;
}

/* 会員区分（ラジオ）の整形 */
.field .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.field .wpcf7-list-item {
  margin: 0; /* CF7のデフォ余白殺す */
}

.field .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.2em;
  cursor: pointer;
}

/* ラジオ自体（ブラウザ標準を活かしつつ見やすく） */
.field .wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fff; /* 外側の白い円 */
  border-radius: 50%;
  background: transparent; /* 中抜き */
  position: relative;
  cursor: pointer;
  margin-top: -1px;
  margin-left: 0px;
}

/* 選択時：中に白いドット */
.field .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ラベルとの間隔・揃え */
.field .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.field__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.wpcf7-not-valid-tip {
  display: none;
}

/* =============================
support-become
============================= */
.support-become {
  background-color: #F5F6F6;
  width: 80%;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 1vw;
  margin-bottom: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .support-become {
    width: 100%;
    margin-bottom: 0px;
  }
}

.support-become-title {
  font-size: clamp(20px, 1.2vw + 7.69px, 25px);
  background-color: var(--color-primary);
  border-radius: 1vw 1vw 0 0;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .support-become-title {
    border-radius: 0;
    margin-bottom: 30px;
    font-size: 15px;
    padding: 15px 0;
  }
}

.support-become-copy {
  font-size: clamp(20px, 1.2vw + 7.69px, 25px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .support-become-copy {
    border-radius: 0;
    margin-bottom: 18px;
    font-weight: 800;
    font-size: 15px;
  }
}

.support-become-lead {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .support-become-lead {
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 13px;
  }
}

.support-become-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .support-become-wrapper {
    display: block;
    margin-top: 30px;
  }
}

/* 左：会費情報 */
.support-become-info {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .support-become-info {
    width: 100%;
  }
}

.support-become-type {
  margin-bottom: 25px;
}

.support-become-type h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .support-become-type h4 {
    font-size: 17px;
    font-weight: 800;
  }
}

.support-become-type hr {
  border: none;
  height: 1px;
  background: #333;
  margin-bottom: 10px;
}

.support-become-type p {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .support-become-type p {
    font-weight: 500;
  }
}

.support-become-note {
  font-size: 12px;
  line-height: 2;
}

.am {
  padding: 20px 0px 100px;
}
@media screen and (max-width: 767px) {
  .am {
    padding: 50px 0px 70px;
  }
}
.am .am_inner {
  width: 80%;
  max-width: 850px;
  margin: 0 auto;
}
.am .am_inner h2 {
  margin-bottom: 15px;
  font-size: 18px;
}
.am .am_inner p {
  text-align: left;
  line-height: 1.9;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .am .am_inner p {
    text-align: justify;
    font-weight: 600;
  }
}
.am .am_inner p span {
  text-decoration: underline;
  font-weight: 600;
}

/*=============================
contact
=============================*/
/* 送信ボタン周りを基準にする */
.wpcf7-form-control-wrap,
.wpcf7-submit,
.wpcf7 .wpcf7-spinner {
  vertical-align: middle;
}

/* spinnerをレイアウトに影響させない */
.wpcf7 .wpcf7-spinner {
  position: absolute;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ボタン（またはボタンの親）に position:relative を付ける */
.wpcf7 .wpcf7-submit {
  position: relative;
}

.support-donate-form .wpcf7-list-item-label {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .support-donate-form .wpcf7-list-item-label {
    font-size: 13px;
    letter-spacing: normal;
  }
}

.contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 50px;
  }
}
.contact .form-actions {
  margin: 0 auto;
  margin-left: 10px;
}

.contact-lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact-lead {
    width: 85%;
    margin: 0 auto 30px;
    text-align: left;
    font-weight: 500;
    letter-spacing: normal;
  }
}

.form {
  max-width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form {
    width: 85%;
  }
}

.form-field {
  margin: 0 0 28px;
}

label {
  display: block;
  font-weight: 700;
  margin: 0 0 10px;
  text-align: left;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  background: #fff;
  transition: border-color 0.15s ease;
}

textarea {
  min-height: 220px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #999;
}

.radios {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 6px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

.radio input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.form-agree {
  display: flex;
  justify-content: center;
  margin: 34px 0 26px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin: 0;
}

.form-agree .checkbox a {
  color: #000;
  padding-bottom: 2px;
  text-decoration: none;
  border-bottom: 1px solid #000;
}

.checkbox input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.form-btn {
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 18px 56px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.08s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn:active {
  transform: translateY(1px);
}

/* CF7: 既存CSSを壊さず整える追記 */
.wpcf7 form {
  margin: 0;
}

/* CF7のラジオが <span> で包まれるので、.radios配下の整形 */
.radios .wpcf7-form-control {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 6px;
}

.radios .wpcf7-list-item {
  margin: 0;
}

.radios .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  margin: 0;
}

/* 送信ボタン：CF7は input[type="submit"] なので既存の .form-btn に合わせる */
input.form-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* エラー文 */
.wpcf7-not-valid-tip {
  text-align: left;
  margin-top: 8px;
  font-size: 13px;
}

/* 送信結果メッセージ（成功/失敗） */
.wpcf7-response-output {
  margin: 20px 0 0;
  text-align: left;
  padding: 12px 14px;
}

html {
  margin-top: 0px !important;
  background: #f7f0ee;
}

.coming {
  padding: 15vw 0 50vw;
  position: absolute;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .coming {
    position: absolute;
  }
}

.coming__inner {
  width: min(900px, 90%);
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: start;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .coming__inner {
    width: 90%;
    margin: 0 auto;
  }
}

.coming__left {
  flex: 1;
  min-width: 300px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .coming__left {
    width: 90%;
    margin: 0 auto;
  }
}

.coming__right {
  width: 31%;
  text-align: center;
  margin-top: 2%;
}
@media screen and (max-width: 767px) {
  .coming__right {
    width: 90%;
    margin: 0 auto;
  }
}

/* ===== Text ===== */
.coming__ttl {
  font-size: 90px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin: 0 0 15px;
  font-weight: 800;
  margin-left: -2%;
}
@media screen and (max-width: 767px) {
  .coming__ttl {
    font-size: 50px;
    text-align: center;
  }
}

.coming__sub {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .coming__sub {
    font-size: 25px;
    margin-bottom: 25px;
    text-align: center;
  }
}

.coming__text {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 40px;
  color: #111;
  font-weight: 600;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .coming__text {
    font-size: 12px;
    margin-bottom: 25px;
    text-align: center;
  }
}

.coming__text--small {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 15px;
  font-weight: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ===== CTA ===== */
.coming__cta {
  margin: 5px 0 40px;
}

.coming__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 49px 10px 25px; /* ← 右に余白追加 */
  border-radius: 999px;
  background: #f05a24;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .coming__btn {
    margin: 0 auto;
    display: block;
    width: 200px;
    text-align: center;
  }
}

/* 三角 */
.coming__btn::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #fff; /* 三角の色 */
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.coming__btn:hover {
  opacity: 0.9;
}

/* ===== SNS ===== */
.coming__sns-ttl {
  font-size: 12px;
  margin: 0 0 15px;
  color: #111;
  opacity: 0.85;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .coming__sns-ttl {
    text-align: center;
  }
}

.coming__sns-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .coming__sns-icons {
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-left: -5%;
  }
}

.coming__sns-icons a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .coming__sns-icons a {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
  }
}

.coming__sns-icons a:hover {
  opacity: 0.85;
}

/* ===== Right Area ===== */
.coming__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  margin-left: -25%;
}
@media screen and (max-width: 767px) {
  .coming__img {
    width: 65%;
    margin: 0 auto 50px;
  }
}

.coming__org {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #f05a24;
}

.coming__brand {
  margin: 4px 0 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f05a24;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .coming__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .coming__right {
    width: 100%;
    text-align: left;
  }
  .coming__brand {
    font-size: 38px;
  }
}
.pre_footer {
  margin-top: 10%;
  padding-bottom: 70px;
}
.pre_footer p {
  font-size: 10px;
}

.contact .wpcf7-response-output {
  color: #333 !important;
}

.contact input {
  accent-color: #ea5514;
}
.contact .wpcf7-response-output {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact .wpcf7-response-output {
    text-align: left;
  }
}

.contact .wpcf7-list-item-label {
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact .wpcf7-list-item-label {
    font-size: 12px;
  }
}
.contact .wpcf7-list-item-label a {
  color: #000;
}

/*=============================
privacy
=============================*/
.privacy-mv .page-mv-wrapper {
  background-color: #ea5514;
}

.privacy-content {
  padding: 120px 0px 100px;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .privacy-content {
    padding: 40px 0px;
    width: 90%;
  }
}

.privacy-intro {
  font-size: 18px;
  font-weight: 600 !important;
}
@media screen and (max-width: 767px) {
  .privacy-intro {
    font-size: 14px;
    margin-bottom: 50px !important;
  }
}

.privacy-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .privacy-content h3 {
    font-size: 18px;
    letter-spacing: normal;
    font-weight: 600;
  }
}

.privacy-content p {
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .privacy-content p {
    margin-bottom: 50px;
    font-weight: 500;
  }
}/*# sourceMappingURL=style.css.map */