/* CSS Document */
/*--- ページ全体・各セクション共通部分 ---*/
body {
  background: #ffffff;
}

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

.pc-only-display {
  display: none;
}

.container-1 .right img {
  max-height: 300px;
  object-fit: contain;
}

.reverse-container {
  flex-direction: row-reverse;
}

.section-bg-white {
  background: #fff;
}

@media (min-width: 1025px) {
  .pcLayout__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .container-1 {
    display: flex;
    justify-content: space-between;
  }

  .container-1 .left {
    width: 60%;
  }

  .container-1 .right {
    width: 35%;
  }

  .container-1 .right img {
    max-height: 500px;
    object-fit: contain;
  }

  .video-container .right {
    width: 50%;
  }

  .video-container .left {
    width: 45%;
  }
}

.contest__section-title {
  display: flex;
  align-items: flex-end;
  color: #333333;
  /* 文字の色 */
  font-size: 16pt;
  /* 文字のサイズ */
  line-height: 130%;
  margin-bottom: 15px;
}

/* 左のオレンジ角丸アイコン */
.title__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #f2693a;
  /* オレンジ */
  color: #fff;
  /* 文字は白 */
  font-weight: 900;
  font-size: 28px;
  /* 「キ」の大きさ */
  border-radius: 6px;
  /* 角丸 */
  letter-spacing: -0.03em;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.1);
  /* ほんのり影 */
  margin-right: 5px;
}

.bg_red {
  background: #ff0000;
}

.bg_green {
  background: #2ba464;
}

.bg_rose {
  background: #e7427a;
}

.bg_sky {
  background: #4aa1ea;
}

.bg_blue {
  background: #0068b7;
}

.bg_orange {
  background: #ff8400;
}

.bg_violet {
  background: #9d569e;
}

.bg_white {
  background: #ffffff !important;
}


.section--softDots{
  position: relative;
  background-color: #fff;
}

/* ドット（あなたの「見えた」方をそのまま） */
.section--softDots::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  background-image: radial-gradient(circle, var(--dot, rgba(255,120,160,.12)) 2px, transparent 2px);
  background-size: 28px 28px;
  background-position: 0 0;
}

/* フェード膜（上は透明、下ほど白で隠す） */
.section--softDots::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,1) 100%
  );
}

/* 中身を一番前へ */
.section--softDots > *{
  position: relative;
  z-index:2;
}

.section--softDots.is-blue{
  --dot: rgba(80,160,255,.06);
}


.introduction-text {
  text-align: left;
}

.container-1 p {
  text-align: left;
}

.section-introduction .left p {
  line-height: 170%;
}

.section-introduction .right {
  text-align: center;
}

.img-dance-hachi {
  margin-top: 20px;
  width: 70%;
  height: auto;
}

.card-container {
  margin-top: 30px;
}

.card {
  width: 301px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin: 1rem auto;
  margin-bottom: 30px;
}

