@charset "UTF-8";


html, body {
  margin: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}









/* 共通設定 */
ul, li {
    margin: 0;
    padding:0;
    list-style: none;
}


p.G-script {
    font-family: "Yesteryear", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.yesteryear-regular {
  font-family: "Yesteryear", cursive;
  font-weight: 400;
  font-style: normal;
}

h2.title {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
}

p.title-sub {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

i.fab, i.fas, i.far {
    scale: 0.8;
    padding-right: 10px;
}

/* 色設定 */
.c-white { color: #ffffff; }
.c-orange { color: #e39905; }
.c-gold { color: #ae8d00; }
.c-blue { color: #1650c4; }
.c-lblue { color: #57c0d0; }
.c-pink { color: #d17dd9; }




/* ヘッダ */
header.home-header { 
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: 100;
}

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


@media screen and (max-width: 820px){
.header-logo img {
    position: absolute;
    width:80px;
    top: 10px;
    left: 0px;
    margin: auto;
}
}


@media screen and (max-width: 540px){
p.title-sub {
    width: 95%;
    margin: auto;
    font-size: 1.7vh;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}
}














/* ボタン設定 */
.btn-school-form {
    position: absolute;
    z-index: 50;
    top: 80px;
    right: 50px;
    margin: auto;
    width: 230px;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.btn-school-form img {
    width: 100%;
    scale: 1;
    transition: 0.3s ease;
    cursor: pointer;;
}

.btn-school-form img:hover {
    scale: 1.05;
}

@media screen and (max-width: 820px){
.btn-school-form {
    position: absolute;
    z-index: 50;
    top: 160px;
    right: 50px;
    margin: auto;
    width: 200px;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}
}

@media screen and (max-width: 540px){
.btn-school-form {
    position: absolute;
    z-index: 50;
    top: 50px;
    right: 20px;
    margin: auto;
    width: 150px;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}
}




.btn-designA {
    position: relative;
    width: 350px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
    color: #ffffff;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.2);

}

.btn-designA a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    content: '';
    text-decoration: none;
}


.btn-designB {
    position: relative;
    width: 200px;
    margin: auto;
    background-color: rgba(83, 83, 83, 0.8);
    padding: 8px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 1px;
    color: #c0c0c0;
    box-shadow: -2px -2px 5px 0px rgba(176, 176, 176, 0.3), 2px 2px 5px 0px rgba(71, 71, 71, 0.2);
}

.btn-designB a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    content: '';
    text-decoration: none;
}


.btn-designC {
    position: relative;
    width: 150px;
    margin: auto;
    background-color: rgba(83, 83, 83, 0.8);
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 1px;
    color: #c0c0c0;
}

.btn-designC a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    content: '';
    text-decoration: none;
}



/* 余白設定 */
.pTop30 { padding-top: 30px; }






/* スクロールして表示されるボタン */
#scrollTopBtn {
      opacity: 0;
      pointer-events: none;
      position: fixed;
      bottom: 20px;
      right: 0px;
      background-color: #ae8d00;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 16px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: opacity 0.5s ease;
      z-index: 10;
    }

    #scrollTopBtn.show {
      opacity: 1;
      pointer-events: auto;
    }

    #scrollTopBtn:hover {
      background-color: #ac9638;
    }


@media screen and (max-width: 540px){#scrollTopBtn {
      opacity: 0;
      pointer-events: none;
      position: fixed;
      bottom: 50px;
      right: 0px;
      background-color: #ae8d00;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 16px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: opacity 0.5s ease;
      z-index: 10;
    }
}





/* NEW イベントバナーへ表示 */
.new {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
}

.new::before {
    position: absolute;
    content: "NEW";
    top: -10px;
    left: -15px;
    background-color: crimson;
    padding: 5px 10px;
    transform: rotate(-15deg);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}






    



/* ========== メインビジュアル ========== */
.MV-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.MV-container::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 40%;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1));
    z-index: 8;
}

