@charset "UTF-8";

/*--------------------------------
  thoughts
--------------------------------*/
#tho {
  padding-bottom: 240px;
}
#tho .tho__inr {
  gap: 80px;
}
#tho .tho__left {
  display: flex;
  padding-top: 40px;
  height: -webkit-fit-content;
  height: fit-content;
}
#tho .tho__left p {
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 52px;
  font-family: var(--font-shippori);
}
#tho .tho__left p:first-child {
  position: relative;
}
#tho .tho__left p:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 0.5em);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 150px;
  background-color: #030303;
}
#tho .tho__right {
  flex: 1;
}
#tho .tho__right .tho__ttl-top {
  display: flex;
  position: relative;
  width: fit-content;
  margin-left: auto;
  align-items: center;
}
#tho .tho__right .sec-ttl {
  font-size: 113px;
  line-height: 1;
  text-align: right;
}

#tho .tho__right p {
  font-family: var(--font-shippori);
  font-size: var(--fs-20);
  line-height: 2.4;
}
@media screen and (max-width: 960px) {
  #tho {
    padding-bottom: 120px;
  }
  #tho .tho__inr {
    gap: 40px;
  }
  #tho .tho__right .sec-ttl {
    font-size: 80px;
  }
  #tho .tho__right p {
    font-size: var(--fs-18);
  }
  #tho .tho__left p {
    font-size: var(--fs-40);
  }
  #tho .tho__left p:first-child::after {
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  #tho .tho__inr {
    gap: 32px;
  }
  #tho .tho__right .sec-ttl {
    font-size: 64px;
  }
  #tho .tho__left p {
    font-size: var(--fs-32);
  }
  #tho .tho__left p:first-child::after {
    height: 80px;
  }
}
@media screen and (max-width: 600px) {
  #tho .tho__inr {
    gap: 0;
    flex-direction: column;
    position: relative;
  }

  #tho .tho__left {
    position: absolute;
    top: 1em;
    left: 30%;
    transform: translateX(-50%);
    padding-top: 0;
  }
  #tho .tho__left p {
    font-size: var(--fs-22);
  }
  #tho .tho__left p:first-child::after {
    height: 32px;
  }
  #tho .tho__right .sec-ttl {
    font-size: 48px;
    padding-bottom: 140px;
  }
}


/*--------------------------------
 key
--------------------------------*/
#tho-key .cards {
  gap: 64px 16px;
}
#tho-key .card {
  width: calc(50% - 8px);
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}
#tho-key .card h3 {
  font-size: var(--fs-36);
  font-family: var(--font-shippori);
  text-align: center;
  color: var(--color-black-02);
  line-height: 1;
  padding-top: 40px;
  padding-bottom: 12px;
}
#tho-key .card p {
  font-size: var(--fs-17);
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  #tho-key .card h3 {
    font-size: var(--fs-24);
  }
  #tho-key .card p {
    font-size: var(--fs-15);
  }
}
@media screen and (max-width: 600px) {
  #tho-key .cards {
    gap: 24px 8px;
  }
  #tho-key .card {
    width: calc(50% - 4px);
  }
  #tho-key .card h3 {
    padding-top: 16px;
  }
}
