.text-and-image {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px 2em;
}

.fit-image {
  width: 100%;
  height: auto;
}

.image-200 {
  align-self: center;
}

.br-457,
.br-375 {
  display: none;
}

.button {
  font-weight: bold;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  padding: 0;
  border-radius: 0.75em;
}

.button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.5em, -1em);
  transform: translate3d(0, 0.5em, -1em);
  border: 2px solid var(--text-color);
  border-radius: inherit;
  background: var(--sub-color);
}

.button-face {
  position: relative;
  display: block;
  padding: 0.5em 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--text-color);
  border-radius: inherit;
  background-color: var(--sub-background);
}

.button:hover {
  -webkit-transform: translate(0, 0.125em);
  transform: translate(0, 0.125em);
}

.button:hover::before {
  -webkit-transform: translate3d(0, 0.375em, -1em);
  transform: translate3d(0, 0.375em, -1em);
}

.button:active {
  -webkit-transform: translate(0em, 0.5em);
  transform: translate(0em, 0.5em);
}

.button:active:before {
  -webkit-transform: translate3d(0, 0, -1em);
  transform: translate3d(0, 0, -1em);
}

.supporter-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  width: 100%;
}

.supporter-link {
  max-width: 250px;
  min-width: 140px;
  height: auto;
  flex: 1;
}

.supporter-logo {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.supporter-logo-box {
  background-color: var(--background-white);
  border: 1px solid var(--shadow);
  padding: 0.5em;
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.supporter-logo-image {
  width: 100%;
}

.sdgs-icons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
  width: 98%;
  margin: 1em auto;
}

.sdgs-icon {
  width: 120px;
  height: auto;
}

/* ハンバーガーメニューからトップページのリンクを消す */
.go-to-top-page {
  display: none !important;
}

@media screen and (max-width: 756px) {
  .text-and-image {
    flex-direction: column;
  }

  .supporter-logos {
    flex-direction: column;
  }

  .supporter-link {
    margin: 0px auto;
  }
}

@media screen and (max-width: 457px) {
  .br-457 {
    display: inline;
  }
}

@media screen and (max-width: 375px) {
  .br-375 {
    display: inline;
  }
}

@media print {

  .button,
  .bx-controls {
    display: none;
  }

  .bx-wrapper {
    margin: 0 auto;
  }
}