.half {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.left {
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
    z-index: 1;
}

.right {
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    z-index: 2;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: inherit; /* 親のclip-pathを継承して同じ斜め形状に */
    z-index: 0;
}

.slide.incoming {
    z-index: 1;
}

.left .slide.incoming {
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.left .slide.incoming.animate {
    transform: translateX(0);
}

.right .slide.incoming {
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.right .slide.incoming.animate {
    transform: translateX(0);
}

.slide-left1 {
    background-position: 100% 50%!important;
}


@media (max-width: 820px) {
    .MV-container {
        position: relative;
        width: 100vw;
        height: 100vh;
    }
    .container {
        flex-direction: column;
    }
    .left {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        height: 50%;
    }
    .right {
        top: 40%;
        clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
        height: 50%;
    }
    .slide {
        clip-path: inherit;
    background-position: center 0%;
    }

.slide-left1 {
    background-size: cover;
    background-position: center top;
}
}

@media (max-width: 540px) {
    .MV-container {
        position: relative;
        width: 100vw;
        height: 98vh;
    }
}




/* MVコピー */
.MV-copy {
    position: absolute;
    top:20%;
    bottom:50%;
    left:0;
    right:0;
    margin:auto;
    z-index: 40;
    text-align: center;
}

.MV-copy-cp img {
    width: 50%;
    margin: auto;
}

.MV-copy p.en {
    width: 490px;
    margin: auto;
    font-size: 6.5vh;
    transform: rotate(-7deg);
    color: #ffffff;
    text-align: left;
    line-height: 1.1;
    border: 0px solid #ffffff;
    box-sizing: border-box;
}

.MV-copy p.jp {
    font-size: 7vh;
    color: #ffffff;
    text-align: left;
    line-height: 1.1;
    border: 0px solid #ffffff;
    box-sizing: border-box;
    text-align: center;
}


@media (max-width: 820px) {
    .MV-copy {
        position: absolute;
        top:25%;
        bottom:50%;
        left:0;
        right:0;
        margin:auto;
        z-index: 40;
        text-align: center;
    }
    
    .MV-copy-cp img {
        width: 70%;
        margin: auto;
    }
}

@media (max-width: 540px) {   
    .MV-copy-cp img {
        width: 90%;
        margin: auto;
    }
}





/* MVカテゴリ */
.MV-category {
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 120px;
    display: block;
    z-index: 10;
    background-color: rgba(255,255,255,0.3);
}

.MV-category ul {
    width: 100%;
    display: flex;
    list-style: none;
}

.MV-category li {
    position: relative;
    width: 33.3%;
    height: 120px;
    box-sizing: border-box;
    box-shadow: 0px -10px 10px -6px rgba(0, 0, 0, 0.3);
}

.MV-category li a {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    content: '';
    z-index: 100;
}

.MV-category li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.MV-category li.school {
    position: relative;
    background-color: #ffffff;
    border-bottom: 10px solid #000000;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.MV-category li.school::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/school_ban_photoB.png')no-repeat;
    background-size: 43%;
    background-position: 115% 5%;
    opacity: 1;
    z-index: 20;
}

.MV-category li.school::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    top: 15px;
    left: 220px;
    margin: auto;
    transform:rotate(-45deg);
    background:#c09c00;
    z-index: -1;
}



.MV-category li.project {
    position: relative;
    background-color: #ffffff;
    border-bottom: 10px solid #000000;
    border-left: 5px solid #ffffff;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.MV-category li.project::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/project_ban_photoB.png')no-repeat;
    background-size: 30%;
    background-position: 110% 20%;
    opacity: 1;
    z-index: 20;
}


.MV-category li.project::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    top: 15px;
    left: 220px;
    margin: auto;
    transform:rotate(-45deg);
    background:#57c0d0;
    z-index: -1;
}


.MV-category li.jr {
    position: relative;
    background-color: #ffffff;
    border-bottom: 10px solid #000000;
    border-left: 5px solid #ffffff;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.MV-category li.jr::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/jr_ban_photoB.png')no-repeat;
    background-size: 34%;
    background-position: 110% 20%;
    opacity: 1;
    z-index: 20;
}


.MV-category li.jr::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    top: 15px;
    left: 220px;
    margin: auto;
    transform:rotate(-45deg);
    background:#0e43ac;
    z-index: -1;
}



