@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
html {
  font-size: 10px;
}

body {
  font-size: 15px;
  color: #252826;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.6;
}

a {
  word-break: break-all;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  transition: transform 1s ease;
  transform: translateY(0%);
}
@media screen and (min-width: 801px) {
  .l-header.is-scroll {
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 899px) {
  .l-header {
    padding: 18px 15px 5px;
  }
}
.l-header__logo {
  width: 80px;
}
@media screen and (max-width: 800px) {
  .l-header__logo {
    width: 65px;
    position: relative;
    z-index: 2;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 899px) {
  .l-header__nav-list {
    gap: 15px;
  }
}
@media screen and (max-width: 800px) {
  .l-header__nav-list {
    gap: 20px;
    flex-direction: column;
    padding: 70px 0 40px;
  }
}
.l-header__nav-link {
  display: block;
  padding: 2px 0;
  position: relative;
}
.l-header__nav-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.l-header__nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.l-header__nav-btns {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .l-header__nav-btns {
    flex-direction: column;
    gap: 20px;
  }
}
.l-header__nav-btn {
  display: block;
  border: 1px solid #252826;
  padding: 10px 20px;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.l-header__nav-btn:hover {
  background-color: #252826;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .l-header__nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: scroll;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media screen and (min-width: 801px) {
  .l-header--top {
    color: #fff;
  }
}
.l-header--top .l-header__logo-img--black {
  display: none;
}
.l-header--top .l-header__nav-link::before {
  background-color: #fff;
}
@media screen and (min-width: 801px) {
  .l-header--top .l-header__nav-btn {
    border-color: #fff;
  }
  .l-header--top .l-header__nav-btn:hover {
    background-color: #fff;
    color: #252826;
  }
}
.l-header--top .l-header__ham-line {
  background-color: #fff;
}
.l-header__ham {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 2;
}
.l-header__ham-line {
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, margin-top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, left 0.3s ease;
}
.l-header__ham-line:first-child {
  margin-top: -8px;
  left: calc(50% - 2px);
}
.l-header__ham-line:nth-child(2) {
  opacity: 1;
  margin-right: -2px;
  left: calc(50% + 2px);
}
.l-header__ham-line:last-child {
  margin-top: 8px;
  left: calc(50% - 2px);
}
@media screen and (max-width: 800px) {
  .l-header__ham {
    display: block;
  }
}
.l-header.is-active {
  backdrop-filter: unset !important;
  -webkit-backdrop-filter: unset !important;
}
@media screen and (max-width: 800px) {
  .l-header.is-active .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
  .l-header.is-active .l-header__ham-line {
    transition: transform 0.3s 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease, left 0.3s ease;
  }
  .l-header.is-active .l-header__ham-line:first-child {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(25deg);
    left: 50%;
  }
  .l-header.is-active .l-header__ham-line:nth-child(2) {
    opacity: 0;
    left: 50%;
  }
  .l-header.is-active .l-header__ham-line:last-child {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(-25deg);
    left: 50%;
  }
  .l-header.is-active.l-header--top .l-header__logo-img--white {
    display: none;
  }
  .l-header.is-active.l-header--top .l-header__logo-img--black {
    display: block;
  }
  .l-header.is-active.l-header--top .l-header__ham-line {
    background-color: #252826;
  }
}
.l-header:not(.l-header--top) {
  background: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.l-header:not(.l-header--top) .l-header__logo-img--white {
  display: none;
}

.f-support {
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 800px) {
  .f-support {
    padding: 60px 0;
  }
}
.f-support__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}
.f-support__bg img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}
.f-support .inner {
  position: relative;
  z-index: 2;
}
.f-support .title1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .f-support .title1 {
    margin-bottom: 16px;
  }
}
.f-support p {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .f-support p {
    margin-bottom: 32px;
  }
}
.f-support .btn2 {
  border-color: #fff;
}
.f-support .btn2:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.f-support .btn2::before {
  background-color: #fff;
}

.l-footer__inner {
  padding: 100px 0 40px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .l-footer__inner {
    padding: 60px 0 20px;
  }
}
.l-footer__logo {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .l-footer__logo {
    max-width: 76px;
    margin: 0 auto 40px;
  }
}
.l-footer .f-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 60px;
}
.l-footer .f-nav__link {
  position: relative;
  display: block;
  padding: 2px 0;
}
.l-footer .f-nav__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.l-footer .f-nav__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.l-main__header {
  padding: 180px 0 120px;
}
@media screen and (max-width: 800px) {
  .l-main__header {
    padding: 120px 0 60px;
  }
}
.l-main__title {
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .l-main__title {
    font-size: 3.2rem;
  }
}
.l-main__title__en {
  display: block;
  font-size: 1.6rem;
  margin: 10px 0 0 5px;
}
@media screen and (max-width: 800px) {
  .l-main__title__en {
    font-size: 1.4rem;
    margin: 5px 0 0 3px;
  }
}

