@charset "utf-8";
:root {
  --base-color: #ffffb0; /*R:255 G:255 B:176 H:60 S:31 V:100*/
  --assorted-color: #331d0f; /*R:51 G:29 B:15 H:23 S:71 V:20*/
  --accent-color: #ff914d; /*R:255 G:145 B:77 H:23 S:70 V:100*/
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  color: var(--assorted-color);
  font-family: "新丸ゴ R", "M PLUS Rounded 1c", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.8;
  scroll-padding-top: 70px;
  scrollbar-color: var(--accent-color) var(--base-color);
  scrollbar-width: 20px;
}
.activity__item {
  position: absolute;
  width: 100%;
}
.activity__item:first-child {
  top: 60px;
  left: calc(50% - 70px);
}
.activity__item:first-child::after {
  background: #7fffd4; /*rgb(127,255,212)*/
  border-radius: 100%;
  content: "";
  height: 160px;
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -15px;
  width: 160px;
}
.activity__item:nth-child(2) {
  top: 210px;
  left: calc(50% + 30px);
}
.activity__item:nth-child(2)::after {
  background: #dc143c; /*rgb(220, 20, 60)*/
  border-radius: 100%;
  content: "";
  height: 160px;
  opacity: 0.3;
  position: absolute;
  top: -100px;
  left: -60px;
  width: 160px;
}
.activity__item:last-child {
  top: 210px;
  left: calc(50% - 110px);
}
.activity__item:last-child::after {
  background: #ffff00; /*rgb(255, 255, 0)*/
  border-radius: 100%;
  content: "";
  height: 160px;
  opacity: 0.3;
  position: absolute;
  top: -100px;
  left: -30px;
  width: 160px;
}
.activity__link {
  background: var(--accent-color);
  border-radius: 6px;
  color: white;
  display: block;
  font-size: 2.2rem;
  height: 60px;
  margin-bottom: 10px;
  padding: 1rem 0 0 0;
  text-align: center;
  text-decoration: none;
  width: 200px;
}
.activity__link:active,
.activity__link:hover {
  opacity: 0.8;
}
.activity__list {
}
.activity__list-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 1.6rem;
  position: relative;
}
.activity__list-title::before {
  content: "";
  height: 1.6rem;
  position: absolute;
  top: 0.6rem;
  left: -0.8rem;
  width: 4px;
}
.activity__list-title:first-of-type::before {
  background: rgb(127, 255, 212);
}
.activity__list-title:nth-of-type(2)::before {
  background: rgb(220, 20, 60);
}
.activity__list-title:last-of-type::before {
  background: rgb(255, 255, 0);
}
.activity__list-item {
  font-size: 1.6rem;
  margin: 0 auto 2rem;
}
.activity__text {
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  z-index: 5;
}
.activity__unit {
  height: 300px;
  position: relative;
}
.announce {
  background: white;
  border-radius: 1rem 0 0 1rem;
  height: 60px;
  padding-left: 20px;
  position: absolute;
  top: 70svh;
  right: 0;
  width: 90%;
}
.announce__link {
  color: var(--assorted-color);
  text-decoration: none;
}
.announce__link::after {
  background: var(--accent-color);
  content: "";
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  width: 60px;
}
.announce__link::before {
  content: "＞";
  color: white;
  font-size: 36px;
  line-height: 0;
  position: absolute;
  top: 49%;
  right: 12px;
  text-align: center;
  z-index: 5;
}
.announce__link:active::after,
.announce__link:hover::after {
  opacity: 0.8;
}
.announce_text {
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}
.announce__time {
  display: block;
  font-size: 1.4rem;
  opacity: 0.9;
}
.article {
  background: white;
  border-radius: 6px;
  display: block;
  flex: none;
  margin: 0 auto 50px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}
