/* This is the project stylesheet */

/* note記事一覧部分は /business を参考に実装しているため、以下の色を定義 */
:root {
  /* Colors */
  --dark-gray: rgba(146, 153, 158, 1);
  --dark-slate-gray: rgba(36, 38, 38, 1);
  --dark-slate-gray-3: rgba(81, 81, 81, 1);
  --ghost-white: rgba(249, 250, 251, 1);
  --steel-blue: rgba(43, 128, 189, 1);

  --cover-background: hsl(0, 0%, 100%);
  --cover-color: hsl(0, 0%, 8%);
}

.inline-block {
  display: inline-block;
}

sup.note-anchor {
  padding: 0 2px;
}

.conversion-section.lp-7 .link-button {
  max-width: 19.5em;
}

/* ----------------------------------------
Cover
---------------------------------------- */

.cover {
  padding: 40px 35px;
  background: var(--cover-background);
  color: var(--cover-color);
}
@media screen and (min-width: 520px) {
  .cover {
    padding: 60px 40px;
  }
}

.cover-grid {
  max-width: min(100%, 660px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media screen and (min-width: 960px) {
  .cover-grid {
    max-width: 980px;
    display: grid;
    grid-template-columns: 600px 327px;
    grid-template-rows: 1fr auto 48px auto 64px auto 1fr;
    justify-content: space-between;
    row-gap: unset;
  }
}

.cover h1.catchphrase {
  width: 100%;
  display: grid;
  row-gap: 0.15em;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0em;
  font-size: clamp(18px, 6.36vw, 60px);
}
@media screen and (min-width: 960px) {
  .cover h1.catchphrase {
    grid-row: 2;
    grid-column: 1;
    row-gap: 0.1em;
    text-align: left;
    font-size: clamp(45px, 5.8vw, 60px);
  }
}

.cover h1.catchphrase > span {
  display: block;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: clamp(14px, 4.58vw, 44px);
}
@media screen and (min-width: 960px) {
  .cover h1.catchphrase > span {
    font-size: clamp(20px, 4.25vw, 44px);
  }
}

.cover em.dot {
  padding-top: 0.25em;
  font-style: normal;
  text-decoration: none;
  background: top left / 1em 0.5em repeat-x radial-gradient(circle, var(--blue-2024) 0.15em, rgba(0, 0, 0, 0) 0.15em);
}

.cover p.description {
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (min-width: 520px) {
  .cover p.description {
    align-self: unset;
    font-size: clamp(15px, 3.8vw, 18px);
  }
}
@media screen and (min-width: 960px) {
  .cover p.description {
    grid-row: 4;
    grid-column: 1;
    text-align: left;
    font-size: 20px;
  }
}

@media screen and (min-width: 960px) {
  .cover .link-button {
    grid-row: 6;
    grid-column: 1;
  }
}

.cover .cover-image {
  max-width: 322px;
  width: 70%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .cover .cover-image {
    grid-column: 2;
    grid-row: 1 / -1;
    max-width: 327px;
    width: 100%;
    aspect-ratio: unset;
    overflow: unset;
  }
}

/* ----------------------------------------
lp-7向けのCover
---------------------------------------- */

@media screen and (min-width: 520px) {
  .cover.lp-7 {
    padding-block: 90px;
  }
}

.cover.lp-7 .cover-grid {
  row-gap: 35px;
}
@media screen and (min-width: 960px) {
  .cover.lp-7 .cover-grid {
    grid-template-columns: minmax(520px, auto) minmax(auto, 414px);
    grid-template-rows: 1fr auto 48px auto 64px auto 1fr;
    justify-content: space-between;
    column-gap: 4%;
    row-gap: unset;
  }
}

.cover.lp-7 h1.catchphrase {
  row-gap: 0.2em;
  font-size: clamp(18px, 6.36vw, 50px);
}
@media screen and (min-width: 960px) {
  .cover.lp-7 h1.catchphrase {
    row-gap: 0.5em;
    font-size: clamp(45px, 4.5vw, 52px);
  }
}

.cover.lp-7 h1.catchphrase .repackage-logotype {
  display: inline-block;
  margin-inline: 0.15em;
  translate: 0 0.05em;
  font-size: 1.3em;
  background-image: url("/assets/images/repackage_bond/logotype.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
}

.cover.lp-7 h1.catchphrase .dot {
  display: inline-block;
  margin-inline: 0.15em;
  background: top left / 1em 0.3em repeat-x radial-gradient(circle, var(--blue-2024) 0.09em, rgba(0, 0, 0, 0) 0.1em);
}

.cover.lp-7 h1.catchphrase .small {
  font-size: 0.7em;
}

.cover.lp-7 .features {
  display: flex;
  flex-direction: column;
  row-gap: 0.6em;
  color: hsl(0 0% 66%);
}
@media screen and (min-width: 960px) {
  .cover.lp-7 .features {
    grid-row: 4;
    grid-column: 1;
    flex-direction: row;
    column-gap: 1em;
  }
}

.cover.lp-7 .features > li {
  width: fit-content;
  display: flex;
  align-items: baseline;
  column-gap: 0.3em;
  font-weight: bold;
  border-bottom: dashed 2px;
}
.cover.lp-7 .features > li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
}

.cover.lp-7 .cover-image {
  aspect-ratio: unset;
}
@media screen and (min-width: 960px) {
  .cover.lp-7 .cover-image {
    max-width: 414px;
  }
}

/* ----------------------------------------
NEWS
---------------------------------------- */

.cover-news {
  display: none;
}
@media screen and (min-width: 960px) {
  .cover-news {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr auto max-content 1fr;
    align-items: start;
    column-gap: 1em;
    background: var(--cover-background);
    color: var(--cover-color);
    border-top: solid 1px #eee;
  }

  .cover-news-label {
    grid-column: 2;
  }
  ul.news-lines {
    grid-column: 3;
  }
}

.cover-news-label {
  display: flex;
  align-items: center;
  column-gap: 0.2em;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--blue-2024);
}
.cover-news-label::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("/assets/images/investor_lp/newsIcon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 520px) {
  .cover-news-label {
    font-size: 15px;
    line-height: 1.65;
  }
  .cover-news-label::before {
    height: 13px;
    width: 13px;
  }
}

ul.news-lines {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}

.news-lines > li:nth-child(n + 2) {
  display: none;
}
@media screen and (min-width: 960px) {
  .news-lines > li:nth-child(n + 2) {
    display: list-item;
  }
}

.news-lines > li a {
  /* ::after のchevronを想定したレイアウト指定をしているが、他のタグを含めたくなったときに干渉する可能性あり
     その場合は display: inline-block などを使った横並びに変更する
  */
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  font-size: 15px;
  color: var(--cover-color);
}
.news-lines > li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url("/assets/images/investor_lp/chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.news-lines > li a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------------
BANNER LINKS
----------------------------------------------------------------- */

.sp-banners {
  padding: 40px 20px;
  display: flex;
  column-gap: 20px;
  justify-content: center;
  border-top: solid 1px #eee;
}
@media screen and (min-width: 960px) {
  .sp-banners {
    display: none;
  }
}

.sp-banners > a {
  display: block;
  max-width: 120px;
  border: 1px solid #d5dbdb;
}

/* -----------------------------------------------------------------
取扱い社債実績
----------------------------------------------------------------- */

.achievements {
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  border-top: solid 1px #eee;
  overflow-x: hidden;
}
@media screen and (min-width: 960px) {
  .achievements {
    padding: 60px 40px;
    row-gap: 50px;
    background-color: hsl(240, 25%, 97%);
  }
}

.achievements-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5em;
}
@media screen and (min-width: 960px) {
  .achievements-inner {
    max-width: 820px;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 50px;
  }

  .achievements-inner > header {
    grid-column: 1;
  }

  .achievements-inner > .note {
    grid-row: 1;
    grid-column: 2;
  }

  .achievements-inner > .achievements-summary,
  .achievements-inner > .issuance {
    grid-column: 1 / -1;
  }
}

.achievements-inner > header {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 520px) {
  .achievements-inner > header {
    font-size: 26px;
  }
}
@media screen and (min-width: 960px) {
  .achievements-inner > header {
    text-align: left;
  }
}

.achievements-inner > .note {
  font-size: 12px;
  color: var(--dark-gray);
}
@media screen and (min-width: 520px) {
  .achievements-inner > .note {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .achievements-inner > .note {
    justify-content: right;
  }
}

.achievements-summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}

.achievements-summary .description {
  text-align: center;
  font-size: 14px;
  color: var(--dark-gray);
}

.achievements-summary > .three-columns {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  column-gap: 15px;
}
@media screen and (min-width: 520px) {
  .achievements-summary > .three-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 960px) {
  .achievements-summary > .three-columns {
    column-gap: 30px;
  }
}

.achievements-summary > .three-columns > .column {
  padding: 0.5em 0;
  display: grid;
  grid-template-rows: auto 1fr;
  place-items: center;
  row-gap: 0.2em;
  font-size: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 520px) {
  .achievements-summary > .three-columns > .column {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  .achievements-summary > .three-columns > .column {
    font-size: 36px;
  }
}

.achievements .cover-range-heading {
  font-size: 12px;
  font-weight: bold;
  color: var(--blue-2024);
}
@media screen and (min-width: 520px) {
  .achievements .cover-range-heading {
    font-size: 15px;
  }
}

.achievements .cover-range-body {
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--cover-color);
}

.achievements .cover-range-body > .unit {
  font-size: 0.75em;
}

.achievements .column .note {
  display: block;
  padding: 0 5px;
  font-size: 12px;
}

.achievements-inner > .issuance {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: start;
  row-gap: 25px;
}
@media screen and (min-width: 960px) {
  .achievements-inner > .issuance {
    padding: 40px 15px;
    align-items: center;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  }
}

.achievements .issuance .cover-range-heading {
  display: none;
}
@media screen and (min-width: 960px) {
  .achievements .issuance .cover-range-heading {
    display: block;
  }
}

.achievements .issuance-items {
  width: 4000px;
  display: flex;
  column-gap: 20px;
  animation: slide 45s linear infinite;
}
@media screen and (min-width: 960px) {
  .achievements .issuance-items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
    column-gap: 30px;
    animation: none;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.issuance-items > .issuance-item {
  display: block;
  flex-basis: fit-content;
}
@media screen and (min-width: 960px) {
  .issuance-items > .issuance-item.slider-only {
    display: none;
  }
}

.issuance-item > figure {
  margin: 0;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.issuance-item > figure > img {
  /*
  `object-fit: contain;`を使うと、`max-`の接頭辞なしに最大領域を記述することが可能
  TODO: CSSロード完了前にも画像のサイズを制限したいので、px単位での指定に変更する
  HTMLにインラインCSSで記述したいので、画面サイズによらず同じサイズにできると良い
  */
  width: 100%;
  max-width: 110px;
  height: 45px;
  object-fit: contain;
}

/* -----------------------------------------------------------------
小村さんバナー
----------------------------------------------------------------- */

.introduction-ceo {
  display: grid;
  place-items: center;
}
.introduction-ceo.lp-7 {
  padding: 20px;
}
@media screen and (min-width: 520px) {
  .introduction-ceo {
    padding-inline: 40px;
  }
  .introduction-ceo:not(.lp-7) {
    background-color: #1e8fda;
  }
  .introduction-ceo.lp-7 {
    padding-block: 100px;
  }
}

.introduction-ceo::before {
  content: "";
  display: block;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 519px) {
  .introduction-ceo::before {
    padding-top: 86.5%;
    background-image: url("/assets/images/investor_lp/kk_sp.webp");
  }
  .introduction-ceo.lp-7::before {
    background-image: url("/assets/images/investor_lp/kk_omatome_sp.webp");
  }
}
@media screen and (min-width: 520px) {
  .introduction-ceo::before {
    padding-top: 33.9%;
    background-image: url("/assets/images/investor_lp/kk_wide.webp");
  }
  .introduction-ceo.lp-7::before {
    background-image: url("/assets/images/investor_lp/kk_omatome_wide.webp");
  }
}
@media screen and (min-width: 960px) {
  .introduction-ceo::before {
    width: 880px;
    padding-top: 297px;
  }
}

/* -----------------------------------------------------------------
スタートアップ投資までの3ステップ
----------------------------------------------------------------- */

/* Wrapper */
.flow-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  background-color: var(--blue-2024);
}

/* Heading */
.flow-div-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 1);
}

.flow-div-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 25px;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .flow-div-3 {
    font-size: 22px;
  }
}