/* 上部のグラデーション帯 */
.card-header {
  height: 30px;
  background: linear-gradient(to bottom, #f8a5ff, #ffdede);
}

.card-blue .card-header {
  background: linear-gradient(to bottom, #b9e6ff, #86b7ff);
}

.card-yellow .card-header {
  background: linear-gradient(to bottom, #f69a73, #f6d365);
}

/* 本文部分 */
.card-body {
  padding: 1.5rem 1rem;
  height: 275px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0.5rem;
  position: relative;
  display: inline-block;
}

/* 下線（赤いライン） */
.card-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #f08080;
  margin-top: 6px;
}

.card-blue .card-title::after {
  background: #b9e6ff;
}

.card-yellow .card-title::after {
  background: #f69a73;
}

.card-text {
  font-size: 14px;
  color: #444;
  margin: 0.5rem 0 1rem;
}

.card-blue .card-icon a {
  background: #29a9e0;
}

/* アイコン */
.card-icon {
  margin-top: auto;
  position: relative;
}

.card-icon img {
  width: 80%;
  height: auto;
}

.card-icon a {
  position: absolute;
  right: 20px;
  bottom: 30px;
  z-index: 10;
  background: #f97f9f;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 14px;
  width: 40%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 1025px) {
  .card-body {
    height: 320px;
  }

  .title__icon {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    font-size: 44px;
  }

  .card-icon img {
    width: 90%;
  }

  .contest__section-title {
    margin-top: 10px;
    font-size: 36px;
  }

  .introduction-text {
    font-size: 24px;
    line-height: 170%;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
  }

  .mobile-only-display {
    display: none;
  }

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

/*--------- トップ絵 ---------*/
.section-top {
  background-image: url("/assets/images/point/bg_mobile.png");
  background-size: cover; /* 要素を覆う → 中央がトリミングされる */
  background-position: center; /* 必ず中央部分を表示 */
  background-repeat: no-repeat;
  width: 100%;
  height: 600px; /* ← 固定したい高さを指定 */
}

.ribbon-mobile {
  width: 100%;
  max-width: 400px;
}

.main-visual-text {
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.7;
  background-color: rgb(255 255 255 / 0.9);
  padding: 5px;
  width: 345px;
  margin: 0 auto;
}

.section-top-jumpbuttons {
  margin: 15px auto 0;
  display: flex;
  flex-direction: column;
}

.section-top-jumpbuttons img {
  width: 200px;
}

@media (min-width: 1025px) {
  .section-top {
    background-image: url("/assets/images/point/bg_pc.png");
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 796;
    background-size: cover; /* 横いっぱいに広げて、はみ出た分はトリミング */
    background-position: center top; /* 上寄せ＋中央 */
    background-repeat: no-repeat;
    position: relative;
  }
  .section-top-textbox {
    position: relative;
    top: 28%;
  }

  .main-visual-text {
    background-color: transparent;
    padding: 0px;
    width: 100%;
  }

  .section-top-jumpbuttons {
    margin: 45px auto 0;
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .section-top-jumpbuttons img {
    width: clamp(150px, 15vw, 350px);
  }
}

/*--------- カード欄 ---------*/
.section-introduction {
  padding: 30px 20px 30px 20px;
  margin-bottom: 30px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffe1e1 10%,
    /* 中間 */ #ffd6d6 50%,
    /* 上の濃いめピンク */ #ffe1e1 90%,
    /* 中間 */ #ffffff 100% /* 下の薄いピンク */
  );
}

.secbg-tsukau {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #b9e6ff 10%,
    /* 中間 */ #86b7ff 50%,
    /* 上の濃いめピンク */ #b9e6ff 90%,
    /* 中間 */ #ffffff 100% /* 下の薄いピンク */
  );
}

.title-icon {
  display: block;
  margin: 20px auto 0px;
  padding: 19px 0;
  width: 350px;
  height: 60px;
  background-color: #f97f9f;
  border-radius: 45px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

@media (min-width: 1025px) {
  .title-icon {
    padding: 33px 0;
    width: 450px;
    height: 90px;
    font-size: 35px;
  }
}

.section-introduction h3 {
  margin-top: 10px;
  word-break: keep-all;
  overflow-wrap: break-word;
  font-weight: 500;
  line-height: 22px;
}

.section-introduction__apply-button {
  display: block;
  margin: 15px auto 0px;
  padding: 3px 0;
  width: 230px;
  background-color: #2ba464;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.section-introduction__character-talk {
  margin-top: 40px;
  display: inline-block;
}

.section-introduction__character-serif-set {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  max-width: 600px;
}

.section-introduction__character-serif-set-left {
  margin-right: 10px;
}

.section-introduction__character-image {
  width: 100px;
  height: 100px;
}

.section-introduction__character-serif {
  width: 100%;
  text-align: left;
  font-size: 14px;
  border: 2px solid #ff7e00;
  border-radius: 10px;
  padding: 10px;
  background-color: white;
}

@media (min-width: 550px) {
  .section-introduction__character-serif {
    width: 450px;
  }
}

@media (min-width: 1025px) {
  .section-introduction h3 {
    margin-top: 17px;
    font-size: 24px;
  }

  .section-introduction__apply-button {
    margin-top: 30px;
    width: 400px;
    height: 80px;
    border-radius: 15px;
    font-size: 30px;
    padding: 27.5px 0;
  }

  .section-introduction__apply-button br {
    display: none;
  }

  .section-introduction__character-talk {
    margin-top: 50px;
  }

  .section-introduction__character-serif-set {
    margin-bottom: 30px;
    max-width: 1024px;
  }

  .section-introduction__character-serif-set-left {
    margin-right: 40px;
  }

  .section-introduction__character-image {
    width: 150px;
    height: 150px;
  }

  .section-introduction__character-serif {
    display: flex;
    align-items: center;
    width: 600px;
    height: 140px;
    font-size: 20px;
    line-height: 140%;
    border: 2px solid #e7427a;
    border-radius: 20px;
    padding: 0px 30px;
  }
}

/*--------- カード詳細（スマホ基準） ---------*/
/* カード本体：スマホ */
.point-card {
  width: 100%;
  max-width: 375px;
  margin: 0 auto 50px;
  padding: 20px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 120, 150, 0.15);
}

.longcard-blue {
  box-shadow: 0 8px 20px rgba(120, 224, 255, 0.15);
}

/* 内側レイアウト：スマホは縦並び */
.point-card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* テキスト部分：スマホでは幅指定なし（全幅） */
.point-card__text {
  width: 100%;
}

/* タイトル */
.point-card__title {
  font-size: 22px; /* スマホは小さめ */
  font-weight: 700;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
}

/* タイトル下のピンク線 */
.point-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 220px; /* 好きな長さに調整 */
  height: 3px;
  background: #ff6fa3;
}

.longcard-blue .card-title::after {
  background: #29a9e0;
}

/* 説明文 */
.point-card__desc {
  margin: 24px auto;
  line-height: 1.8;
  font-size: 14px;
  color: #555;
}

/* 緑のタグ（20P / 1日1回） */
.point-card__tags {
  margin: 0 auto;
}

.point-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #1bb86a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
}

