@charset "utf-8";

body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    background-color: beige;
}

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

}

/*
animation rtl
*/
.move .animation-bg {
    background: rgb(237, 156, 4);
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.rtl .animation-bg {
    animation-name: PageAnime-rtl;
}
@keyframes PageAnime-rtl {
    0% {
      transform-origin: right;
      transform: scaleX(0);
    }
    50% {
      transform-origin: right;
      transform: scaleX(1);
    }
    50.001% {
      transform-origin: left;
    }
    100% {
      transform-origin: left;
      transform: scaleX(0);
    }
}

label, input, textarea, select, button, .sns-btn {
    cursor: pointer;
}
button {
    border: 0;
}

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

}

/*
section
*/
.section {
    padding: 30px 15px;
    transform: translateY(-35px);
}
.section-headline {
    text-align: center;
    font-size: 40px;
    color: #00008b;
    font-weight: bold;
    margin: 0 0 40px;
}
.section .container {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
  }
.section .container h2 {
    text-align: center;
}
.section .container h2 span {
    display: inline-block;
    color: #00008b;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: rotate 2s infinite linear;
    text-transform: uppercase;
  }
.section .container h2 span:nth-child(2) {
    animation-delay: 0.1s;
}
.section .container h2 span:nth-child(3) {
    animation-delay: 0.2s;
}
.section .container h2 span:nth-child(4) {
    animation-delay: 0.3s;
}
.section .container h2 span:nth-child(5) {
    animation-delay: 0.4s;
}
.section .container h2 span:nth-child(6) {
    animation-delay: 0.5s;
}
.section .container h2 span:nth-child(7) {
    animation-delay: 0.6s;
}
.section .container h2 span:nth-child(8) {
    animation-delay: 0.7s;
}
.section .container h2 span:nth-child(9) {
    animation-delay: 0.8s;
}
.section .container h2 span:nth-child(10) {
    animation-delay: 0.9s;
}
.section .container h2 span:nth-child(11) {
    animation-delay: 1s;
}
.section .container h2 span:nth-child(12) {
    animation-delay: 1.1s;
}
.section .container h2 span:nth-child(13) {
    animation-delay: 1.2s;
}
.section .container h2 span:nth-child(14) {
    animation-delay: 1.3s;
}
.section .container h2 span:nth-child(15) {
    animation-delay: 1.4s;
}
.section .container h2 span:nth-child(16) {
    animation-delay: 1.5s;
}
.section .container h2 span:nth-child(17) {
    animation-delay: 1.6s;
}
.section .container h2 span:nth-child(18) {
    animation-delay: 1.7s;
}
@keyframes rotate {
    70% {
        transform: rotateX(0deg);
    }

100% {
        transform: rotateX(360deg);
    }
}

@media screen and (max-width: 768px){
    .section .container h2 {
        font-size: 24px;
    }
    .section .container h2 span {
        font-size: 30px;
    }
}

/*
animation
*/
 
.mask-bg {
    color: transparent;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    transition: color 0ms 450ms;
    text-align: center;
}
.mask-bg::after {
    background: linear-gradient(to right, #362ae0 0%,#3b79cc 50%,#42d3ed 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0, 100%);
}
.mask-bg.is-animated {
    color: #00008b;
}
.mask-bg.is-animated::after {
    animation: mask-bg 6s cubic-bezier(0.8, 0, 0.170, 1);
    animation-iteration-count: 2;
}

@keyframes mask-bg {
    0% {
      transform: translate(0, 101%)
    }
    40%, 60% {
      transform: translate(0, 0%)
    }
    100% {
      transform: translate(0, -100%)
    }
}

@media screen and (max-width: 768px){
    .mask-bg  {
        font-size: 18px;
    }
}

/*
header
*/
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}
.header-logo {
    margin: 0;
}
.header-logo > a {
    display: block;
    padding: 10px;
    color: #FF9933;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.header-navlist {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-navitem > a {
    display: block;
    padding: 10px;
    color: #FF9933;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.header-navitem > a:hover {
    border-bottom: 2px solid #00008b;
}

