#TOKUSHOUHOU {
  background-color: var(--bg-lightgray);
}

#TOKUSHOUHOU .container {
  background: #fff;
  border-radius: 8px;
  padding: 0 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

#TOKUSHOUHOU .container .content {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

#TOKUSHOUHOU .container .content:last-of-type {
  border-bottom: none;
}

#TOKUSHOUHOU .container .content .ttl {
  flex: 0 0 200px;
  font-weight: 700;
  color: var(--text-darkgray);
}

#TOKUSHOUHOU .container .content .text {
  color: var(--text-darkgray);
}

@media (max-width: 768px) {
  #TOKUSHOUHOU .container {
    padding: 0 16px;
  }

  #TOKUSHOUHOU .container .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  #TOKUSHOUHOU .container .content .ttl {
    flex: none;
  }

  #TOKUSHOUHOU .container .content .text {
    margin-left: 40px;
  }
}