@charset "UTF-8";

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 80px;
}
body {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  line-height: 1.7;
  background: #00002d url(../images/bg.png) no-repeat center top;
}
img {
  max-width: 100%;
  height: auto;
  transition: .3s;
}
a:hover img {
  opacity: .7;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
  body {
    background: #00002d url(../images/bg.png) no-repeat center top / auto 500px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* ********** admin bar ********** */

:root {
  --global--admin-bar--height: 0;
}

.customize-support {
  --global--admin-bar--height: 32px;

  @media only screen and (max-width: 782px) {
    --global--admin-bar--height: 46px;
  }
}

#wpadminbar {
  position: fixed!important;
}

/* ********** header ********** */

header {
  width: 100%;
  padding: 0 5%;
  position: sticky;
  top: var(--global--admin-bar--height);
  z-index: 10;
  border-bottom: 1px solid #43afee;
  transition: .7s;

  &.active {
    background: #00002d;
  }

  .inner {
    max-width: 1500px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    & h1 {
      max-width: 242px;
    }

    & .btn a {
      padding: 10px 30px;
      color: #000;
      font-size: 20px;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      background: #aaaaaa;
      display: block;
      transition: .3s;
      pointer-events: none;
      
      &:hover {
        opacity: .7;
      }
    }

    & ul {
      margin: 0 10px 0 auto;
      display: flex;

      & li {
        &:not(:last-child)::after {
          content: "｜";
        }
      }

      & a {
        padding: 0 10px;
        color: #fff;
        font-size: 16px;
        text-decoration: none;

        &:hover {
          text-decoration: underline;
        }
      }
    }
    @media screen and (max-width: 1220px) {
      & h1 {
        max-width: 180px;
      }

      & .btn a {
        padding: 10px 20px;
        font-size: 14px;
      }

      & ul {
        margin: 0 20px 0 auto;

        & a {
          padding: 0 8px;
          font-size: 13px;
        }
      }      
    }
    @media screen and (max-width: 980px) {
      & ul {
        display: none;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  header {
    .inner {
      height: 60px;

      & h1 {
        max-width: 130px;
      }
      & .btn a {
        padding: 5px 15px;
        color: #000;
        font-size: 13px;
        font-weight: 700;
      }
    }
  }
}

/* ********** footer ********** */

footer {
  width: 100%;
  height: 283px;
  padding: 40px 5%;
  text-align: center;
  background: url(../images/footer_bg.jpg) no-repeat center top / auto 100%;

  .inner {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;


    & h1 {
      width: 240px;
      margin: 0 auto;
    }

    & ul {
      margin: 20px auto;
      display: flex;
      justify-content: center;

      & li {
        &:not(:last-child)::after {
          content: "｜";
        }
      }

      & a {
        padding: 0 10px;
        color: #fff;
        font-size: 16px;
        text-decoration: none;

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

    .contact {
      & a {
        width: 250px;
        margin: 0 auto 30px;
        padding: 10px 0;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        background: #fff;
        display: block;
        transition: .3s;

        &:hover {
          opacity: .7;
        }
      }
    }

    & p {
      font-size: 11px;
    }
  }
}
@media screen and (max-width: 768px) {
  footer {
    height: auto;
    padding: 30px 5%;
    background: url(../images/footer_bg.jpg) no-repeat center top / auto 100%;
  
    .inner {
      max-width: 1500px;
      height: auto;
      margin: 0 auto;
  
  
      & h1 {
        width: 130px;
      }
  
      & ul {
        margin: 20px auto;
        display: block;
  
        & li {

          &:not(:last-child)::after {
            content: "";
          }
        }
  
        & a {
          font-size: 14px;
          line-height: 2;
        }
      }
  
      .contact {
        & a {
          margin: 0 auto 20px;
          font-size: 15px;
        }
      }
    }
  }
}

/* ********** top ********** */
 
.visual {
  width: 100%;
  padding: 0 5%;
  text-align: center;

  .inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;

    & h2 {
      font-size: 60px;
      font-weight: 700;
      line-height: 1.4;

      @media screen and (max-width: 1500px) {
        & {
          font-size: 42px;
        }
      }

      & span {
        color: #43afee;
        font-weight: 700;
      }
    }

    .logo {
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      padding: 30px 0;
    }

    .date {
      width: 100%;
      margin: 0 auto;
      max-width: 700px;
    }
  }
}
@media screen and (max-width: 1000px) {
  .visual {
    .inner {
      padding: 30px 0;
  
      & h2 {
        & span {
          display: block;
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .visual {
    .inner {
      padding: 30px 0 20px;
  
      & h2 {
        font-size: 19px;
      }
      .logo {
        max-width: 300px;
        padding: 20px 0;
      }
      .date {
        max-width: 220px;
      }
    }
  }
}

main#top {
  width: 100%;

  .list {
    padding: 0 5%;

    .inner {
      max-width: 1500px;
      margin: 0 auto 80px;

      & ul {
        display: flex;
        gap: 2%;
  
        & li {
  
          & h3 {
            margin: 5px 0 0 0;
            font-size: 20px;
            font-weight: 700;
          }
          & p {
            font-size: 15px;
          }
        }
      }
    }
  }

  .message {
    padding: 0 5%;

    .inner {
      max-width: 1500px;
      margin: 0 auto;
      text-align: center;

      & h2 {
        margin: 0 0 20px 0;
        font-size: 38px;
        font-weight: 700;
      }

      & p {
        font-size: 18px;
        line-height: 2;
      }
    }
  }

  .session {
    padding: 80px 5% 0;

    .inner {
      max-width: 1500px;
      margin: 0 auto;

      & h2 {
        margin: 0 0 40px 0;
        color: #43aeed;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
      }

      .block {
        margin: 0 0 80px 0;
  
        .title {
          margin: 0 0 30px 0;
          text-align: center;
    
          .p01 {
            margin: 0 0 20px 0;
            font-size: 20px;
            font-weight: 700;
            color: #43aeed;
    
            & span {
              color: #fff;
              font-weight: 700;
            }
          }
          .p02 {
            font-size: 13px;
            color: #43aeed;
            font-weight: 700;
          }
    
          & h3 {
            font-size: 38px;
            font-weight: 700;
          }
          
		  & a {
            color: #fff;
            text-decoration: none;
            display: block;
            &:hover {
             opacity: .7;
             }
			}
        }
        & ul {
          max-width: 900px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 30px;
    
          & li {
            width: calc(33.33% - 20px);

            & a {
              color: #fff;
              text-decoration: none;
              display: block;
            }
    
            & h3 {
              margin: 5px 0 0 0;
              font-size: 20px;
              font-weight: 700;
            }
            & p {
              font-size: 15px;
            }
          }
        }
      }
    }
  }

  .startup {
    padding: 80px 5%;
    background: #d8d8d8;

    .inner {
      max-width: 1500px;
      margin: 0 auto;

      & h2 {
        margin: 0 0 40px 0;
        color: #43aeed;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
      }

      & ul {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
  
        & li {
          width: calc(33.33% - 20px);

          & a {
            color: #000;
            text-decoration: none;
            display: block;
          }

          & dl {
            margin: 0 0 10px 0;

            & dt {
              font-size: 17px;
            }

            & dd {
              font-size: 20px;
              font-weight: 700;
            }
          }

          & p {
            margin: 15px 0 0 0;
            font-size: 15px;
            line-height: 1.4;
          }

          & h3 {
            font-size: 20px;
            font-weight: 700;
          }
          @media screen and (max-width: 1060px) {
            & dl {
  
              & dt {
                font-size: 14px;
              }
  
              & dd {
                font-size: 16px;

                & br {
                  display: none;
                }
              }
            }
          }
        }
      }
    }
  }

  .timetable {
    padding: 80px 5%;

    .inner {
      max-width: 1260px;
      margin: 0 auto;

      & h2 {
        margin: 0 0 30px 0;
        color: #43aeed;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
      }

        & span {
        font-size: 35px;
        font-weight: 700;
        text-align: center;
      }
      .block {
        color: #000;
        background: #fff;

        & + .block {
          margin: 50px 0 0 0;
        }

        & h3 {
          padding: 15px 0;
          font-size: 27px;
          font-weight: 700;
          text-align: center;
          line-height: 1.5;
          background: #43aeed;
        }

        & ul {
          padding: 10px 30px 30px 30px;

          & li {
            padding: 20px 0;
            border-bottom: 1px solid #000;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
  
            .time {
              width: 190px;
              border: 1px solid #000;
              display: flex;
              align-items: center;
              justify-content: center;
  
              & p {
                font-size: 24px;
                font-weight: 700;              
              }
            }
  
            .txt {
              width: calc(100% - 210px);

              & h4 {
                margin: 0 0 5px 0;
                font-size: 20px;
                font-weight: 700;
                line-height: 1.5;
				  
              }
			.anchor{
              display: block;
              padding-top: 60px;
              margin-top: -60px;
              }  
				
              & h5 {
                margin: 0 0 5px 0;
                font-size: 18px;
                font-weight: 700;
                line-height: 1.5;
              }

              .name {
                margin: 0 0 10px 0;

                & p {
                  font-size: 18px;
                  font-weight: 700;

                  & span {
                    font-size: 14px;
                  }
                }
              }
              & p {
                font-size: 15px;
              }
            }
          }
        }
      }

      .media {
        margin: 100px 0 0 0;
        border-top: 1px solid #43afee;

        & h3 {
          padding: 60px 0 30px;
          font-size: 27px;
          font-weight: 700;
          text-align: center;
        }


        & ul {
          max-width: 960px;
          margin: 0 auto;
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 30px;


          & li {
            width: calc(33.33% - 20px);
          }
        }
      }

      .org {
        margin: 100px 0 0 0;
        border-top: 1px solid #43afee;

        & h3 {
          padding: 60px 0 30px;
          font-size: 27px;
          font-weight: 700;
          text-align: center;
        }

        & p {
          width: 355px;
          margin: 0 auto;
        }
      }
    }
  }

  .btn_block {
    padding: 80px 0;
    background: #fff;

    & a {
      width: 240px;
      margin: 0 auto;
      padding: 10px 30px;
      color: #000;
      font-size: 20px;
      font-weight: 700;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      background: #aaaaaa;
      display: block;
      transition: .3s;
      pointer-events: none;
      
      &:hover {
        opacity: .7;
      }
    }
  }

  .outline {
    padding: 0 5% 80px 5%;
    background: #fff;

    .inner {
      max-width: 900px;
      margin: 0 auto;

      & h2 {
        margin: 0 0 30px 0;
        color: #43aeed;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
      }

      & table {
        width: 100%;
        color: #000;
        font-size: 15px;

        & tr {
          border-bottom: 1px solid #000;

          & th {
            width: 120px;
            padding: 10px 0;
            text-align: left;
          }

          & td {
            padding: 10px 0;
          }
        }
      }
    }
  }
}

.none {
  display: none;
}
.inline {

  .title {
    margin: 0 0 10px 0;
    line-height: 1.5;

    & h3 {
      font-size: 20px;
      font-weight: 700;
    }

    & p {
      font-size: 15px;
    }
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    .img {
      width: 250px;
    }

    .txt {
      width: 250px;

      & h4 {
        margin: 0 0 5px 0;
        font-weight: 700;
      }

      .small {
        font-size: 12px;
      }
    }
  }
}

.modaal-container {
  background:
    linear-gradient(45deg,  transparent 15px, #fff 15px),
    linear-gradient(315deg, transparent 15px, #fff 15px),
    linear-gradient(225deg, transparent 15px, #fff 15px),
    linear-gradient(135deg, transparent 15px, #fff 15px);
  background-position: bottom left, bottom right, top right, top left;
  background-size: 50.1% 50.1%;
  background-repeat: no-repeat;
}



@media screen and (max-width: 1000px) {
  main#top {
  
    .list {
  
      .inner {
  
        & ul {
    
          & li {
    
            & h3 {
              font-size: 15px;
            }
            & p {
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  main#top {

    .list {
      .inner {
        margin: 0 auto 60px;

        & ul {
          flex-wrap: wrap;
          gap: 20px 5%;
    
          & li {
            width: calc(50% - 2.5%);
          }
        }
      }
    }

    .message {
      padding: 0 5%;
  
      .inner {
        max-width: 1500px;
        margin: 0 auto;
        text-align: center;
  
        & h2 {
          margin: 0 0 20px 0;
          font-size: 22px;
        }
  
        & p {
          font-size: 14px;
        }
      }
    }

    .session {
      padding: 40px 5% 0;
  
      .inner {
  
        & h2 {
          margin: 0 0 20px 0;
          font-size: 28px;
        }
  
        .block {
          margin: 0 0 40px 0;
    
          .title {
            margin: 0 0 20px 0;
      
            .p01 {
              margin: 0 0 10px 0;
              font-size: 18px;
            }
            .p02 {
              font-size: 12px;
            }
      
            & h3 {
              font-size: 16px;
            }
          }
          & ul {
            gap: 20px;
      
            & li {
              width: calc(50% - 10px);
      
              & h3 {
                font-size: 15px;
              }

              & p {
                font-size: 12px;
              }
            }
          }
        }
      }
    }

    .startup {
      padding: 40px 5%;
  
      .inner {
  
        & h2 {
          margin: 0 0 20px 0;
          font-size: 28px;
        }
  
        & ul {
          gap: 30px 20px;
    
          & li {
            width: calc(50% - 10px);

            & dl {
  
              & dt {
                font-size: 13px;
              }
  
              & dd {
                font-size: 14px;
                line-height: 1.4;
              }
            }
  
            & p {
              margin: 10px 0 0 0;
              font-size: 13px;
            }
  
            & h3 {
              font-size: 15px;
            }
            & p {
              font-size: 11px;
            }
          }
        }
      }
    }

    .timetable {
      padding: 40px 5%;
  
      .inner {
  
        & h2 {
          margin: 0 0 20px 0;
          font-size: 28px;
        }
          & span {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
      }

        .block {
  
          & + .block {
            margin: 30px 0 0 0;
          }
  
          & h3 {
            padding: 10px 0;
            font-size: 18px;
          }
  
          & ul {
            padding: 0 20px 20px 20px;
  
            & li {
    
              .time {
                width: 100%;
                margin: 0 0 10px 0;
    
                & p {
                  font-size: 20px;
                }
              }
    
              .txt {
                width: 100%;
  
                & h4 {
                  font-size: 16px;
                }
  
                & h5 {
                  font-size: 16px;
                }
  
                .name {
                  margin: 0 0 10px 0;
  
                  & p {
                    font-size: 15px;
  
                    & span {
                      font-size: 12px;
                    }
                  }
                }
                & p {
                  font-size: 13px;
                }
              }
            }
          }
        }
  
        .media {
          margin: 40px 0 0 0;
  
          & h3 {
            padding: 30px 0 20px;
            font-size: 18px;
          }
  
  
          & ul {
            gap: 20px;
  
  
            & li {
              width: calc(50% - 10px);
            }
          }
        }
  
        .org {
          margin: 40px 0 0 0;
  
          & h3 {
            padding: 30px 0 20px;
            font-size: 18px;
          }
  
          & p {
            width: 240px;
          }
        }
      }
    }
  
    & .btn_block {
      padding: 40px 0;
  
      & a {
        width: 250px;
        font-size: 15px;
        text-align: center;
        
        &:hover {
          opacity: .7;
        }
      }
    }
    .outline {
      padding: 0 5% 40px 5%;
  
      .inner {
  
        & h2 {
          margin: 0 0 20px 0;
          font-size: 18px;
        }
  
        & table {
          font-size: 13px;
  
          & tr {
  
            & th {
              width: 60px;
            }
          }
        }
      }
    }
  }
  
  .inline {

    .title {
  
      & h3 {
        font-size: 15px;
      }
  
      & p {
        font-size: 12px;
      }
    }
  
    .flex {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  
      .img {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
      }
  
      .txt {
        width: 100%;
        font-size: 13px;
  
        .small {
          font-size: 12px;
        }
      }
    }
  }
}

/* ********** contact ********** */

main#contact {
  padding: 100px 5%;
  color: #000;
  background: #fff;

  .inner {
    max-width: 800px;
    margin: 0 auto;

    .block {
      max-width: 660px;
      margin: 0 auto;

      & h2 {
        margin: 0 0 50px 0;
        font-size: 22px;
        font-weight: 700;
        text-align: center;
      }

      .txt {
        text-align: center;
      }

      .form {
        margin: 60px 0 0 0;

        & dl {
          margin: 0 0 20px 0;
          font-size: 17px;
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;

          & dt {
            width: 220px;

            .red {
              color: #e00012;
            }
          }

          & dd {
            width: calc(100% - 220px);

            & :is(input[type="text"],input[type="email"],input[type="tel"]) {
              width: 100%;
              padding: 10px;
              font-size: 17px;
              border: 1px solid #999a9a;
            }

            & textarea {
              width: 100%;
              height: 250px;
              padding: 10px;
              font-size: 17px;
              border: 1px solid #999a9a;
            }
          }
        }

        .box {
          margin: 30px 0 0 0;
          text-align: center;

          & p {
            margin: 0 0 30px 0;
          }

          & a {
            color: #000;

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

          .submit {
            margin: 20px 0 0 0;

            & input[type="submit"] {
              appearance: none;
              -webkit-appearance: none;
              width: 200px;
              padding: 15px 0;
              color: #fff;
              font-weight: 700;
              letter-spacing: 7px;
              border-radius: 0;
              border: none;
              background: #0c2f54;
              cursor: pointer;
              transition: .3s;

              &:hover {
                opacity: .7;
              }
            }

            .wpcf7-spinner {
              display: none;
            }
          }
        }
      }
    }
  }
}
@media screen and (max-width: 768px) {
  main#contact {
    padding: 60px 5%;

    .inner {
  
      .block {
  
        & h2 {
          margin: 0 0 30px 0;
          font-size: 18px;
        }
  
        .form {
          margin: 40px 0 0 0;
  
          & dl {
            font-size: 14px;
  
            & dt {
              width: 100%;
              margin: 0 0 5px 0;
            }
  
            & dd {
              width: 100%;
  
              & :is(input[type="text"],input[type="email"],input[type="tel"]) {
                font-size: 14px;
              }
  
              & textarea {
                height: 200px;
                font-size: 14px;
              }
            }
          }
          .box {
  
            & p {
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}

/* ********** privacy ********** */

main#privacy {
  padding: 100px 5%;
  color: #000;
  background: #fff;

  .inner {
    max-width: 800px;
    margin: 0 auto;

    & h2 {
      margin: 0 0 50px 0;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
    }

    & h3 {
      margin: 30px 0 0 0;
      font-size: 16px;
      font-weight: 700;
    }

    & p {
      margin: 10px 0 0 0;  
    }

    & a {
      color: #000;

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

@media screen and (max-width: 768px) {
  main#privacy {
    padding: 50px 5%;

    .inner {
  
      & h2 {
        margin: 0 0 30px 0;
        font-size: 20px;
      }
  
      & h3 {
        margin: 30px 0 0 0;
        font-size: 16px;
        font-weight: 700;
      }
    }
  }
}

/* ********** thanks ********** */

main#thanks {
  padding: 150px 5%;
  color: #000;
  text-align: center;
  background: #fff;

  & p {
    font-size: 23px;
    font-weight: 700;

    & + p {
      margin: 40px 0 0 0;
    }
  }
}
@media screen and (max-width: 768px) {
  main#thanks {
    padding: 100px 5% 100px;
  
    & p {
      font-size: 15px;
  
      & + p {
        margin: 40px 0 0 0;
      }
    }
  }
}