@media screen and (max-width: 768px){
    .header-logo > a {
        font-size: 14px;
    }
    .header-navitem > a {
        font-size: 10px;
    }
}

/*
hero
*/
.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero > strong {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
}
.hero > video {
    position: absolute;
    z-index: 1;
    width: auto;
    height: 105%;
}
strong span {
    color: #f39800;
}

@media screen and (max-width: 768px){
    .hero > strong {
        font-size: 18px;
    }
    .hero > video {
        width: 100%;
        max-width: 768px;
    }
}

/* 
about
 */
.about {
    margin: 0;
    display: flex;
}
.about-image {
    min-width: 300px;
} 
.about-caption {
    padding-left: 15px;
}
.about-headline {
    color: #00008b;
    margin: 0 0 20px;
    text-align: center;
    font-size: 30px;
    transform: translateY(-10px);
}
.about-description {
    color: #00008b;
    font-size: 17px;
    line-height: 1.5;
}

@media screen and (max-width: 768px){
    .about-image {
        margin: 10px;
        min-width: 350px;
    }
    .about {
        display: block;
        margin-left: 16px;
    }
    .about-caption {
        margin: 15px;
        text-align: center;
    }
    .about-headline {
        padding-right: 25px;
    }
    .about-description {
        padding-right: 25px;
    }
}

/*
grid
*/
.grid {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-item {
    list-style: none;
}
.grid-col-2 > .grid-item {
    width: 50%;
}
.grid-col-3 > .grid-item {
    width: 33.3%;
}
.grid-col-4 > .grid-item {
    width: 25%;
}

@media screen and (max-width: 768px){
    .grid-col-3 > .grid-item {
        width: 100%;
        margin: 10px;
    }
    .grid {
        display: block;
        margin-right: 20px;
    }
}


/* 
Lesson
*/

.lesson {
    text-align: center;
    padding: 0 15px;
}
.lesson-headline {
    text-align: center;
    color: #00008b;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px;
}
.lesson-img {
    margin: 0 0 20px;
    padding-left: 40%;
}
.lesson-description {
    color: #00008b;
    font-size: 17px;
    text-align: left;
}

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

}

/*
section-third
*/
.section-third {
    padding-top: 45px;
    margin-bottom: 60px;
  }
.section-third .container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
  }
.section-third .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    transform: translateX(-42px);
  }
.section-third .col {
    width: 46%;
  }
.section-third h2 {
    color: #00008b;
    font-size: 28px;
    font-weight: 700;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 18px;
    line-height: 1.3;
  }
.section-third p {
    color: #00008b;
    font-size: 18px;
  }
.section-third .text {
    line-height: 1.5;
  }
.section-third a {
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background-color: #ffffff;
    color: #f39800;
    padding: 12px 30px 15px;
    border-radius: 100px;
  }
a.info {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    color: #00008b;
    background-color: beige;
    text-decoration: underline;
}
a.cancel2 {
    color: #00008b;
    background-color: beige;
    text-decoration: underline;
}
.yoyaku_button {
    position: absolute;
    left: 43%;
    transform: translateX(8px);
}

@media screen and (max-width: 768px){
    .yoyaku_button {
        transform: translateY(300px);
        left: 30%;
    }
    .section-third .col {
        width: auto;
    }
    .section-third .container {
        max-width: 768px;
    }
    .section-third p {
        padding-left: 55px;
    }
    .section-third h2 {
        padding-left: 55px;
    }
    .section-third .row {
        margin-left: 20px;
    }
}

/*
section-fifth
*/
.section-fifth {
    margin: 55px;
    padding-top: 30px;
    text-align: center;
  }
.section-fifth .container {
    background-color: #46EEFF;
    border-radius: 20px;
    padding: 30px 0 40px;
    transform: translateY(20px);
}
.section-fifth h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
}
.section-fifth img {
    max-width: 180px;
    margin-bottom: 27px;
}
.section-fifth a {
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    text-decoration: none;
    background-color: #ffffff;
    color: #f39800;
    padding: 12px 30px 15px;
    border-radius: 100px;
}
a.policy {
    background-color:  #46EEFF;
}
h2 span {
    color: #f39800;
}

@media screen and (max-width: 768px){
    .section-fifth .container {
        margin-left: 25px;
    }
}

/*
profile
*/
.profile {
    margin: 0;
    display: flex;
    transform: translateX(55px);
}
.profile-caption {
    padding-left: 15px;
}
.profile-headline {
    color: #00008b;
    padding-left: 350px;
    margin: 0 0 20px;
    font-size: 30px;
}
.profile-col {
    margin-left: 65px;
}
.profile-description {
    color: #00008b;
    margin-left: 150px;
}
.profile table {
    width: 85%;
    transform: translateY(-21px);
}
.profile-description tr {
    padding: 20px 0;
    display: block;
    border-bottom: solid 1px #000000;
    font-size: 16px;
    line-height: 1.5;
}
.profile-description tr th {
    font-size: 16px;
    width: 150px;
}
.profile-image {
    margin-top: 20px;
    margin-left: 85px;
    width: 400px;
    max-width: 90%;
    height: 380px;
    object-fit: cover;
    border-radius: 200px;
}

@media screen and (max-width: 768px){
    .profile {
        display: block;
        transform: translateX(-28px);
    }
    .profile-description {
        margin-left: 40px;
    }
    .profile table {
        transform: translateY(23px);
    }
    .profile-image {
        width: 300px;
        height: 280px;
    }
}

/*
.select, .input, radio, .textarea
*/
.select {
    border-radius: 5px;
    padding: 10px;
    border: 2px solid #ccc;
    min-width: 500px;
}
.input {
    border-radius: 5px;
    padding: 10px;
    border: 2px solid #ccc;
    min-width: 500px;
}
.radio {
    margin: 0 10px;
}
.textarea {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
    min-height: 100px;
}
.button.button.button-submission {
    display: inline-block;
    background-color: #92d3ca;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    margin: 30px;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 5px 5px 0 #bbb;
    transition: box-shadow .25s;
    border-radius: 6px;
}

@media screen and (max-width: 768px){
    .select {
        min-width: 400px;
    }
    .input {
        min-width: 400px;
    }
    .textarea {
        min-width: 400px;
    }

}

/*
form
*/
/*.form {

} */
.form-table {
    margin: 0 auto;
    transform: translateX(-15px);
}
/* .form-table tr */
.form-table th {
    color: #00008b;
    padding: 10px;
    text-align: left;
}
.form-table td {
    padding: 10px;
}
.form-table .radio {
    color: #00008b;
}
.form-button {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.faq {
    text-align: center;
}
.faq a {
    color: #00008b;
    font-size: 20px;
    font-weight: bolder;
    text-decoration: underline;
}
@media screen and (max-width: 768px){
    .form-table,
    .form-table tbody,
    .form-table tr,
    .form-table th,
    .form-table td {
        display: block;
    }
}

/*
footer
*/
.footer {
    background-color: #333;
    color: #fff;
}
.footer-map {
    margin: 0;
    padding: 40px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-map > iframe {
    width: 60%;
}
.footer-mapinfo {
    width: 40%;
    padding: 15px;
}
.footer-maplogo {
    margin-left: 30px;
    padding-left: 55px;
    font-size: 25px;
    font-weight: bold;
}
.footer-maplogo > img {
    fill: transparent;
    margin-right: 10px;
    border-radius: 20px;
}
.footer-mapaddress {
    text-align: center;
    margin-top: 20px;
    padding-right: 40px;
    padding-left: 65px;
    font-style: normal;
}
.footer-mapaddress > a {
    color: #fff;
    text-decoration: none;
}
.footer-line {
    border-color: #444;
}
.footer-copy {
    display: block;
    text-align: center;
    padding: 10px;
}
.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
  }
.footer ul li {
    font-size: 15px;
    margin: 0 20px;
    list-style-type: none;
  }
.footer ul li a {
    transition: .2s;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
  }
.footer ul li a:hover {
    transition: .2s;
    opacity: 0.6;
  }

@media screen and (max-width: 768px){
    .footer-map {
        padding: 15px;
        display: block;
    }
    .footer-map > iframe {
        width: 100%;
        height: 200px;
    }
    .footer-mapinfo {
        width: 100%;
        text-align: center;
    }
    .footer ul {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .footer-maplogo  {
        font-size: 23px;
        padding-left: 1px;
    }
}

/*
sns-btn
*/
.sns-btn ul li a {
    transition: .2s;
  }
.sns-btn ul li a:hover {
    transition: .2s;
    opacity: 0.6;
  }
a {
    margin: 0 0 15px;
    text-decoration: none;
    color: #fff;
}

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

}

  /*
  resister.html
  */
#main {
    padding-bottom: 30px;
}
#main a {
    color: #00008b;
}
.inner {
    width: 960px;
    margin: 0 auto;
}
#toptopath {
    padding: 60px 0 40px;
}
#toptopath ul li {
    color: #333;
    font-size: 11px;
    line-height: 1;
    float: left;
    margin-right: 12px;
}
#toptopath ul li a {
    padding-right: 12px;
    text-decoration: underline;
}
.attention {
    font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: bolder;
}
.attention a {
    color: #f39800;
    font-size: 20px;
    text-decoration: underline;
}

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

}

