.container {
  width: 100%;
  height: 100%;
  display:flex;
  gap: 2em;
  margin-top: 2em;
}

.column {
  position:relative;
  height: 100%;
  width: 20%;
  display: flex;
  gap: 0.5em;
  flex-direction: column;
  overflow: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.column::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.middlecolumn {
  gap: 2em;
  flex-grow: 1;
  width: 50%;
}

.textbox {
  box-sizing: border-box;
  background-color: var(--white);
  padding: 1em;
  display: table;
}

.lBox {
  width: 100%;
}

.mBox {
    height: fit-content;
}

.logo {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","ＭＳ Ｐゴシック";
  font-weight: bold;
  font-size: 30px;
}

.sections {
  text-align: center;
}

.description {
  height: 100%;
}

.section-button {
  align-items: center;
  background-color: var(--white);
  border: 2px solid var(--white);
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  width: 100%;
  height: 32px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-bottom: 0px;
}

.section-button:focus {
  color: var(--purple1);
}

.section-button:hover {
  border-color: var(--purple1);
  color: var(--purple1);
  fill: var(--purple1);
}

.section-button:active {
  border-color: var(--purple1);
  color: var(--purple1);
  fill: var(--purple1);
}

@media (min-width: 768px) {
  .section-button {
    min-width: 170px;
  }
}


#swing {
  width: 30%;
  margin-top: -0.5em;
}


.gallery {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    overflow: scroll;
}

.img-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.img-wrapper {
    text-align: center;
}

.img-wrapper img {
    height: 300px;
    width: auto;
}

.noko {
  text-align: center;
}

.noko p {
  margin: 0;
  color: var(--white);
}

table, th, td {
  border:1px solid black;
  margin-left: auto;
  margin-right: auto;
}
pre {
  height: 300px;
  padding: 0;
  margin: 0;
  overflow: auto;
  overflow-y: hidden;
  font-size: 12px;
}