.en-title {
    position: absolute;
    font-size: 3.8vh;
    top: 45%;
    left: 6%;
    margin: auto;
}

.jp-title {
    position: relative;
    font-size: 13px;
    letter-spacing: 0.5px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    z-index: 15;
    padding: 3px 0;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 0px;
}

.jp-title span.title-cap {
    font-size: 12px;
    letter-spacing: 1px;
    background-color: rgba(255,255,255,0.4);
    padding: 2px 8px;
    margin-left: 10px;
}

.menu-message {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-top: 17px;
    letter-spacing: 0.5px;
}


@media (max-width: 820px) {
.MV-category {
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 150px;
    display: block;
    z-index: 10;
    background-color: rgba(255,255,255,0.3);
}

.MV-category li {
    position: relative;
    width: 33.3%;
    height: 150px;
    box-sizing: border-box;
    box-shadow: 0px -10px 10px -6px rgba(0, 0, 0, 0.3);
}

.MV-category li.school::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/school_ban_photoB.png')no-repeat;
    background-size: 35%;
    background-position: 115% 90%;
    opacity: 1;
    z-index: 20;
}

.MV-category li.project::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/project_ban_photoB.png')no-repeat;
    background-size: 20%;
    background-position: 105% -100%;
    opacity: 1;
    z-index: 20;
}

.MV-category li.jr::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/jr_ban_photoB.png')no-repeat;
    background-size: 25%;
    background-position: 110% -75%;
    opacity: 1;
    z-index: 20;
}

.en-title {
    position: absolute;
    font-size: 3vh;
    top: 30%;
    right: 6%;
    left: 6%;
    margin: auto;
}

.menu-message {
    position: relative;
    font-size: 2vh;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 0.5px;
    z-index: 25;
}
}



@media (max-width: 540px) {
.MV-category {
    position: absolute;
    bottom: 0px;
    margin: 0 auto 20px;
    width: 100%;
    height: 150px;
    display: block;
    z-index: 10;
    background-color: rgba(153, 141, 43,1);
    box-sizing: border-box;
}
.MV-category li {
    position: relative;
    width: 33.3%;
    height: 140px;
    box-sizing: border-box;
    box-shadow: 0px -10px 10px -6px rgba(0, 0, 0, 0.3);
}
.jp-title {
    position: relative;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    z-index: 15;
    padding: 3px 0 0;
    box-sizing: border-box;
    margin-top: 3px;
    margin-bottom: 0px;
}
.jp-title span.title-cap {
    font-size: 10px;
    letter-spacing: 1px;
    background-color: rgba(255,255,255,0.4);
    padding: 2px 8px;
    margin-left: 0px;
}

.en-title {
    position: absolute;
    font-size: 2.5vh;
    top: 39%;
    right: 6%;
    left: 6%;
    margin: auto;
}

.menu-message {
    position: relative;
    font-size: 1.7vh;
    line-height: 1.2;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 40px;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 2px #ffffff;
    paint-order: stroke;
    z-index: 25;
}

.MV-category li.school::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/school_ban_photoB.png')no-repeat;
    background-size: 65%;
    background-position: 160% 100%;
    opacity: 1;
    z-index: 20;
}
.MV-category li.school::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 60px;
    left: 85px;
    margin: auto;
    transform:rotate(-45deg);
    background:#c09c00;
    z-index: -1;
}