/* Contents */
.flow-div-5 {
  display: flex;
  flex-direction: column;
}

.flow-columns {
  display: flex;
}

/* Card */
.flow-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.flow-column-2 {
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.flow-div-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 1);
}

/* Icon and Heading */
.flow-div-7 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Heading */
.flow-div-8 {
  color: var(--blue-2024);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0%;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  margin-top: 10px;
}
@media screen and (min-width: 520px) {
  .flow-div-8 {
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .flow-div-8 {
    max-width: 209px;
  }
}

/* Icon */
.flow-div-9 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 30px;
  width: 100%;
  margin: 0 auto;
}

.flow-div-10 {
  display: flex;
  position: relative;
  min-width: 20px;
  min-height: 20px;
  width: 30px;
  height: 100%;
}
.flow-image {
  object-fit: contain;
  object-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.flow-image-sizer {
  width: 100%;
  padding-top: 100%;
  pointer-events: none;
  font-size: 0;
}

/* Description */
.flow-div-11 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 18px;
  font-size: 14px;
  gap: 18px 0px;
}
.flow-div-11 > a:not(.link-button) {
  color: var(--blue-2024);
  text-decoration: underline;
}

.flow-div-12 {
  color: rgba(30, 30, 30, 1);
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
}

/* Arrow */
.flow-div-14 {
  display: flex;
  max-width: 20px;
  height: 20px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}