.title1 {
  font-size: 3.2rem;
}
@media screen and (max-width: 800px) {
  .title1 {
    font-size: 2.2rem;
  }
}

.title2 {
  font-size: 2.4rem;
}
@media screen and (max-width: 800px) {
  .title2 {
    font-size: 1.8rem;
  }
}

.title3 {
  font-size: 4.4rem;
}
@media screen and (max-width: 800px) {
  .title3 {
    font-size: 2.4rem;
  }
}

.title4 {
  font-weight: bold;
  font-size: 1.6rem;
}
.title4 span {
  font-size: 2.2rem;
  margin-left: 0.2em;
}

.btn1 {
  display: block;
  width: 100%;
  max-width: 240px;
  padding: 0 10px 20px 32px;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .btn1 {
    max-width: 200px;
  }
}
.btn1::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 12px;
  top: 3px;
}
.btn1::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(1);
  transition: transform 0.3s;
  transform-origin: left;
}
.btn1:hover::after {
  animation: btnLine 0.6s ease;
  animation-fill-mode: forwards;
}

@keyframes btnLine {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes btnLineReverse {
  0% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left;
  }
  51% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}
.btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 240px;
  height: 60px;
  border: 1px solid #252826;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.btn2:hover {
  background-color: rgba(37, 40, 38, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn2::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.btn3 {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(37, 40, 38, 0.6);
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 800px) {
  .btn3 {
    height: 100px;
    padding: 20px;
  }
}
.btn3::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .btn3::after {
    width: 10px;
    height: 8px;
    right: 20px;
  }
}
.btn3__title {
  font-size: 2.4rem;
}
@media screen and (max-width: 800px) {
  .btn3__title {
    font-size: 1.8rem;
  }
}
.btn3__title__en {
  display: block;
  font-size: 1.4rem;
  margin-top: 4px;
}
@media screen and (max-width: 800px) {
  .btn3__title__en {
    font-size: 1.2rem;
  }
}
.btn3__title__en::before {
  content: "- ";
}
.btn3:hover {
  background-color: #e5e6e2;
}

.btn4 {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(37, 40, 38, 0.6);
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 800px) {
  .btn4 {
    height: 80px;
    padding: 20px;
  }
}
.btn4::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .btn4::after {
    width: 10px;
    height: 8px;
    right: 20px;
  }
}
.btn4__title__large {
  font-size: 2rem;
  margin-left: 0.2em;
}
@media screen and (max-width: 800px) {
  .btn4__title__large {
    font-size: 1.8rem;
  }
}
.btn4:hover {
  background-color: #e5e6e2;
}

