@charset "utf-8";

/* The new CSS reset - version 1.11.3 */
*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-padding-top: 80px;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

::placeholder {
  color: unset;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html { 
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --bg_blue: #003366;
  --bg_red: #FF1E09;
  --bg_perlred: #fcebeb;
  --bg_orange: #ff9900;
  --bg_gray: #f9f9f9;
  --bg_bgray: #e8edf2;
  --color_base:#333;
  --color_txtorange: #ff6600;
  --font_rgl: min(1.6vw,16px);
}

@media screen and (max-width: 767px) {

  html {
    scroll-padding-top: inherit;
  }

  :root {
  --font_rgl: 3.76vw;
}

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

img {
  vertical-align: middle;
  /*max-width: 100%;*/
}

a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  transition: 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
  filter: brightness(110%) contrast(90%);
}

.dp_pc{
  display: block;
}
.dp_sp{
  display: none;
}

@media screen and (max-width: 767px) {
   body {
    font-size: 1.4rem;
  } 
  .dp_pc{
    display: none;
  }
  .dp_sp{
    display: block;
  }
}


/*****************
vpointgame
*****************/
.vpointgame {
  display: block;
  width: 100vw;
  color: var(--color_base);
  font-size: var(--font_rgl);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo",  sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

main{
  padding: 40px 0 0;
}
.l_contents{
  display: block;
  width: min(98vw,950px);
  margin: 0 auto;
}
.bg_gray{
  background: var(--bg_gray);
}
.bg_bgray{
  background: var(--bg_bgray);
}
.l_ttlh2{
  position: relative;
  font-size: min(2.6vw,26px);
  letter-spacing: .1em;
  text-align: center;
  &::before{
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 30px;
    background: var(--bg_orange);
    transform: translateY(-50%) translateX(-25px);
  }
}
.el_red{
  color: var(--bg_red);
}

@media screen and (max-width: 767px) {
  main{
    padding: 9.4vw 0 0;
  }
  .l_contents{
    width: 86.8vw;
  }
  .l_ttlh2{
    margin-left: 15px;
    font-size: 6.1vw;
    line-height: 1.5;
    
    &::before{
      top: 0;
      width: 6px;
      height: 28px;
      transform: translateY(10%) translateX(-15px);
    }
  }

}

/*****************
l_header
*****************/
.l_header{
  background: #000;
  padding-block: 8px 10px;

  h1{
    width: 266px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .l_header{
    padding-block: 0 1.3vw;

    h1{
      width: 45.4vw;
    }
  }
}

/*****************
l_hero
*****************/
.l_hero{
  margin-bottom: 20px;
}
.l_heroTtl{
  padding-block: 0 45px;
  font-size: min(3.5vw,34px);
  font-weight: 600;
  color: var(--bg_blue);
  text-align: center;
  line-height: 1.7;
  letter-spacing: .05em;

  p{
    margin-top: 15px;
    font-size: min(2.5vw,24px);
  }
}
.l_heroLead{
  font-size: min(1.8vw,18px);
  line-height: 1.87;
  letter-spacing: .03em;
  p:not(:first-child){
    margin-top: 10px;
  }
  sup{
    font-size: 11px;
    transform: translateY(-3px);
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .l_hero{
    margin-bottom: 3.4vw;
  }
  .l_heroTtl{
    padding-block: 0 10.2vw;
    font-size: 6.1vw;
    line-height: 1.38;;

    p{
      margin-top: 1.7vw;
      font-size: 4.1vw;
    }
  }
  .l_heroLead{
    font-size: 3.6vw;
    line-height: 1.45;
    letter-spacing: 0;
    p:not(:first-child){
      margin-top: 5.9vw;
    }
    sup{
      font-size: 2.3vw;
      transform: translateY(-3px);
    }
  }
}

/*****************
l_nav
*****************/
.l_navWrap{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  padding-block: 20px;

  ul{
    display: flex;
    gap: 13px;
  }

  li{
    position: relative;
    width: calc((100% - 13px * 3) / 4);
    list-style: none;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 1.37;
    font-weight: 600;
    color: #333366;
    transition: .3s;
    background: #fff;

    &::after{
      content: "";
      position: absolute;
      bottom: 7px;
      left: 50%;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 7px solid #ccc;
      transform: translateX(-50%);
    }

    &:hover{
      background: #e8edf2;
    }

    span{
      display: block;
      font-size: min(1.5vw,15px);
    }

    a{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding-block: 15px 30px;
      height: 84px;

    }
  }
}

@media screen and (max-width: 767px) {
  .l_navWrap{
    position: inherit;
    display: block;
    margin-bottom: 0;
    padding-block: 5.1vw;

    ul{
      flex-wrap: wrap;
      gap: 2.2vw 2.2vw;
    }

    li{
      width: calc((100% - 2.2vw) / 2);

      line-height: 1.2;
      font-size: 3.5vw;

      &::after{
        content: "";
        position: absolute;
        bottom: 7px;
        left: 50%;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 9px solid #ccc;
        transform: translateX(-50%);
      }

      span{
        font-size: 3.5vw;
      }

      a{
        padding-block: 1.3vw 5vw;
        height: 20.8vw;
        letter-spacing: .075em;
      }
    }
  }
}


/*****************
l_procedure
*****************/
.l_procedure{
  padding-block: 60px;
  
  .l_ttlh2{
    margin-bottom: 30px;
  }
  .el_status{
    width: 100%;
    margin-bottom: 40px;
    padding-block: 10px;
    border: 1px solid currentColor;
    font-size: min(2.6vw,26px);
    text-align: center;

    &.incomplete{
      background: var(--bg_perlred);
      color: var(--bg_red);
    }
    &.complete{
      background: #def7fc;
      color: var(--bg_blue);
    }

  }
  .l_txtArea{
    line-height: 1.87;
    p:not(:last-child){
      margin-bottom: 25px;
    }
    a{
      color: #003399;
      text-decoration: underline;
      &:hover{
        text-decoration: none;
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .l_procedure{
    padding-block: 9.4vw;
    
    .l_ttlh2{
      margin-bottom: 5.9vw;
    }
    .el_status{
      margin-bottom: 5.9vw;
      padding-block: 2vw;
      font-size: 5.4vw;
    }
    .l_txtArea{
      line-height: 1.45;
      p:not(:last-child){
        margin-bottom: 6.8vw;
      }
      .el_red{
        font-size: 3.4vw;
        letter-spacing: -.03em;
      }
    }
  }
}

/* l_checkBtn */
.l_checkBtn{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkBtn {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: min(1.8vw,18px);
}
.el_link a{
  color: var(--bg_blue);
  text-decoration: underline;
  &:hover{
    text-decoration: none;
  }
}
input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.btnArea {
  margin: 40px auto 0;
  position: relative;
}
.btnArea input[type="submit"] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  z-index: -1;
  transition-duration: 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.btnArea input[type="submit"] {
  cursor: default;
  z-index: +1;
  outline: none;
}
.btnArea._check input[type="submit"] {
  z-index: -1;
}
.btn_one {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  border-radius: 50px;
  width: 460px;
  height: 60px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
._check .btn_one {
  background: var(--bg_blue);
}
.btn_one._a:hover {
  filter: brightness(130%);
}

@media screen and (max-width: 767px) {
  .l_checkBtn{
    margin-top: 7vw;
  }
  .checkBtn {
    margin-bottom: .7vw;
    gap: 1.7vw;
    font-size: 4.1vw;
    align-items: flex-start;
  }
  .el_link a{
    font-size: 3vw;
  }
  input[type="checkbox"] {
    position: relative;
    top: 6px;
    width: 3.7vw;
    height: 3.7vw;
    vertical-align: -5px;
  }
  input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 5px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
  }
  .btnArea {
    margin: 6.8vw auto 0;
  }
  .btn_one {
    width: 80.3vw;
    height: 14.5vw;
    font-size: 5.4vw;
  }
}

/* modal */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 30px 15px;
  padding: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 50;
}
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
.modal.is-active{
  opacity: 1;
  visibility: visible;
}
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 90%;
}

.modal-content{
  background: #fff;
  padding: 30px 15px;
}
.l_modalContents{
  text-align: center;

  h2{
    font-size: min(2.6vw,26px);
  }
  p{
    line-height: 1.75;
    &:el_red{
      font-size: min(1.5vw,15px);
    }
  }
  .l_modal_listBtn{
    margin-block: 30px;
    ul{
      display: flex;
      gap: 10px;
      font-size: min(2.2vw,22px);

      li{
        width: calc((100% - 10px) / 2);
      }
    }
    a{
      display: block;
      padding-block: 15px;
      border-radius: 50px;
      background: var(--bg_blue);
      color: #fff;
    }
    .modal-close{
      display: block;
      padding-block: 15px;
      border-radius: 50px;
      border: 1px solid currentColor;
      color: var(--color_base);
      cursor: pointer;
    }
  }
}

@media screen and (max-width: 767px) {
  .modal{
    padding: 0;
  }
  .modal-content{
    padding: 5.1vw 1.7vw;
  }
  .l_modalContents{

    h2{
      font-size: 5.1vw;
    }
    p{
      line-height: 1.6;
      &:el_red{
        font-size: 3.4vw;
      }
    }
    .l_modal_listBtn{
      margin-block: 4.2vw;
      ul{
        flex-direction: column;
        align-items: center;
        gap: 3.4vw;
        font-size: 5.4vw;

        li{
          width: 64.2vw;
        }
      }
      a{
        padding-block: 2.1vw 2.7vw;
      }
      .modal-close{
        padding-block: 1.7vw;
        font-size: 5.1vw;
      }
    }
  }
}

/*****************
l_foruser
*****************/
.l_foruser{
  padding-block: 60px 70px;
  
  .l_ttlh2{
    margin-bottom: 60px;
  }
  .l_txtArea{
    line-height: 1.5;
    p:not(:last-child){
      margin-bottom: 30px;
    }
  }
}

@media screen and (max-width: 767px) {
  .l_foruser{
    padding-block: 8.4vw 10.2vw;
    
    .l_ttlh2{
      margin-bottom: 6.7vw;
      letter-spacing: 0;
    }
    .l_txtArea{
      line-height: 1.45;
      letter-spacing: -.05em;
      p:not(:last-child){
        margin-bottom: 5.9vw;
      }
    }
  }
}

/*****************
l_schedule
*****************/
.l_schedule{
  padding-block: 60px 70px;
  
  .l_ttlh2{
    margin-bottom: 60px;
  }
  .l_ttlh2:nth-of-type(2){
    margin-bottom: 45px;
  }
  .l_img{
    margin-inline: 25px;
    margin-bottom: 15px;
  }
  .l_txtArea{
    margin-inline: 25px;
    line-height: 1.6;
    .el_red{
      font-size: min(1.5vw,15px);
    }
  }
  .l_scheduleDetail{
    margin-inline: 25px;
    margin-bottom: 90px;

    .l_scheduleDetail_inner{
      li{
        display: flex;
        &.bg_yellow{
          &::before {
            content: "";
            background: var(--bg_orange);
            width: 50px;
          }
        }
        &.bg_red{
          &::before {
            content: "";
            background: var(--bg_red);
            width: 50px;
          }
        }
        &:last-of-type{
          .l_scheduleDetail_date{
            margin-bottom: 0;
            &::after{
              background: none;
            }
          }
          .l_scheduleDetail_txt{
            margin-bottom: 0;
          }
        }
        &:last-of-type{
          h3{
            margin: 30px 0;
          }
        }
      }
      .l_scheduleDetail_date{
        position: relative;
        width: 170px;
        margin-bottom: 35px;
        background: var(--bg_blue);
        color: #fff;
        font-size: min(1.7vw,17px);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: center;

        &::after{
          content: "";
          position: absolute;
          bottom: -33px;
          left: 50%;
          width: 107px;
          height: 33px;
          background: url(../images/icon_arrow.png);
          background-size: contain;
          transform: translateX(-50%);
        }

      }
      .l_scheduleDetail_txt{
        flex: 1;
        margin-bottom: 35px;
        padding: 15px;
        background: #fff;
        
        h3{
          margin-bottom: 15px;
          font-weight: 500;
          color: var(--color_txtorange);
        }
        p{
          letter-spacing: -.03em;
          line-height: 1.5;
        }
        > p:not(:last-child){
          margin-bottom: 20px;
        }
        .el_atten{
          p{
            font-size: min(1.4vw,14px);
            text-indent: -4em;
            margin-left: 4em;
          }
        }
        a{
          color: #003399;
          text-decoration: underline;

          &:hover{
            text-decoration: none;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .l_schedule{
    padding-block: 7.6vw 10.2vw;
    
    .l_ttlh2{
      margin-bottom: 5.9vw;
      letter-spacing: 0;
    }
    .l_ttlh2:nth-of-type(2){
      margin-bottom: 7.6vw;
      letter-spacing: 0;
    }
    .l_img{
      margin-inline: 0;
      margin-bottom: 4.2vw;
    }
    .l_txtArea{
      margin-inline: 0;
      line-height: 1.9;
      .el_red{
        font-size: 3.4vw;
        letter-spacing: -.03em;
      }
    }
    .l_scheduleDetail{
      margin-inline: 0;
      margin-bottom: 15.3vw;

      .l_scheduleDetail_inner{
        display: flex;
        flex-direction: column;
        gap: 10vw;
        li{
          flex-direction: column;
          position: relative;

          &.bg_yellow{
            border: 1.3vw solid var(--bg_orange);
            &::before {
              content: "";
              background: var(--bg_orange);
              width: 0;
            }
            &::after{
            content: "";
            position: absolute;
            bottom: -11vw;
            left: 50%;
            width: 32.1vw;
            height: 9.9vw;
            background: url(../images/icon_arrow.png) no-repeat;
            background-size: contain;
            transform: translateX(-50%);
            z-index: 0;
            }
          }
          &.bg_red{
            border: 1.3vw solid var(--bg_red);
            &::before {
              content: "";
              background: var(--bg_red);
              width: 0;
            }
            &::after{
            content: "";
            position: absolute;
            bottom: -11vw;
            left: 50%;
            width: 32.1vw;
            height: 9.9vw;
            background: url(../images/icon_arrow.png) no-repeat;
            background-size: contain;
            transform: translateX(-50%);
            z-index: 0;
            }
          }
          &:last-of-type{
            h3{
              margin-block: 0 3.4vw;
            }
            &.bg_red{
              &::after{
                background: none;
              }
            }
            .l_scheduleDetail_txt{
              margin-bottom: 0;
            }
          }     
        }
        .l_scheduleDetail_date{
          width: 100%;
          margin-bottom: 0;
          padding-block: 2.5vw;
          font-size: 5.1vw;
          display: flex;
          align-items: center;
          justify-content: center;


          &::after{
            content: inherit;
          }

        }
        .l_scheduleDetail_txt{
          margin-bottom: 0;
          padding: 3.4vw 5.1vw 5.1vw;
          
          h3{
            margin-bottom: 5vw;
            font-size: 4.7vw;
            line-height: 1.28;
            letter-spacing: -.03em;


          }
          p{
            font-size: 4.1vw;
            letter-spacing: -.03em;
            line-height: 1.58;
          }
          > p:not(:last-child){
            margin-bottom: 20px;
          }
          .el_atten{
            p{
              font-size: 3.4vw;
              text-indent: 0;
              margin-left: 0;
            }
            
          }
          a{
            color: #003399;
            text-decoration: underline;
            &:hover{
              text-decoration: none;
            }
          }
        }
      }
    }
    .pc_space{
      display: none;
    }
  }
}

/*****************
l_flow
*****************/
.l_flow{
  padding-block: 60px 70px;
  
  .l_ttlh2{
    margin-bottom: 60px;
  }
  .l_txtArea{
    margin-inline: 25px;
    line-height: 1.5;
    p:not(:last-child){
      margin-bottom: 30px;
    }

    h3{
      font-size: min(1.7vw,17px);
      font-weight: 600;

      &.el_red{
        font-size: min(1.8vw,18px);
        font-weight: 400;
      }
    }

    a{
      color: #003399;
      text-decoration: underline;

      &:hover{
        text-decoration: none;
      }
    }
  }  
  .el_atten{
    font-size: min(1.4vw,14px);
    text-indent: -3.5em;
    margin-left: 3.5em;
  }
}

@media screen and (max-width: 767px) {
  .l_flow{
    padding-block: 8.5vw 15.3vw;
    
    .l_ttlh2{
      margin-bottom: 10vw;
    }
    .l_txtArea{
      margin-inline: 0;
      p:not(:last-child){
        margin-bottom: 5.1vw;
      }

      h3{
        font-size: 4.1vw;
        letter-spacing: -.03em;
        font-weight: 500;
        margin-bottom: 5.1vw;

        span{
          text-align: center;
          display: block;
          margin-bottom: 5.1vw;
        }

        &.el_red{
          font-size: var(--font_rgl);
          font-weight: 400;
          margin-bottom: 0;
        }
      }
    }  
    .el_atten{
      font-size: 3.4vw;
      text-indent: 0;
      margin-left: 0;
    }
  }
}

/*****************
l_faq
*****************/
.l_faq{
  padding-block: 50px 80px;
  
  .l_ttlh2{
    margin-bottom: 60px;
  }
  .l_txtArea{
    margin-inline: 25px;
    line-height: 1.5;

    dl{ 
      padding-bottom: 35px;

      &:not(:last-child){
      border-bottom: 1px solid #e5e9eb;
      }
    }

    dt{
        margin-block: 35px 25px;
        font-weight: 600;
        color: var(--color_txtorange);
    }

    a{
      color: #003399;
      text-decoration: underline;

      &:hover{
        text-decoration: none;
      }
    }
  }  
}

@media screen and (max-width: 767px) {
  .l_faq{
    padding-block: 8.5vw 10.2vw;
    
    .l_ttlh2{
      margin-bottom: 8.5vw;
      letter-spacing: 0;
    }
    .l_txtArea{
      margin-inline: 0;

      dl{
        padding-bottom: 8.5vw;
      }

      dt{
          margin-block: 6.8vw 5.9vw;
          font-weight: 400;
      }
    }  
  }
}

/*****************
l_otherAttention
*****************/
.l_otherAttention{
  padding-block: 60px 100px;
  
  .l_ttlh2{
    margin-bottom: 60px;
  }
  .l_txtArea{
    margin-inline: 25px;
    line-height: 1.5;
    p:not(:last-child){
      margin-bottom: 30px;
    }
  }  
}

@media screen and (max-width: 767px) {
  .l_otherAttention{
    padding-block: 8.5vw 17vw;
    
    .l_ttlh2{
      margin-bottom: 8.5vw;
    }
    .l_txtArea{
      margin-inline: 0;
      p:not(:last-child){
        margin-bottom: 11.9vw;
      }
    }  
  }
}




/*****************
l_footer
*****************/
.l_footer{
  background: #000;
  padding-block: 10px 15px;

  p{
    font-size: 11px;
    text-align: center;
    color: #fff;
  }
}