@media screen and (max-width: 519px) {
  .flow-div-5 {
    padding: 60px 20px;
  }

  .flow-columns {
    flex-direction: column;
  }

  .flow-column {
    width: 100%;
  }

  .flow-column-2 {
    margin: 21.5px 0;
  }

  .flow-div-6 {
    padding-bottom: 20px;
  }

  .flow-div-7 {
    margin: 20px auto 0;
  }

  .flow-div-14 {
    background-image: url("/assets/images/investor_lp/arrow_down.png");
  }
}

@media screen and (min-width: 520px) {
  .flow-div-5 {
    padding: 60px 70px;
  }

  .flow-columns {
    flex-direction: column;
  }

  .flow-column-2 {
    margin: 21.5px 0;
  }

  .flow-div-6 {
    height: 249px;
  }

  .flow-div-7 {
    margin: 23px auto 0;
  }

  .flow-div-14 {
    background-image: url("/assets/images/investor_lp/arrow_down.png");
  }
}

@media screen and (min-width: 960px) {
  .flow-div-5 {
    width: fit-content;
    margin: 0 auto;
    padding: 69px 0 108px 0;
  }

  .flow-columns {
    flex-direction: row;
    width: fit-content;
    align-items: stretch;
  }

  .flow-column-2 {
    margin: 0 21.5px;
  }

  .flow-div-6 {
    width: 278px;
  }

  .flow-div-7 {
    width: 210px;
  }

  .flow-div-11 {
    max-width: 230px;
  }

  .flow-div-12 {
    max-width: 210px;
  }

  .flow-div-14 {
    background-image: url("/assets/images/investor_lp/arrow_right.png");
  }
}

