body {
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
}
body * {
    box-sizing: border-box;
}
/* Google fonts */
/* ROBOTO --------
.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*/
/* NOTO Sans JP
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
/* common */
h2 {
    font-size: 40px;
}
img {
    width: 100%;
}
/* header */
header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 20px 30px;
    pointer-events: none;
}
.header-inner {
    display: flex;
    justify-content: space-between;
}
h1#logo {
    font-size: 22px;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}
/*html.open header #logo a{
    color: #fff;
}*/
html.open header #logo {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s;
}
h1#logo.scrolled {
    opacity: 0;
}
.menu-trigger {
    background-color: #000;
}
@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    h1#logo {
        font-size: 18px;
    }
    header {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 560px) {
    header {
        padding: 5px 10px;
    }
    h1#logo, div#logo {
        font-size: 18px;
    }
}

/* menu ghs --- common */
/*.header-menu-smp-close-button {
    display: none;
}
.header-menu-smp {
    background: -moz-linear-gradient(left, #b966d8 5%, #f5576c 95%);
	background: -webkit-linear-gradient(left, #b966d8 5%, #f5576c 95%);
	background: linear-gradient(to right, #b966d8 5%, #f5576c 95%);
    background-color: rgba(255, 255, 255, 0.95);
}
.menu-wrapper a {
    color: #fff;
}
ul.menu_global ul.sub-menu a:hover {
    color: #333;
}

.header-menu-smp ul.menu_global > li.menu-item-has-children > a::after {
    background-image: url("../images/menu-arrow_bk.png");
}
.header-menu-smp ul.menu_global ul.sub-menu {
    background-color: transparent;
}
.menu_link-flex-wrapper a.btn {
    border-color: #fff;
}
.menu_link-flex-wrapper a.btn::before {
    background: transparent;
    border-color: #fff;
}*/
/* menu ghs --- common */

html, body {
      margin: 0;
      padding: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden; /* ページ全体のスクロールを抑制 */
      /*background: #fff;*/
    }
    /* 横スクロール用ラッパー */
    .h-scroll-wrapper {
      width: 100vw;       /* 5 セクション × 100vw */
      height: 100vh;
      overflow-x: auto;   /* 横スクロールを許可 */
      overflow-y: hidden;
      /*scroll-snap-type: x mandatory;*/
    }
    /* スクロールバーを隠す */
    .h-scroll-wrapper::-webkit-scrollbar {
      display: none;
    }
    .h-scroll-wrapper {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .h-scroll-innear {
        display: flex;
        position: relative;
    }
    section {
      /*flex: 0 0 100vw;*/
      height: 100vh;
      scroll-snap-align: start;
        flex: 1 0 auto;
    }
    #section1 { 
        background: transparent;
        flex: 1 0 auto;
    }
    #section2 { }
    /* section2 */
    section.topics {
        padding-top: 0px;
    }
    /*#section3 { background: rgba(255,230,172,0.3); }*/
    #section4 { background: transparent; }
    /*#section5 { background: rgba(238,238,238,0.3); }*/
    #section6 { background: transparent; }
    #section7 { background-color: transparent; }
    /*#section8 { background-color: rgba(238,238,238,0.3); }*/
    /* section8 */
    section.access {
        padding-top: 0;
    }
    
    /* footerセクションは縦スクロール用のスタイル */
    section#footer { 
      background-color: #f4f4f4; 
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      /*height: 100vh;*/
      height: auto;
      min-height: 100vh;
      z-index: 10;
      transform: translateY(100vh);
      padding-top: 40px;
      display: flex;
      align-items: center;
    }
    section#footer .section-inner {
        position: relative;
        display: block;
        padding: 0;
    }
    section#footer .flex-block-wrapper {
        justify-content: center;
    }
    .footer-linkbox {
        width: 55%;
    }
    .linkbox {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0 30px 50px;
    }
    #footer .linkbox .btn {
        font-size: 14px;
        font-weight: 500;
        max-width: 300px;
    }
    #footer .footer-address-info {
        max-width: 1200px;
        margin: 0 auto;
        display: -webkit-flex;
        display: -o-flex;
        display: flex;
        gap: 30px;
        padding: 40px 30px;
        border-top: 2px solid #333;
        border-bottom: 2px solid #333;
    }
    #footer .address-info {
        width: 25%;
        min-width: 300px;
    }
    #footer .add-name {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    img.logo-mark {
        width: 32px;
    }

    .add-name h4 {
        font-size: 18px;
        margin-bottom: 0;
    }
    .footer-linkbox > h3 {
        font-size: 24px;
    }
    .add {
        margin-top: 10px;
    }
    .add p {
        font-weight: bold;
    }

    #footer .access-wrap {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 50px;
    }
    #footer .access-wrap h3 {
        width: 100%;
        margin-bottom: 0;
    }
    #footer .access-row {

    }
    .ac-name > h6 {
        margin-top: 0;
        font-weight: bold;
        margin-bottom: 0.6em;
    }
    .map-linktip {
        font-size: 14px;
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        padding: 2px 10px 5px;
        line-height: 1;
        border-radius: 30px;
        margin-left: 10px;
        
        background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
        background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
        background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
    }
    .map-link {
        margin-top: 10px;
    }
    .ac-info {
        font-weight: bold;
    }