/* アイコン・イラスト：スマホでは全幅で中央寄せ */
.point-card__icon,
.point-card__illust {
  width: 100%;
}

.point-card__icon {
  margin: 0 auto;
}

.point-card__illust {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 中のイラスト画像 */
.point-card__illust img {
  position: relative;
  z-index: 1;
  max-width: 200px;
  height: auto;
}



/* ---- PCレイアウト（1025px以上） ---- */
@media (min-width: 1025px) {
  .point-card {
    max-width: 800px;
    padding: 24px 32px;
    margin-bottom: 70px;
  }

  .point-card__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .point-card__text {
    flex: 0 0 60%;
    text-align: left;
  }
  .point-card__desc {
    font-size: 16px;
  }

  .point-card__tags {
    display: flex;
    gap: 20px;
  }
  .point-card__illust {
    flex: 0 0 30%;
    justify-content: center;
  }

  .point-card__title {
    font-size: 26px;
  }
}

.bg-tsukau {
  background: #29a9e0;
}

/*--- eitoとは 17項目とは ---*/
.section-whats-eito {
  padding: 30px 20px 60px 20px;
}

.section-whats-eito h3 {
  display: block;
  margin: 15px auto 0px;
  padding: 3px 0;
  width: 230px;
  background-color: #2ba464;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.section-whats-eito p {
  margin-top: 10px;
  font-size: 16px;
  text-align: left;
  line-height: 200%;
}

.section-whats-eito__item2 {
  margin-top: 20px;
}

.section-whats-eito__sdgs_poster {
  margin-top: 20px;
  width: 90%;
}

.section-whats-eito__minifont {
  font-size: 12px;
  margin-top: 20px;
  line-height: 18px;
}

.section-whats-eito__link-button {
  display: block;
  margin: 5px auto 0px;
  padding: 13px 0;
  width: 300px;
  height: 50px;
  background-color: #2ba464;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

@media (min-width: 1025px) {
  .section-whats-eito {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .section-whats-eito h3 {
    margin-top: 30px;
    padding-top: 5px;
    width: 330px;
    height: 35px;
    background-color: #2ba464;
    border-radius: 22.5px;
    font-size: 20px;
    font-weight: bold;
  }

  .section-whats-eito p {
    margin-top: 15px;
    font-size: 24px;
    line-height: 170%;
  }

  .section-whats-eito__item2 {
    margin-top: 40px;
  }

  .section-whats-eito__sdgs_poster {
    width: 100%;
    margin-top: 0;
  }

  .section-whats-eito__minifont {
    font-size: 16px;
    line-height: 180%;
  }

  .section-whats-eito__link-button {
    width: 320px;
    height: 60px;
    border-radius: 15px;
    font-size: 24px;
    padding: 18px 0;
  }
}

/*--- 応募要項 ---*/
.section-requirements {
  padding: 30px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.section-requirements__content-wrapper {
  max-width: 450px;
}

.section-requirements__element {
  margin-top: 20px;
}

.section-requirements h3 {
  display: block;
  margin-right: auto;
  padding: 3px 0;
  width: 100px;
  background-color: #2ba464;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.section-requirements p {
  margin-top: 5px;
  text-align: left;
  font-size: 14px;
}

.reward-attention p {
  font-weight: bold;
  font-size: 10px;
  line-height: 150%;
  text-align: left;
}

.reward-attention span {
  color: red;
}

@media (min-width: 1025px) {
  .section-requirements {
    padding-bottom: 120px;
  }

  .section-requirements__content-wrapper {
    display: inline-block;
    max-width: 1200px;
    margin-bottom: 40px;
  }

  .section-requirements__element {
    margin-top: 40px;
    padding-bottom: 40px;
    min-height: 100px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    /* 下線 */
  }

  .section-requirements h3 {
    padding-top: 6px;
    width: 170px;
    height: 35px;
    background-color: #2ba464;
    border-radius: 22.5px;
    font-size: 20px;
    font-weight: bold;
    flex: 0 0 200px;
    margin-right: 100px;
  }

  .section-requirements p {
    margin: 0;
    font-size: 20px;
    line-height: 180%;
    flex: 1;
  }

  .reward-attention p {
    font-size: 14px;
  }
}

/*--- 昨年の受賞作 ---*/
.section-previous-award {
  padding: 30px;
  margin-bottom: 40px;
}

.section-previous-award p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 170%;
  text-align: left;
  word-break: auto-phrase;
}

.section-previous-award__characters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 15px;
}

.section-previous-award__characters-icon {
  width: 40%;
  max-width: 200px;
}

.section-previous-award__characters-icon img {
  width: 100%;
}

/*--- モーダルここから ---*/
/*原画エリアをはじめは非表示*/
.section-previous-award__characters section {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  background-color: transparent;
}

.section-previous-award__modal img {
  max-width: 100%;
}

/*--- モーダルここまで ---*/
.section-previous-award__video-area {
  margin-top: 40px;
}

.section-previous-award h3 {
  display: block;
  margin: 15px auto 0px;
  padding: 3px 0;
  width: 280px;
  background-color: #2ba464;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.section-previous-award__video {
  margin-top: 10px;
  width: 100%;
}

@media (min-width: 1025px) {
  .section-previous-award {
    margin-bottom: 120px;
  }

  .section-previous-award p {
    margin-top: 15px;
    font-size: 24px;
    line-height: 180%;
  }

  .section-previous-award__characters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 30px;
    width: 100%;
  }

  .section-previous-award__characters-icon {
    width: 22%;
    max-width: none;
  }

  .section-previous-award__video-area {
    margin-top: 60px;
    margin-bottom: 10px;
  }

  .section-previous-award h3 {
    font-size: 20px;
    width: 400px;
    height: 35px;
    padding-top: 5px;
  }

  .section-previous-award__video {
    width: 100%;
  }
}

/*--- キャラクター作成のコツ ---*/
.design-advice-image {
  margin-top: 50px;
  max-width: 100%;
  border: #ff8400 10px solid;
  border-radius: 12px;
  /* 角丸もOK */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.design-advice-button {
  margin-top: 20px;
}

@media (min-width: 1025px) {
  .design-advice-image {
    width: 100%;
  }
}

.section-character-hint {
  padding: 30px 20px 30px 20px;
}

/*--- 応募方法 ---*/
.section-method .card {
  height: 400px;
}
.section-method .card-body {
  text-align: center;
}
.method-link-button {
  margin: 0 auto;
  padding: 10px;
  background: #4aa1ea;
  color: white;
  border-radius: 10px;
  width: 70%;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .section-method .card {
    width: 400px;
    height: 450px;
  }

  .section-method .card-header {
    height: 40px;
  }

  .section-method .card-title {
    font-size: 30px;
  }

  .section-method .card-title::after {
    margin-top: 12px;
  }

  .section-method .card-body {
    padding: 25px;
    height: 500px;
  }

  .section-method .card-text {
    font-size: 18px;
    line-height: 1.5em;
  }
  .section-method .card-icon {
    margin-top: 0;
  }
}

.section-application-method {
  padding: 30px 20px 30px 20px;
}

.section-application-method p {
  margin-top: 10px;
}

.section-application-method__web-button-link {
  text-decoration: none;
}

.section-application-method__web {
  background-color: #f77567;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}

.section-application-method__button-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0.5px 0.5px 1px #333333;
}

.section-application-method__button-description {
  color: white;
  font-size: 14px;
  margin-top: 15px;
  word-break: auto-phrase;
}

.section-application-method__post {
  background-color: #6da1ff;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}

.section-application-method__post-button-link {
  text-decoration: none;
}

/* モーダル関連 */
/*infoエリアをはじめは非表示*/
#post-info {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 800px;
  background-color: #fff;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.section-application-method__post-modal h2 {
  display: inline-block;
  color: #ffffff;
  /* 文字の色 */
  font-size: 18pt;
  /* 文字のサイズ */
  text-shadow: 1px 1px 1px #ff7e00, -1px 1px 1px #ff7e00, 1px -1px 1px #ff7e00,
    -1px -1px 1px #ff7e00, 1px 0px 1px #ff7e00, 0px 1px 1px #ff7e00,
    -1px 0px 1px #ff7e00, 0px -1px 1px #ff7e00;
  /* 文字の影 */
}

.section-application-method__post-modal p {
  margin-top: 10px;
  word-break: auto-phrase;
}

.post-modal__address {
  margin-top: 30px;
}

@media (min-width: 1025px) {
  .section-application-method {
    padding-bottom: 50px;
  }

  .pcLayout__content-wrapper-application-method {
    display: inline-block;
    width: 1024px;
  }

  .section-application-method p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 180%;
  }

  .section-application-method__web,
  .section-application-method__post {
    width: 350px;
    height: 230px;
    border-radius: 50px;
    padding-top: 40px;
  }

  .section-application-method__button-title {
    font-size: 30px;
  }

  .section-application-method__button-description {
    margin-top: 25px;
    font-size: 20px;
    line-height: 180%;
  }

  .pcLayout__section-application-method__buttons {
    display: flex;
    justify-content: space-around;
  }

  .section-application-method__post-modal h2 {
    margin-top: 20px;
    font-size: 38px;
    text-shadow: 2px 2px 2px #ff7e00, -2px 2px 2px #ff7e00, 2px -2px 2px #ff7e00,
      -2px -2px 2px #ff7e00, 2px 0px 2px #ff7e00, 0px 2px 2px #ff7e00,
      -2px 0px 2px #ff7e00, 0px -2px 2px #ff7e00;
    /* 文字の影 */
  }

  .section-application-method__post-modal p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 30px;
  }

  .post-modal__address {
    margin-top: 30px;
  }
}

