.entry-header {
    display: none;
}

@media screen and (min-width: 763px) {
    .br-pc {
        display: block;
    }

    .br-sp {
        display: none;
    }
}

@media screen and (max-width: 763px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
}

/*---- background-----*/
#cover {
    background-image: url(https://teamorder.jp/wp-content/themes/wp-dcafe/campaign/202603bordered_marking/img/diagonal-stripes.svg);
}
#contents {
    background-color: #E9F6FE;
}
.container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 20px 70px;
}
/*---- background end-----*/

/*---- title ----*/
h1 {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    color: #111419;
    line-height: 1.4em;
}
h1 > span {
    font-size: 0.4em;
    font-weight: 500;
}

.intro p {
    font-size: 1.1em;
    font-weight: 700;
    color: #111419;
    text-align: center;
    line-height: 1.6em;
}

.intro {
    background-color: #F5C002;
}

h2 {
    display: block;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 16px;
    background: #019EFD;
    color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    margin-right: 0px;
    float: none;
    margin: 0px auto;
    width: 260px;
    border-left: none;
    margin-bottom: 40px;
  }
  
  h2:before,
  h2:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
  }
  
  h2:before {
    top: 0;
    left: 0;
    border-width: 20px 0px 20px 10px;
    border-color: transparent transparent transparent #ffffff;
    border-style: solid;
  }
  
  h2:after {
    top: 0;
    right: 0;
    border-width: 20px 10px 20px 0px;
    border-color: transparent #ffffff transparent transparent;
    border-style: solid;
  }

  h2 + p {
      text-align: center;
  }

/*---- title end ----*/
.period {
    text-align: center;
    font-weight: 700;
    font-size: 1.6em;
    color: #111419;
}

#contents p {
    text-align: center;
    font-weight: 700;
    color: #111419;
}
#contents p.notice {
   font-weight: 400;
   font-size: 0.9em;
}
#contents ul {
    display: inline-block;
    text-align: left;
    font-weight: 700;
    color: #111419;
}

#contents ol {
    display: inline-block;
    text-align: left;
    font-weight: 700;
    color: #111419;
    counter-reset:number;
    list-style-type: none!important;
    padding:0.5em;
}
#contents ol li {
    position: relative;
    padding-left: 30px;
    line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 32px;
}
#contents ol li:before{
    position: absolute;
    counter-increment: number;
    content: counter(number);
    display:inline-block;
    background: #019EFD;
    color: white;
    font-weight:700;
    font-size: 0.7em;
    border-radius: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
#notice ul {
    display: inline-block;
    text-align: left;
    font-weight: 400;
}
#notice ul li {
    font-size: 0.9em;
    line-height: 1.6em;
}



@media screen and (min-width: 736px) and (max-width: 1069px) {

}

@media screen and (max-width: 736px) {
    #main .row {
        max-width: 93%;
    }
    h1 {
        font-size: 1.6em;
        line-height: 1.4em;
    }
    .intro p {
        font-size: 1.1em;
    }
    h2 {        
        margin-bottom: 28px;
        font-size: 1em;
        width: 230px;
      }    
    .container {
        padding: 36px 16px 60px;
    }
    #notice ul li {
        font-size: 1em;
    }
}


/* ベースのラッパー設定（中央寄せ） */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* 上部のメッセージテキストと斜め線 */
.cta-message {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #111419;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* 左側の斜め線 ( \ ) */
.cta-message::before {
  content: "";
  display: block;
  width: 3px;
  height: 24px;
  background-color: #111419;
  border-radius: 2px;
  transform: rotate(-25deg);
}

/* 右側の斜め線 ( / ) */
.cta-message::after {
  content: "";
  display: block;
  width: 3px;
  height: 24px;
  background-color: #111419;
  border-radius: 2px;
  transform: rotate(25deg);
}

/* ボタン本体 */
.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #F05EA0;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 80px;
  border: 3px solid #111419;
  border-radius: 9999px; /* 完全な角丸（ピルシェイプ）にするため大きな値を指定 */
}

@media screen and (max-width: 736px) {
    .cta-message {
        font-size: 12px;
    }
    .cta-btn {
        padding: 14px 80px;
        font-size: 14px;
    }
}