/* 関連学校 links */
#footer .footer-school-linkbox {
    width: 100%;
    background-color: #ccc;
    padding: 20px 10px;
    margin-top: 30px;
}
#footer .footer-school-linkbox .school-link {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 10px;
}
#footer .school-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    flex: 1;
    font-size: 11px;
    color: #fff;
    /*background-color: #2F9976;*/
    background-color: #258DA5;
    min-height: 80px;
    border: solid 1px #fff;
}

.footer-school-logo {
    font-size: 34px;
    font-weight: 900;
    display: flex;
    align-items: flex-end;
}
.footer-school-logo > img {
    width: 40%;
    max-width: 150px;
}

.copy {
    padding: 10px;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (max-width: 1200px) {
    #footer .linkbox {
        margin: 0 20px;
    }
    #footer .footer-address-info {
        margin: 0 20px;
    }
}
@media screen and (max-width: 1023px) {
    #footer .footer-address-info {
        padding: 20px;
    }
    #footer .footer-school-linkbox .school-link {
        flex-wrap: wrap;
        gap: 12px;
    }
    #footer .school-link a {
        flex: unset;
        width: calc(25% - 9px);
    }
}
@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .footer-school-linkbox {
        width: 100%;
    }
    
    .footer-address-info {
        padding: 20px;
    }

    .school-link a {
        font-size: 13px;
        padding: 5px;
    }
    .school-link a + a {
        margin-top: 0;
    }
    .access-wrap h3 {
        font-size: 20px;
    }
    .access-row,
    .access-row + .access-row {
        margin-top: 10px;
    }
    .ac-name {
        font-size: 14px;
    }
    .ac-name > h6 {
        font-size: 16px;
    }
    .ac-info p {
        font-size: 12px;
    }

}

@media screen and (max-width: 767px) {
    #footer .footer-address-info {
        flex-direction: column;
    }
    #footer .school-link a {
        flex: unset;
        width: calc((100% / 3) - 8px);
    }
}

@media screen and (max-width: 560px) {
    section {
        height: 100dvh;
    }
    #footer .section-inner {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 50px;
    }
    
    #footer .linkbox {
        padding: 0 0 30px;
        justify-content: center;
        gap: 20px;
        margin: 0 10px;
    }
    
    #footer .footer-address-info {
        padding: 20px 10px;
        margin: 0 10px;
        gap: 20px;
    }
    #footer .access-wrap {
        gap: 10px 20px;
    }
    .address-info {
        width: 100%;
    }
    
    .footer-linkbox .linkbox a.btn {
        padding: 10px 40px 10px 10px;
        min-height: 50px;
    }
    .footer-school-linkbox {
        margin-top: 20px;
    }
    #footer .footer-school-linkbox .school-link {
        gap: 10px;
    }
    #footer .school-link a {
        font-size: 10px;
        width: calc(50% - 5px);
        min-height: 50px;
    }
}

    /* Canvas は常に固定 */
    canvas {
      position: fixed;
        z-index: -5;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      display: block;
      pointer-events: none;
    }