/* -----------------------------------------------------------------
Features
----------------------------------------------------------------- */

.features {
  row-gap: 60px;
}

@media screen and (min-width: 520px) {
  .features {
    padding-inline: 60px;
  }
}

.features > * {
  max-width: 880px;
}

.features .row {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (min-width: 960px) {
  .features .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 20px;
  }
}

.features .box {
  row-gap: 1.5em;
}

.features .box .content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.75;
}

@media screen and (min-width: 960px) {
  .features .box {
    display: contents;
  }

  .features .box .content {
    grid-row: 1;
  }

  .features .box :where(img, svg) {
    grid-row: 2;
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .features .box.horizontal {
    display: grid;
    grid-template-columns: 1fr 405px;
    column-gap: 40px;
    row-gap: 20px;
  }

  .features .box.horizontal .content {
    grid-row: 1;
    grid-column: 1;
  }

  .features .box.horizontal :where(img, svg) {
    grid-row: 1;
    grid-column: 2;
  }
}

/* -----------------------------------------------------------------
Features lp-7用のカスタマイズ
----------------------------------------------------------------- */

.features.lp-7 .box.horizontal {
  flex-direction: column-reverse;
}
@media screen and (min-width: 960px) {
  .features.lp-7 .box.horizontal {
    grid-template-columns: 405px 1fr;
  }
}

@media screen and (min-width: 960px) {
  .features.lp-7 .box.horizontal .content {
    grid-column: 2;
  }

  .features.lp-7 .box.horizontal :where(img, svg) {
    grid-column: 1;
  }
}

@media screen and (min-width: 960px) {
  .features.lp-7 .box.horizontal .content h3 {
    line-height: 1.0;
  }
}

/* -----------------------------------------------------------------
投資家様の声 lp-7用に新設
----------------------------------------------------------------- */

.investor-voices {
  background-color: var(--ghost-white);
  padding: 45px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .investor-voices {
    padding: 86px 50px 101px;
  }
}

.investor-voices .title {
  color: var(--blue-2024);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}
@media screen and (min-width: 980px) {
  .investor-voices .title {
    font-size: 22px;
    line-height: 28px;
  }
}

.investor-voices > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  column-gap: 15px;
  row-gap: 20px;
}
@media screen and (min-width: 640px) {
  .investor-voices > ul {
    grid-template-columns: repeat(2, 300px);
  }
}
@media screen and (min-width: 980px) {
  .investor-voices ul {
    grid-template-columns: repeat(4, 225px);
  }
}