@media screen and (max-width: 800px) {
  .list-category {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .list-category::-webkit-scrollbar {
    height: 2px;
    background-color: rgba(37, 40, 38, 0.2);
  }
  .list-category::-webkit-scrollbar-thumb {
    background-color: #252826;
    border-radius: 10px;
  }
  .list-category__item {
    flex-shrink: 0;
  }
}
.list-category__link {
  display: block;
  padding: 10px 16px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(37, 40, 38, 0.2);
  color: rgba(37, 40, 38, 0.5);
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 800px) {
  .list-category__link {
    border-bottom: none;
  }
}
.list-category__link:hover {
  color: #252826;
}
.list-category__link::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #252826;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.list-category__link.is-active {
  color: #252826;
  border-color: #252826;
}
.list-category__link.is-active::before {
  opacity: 1;
}

.kurashi-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 800px) {
  .kurashi-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media screen and (max-width: 499px) {
  .kurashi-list {
    grid-template-columns: 1fr;
  }
}
.kurashi-list--related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 499px) {
  .kurashi-list--related {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

.list-num {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .list-num {
    grid-template-columns: 1fr;
    max-width: 220px;
  }
}
.list-num__item:not(:last-child) {
  border-right: 1px solid rgba(37, 40, 38, 0.2);
}
@media screen and (max-width: 800px) {
  .list-num__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(37, 40, 38, 0.2);
  }
}

.list-akiya {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px;
}
@media screen and (max-width: 800px) {
  .list-akiya {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 499px) {
  .list-akiya {
    grid-template-columns: 1fr;
  }
}
.list-akiya__item:not(:last-child) {
  position: relative;
}
.list-akiya__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(37, 40, 38, 0.2);
  position: absolute;
  right: -31px;
  top: 0;
}
@media screen and (max-width: 800px) {
  .list-akiya__item:not(:last-child)::after {
    display: none;
  }
}

.list-member {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
@media screen and (max-width: 800px) {
  .list-member {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.list-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .list-support {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.list-subbtn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .list-subbtn {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.list-flow {
  border-radius: 4px;
  border: 1px solid rgba(37, 40, 38, 0.2);
  padding: 24px 20px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .list-flow {
    padding: 24px 16px 32px;
    grid-template-columns: 1fr;
  }
}
.list-flow__item {
  position: relative;
}
.list-flow__item:not(:last-child)::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .list-flow__item:not(:last-child)::after {
    right: unset;
    top: unset;
    width: 15px;
    height: 8px;
    left: 50%;
    bottom: -24px;
    transform: translate(-50%, 0);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.list-flow__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .list-flow__title {
    margin-bottom: 16px;
  }
}
.list-flow__text {
  font-size: 1.4rem;
  line-height: 1.6;
}

.kurashi-card {
  display: block;
}
.kurashi-card__img {
  margin-bottom: 24px;
  overflow: hidden;
}
.kurashi-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 800px) {
  .kurashi-card__img {
    margin-bottom: 16px;
  }
}
.kurashi-card .flex {
  flex-wrap: wrap;
  gap: 12px;
}
.kurashi-card__title {
  font-size: 2rem;
  line-height: 1.4;
  margin: 8px 0 32px;
}
@media screen and (max-width: 800px) {
  .kurashi-card__title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.kurashi-card:hover img {
  transform: scale(1.02);
}

.category {
  background-color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  padding: 1px 8px 3px 8px;
}
@media screen and (max-width: 800px) {
  .category {
    padding: 2px 4px;
    font-size: 1.2rem;
  }
}

.tag {
  color: rgba(37, 40, 38, 0.6);
  padding-bottom: 4px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(37, 40, 38, 0.2);
}
@media screen and (max-width: 800px) {
  .tag {
    font-size: 1.2rem;
  }
}

.tag-mini {
  font-size: 1.2rem;
  color: rgba(37, 40, 38, 0.6);
}
.tag-mini::before {
  content: "#";
}

.area-card__img {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .area-card__img {
    margin-bottom: 16px;
  }
}
.area-card .title2 {
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .area-card .title2 {
    margin-bottom: 12px;
  }
}

.card-num {
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .card-num {
    padding: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }
}
.card-num__area {
  font-size: 2rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .card-num__area {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
.card-num__num-value {
  font-size: 60px;
}
@media screen and (max-width: 800px) {
  .card-num__num-value {
    line-height: 1;
    font-size: 28px;
  }
}
.card-num__num-unit {
  font-size: 22px;
  margin-left: 8px;
}
@media screen and (max-width: 800px) {
  .card-num__num-unit {
    font-size: 14px;
  }
}

.akiya-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .akiya-card {
    grid-template-columns: 140px 1fr;
    gap: 16px;
  }
}
.akiya-card .flex {
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .akiya-card .flex {
    margin-bottom: 8px;
  }
}
.akiya-card .flex:has(.tag-mini) {
  gap: 4px;
  margin-top: 4px;
}
.akiya-card .category {
  background-color: #e5e6e2;
  padding: 2px 4px;
}
.akiya-card .label {
  background-color: #fff;
  border: 1px solid #e5e6e2;
  padding: 2px 4px;
}
@media screen and (max-width: 800px) {
  .akiya-card .label {
    font-size: 1.2rem;
  }
}
.akiya-card__area {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .akiya-card__area {
    margin-bottom: 16px;
  }
}

.card-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  line-height: 1.5;
}
.card-member__img {
  text-align: center;
}
.card-member__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .card-member__text {
    gap: 8px;
  }
}
.card-member__name {
  font-size: 1.6rem;
  font-weight: bold;
}
.card-member .flex {
  gap: 12px;
  text-decoration: underline;
}
.card-member--support {
  grid-template-columns: 200px 1fr;
}
@media screen and (max-width: 800px) {
  .card-member--support {
    grid-template-columns: 120px 1fr;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #e5e6e2;
  z-index: 200;
  transition: opacity 1s ease, visibility 1s ease;
}
.loading .top-fv__catch,
.loading .top-fv__title {
  filter: blur(10px);
  opacity: 0;
  animation: fvLoading 1.2s ease 0s normal both;
}

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

@keyframes fvLoading {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
.top-wrapper {
  position: relative;
  z-index: 2;
}

.top-fv {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  margin-bottom: 25vh;
}
.top-fv__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(37, 40, 38, 0.4);
}
.top-fv__catch {
  position: absolute;
  width: 4.24vw;
  z-index: 2;
  top: calc(50% - 4.5vw);
  left: calc(50% + 7vw);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .top-fv__catch {
    width: 44px;
    top: calc(50% - 75px);
    left: calc(50% + 65px);
  }
}
.top-fv__catch img {
  width: 100%;
}
.top-fv__title {
  position: absolute;
  z-index: 2;
  width: 10vw;
  top: calc(50% + 2vw);
  left: calc(50% - 3vw);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 800px) {
  .top-fv__title {
    width: 104px;
    top: calc(50% + 20px);
    left: calc(50% - 15px);
  }
}
.top-fv__title img {
  width: 100%;
}
.top-fv .fv-slider .swiper-slide {
  height: 100vh;
}
.top-fv .fv-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-fv .fv-slider .swiper-slide-active .fv-slider__img,
.top-fv .fv-slider .swiper-slide-duplicate-active .fv-slider__img,
.top-fv .fv-slider .swiper-slide-prev .fv-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center/cover;
  animation: fvZoom 5.5s linear 0s normal both;
}

@keyframes fvZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.top-about {
  padding: 120px 0 160px;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .top-about {
    padding: 80px 0;
  }
}
.top-about__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .top-about__inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.top-about__content {
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .top-about__content {
    max-width: 100%;
  }
}
.top-about__content .title1 {
  margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
  .top-about__content .title1 {
    margin-bottom: 24px;
  }
}
.top-about__text {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-bottom: 60px;
}
.top-about__img {
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .top-about__img {
    max-width: 100%;
  }
}
@media screen and (min-width: 801px) {
  .top-about__img img {
    position: sticky;
    top: 100px;
  }
}
@media screen and (max-width: 800px) {
  .top-about .btn1 {
    margin-right: 0;
    margin-left: auto;
  }
}

.top-kurashi {
  position: relative;
  z-index: 2;
  padding: 120px 0 160px;
}
@media screen and (max-width: 800px) {
  .top-kurashi {
    padding: 80px 0;
  }
}
.top-kurashi__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e5e6e2;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.top-kurashi .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .top-kurashi .inner {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 800px) {
  .top-kurashi .list-category {
    display: none;
  }
  .top-kurashi .btn1 {
    position: absolute;
    right: 15px;
    bottom: 0;
  }
  .top-kurashi .sticky-area--kurashi .title1 + p {
    margin-bottom: 0;
  }
}

.sticky-area {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .sticky-area {
    flex-direction: column;
    gap: 40px;
  }
}
.sticky-area__side {
  flex-shrink: 0;
}
@media screen and (min-width: 801px) {
  .sticky-area__item {
    position: sticky;
    top: 100px;
  }
}
.sticky-area--kurashi .sticky-area__side {
  width: 250px;
}
@media screen and (max-width: 800px) {
  .sticky-area--kurashi .sticky-area__side {
    width: 100%;
  }
}
.sticky-area--kurashi .sticky-area__main {
  max-width: 850px;
}
@media screen and (max-width: 800px) {
  .sticky-area--kurashi .sticky-area__main {
    max-width: 100%;
  }
}
.sticky-area--kurashi .title1 {
  margin-bottom: 24px;
}
.sticky-area--kurashi .title1 + p {
  line-height: 1.8;
  margin-bottom: 46px;
}
.sticky-area--kurashi .list-category {
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .sticky-area--kurashi .list-category {
    margin-bottom: 0;
  }
}
.sticky-area--subpage .sticky-area__side {
  width: 150px;
}
@media screen and (max-width: 800px) {
  .sticky-area--subpage .sticky-area__side {
    width: 100%;
    display: none;
  }
}
.sticky-area--subpage .sticky-area__main {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media screen and (max-width: 800px) {
  .sticky-area--subpage .sticky-area__main {
    max-width: 100%;
    gap: 80px;
  }
}
@media screen and (max-width: 800px) {
  .sticky-area--detail {
    flex-direction: column-reverse;
  }
}
.sticky-area--detail .sticky-area__side {
  width: 300px;
}
@media screen and (max-width: 800px) {
  .sticky-area--detail .sticky-area__side {
    width: 100%;
  }
}
.sticky-area--detail .sticky-area__main {
  max-width: 600px;
  margin: 0 auto;
}

.top .bg-beige-light {
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

.top-area {
  padding: 120px 0 0;
}
@media screen and (max-width: 800px) {
  .top-area {
    padding-top: 80px;
  }
}
.top-area__wrapper {
  min-height: 900px;
}
@media screen and (max-width: 800px) {
  .top-area__wrapper {
    min-height: unset;
  }
}
.top-area .title1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .top-area .title1 {
    margin-bottom: 16px;
  }
}
.top-area__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .top-area__inner {
    flex-direction: column;
    align-items: center;
  }
}
.top-area__content {
  max-width: 300px;
}
@media screen and (max-width: 800px) {
  .top-area__content {
    max-width: 100%;
  }
}
.top-area__img {
  position: absolute;
  max-width: 638px;
  top: 30px;
  left: 100px;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .top-area__img {
    position: static;
  }
}
.top-area__slider {
  width: calc(50vw - 50% + 500px);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .top-area__slider {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
}
.top-area__slider .area-slider {
  overflow: unset;
}
@media screen and (max-width: 800px) {
  .top-area__slider .area-slider {
    overflow: hidden;
  }
}
.top-area__slider .area-slider .swiper-slide {
  max-width: 300px;
}
@media screen and (max-width: 800px) {
  .top-area__slider .area-slider .swiper-slide {
    max-width: 200px;
  }
}
.top-area .slider-controller {
  width: fit-content;
  margin: 50px 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 800px) {
  .top-area .slider-controller {
    margin-top: 30px;
  }
}
.top-area .slider-controller__btns {
  display: flex;
  align-items: center;
}
.top-area .slider-controller .slider-btn {
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
}
.top-area .slider-controller .slider-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.top-area .slider-controller .slider-btn.slider-btn-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.top-area .slider-scrollbar {
  width: 100px;
  height: 2px;
  background-color: #cbcbcb;
}
.top-area .slider-scrollbar .swiper-scrollbar-drag {
  background-color: #252826;
}
.top-area__num {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  border: 1px solid #cbcbcb;
  padding: 60px 20px 80px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .top-area__num {
    margin-top: 60px;
    padding: 40px 15px;
  }
}
.top-area__num .title1 {
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .top-area__num .title1 {
    margin-bottom: 8px;
  }
}
.top-area__num .title1 + p {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .top-area__num .title1 + p {
    margin-bottom: 32px;
  }
}

.sec-akiya .title1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .sec-akiya .title1 {
    margin-bottom: 16px;
  }
}
.sec-akiya .title1 + p {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .sec-akiya .title1 + p {
    margin-bottom: 32px;
  }
}
.sec-akiya.top-akiya {
  padding-bottom: 160px;
}
@media screen and (max-width: 800px) {
  .sec-akiya.top-akiya {
    padding-bottom: 80px;
  }
}
.sec-akiya--subpage {
  padding: 80px 0;
}

.top-member {
  padding: 100px 0 160px;
}
@media screen and (max-width: 800px) {
  .top-member {
    padding: 80px 0;
  }
}
.top-member__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .top-member__inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
}
.top-member__img {
  max-width: 600px;
}
@media screen and (max-width: 800px) {
  .top-member__img {
    max-width: 100%;
  }
}
.top-member__content {
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .top-member__content {
    max-width: 100%;
  }
}
.top-member__content .title1 {
  margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
  .top-member__content .title1 {
    margin-bottom: 24px;
  }
}
.top-member__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.4;
}
.content-nav__link {
  opacity: 0.4;
  display: block;
  position: relative;
  padding-left: 22px;
  transition: opacity 0.3s ease;
}
.content-nav__link::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #252826;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.content-nav__link:hover {
  opacity: 1;
}
.content-nav__link.is-active {
  opacity: 1;
}
.content-nav__link.is-active::before {
  opacity: 1;
}

.page-about .title3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .page-about .title3 {
    margin-bottom: 20px;
  }
}
.page-about__main {
  padding-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .page-about__main {
    padding-bottom: 80px;
  }
}
.page-about .list-subbtn {
  margin-top: 160px;
}
@media screen and (max-width: 800px) {
  .page-about .list-subbtn {
    margin-top: 80px;
  }
}

.about-member__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .about-member__img {
    margin-bottom: 20px;
  }
}
.about-member .text-area {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .about-member .text-area {
    margin-bottom: 40px;
  }
}