/*
pageTtl
*/
.pageTtl {
    padding: 10px;
    transform: translateY(-30px);
    background: #e6e6e6;
    border-radius: 6px;
}
.pageTtl .imgArea h1 {
    font-size: 28px;
    line-height: 1;
    text-align: center;
    color: #00008b;
    padding: 25px 35px;
    font-weight: normal;
}
.pageTtl .imgArea {
    background-color: #fff;
    border-radius: 6px;
}

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

}

/*
log in page
*/
* {
    box-sizing: border-box;
  }
    
*:focus {
    outline: none;
 }
body {
    font-family: Arial;
}
.login {
    margin: 20px auto;
    width: 300px;
 }
.login-screen {
    background-color: #FFF;
    padding: 20px;
    border-radius: 5px
}
    
.app-title {
    text-align: center;
    color: #777;
 }
    
.login-form {
    text-align: center;
}
.control-group {
    margin-bottom: 10px;
}  
    
input:focus {
    border: 2px solid #3498DB;
    box-shadow: none;
}
    
.btn {
      border: 2px solid transparent;
      background-color: #92d3ca;
      color: #ffffff;
      font-size: 16px;
      line-height: 25px;
      padding: 10px 0;
      text-decoration: none;
      text-shadow: none;
      border-radius: 3px;
      box-shadow: 5px 5px #bbb;
      transition:box-shadow .25s;
      display: block;
      width: 250px;
      margin: 0 auto;
 }

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

}

 /*
 privacy-policy
 */
.privacy-policy {
    height: 350px;
    padding: 2em;
    overflow-y: scroll;
    border: 2px solid #111;
}
.privacy-policy__box {
    margin-top: 30px;
}
.privacy-policy__box:first-child {
    margin-top: 0px;
}

.privacy-policy__head {
    color: #00008b;
    font-size: 20px;
    font-weight: 700;
}

.privacy-policy__detail {
    color: #00008b;
    margin-top: .5em;
}
.wrapper {
  max-width: 1000px;
  margin-top: 50px;
  padding-top: 35px;
  padding-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    margin-right: 5%;
    margin-left: 5%;
  }
}

