@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.otf") format("opentype");
}
.pc-disp {
  display: block;
}
@media (max-width: 649px) {
  .pc-disp {
    display: none;
  }
}
@media (max-width: 1024px) and (min-width: 641px) {
  .pc-disp {
    display: none;
  }
}

.tab-disp {
  display: none;
}
@media (max-width: 1200px) {
  .tab-disp {
    display: none;
  }
}
@media (max-width: 1024px) and (min-width: 641px) {
  .tab-disp {
    display: block;
  }
}
@media (max-width: 649px) {
  .tab-disp {
    display: block;
  }
}

.sp-disp {
  display: none;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .sp-disp {
    display: none;
  }
}
@media (max-width: 1200px) {
  .sp-disp {
    display: none;
  }
}
@media (max-width: 649px) {
  .sp-disp {
    display: block;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
}

.fadein {
  display: block;
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadein.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.underline {
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 10%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 649px) {
  header {
    padding: 15px 5%;
  }
}
header .logo {
  display: block;
  width: 142px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .logo img {
  width: 100%;
}
@media (max-width: 649px) {
  header .logo {
    width: 94px;
  }
}
header .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
header .sns a img {
  width: 30px;
}
@media (max-width: 649px) {
  header .sns a img {
    width: 25px;
  }
}

.bg {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 110%;
}
@media (max-width: 1200px) {
  .bg {
    height: 100%;
  }
}
.bg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.bg .left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
}
.bg .right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2;
}
.bg .left-animation {
  position: absolute;
  top: 0;
  left: 10%;
  height: 100%;
}
.bg .right-animation {
  position: absolute;
  top: 0;
  right: 10%;
  height: 100%;
}
.bg.partner .left-animation,
.bg.partner .right-animation {
  -webkit-filter: opacity(30%);
          filter: opacity(30%);
}

.fv {
  position: relative;
}
.fv::after {
  background-image: url("../images/bg-fv.svg");
}
.fv .fv-image {
  height: 100vh;
  width: 100%;
  max-width: 2800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .fv .fv-image {
    height: 600px;
  }
}
@media (max-width: 374px) {
  .fv .fv-image {
    height: 700px;
  }
}
.fv .text-overlay {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 100%;
  padding-bottom: 55px;
  width: 1100px;
  max-width: 65%;
  margin: auto;
}
@media (max-width: 1024px) {
  .fv .text-overlay {
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    max-width: 80%;
  }
}
@media (max-width: 649px) {
  .fv .text-overlay {
    max-width: 90%;
  }
}
.fv .text-line {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  margin: 5px 0;
  border-radius: 5px;
}
.fv h1 {
  font-size: 28px;
  line-height: 1.5;
  color: #595757;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1200px) {
  .fv h1 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) and (min-width: 641px) {
  .fv h1 {
    font-size: 25px;
  }
}
@media (max-width: 649px) {
  .fv h1 {
    font-size: 18px;
  }
}
.fv p {
  margin-top: 60px;
  font-size: 21px;
  line-height: 35.2px;
  letter-spacing: 2.1px;
  color: #595757;
  color: rgb(89, 87, 87);
  text-align: center;
}
@media (max-width: 1024px) {
  .fv p {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.swiper {
  position: relative;
  overflow-x: hidden;
  max-width: 2800px;
  margin: 0 auto;
}
.swiper .swiper-slide {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  border-bottom: 20px solid transparent;
  border-top: 20px solid transparent;
}

.swiper-button-prev::after {
  border-right: 30px solid white;
}

.swiper-button-next::after {
  border-left: 30px solid white;
}

@media (max-width: 649px) {
  .swiper-button-prev {
    left: 0px;
  }
  .swiper-button-next {
    right: 0px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
  }
  .swiper-button-prev::after {
    border-right: 15px solid white;
  }
  .swiper-button-next::after {
    border-left: 15px solid white;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 3%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
  .modal {
    padding-top: 15%;
  }
}
@media (max-width: 768px) {
  .modal {
    padding-top: 23%;
  }
}
.modal .modal-content {
  margin: 0 auto;
  display: block;
  max-width: 70%;
  height: auto;
  max-height: 97%;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 480px) {
  .modal .modal-content {
    max-width: 86%;
  }
}
@media (max-width: 420px) {
  .modal .modal-content {
    max-width: 90%;
  }
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 150;
}
@media (max-width: 768px) {
  .modal .close {
    right: 2%;
  }
}

.news {
  background: #dbe1c3;
  padding: 40px 5%;
}
.news h2 {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2.85px;
  color: #514f4e;
  text-align: center;
  border-bottom: 1px solid #514f4e;
  width: 100px;
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.news ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 1070px;
  max-width: 90%;
  margin: 0 auto;
}
.news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 649px) {
  .news ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news ul li a span.bg-grey {
  background: #514f4e;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 2.4px;
  color: #ffffff;
  text-align: center;
  padding: 4px 20px;
}
@media (max-width: 649px) {
  .news ul li a span.bg-grey {
    text-align: left;
  }
}

.bg-bamboo {
  position: relative;
}
@media (max-width: 1024px) {
  .bg-bamboo {
    background: rgba(255, 255, 255, 0.66);
    width: 95%;
    margin: auto;
  }
}
.bg-bamboo .project-partners {
  width: 1040px;
  max-width: 95%;
  margin: auto;
  padding-top: 60px;
  line-height: 2;
}
.bg-bamboo .project-partners h2 {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2.85px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}
.bg-bamboo .project-partners .project-partner-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bg-bamboo .project-partners .project-partner-row img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.bg-bamboo .project-partners .project-partner-row .circle {
  border-radius: 50%;
}
.bg-bamboo .project-partners .project-partner-list-btn {
  text-align: center;
  border: 1px solid #514f4e;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  margin-top: 30px;
}
.bg-bamboo .project-partners .project-partner-list-btn:hover {
  background: #514f4e;
  color: #ffffff;
}
.bg-bamboo .project-partners .project-partners-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 0;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 100px;
}
@media (max-width: 649px) {
  .bg-bamboo .project-partners .project-partners-list .project-partner-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item img {
  width: 120px;
  height: auto;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item .circle {
  border-radius: 50%;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item .item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item .item-text h2 {
  text-align: left;
  margin-bottom: 20px;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item .item-text a {
  padding-top: 10px;
  display: block;
  margin-left: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: underline;
}
.bg-bamboo .project-partners .project-partners-list .project-partner-list-item .item-text a:hover {
  opacity: 0.7;
}
.bg-bamboo .concept {
  width: 880px;
  max-width: 95%;
  margin: auto;
  text-align: center;
  padding: 60px 0;
  line-height: 2;
}
.bg-bamboo .concept.concept-box img {
  margin-bottom: 20px;
}
.bg-bamboo .concept.concept-box p {
  text-align: justify;
}
.bg-bamboo .concept h2 {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2.85px;
  margin-bottom: 30px;
  font-weight: bold;
}
.bg-bamboo .concept h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
  font-weight: bold;
}
.bg-bamboo .outline {
  width: 880px;
  max-width: 95%;
  margin: auto;
}
.bg-bamboo .outline .banner {
  margin: auto;
  margin: 80px auto 40px;
  width: 600px;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .banner {
    width: 100%;
  }
}
.bg-bamboo .outline h2 {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2.85px;
  color: #514f4e;
  text-align: center;
  border-bottom: 1px solid #514f4e;
  width: 100px;
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.bg-bamboo .outline .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.bg-bamboo .outline .flex .box {
  width: 48%;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box {
    width: 100%;
    max-width: 400px;
  }
}
.bg-bamboo .outline .flex .box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px;
}
.bg-bamboo .outline .flex .box .title strong {
  font-weight: bold;
  font-size: 67px;
  color: #f1e7a5;
  line-height: 1;
  font-family: "Gilroy";
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box .title strong {
    font-size: 45px;
  }
}
.bg-bamboo .outline .flex .box .title h3 {
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  left: -15px;
  bottom: 5px;
  color: #231815;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box .title h3 {
    left: -10px;
    bottom: 2px;
    font-size: 17px;
  }
}
.bg-bamboo .outline .flex .box .title h3 span {
  font-size: 21px;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box .title h3 span {
    font-size: 19px;
  }
}
.bg-bamboo .outline .flex .box .desc {
  background-image: url("../images/bg-outline-desc.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10px;
}
.bg-bamboo .outline .flex .box .desc p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 14px;
  color: #231815;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box .desc p {
    font-size: 12px;
  }
}
.bg-bamboo .outline .flex .box .desc p span {
  font-size: 16px;
}
@media (max-width: 649px) {
  .bg-bamboo .outline .flex .box .desc p span {
    font-size: 14px;
  }
}
.bg-bamboo .artist,
.bg-bamboo .schedule,
.bg-bamboo .staff {
  width: 880px;
  margin: 40px auto;
  max-width: 95%;
}
.bg-bamboo .schedule .pc {
  display: block;
}
.bg-bamboo .schedule .sp {
  display: none;
}
@media (max-width: 649px) {
  .bg-bamboo .schedule .pc {
    display: none;
  }
  .bg-bamboo .schedule .sp {
    display: block;
    margin-bottom: 15px;
  }
  .bg-bamboo .schedule .sp.title {
    width: 120px;
    margin-bottom: 20px;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .artist .artist-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .artist .artist-blocks .artist-block {
    width: 100%;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block h2 {
  font-size: 19px;
  line-height: 2;
  color: #231815;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 649px) {
  .bg-bamboo .artist .artist-blocks .artist-block h2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block h2 span {
  font-weight: normal;
  font-size: 13px;
}
.bg-bamboo .artist .artist-blocks .artist-block h3 {
  font-size: 14px;
}
@media (min-width: 650px) {
  .bg-bamboo .artist .artist-blocks .artist-block h3 {
    font-size: 17px;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block h3 span {
  font-size: 12px;
}
@media (min-width: 650px) {
  .bg-bamboo .artist .artist-blocks .artist-block h3 span {
    font-size: 14px;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block p {
  font-size: 11px;
}
@media (min-width: 650px) {
  .bg-bamboo .artist .artist-blocks .artist-block p {
    font-size: 14px;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.bg-bamboo .artist .artist-blocks .artist-block .box img {
  width: 30%;
}
.bg-bamboo .artist .artist-blocks .artist-block:nth-of-type(2) {
  background: #f1f3e8;
  padding: 15px;
}
@media (max-width: 649px) {
  .bg-bamboo .artist .artist-blocks .artist-block:nth-of-type(2) .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bg-bamboo .artist .artist-blocks .artist-block:nth-of-type(2) img {
  width: 48%;
}
.bg-bamboo .staff .staff-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .bg-bamboo .staff .staff-blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .staff .staff-blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
}
.bg-bamboo .staff .staff-blocks .staff-block {
  width: 22%;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .bg-bamboo .staff .staff-blocks .staff-block {
    width: 46%;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .staff .staff-blocks .staff-block {
    width: 49%;
  }
}
.bg-bamboo .staff .staff-blocks .staff-block p {
  height: 45px;
  font-size: 12px;
  font-weight: bold;
  text-indent: -14px;
  padding-left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 649px) {
  .bg-bamboo .staff .staff-blocks .staff-block p {
    font-size: 10px;
  }
}
.bg-bamboo .staff .staff-blocks .staff-block img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
.bg-bamboo .special-partner {
  width: 880px;
  max-width: 95%;
  margin: 60px auto;
}
.bg-bamboo .special-partner h2 {
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2.85px;
  color: #514f4e;
  text-align: center;
  border-bottom: 1px solid #514f4e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.bg-bamboo .special-partner .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-bottom: 80px;
}
@media (max-width: 649px) {
  .bg-bamboo .special-partner .logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.bg-bamboo .special-partner .logos a:nth-of-type(1) {
  width: 240px;
}
.bg-bamboo .special-partner .logos a:nth-of-type(2) {
  width: 250px;
}
@media (max-width: 649px) {
  .bg-bamboo .special-partner .logos a:nth-of-type(1) {
    width: 150px;
  }
  .bg-bamboo .special-partner .logos a:nth-of-type(2) {
    width: 165px;
  }
}
.bg-bamboo .special-partner .name-list {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style-type: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .bg-bamboo .special-partner .name-list {
    width: 95%;
    padding-left: 6%;
  }
}
@media (max-width: 1024px) {
  .bg-bamboo .special-partner .name-list {
    width: 85%;
    padding-left: 8%;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .special-partner .name-list {
    width: 80%;
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.bg-bamboo .special-partner .name {
  white-space: nowrap;
  letter-spacing: 1px;
  line-height: 2;
}
@media (max-width: 374px) {
  .bg-bamboo .special-partner .name {
    font-size: 14px;
  }
}
.bg-bamboo .special-partner .name::before {
  content: "・";
  margin-right: 5px;
}
.bg-bamboo .link-obi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 880px;
  margin: 40px auto 10px;
  max-width: 90%;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
  background: #798e2e;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
  height: 92px;
}
.bg-bamboo .link-obi small {
  padding-top: 10px;
  font-size: 18px;
  display: block;
}
@media (max-width: 649px) {
  .bg-bamboo .link-obi small {
    font-size: 11px;
    line-height: 1;
    padding-top: 10px;
    text-align: left;
  }
}
@media (max-width: 649px) {
  .bg-bamboo .link-obi {
    display: block;
    height: auto;
    font-size: 14px;
    line-height: 1;
    padding: 15px 10px;
    text-align: left;
  }
}
.bg-bamboo .link-obi img {
  width: 34px;
  position: absolute;
  right: 20px;
  top: 28px;
}
@media (max-width: 649px) {
  .bg-bamboo .link-obi img {
    width: 18px;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
.bg-bamboo .link-obi:hover {
  opacity: 0.7;
}
.bg-bamboo .link-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  font-size: 14px;
  color: #798e2e;
  text-decoration: underline;
}
.bg-bamboo .annotation {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  margin: auto;
}
.bg-bamboo .link-text-black {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
}

footer {
  background-color: #ffffff;
}
footer .organize {
  background: #dbe1c3;
  padding: 15px 20px;
  text-align: center;
}
footer .organize p {
  font-size: 14px;
  line-height: 2;
  color: #000000;
}
footer .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 649px) {
  footer .logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .logos a:nth-of-type(1) {
  width: 156px;
}
footer .logos a:nth-of-type(2) {
  width: 181px;
}
footer .logos a:nth-of-type(3) {
  width: 65px;
}
footer .logos a:nth-of-type(4) {
  width: 71px;
}
footer .logos a:nth-of-type(5) {
  width: 101px;
}
footer .logos a:nth-of-type(6) {
  width: 59px;
}
footer .logos a:nth-of-type(7) {
  width: 62px;
}
footer .logos a:nth-of-type(8) {
  width: 79px;
}
footer .logos a:nth-of-type(9) {
  width: 79px;
}
footer .expo-logo {
  margin: auto;
  padding-top: 10px;
  padding-bottom: 20px;
  width: 600px;
}
@media (max-width: 649px) {
  footer .expo-logo {
    width: 300px;
  }
}
footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
footer .sns a img {
  width: 30px;
}
footer .copyright {
  font-size: 10px;
  line-height: 30px;
  color: #514f4e;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 60px;
}