.about-support {
  padding-top: 100px;
}
@media screen and (max-width: 800px) {
  .about-support {
    padding-top: 60px;
  }
}
.about-support__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .about-support__title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}

.page-kurashi__main {
  padding-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .page-kurashi__main {
    padding-bottom: 80px;
  }
}
.page-kurashi__title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.kurashi-pagenavi {
  max-width: 850px;
  margin: 0 0 0 auto;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  padding: 0 120px;
  margin: 120px auto 0;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .wp-pagenavi {
    margin-top: 80px;
    padding-top: 60px;
  }
}
.wp-pagenavi > a,
.wp-pagenavi > span {
  padding: 0 5px 20px;
  color: rgba(37, 40, 38, 0.5);
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (max-width: 800px) {
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    padding-bottom: 16px;
  }
}
.wp-pagenavi a:hover,
.wp-pagenavi .current {
  color: #252826;
}
.wp-pagenavi .current {
  cursor: default;
}
.wp-pagenavi .current::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  left: 0;
  bottom: 0;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  background: unset;
  position: absolute;
  top: 0;
  width: fit-content;
  color: #252826;
}
.wp-pagenavi a.previouspostslink::before, .wp-pagenavi a.nextpostslink::before {
  content: "";
  width: 10px;
  height: 8px;
  background-color: #252826;
  position: absolute;
  top: 3px;
}
.wp-pagenavi a.previouspostslink::after, .wp-pagenavi a.nextpostslink::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  bottom: 0;
  left: 0;
}
.wp-pagenavi a.previouspostslink:hover::after, .wp-pagenavi a.nextpostslink:hover::after {
  animation: btnLine 0.6s ease;
  animation-fill-mode: forwards;
}
.wp-pagenavi a.previouspostslink {
  padding-left: 32px;
  padding-right: 10px;
  left: 0;
}
.wp-pagenavi a.previouspostslink::before {
  left: 10px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.wp-pagenavi a.previouspostslink:hover::after {
  animation: btnLineReverse 0.6s ease;
  animation-fill-mode: forwards;
}
.wp-pagenavi a.nextpostslink {
  right: 0;
  padding-left: 10px;
  padding-right: 32px;
}
.wp-pagenavi a.nextpostslink::before {
  right: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.wp-pagenavi a.nextpostslink:hover::after {
  animation: btnLine 0.6s ease;
  animation-fill-mode: forwards;
}

.page-detail__main {
  padding: 220px 0 120px;
}
@media screen and (max-width: 800px) {
  .page-detail__main {
    padding: 120px 0 80px;
  }
}

.kurashi-info {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .kurashi-info {
    grid-template-columns: 80px 1fr;
    font-size: 1.4rem;
    gap: 12px 0;
  }
}
.kurashi-info__title, .kurashi-info__text {
  padding-bottom: 20px;
  border-bottom: 1px solid #252826;
}
@media screen and (max-width: 800px) {
  .kurashi-info__title, .kurashi-info__text {
    padding-bottom: 12px;
  }
}

.kurashi-detail__header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 800px) {
  .kurashi-detail__header {
    margin-bottom: 40px;
  }
}
.kurashi-detail__header .flex {
  gap: 12px;
}
.kurashi-detail__content > * {
  margin-top: 60px;
}
@media screen and (max-width: 800px) {
  .kurashi-detail__content > * {
    margin-top: 40px;
  }
}
.kurashi-detail__content > *:first-child {
  margin-top: 0;
}
.kurashi-detail__content figure + figure {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .kurashi-detail__content figure + figure {
    margin-top: 24px;
  }
}
.kurashi-detail__content p + p {
  margin-top: 24px;
}
.kurashi-detail__content h2 {
  font-size: 2.4rem;
}
.kurashi-detail__content h3 {
  font-size: 2.2rem;
}
.kurashi-detail__content h4 {
  font-size: 2rem;
}
.kurashi-detail__content h5 {
  font-size: 1.8rem;
}
.kurashi-detail__content h6 {
  font-size: 1.6rem;
}
.kurashi-detail__content h2 + p,
.kurashi-detail__content h2 + figure,
.kurashi-detail__content h3 + p,
.kurashi-detail__content h3 + figure,
.kurashi-detail__content h4 + p,
.kurashi-detail__content h4 + figure,
.kurashi-detail__content h5 + p,
.kurashi-detail__content h5 + figure,
.kurashi-detail__content h6 + p,
.kurashi-detail__content h6 + figure {
  margin-top: 40px;
}

.pager {
  position: relative;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  max-width: 600px;
  margin: 80px 0 0 auto;
}
@media screen and (max-width: 800px) {
  .pager {
    margin: 80px auto 0;
  }
}
.pager__btn {
  display: block;
  width: 100px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .pager__btn {
    width: 90px;
    padding-bottom: 16px;
  }
}
.pager__btn::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #252826;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pager__btn:hover::after {
  animation: btnLine 0.6s ease;
  animation-fill-mode: forwards;
}
.pager__prev, .pager__next {
  position: absolute;
  top: 0;
}
.pager__prev::before, .pager__next::before {
  content: "";
  width: 10px;
  height: 8px;
  background-color: #252826;
  position: absolute;
  top: 5px;
}
.pager__prev {
  left: 0;
  padding-left: 32px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .pager__prev {
    padding-left: 25px;
  }
}
.pager__prev::before {
  left: 10px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 800px) {
  .pager__prev::before {
    left: 5px;
  }
}
.pager__prev:hover::after {
  animation: btnLineReverse 0.6s ease;
  animation-fill-mode: forwards;
}
.pager__next {
  right: 0;
  padding-right: 32px;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .pager__next {
    padding-right: 25px;
  }
}
.pager__next::before {
  right: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 800px) {
  .pager__next::before {
    right: 5px;
  }
}