/* common */
section {
    padding-top: 80px;
}
/*@media screen and (max-width: 1000px) {
    section {
        flex: 1 1 100vw;
        min-width: 1000px
    }
}*/
.section-inner {
    padding-left: 80px;
    padding-right: 80px;
    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    section {
        padding-top: 50px;
    }
    .section-inner {
        padding-left: 50px;
        padding-right: 50px;
    }
    .h-scroll-innear section:last-of-type .section-inner {
        padding-right: 0;
    }
}
@media screen and (max-width: 560px) {
    /*section {
        height: 100dvh;
    }*/
}
/* btn */
.btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
a.btn {
    display: flex;
    align-items: center;
    min-height: 68px;
    width: 350px;
    background-color: #fff;
    border: solid 2px #000;
    padding: 10px 55px 10px 15px;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    position: relative;
}
a.btn::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 6px;
    top: 6px;
    background-color: red;
    border: solid 1px #000;
    transition: all 0.3s ease-out;
}
a.btn:hover::before {
    top: 1px;
    left: 1px;
}
a.btn::before {
    background: -moz-linear-gradient(left, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
	background: -webkit-linear-gradient(left, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
	background: linear-gradient(to right, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
}
a.btn.blue::before {
    background: -moz-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: -webkit-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: linear-gradient(to right, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
}
a.btn.purple::before {
    background: -moz-linear-gradient(left, #a18cd1, #a18cd1 5%, #fbc2eb 95%, #fbc2eb);
	background: -webkit-linear-gradient(left, #a18cd1, #a18cd1 5%, #fbc2eb 95%, #fbc2eb);
	background: linear-gradient(to right, #a18cd1, #a18cd1 5%, #fbc2eb 95%, #fbc2eb);
}
a.btn.orange::before {
    background: -moz-linear-gradient(left, #fa709a, #fa709a 5%, #fee140 95%, #fee140);
	background: -webkit-linear-gradient(left, #fa709a, #fa709a 5%, #fee140 95%, #fee140);
	background: linear-gradient(to right, #fa709a, #fa709a 5%, #fee140 95%, #fee140);
}
a.btn::after {
    content: 'more';
    position: absolute;
    font-size: 14px;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* top -- defalt layout */

/*  */
.flex-block-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 80px;
}
.flex-block-wrapper.flex-column-block {
    flex-direction: column;
    gap: 50px;
    align-items: center;
}
.image-block {
    max-width: 350px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
.image-block.reverse {
    flex-direction: column-reverse;
    padding-bottom: 30px;
}
.image-box-text {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    min-height: 78px;
    background-color: #fff;
    border-radius: 20px;
    border: solid 2px #000;
    margin-bottom: 30px;
}
.image-block.reverse .image-box-text {
    margin-bottom: 0;
    margin-top: 30px;
}

a.image-link {
    display: block;
    width: 350px;
    position: relative;
    z-index: 0;
}
a.image-link::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}
a.image-link > img {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a span.more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
    border: solid 1px #000;
    border-radius: 50%;
    line-height: 1;
    padding-bottom: 5px;
}

a span.more::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 3px;
    left: 3px;
    background-color: #fff;
    border: solid 1px #000;
    border-radius: 50%;
    z-index: -1;
    transition: top 0.3s ease-out, left 0.3s ease-out;
    box-sizing: border-box;
}
a.image-link:hover span.more::after{
    top: -1px;
    left: -1px;
    transform: scale(1.1);
}
@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    
}
@media screen and (max-width: 560px) {
    .image-block {
        max-width: 340px;
    }
    .image-block a.image-link > img {
        max-width: 340px;
    }
    
}


h6 {
    font-size: 18px;
    font-weight: 500;
}

/* h6 decoration */
h6.under-line {
    font-size: 20px;
    margin-top: 20px;
}
.under-line span {
    display: inline-block;
    padding-bottom: 8px;
    padding-right: 5px;
    position: relative;
}
.under-line span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
}

/* section1 --- first view */
/* main image --- Large Text Collage */
section#section1 .section-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: unset;
    height: 100%;
    padding: 0;
}

.main-textImage-block {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.main-textImage-slider {
    display: flex;
    gap: 100px;
    /*animation: scroll-left 25s infinite linear .5s both;*/
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.main-textImage {
    font-size: 19vw;
    line-height: 1;
    font-weight: bold;
    padding-right: 50px;
    padding-left: 50px;
    min-width: 100vw;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center
}
.main-textImage img {
    width: auto;
    max-height: 310px;
    height: 45vh;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    
}
@media screen and (max-width: 560px) {
    .main-textImage {
        padding-right: 10px;
        padding-left: 10px;
    }
    .main-textImage img {
        /*height: 240px;*/
        height: 90px;
    }
}

/* news/blog/event & links */
.main-sub-contents-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px 40px;
    width: 100vw;
    position: sticky;
    left: 0;
}

.news-block-wrapper {
    width: 340px;
    background-color: #fff;
    border: solid 2px #000;
    padding: 10px;
    position: relative;
}
.news-block-wrapper::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 6px;
    top: 6px;
    border: solid 2px #000;
    background: -moz-linear-gradient(left, #fa71cd, #fa71cd 5%, #c471f5 95%, #c471f5);
	background: -webkit-linear-gradient(left, #fa71cd, #fa71cd 5%, #c471f5 95%, #c471f5);
	background: linear-gradient(to right, #fa71cd, #fa71cd 5%, #c471f5 95%, #c471f5);
}
.news-block-wrapper > ul {
    display: flex;
    gap: 10px;
}
.news-block-wrapper > ul > li {
    list-style: none;
    font-weight: 900;
    padding: 10px;
    color: #5f3aff;
    opacity: 0.3;
    cursor: pointer;
}
.news-block-wrapper > ul > li.active {
    opacity: 1;
}
/* EVENT */
.news-contents-block {
    display: none;
}
.news-contents-block.active {
    display: block;
}
.top-info-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
/* news */
.top-info-row.news-row {
    padding: 10px;
}
.n-day {
    font-size: 12px;
    color: #808080;
    width: 100%;
}
.n-title {
    font-size: 14px;
    width: 100%;
    font-weight: bold;
}
/* blog */
.top-info-row.blog-row {
    padding: 10px;
}
.b-day {
    font-size: 12px;
    color: #808080;
    padding-right: 5px;
}
.b-cat {
    padding-left: 5px;
    font-size: 10px;
    border-left: 1px solid #000;
}
.b-cat > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding: 3px 4px;
    color: #fff;
    background-color: #aaa;
    border-radius: 10px;
}
.b-cat > span.c-1 {background-color: #ff0083;}
.b-cat > span.c-2 {background-color: #16b800;}

.b-title {
    font-size: 14px;
    width: 100%;
    font-weight: bold;
}
/* event */
.news-contents-block.event {
    padding: 2px 0 10px;
}
.event-row {
    display: flex;
    padding: 10px 0;
}
.e-title {
    flex: 1;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.e-day + .e-title {
    padding-left: 10px;
    border-left: 2px solid #000;
}
.e-day {
    font-size: 32px;
    font-weight: 900;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: end;
    min-width: 130px;
    padding-right: 10px;
    line-height: 1;
}
.e-day span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 2px 10px 4px;
    background-color: #2eafba;
    border-radius: 20px;
    vertical-align: middle;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .news-block-wrapper > ul > li {
        padding: 5px 10px;
    }
    .main-sub-contents-block {
        padding: 10px 20px 20px;
    }
    .news-block-wrapper {
        padding: 5px;
    }
    .news-contents-block.event {
        padding: 0 5px 10px;
    }
    .event-row {
        padding: 8px 5px;
    }
    .e-day {
        font-size: 24px;
        min-width: 105px;
        padding-right: 0;
    }
    .e-day span {
        font-size: 10px;
        padding: 3px 8px 4px;
    }
}
@media screen and (max-width: 560px) {
    .main-sub-contents-block {
        padding: 10px 20px 20px 10px;
        flex-direction: column-reverse;
    }
    /* news */
    .news-block-wrapper {
        width: 100%;
    }
    .news-block-wrapper > ul > li {
        padding: 0 8px;
    }
    .e-day {
        font-size: 20px;
        min-width: 90px;
    }
    .e-day span {
        padding: 3px 6px 4px;
    }
    .e-title {
        font-size: 14px;
    }
    /* sns */
    .main-link {
        padding: 5px;
    }
}
/* main links */
.main-link-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-link {
    padding: 10px 0;
}
.main-link + .main-link {
    border-top: 1px solid #000;
}
.main-link a {
    display: flex;
    align-items: center;
    width: 235px;
    padding: 10px 40px 10px 5px;
    /*border: solid 1px #000;
    background-color: #eee;*/
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
}
/*.main-link a.jhs-line {
    background: -moz-linear-gradient(left, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
	background: -webkit-linear-gradient(left, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
	background: linear-gradient(to right, #d4fc79, #d4fc79 5%, #96e6a1 95%, #96e6a1);
}
.main-link a.shs-line {
    background: -moz-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: -webkit-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: linear-gradient(to right, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
}
.main-link a.instagram {
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
}*/
.main-link a > span {
    color: #000;
    display: inline-block;
    /*margin-right: 5px;*/
}
img.sns-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.main-link a[href*="line.me"]::before {
    background-image: url("../images/hosen-icon_line.webp");
}
.main-link a[href*="instagram.com"]::before {
    background-image: url("../images/hosen-icon_insta.webp");
}
.main-link a::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 10px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("../images//hosen_arrow-right.webp");
    background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
    transition: right 0.3s ease-out;
}
.main-link a:hover::after {
    right: 10px;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .main-link a::before {
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    img.sns-icon {
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 560px) {
    .main-sub-contents-block {
        gap: 10px;
    }
    .main-link-wrapper {
        max-width: 330px;
    }
    .main-link {
        padding: 0;
    }
    .main-link a {
        width: 100%;
    }
    .main-link a::after {
        right: 10px;
    }
}
/* section -- topics */
.topics-block-wrapper {
    padding: 0 20px 30px;
}
/*.topics-block-wrapper h2 {
    margin-bottom: 20px;
}*/
.topics-title {
    display: flex;
	flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
.topics-title h2 {
    font-size: 30px;
    font-weight: 400;
}
.topics-title .title-en {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.topics-block {
    display: flex;
    flex-wrap: wrap;
    /*gap: 30px;*/
    width: 860px;
}
.topicks-box {
    /*width: calc(100% / 3 - 20px);*/
    /*max-width: 287px;*/
    flex: 1 1 auto;
    width: 287px;
    /*min-width: 287px;
    max-width: 287px;*/
    padding: 15px;
}
.topicks-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 100%;
    font-size: 0;
}
.topicks-box a img {
    height: auto;
}
/* slic slide */
.topics-block.slick-slider {
    display: block;
    padding-bottom: 60px;
}
/*.topics-block.slick-slider .slick-slide {
    display: flex !important;
    flex-direction: column;
}
.topics-block.slick-slider .slick-slide > div {
    flex: 1;
}*/
.topics-block.slick-slider .topicks-box a {
    display: block;
    position: relative;
    background-color: #FFFFFF;
}
.topics-block.slick-slider .topicks-box a::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}
.topics-block.slick-slider .topicks-box a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topics-block.slick-slider .slick-arrow {
    display: block !important;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    top: auto;
    bottom: 0;
    transform: none;
}
.topics-block.slick-slider .slick-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
}
.topics-block.slick-slider .slick-prev {
    left: auto;
    right: 75px;
}
.topics-block.slick-slider .slick-prev::before {
    transform: translate(-30%, -50%) rotate(45deg);
    border-bottom-color: #fff;
    border-left-color: #fff;
}
.topics-block.slick-slider .slick-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
    border-top-color: #fff;
    border-right-color: #fff;
}
.topics-block.slick-slider .slick-prev.slick-disabled,
.topics-block.slick-slider .slick-next.slick-disabled {
    opacity: 0.5;
}
@media screen and (max-width: 1023px) {
    .topics-block {
        width: 700px;
    }
    .topicks-box {
        padding: 10px;
    }
}
@media screen and (max-height: 700px) {
    .topics-block {
        width: 700px;
    }
    .topicks-box {
        padding: 10px;
    }
}
@media screen and (max-height: 767px) {
    .topics-block {
        width: 630px;
    }
}
@media screen and (max-width: 560px) {
    .topics-block {
        width: 350px;
    }
}

/* section -- blog */
.news-article-block-wrapper {
    display: flex;
    width: 1200px;
}
.news-title-wrap {
    width: calc(25% + 30px);
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.news-title-wrap .title-box {
	
}
.news-title-wrap .title-box {
    display: flex;
	flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
.news-title-wrap .title-box h2 {
    font-size: 30px;
    font-weight: 400;
}
.news-title-wrap .title-box .title-en {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.news-title-image {
    text-align: center;
}
.news-title-image img {
    max-height: 310px;
    width: auto;
}
/* article */
ul.top-news-tabList {
    display: flex;
    gap: 20px;
    justify-content: end;
    padding-bottom: 30px;
}
ul.top-news-tabList li {
    font-size: 14px;
    opacity: 0.7;
    padding-left: 1em;
    position: relative;
    cursor: pointer;
}
ul.top-news-tabList li:hover,
ul.top-news-tabList li.active {
    opacity: 1;
}
ul.top-news-tabList li::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
    left: 0;
    top: 0.5em;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
ul.top-news-tabList li.active::before {
    opacity: 1;
}
/*.top-news-contentWrapper {
    height: 545px;
}*/
.news-article-wrap {
    flex: 1;
}
.article-wrappe {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 50px;
}
.article-wrappe .article {
    width: calc(100% / 3 - 34px);
}

.article-wrappe .article a {
    display: block;
    background-color: #f4f4f4;
    color: inherit;
    text-decoration: none;
}
.article-wrappe .article a:hover {
    background-color: #fff;
}
.article-thumb {
    position: relative;
}
.article-thumb::before {
    content: '';
    display: block;
    padding-bottom: 66.66%;
}
.article-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.article-date {
    font-size: 12px;
}
h5.article-title {
    font-size: 14px;
}
.article-text {
    padding: 10px;
}
.article-thumb {
    position: relative;
}
.article-thumb::before {
    content: '';
    display: block;
    padding-bottom: 55%;
}
.article-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-wrappe .btn-wrap {
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    section.blog {
        padding-top: 0;
    }
    .news-article-block-wrapper{
        width: auto;
    }
    .news-title-wrap {
        width: 230px;
    }
    .news-article-wrap {
        flex: unset;
        width: 600px;
    }
    .article-wrappe {
        gap: 20px;
    }
    .article-wrappe .article {
        width: calc(100%/ 3 - 14px);
    }
    .top-news-contentWrapper {
        height: auto;
    }
    .news-title-image img {
        max-height: 250px;
    }

}
@media screen and (max-width: 560px) {
    ul.top-news-tabList {
        flex-wrap: wrap;
        justify-content: start;
        gap: 10px;
    }
    ul.top-news-tabList li {
        font-size: 12px;
    }
    
    .news-article-wrap {
        width: 350px;
    }
    .article-wrappe .article {
        width: calc(50% - 10px);
    }
    .article-wrappe .article:nth-of-type(5),
    .article-wrappe .article:nth-of-type(6) {
        display: none;
    }
}
/* event */
.event-block {
    width: 500px;
    flex-basis: 500px;
}
.event-block h2 {
    position: relative;
    z-index: 1;
    text-align: right;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: -30px;
}
.event-box {
    padding: 60px 40px;
    background-color: #f4f4f4;
    position: relative;
    z-index: 0;
}
.event-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
    border-bottom: 1px solid #000;
}
.event-date {
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-date > span {
    font-size: 16px;
    color: #fff;
    width: 40px;
    height: 40px;
    background-color: #aaa;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.event-date > span.w6 {
    background: -moz-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: -webkit-linear-gradient(left, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
	background: linear-gradient(to right, #3d9af4, #3d9af4 5%, #90cde3 95%, #90cde3);
}
.event-date > span.w0 {
    background: -moz-linear-gradient(left, #f43d86, #f43d86 5%, #e390b7 95%, #e390b7);
	background: -webkit-linear-gradient(left, #f43d86, #f43d86 5%, #e390b7 95%, #e390b7);
	background: linear-gradient(to right, #f43d86, #f43d86 5%, #e390b7 95%, #e390b7);
}
.event-title {
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width: 767px), screen and (max-height: 700px) {
    .event-block h2 {
        font-size: 56px;
    }
    .event-box {
        padding: 40px 30px 30px;
    }
    .event-box > p {
        font-size: 14px;
    }
    .event-row {
        padding: 5px 3px;
    }
    .event-date {
        font-size: 24px;
    }
    .event-date > span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .event-title {
        font-size: 16px;
    }
    
}
@media screen and (max-width: 560px) {
    .event-block.in-view {
        width: 370px;
    }
    a.btn {
        max-width: 100%;
    }
    .event-box {
        padding: 40px 20px 30px;
    }
}

/* course */
.course-block {
    /*flex-basis: 790px;*/
    max-width: 790px;
}
.course-title {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}
.course-title h2 {
    font-size: 30px;
    font-weight: 400;
}
.course-title .title-en {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}
.course-detile {
    display: flex;
    gap: 30px;
}
.course-text {
    flex: 1;
}
.course-text p {
    line-height: 1.8;
}
.course-image {
    width: 355px;
    padding-left: 20px;
}
.course-image img {
    opacity: 0;
    transform: translateX(50%) rotate(10deg);
    transition: transform 0.8s ease-out 0.4s, opacity 0.6s ease-out 0.4s;
}
.in-view .course-image img {
    transform: translateX(0);
    opacity: 1;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .course-text p {
        font-size: 14px;
    }
    .course-detile {
        align-items: center;
    }
    .course-image {
        width: 290px;
    }
    .course-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .course-title {
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 560px) {
    .course-block {
        max-width: 640px;
    }
    .course-title {
        width: 350px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }
    .course-text {
        flex: none;
        width: 330px;
    }
    .course-detile {
        align-items: flex-start;
    }

}

/* column -- club title */
.course-block.column {
    width: 550px;
}
.course-block.column .course-detile {
    flex-direction: column;
}
.course-block.column .course-image {
    width: 100%;
    padding: 0;
}
@media screen and (max-width: 560px) {
    .course-block.column {
        width: 360px;
        margin-right: 30px;
    }
}

.mt30 {
    margin-top: 30px;
}

/* page link */
.page-link-block {
    width: 360px;
    flex-basis: 360px;
    padding: 10px;
    padding-top: 70px;
}
.page-link-block:nth-of-type(odd) + .page-link-block {
    padding-top: 0;
}

.page-link-block a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.page-link-title_en {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 1s;
    transform: translateX(-30px);
}
.in-view .page-link-title_en {
    transform: translateX(0px);
}
.page-link-image {
    position: relative;
    z-index: 0;
    margin-top: -20px;
}
.page-link-image::before {
    content: '';
    display: block;
    padding-bottom: 125%;
}
.page-link-image img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80px;
    transition: all 1s;
}
.page-link-block.in-view .page-link-image img {
    object-position: center;
}
.page-link-image span {
    position: absolute;
}

.page-link-text {
    margin-top: 10px;
}
.page-link-text.page-link-text-flex {
    display: flex;
    gap: 20px;
}
.flex-link-image {
    width: 90px;
}
.flex-link-text {
    flex: 1;
}
.page-link-block h3 {
    font-size: 30px;
}
.page-link-block a p {
    line-height: 1.8;
    margin-top: 10px;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .page-link-block {
        padding: 30px 0 10px;
        width: 280px;
    }
    .page-link-title_en {
        font-size: 40px;
    }
    .page-link-block h3 {
        font-size: 24px;
    }
    .page-link-block a p {
        font-size: 14px;
        line-height: 1.6;
    }
    .page-link-image::before {
        padding-bottom: 120%;
    }

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

/* club */
section.club .flex-block-wrapper {
    align-items: center;
}

.course-detile.club-detile .course-image img {
    max-height: 250px;
    width: auto;
    display: block;
    margin: auto;
}

.club-link-block {
    flex-basis: 460px;
    width: 460px;
    position: relative;
    z-index: 0;
}
.club-link-block.club-sp {
    width: 550px;
    flex-basis: 550px;
    padding-right: 60px;
}

.title-en {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}
.club-image {
    position: relative;
    z-index: -1;
    overflow: hidden;
}
.club-link-block a.btn {
    width: 100%;
    max-width: 380px;
    margin-top: -30px;
    font-size: 30px;
    padding: 10px 60px 10px 20px;
    color: #fff;
    
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
}
.club-link-block .btn-style {
	display: flex;
    align-items: center;
    min-height: 68px;
    background-color: #fff;
    border: solid 2px #000;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-top: -30px;
    font-size: 30px;
    padding: 10px 60px 10px 20px;
    color: #fff;
    
    background: -moz-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: -webkit-linear-gradient(left, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
	background: linear-gradient(to right, #b966d8, #b966d8 5%, #f5576c 95%, #f5576c);
}
.club-link-block a.btn::before {
    background: #fff;
}
.club-link-block .btn-style::before {
	content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 6px;
    top: 6px;
    border: solid 1px #000;
    background: #fff;
}
.club-link-block a.btn::after {
    font-size: 16px;
}

.club-link-block h3 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
}
a.bg-black {
    width: 328px;
    display: block;
    height: 183px;
    margin-left: auto;
}
.club-image::before {
    content: '';
    display: block;
    padding-bottom: 50%;
}
.club-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateX(80%);
    transition: all 0.6s ease-out;
}
.club-link-block.in-view .club-image img {
    transform: translateX(0%);
}
a.bg-black img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.club-link-block.club-sp .ather-link-box {
    margin-right: -60px;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    
    .course-detile.club-detile .course-image img {
        max-height: 210px;
    }
    
    .title-en {
        font-size: 48px;
    }
    .club-link-block {
        width: 380px;
    }
    .club-link-block.club-sp {
        display: flex;
        width: auto;
        flex-basis: unset;
        gap: 30px;
        padding-right: 30px;
    }
    .club-link {
        width: 350px;
    }
    .club-link-block.club-sp .ather-link-box {
        margin-right: 0;
        display: flex;
        align-items: flex-end;
    }
	.club-link-block .btn-style,
    .club-link-block a.btn {
        font-size: 24px;
    }
    .club-link-block h3 {
        font-size: 24px;
    }
    
}
@media screen and (max-width: 560px) {
    .club-link-block h3 {
        font-size: 20px;
    }
	.club-link-block .btn-style,
    .club-link-block a.btn {
        font-size: 20px;
    }
}

/* 制服 */
.uniform-image-block {
    max-width: 600px;
}
section.uniform .course-block.column {
    width: auto;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
}
@media screen and (max-width: 560px) {
    
}

/* access - アクセス */
.flex-text-block-wrap {
    display: flex;
    gap: 40px;
    max-width: 960px;
}
.flex-image-box {
    width: 30%;
}
.flex-text-box {
    flex: 1;
}


.access-block-wrapper {
    display: flex;
    max-width: 1130px;
    padding-right: 30px;
}
.access-arrow-box {
    width: 260px;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}
.access-arrow-title {
    padding: 30px 20px 35px;
    background-image: url(../images//hosen-access-arrow.webp);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: -20px;
}
.access-arrow-title h3 {
    font-size: 20px;
}
.access-arrow-title h3 span {
    /* display: inline-block; */
    font-size: 24px;
    margin-right: 10px;
}

.access-data-box {
    flex: 1;
    display: flex;
    gap: 30px;
    
    padding: 30px;
    border: 1px solid #000;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 0;
}
.access-text {
    flex: 1;
}
.access-text > :first-child {
    margin-top: 0;
}
.access-text p {
    font-size: 14px;
    margin-top: 1em;
}

.access-image {
    width: 33%;
}
.access-data-box a.btn {
    width: calc(100% + 50px);
    margin-bottom: -50px;
}

@media screen and (max-width: 1023px), screen and (max-height: 700px) {
    .flex-block-wrapper {
        gap: 60px;
    }
    .flex-block-wrapper.flex-column-block {
        flex-direction: row;
    }
    .flex-text-block-wrap {
        flex-direction: column;
        max-width: 540px;
        gap: 20px;
    }
    .flex-image-box {
        width: 100%;
        max-width: 330px;
        text-align: center;
    }
    .flex-text-box p {
        font-size: 14px;
    }
}
@media screen and (max-width: 560px) {
    .flex-text-block-wrap {
        width: 330px;
        gap: 10px;
    }
    
    /* access block */
    .access-block-wrapper {
        flex-direction: column;
        padding-right: 0;
    }
    
    .access-arrow-box {
        padding-top: 0;
    }
    .access-arrow-title h3 {
        font-size: 16px;
    }
    .access-arrow-title h3 span {
        font-size: 18px;
    }
    .access-arrow-title {
        margin-right: 0;
        margin-bottom: -40px;
        margin-left: 20px;
    }
    .access-data-box {
        padding: 30px 15px 15px;
        margin-right: 30px;
    }
    .access-text p {
        font-size: 13px;
    }
    .access-text {
        width: 330px;
        flex: none;
    }
    .access-image {
        width: 300px;
    }
    .access-image a.btn {
        margin-top: 20px !important;
        max-width: unset;
        width: 330px;
    }
    .flex-image-box img {
        max-width: 250px;
    }

}

/*
--- goolge reCaptcha
---------------------------------------------------------------------------*/
.grecaptcha-badge {
    display: none;
}