/*--- お問い合わせ先 ---*/
.section-contact-information {
  padding: 30px;
}

.section-contact-information p {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 1025px) {
  .section-contact-information p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 180%;
  }
}

.footer__content-wrapper {
  margin-top: 0px;
}

/*--- 応募締切表示・非表示部分 ---*/
.duedate-off {
  display: block;
}

.duedate-on {
  display: none;
}

/* 締切時は <body class="is-closed"> にする */
.is-closed .duedate-on {
  display: block;
}

.is-closed .duedate-off {
  display: none;
}

.duedate-message {
  border: 3px solid #ee7800;
  background-color: white;
  margin-bottom: 20px;
  padding: 10px;
}

.duedate-message h2 {
  color: red;
}

.duedate-message2 {
  color: red;
}

.duedate-message p {
  margin-top: 10px;
  font-size: 14px;
}

@media (min-width: 1025px) {
  .duedate-message {
    padding: 20px;
  }

  .duedate-message h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .duedate-message p {
    font-size: 20px;
  }

  .duedate-message2 {
    font-size: 18px;
  }
}

.section-initial-screening__hachibo-serif_2 {
  height: 200px;
  padding: 20px 20px;
  border-radius: 10px;
  border: solid 3px #fff600;
  background-color: #feffe2;
  width: 330px;
  margin: 0 auto;
  line-height: 200%;
  font-weight: 600;
  position: relative;
  margin-bottom: 120px;
}
.section-initial-screening__hachibo-serif_2 p {
  font-size: 20px;
  margin-bottom: 15px;
}