.MV-category li.project::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/project_ban_photoB.png')no-repeat;
    background-size: 30%;
    background-position: 110% 360%;
    opacity: 1;
    z-index: 20;
}
.MV-category li.project::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 60px;
    left: 85px;
    margin: auto;
    transform:rotate(-45deg);
    background:#57c0d0;
    z-index: -1;
}

.MV-category li.jr::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background: url('../img/home/jr_ban_photoB.png')no-repeat;
    background-size: 30%;
    background-position: 110% 100%;
    opacity: 1;
    z-index: 20;
}

.MV-category li.jr::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 60px;
    left: 85px;
    margin: auto;
    transform:rotate(-45deg);
    background:#0e43ac;
    z-index: -1;
}


.jp-title {
    position: relative;
    font-size: 1.25vh;
    letter-spacing: 0.5px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    z-index: 15;
    padding: 3px 0;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 0px;
}
.jp-title span.title-cap {
    font-size: 1.1vh;
    letter-spacing: 1px;
    background-color: rgba(255,255,255,0.4);
    padding: 2px 8px;
    margin-left: 10px;
}
}














/* イベント */
.home-event-block {
    background-color: #ffffff;
    padding: 80px 0;
    background-size: auto auto;
    background-color: rgba(240, 238, 234, 1);
    background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, rgba(255, 250, 234, 1) 6px, rgba(255, 250, 234, 1) 7px );
}

.home-event-block .inblock {
    width: 1080px;
    margin: auto;
}

.home-cvent-banner-block {
    width: 100%;
}

.home-cvent-banner-block ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 0;
}

.home-cvent-banner-block li {
    position: relative;
    width: 48%;
    margin-bottom: 30px;
}

.home-cvent-banner-block li.nidan {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 2px dotted #b2b2b2;
}

.home-cvent-banner-block li a {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
}

.home-cvent-banner-block li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.home-cvent-banner-block li img {
   width: 100%;
}

.home-cvent-banner-block li img.ban {
   box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}


@media (max-width: 820px) {
.home-event-block {
    background-color: #ffffff;
    padding: 50px 0 80px;
    background-size: auto auto;
    background-color: rgba(240, 238, 234, 1);
    background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, rgba(255, 250, 234, 1) 6px, rgba(255, 250, 234, 1) 7px );
}
.home-event-block .inblock {
    width: 95%;
    margin: auto;
}
}



@media (max-width: 540px) {
.home-cvent-banner-block ul {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0 0;
}

.home-cvent-banner-block li {
    position: relative;
    width: 100%;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.home-cvent-banner-block li.coming {
    display: none;
}
}








/* コンセプト */
.home-concept-block {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: #000000;
    z-index: -1;
    overflow: hidden;
}

.home-concept-block::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    content: '';
    background: url('../img/home/concept_back.jpg') no-repeat;
    background-size: cover;
    background-position: center 40%;
    opacity: 0.3;
    z-index: 1;
}

.home-concept-block .inblock {
    position: relative;
    width: 1080px;
    margin: auto;
    z-index: 200;
    display: flex;
    flex-wrap: wrap;
}

.home-concept-block h2 {
    color: #ffffff;
    font-size: 22px;
    width: 40%;
}

.home-concept-block p {
    color: #ffffff;
    width: 60%;
    font-size: 14px;
    line-height: 2;
}


@media (max-width: 820px) {
.home-concept-block {
    position: relative;
    width: 100%;
    padding: 50px 0 100px;
    background-color: #000000;
    z-index: -1;
    overflow: hidden;
}

.home-concept-block .inblock {
    position: relative;
    width: 95%;
    margin: auto;
    z-index: 200;
    display: flex;
    flex-wrap: wrap;
}
.home-concept-block h2 {
    color: #ffffff;
    font-size: 2.5vh;
    width: 100%;
    text-align: center;
}
.home-concept-block p {
    color: #ffffff;
    width: 90%;
    margin: auto;
    font-size: 14px;
    line-height: 2;
}
}