.article__cat {
  background: var(--accent-color);
  border-radius: 2rem;
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  height: auto;
  margin: 10px;
  padding: 0 10px;
}
.article__date {
  font-size: 1.4rem;
  opacity: 0.8;
}
.article__img {
  height: 200px;
  margin: auto;
  object-fit: cover;
  width: 100%;
}
.article__link {
  color: var(--assorted-color);
  text-decoration: none;
}
.article__link:active,
.article__link:hover {
  opacity: 0.8;
}
.article__title {
  font-size: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.body {
  background: var(--base-color);
  font-size: 1.6rem;
  width: 100%;
}
.body.hidden {
  visibility: hidden;
}
.body.fixed {
  overflow: hidden;
}
.body__move-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 100%;
  color: white;
  font-size: 3rem;
  opacity: 0.6;
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 50px;
  width: 50px;
  z-index: 20;
}
.body__move-btn:active,
.body__move-btn:hover {
  opacity: 0.9;
}
.body__move-btn.hidden {
  display: none;
}
.breadcrumb {
  margin-bottom: 5rem;
}
.breadcrumb__item {
  list-style: none;
  margin-left: 0.6rem;
}
.breadcrumb__item:not(:first-child)::before {
  content: ">";
}
.breadcrumb__link {
  color: var(--assorted-color);
  text-decoration: none;
}
.breadcrumb__link:active,
.breadcrumb__link:hover {
  color: var(--accent-color);
}
.breadcrumb__list {
  display: flex;
  list-style: none;
  margin-left: 1rem;
}
.breadcrumb__text {
  font-size: 1.4rem;
}
.dropdown {
  margin-left: 1.6rem;
}
.dropdown__item {
  list-style: none;
  padding-top: 1rem;
}
.dropdown__link {
  color: var(--assorted-color);
  text-decoration: none;
}
.dropdown__link::before {
  color: var(--accent-color);
  content: ">";
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  top: -0.45rem;
  left: -0.8rem;
}
.dropdown__link:active,
.dropdown__link:hover {
  color: var(--accent-color);
}
.footer {
  background: none;
  margin: 5rem auto 0;
  padding-top: 20px;
  position: relative;
}
.footer::before {
  border-top: 1px solid var(--accent-color);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.footer__copyright {
  margin-top: 5rem;
  text-align: center;
}
.footer__logo {
  display: block;
  margin: auto;
  height: 100px;
  width: 100px;
}
.form {
  margin: auto;
  width: 90%;
}
.form input[type="radio"] {
  appearance: none;
  background-color: white;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  height: 1.6rem;
  position: relative;
  width: 1.6rem;
}
.form input[type="radio"]:checked::after {
  background-color: var(--accent-color);
  border-radius: 50%;
  content: "";
  display: block;
  height: 1rem;
  position: absolute;
  top: calc(50% - 0.5rem);
  left: calc(50% - 0.5rem);
  width: 1rem;
}
.form__btn {
  display: flex;
  justify-content: space-between;
}
/*aタグボタンのテキスト位置調整*/
.form__btn .form__submit,
.main__prev {
  padding-top: 1.4rem;
  text-align: center;
  text-decoration: none;
}
.form__item {
  margin-bottom: 4rem;
}
.form__radio {
  margin: 0.8rem auto;
}
.form__radio-item {
}
.form__reqd {
}
.form__reqd::after {
  border-radius: 4px;
  content: "必須";
  color: red;
  font-size: 1.4rem;
  margin-left: 1.6rem;
  padding: 3px 10px;
}
.form__select {
}
.form__submit,
.form__prev,
.main__prev {
  background: var(--accent-color);
  border: none;
  border-radius: 60px;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  margin: auto;
  height: 60px;
  width: 200px;
}
.form__submit:active,
.form__submit:hover,
.form__prev:active,
.form__prev:hover,
.main__prev:active,
.main__prev:hover {
  opacity: 0.8;
}
.form__text {
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  font-size: 1.6rem;
  height: 2.4rem;
  width: 100%;
}
.form__textarea {
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  font-size: 1.6rem;
  height: 10rem;
  width: 100%;
}
.header {
  background: white;
  border-bottom: 1px solid var(--accent-color);
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.header__logo {
  padding: 5px;
  width: 60px;
}
.line-banner {
  display: block;
  margin-top: 2rem;
  position: fixed;
  left: 0;
  bottom: 0;
  text-align: center;
}
.main {
  margin: 60px 0 0 0;
  position: relative;
}
.main__back-btn {
  align-content: center;
  background: var(--accent-color);
  border-radius: 25px;
  color: white;
  display: block;
  font-size: 1.6rem;
  height: 50px;
  margin: 50px auto 0;
  width: 160px;
  text-align: center;
  text-decoration: none;
}
.main__back-btn:active,
.main__back-btn:hover {
  opacity: 0.8;
}
.main__catch-text {
  color: white;
  line-height: 1.8;
  font-size: 2.8rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 100vw;
}
.main__heading {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 100%;
}
.main__head {
  height: 160px;
  position: relative;
  width: 100%;
}
.main__heading-img {
  filter: brightness(70%);
  height: 160px;
  object-fit: cover;
  width: 100%;
}
.main__hero {
  background: center / cover url("../images/topImage.jpg");
  display: block;
  filter: brightness(120%);
  width: 100%;
  height: calc(100svh - 60px);
  position: relative;
}
.main__lead {
}
.nav-global {
  font-size: 2.4rem;
}
.nav-global__btn {
  background: var(--accent-color);
  border: none;
  cursor: pointer;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
}
.nav-global__btn:active,
.nav-global__btn:hover {
  opacity: 0.8;
}
#nav-global__icon,
#nav-global__icon::before,
#nav-global__icon::after {
  background: white;
  border-radius: 3px;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  transition: 0.3s;
  width: 30px;
}
.nav-global__icon--close {
  /* position-set */
  top: 20px;
  left: 15px;
  transform: rotate(45deg);
}
.nav-global__icon--close::before {
  /* position-set */
  transform: rotate(-90deg);
}
.nav-global__icon--close::after {
  /* position-set */
  opacity: 0;
}
.nav-global__icon--open {
  /* position-set */
  top: 20px;
  left: 15px;
}
.nav-global__icon--open::before {
  /* position-set */
  top: -10px;
}
.nav-global__icon--open::after {
  /* position-set */
  top: 10px;
}
.nav-global__item {
  list-style: none;
  margin: 0 0 2rem 30%;
}
.nav-global__item::before {
  background: var(--accent-color);
  border-radius: 100%;
  content: "";
  display: block;
  height: 1.3rem;
  position: relative;
  top: 2.8rem;
  left: -2.4rem;
  width: 1.4rem;
}
.nav-global__item:active,
.nav-global__item:hover {
  color: var(--accent-color);
}
.nav-global__link {
  color: var(--assorted-color);
  text-decoration: none;
}
.nav-global__link:active,
.nav-global__link:hover {
  color: var(--accent-color);
}
.nav-global__list {
  background: rgba(255, 255, 176, 0.98);
  height: calc(100svh - 60px);
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 5;
}
.nav-global__list--hide {
  display: none;
}
.nav-global__text {
  color: white;
  font-size: 1.2rem;
  position: absolute;
  top: 40px;
  left: 12px;
}
.pagination {
  display: flex;
  justify-content: center;
}
.pagination__link {
  background: var(--accent-color);
  border-radius: 100%;
  color: white;
  display: block;
  font-size: 2rem;
  height: 50px;
  margin: 10px;
  padding-top: 0.6rem;
  text-align: center;
  text-decoration: none;
  width: 50px;
}
.pagination__link:active,
.pagination__link:hover {
  opacity: 0.8;
}
.procedure {
}
.procedure__item {
}
.representative-name {
  display: block;
  text-align: end;
}
.section {
  margin: 0 auto 5rem;
  position: relative;
  width: 80%;
}
#activity__past.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#member.section {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-around;
  margin: auto;
  width: 90%;
}
.section__avatar {
  border-radius: 12px;
  display: block;
  height: 100%;
  margin: 0 auto 20px;
  width: 200px; /*100%;*/
}
.section__avatar-name {
  background: white;
  border-radius: 0 0 12px 12px;
  color: var(--accent-color);
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
.section__blog-cat {
  background: var(--accent-color);
  border-radius: 2rem;
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  height: auto;
  margin: 10px;
  padding: 0 10px;
}
.section__blog-date {
  font-size: 1.4rem;
}
.section__blog-update-date {
  font-size: 1.4rem;
  margin-left: 2rem;
  opacity: 0.8;
}
.section__blog-head {
  display: flex;
}
.section__blog-text {
  white-space: pre-wrap;
}
.section__btn {
  background: var(--accent-color);
  border-radius: 25px;
  color: white;
  cursor: pointer;
  display: block;
  font-weight: 500;
  height: 50px;
  margin: auto;
  padding-top: 9px;
  text-align: center;
  text-decoration: none;
  width: 180px;
}
.section__btn:active,
.section__btn:hover {
  opacity: 0.8;
}
.section__btn::after {
  content: ">";
  font-weight: normal;
  position: relative;
  left: 20px;
}
.section__col {
}
.section__heading {
  color: var(--accent-color);
  display: block;
  font-size: 2.4rem;
  margin: 2.5rem auto 2rem;
  width: 100%;
}
.section__heading.blog {
  color: var(--assorted-color);
}
.section__inner {
  margin: 0 auto 20px;
  position: relative;
  width: 200px;
}
.section__msg {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-decoration: 1rem #ffff4d underline;
  text-underline-offset: -0.4rem;
}
.section__nav-unit {
  display: flex;
}
.section__next-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 100%;
  color: white;
  cursor: pointer;
  font-size: 3rem;
  height: 50px;
  width: 50px;
}
.section__next-btn:active,
.section__next-btn:hover {
  opacity: 0.8;
}
.section__prev-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 100%;
  color: white;
  cursor: pointer;
  font-size: 3rem;
  height: 50px;
  width: 50px;
}
.section__prev-btn:active,
.section__prev-btn:hover {
  opacity: 0.8;
}
.section__text {
  margin-bottom: 2rem;
  max-width: 40em;
}
.section__text-link {
  display: flex;
  justify-content: flex-end;
}
.section__text-link-ld {
  color: var(--accent-color);
  text-decoration: underline;
}
.section__text-heading {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  text-decoration: 1rem #ffff4d underline;
  text-underline-offset: -0.4rem;
}
.section__text-heading:not(:first-of-type) {
  margin: 2rem auto 0;
}
.section__text-item {
}
.section__text-list {
  margin: 2rem auto 0;
}
.section__video {
  display: block;
  height: 315px;
  margin: auto;
  width: 100%;
  max-width: 560px;
}
.sitemap {
  margin: auto;
  width: 80%;
}
.sitemap__item {
  width: 40%;
  margin-top: 2rem;
}
.sitemap__item:nth-child(odd) {
  margin-right: 2rem;
}
.sitemap__item:last-child {
  width: 80%;
}
.sitemap__link {
  border-left: 4px solid var(--accent-color);
  color: var(--assorted-color);
  padding-left: 0.6rem;
  text-decoration: none;
}
.sitemap__link:active,
.sitemap__link:hover {
  color: var(--accent-color);
}
.sitemap__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.step {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.step__item {
  background: var(--accent-color);
  color: white;
  height: 50px;
  line-height: 1.4;
  margin-left: -10px;
  opacity: 0.7;
  text-align: center;
  width: 120px;
}
.step__item:first-of-type {
  clip-path: polygon(0% 0%, 86% 0%, 100% 50%, 86% 100%, 0% 100%);
}
.step__item:nth-of-type(2) {
  clip-path: polygon(0% 0%, 86% 0%, 100% 50%, 86% 100%, 0% 100%, 14% 50%);
}
.step__item:last-of-type {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 14% 50%);
}
.step__item--active {
  opacity: 1;
}
.timeline {
}
/*縦棒*/
.timeline::before {
  content: "";
  background: var(--accent-color);
  display: block;
  position: absolute;
  height: calc(100% - 6rem);
  width: 2px;
}
/*content*/
.timeline__contents {
  display: none;
}
.timeline__contents.active {
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  display: block;
  padding: 10px 0 0 0;
}
/*content end*/
.timeline__date {
  color: var(--accent-color);
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}
/*円*/
.timeline__date::before {
  background: var(--base-color);
  border: 1px solid var(--accent-color);
  border-radius: 100%;
  color: var(--accent-color);
  content: "";
  display: block;
  height: 0.8rem;
  position: absolute;
  top: 0.8rem;
  left: -24px;
  width: 0.8rem;
}
.timeline__heading {
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
}
.timeline__heading::before {
  background: var(--accent-color);
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: -6px;
  height: 1.8rem;
  width: 2px;
}
.timeline__img {
  height: 200px;
}
.timeline__item {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 400;
  margin-right: 2rem;
}
.timeline__list {
  list-style: none;
  margin: 0 0 0 20px;
  position: relative;
}
/*横棒*/
.timeline__list::before {
  content: "";
  background: var(--accent-color);
  display: block;
  position: absolute;
  top: 1.2rem;
  left: -20px;
  height: 2px;
  width: 15px;
}
/*tab*/
.timeline__select {
  display: flex;
  flex-wrap: wrap;
}
.timeline__select-tab {
  background: var(--accent-color);
  border: none;
  border-radius: 10px 10px 0 0;
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  text-align: center;
  height: 40px;
  width: 60px;
}
.timeline__select-tab:active,
.timeline__select-tab:hover {
  opacity: 0.8;
}
.timeline__select-tab.active {
  opacity: 0.8;
}
/* ↑ tab*/
.timeline__text {
  font-size: 1.6rem;
}
.timeline__unit {
  font-size: 1.6rem;
  margin: 0 0 3rem 0;
}

/* ↓ 20251031追加 */
.crowdfunding-section {
  width: calc(100% - 32px);
  height: 100%;
  background: white;
  border: 4px solid var(--accent-color);
  border-radius: 16px;
  padding: 16px;
  margin: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.crowdfunding-title {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  margin: 16px auto;
  letter-spacing: -1px;
}
.crowdfunding-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
justify-content: center;
}
.crowdfunding-img {
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 0 2px var(--assorted-color);
}
.crowdfunding-text {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  align-items: center;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.crowdfunding-text a {
  display: inline;
  color: var(--assorted-color);
}