.investor-voices > ul > .item {
  display: grid;
  padding: 10px;
  grid-template-rows: 110px auto 1fr;
  row-gap: 5px;
  place-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
}

.investor-voices .item > h3 {
  font-size: 16px;
}
@media screen and (min-width: 520px) {
  .investor-voices .item > h3 {
    font-size: 18px;
  }
}

.investor-voices .item > ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.2em;
}

.investor-voices .item > ul > li {
  margin-left: 1.2em;
  list-style: disc;
  font-size: 12px;
}
@media screen and (min-width: 520px) {
  .investor-voices .item > ul > li {
    font-size: 14px;
  }
}

.investor-voices .item > img {
  width: auto;
  height: 75%;
}

/* -----------------------------------------------------------------
サービス利用の流れ
----------------------------------------------------------------- */

.procedure-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--blue-2024);
}

/* Heading */
.procedure-div-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #fff;
}

.procedure-div-3 {
  display: flex;
  flex-direction: row;
  max-width: 198px;
  justify-content: center;
  align-items: flex-start;
  padding-block: 25px;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 520px) {
  .procedure-div-3 {
    font-size: 22px;
  }
}

/* Contents */
.procedure-div-5 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.procedure-div-6 {
  display: flex;
  flex-direction: column;

  width: 100%;
}

.procedure-columns-1 {
  display: flex;
}

.procedure-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 22.7px;
  margin-left: 0px;
}

.procedure-div-7 {
  position: relative;
  display: flex;
  max-width: 22.7px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 22.7px;
}

/* Circle */
.procedure-div-8 {
  position: absolute;
  left: calc(50% - 5.5px);
  top: calc(50% - 5.5px);
  display: flex;
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
}

.procedure-div-9 {
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  height: 50%;
  border-right: 1px solid #fff;
}
.procedure-div-6:first-child .procedure-div-9 {
  display: none;
}

.procedure-div-10 {
  position: absolute;
  left: calc(50% - 1px);
  top: 50%;
  height: 50%;
  border-right: 1px solid #fff;
}
.procedure-div-6:last-child .procedure-div-10 {
  display: none;
}

/* Baloon */
.procedure-column-2 {
  display: flex;
  position: relative;
  flex-direction: column;
  line-height: normal;
  padding: 11px 0;

  width: 100%;
}

.procedure-square {
  position: absolute;
  width: 12px;
  height: 12px;
  top: calc(50% - 4.2px);
  left: -6px;
  background-color: #fff;
  transform: rotate(45deg);
}

.procedure-div-11 {
  display: flex;
  flex-direction: column;
  max-width: 843.6500244140625px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 1);
}

.procedure-columns-2 {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
@media screen and (min-width: 520px) {
  .procedure-columns-2 {
    column-gap: 15px;
  }
}

.procedure-columns-2 a {
  color: var(--blue-2024);
  text-decoration: underline;
}

/* Index */
.procedure-div-index {
  display: flex;
  position: relative;
}

.procedure-image {
  object-fit: cover;
  object-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.procedure-image-sizer {
  width: 30px;
  height: 30px;
  pointer-events: none;
  font-size: 0;
}

.procedure-div-14 {
  display: flex;
  max-width: 30px;
  height: 30px;
  width: 30px;
  background-color: var(--blue-2024);
}

.procedure-div-15 {
  max-width: 30px;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  font-family: Helvetica Neue, sans-serif;
}

.procedure-div-17 {
  max-width: 738.6500244140625px;
  color: rgba(30, 30, 30, 1);
  font-size: 18px;
  font-weight: bold;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .procedure-div-17 {
    font-size: 20px;
  }
}

.手数料無料。オンラインから最短-3-分で申込完了。スマホをお持ち {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .手数料無料。オンラインから最短-3-分で申込完了。スマホをお持ち {
    grid-column: 2;
  }
}

.siiibo上に口座開設者限定で-ir情報公開中の企業を閲覧。 {
  grid-column: 1 / -1;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .siiibo上に口座開設者限定で-ir情報公開中の企業を閲覧。 {
    grid-column: 2;
  }
}

.入力済みの希望条件や、口座開設時のプロフィール情報を元に、企 {
  grid-column: 1 / -1;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .入力済みの希望条件や、口座開設時のプロフィール情報を元に、企 {
    grid-column: 2;
  }
}

.企業から届いた社債要項や詳細なir情報を確認し、申込みの判断 {
  grid-column: 1 / -1;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .企業から届いた社債要項や詳細なir情報を確認し、申込みの判断 {
    grid-column: 2;
  }
}

.社債保有期間中は、-siiibo上に投資家限定で公開される企業 {
  grid-column: 1 / -1;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .社債保有期間中は、-siiibo上に投資家限定で公開される企業 {
    grid-column: 2;
  }
}

.社債保有期間中は購入時の条件にしたがって、利息を受け取ること {
  grid-column: 1 / -1;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .社債保有期間中は購入時の条件にしたがって、利息を受け取ること {
    grid-column: 2;
  }
}

@media screen and (max-width: 519px) {
  .procedure-div-5 {
    padding: 60px 20px 60px 5px;
  }

  .procedure-column-2 {
    width: 100%;
    margin-left: 10px;
  }

  .procedure-div-11 {
    padding: 20px;
  }
}

@media screen and (min-width: 520px) {
  .procedure-div-5 {
    padding: 60px 40px 60px 20px;
  }

  .procedure-column-2 {
    margin-left: 10px;
  }

  .procedure-div-11 {
    padding: 20px;
  }
}

@media screen and (min-width: 960px) {
  .procedure-div-5 {
    padding-top: 46px;
    padding-bottom: 118px;
  }

  .procedure-column-2 {
    width: 843.65px;
    margin-left: 20px;
  }

  .procedure-div-11 {
    padding: 23px 26px 33px;
  }
}

/* -----------------------------------------------------------------
投資家保護の取り組み
----------------------------------------------------------------- */

/* Wrapper */
.protection-div {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Heading */
.protection-div-2 {
  max-width: 880px;
  width: 100%;
  color: rgba(30, 30, 30, 1);
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0%;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .protection-div-2 {
    font-size: 28px;
  }
}

/* Items */
.protection-div-3 {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 61px;
}

/* Item */
.protection-div-4 {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin-top: 35px;
}
.protection-div-4:first-child {
  margin-top: 0;
}

.protection-columns {
  display: flex;
}

/* 左カラム（アイコン） */
.protection-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: fit-content;
  margin-left: 0px;
}

/* Icon */
.protection-div-5 {
  display: flex;
  flex-direction: row;
  max-width: 30px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 520px) {
  .protection-div-5 {
    max-width: 45.599998474121094px;
  }
}

.protection-div-6 {
  display: flex;
  position: relative;
  min-width: 20px;
  min-height: 20px;
  max-width: 30px;
  width: 30px;
}
@media screen and (min-width: 520px) {
  .protection-div-6 {
    max-width: 45.599998474121094px;
  }
}

.protection-image {
  object-fit: contain;
  object-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.protection-image-sizer {
  width: 100%;
  pointer-events: none;
  padding-top: 43.27px;
  font-size: 0;
}

/* 右カラム（コンテンツ） */
.protection-column-2 {
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.protection-div-7 {
  display: flex;
  flex-direction: column;
  max-width: 812.4000244140625px;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Heading */
.protection-div-8 {
  max-width: 812.4000244140625px;
  color: rgba(30, 30, 30, 1);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0%;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .protection-div-8 {
    font-size: 18px;
  }
}

.当社は、証券会社（第一種金融商品取引業者）登録の上、社債の私 {
  max-width: 812.4000244140625px;
  margin-top: 13px;
  color: rgba(30, 30, 30, 1);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .当社は、証券会社（第一種金融商品取引業者）登録の上、社債の私 {
    font-size: 16px;
  }
}

.当社のような証券会社では、投資家様の全資産は当社資産と明確に {
  max-width: 812.4000244140625px;
  margin-top: 13px;
  color: rgba(30, 30, 30, 1);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .当社のような証券会社では、投資家様の全資産は当社資産と明確に {
    font-size: 16px;
  }
}

.当社では、情報・通信の暗号化等セキュリティ技術の導入に加え、 {
  max-width: 812.4000244140625px;
  margin-top: 13px;
  color: rgba(30, 30, 30, 1);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (min-width: 520px) {
  .当社では、情報・通信の暗号化等セキュリティ技術の導入に加え、 {
    font-size: 16px;
  }
}

@media screen and (max-width: 519px) {
  .protection-div {
    padding: 60px 20px;
  }

  .protection-columns {
    flex-direction: column;
  }

  .protection-column-2 {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (min-width: 520px) {
  .protection-div {
    padding: 60px 40px;
  }

  .protection-columns {
    flex-direction: row;
  }

  .protection-column-2 {
    width: calc(97.06% - 10px);
    margin-left: 22px;
  }
}

@media screen and (min-width: 960px) {
  .protection-div {
    margin: 0 auto;
    padding: 110px 0;
  }
}

/* -----------------------------------------------------------------
よくある質問
----------------------------------------------------------------- */

section.faq {
  border-top: solid 1px #c4c4c4;
}

section.faq p {
  font-size: 15px;
}
@media screen and (min-width: 520px) {
  section.faq p {
    font-size: 16px;
  }
}

.faqBlock {
  width: 100%;
  max-width: 880px;
}
.linkToFaq a {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.38;
  /* identical to box height, or 21px */

  text-decoration-line: underline;

  color: var(--blue-2024);

  /* Inside Auto Layout */

  flex: none;
  order: 4;
  align-self: stretch;
  flex-grow: 0;
}
