/* ----------------------------------------------
共通
----------------------------------------------- */

:root {
  --bgColor: #effaff;
  --primaryColor: #001351;
  --textColor: #333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--textColor);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;

  background-color: var(--bgColor);
}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */

@media screen and (min-width: 768px) {
  .-pc {
    display: block;
  }

  .-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

/* ----------------------------------------------
共通
----------------------------------------------- */

/* レイアウト
----------------------------------------------- */

.l-container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* コンポーネント
----------------------------------------------- */

/* リンク
----------------------------------------------- */

.c-link {
  color: var(--primaryColor);
  text-decoration: underline;
  transition: 0.4s ease;
}

@media screen and (min-width: 768px) {
  .c-link:hover {
    opacity: 0.6;
  }
}

/* --------------------------------
  箇条書きリスト
 -------------------------------- */

.c-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

ul.c-list{
  padding-left: 1.5em;
  text-indent: -1.5em; 
}

ul.c-list {
  list-style: none; 
}

/* 通常 リスト */
ul.c-list li::before {
  content: "・";
  margin: 0 0.25em;
}

/* ※ リスト */
ul.c-list.-kome li::before {
  content: "※";
  margin: 0 0.25em;
}

/* ※（赤） リスト */
ul.c-list.-kome.-red li {
  color: red;
}

/* 数字 リスト */
ol.c-list {
  list-style: decimal;
  padding-left: 1.5em;
}

/* 表
----------------------------------------------- */
.c-dlListWrap {
  max-width: 800px;
  margin: 0 auto;
}

.c-dlItem {
  display: flex;
  gap: 20px;
  padding: 20px 12px;
  border-bottom: 1px dotted var(--primaryColor);
  line-height: 1.4;
}

.c-dlItem:first-child {
  border-top: 1px dotted var(--primaryColor);
}

.c-dlItem dt {
  min-width: 10rem;

  color: var(--primaryColor);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-dlItem {
    flex-direction: column;
    gap: 8px;
  }
}


/* ----------------------------------------------
公開予告ページ
----------------------------------------------- */

.p-teaser {
  position: relative;

  width: 100%;
  background-color: #fff;
  border-radius: 40px;
  padding: 80px 20px;
  margin: 200px 0;
}

.p-teaser__logo {
  position: absolute;
  bottom: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);

  max-width: 440px;
  width: 80%;
  padding-inline: 20px;
}

.p-teaser__logo img {
  width: 100%;
}

.p-teaser__textBox {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px;

  text-align: center;
}

.p-teaser__heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primaryColor);
  line-height: 1;

  margin-bottom: 1em;
}

.p-teaser__heading small {
  font-size: 0.6em;
}

.p-teaser__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primaryColor);

  margin-bottom: 1em;
}

.p-teaser__text {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-teaser {
    margin: 100px 0;
    padding: 80px 20px 40px 20px;
  }

  .p-teaser__textBox {
    margin-bottom: 40px;
  }

  .p-teaser__heading {
    font-size: 1.25rem;
  }

  .p-teaser__title {
    font-size: 1rem;
  }

  .p-teaser__text {
    text-align: justify;
  }

  .c-dlItem {
    flex-direction: column;
    gap: 8px;
  }
}
