.fv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/850;
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/fv.webp) no-repeat center center/cover;
}
.fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
}
.fv__message {
  z-index: 1;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.fv__message h1 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  color: #fff;
  white-space: nowrap;
}
.fv__message h1 br {
  display: none;
}
.fv__message p {
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(49, 177, 115, 0.9), rgba(171, 206, 35, 0.9));
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 12px 25px 16px;
  border-radius: 8px;
  font-size: 36px;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  white-space: nowrap;
}
.fv__message p br {
  display: none;
}
.fv__countdown {
  z-index: 1;
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 14px;
  background: #f5f5f5;
  border-radius: 8px;
  width: fit-content;
}
.fv__countdown__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
}
.fv__countdown__label strong {
  font-size: 26px;
  color: #31b173;
}
.fv__countdown__numbers {
  display: flex;
  gap: 8px;
}
.fv__countdown__numbers .digit {
  padding: 8px 10px 10px;
  background: #31b173;
  border-radius: 8px;
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv__countdown__unit {
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
  color: #31b173;
}
.fv .fv__message, .fv .fv__countdown {
  opacity: 0;
  transform: translateX(-50%), translateY(20px);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%), translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%), translateY(0);
  }
}
.fv .fv__message {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.7s;
}
.fv .fv__countdown {
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.7s;
}