.kurashi-related {
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .kurashi-related {
    padding: 60px 0;
  }
}
.kurashi-related .title1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .kurashi-related .title1 {
    margin-bottom: 24px;
  }
}

.page-support__main {
  padding-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .page-support__main {
    padding-bottom: 80px;
  }
}
.page-support .title3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .page-support .title3 {
    margin-bottom: 20px;
  }
}
.page-support .text-area {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .page-support .text-area {
    margin-bottom: 40px;
  }
}

.support-flow__content .title4 {
  margin-bottom: 16px;
}
.support-flow__content + .support-flow__content {
  margin-top: 40px;
}

.support-faq__content + .support-faq__content {
  margin-top: 60px;
}
@media screen and (max-width: 800px) {
  .support-faq__content + .support-faq__content {
    margin-top: 40px;
  }
}

.faq {
  border-bottom: 1px solid rgba(37, 40, 38, 0.2);
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .faq {
    font-size: 1.5rem;
  }
}
.faq__q {
  position: relative;
  padding: 30px 50px 30px 10px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .faq__q {
    padding: 20px 40px 20px 10px;
  }
}
.faq__q::before, .faq__q::after {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #252826;
  position: absolute;
  right: 10px;
  top: 45px;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 800px) {
  .faq__q::before, .faq__q::after {
    top: 35px;
  }
}
.faq__q::before {
  transform: rotate(-90deg);
}
.faq__q::after {
  transform: rotate(-180deg);
}
.faq__q p {
  font-weight: bold;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .faq__q p {
    gap: 10px;
  }
}
.faq__q p::before {
  content: "Q";
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(37, 40, 38, 0.2);
  flex-shrink: 0;
  letter-spacing: 0;
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .faq__q p::before {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.faq__q.is-active::before, .faq__q.is-active::after {
  transform: rotate(0deg);
}
.faq__a {
  height: 0;
  transition: height 0.5s ease;
  overflow: hidden;
}
.faq__a-inner {
  padding: 0 50px 30px 10px;
}
@media screen and (max-width: 800px) {
  .faq__a-inner {
    padding: 0 40px 20px 10px;
  }
}
.faq__a p {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .faq__a p {
    gap: 10px;
  }
}
.faq__a p::before {
  content: "A";
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(37, 40, 38, 0.2);
  flex-shrink: 0;
  letter-spacing: 0;
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .faq__a p::before {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.support-contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .support-contact__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 801px) {
  .support-contact__list__item:last-child {
    grid-column: 1/3;
  }
}

.inner {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.bg-beige {
  background-color: #e5e6e2;
}

.bg-beige-light {
  background-color: #f3f4f0;
}

.bg-white {
  background-color: #fff;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.text-area {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

@media screen and (min-width: 801px) {
  .sp-only {
    display: none;
  }
}

.bold {
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */