@charset "UTF-8";





/*　----------------　共通　----------------　*/


html {
    padding: 0;
    margin: 0;
}


body {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

div, img, ul, li, table, td, h1, h2, h3, p {
    padding: 0;
    margin: 0;
}


p { 
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000000;
}

a:hover { 
    opacity: 0.8;
    transition:1s all;
}



.pc { display: block; }
.smart { display: none; }
br.pc { display: block; }
br.smart { display: none; }

@media screen and (max-width: 420px){
  .pc { display: none; }
  .smart { display: block; }
  br.pc { display: none; }
  br.smart { display: block; }
}









/*　テキスト関連　*/
h1 {
  font-size: 24px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  color: #000000;
  font-style: italic;
}

h2 {
  font-size: 16px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 400;
  color: #000000;
}

h4.contents-title {
font-size: 30px;
font-family: "Noto Sans Japanese", sans-serif;
font-weight: 600;
text-align: center;
font-style: italic;
letter-spacing: 2px;
margin: 0;
color: #000000;
}

h5.contents-subtitle {
font-size: 20px;
font-family: "Noto Sans Japanese", sans-serif;
font-weight: 600;
text-align: center;
font-style: italic;
letter-spacing: 2px;
margin: 0;
color: #000000;
}



p.contents-sub {
font-size: 16px;
font-family: "Noto Sans Japanese", sans-serif;
font-weight: 400;
text-align: center;
letter-spacing: 2px;
}


p.contents-subB {
font-size: 22px;
font-family: "Noto Sans Japanese", sans-serif;
font-weight: 400;
text-align: center;
letter-spacing: 2px;
padding-bottom: 10px;
color: #ffffff;
}

.cap {
  font-size: 12px;
 line-height: 1.2;
  color: #ffffff;
  width: 100%;
}


p.table-title {
 font-size: 130%;
 line-height: 1.5;
 font-weight: 700;
}


p.read-strong {
  font-size: 16px;
  font-weight: 700;
  color: #ff0000;
 }

p.table-strong {
  display: inline-block;
  background-color: #ff0000;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 0px 5px 2px;
  margin-top: 8px;
}




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

h4.contents-title {
  font-size: 25px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  letter-spacing: 2px;
  margin: 0;
}
}











/*　余白関連　*/
.pTop10 { padding-top: 10px; }
.pTop30 { padding-top: 30px; }
.pTop50 { padding-top: 50px; }








/*　画像サイズ関連　*/
.imgW100 img { width: 100%; margin: auto; }








/*　ライン関連　*/
hr.lineA {
    border: 0.5px dotted #c2c2c2;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

hr.lineB {
  border: 0.5px dotted #c2c2c2;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}








/*　色関連　*/
.c-red {
    color: #de0623!important;
}

.c-black {
    color: #000000!important;
}

.c-white {
    color: #ffffff!important;
}

.t-center {
    text-align: center!important;
}

.bg-gray {
  background-color: #efefef;
}

.bg-yellow {
  background-color: #fffbec;
}

span.marker-yellow {
  background:linear-gradient(transparent 60%, #ff6 60%);
}





/*　レスポンシブ関連　*/
br.pc {
    display: block;
}

br.ipad {
    display: none;
}

br.smart {
    display: none;
}


@media screen and (max-width: 768px){
    br.pc {
        display: none;
    }
    
    br.ipad {
        display: block;
    }
    
    br.smart {
        display: none;
    }
}


@media screen and (max-width: 420px){
    br.pc {
        display: none;
    }
    
    br.ipad {
        display: none;
    }
    
    br.smart {
        display: block;
    }
}


















/*　フェード　*/
/*　要素の表示　*/
.effect-fade {
    opacity : 0;
    transform : translate(0px, 45px);
    transition : all 1500ms;
    }
    .effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
    }
    
    .effect-fade:nth-of-type(2) {
    transition : all 2000ms!important;
    }
    
    .effect-fade:nth-of-type(3) {
    transition : all 2500ms!important;
    }
    
    .effect-fade2 {
    opacity : 0;
    transform : translate(10px, 100px);
    transition : all 1500ms;
    }
    .effect-fade2.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
    }
    
    .effect-fade3 {
    opacity : 0;
    transform : translate(0px, -50px);
    transition : all 2000ms;
    }
    .effect-fade3.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
    }

    
    .wrap {
        animation: fadein 3s forwards;
    }
    
    @keyframes fadein {
        0% {opacity: 0}
        100% {opacity: 1}
    }

    #page-animate::before {
        content: '';
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        z-index: 9999;
        pointer-events: none;
        right: 100%;
        -webkit-transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.9;
       }
       
       #page-animate::after {
        content: '';
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        z-index: 9999;
        pointer-events: none;
        left: 100%;
        -webkit-transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.9;
       }
       
       #page-animate.is-slide-in::before {
        right: 0;
       }
       
       #page-animate.is-slide::after {
        left: 0;
       }












       .contact-btn {
        width: 600px;
        margin: auto;
        background-color: #808080;
        border: 5px solid #f1f1f1;
        margin: 40px auto 50px;
        text-align: center;
        padding: 20px;
        border-radius: 100px;
    }

    .contact-btn a {
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        font-family: "Noto Sans Japanese", sans-serif;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 10px 50px;
    }







    @media screen and (max-width: 768px){
 
    .contact-btn {
      width: 85%;
      margin: auto;
      background-color: #808080;
      border: 5px solid #f1f1f1;
      margin: 30px auto 0px;
      text-align: center;
      padding: 10px;
      border-radius: 100px;
  }

  .contact-btn a {
      font-size: 14px;
      color: #ffffff;
      text-decoration: none;
      font-family: "Noto Sans Japanese", sans-serif;
      font-weight: 500;
      letter-spacing: 1px;
      padding: 0;
  }
    }























/*　----------------　CONTENTS　----------------　*/


.wrapper {
    position: relative;
    width: 100%;
}






/*　ヘッダ　*/
.header {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    padding: 50px;
    box-sizing: border-box;
}

.header-logo {
    position: absolute;
    width: 150px;
    top: 47px;
    left: 50px;
}

.header-logo img {
    width: 100%;
}


.header h1 {
    padding-left: 170px;
}

.header h2 {
    padding-left: 170px;
}




.header-form-btn {
  position: absolute;
  top: 0px;
  right: 0px;
}




.header-btn,
a.header-btn,
button.header-btn {
  width: 300px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}




.taiken-btn,
a.taiken-btn,
button.taiken-btn {
  width: 100%;
  height: 40px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}



a.btn-flat {
  overflow: hidden;
  padding: 18px 35px;

  color: #fff;
  border-radius: 0;
  background: #e50012;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 100px;
  width: 150%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: #000000;
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}


    /*　SNS　*/
        .header-sns-block {
          position: absolute;
          top: 80px;
          right: 50px;
         }

         .header-sns-block ul {
             width: 50px;
             display: flex;
          }

          .header-sns-block li {
              width: 100%;
              list-style: none;
           }

           .header-sns-block li img {
               width: 100%;
            }





@media screen and (max-width: 768px){
  .header {
      position: relative;
      width: 100%;
      height: 200px;
      background-color: #ffffff;
      padding: 40px;
      box-sizing: border-box;
  }

  .header-logo {
      position: absolute;
      width: 100px;
      top: 20px;
      left: 30px;
  }


  .header h1 {
      padding-left: 110px;
      font-size: 20px;
      margin-top: -18px;
  }
  
  .header h2 {
      padding-left: 110px;
  }

  .header-sns-block {
    position: absolute;
    top: 20px;
    right: 20px;
 }

  .header-sns-block ul {
      width: 40px;
      display: flex;
   }


   .header-form-btn {
     position: absolute;
     width: 100%;
     text-align: center;
     top: 110px;
     right: 0px;
     left: 0px;
     margin: auto;
   }
}





@media screen and (max-width: 420px){
  .header {
      position: relative;
      width: 100%;
      height: 200px;
      background-color: #ffffff;
      padding: 20px;
      box-sizing: border-box;
  }

  .header-logo {
      position: absolute;
      width: 100px;
      top: 10px;
      left: 10px;
  }


  .header h1 {
    width: 50%;
    padding-left: 100px;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 10px;
  }
  
  .header h2 {
      padding-left: 100px;
      font-size: 12px;
      padding-top: 5px;
  }

  .header-sns-block {
      position: absolute;
      top: 10px;
      right: 10px;
   }

  .header-sns-block ul {
      width: 40px;
      display: flex;
   }



   .header-form-btn {
     position: absolute;
     width: 100%;
     text-align: center;
     top: 120px;
     right: 0px;
     left: 0px;
     margin: auto;
   }
}




@media screen and (max-width: 320px){
  .header-btn,
  a.header-btn,
  button.header-btn {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0;
    color: #ffffff;
    border-radius: 0;
    box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
  }
  
  a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 40px;
    width: 150%;
    height: 500%;
  
    content: "";
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
  
    background: #00b7ee;
  }
  
  }















.btn {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
  }


  .btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  }
  .btn::after {
    transition: border 0.1s linear 0.05s;
  }
  .btn .btn-inner {
    position: relative;
    z-index: 2;
  }
  .btn:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
  }
  .btn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  }
  .btn:hover::after {
    border-color: #373737;
    transition: border 0.1s linear 0s;
  }
  
  .slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 700px;
    z-index: 1;
  }
  .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .slideshow .slide.is-active {
    display: block;
  }
  .slideshow .slide.is-loaded {
    opacity: 1;
  }
  .slideshow .slide .caption {
    padding: 0 100px;
  }
  .slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    image-rendering: optimizeQuality;
  }



  .slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  .slideshow .slide .image {
    width: 100%;
    object-fit: cover;
    background-position: top!important;
    height: 100%;
  }
  .slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 600 48px/1.2 "Noto Sans Japanese", sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
  }

  .slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 3px;
    color: #ffffff!important;
  }

  .slideshow .slide .text p {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 3px;
    color: #ffffff!important;
  }

  .slideshow .slide .btn {
      position: absolute;
      width: 200px;
      bottom: 100px;
      left: 0;
      right: 0;
    margin: auto;
    border-color: #fff;
  }
  .slideshow .slide .btn::before {
    background: #fff;
  }
  .slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
  }
  .slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
  }
  .slideshow .pagination .item + .page {
    margin-left: -2px;
  }
  .slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
  }
  .slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
  }
  .slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
    background-color: #fff;
  }
  .slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
  }
  .slideshow .arrows .prev {
    left: 30px;
  }
  .slideshow .arrows .prev:hover .svg {
    left: -10px;
  }
  .slideshow .arrows .next {
    right: 30px;
  }
  .slideshow .arrows .next:hover .svg {
    left: 10px;
  }
  .slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
  }

.slide-photo img {
width: 600px;
margin: auto;
}



@media screen and (max-width: 768px){
    .slide-photo img {
    width: 80%;
    margin: auto;
    }

    .slideshow 
    .slide .title {
      margin: 0 auto 15px;
      max-width: 1000px;
      font: 600 30px/1.2 "Noto Sans Japanese", sans-serif;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-style: italic;
    }
}







  @media screen and (max-width: 420px){
    .slideshow {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 400px;
      z-index: 1;
    }

    .slideshow .slide-content {
      position: absolute;
      top: -10%;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      color: #fff;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .slideshow 
    .slide .title {
      margin: 0 auto 15px;
      max-width: 100%;
      font: 500 24px/1.2 "Oswald", sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .slideshow .slide .text {
      margin: 0 auto;
      max-width: 100%;
      font-size: 14px;
      line-height: 1.2!important;
      letter-spacing: 2px;
    }

    .slideshow .slide .text p {
      line-height: 1.2!important;
      font-size: 16px!important;
      color: #ffffff!important;
    }




 .image-container img.image {
    width: 100%;
    object-fit: cover;
    object-position: 30% 50%!important;
    height: 100%;
  }

 .image-container img.imageB {
    width: 100%;
    object-fit: cover;
    object-position: 60% 50%!important;
    height: 100%;
  }






    .slideshow .arrows .arrow {
      margin: -33px 0 0;
      padding: 10px;
      position: absolute;
      top: 50%;
      cursor: pointer;
      z-index: 3;
    }
    .slideshow .arrows .prev {
      left: 10px;
    }
    .slideshow .arrows .prev:hover .svg {
      left: -10px;
    }
    .slideshow .arrows .next {
      right: 10px;
    }
    .slideshow .arrows .next:hover .svg {
      left: 10px;
    }
    .slideshow .arrows .svg {
      position: relative;
      left: 0;
      width: 14px;
      height: 26px;
      fill: #fff;
      transition: left 0.2s ease;
    }


    .slideshow .pagination {
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      height: 12px;
      cursor: default;
      z-index: 2;
      text-align: center;
    }


    .slide .slide-content .caption {
        width: 75%;
        margin: auto;
        padding: 0;
    }

    .slide-photo {
        width: 100%;
        }

    .slide-photo img {
        width: 100%;
        margin: auto;
        padding-top: 10px;
        }

        .slide-event-btn {
            position: absolute;
            top: 550px;
            left: 0;
            right: 0;
            margin: auto;
        }

  }







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

    .slideshow .slide .text p {
      line-height: 1.2!important;
      font-size: 14px!important;
      color: #ffffff!important;
    }
  }









  .main-copy-block {
    width: 100%;
    background-color: #606060;
    padding: 50px 0;
  }


  .main-copy-inblock {
    width: 980px;
    margin: auto;
  }

  .main-copy-inblock img {
    width: 100%;
  }




  @media screen and (max-width: 768px){
    .main-copy-inblock {
      width: 90%;
      margin: auto;
    }
  }



  @media screen and (max-width: 420px){
    .main-copy-block {
      width: 100%;
      background-color: #606060;
      padding: 20px 0;
    }

    .main-copy-inblock {
      width: 95%;
      margin: auto;
      padding: 30px 0;
      
    }
  }











  .consul-block {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0;
  }


  .consul-inblock {
    width: 980px;
    margin: auto;
  }

  .consul-inblock img {
    width: 100%;
  }




  @media screen and (max-width: 768px){
    .consul-inblock {
      width: 90%;
      margin: auto;
    }
  }



  @media screen and (max-width: 420px){
    .consul-block {
      width: 100%;
      background-color: #ffffff;
      padding: 20px 0;
    }

    .consul-inblock {
      width: 95%;
      margin: auto;
      padding: 30px 0;
      
    }
  }












/*　イベント　*/
  .event-block {
    width: 980px;
    margin: auto;
    padding: 50px 0 100px;
  }

.event-block img {
    width: 100%;
    margin: auto;
    /*box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);*/
    transform: scale(1.02);
  }


.event-block a:hover img  {
   transform: scale(1.01);
    transition: 0.5s;
  }


.event-block a img {
    transform: scale(1);
    transition: 0.5s;
}



@media screen and (max-width: 768px){
  .event-block {
    width: 100%;
    margin: auto;
    padding: 50px 0 10px;
  }
}



@media screen and (max-width: 420px){
  .event-block {
    width: 95%;
    margin: auto;
    padding: 20px 0 30px;
  }
}









/*　体験フォームへボタン　*/
.form-btn-block {
  width: 980px;
  margin: auto;
  padding: 50px 0;
}

.form-btn-block img {
  width: 100%;
  margin: auto;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
  transform: scale(1.02);
}


.form-btn-block a:hover img  {
 transform: scale(1.01);
  transition: 0.5s;
}


.form-btn-block img {
  transform: scale(1);
  transition: 0.5s;
}



@media screen and (max-width: 768px){
.form-btn-block {
  width: 100%;
  margin: auto;
  padding: 50px 0 10px;
}
}



@media screen and (max-width: 420px){
.form-btn-block {
  width: 100%;
  margin: auto;
  padding: 0px 0 10px;
}
}










/*　メインコンテンツ　*/


 
/*　コンテンツ　*/
.contents-block {
  width: 100%;
  margin: 80px 0;
}












/*　コンセプト　*/
.concept-block {
  position: relative;
  width: 100%;
  background-color: #000000;
  margin-bottom: 200px;
}

.concept-block ul {
  width: 100%;
  display: flex;
  list-style: none;
}

.concept-block li {
  width: 50%;
  box-sizing: border-box;
}

.concept-left {
  padding: 80px;
}

.concept-title {
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff;
  text-align : center;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 500;
}

.concept-text {
  font-size: 15px;
  line-height: 2.2;
  color: #ffffff;
  text-align : left;
  padding-top: 30px;
}

.concept-right {
  height: 100%;
  background: url('../img/concept/image.jpg') no-repeat ;
  background-size: cover;
  background-position: 50% 20%;
}



.concept-keyword {
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  width: 980px;
  margin: auto;
}

.concept-keyword img {
  width: 100%;
}



@media screen and (max-width: 768px){
  .concept-block {
    position: relative;
    width: 100%;
    background-color: #000000;
    margin-bottom: 120px;
  }
  .concept-left {
    padding: 30px;
  }
  .concept-title {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    text-align : center;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 500;
  }
  .concept-text {
    font-size: 14px;
    line-height: 2;
    color: #ffffff;
    text-align : left;
    padding-top: 30px;
  }

  .concept-keyword {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
  }

}





@media screen and (max-width: 420px){
  .concept-block {
  position: relative;
  width: 100%;
  background-color: #000000;
  margin-bottom: 220px;
}

  .concept-block ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }

  .concept-block li {
    width: 100%;
    box-sizing: border-box;
  }

  .concept-left {
    padding: 20px 20px 50px;
    margin: auto;
  }
  
  .concept-right {
    height: 200px;
  }

  .item1 { order: 1; }
  .item2 { order: 2; }


  .concept-keyword {
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    width: 95%;
    margin: auto;
  }
}