/* カテゴリ */
.tsa-category {
    width: 100%;
}

.tsa-category ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.tsa-category li {
    position: relative;
    width: 300px;
    height: 300px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tsa-category li .in-box {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.tsa-category li .in-box p.title {
    width: 100%;
    font-size: 40px;
    line-height: 1;
    padding: 0;
    margin-bottom: 8px;
}

.tsa-category li .in-box p.txt {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.tsa-category li .in-box span.sub {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
}

.tsa-category li .in-box span.school {
    width: 80px;
    margin: auto;
    border-bottom: 3px solid #c09c00;
}

.tsa-category li .in-box span.project {
    width: 80px;
    margin: auto;
    border-bottom: 3px solid #57c0d0;
}

.tsa-category li .in-box span.jr {
    width: 80px;
    margin: auto;
    border-bottom: 3px solid #1650c4;
}

.tsa-category span.grade {
    position: relative;
    width: 30%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    font-size: 11px;
    padding: 2px;
    box-sizing: border-box;
    margin: 10px auto 20px;
    z-index: 1;
}



@media (max-width: 820px) {
.tsa-category li {
    position: relative;
    width: 30%;
    padding-top: 30%;
    height: 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tsa-category li .in-box p.title {
    width: 100%;
    font-size: 3vh;
    line-height: 1;
    padding-top: 30px;
    margin-top: -100%;
    margin-bottom: 5px;
}

.tsa-category li .in-box p.txt {
    width: 100%;
    font-size: 1.8vh;
    line-height: 1.5;
    padding: 20px 0 10px;
    margin: 0;
}

.tsa-category li .in-box span.sub {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
}

.tsa-category span.grade {
    position: relative;
    width: 50%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    font-size: 11px;
    padding: 2px;
    box-sizing: border-box;
    margin: 5px auto 20px;
    z-index: 1;
}

}




@media (max-width: 540px) {
.tsa-category ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tsa-category li {
    position: relative;
    width: 45%;
    padding-top: 45%;
    height: 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1%;
    margin-bottom: 30px;
}

.tsa-category li .in-box p.title {
    width: 100%;
    font-size: 2.8vh;
    line-height: 1;
    padding-top: 50px;
    margin-top: -100%;
    margin-bottom: 5px;
}
.tsa-category li .in-box p.txt {
    width: 100%;
    font-size: 1.8vh;
    line-height: 1.3;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
.tsa-category span.grade {
    position: relative;
    width: 50%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    font-size: 1.2vh;
    padding: 2px;
    box-sizing: border-box;
    margin: 10px auto 10px;
    z-index: 1;
}
}





/* テキストスライド */
.text-slide-wrapper {
    position: absolute;
	overflow-x: hidden;
    bottom: -40px;
    left:0;
    margin: auto;
    content: '';
    z-index: 100;
}

.text-slide {
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
    font-style: italic;
	display: flex;
	white-space: nowrap;
    font-size: 15vw;	/*文字サイズ*/
	opacity: 0.1;		/*透明度。色が5%出た状態。*/
	z-index: 100;
    color: #ffffff;
}

.text-slide span {
	padding: 0 20px;
}


@media (max-width: 540px) {
.text-slide {
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
    font-style: italic;
	display: flex;
	white-space: nowrap;
    font-size: 40vw;	/*文字サイズ*/
	opacity: 0.1;		/*透明度。色が5%出た状態。*/
	z-index: 100;
    color: #ffffff;
}
}







/* コンセプト ボタン */
.home-concept-btn {
    position: absolute;
    display: block;
    width: 300px;
    height: 50px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 200;
    color: #ffffff;
    font-size: 20px;
    line-height: 2.5;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.home-concept-btn a {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
}

.home-concept-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: 0.2s;
}

.home-concept-btn:hover a::after {
  right: 24px;
}



@media (max-width: 820px) {
.home-concept-btn {
    position: absolute;
    display: block;
    width: 250;
    height: 40px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 200;
    color: #ffffff;
    font-size: 2vh;
    line-height: 2.2;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}
}

@media (max-width: 540px) {
.home-concept-btn {
    position: absolute;
    display: block;
    width: 250;
    height: 40px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 200;
    color: #ffffff;
    font-size: 2vh;
    line-height: 2.8;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}
}












/* インスタグラム */
section.home-instagram-block {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background-color: #000000;
    background: url('../img/home/instagram_back.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}

section.home-instagram-block::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    content: '';
    background-color: #000000;
    opacity: 0.4;
    z-index: 5;
}

section.home-instagram-block h2 {
    position: relative;
    z-index: 10;
}

section.home-instagram-block .inblock {
    position: relative;
    width: 1080px;
    margin: auto;
    z-index: 10;
}

section.home-instagram-block .inblock iframe {
    margin-top: 30px;
}


@media (max-width: 820px) {
section.home-instagram-block {
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    background-color: #000000;
    background: url('../img/home/instagram_back.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}
section.home-instagram-block .inblock {
    position: relative;
    width: 95%;
    margin: auto;
    z-index: 10;
}
}


@media (max-width: 540px) {
section.home-instagram-block iframe {
    width: 1080px;
}
}



/* スマホの場合にスクロールさせる */
.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* iOS向け */
  }

  .scroll-item {
    flex: 0 0 auto;
    width: 1080px;
    height: 300px;
    scroll-snap-align: start;
    padding: 0;
  }

  @media screen and (min-width: 820px) {
    .scroll-container {
      overflow-x: visible;
    }
  }











/* ニュース */
section.home-news-block {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-color: rgba(240, 238, 234, 1);
    background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, rgba(255, 250, 234, 1) 6px, rgba(255, 250, 234, 1) 7px );
}

section.home-news-block .inblock {
    width: 1080px;
    margin: auto;
}

section.home-news-block .inblock ul.news-block {
    width: 100%;
    border-top: 5px solid #000000;
    border-bottom: 1px solid #000000;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

section.home-news-block .inblock ul.news-block li {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

section.home-news-block .inblock ul.news-block li p.date {
    width: 10%;
}


section.home-news-block .inblock ul.news-block li p.content a {
    text-decoration: none;
    color: #595959;
}



@media (max-width: 820px) {
section.home-news-block {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background-color: rgba(240, 238, 234, 1);
    background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, rgba(255, 250, 234, 1) 6px, rgba(255, 250, 234, 1) 7px );
}
section.home-news-block .inblock {
    width: 95%;
    margin: auto;
}

section.home-news-block .inblock ul.news-block li p.date {
    width: 17%;
}
section.home-news-block .inblock ul.news-block li p.content {
    width: 83%;
    text-align: left;
}
}


@media (max-width: 540px) {
section.home-news-block .inblock ul.news-block {
    width: 95%;
    margin: auto;
    border-top: 5px solid #000000;
    border-bottom: 1px solid #000000;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
section.home-news-block .inblock ul.news-block li {
    display: flex;
    align-items: start;
    box-sizing: border-box;
    font-size: 2vh;
    text-align: left;
}
section.home-news-block .inblock ul.news-block li p.content {
    width: 75%;
    font-size: 2.1vh;
    line-height: 1.3;
    text-align: left;
}
section.home-news-block .inblock ul.news-block li p.date {
    width: 25%;
    font-size: 2vh;
    line-height: 1.3;
    padding-top: 3px;
}
}















/* 画像スライド */
section.slide-block {
    width: 100%;
    margin: -6px auto 0;
    padding: 10px 0;
    overflow: hidden;
    background-color: #000000;
}

.slide-thumbnail1 {
	margin-bottom: -12px;
}

.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


	/*レスポンシブ sp */
	@media screen and (max-width:540px) {
		.slide-thumbnail1  {
			width: 150%;
		}
		.slide-thumbnail1 p.cap  {
			font-size: 1.5vh;
			padding-left: 5px;
		}
	}
	/*レスポンシブ sp */
	@media screen and (max-width:420px) {
		.slide-thumbnail1 p.cap  {
			font-size: 1.2vh;
			padding-left: 5px;
		}
	}
















/* スポンサー */
section.home-sponcer-block {
    position: relative;
    width: 100%;
    padding: 100px 0;
}

section.home-sponcer-block .inblock {
    width: 1080px;
    margin: auto;
}

section.home-sponcer-block .inblock .cap-box {
    border: 1px solid #868686;
    padding: 20px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.5;
    color: #797979;
}

section.home-sponcer-block .inblock ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 50px 0;
    border-bottom: 1px dotted #595959;
}

section.home-sponcer-block .inblock ul li.widthPlatinum {
    width: 60%;
    margin: auto;
}

section.home-sponcer-block .inblock ul li.widthGold {
    width: 40%;
    margin: auto;
}

section.home-sponcer-block .inblock ul li {
    width: 30%;
    margin: auto;
}

section.home-sponcer-block .inblock li img {
    width: 80%;
}

@media (max-width: 820px) {
section.home-sponcer-block {
    position: relative;
    width: 100%;
    padding: 50px 0;
}
section.home-sponcer-block .inblock {
    width: 95%;
    margin: auto;
}

}




@media (max-width: 540px) {
section.home-sponcer-block .inblock ul li.widthPlatinum {
    width: 100%;
    margin: auto;
}

section.home-sponcer-block .inblock ul li.widthGold {
    width: 50%;
    margin: auto;
}

section.home-sponcer-block .inblock ul li {
    width: 50%;
    margin: auto;
}

section.home-sponcer-block .inblock li img {
    width: 90%;
}
}











/* ページ下部 問い合わせ */
section.footer-contact-block {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
}

section.footer-contact-block .staff {
    position: relative;
    width: 33.3%;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

section.footer-contact-block .staff a {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
}

section.footer-contact-block .staff::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    background: url('../img/home/recruit_back.jpg') no-repeat;
    background-size: 130%;
    background-position: 50% 70%;
    opacity: 0.2;
    z-index: -1;
}

section.footer-contact-block .contact {
    position: relative;
    width: 33.3%;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

section.footer-contact-block .contact a {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
}

section.footer-contact-block .contact::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    background: url('../img/home/contact_back.jpg') no-repeat;
    background-size: 120%;
    background-position: 50% 50%;
    opacity: 0.2;
    z-index: -1;
}

section.footer-contact-block .company {
    position: relative;
    width: 33.3%;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

section.footer-contact-block .company a {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
}

section.footer-contact-block .company::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    margin: auto;
    background: url('../img/home/company_back.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 0.2;
    z-index: -1;
}

section.footer-contact-block p.title {
   font-size: 35px;
   margin-bottom: -10px
}

section.footer-contact-block p.title-sub {
   font-size: 14px;
   color: #ffffff;
   margin-bottom: 20px;
   letter-spacing: 1px;
}


@media (max-width: 820px) {
section.footer-contact-block {
    width: 100%;
    height: 200px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
}
}

@media (max-width: 540px) {
section.footer-contact-block {
    width: 100%;
    height: 110px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
}

section.footer-contact-block p.title {
   font-size: 3.5vh;
   margin-top: 25%;
   margin-bottom: 0px
}

section.footer-contact-block p.title-sub {
   font-size: 1.3vh;
   color: #ffffff;
   margin-bottom: 20px;
   letter-spacing: 1px;
}
}










/* =================== FOOTER =================== */
footer.footer {
    width: 100%;
    padding: 50px 0;
}

.footer .logo {
    width: 200px;
    margin: auto;
}

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

.footer .copy {
    text-align: center;
    font-size: 12px;
}