@media screen and (max-width: 1400px) {
  .fv__message h1 {
    margin-bottom: 24px;
    font-size: 2.8vw;
  }
  .fv__message p {
    padding: 10px 20px 14px;
    font-size: 2.5vw;
  }
  .fv__countdown {
    bottom: 25px;
    right: 25px;
  }
  .fv__countdown__label {
    font-size: 16px;
  }
  .fv__countdown__label strong {
    font-size: 22px;
  }
  .fv__countdown__numbers .digit {
    padding: 6px 8px 8px;
    font-size: 36px;
  }
}
@media screen and (max-width: 1280px) {
  .fv {
    aspect-ratio: 1920/1200;
    background: url(https://proex.takasho.jp/greenexpo2027/assets/img/fvsp.webp) no-repeat bottom center/cover;
  }
  .fv__countdown {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    bottom: inherit;
    right: inherit;
  }
  .fv__countdown__label {
    font-size: 1.5vw;
  }
  .fv__countdown__label strong {
    font-size: 2vw;
  }
  .fv__countdown__numbers .digit {
    font-size: 3.2vw;
  }
  .fv__countdown__unit {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 960px) {
  .fv {
    aspect-ratio: 1920/1680;
    background: url(https://proex.takasho.jp/greenexpo2027/assets/img/fvsp.webp) no-repeat center center/cover;
  }
  .fv__message {
    top: 6%;
  }
  .fv__message h1 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.4;
  }
  .fv__message h1 br {
    display: block;
  }
  .fv__message p {
    padding: 10px 16px 12px;
    font-size: 27px;
  }
  .fv__countdown {
    top: 42%;
    gap: 8px;
    padding: 12px;
  }
  .fv__countdown__label {
    font-size: 14px;
  }
  .fv__countdown__label strong {
    font-size: 22px;
  }
  .fv__countdown__numbers .digit {
    padding: 6px 8px 8px;
    border-radius: 8px;
    font-size: 32px;
  }
  .fv__countdown__unit {
    font-size: 28px;
  }
}
@media screen and (max-width: 520px) {
  .fv {
    aspect-ratio: 1920/1880;
  }
  .fv::after {
    display: none;
  }
  .fv__message {
    top: 10%;
  }
  .fv__message h1 {
    margin-bottom: 15px;
    font-size: 5.5vw;
    line-height: 1.5;
  }
  .fv__message p {
    background: linear-gradient(to right, rgba(49, 177, 115, 0.8), rgba(171, 206, 35, 0.8));
    padding: 4px 16px 6px;
    font-size: 4.5vw;
    line-height: 1.4;
  }
  .fv__message p br {
    display: block;
  }
  .fv__countdown {
    width: 92%;
    top: inherit;
    bottom: -100px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    padding: 14px 0;
    justify-content: center;
  }
  .fv__countdown__label {
    font-size: 4vw;
  }
  .fv__countdown__label strong {
    font-size: 5vw;
  }
  .fv__countdown__numbers {
    gap: 8px;
  }
  .fv__countdown__numbers .digit {
    font-size: 8vw;
  }
  .fv__countdown__unit {
    font-size: 7vw;
  }
}
.bg_top {
  padding: 8vw 0 12vw;
  background: linear-gradient(#fff, #e3f7ea);
}

@media screen and (max-width: 520px) {
  .bg_top {
    padding: 180px 0 120px;
  }
}
.concept__title {
  margin-bottom: 50px;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #31b173;
  text-align: center;
}
.concept__inner {
  height: 680px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
.concept__inner__text {
  box-sizing: border-box;
  width: 50%;
  padding-left: 50px;
}
.concept__inner__text__catch {
  margin-bottom: 40px;
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #31b173;
}
.concept__inner__text__description {
  display: grid;
  row-gap: 20px;
}
.concept__inner__text__description p {
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
  color: #333;
  font-weight: 500;
}
.concept__inner__text__description p .sp_br {
  display: none;
}
.concept__inner__img {
  width: 50%;
  height: 680px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.concept__inner__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1400px) {
  .concept__inner {
    height: 650px;
  }
  .concept__inner__text {
    padding-left: 40px;
  }
  .concept__inner__text__catch {
    margin-bottom: 32px;
    font-size: 42px;
  }
  .concept__inner__text__description p {
    font-size: 15px;
  }
  .concept__inner__img {
    height: 650px;
  }
}
@media screen and (max-width: 1280px) {
  .concept__inner {
    height: 800px;
    position: relative;
  }
  .concept__inner__text {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    padding: 40px 80px;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  .concept__inner__text__catch {
    font-size: 40px;
    text-align: center;
  }
  .concept__inner__text__description p {
    font-size: 16px;
    text-align: center;
  }
  .concept__inner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .concept__inner__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 960px) {
  .concept__title {
    margin-bottom: 44px;
    font-size: 56px;
  }
  .concept__inner {
    box-sizing: border-box;
    width: 92%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    padding: 50px 32px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    flex-direction: column;
    row-gap: 40px;
  }
  .concept__inner__text {
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .concept__inner__text__description p .pc_br {
    display: block;
  }
  .concept__inner__img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 960/720;
    border-radius: 12px;
  }
  .concept__inner__img::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .concept__title {
    margin-bottom: 30px;
    font-size: 11vw;
    font-weight: 600;
  }
  .concept__inner {
    box-sizing: inherit;
    background: none;
    box-shadow: none;
    flex-direction: column-reverse;
    padding: 0;
  }
  .concept__inner__text__catch {
    margin-bottom: 32px;
    font-size: 9vw;
    text-align: center;
  }
  .concept__inner__text__description {
    row-gap: 28px;
  }
  .concept__inner__text__description p {
    font-size: 4vw;
    line-height: 2.2;
    text-align: center;
  }
  .concept__inner__text__description p .sp_br {
    display: block;
  }
}
.story {
  padding: 8vw 0 0;
}
.story__txt {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.story__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.story__inner__item {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.story__inner__item__content {
  width: calc(50% - 40px);
}
.story__inner__item__content__vol {
  width: fit-content;
  margin-bottom: 15px;
  padding: 4px 20px;
  border-radius: 100px;
  background: #31b173;
  font-size: 22px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  color: #fff;
}
.story__inner__item__content__title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #31b173;
  text-align: justify;
}
.story__inner__item__content__txt {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
.story__inner__item__content__btn {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: #31b173;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  transition: 0.3s;
}
.story__inner__item__content__btn:hover {
  opacity: 0.9;
}
.story__inner__item__img {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
}
.story__inner__item__img img {
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .story__inner__item__content__vol {
    font-size: 20px;
  }
  .story__inner__item__content__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 960px) {
  .story__inner__item {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .story__inner__item__content {
    width: 100%;
  }
  .story__inner__item__img {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .story {
    padding: 80px 0 0;
  }
  .story__txt {
    margin-bottom: 30px;
    font-size: 4vw;
  }
  .story__inner__item {
    padding: 5vw;
  }
  .story__inner__item__content__vol {
    margin-bottom: 10px;
    padding: 4px 15px;
    font-size: 18px;
  }
  .story__inner__item__content__title {
    font-size: 18px;
  }
  .story__inner__item__content__title br {
    display: none;
  }
  .story__inner__item__content__txt {
    font-size: 4vw;
  }
  .story__inner__item__content__btn {
    padding: 4vw 0;
    font-size: 4.5vw;
  }
}
.news {
  position: relative;
  z-index: 1;
  padding: 8vw 0;
  margin: -4vw 0;
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/bg01.svg) no-repeat center center/cover;
}
.news__title_sp {
  display: none;
}
.news__inner {
  box-sizing: border-box;
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.news__inner__title_pc {
  width: 20%;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #31b173;
}
.news__inner__list {
  width: 80%;
}
.news__inner__list__item {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 25px 0 25px 20px;
}
.news__inner__list__item p {
  font-size: 18px;
  line-height: 1.5;
}
.news__inner__list__item__date {
  width: 140px;
}
.news__inner__list__item a p {
  transition: 0.3s;
}
.news__inner__list__item a:hover p {
  color: #31b173;
}
.news__inner__list__item:last-child {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 1400px) {
  .news {
    padding: 12vw 0;
    margin: -6vw 0;
  }
  .news__inner__list {
    width: 76%;
  }
  .news__inner__list__item {
    column-gap: 30px;
    padding: 25px 0 25px 15px;
  }
}
@media screen and (max-width: 960px) {
  .news {
    padding: 80px 0 120px;
    margin: -40px 0 -60px;
    background: url(https://proex.takasho.jp/greenexpo2027/assets/img/bg01_ta.svg) no-repeat center center/cover;
  }
  .news__title_sp {
    display: block;
    margin-bottom: 44px;
    font-size: 56px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    color: #fff;
    text-align: center;
  }
  .news__inner {
    padding: 40px;
  }
  .news__inner__title_pc {
    display: none;
  }
  .news__inner__list {
    width: 100%;
  }
  .news__inner__list__item p {
    font-size: 16px;
  }
  .news__inner__list__item__date {
    width: 125px;
  }
}
@media screen and (max-width: 520px) {
  .news {
    padding: 80px 0 100px;
    margin: -40px 0 -50px;
  }
  .news__title_sp {
    margin-bottom: 30px;
    font-size: 11vw;
    font-weight: 600;
  }
  .news__inner {
    padding: 40px 24px;
  }
  .news__inner__list__item {
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
    padding: 18px 8px;
  }
  .news__inner__list__item p {
    font-size: 4vw;
    text-align: justify;
  }
  .news__inner__list__item__date {
    width: 100%;
  }
}
.map {
  padding: 10vw 0;
  background: linear-gradient(#e3f7ea, #fff);
}
.map__title {
  margin-bottom: 50px;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #31b173;
  text-align: center;
}
.map__title span {
  color: #31b173;
}
.map__inner {
  box-sizing: border-box;
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
}
.map__inner img {
  max-width: 1150px;
  width: 100%;
}
.map__inner p {
  font-size: 16px;
}

@media screen and (max-width: 1400px) {
  .map {
    padding: 15vw 0;
  }
}
@media screen and (max-width: 960px) {
  .map {
    padding: 160px 0;
  }
  .map__title {
    margin-bottom: 44px;
    font-size: 56px;
  }
  .map__inner {
    padding: 30px;
  }
  .map__inner p {
    font-size: 14px;
  }
}
@media screen and (max-width: 520px) {
  .map {
    padding: 130px 0 120px;
  }
  .map__title {
    margin-bottom: 30px;
    font-size: 11vw;
    font-weight: 600;
  }
  .map__title span {
    display: none;
  }
  .map__inner {
    padding: 24px 16px;
    overflow: scroll;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .map__inner img {
    width: 200%;
  }
  .map__inner p {
    font-size: 3vw;
  }
}
.bg {
  position: relative;
  z-index: 1;
  padding: 10vw 0 8vw;
  margin-top: -4vw;
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/bg02.svg) no-repeat top center/cover;
}
.bg .about {
  margin-bottom: 120px;
}
.bg .about__title {
  margin-bottom: 50px;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.bg .about__inner {
  box-sizing: border-box;
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bg .about__inner__txt {
  width: 48%;
  text-align: center;
}
.bg .about__inner__txt__title {
  margin: 0 auto 20px;
  max-width: 520px;
  width: 92%;
}
.bg .about__inner__txt__subtitle {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  color: #31b173;
}
.bg .about__inner__txt ul {
  margin-bottom: 40px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.bg .about__inner__txt ul li:first-child {
  border-bottom: 1px dashed #ccc;
}
.bg .about__inner__txt ul li {
  padding: 16px 0 16px 30px;
  display: flex;
  column-gap: 30px;
}
.bg .about__inner__txt ul li p {
  font-size: 16px;
  font-weight: 500;
}
.bg .about__inner__txt ul li p:first-child {
  position: relative;
}
.bg .about__inner__txt ul li p:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #31b173;
}
.bg .about__inner__txt__btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
.bg .about__inner__txt__btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 0;
  border-radius: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}
.bg .about__inner__txt__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #fff;
  transition: 0.3s;
}
.bg .about__inner__txt__btn a:hover {
  transform: scale(1.05);
}
.bg .about__inner__txt__btn__official {
  background: #099ad4;
}
.bg .about__inner__txt__btn__access {
  background: #ec6d88;
}
.bg .about__inner__img {
  width: 50%;
  border: 1px solid #ccc;
}
.bg .about__inner__img img {
  width: 100%;
}
.bg .sns__title {
  margin-bottom: 40px;
  font-size: 60px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.bg .sns__txt {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  text-align: center;
}
.bg .sns ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.bg .sns ul li a {
  position: relative;
  display: block;
  width: 320px;
  padding: 18px 0;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
  color: #333;
}
.bg .sns ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 25px;
  height: auto;
}
.bg .sns ul li a.sns__btn__instagram::before {
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/instagram.png) no-repeat center center/cover;
  aspect-ratio: 1/1;
}
.bg .sns ul li a.sns__btn__x::before {
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/x.png) no-repeat center center/cover;
  aspect-ratio: 25/25.5;
}
.bg .sns ul li a.sns__btn__youtube::before {
  background: url(https://proex.takasho.jp/greenexpo2027/assets/img/youtube.png) no-repeat center center/cover;
  aspect-ratio: 25/17.5;
}
.bg .sns ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #31b173;
}
.bg .sns ul li a:hover {
  transform: scale(1.05);
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .bg {
    padding: 15vw 0 12vw;
    margin-top: -6vw;
  }
  .bg .about__inner {
    padding: 30px;
  }
  .bg .about__inner__txt__title {
    margin: 0 auto 15px;
  }
  .bg .about__inner__txt__subtitle {
    margin-bottom: 30px;
    font-size: 2vw;
  }
  .bg .about__inner__txt ul {
    margin-bottom: 25px;
  }
  .bg .about__inner__txt ul li {
    padding: 15px 0 15px 30px;
    column-gap: 25px;
  }
  .bg .about__inner__txt ul li p {
    font-size: 15px;
  }
  .bg .about__inner__txt__btn {
    column-gap: 15px;
  }
  .bg .about__inner__txt__btn a {
    font-size: 16px;
  }
  .bg .about__inner__txt__btn a::after {
    right: 6%;
  }
  .bg .sns__txt {
    font-size: 22px;
  }
  .bg .sns ul li a {
    width: 300px;
    font-size: 16px;
  }
  .bg .sns ul li a::before {
    width: 25px;
  }
}
@media screen and (max-width: 960px) {
  .bg {
    padding: 160px 0 80px;
    margin-top: -60px;
    background: url(https://proex.takasho.jp/greenexpo2027/assets/img/bg02_ta.svg) no-repeat top center/cover;
  }
  .bg .about {
    margin-bottom: 80px;
  }
  .bg .about__title {
    margin-bottom: 44px;
    font-size: 56px;
  }
  .bg .about__inner {
    padding: 40px;
    flex-direction: column-reverse;
    row-gap: 32px;
  }
  .bg .about__inner__txt {
    width: 100%;
  }
  .bg .about__inner__txt__title {
    margin: 0 auto 20px;
    max-width: 460px;
  }
  .bg .about__inner__txt__subtitle {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .bg .about__inner__txt ul {
    margin-bottom: 30px;
  }
  .bg .about__inner__txt ul li {
    padding: 16px 0 16px 30px;
    column-gap: 30px;
  }
  .bg .about__inner__txt ul li p {
    font-size: 16px;
  }
  .bg .about__inner__txt__btn {
    column-gap: 20px;
  }
  .bg .about__inner__txt__btn a {
    font-size: 18px;
  }
  .bg .about__inner__txt__btn a::after {
    right: 8%;
  }
  .bg .about__inner__img {
    width: 100%;
  }
  .bg .sns__title {
    margin-bottom: 36px;
    font-size: 56px;
  }
  .bg .sns__txt {
    font-size: 20px;
  }
  .bg .sns ul {
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
  }
  .bg .sns ul li a {
    width: 100%;
  }
  .bg .sns ul li a::before {
    left: 8%;
    width: 22px;
  }
}
@media screen and (max-width: 520px) {
  .bg {
    padding: 120px 0 80px;
    margin-top: -40px;
    background: url(https://proex.takasho.jp/greenexpo2027/assets/img/bg02_sp.svg) no-repeat top center/cover;
  }
  .bg .about__title {
    margin-bottom: 30px;
    font-size: 11vw;
    font-weight: 600;
  }
  .bg .about__inner {
    padding: 24px 18px;
    row-gap: 28px;
  }
  .bg .about__inner__txt__title {
    margin: 0 auto 16px;
    width: 96%;
  }
  .bg .about__inner__txt__subtitle {
    margin-bottom: 24px;
    font-size: 5vw;
  }
  .bg .about__inner__txt ul {
    margin-bottom: 24px;
  }
  .bg .about__inner__txt ul li {
    padding: 16px 0;
    flex-direction: column;
    row-gap: 10px;
  }
  .bg .about__inner__txt ul li p {
    font-size: 4vw;
  }
  .bg .about__inner__txt ul li p:first-child::after {
    display: none;
  }
  .bg .about__inner__txt__btn {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  .bg .about__inner__txt__btn a {
    font-size: 4vw;
  }
  .bg .sns__title {
    margin-bottom: 30px;
    font-size: 11vw;
    font-weight: 600;
  }
  .bg .sns__txt {
    width: 92%;
    margin: 0 auto 28px;
    font-size: 4.25vw;
    text-align: justify;
  }
  .bg .sns__txt br {
    display: none;
  }
  .bg .sns ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  .bg .sns ul li a {
    font-size: 4vw;
  }
}
.footer {
  padding: 80px 0 0;
  text-align: center;
}
.footer__logo {
  margin-bottom: 40px;
  display: block;
}
.footer__logo img {
  height: 45px;
}
.footer__nav {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.footer__nav li a {
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}
.footer__nav li a:hover {
  text-decoration: none;
}
.footer__copyright {
  border-top: 1px solid #ccc;
  padding: 12px 0;
  font-size: 14px;
}

@media screen and (max-width: 520px) {
  .footer__logo img {
    height: 40px;
  }
  .footer__nav {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer__nav li a {
    font-size: 3.5vw;
  }
  .footer__copyright {
    font-size: 3vw;
  }
}