@media screen and (max-width: 320px){
  .concept-block {
  position: relative;
  width: 100%;
  background-color: #000000;
  margin-bottom: 180px;
}
  .concept-title {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    text-align : center;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 500;
  }

  .concept-text {
    font-size: 13px;
    line-height: 2.2;
    color: #ffffff;
    text-align : left;
    padding-top: 30px;
  }

  .concept-keyword {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    width: 95%;
    margin: auto;
  }
}














/*　写真　*/
.photo-block {
  width: 100%;
  margin-bottom:-10px;
  padding: 0;
}

.photo-block ul {
  display: flex;
  list-style-type: none;
}

.photo-block li {
  width: 20%;
}

.photo-block li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}



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

  .photo-block li img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
}





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

  .photo-block ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .photo-block li {
    width: 50%;
    padding: 0;
    margin-bottom: -15px;
  }

  .photo-block li img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .photo-block li:last-child {
    display: none;
  }
}













/*　クラス構成　*/
.class-block {
  width: 980px;
  margin: auto;
}

.class-block ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.class-block li {
  width: 48%;
  padding: 30px 10px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  text-align: center;
}

.class-block li.advance {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.class-block li.standard {
  background-color: #de0623;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.class-block li.base {
  background-color: #fbc800;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


.class-read {
  font-size: 14px;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  color: #000000;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  margin-top: 10px;
}


.class-price {
  width: 100%;
  padding: 50px 0;
}

.class-price table {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #d6d6d6;
}

.class-price td {
  border: 1px solid #d6d6d6;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}


.class-sche {
  width: 500px;
  background-color: #aaa;
  border: 2px solid #d7d7d7;
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
  margin: auto;
  padding: 3px 0 8px;
}


.class-sche a {
 color: #ffffff;
 text-decoration: none;
}






.class-info {
  width: 100%;
  margin: auto;
  border: 5px solid #d4d4d4;
  padding: 30px;
  box-sizing: border-box;
  margin-top: 30px;
}


.class-info-title {
  width: 300px;
  font-size: 18px;
  margin: auto;
  background-color: #7e7e7e;
  padding: 3px 3px;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.class-info table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.class-info td {
  border: 1px solid #d0d0d0;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #000000;
  text-align: center;
}



@media screen and (max-width: 768px){
  .class-block {
    width: 90%;
    margin: auto;
  }

  .class-block li {
    width: 32%;
  }
}



@media screen and (max-width: 420px){
  .class-block {
    width: 95%;
    margin: auto;
  }

  .class-block ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .class-block li {
    width: 100%;
    padding: 30px 10px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center;
  }

  .class-block li.advance {
    background-color: #000000;
    color: #ffffff;
  }
  
  .class-block li.standard {
    background-color: #de0623;
    color: #ffffff;
  }
  
  .class-block li.base {
    background-color: #fbc800;
    color: #ffffff;
  }

  .class-info {
    width: 100%;
    margin: auto;
    border: 5px solid #d4d4d4;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 30px;
  }

  .class-price table {
    width: 100%;
    margin-top: 0px;
    border: 1px solid #d6d6d6;
  }

  .class-info td {
    border: 1px solid #d0d0d0;
    padding: 5px;
    box-sizing: border-box;
    font-size: 11px;
    color: #000000;
    text-align: center;
  }

  .class-price td {
    border: 1px solid #d6d6d6;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
  }

  .class-sche {
    width: 95%;
    background-color: #aaa;
    border: 2px solid #d7d7d7;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    margin-top: 30px;
    margin: auto;
    padding: 3px 0 8px;
  }
  
}












/*　定員　*/
.teiin-box {
  width: 980px;
  margin: 30px auto;
  padding: 30px;
  border: 3px solid #ff0000;
  background-color: #fdeeee;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
}



@media screen and (max-width: 768px){
  .teiin-box {
    width: 90%;
    margin: 30px auto;
    padding: 30px;
    border: 3px solid #ff0000;
    background-color: #fdeeee;
    border-radius: 20px;
    box-sizing: border-box;
    text-align: center;
  }
}
















/*　開催場所　*/
.place-block {
  width: 100%;
  margin: auto;
  margin-top: 50px;
}


.place-map iframe {
  width: 100%;
  height: 300px;
  margin: auto;
}


.place-info {
  position: relative;
  width: 850px;
  margin: auto;
  padding: 30px;
  background-color: #e7e7e7;
  box-sizing: border-box;
  margin-top: -7px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.place-info-txt {
  width: 500px;
  text-align: center;
}

.place-info-txt p.name {
  font-size: 20px;
}

.place-info-txt p.addr {
  font-size: 16px;
}

.place-info-txt p.access {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 20px;
  box-sizing: border-box;
  font-size: 13px;
  margin-top: 10px;
  text-align: left;
}

.place-info-photo {
  width: 250px;
  text-align: center;
}

.place-info-photo img {
  width: 100%;
}




@media screen and (max-width: 768px){
  .place-info {
    position: relative;
    width: 90%;
    margin: auto;
    padding: 30px;
    background-color: #e7e7e7;
    box-sizing: border-box;
    margin-top: -7px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .place-info-txt {
    width: 60%;
    text-align: center;
  }

  .place-info-txt p.name {
    font-size: 18px;
  }
  
  .place-info-txt p.addr {
    font-size: 15px;
  }

  .place-info-photo {
    width: 40%;
    text-align: center;
  }
}




@media screen and (max-width: 420px){
  .place-info {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 20px;
    background-color: #e7e7e7;
    box-sizing: border-box;
    margin-top: -7px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }

  .place-info-txt {
    width: 100%;
    text-align: center;
  }

  .place-info-txt p.name {
    font-size: 18px;
  }
  
  .place-info-txt p.addr {
    font-size: 14px;
  }

  .place-info-photo {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .place-info-txt p.access {
    display: inline-block;
    width: 100%;
    background-color: #ffffff;
    padding: 8px 20px;
    box-sizing: border-box;
    font-size: 13px;
    margin-top: 10px;
    text-align: left;
  }
}















/*　ニュース　*/
.news-block {
  width: 100%;
  background-color: #000000;
  padding: 100px 0;
}

.news-inblock {
  width: 980px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.news-text {
  width: 600px;
}

.news-text p {
  font-size: 28px;
  line-height: 2;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
}

.news-sns-block {
  width: 300px;
}

.news-sns-block img {
  width: 80px;
}




@media screen and (max-width: 768px){
  .news-inblock {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .news-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .news-sns-block {
    width: 300px;
    margin: auto;
    text-align: center;
  }
  
}




@media screen and (max-width: 420px){
  .news-inblock {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .news-text p {
    font-size: 18px;
    line-height: 2;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
  }
  
}





















/*　スタッフ　*/
.staff-block {
  width: 100%;
  margin: auto;
  margin-top: 50px;
  border-bottom: 5px solid #989898;
}


.staff-inblock {
  width: 980px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 100px;
}



.staff-inblock ul {
  width: 100%;
  margin: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.staff-inblock li {
  width: 30%;
  margin-bottom: 50px;
}

.staff-inblock li img {
  width: 100%;
}



.staff-photo {
  font-size: 10px;
  padding-bottom: 20px;
}

.staff-enname {
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #989898;
  border-bottom: 1px solid #989898;
}

.staff-jpname {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
}

.staff-coment {
  font-size: 14px;
  line-height: 1.8;
  padding-top: 20px;
}

.staff-prof {
  width: 500px;
  background-color: #aaa;
  border: 2px solid #d7d7d7;
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  margin-top: 30px;
  margin: auto;
  padding: 3px 0 8px;
}

.staff-prof a {
  color: #ffffff;
  text-decoration: none;
}


.staff-player {
  width: 100%;
  padding: 10px 0;
}

.staff-player table {
  width: 100%;
  border-collapse: collapse;
}

.staff-player td {
  border: 1px solid #e3e3e3;
  padding: 8px;
  box-sizing: border-box;
  font-size: 13px;
}



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

  .staff-inblock {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 100px;
  }

  .staff-inblock ul {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    list-style: none;
  }
  
  .staff-inblock li {
    width: 32%;
  }

  .staff-enname {
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #989898;
    border-bottom: 1px solid #989898;
  }
  
  .staff-jpname {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
  }
  
  .staff-coment {
    font-size: 13px;
    line-height: 1.8;
    padding-top: 20px;
  }

  .staff-player td {
    border: 1px solid #e3e3e3;
    padding: 8px;
    box-sizing: border-box;
    font-size: 11px;
  }
  
}





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

  .staff-inblock ul {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
  }
  
  .staff-inblock li {
    width: 100%;
    border-bottom: 1px dotted #b9b9b9;
    padding-bottom: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  
  .staff-inblock li:last-child {
    width: 100%;
    border-bottom: 0px dotted #b9b9b9;
    box-sizing: border-box;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  
  
}















.form-block-nokori {
  width: 980px;
  padding: 30px;
  margin: auto;
  border: 1px solid #ff0000;
  box-sizing: border-box;
  margin-top: 30px;
}



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

  .form-block-nokori {
    width: 90%;
    margin: auto;
    padding: 30px;
    margin: auto;
    border: 1px solid #ff0000;
    box-sizing: border-box;
    margin-top: 30px;
  }
}






/*　お問い合わせ　*/
.form-flow {
  width: 980px;
  margin: auto;
  background-color: #000000;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

.flow-title {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

.form-flow ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
}

.form-flow li {
  width: 21%;
  background-color: #ffffff;
  padding: 10px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-flow li.yajirushi {
  width: 1%;
  background-color: #000000;
}

.triangle01{ 
  width: 0;
  height: 0;
  border-top: solid 10px transparent;
  border-right: solid 10px transparent;
  border-bottom: solid 10px transparent;
  border-left: solid 10px #ffffff;
}




@media screen and (max-width: 768px){
  .form-flow {
    width: 90%;
    margin: auto;
    background-color: #000000;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
  }
}





@media screen and (max-width: 420px){
  .form-flow {
    width: 100%;
    margin: auto;
    background-color: #000000;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
  }

  .flow-title {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
  }

  .form-flow ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 10px;
  }
  
  .form-flow li {
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form-flow li.yajirushi {
    width: 1%;
    background-color: #000000;
  }

  .triangle01{ 
    width: 0;
    height: 0;
    border-top: solid 10px #ffffff;
    border-right: solid 10px transparent;
    border-bottom: solid 10px transparent;
    border-left: solid 10px transparent;
  }
}



@media screen and (max-width: 320px){
 .flow-title {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
  }
  
  .form-flow li {
    width: 100%;
    background-color: #ffffff;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}













/* コンタクト　*/
.contact-block {
  width: 100%;
  background-color: #484848;
  padding: 50px 0;
}

.contact-txt-block {
  width: 980px;
  margin: auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}


.contact-txt-block p.photo {
  width: 400px;
}

.contact-txt-block p.photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}


.contact-txt-block div.txt {
  width: 480px;
}

.contact-txt-block p.conbtn {
  width: 480px;
  border: 1px solid #ffffff;
  padding: 3px 5px 5px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.contact-txt-block p.conbtn a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

.contact-txt-block p.conbtn a:hover {
  opacity: 0.5;
}

.contact-txt-block p {
  color: #ffffff;
  font-size: 16px;
  line-height: 2;
}




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

  .contact-txt-block {
    width: 90%;
    margin: auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }


  .contact-txt-block p.photo {
    width: 40%;
  }

  .contact-txt-block div.txt {
    width: 55%;
  }

  .contact-txt-block p.conbtn {
    width: 100%;
    border: 1px solid #ffffff;
    padding: 3px 5px 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
  }

  .contact-txt-block p {
    color: #ffffff;
    font-size: 13px;
    line-height: 2;
  }
  
}


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

  .contact-txt-block {
    width: 90%;
    margin: auto;
    display:block;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }

  .contact-txt-block p.photo {
    width: 100%;
  }

  .contact-txt-block div.txt {
    width: 100%;
    margin-top: 10px;
  }
}


















  .selction-block {
    width: 100%;
    padding: 50px 0;
  }
  
  .selction-inblock {
    width: 980px;
    margin: auto;
  }
  
  h3.selection-title {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  h3.selection-titleB {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    background-color: #0084cf;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  h3.selection-titleC {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    background-color: #ff0000;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  h3.selection-titleD {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    background: url('../img/title_back.png');
    background-size: cover;
    background-color: #ff0000;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  
  p.selection-read {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
  }

  .selction-inblock table {
    width: 100%;
    border: 1px solid #c4c4c4;
    margin-top: 20px;
  }

  .selction-inblock td {
    border: 1px solid #c4c4c4;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5;
  }

  .selction-inblock td img {
    width: 500px;
  }

  .selection-maincap {
    font-size: 22px;
    background-color: #ff0000;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
  }


  @media screen and (max-width: 768px){
    .selction-inblock {
      width: 90%;
      margin: auto;
    }
  
    h3.selection-title {
      font-size: 18px;
      font-weight: 400;
      color: #ffffff;
      text-align: center;
      background-color: #de0623;
      padding: 20px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .selction-inblock td img {
      width: 80%;
    }
  }



  @media screen and (max-width: 420px){
    .selction-block {
      width: 100%;
      padding: 20px 0;
    }

    .selction-inblock {
      width: 95%;
      margin: auto;
    }
  
    h3.selection-title {
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;
      text-align: center;
      background-color: #de0623;
      padding: 10px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
  
    p.selection-read {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.6;
      text-align: center;
    }

    .selction-inblock td {
      border: 1px solid #c4c4c4;
      padding: 10px;
      box-sizing: border-box;
      font-size: 12px;
      line-height: 1.5;
    }

    .selction-inblock td img {
      width: 100%;
    }
  
  }










/*　コンタクト　*/
.page-contact-block {
  width: 980px;
  margin: auto;
  padding: 80px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  margin: 80px auto;
}

.page-contact-block table {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.page-contact-block td {
  padding: 10px;
  font-size: 14px;
}




.form-block {
  width: 100%;
  padding: 100px 0;
}




@media screen and (max-width: 768px){
  .page-contact-block {
  width: 90%;
  margin: auto;
  padding: 30px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  margin: 80px auto 80px;
}
}


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

  .form-block {
    width: 100%;
    padding: 80px 0 20px;
  }


  .page-contact-block {
  width: 100%;
  margin: auto;
  padding: 15px;
  border: 0px solid #cccccc;
  box-sizing: border-box;
  margin: 30px auto 0px;
  border-top: 1px solid #cccccc;
}

.page-contact-block p {
font-size: 12px;
}




.page-contact-block table {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}

.page-contact-block td {
  width: 90%;
  display: block;
  padding: 10px;
  font-size: 14px;
}
}





























/*　フォーム　*/

.form-size1 { width: 95%; margin: auto; height: 30px; font-size: 1rem; }
.form-size2 { width: 95%; margin: auto; height: 100px; font-size: 1rem; }
input[type="text"],
textarea {
width: 100%;
outline: none;
border: 1px solid #aaa;
-webkit-transition: all .3s;
transition: all .3s;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

input[type="text"]:focus,
textarea:focus {
box-shadow: 0 0 7px #1abc9c;
border: 1px solid #1abc9c;
}
.select-box01 select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-size: 16px;
}
.select-box01 select {
width: 100%;
padding: 10px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 1px solid #999;
background: #eee;
background: url(../img/arrow02.png) 98% 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#efebe1 100%);
background: url(../img/arrow02.png) 98% 50% no-repeat, linear-gradient(to bottom, #fff 0%,#efebe1 100%);
background-size: 30px, 100%;
}


input[type=button], input[type=submit], input[type=reset] {
position: relative;
width: 100%;
margin: auto;
margin-top: 30px;
  background-color: #555555;
  border: none;
  color: #ffffff;
  padding: 16px 50px;
font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
}







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

.qa-form li.class1 {
width: 100%;
height: auto;
background-color: #dadada;
padding: 10px;
padding-top: 10px;
font-size: 0.8rem;
text-align: center;
}

.qa-form li.class2 {
width: 100%;
height: auto;
padding: 5px;
}

.qa-form li.class3 {
display: block;
width: 100%;
padding: 10px 20px;
font-size: 18px;
line-height: 1.2;
text-align: center;
border: none;
padding-top: 20px;
}

.privacy-box {
  width: 100%;
  margin: auto;
  padding: 5px;
  background-color :#f1efdc;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.privacy-box a {
  font-size: 14px;
}
}





@media screen and (max-width: 768px){
  input[type=button], input[type=submit], input[type=reset] {
  position: relative;
      width: 100%;
      margin: auto;
      margin-top: 30px;
      background-color: #555555;
      border: none;
      color: #ffffff;
      padding: 16px 0px;
      font-size: 13px;
      text-decoration: none;
      cursor: pointer;
      border-radius: 8px;
  }
}





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

  input[placeholder] {
      font-size: 12px;
  }
}

















/*　メニュー　*/
#global-nav {
	background: #000000;
	width: 100%;
}

#global-nav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
  z-index:50;
}

#global-nav .inner {
	margin: auto;
  width: 100%;
}

.global-list {
	display: flex;
  justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-list li {
	display: flex;
  justify-content: center;
	width: 20%;
  padding: 20px 0;
  box-sizing: border-box;
}


.global-list li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
}





@media screen and (max-width: 420px){
  .global-list li a {
    color: #ffffff;
    font-size: 1.5vh;
    text-decoration: none;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 320px){
  .global-list li a {
    color: #ffffff;
    font-size: 1.2vh;
    text-decoration: none;
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
  }
}

















/*　フッタ　*/
.footer-block {
  width: 100%;
  background-color: #000000;
  padding: 100px 0;
  box-sizing: border-box;
}

.footer-logo {
  width: 100px;
  margin: auto;
}

.footer-logo img {
  width: 100%;
}

.footer-block p {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  font-style: italic;
  letter-spacing: 2px;
}














/*　ページ レイアウト　*/

.page-main-block {
  width: 100%;
  margin: auto;
  padding: 50px 0;
}


.page-main-block p.title {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}

.page-main-block p.title-sub {
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
}







@media screen and (max-width: 420px){
  .page-main-block p.title {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
  }
}











.page-pc-header-block {
  width: 100%;
  background-color: #000000;
  margin-top: 50px;
}

.page-pc-header-inblock {
  width: 980px;
  margin: auto;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.page-pc-header-block p.photo {
  width: 30%;
  float: left;
}

.page-pc-header-block p.photo img {
  width: 100%;
}

.page-pc-header-block p.txt {
  width: 60%;
}

.page-pc-header-block p {
  color: #ffffff;
}


@media screen and (max-width: 768px){
  .page-pc-header-inblock {
    width: 95%;
    margin: auto;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
  }
}



@media screen and (max-width: 420px){
  .page-pc-header-inblock {
    width: 95%;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .page-pc-header-block p.photo {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }

  .page-pc-header-block p.photo img {
    width: 80%;
  }
  
  .page-pc-header-block p.txt {
    width: 100%;
    padding-top: 20px;
  }
}








.page-pc-photo-block {
  width: 100%;
}

.page-pc-photo-block ul {
  list-style: none;
  display: flex;
}

.page-pc-photo-block li {
  width: 25%;
}
.page-pc-photo-block li img {
  width: 100%;
}


@media screen and (max-width: 420px){
  .page-pc-photo-block ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }
  .page-pc-photo-block li {
    width: 50%;
  }
}







.page-pc-training-block {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

.page-pc-training-inblock {
  width: 980px;
  margin: 0 auto 30px;
  background-color: #8b8b8b;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.page-pc-training-inblock p.title {
  font-size: 20px;
  color: #ffffff;
}

span.title-min {
  background-color: #ffea00;
  color: #000000;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.page-pc-training-inblock .main {
  background-color: #ffffff;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  margin: 10px 0;
  color: #ff0000;
  font-size: 16px;
}

.page-pc-training-inblock .cap {
  background-color: #dddddd;
  text-align: left;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 10px 0;
  font-size: 14px;
  color: #000000;
}




.page-pc-training-block img {
  width: 980px;
  margin: auto;
  vertical-align: bottom;
}



@media screen and (max-width: 768px){
.page-pc-training-inblock {
  width: 95%;
  margin: 0 auto 30px;
  background-color: #8b8b8b;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.page-pc-training-block img {
  width: 100%;
  margin: auto;
  vertical-align: bottom;
}

}


@media screen and (max-width: 420px){
  .page-pc-training-block {
    width: 100%;
    padding: 50px 0 20px;
    text-align: center;
  }
  .page-pc-training-inblock {
  width: 95%;
  margin: 0 auto 0px;
  background-color: #8b8b8b;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.page-pc-training-inblock p.title {
  font-size: 18px;
  color: #ffffff;
}

.page-pc-training-inblock .main {
  background-color: #ffffff;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  margin: 10px 0;
  color: #ff0000;
  font-size: 14px;
}

.page-pc-training-inblock .cap {
  background-color: #dddddd;
  text-align: left;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 10px 0;
  font-size: 12px;
  color: #000000;
}
}















.page-pc-info-block {
  width: 100%;
}

.page-pc-info-inblock {
  width: 980px;
  margin: auto;
}

.page-pc-info-inblock img {
  width: 100%;
}

.page-pc-info-inblock table {
  width: 100%;
  border-collapse: collapse;
}

.page-pc-info-inblock td {
  border: 1px solid #afafaf;
  padding: 8px 20px;
  font-size: 14px;
  box-sizing: border-box;
}

.page-pc-info-inblock td p.title {
  text-align: center;
  color: #ffffff;
}

.page-pc-info-inblock td img.staffp {
  width: 200px;
  float: left;
  padding-right: 20px;
  overflow: hidden;
}

.pc-staff-name {
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
  
}

.page-pc-info-inblock td p {
  overflow: hidden;
}





span.kamkomiR {
  background-color: #ff0000;
  padding: 5px 8px;
  color: #ffffff;
  border-radius: 8px;
}


.con-campain {
  background-color: #ffea00;
  padding: 10px;
  color: #ff0000;
  border-radius: 10px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  border: 3px dotted #ffffff;
  margin: 10px 0;
}


@media screen and (max-width: 768px){
  .page-pc-info-inblock {
    width: 95%;
    margin: auto;
  }

  .page-pc-info-inblock td {
    border: 1px solid #afafaf;
    padding: 8px 20px;
    font-size: 13px;
    box-sizing: border-box;
  }
}


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

  .page-pc-info-inblock td {
    width: 100%;
    display: block;
    border: 1px solid #afafaf;
    padding: 8px 20px;
    font-size: 12px;
    box-sizing: border-box;
  }

  .page-pc-info-inblock td img.staffp {
    width: 100%;
    float: none;
    padding-right: 0px;
    overflow: hidden;
  }
}









/*　追加　*/
.campain-block {
  width: 980px;
  margin: 80px auto 0;
  padding: 30px;
  border: 5px solid #ff0000;
  box-sizing: border-box;
}

.campain-title {
  font-size: 22px;
  text-align: center;
  background-color: #ff0000;
  color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.campain-read {
  font-size: 18px;
  line-height: 1.8;
  color: #ff0000;
}

.campain-txt {
  font-size: 18px;
  line-height: 1.8;
  padding-top: 10px;
}


@media screen and (max-width: 768px){
  .campain-block {
    width: 90%;
    margin: 80px auto 0;
    padding: 20px;
    border: 5px solid #ff0000;
    box-sizing: border-box;
  }
}




@media screen and (max-width: 420px){
  .campain-block {
    width: 95%;
  }

  .campain-title {
    font-size: 18px;
  }

  .campain-read {
    font-size: 16px;
  }
  
  .campain-txt {
    font-size: 16px;
    padding-top: 20px;
  }
}





.iten-info-block {
  width: 100%;
  padding: 50px 0;
}

.iten-title {
  font-size: 20px;
  color: #ff0000;
  text-align: center;
}

.iten-info-block table {
  width: 980px;
  border-collapse: collapse;
  margin: 20px auto 0;
}

.iten-info-block td {
  border: 2px solid #ff0000;
  padding: 15px;
  box-sizing: border-box;
}


.iten-s-btn {
  position:relative;
  width: 50%;
  margin: auto;
  background-color: #606060;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: #ffffff;
}

.iten-s-btn a {
  position:absolute;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: block;
}






.event-photo-block {
  width: 100%;
  padding: 30px 0;
}

.event-photo-block ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.event-photo-block li {
  width: 25%;
}

.event-photo-block img {
  width: 100%;
}


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

  .event-photo-block li {
    width: 50%;
  }
}





.event-btn {
  width: 100%;
  background-color: #595959;
  padding: 10px;
  border-radius: 15px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 8px;

}

.event-btn:hover {
  opacity: 0.8;
}

.event-btn a {
  color: #ffffff;
}