/*
kiyaku
*/
.wrapKOPIPE-OK {
    position: relative;
    margin: 60px 0 0;
    padding: 60px;
    background: beige;;
    border-radius: 20px;
}
.kiyaku-head {
    color: #00008b;
    font-size: 20px;
}
/*.wrapHINAGATA {

}
*/
.wrapHINAGATA h1 {
    color: #00008b;
    margin: 0 0 50px 0;
    font-size: 36px;
}
.kiyaku-head p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.wrapHINAGATA h2 {
    color: #00008b;
    margin: 50px 0 40px 0;
    padding: 15px 0 15px 20px;
    font-size: 28px;
    border-left: 5px solid #5db5bd;
}
.wrapHINAGATA ol {
    margin: 20px 0 0 50px;
}
.wrapHINAGATA ol li {
    color: #00008b;
    font-size: 20px;
    position: relative;
    padding: 0 0 0 5px;
}
.wrapHINAGATA ol li::marker {
    font-size: 130%;
    font-weight: 700;
    color: #5db5bd;
}
.wrapHINAGATA p.tR {
    margin: 60px 0 0 0;
    text-align: right;
}
li.description-second {
    padding-top: 20px !important;
}

@media screen and (max-width: 768px) {
    .wrapHINAGATA ol {
        margin: 20px 0 50px;
    }
}

/* 
cancel
 */
.section-headline2 {
    text-align: center;
    font-size: 40px 0 0;
    color: #00008b;
    font-weight: bold;
    margin: 40px 0 40px;
}
.cancel {
    margin: 0;
    display: inline;
}
.cancel-image {
    margin: 5px auto;
    margin-bottom: 30px;
    max-width: 1435px;
    height: 640px;
    position: relative;
    left: 0;
}
.cancel-caption {
    margin-top: 30px;
    margin-left: 75px;
    padding-left: 15px;
    transform: translateX(55px);
}
.cancel-headline {
    color: #00008b;
    margin: 20px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
}
.cancel-description {
    color: #00008b;
    font-size: 20px;
    padding-left: 65px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .cancel-caption {
        margin: 0 auto;
        transform: translateX(0px);
    }
}

/*
time
*/
.time-table {
    display: block;
    border-collapse: collapse;
    margin: 15px 0 38px;
  }
.time-table th {
    border-top: 1px solid #d2d2d2;
  }
  
.time-table th, .time-table td {
    padding: 10px 10px;
    text-align: center;
    height:50px;
    border-bottom: 1px solid #d2d2d2;
  }
  
.time-table td {
      width: 100%;
      min-width: 58px;
      color:#1ba1e6;
      font-weight: bold;
  }
  
.time-table td .time {
   color:#3c3c3c;
  }
  
@media screen and (max-width: 764px)  {
   .time-table td {
    min-width: auto;
    width:100%;
    max-width:5%;
    font-size:12px;
   }
  
   .time-table th, .time-table td {
    min-width: 40px;
    width:100%;
    padding:10px 15px;
    font-size:10px;
   }
}

/*
tokuteishou
*/

.wrap {
    position: relative;
    margin: 20px 0 0;
    padding: 60px;
    background: #f8f8f0;
    color: #00008b;
    border-radius: 20px;
    height: auto;
}
.wrap h1 {
    margin: 0 0 50px 0;
    padding-left: 55px;
    font-size: 36px
}
.hina-layTblTyp01 {
    margin: 50px 0;
    width: 100%;
    border-top: 1px solid #999999
}
.hina-layTblTyp01 th {
    font-size: 22px;
    width: 25%;
    padding: 30px;
    border-bottom: 1px solid #dfdfcd
}
.hina-layTblTyp01 td {
    font-size: 20px;
    padding: 30px;
    border-bottom: 1px solid #dfdfcd
}
table,tr,td,th {
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: top
}

@media screen and (max-width: 768px) {
    .wrap {
        display: inline-block;
        margin: 0 auto;
        padding: 20px;
    }
    .wrap h1 {
        font-size: 24px;
        font-weight: bolder;
    }
}

/*
FAQ
*/
li.text {
    color: #00008b;
    padding-left: 30px;
    font-size: 20px;
}
.kiyaku-head1 {
    color: #00008b;
    font-size: 20px;
}
li a {
    color: #00008b;
    text-decoration: underline;
}