/* ============================
* base
* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
:root{
    --orange: #e45927;
}
html{
    font-size:18px;
    overflow-x:hidden;
}
body {
	background: #fff;
	color: #333;
	font-family: 'Noto Sans JP', serif, 'Roboto';
    font-weight:500;
	font-feature-settings: "palt";
	font-size: 1em;
	font-weight: 500;
	line-height: 1.5;
    overflow-x: hidden;
    margin:0;
}
@media screen and (max-width: 767px) {
	body {
		font-size: .8em;
        line-height: 1.3;
	}
}
a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
img {
	border-style: none;
	box-sizing: border-box;
	height: auto;
	object-fit: cover;
	max-width: 100%;
	vertical-align: bottom;
}
li {
	list-style: none;
}
h3 {
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.6rem;
}
p {
	line-height: 1.6;
}
.btn{
    cursor:pointer;
}
.btn-area__center{
    text-align:center;
    margin:2rem auto;
    display:flex;
    justify-content:center;
}
.btn-black{
    background: #000;
    color: #fff;
    padding: 1rem 5rem;
    text-align: center;
    font-size: 1.0em;
    font-weight: bold;
    border:none;
}
.btn-black:hover{
    background: var(--orange);
}
.btn-orange{
    background: var(--orange);
    color: #fff;
    padding: 1rem 5rem;
    text-align: center;
    font-size: 1.0em;
    font-weight: bold;
    border:none;
}
.btn-orange:hover{
    opacity:.8;
}
.c-wrapper-fluid{
    width:100%;
    max-width:2500px;
    margin:0 auto;
}
.c-wrapper-width{
    width:100%;
    max-width:1280px;
    margin:0 auto;
}
.c-wrapper-fluid-width{
    width:100%;
    max-width:1500px;
    margin:0 auto;
}
.topimage_pc {
	width: 100%;
	display:block;
}
.topimage_sp{
	width:100%;
	display:none;
}
.br-768{
    display:none;
}
@media screen and (max-width:1280px){
    .c-wrapper-width{
        width:95%;
    }
    .c-wrapper-fluid-width{
        max-width:1200px;
    }    
	.topimage_pc {
		display:none;
	}
	.topimage_sp{
		display:block;
	}
}
@media screen and (max-width:768px){
    .btn-area__center{
        margin:1rem auto;
    }
    .btn-black{
        padding:0.7rem 3rem;
    }
    .btn-orange{
        padding:0.7rem 3rem;
    }
    .br-768{
        display:block;
    }
}
.breadcrumb{
    margin:2rem 0 1rem;
    display:flex;
    gap:15px;
}
.breadcrumb a:hover{
    color:var(--orange);
}
.breadcrumb span:last-child{
    color:var(--orange);
}
.pagetop__wrapper{
    position:relative;
}
.page_title{
    position:absolute;
    color:#fff;
    font-size:3.8em;
    top:50%;
    left:5%;
    transform: translateY(-50%);
    margin:0;
    text-shadow: 1px 1px 10px var(--orange);
}
@media screen and (max-width: 1280px) {
    .page_title{
        font-size:3.0em;
    }
}
@media screen and (max-width:768px){
    .page_title{
        font-size:2.0em;
    }
    .breadcrumb{
        margin:1rem 0 1rem;
        display:flex;
        gap:15px;
    }    
}
/*header*/
.header {
    background: #fff;
    box-shadow: 2px 2px 4px 0px #ebebeb;
    height: 145px;
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    position: relative;
    z-index: 2;
    transition: top 0.5s ease-in-out;
}
@media screen and (max-width: 1280px) {
    .header {
        height: 80px;
        margin: 0;
        position: relative;
        z-index: 2;
    }
}
.header__inner {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0.75rem 1.875rem;
    width: 100%;
    box-sizing:border-box;
}
.header-contact__mail{
    background:var(--orange);
    border-radius:25px;
    height:30px;
    padding:0.3rem 1.3rem;
    display:flex;
    align-items:center;
    justify-content:center;
}
.header-contact__mail:hover{
    opacity:.8;
}
.header-contact__btn{
    display:flex;
    gap:8px;
    color:#fff;
    margin:0;

}
.header-contact__mail a img{
    width:36px;
}
.header-contact__sns{
    display:flex;
    gap:20px;
}
.header-gnav__item{
    transition: transform 0.3s ease;
}
.header-gnav__item:hover{
    transform: translateY(-5px);
}
.header-gnav__item:hover a{
    color:var(--orange);
}
.header-gnav__link{
    text-align:center;
    font-size:1.2em;
    font-weight:bold;
}
.header-gnav__en, .header-gnav__text{
    line-height:1.2em;
    margin:0;
}
.header-gnav__text{
    font-size:.6em;
}
@media screen and (max-width: 1280px) {
    .header__inner {
        justify-content: space-between;
        align-items: center;
        padding: 0.625em;
        height: 100%;
    }
    .header-contact__sns{
        display:none;
    }    
}
.header__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height:60px;
}
.header__logo, .footer__logo {
    width: auto;
    height: 80px;
}
.header__logo img, .footer__logo img {
    width: auto;
    height: 100%;
}
@media screen and (max-width: 1280px) {
    .header__logo, .footer__logo {
        height:60px;
    }
    /*.header__logo img, .footer__logo img {
        height: auto;
        width: 100%;
    } */
}
.header__foot {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top:15px;
    align-items:center;
}
@media screen and (max-width: 1280px) {
    .header__foot {
        display: none;
    }    
}
.header-contact {
    display: block;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    height: 100%;
}
@media screen and (max-width: 1280px) {
    .header-contact {
        display: none;
    }
} 
.header-contact__icon {
	display: block;
	width: 40px;
	height: 40px;
    transition: transform 0.3s ease;
}
.header-contact__icon:hover {
    transform: scale(1.2);
}
.header-contact__icon img {
	width: 100%;
	height: 100%;
}
.header-gnav__list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 90%;
    margin:0;
    max-width:1500px;
}
.gnav-content .gnav-btn {
    display: none;
}
.gnav {
    color: #fff;
    display: none;
}
.footer-gnav {
    display: block;
    background: var(--orange);
    margin-bottom: -0.1em;
    padding-bottom: 3.75rem;
}
.footer-gnav .gnav {
    display: block;
}
.footer-gnav .gnav__inner {
    padding: 0;
}
.footer-gnav .gnav__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    overflow: inherit;
}
@media screen and (max-width: 1280px) {
    .gnav-content {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }
    .gnav-content .gnav-btn {
        background-color: var(--orange);
        border-radius: 0.25rem;
        color: #fff;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        padding: 0.625rem;
        height: 2.2rem;
        width: 2.2rem;
        z-index: 940;
        position: fixed;
        top: 0.75em;
        right: 0.75em;
        font-size:.9em;
    }
    .gnav__content{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.875rem;
        height: 100%;
        width: 100%;
    }
    .gnav-content .gnav-btn span {
        display: block;
        transition: all 0.4s;
    }    
    .gnav-content .gnav-btn span:nth-of-type(1), .gnav-content .gnav-btn span:nth-of-type(3) {
        background: #fff;
        height: 3px;
        width: 40px;
    }
    .gnav-content .gnav-btn span:nth-of-type(2) {
        font-size: 0.875em;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
    }
    .gnav-content .gnav-btn.active span:nth-of-type(1) {
        width: 30px;
        transform: translateY(1.125rem) rotate(-45deg);
    }
    .gnav-content .gnav-btn.active span:nth-of-type(3) {
        width: 30px;
        transform: translateY(-1.125rem) rotate(45deg);
    }
    .gnav-content .gnav-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .gnav {
        color: #fff;
        display: none;
    }
    .gnav.open {
        display: block;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 920;
        overflow-y:scroll;
    }
    .gnav__inner {
        padding: 3.75rem 2.5rem 2.5rem;
        height: 100%;
        width: 100%;
        box-sizing:border-box;
    }
    .gnav__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        
        height: 100%;
        width: 100%;
        /* overflow-y: scroll; */
    }
    .gnav__main {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.875rem;
        width: 100%;
    }
    .gnav__unit {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
        width: 100%;
    }
    .gnav__title {
        font-size: 1em;
        font-weight: 500;
        line-height: 1;
    }
    .gnav__list {
        width: 100%;
        padding:0;
    }
    .gnav__item {
        width: 100%;
    }
    .gnav__item:not(:first-of-type) {
        border-top: 1px dashed #fff;
    }
    .gnav__link, .gnav__link--btn {
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.75em;
        font-weight: 500;
        line-height: 1;
        padding: 0.75rem 1.875rem;
        gap:1rem;
    }
    .gnav__link span.en{
        font-size:1.2em;
        width:100px;
    }
    .gnav__link span.ja{
        font-size:1.0em;
        width:150px;
    }
    .gnav__link::after, .gnav__link--btn::after {
        content: "";
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        display: block;
        transform: rotate(45deg);
        height: 0.875rem;
        width: 0.875rem;
    }
    .gnav__link--btn {
        color: #333;
        font-size: 1em;
    }
    .gnav__link--btn::after {
        border-color: var(--orange);
    }
    .gnav__btn {
        background: #fff;
        border-radius: 100vh;
        width: 100%;
    }
    
    .circle-bg {
        position: fixed;
        z-index: 910;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--orange);
        transform: scale(0);
        top: -50px;
        right:-50px;
        /* left: calc(50% - 50px); */
        transition: all 0.6s;
    }
    .circle-bg.circleactive {
        transform: scale(50);
    }
    
    .footer-gnav {
        display: none;
    }
    .gnav__sns .gnav__list{
        display:flex;
        gap:1rem;
    }
    .gnav__contact .contact_btn{
        background:#fff;
        color:var(--orange);
        padding:0.5rem 2rem;
        border-radius:25px;
        cursor:pointer;
        display:inline-block;
        margin-bottom: 3rem;
    }
}
@media screen and (max-width: 768px) {
    .gnav__inner {
        padding: 2.75rem 1rem 1.5rem;
    }
    .gnav__unit{
        gap:0.75rem;
    }
    .gnav__content{
        gap:.5rem;
    }
}

/*index*/
.main-visual__slider__pc{
    display:block;
    max-width:1600px;
    width:100%;
    margin:0 auto;
    position:relative;
    z-index:0;
}
.main-visual__slider__sp{
    display:none;
    max-width:768px;
    width:100%;
    margin:0 auto;
    position:relative;
    z-index:0;
}
.main-visual__pc{
    display:block;
}
.main-visual__sp{
    display:none;
}
.swiper-link{
    cursor:pointer;
}
@media screen and (max-width: 768px) {
    .main-visual__slider__pc{
        display:none;
    }
    .main-visual__slider__sp{
        display:block;
    }    
}
.main_title__en{
    font-size:3em;
    margin:0px;
}
.main_title__season{
    font-size:2em;
    margin:0px 0px -10px 0px;
    color: var(--orange);
}
.main_title__en.white{
    color:#fff;
}
.sub_title__ja{
    font-size:1.0em;
    margin:0;
}
.main_title__en.title_center, .sub_title__ja.title_center{
    text-align:center;
}
@media screen and (max-width: 1024px) {
    .main_title__en{
        font-size:2.5em;
        margin:0;
    }
    .main_title__season{
        font-size:1.5em;
    }
    .sub_title__ja{
        font-size:.8em;
        margin:0;
    }
}
@media screen and (max-width: 768px) {
    .main_title__en{
        font-size:2.0em;
        margin:0;
    }
    .main_title__season{
        font-size:1.2em;
        margin:0;
    }
}
/*news*/
#sec__news{
    padding: 4rem 0;
}
.news-wrapper{
    margin-top:30px;
    position:relative;
}
.news_search_area{
    position:absolute;
    margin-top:-93px;
    right:0;
}
#sch_category{
    background: #fff;
    border: solid 1px #c0c0c0;
    border-radius: 0.3rem;
    font-size: 1em;
    padding: 0.7rem;
    width: 260px;
    box-sizing: border-box;
}
.news__inner{
    display:flex;
    gap:30px;
    flex-direction:row;
    flex-wrap:wrap;
}
.news-item {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: calc(33.333% - 30px);
    box-shadow: 0px 0px 10px #aaa;
    padding: 20px;
    cursor:pointer;
    box-sizing: border-box;
}
.news-item:hover{
    box-shadow: 0px 0px 15px #555;
    background: #f2f2f2;
}
.news-item .news-label{
    background: var(--orange);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    margin: 0;
}
.news-title{
    display:flex;
    align-items:center;
    height:60px;
}
.news-item h3{
    margin:0;
    color: var(--orange);
}
.news-item p{
    margin:0;
    font-size:.7em;
    height:70px;
}
.news-item time{
    color: var(--orange);
    text-align:right;
}
.news-item .newsimage{
    height:350px;
    overflow:hidden;
    text-align:center;
}
.news-item .newsimage img{
    width:80%;
}
.news-detail-wrapper{
    position:relative;
}
.news_title{
    font-size:1.8em;
    margin:0;
}
.news_date{
    color: var(--orange);
    margin: .5rem 0 1rem;
}
.news_category{
    background: var(--orange);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: .1rem 3rem;
    margin: 0 0 .5rem;
    display: inline-block;
}
.detail_img{
    display: flex;
    gap: 1rem;
    margin:2rem 0;
}
.detail_img > div{
    width:100%;
}
.detail_img > div.img-col1{
    max-width:100%;
}
.detail_img > div.img-col2{
    max-width:calc(100% / 2);
}
.detail_img > div.img-col3{
    max-width:calc(100% / 3);
}
.news-detail-title{
    display:flex;
    gap:1rem;
}
.title-image{
    width:15%;
}
.title-image img{
    max-height:150px;
    object-fit:cover;
}
.title-title{
    width:85%;
}
@media screen and (max-width: 1280px) {
    .news__inner{
        gap:15px;
    }
    .news-item {
        width:calc(33.333% - 15px);
    }
    .news-item h3{
        font-size:1.1em;
        line-height:1.0em;
    }
    .news-item .newsimage{
        height:345px;
        overflow:hidden;
    }
    .news-item p{
        height:80px;
    }
}
@media screen and (max-width: 1024px) {
    .news__inner{
        flex-wrap:wrap;
    }
    .news-item {
        width: calc(50% - 10px);
    }
    .news__inner.index .news-item:last-child{
        display:none;
    }
    .title-image{
        width:25%;
    }
    .title-title{
        width:75%;
    }    
}
@media screen and (max-width: 768px) {
    .news__inner{
        flex-direction:column;
        align-items:center;
    }
    .news__inner{
        gap:10px;
    }
    .news-item {
        width: calc(100% - 50px);
        padding:10px;
    }
    .news-item > img{
        width:60%;
        margin:0 auto;
    }
    .news-title{
        height:20px;
        justify-content: center;
    }
    .news-item .newsimage {
        height: auto;
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }
    .news-item p{
        height:auto;
    }
    #sch_category{
        width:130px;
        font-size: .9em;
        padding: 0.5rem;
    }
    .news_search_area{
        margin-top:-83px;
    }
    .news-detail-title{
        flex-direction:column-reverse;
        gap:0;
    }
    .title-image{
        width:80%;
        max-width:250px;
        margin:0 auto;
    }
    .title-title{
        width:100%;
    }
    .news_title{
        font-size:1.3em;
    }
    .news_date{
        font-size:1.1em;
        margin: .1rem 0 .3rem;
    }
    .news_category{
        padding:.1rem 2rem;
        margin:0 0 .3rem;
    }
    .detail_img{
        flex-direction:column;
        gap:.5rem;
        margin:.5rem 0;
    }
    .detail_img > div.img-col1{
        max-width:100%;
    }
    .detail_img > div.img-col2{
        max-width:100%;
    }
    .detail_img > div.img-col3{
        max-width:100%;
    }
}
/*philosophy*/
#sec__philosophy{
    background:#eee;
    padding:4rem 0;
}
.philosophy-wrapper{
    padding:1rem;
    position:relative;
    z-index:0;
}
.philosophy-wrapper .wrapper .list {
    display: flex;
    flex-wrap: wrap;
    margin: 80px 0 70px;
    z-index: 2;
    position: relative;
    gap:25px;
}
.philosophy-wrapper .wrapper.is-current .list li {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-fill-mode: forwards;
}
@keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 30px, 0);
      transform: translate3d(0, 30px, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.philosophy-wrapper .wrapper .list li {
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30%;
    max-width:300px;
    aspect-ratio:1;
    /* height: 300px; */
    /* margin-right: 27px; */
    background: white;
    opacity: 0;
}
.philosophy-wrapper .wrapper .list li.num1 {
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
    animation-duration: 1s;
}
.philosophy-wrapper .wrapper .list li.num2 {
    animation-delay: .7s;
    -webkit-animation-delay: .7s;
    animation-duration: 1s;
}
.philosophy-wrapper .wrapper .list li.num3 {
    animation-delay: .9s;
    -webkit-animation-delay: .9s;
    animation-duration: 1s;
}
.philosophy-wrapper .wrapper .list li .no {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    background: black;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: white;
    border-radius: 50%;
}
.philosophy-wrapper .wrapper .list li p {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
}
.philosophy-wrapper .wrapper figure {
    position: absolute;
    right: 0;
    top: 15px;
    z-index: 1;
    opacity: 0;
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
    animation-duration: .5s;
}
.philosophy-wrapper .wrapper.is-current figure {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-fill-mode: forwards;
}
@keyframes zoomIn {
    0% {
      opacity: 0;
      -webkit-transform: scale(1.5, 1.5);
      -moz-transform: scale(1.5, 1.5);
      -ms-transform: scale(1.5, 1.5);
      -o-transform: scale(1.5, 1.5);
      transform: scale(1.5, 1.5);
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@media screen and (max-width: 1280px) {
    .philosophy-wrapper .wrapper figure{
        width:50%;
        top:90px;
    }
}
@media screen and (max-width: 1024px) {
    .philosophy-wrapper .wrapper .list{
        padding:0;
    }
    .philosophy-wrapper .wrapper .list li p{
        margin:0;
    }
    .philosophy-wrapper .wrapper .list li p {
        font-size: 1.3em;
    }
}
@media screen and (max-width: 768px) {
    #sec__philosophy{
        padding:3rem 0;
    }
    .philosophy-wrapper p.flowtxt{
        margin:0.2em 0;
    }
    .philosophy-wrapper .wrapper .list li{
        width:60%;
        max-width:215px;
    }
    .philosophy-wrapper .wrapper figure{
        top:355px;
    }
    .philosophy-wrapper .wrapper .list li .no{
        width:55px;
        height:55px;
    }
    .philosophy-wrapper .wrapper .list li p {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 600px) {
    .philosophy-wrapper .wrapper .list{
        flex-direction:column;
        gap:0;
        margin:30px 0 20px;
    }
    .philosophy-wrapper .wrapper .list li.num2{
        right:-100px;
    }
    .philosophy-wrapper .wrapper figure{
        top:150px;
        width:100%;
        margin:0;
    }
}
/*TEAM & FANCLUB*/
#sec__team{
    padding:4rem 0;
}
.team__wrapper{
    display:flex;
    gap:50px;
    justify-content: space-between;
}
.team__area{
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team__area .border-black{
    width: 70%;
    border: solid 1px #000;
    margin-top: 1rem;
}
.team_img_area{
    padding:2rem 0 0;
}
.team__area img{
    height:300px;
}

/*ファンクラブ一時的に非表示*/
.team__only{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    width:100%;
    gap:100px;
}
.team__only .only__title{
    width:25%;
}
.team_img_area{
    padding:0;
}
@media screen and (max-width: 1280px) {
    .team__only{
        gap:50px;
    }
}
@media screen and (max-width: 768px) {
    .team__only{
        flex-direction:column;
        gap:0;
    }
}
/*ここまで*/

@media screen and (max-width: 1280px) {
    .team__wrapper{
        gap:30px;
    }
    .team__area{
        width:calc(50% - 30px);
    }
}
@media screen and (max-width: 768px) {
    #sec__team{
        padding:3rem 0;
    }
    .team__wrapper{
        flex-direction:column;
    }
    .team__area{
        width:100%;
    }
    .team_img_area{
        padding:1rem 0 0;
    }    
    .team__area img{
        height:200px;
    }
    .team__area .border-black{
        margin-top:.5rem;
    }
}
/*SNS*/
#sec__sns{
    padding:4rem 0;
    background:var(--orange);
}
.sns__wrapper{
    display:flex;
    gap:50px;
    justify-content: space-between;
}
.sns__area{
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1rem;
}
.sns__area a{
    color:#fff;
    font-size:1.3rem;
    cursor:pointer;
}
.sns__area a:hover{
    transform:scale(1.1);
}

.sns__wrapper .sns__area img{
    height:50px;
}
.sns__item{
    width:100%;
    background:#fff;
    border-radius:25px;
    padding:1rem;
    height:650px;
    box-sizing:border-box;
}
.sns__item > iframe{
    height:600px;
}
.site-content {
    border-top: none!important;
}
@media screen and (max-width: 1280px) {
    .sns__wrapper{
        gap:15px;
    }
    .sns__area{
        width:calc(50% - 15px);
    }   
}
@media screen and (max-width: 768px) {
    #sec__sns{
        padding:3rem 0;
    }
    .sns__wrapper{
        flex-direction:column;
        gap:30px;
        align-items: center;
    }
    .sns__area{
        width:calc(100% - 15px);
        gap:.7rem;
    }
    .sns__area a{
        font-size:1.0rem;
    }
    .sns__wrapper .sns__area img{
        height:35px;
    }
}
@media screen and (max-width: 600px) {
    .sns__item.instagram{
        height:500px;
    }
    .sns__item.instagram > iframe{
        height:450px;
    }
}
/*SCHEDULE*/
#sec__schedule{
    background:#eee;
    padding:4rem 0;
}
.schedule__wrapper{
    padding:2rem 0;
}
.schedule__area{
    display:flex;
    flex-direction: column;
    gap:15px;
}
.schedule_item{
    display:flex;
    flex-direction:column;
    background:#fff;
    box-shadow:1px 1px 15px #aaa;
    padding: 0.7rem 1rem;
}
.schedule_item .s_content{
    display:flex;
    gap:15px;
    justify-content: center;
    align-items: center;
    font-size:1.1em;
}
.schedule_item .s_battle{
    display:flex;
    gap:15px;
    justify-content: center;
    align-items: center;
}
.s_battle h2{
    margin:0;
    width:35%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height:1.0em;
}
.s_battle h2.s_onelys{
    width:35%;
}
.s_battle h2 img{
    width:85px;
    margin-right:20px;
}
.s_battle .battle_num{
    width:30%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2em;
    gap:15px;
    position:relative;
}
.s_battle .battle_num .before{
    position:absolute;
    top:0;
    font-size:14px;
}
.battle_num label:nth-of-type(1){
    width:40%;
    text-align:right;
}
.battle_num label:nth-of-type(2){
    width:20%;
    text-align:center;
}
.battle_num label:nth-of-type(3){
    width:40%;
    text-align:left;
}
.s_title label{
    background: var(--orange);
    color: #fff;
    padding: 0.3rem 1rem;
    display:inline-block;
    font-size:.85em;
}
@media screen and (max-width: 1280px) {
    .s_battle h2{
        font-size:1.2em;
    }
}
@media screen and (max-width: 768px) {
    #sec__schedule{
        padding:3rem 0;
    }
    .schedule_item{
        padding:0.5rem 0.5rem;
    }
    .s_title label{
        font-size:.7em;
        padding: 0.1rem 1rem;
        width:100%;
        box-sizing:border-box;
        margin-bottom:.5rem;
    }
    .schedule_item .s_content{
        gap:10px;
        font-size:1.0em;
    }
    .s_battle h2{
        font-size:.9em;
    }
    .s_battle h2 img{
        width:50px;
        margin-right:5px;
    }
    .schedule_item .s_battle{
        gap:5px;
    }
    .s_battle .battle_num .before{
        font-size:12px;
        top:-10px;
    }
    .s_battle .battle_num{
        gap:5px;
        font-size:1.3em;
    }
    
}
@media screen and (max-width:768px){
    .schedule_item .s_content{
        flex-wrap:wrap;
        gap: 0 10px;
    }
    .schedule_item .s_content venue{
        width:100%;
        text-align:center;
        font-size:.9em;
    }
    .schedule_item{
        padding:0.3rem 0.3rem;
    }
}
/*partner*/
#sec__partner{
    padding:4rem 0;
}
.partner__wrapper{
    padding:3rem 0;
    display:flex;
    flex-direction:column;
    align-items: center;
    background:#fff;
    gap:15px;
}
.partner_title{
    width:40%;
    margin-bottom:30px;
}
.partner_title h1{
    text-align:center;
    font-size:2.2em;
    margin:0 auto;
}
.partner-title-border{
    border:solid 2px var(--orange);
}
.official_top{
    background:var(--orange);
    padding:5rem 0;
    margin:5rem auto 0;
}
.official_partner{
    background:#eee;
    padding:5rem 0;
    margin:0 auto 5rem;
}
.partner01{
    width:90%;
}
.partner__area{
    display:flex;
    flex-wrap: wrap;
    gap:30px;
    /* margin-bottom:10rem; */
    justify-content:center;
    align-items:center;
}
.partner__area.partner03,
.partner__area.partner04,
.partner__area.partner05,
.partner__area.partner06,
.partner__area.partner07,
.partner__area.partner08{
    margin-bottom:10rem;
}
.partner__area.index{
    margin-bottom:3rem;
}
.partner__area.partner01 > .partner{
    width:calc(50% - 30px);
}
.partner__area.partner02.index > .partner{
    width:calc(25% - 30px);
}
.partner__area.partner02 > .partner,
.partner__area.partner08 > .partner{
    width:calc(33.33333% - 30px);
}
.partner__area.partner03 > .partner,
.partner__area.partner04 > .partner,
.partner__area.partner05 > .partner,
.partner__area.partner06 > .partner,
.partner__area.partner07 > .partner {
    width:calc(25% - 30px);
}
.partner__area a.partner:hover{
    transform:scale(1.1);
}
.no-logo-img{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.no-logo-img p{
    margin:.1rem 0;
}
@media screen and (max-width: 1280px) {
    .partner_title{
        width:55%;
    }
}
@media screen and (max-width: 1024px) {
    .partner_title h1{
        font-size:2.0em;
    }
    .partner__area.partner03,
    .partner__area.partner04,
    .partner__area.partner05,
    .partner__area.partner06,
    .partner__area.partner07,
    .partner__area.partner08 {
        margin-bottom: 5rem;
    }
}
@media screen and (max-width: 768px) {
    #sec__partner{
        padding:3rem 0;
    }
    .partner__wrapper{
        padding:1rem 0;
    }
    .partner_title h1{
        font-size:1.6em;
    }
    .partner__area{
        gap:15px;
    }
    .partner__area.partner01{
        flex-direction:column;
    }
    .partner__area.partner01 > .partner{
        width:100%;
    }
    .partner_title{
        margin-bottom:15px;
        width:80%;
    }
    .partner__area.partner02 > .partner,
    .partner__area.partner08 > .partner{
        width:calc(50% - 15px);
    }
    .partner__area.partner02.index > .partner{
        width:calc(33.333% - 15px);
    }
    .partner__area.partner03,
    .partner__area.partner04,
    .partner__area.partner05,
    .partner__area.partner06,
    .partner__area.partner07,
    .partner__area.partner08 {
        margin-bottom: 3rem;
    }
    .partner__area.partner03 > .partner,
    .partner__area.partner04 > .partner,
    .partner__area.partner05 > .partner,
    .partner__area.partner06 > .partner,
    .partner__area.partner07 > .partner {
        width:calc(33.333% - 15px);
    }
    .partner__area.index{
        margin-bottom:1.5rem;
    }
    .official_top{
        padding:3rem 0;
        margin:3rem auto 0;
    }
    .official_partner{
        padding:3rem 0;
        margin:3rem auto 0;
    }
    .partner__area.partner01{
        gap:0;
    }
    .no-logo-img{
        font-size:.8em;
    }
}

/*footer*/
.footer{
    background:var(--orange);
    color:#fff;
    padding: 2rem;
    margin-bottom: 1rem;
}
.footer__inner{
    max-width:1280px;
    margin:0 auto;
    display:flex;
    flex-direction:row;
    gap:30px;
    box-sizing:border-box;
}
.footer__contact, .footer__gnav{
    width:50%;
}
.footer__contact{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.footer__contact_sp{
    display:none;
}
.footer__contact h3{
    margin:0;
    font-size:1.8em;
}
.footer__contact h5{
    margin-top:10px;
}
.contact_form_area{
    display:flex;
    flex-direction:row;
    align-items: center;
    gap:20px;
    color:#fff;
}
.contact_form_area img{
    width:45px;
}
.contact_form_area:hover img{
    -webkit-animation-name: wobble-vertical;
    animation-name: wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@keyframes wobble-vertical{
    16.65%{-webkit-transform:translateY(8px);transform:translateY(8px)}
    33.3%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}
    49.95%{-webkit-transform:translateY(4px);transform:translateY(4px)}
    66.6%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}
    83.25%{-webkit-transform:translateY(1px);transform:translateY(1px)}
    100%{-webkit-transform:translateY(0);transform:translateY(0)}
}
footer{
    width:100%;
    text-align:center;
}
footer p{
    margin:0 auto 10px;
}
.footer__copyright{
    font-size:.8em;
}
.footer-gnav__list{
    display:flex;
    flex-wrap:wrap;
}
.footer-gnav__item{
    width:50%;
    transition: transform 0.3s ease;
}
.footer-gnav__link{
    color:#fff;
}
.footer-gnav__item:hover{
    transform: translateX(10px);
}
.footer-gnav__en{
    margin:.5rem;
}
.footer-gnav__en::before{
    content:'-';
    color:#fff;
    margin-right:10px;
    font-weight:bold;
}
@media screen and (max-width: 1024px) {
    .footer__contact h3{
        font-size:1.5em;
    }
}
@media screen and (max-width: 768px) {
    .footer{
        padding:2rem 1rem;
    }
    .footer__inner{
        flex-direction:column;
        align-items:center;
        gap:10px;
    }
    .footer__contact_sp{
        display:block;
    }
    .footer__contact_sp .contact_btn {
        background: #fff;
        color: var(--orange);
        padding: 0.5rem 2rem;
        border-radius: 25px;
        cursor: pointer;
        display: inline-block;
    }
    .contact_form_area.pc{
        display:none;
    }
    .footer__contact, .footer__gnav {
        width: 100%;
    }
    .footer__contact{
        align-items: center;
    }
    .footer__contact h5{
        margin-top:0;
        margin-bottom: 0;
    }
    .contact_form_area img{
        width:30px;
    }
    .footer-gnav__list{
        margin:0;
    }
    .footer-gnav__en{
        margin:.3rem;
    }
}
/*TEAM*/
.team__inner{
    display:flex;
    flex-wrap:wrap;
    gap:50px;
    box-sizing:border-box;
    padding:1rem 0;
}
.team__items{
    margin:0;
    padding:0;
    width:calc(33.33333% - 50px);
    background:#333;
    color:#fff;
    /* z-index:0; */
    overflow:hidden;
    cursor:pointer;
    border: solid 3px #fff;
}
.team__items:hover{
    box-shadow: 0px 0px 10px gray;
    border-radius:5px;
}
.team__items:hover .t-item{
    background:#000;
}
.team__items:hover img{
    transform:scale(1.1);
}
.team__items img{
    width: 100%; /* 横幅を100% */
    height: 376.65px; /* ここで高さを統一（必要に応じて調整） */
    object-fit: cover; /* 画像を適切にカットしながらフィット */
    object-position: center; /* 縦中央に配置 */
    display: block; /* 余計な隙間を防ぐ */
}

.t-item{
    margin:0;
    padding:1rem;
    position:relative;
    z-index:0;
}
.t-item li.name{
    font-size:1.5em;
}
.team__items[data-id="29"] .t-item li.name{
    font-size:1.3em;
}
.t-item li.post{
    font-size:1.3em;
}
.t-item li.r_number{
    font-size:4.5em;
    color:var(--orange);
    position:absolute;
    right:20px;
    z-index:-1;
}
#sec__roster{
    padding:4rem 0;
}
#sec__staff{
    background:#eee;
    padding:4rem 0;
}
#sec__company{
    padding:4rem 0;
}
.company__inner{
    padding:1rem;
    border:solid 1px #ccc;
    border-radius: 25px;
}
.company__wrapper{
    padding:1rem 0;
}
.company__inner dl{
    display:flex;
    flex-wrap:wrap;
    margin:0;
    gap:15px 50px;
}
.company__inner dl dt{
    background:#eee;
    width:40%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.company__inner dl dd{
    width:40%;
    margin:0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.company__inner dl dd.emblem img{
    width:160px;
}
.company__inner dl dd.mascot img{
    width:100px;
}
.company__inner dl dd.mascot span{
    margin-left:15px;
}
#sec__schedule_before{
    padding:4rem 0;
}
@media screen and (max-width: 1280px) {
    #sec__roster, #sec__staff, #sec__company{
        padding:3rem 0;
    }
}
@media screen and (max-width: 1024px) {
    #sec__roster, #sec__staff, #sec__company{
        padding:2rem 0;
    }
    .team__items{
        width:calc(50% - 50px);
    }
    .company__inner dl{
        gap:15px 25px;
    }
    .company__inner dl dt{
        width:35%;
    }
    .company__inner dl dd{
        width:50%;
    }
}
@media screen and (max-width: 768px) {
    .team__inner{
        gap:15px;
    }
    .team__items{
        width:calc(50% - 15px);
    }
    .t-item{
        padding:.5rem;
        font-size:.8em;
    }
    .t-item li.r_number{
        font-size:3.5em;
    }
    .company__inner dl{
        flex-direction:column;
    }
    .company__inner dl dt{
        padding:.5rem;
        width:100%;
        box-sizing: border-box;
    }
    .company__inner dl dd{
        width:100%;
        justify-content: center;
    }
}

/*モーダルCSS*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index:9;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
    display:block;
    opacity: 1;
    visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 1200px;
    width: 85%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
    background: #fff;
    color:#333;
    text-align: left;
}
/*モーダルEND*/

/*Modal内*/
.content-head{
    display:flex;
    justify-content: space-between;
    background: linear-gradient(0deg, black, var(--orange), var(--orange));
    color:#fff;
    padding:2rem 3rem;
}
.modal-content .content-head .profile{
    display:flex;
    width:60%;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position:relative;
}
.modal-content .content-head .photo{
    display:flex;
    justify-content: flex-end;
    width:40%;
}
.modal-content .content-head .photo img{
    width:90%;
    box-shadow:0 0 10px #000;
}
.profile ul.prof_01{
    font-size:7rem;
    font-weight:bold;
    padding:0;
}
.profile ul.prof_02{
    display:flex;
    flex-direction: column;
    gap:5px;
    font-size:1.3rem;
    font-weight:bold;
    padding:0;
}
.profile ul.prof_02 li.name{
    font-size:2em;
}
.modal-container[data-id="29"] .profile ul.prof_02 li.name{
    font-size:1.7em;
}
.profile ul.prof_02 li.position{
    font-size:1.5em;
}
.profile .sns{
    position:absolute;
    right:0;
    bottom:0;
    display:flex;
    gap:10px;
}
.profile .sns img{
    height:45px;
}
.profile .sns a:hover{
    transform:scale(1.1);
}
.content-body{
    padding: 3rem 5rem 3rem;
}
.content-body .comment{
    margin-bottom:3rem;
}
.content-body .comment p{
    font-size:1.5rem;
    padding-left:1rem;
}
.content-body .prof_tb{
    width: 100%;
    border: solid 1px #333;
    margin: 1rem auto;
    padding: 3rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap:15px 0;
    border-radius:25px;
}
.prof_tb dt{
    width:40%;
    margin:0;
    background: #333;
    color: #fff;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 25px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.prof_tb dd{
    width:60%;
    margin:0;
    padding: 1rem 1rem 1rem 2rem;
    box-sizing: border-box;
}
.prof_tb dd a:hover{
    color:var(--orange);
}
@media screen and (max-width: 1280px) {
    .content-head{
        padding:1rem 1.5rem;
    }
    .modal-content .content-head .profile{
        width:50%;
    }
    .modal-content .content-head .photo{
        width:50%;
    }
    .profile ul.prof_01{
        font-size:5rem;
    }
    .profile ul.prof_02{
        font-size:1.1rem;
    }
    .content-body{
        padding:2rem 3rem 2rem;
    }
    .content-body .prof_tb{
        padding:1rem;
    }
}
@media screen and (max-width: 1024px) {
    .modal-body{
        width:90%;
    }
    .modal-content .content-head .profile{
        flex-direction:column;
        gap:0;
    }
    #sec__staff .modal-content .content-head{
        gap:1rem;
    }
    .modal-content .content-head .photo img{
        max-width:400px;
    }
    .profile ul.prof_01{
        margin:0;
    }
    .profile ul.prof_02{
        margin:0;
        font-size:1.0em;
    }
    .content-body {
        padding: 2rem 1rem 2rem;
    }
    .content-body .comment p{
        font-size:1.2rem;
    }
    .prof_tb dt{
        padding:.5rem;
    }
    .prof_tb dd{
        padding:.5rem;
    }
    .profile .sns img{
        height:35px;
    }
}
@media screen and (max-width: 768px) {
    .modal-body {
        width: 95%;
    }
    .content-body{
        padding:1rem .5rem 1rem;
    }
    .modal-close{
        top:-20px;
        right:-20px;
    }
    .content-head{
        flex-direction:column-reverse;
    }
    .profile ul.prof_01{
        font-size:3.5rem;
    }
    .profile ul.prof_02{
        font-size:.9em;
    }
    .modal-content .content-head .photo{
        width:100%;
        justify-content:center;
    }
    .modal-content .content-head .profile{
        width:100%;
        justify-content:center;
    }
    .profile ul.prof_02{
        width:100%;
    }
    .content-body .comment p {
        font-size: 1.0em;
        margin: .5rem 0;
    }
    .content-body .comment{
        margin-bottom: 1.5rem;;
    }
    .content-body .prof_tb{
        margin:.5rem auto;
        padding:.5rem;
        flex-direction:column;
        gap:0;
    }
    .prof_tb dt{
        width:100%;
        font-size: .7em;
        padding: 0.3rem;
    }
    .prof_tb dd{
        width:100%;
        text-align: center;
    }

}
/*Modal内END*/

/*Contact*/
#sec__contact{
    margin:50px auto;
}
#sec__contactform{
    background:#eee;
    padding: 2rem 0 6rem;
}
.contact__attention{
    border: solid 1px #333;
    padding: 1rem 2rem 2rem;
    margin: 3rem auto;
}
.contact__attention ul li{
    list-style: disc;
    margin-bottom:5px;
}
.contact-form__wrapper{
    display:flex;
    flex-direction:column;
    gap:1rem;
    width: 80%;
    margin: 0 auto;
}
#sec__contactform .contact-form__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
}
#sec__contactform .contact-form__item {
    width: 100%;
}
#sec__contactform .contact-form__name {
    color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    font-size: 1em;
    line-height: 1;
}
#sec__contactform .contact-form__must {
    background: #e53947;
    border-radius: 3px;
    color: #fff;
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    padding: 0.375rem;
    margin: 0.375rem 0;
}
#sec__contactform .contact-form__textarea,
#sec__contactform .contact-form__select {
    margin-top: 0.625rem;
    position: relative;
}
#sec__contactform .contact-form__textarea .form-input {
    background: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1em;
    padding: 0.625rem;
    width: 100%;
    box-sizing:border-box;
}
#sec__contactform .contact-form__select .form-input {
    background: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1em;
    padding: 0.625rem;
    width: 100%;
    box-sizing:border-box;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    color:#333;
}
#sec__contactform .contact-form__select::after {
    content: "▼"; /* 下向きの矢印 */
    font-size: 0.75em;
    position: absolute;
    top: 50%;
    right: 1rem; /* 矢印の位置を調整 */
    transform: translateY(-50%);
    pointer-events: none; /* 矢印部分がクリックされないようにする */
    color: #333; /* 矢印の色を設定 */
}
#sec__contactform .contact-form__submitBtn {
    background: #333;
    border: none;
    border-radius: 100vh;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    padding: 1.25rem 2.5rem;
    width: 100%;
    margin-top:2rem;
}
#sec__contactform .contact-form__submitBtn:hover{
    background:var(--orange);
}
.form-input:focus-visible{
    outline:none;
}
.contact__proc_area{
    height: 500px;
    padding: 3rem 0;
    margin: 0 auto;
}
.contact__proc_area p{
    line-height:2.0em;
    text-align:center;
    margin-bottom:5rem;
}
.privacy_policy{
    padding:1rem;
}
.privacy_policy_open{
    font-weight:bold;
    color:var(--orange);
    cursor:pointer;
    margin-left:.1rem;
}
@media screen and (max-width: 1024px) {
    .contact__attention{
        margin: 1rem auto;
        padding: 1rem 1rem 1rem;
    }
    .contact__attention h2{
        margin:.5rem;
    }
    #sec__contactform .contact-form__submitBtn{
        font-size:1.1rem;
    }
}
@media screen and (max-width: 768px) {
    #sec__contactform .contact-form__submitBtn{
        font-size:1.0rem;
        padding: 1rem 2rem;
        margin-top:1rem;
    }
    .contact-form__wrapper{
        width:100%;
    }
    #sec__contactform .contact-form__select .form-input{
        width:100%;
    }
}

/*Fanclub*/
#sec__fanclub_head{
    margin-bottom:4rem;
}
#sec__fanclub_body{
    background:#000;
    padding:4rem 0;
    color:#fff;
}
.fanclub_img_area{
    display:flex;
    align-items:center;
    position:relative;
}
.fanclub_img_area img{
    width:100%;
}
.fanclub_img_area h1{
    position:absolute;
    right:0;
    font-size: 6rem;
    line-height: 7rem;
}
.fanclub_img_area h1 span{
    color:var(--orange);
}
.fanclub_info{
    padding:0;
    margin:0;
}
.fanclub_info li{
    border-bottom: solid 1px #fff;
    font-size: 1.5rem;
    padding: .8rem;
}
.fanclub_title{
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: .3rem;
    margin: 6rem auto 2rem;
}
.fanclub_table_area{
    padding:1rem 0;
}
.fanclub_tb{
    border-collapse: collapse;
    table-layout:fixed;
    width:100%;
    font-size:1.1rem;
}
.fanclub_tb tbody tr th, .fanclub_tb tbody tr td{
    border:solid 1px #fff;
    padding:1.3rem 1rem;
    text-align:center;
}
.fanclub_tb tbody tr th:first-child{
    width:32%;
}
.fanclub_tb tbody tr th:not(:first-child){
    width:17%;
}
.fanclub_tb tbody tr:first-child{
    height:100px;
}
.fanclub_tb tbody tr th{
    font-size:1.1em;
}
.fanclub_tb tr.border-none th,
.fanclub_tb tr.border-none td {
    border: none;
}
.fanclub_tb .join-text {
    text-align: right;
    font-weight: bold;
    font-size: 1.3rem;
}
.fanclub_tb .join-text::after {
    content: "→";
    display: inline-block;
    font-size: 1.8rem;
    margin-left: 10px;
}
.join-btn{
    width:90%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
    font-size:1em;
    font-weight:bold;
    box-shadow:0px 4px 6px rgba(0,0,0,0.2);
    text-align:center;
    border-radius:15px;
    cursor:pointer;
    box-sizing: border-box;
    margin:0 auto;
    transition: all 0.2s ease-in-out;
}
.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.join-btn:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.fanclub_table_area p{
    text-align:center;
}
.silver {
    background: linear-gradient(135deg, #dcdcdc 0%, #c0c0c0 50%, #a8a8a8 100%);
    color:#000;
}
.gold {
    background: linear-gradient(135deg, #d4af37 0%, #ba9157 50%, #8c6239 100%);
    color:#000;
}
.platinum {
    background: linear-gradient(135deg, #d6d7d9 0%, #adb0b2 50%, #8e9092 100%);
    color:#000;
}
.diamond {
    background: linear-gradient(135deg, #bbc2ca 14%, white 51%, #bbc2ca 89%);
    color:#000;
}
.fanclub_flow{
    margin-bottom:100px;
}
.fanclub_flow .step{
    border: solid 3px #fff;
    padding: 1rem;
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
    box-sizing:border-box;
    align-items:center;
    justify-content:center;
}
.step label{
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}
.step label::after {
    content: '';
    display: block;
    width: 200%;
    height: 5px;
    background: linear-gradient(to right, #fff 30%, var(--orange) 30%, var(--orange) 70%, #fff 70%);
    margin-top: 10px;
    position: absolute;
    left: -50%;
    bottom: -10px;
}
.step_03_detail{
    width:100%;
}
.step_03_detail .grade{
    padding:0;
    margin:0;
    display:flex;
    gap:1rem;
    width:100%;
    max-width:800px;
    margin:1rem auto;
    box-sizing:border-box;
}
.fanclub_flow > .step h3{
    margin-bottom:10px;
}
.grade li{
    width:25%;
    padding:1rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    cursor:pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: none;
    user-select: none; /* テキスト選択不可 */
}
.grade li:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.grade li:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.step_03_detail p{
    text-align:center;
}
.arrow {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid var(--orange); /* 矢印の色 */
    margin: 20px auto;
}
.fanclub_note{
    font-size:.7em;
    line-height:1.1;
}
@media screen and (max-width: 1280px) {
    #sec__fanclub_head{
        margin-bottom:3rem;
    }
    #sec__fanclub_body{
        padding:3rem 0;
    }
    .fanclub_img_area h1{
        font-size:5rem;
        line-height:6rem;
    }
    .fanclub_info li{
        font-size:1.3rem;
    }
}
@media screen and (max-width: 1024px) {
    #sec__fanclub_head{
        margin-bottom:2rem;
    }
    #sec__fanclub_body{
        padding:2rem 0;
    }
    .fanclub_img_area h1{
        font-size:3rem;
        line-height:4rem;
    }
    .fanclub_info li{
        font-size:1.0rem;
    }
    .fanclub_title{
        padding:.7rem;
    }
    .fanclub_tb{
        font-size:1.0rem;
    }
    .fanclub_tb tbody tr th{
        font-size:1.0em;
    }
    .fanclub_tb .join-text{
        font-size:1.0em;
        text-align:center;
    }
    .fanclub_tb .join-text::after{
        font-size:1.2em;
    }
    .join-btn{
        width:100%;
    }
    .step label{
        font-size:1.8rem;
    }
}
@media screen and (max-width: 768px) {
    .fanclub_img_area h1 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .fanclub_info li{
        font-size:0.8rem;
    }
    .fanclub_title{
        margin: 3rem auto 1rem;
    }
    .fanclub_tb {
        font-size: 0.7rem;
    }
    .fanclub_tb tbody tr th:first-child{
        width:25%;
    }
    .fanclub_tb tbody tr th:not(:first-child){
        width:25%;
    }
    .fanclub_tb tbody tr th, .fanclub_tb tbody tr td{
        padding:1.2rem .1rem;
    }
    .step label{
        font-size:1.2rem;
    }
    .fanclub_flow{
        margin-bottom:50px;
    }
    .fanclub_flow .step{
        padding:.8rem .5rem;
    }
    .step h3{
        font-size:.9rem;
        letter-spacing:0px;
        line-height:1.0rem;
    }
    .arrow{
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 20px solid var(--orange);
        margin:15px auto;
    }
    .step_03_detail .grade{
        gap:.3rem;
        margin: .7rem auto;
    }
    .grade li{
        padding:.8rem .3rem;
        font-size:.8rem;
    }
}

#sec__school{
    padding:4rem 0;
}
#sec__sc_detail{
    background:#eee;
    padding:4rem 0;
}
#sec__u15{
    background:var(--orange);
    padding:4rem 0;
}
.u15__wrapper{
    padding:1rem;
    position:relative;
}
#sec__u15 p{
    color:#fff;
    font-weight:bold;
    text-align:center;
}
.school__wrapper{
    padding:1rem;
    position:relative;
    z-index:0;
}
.school_image__area{
    display:flex;
    gap:0;
    width:100%;
}
.school_image__area img{
    width:50%;
}
.u15_school_image__area{
    display:flex;
    gap:0;
    width:100%;
}
.u15_school_image__area img{
    width:calc(100% / 3);
}
.place_area_wakayama{
    display:flex;
    gap:3rem;
    box-sizing:border-box;
}
.place_area_osaka{
    display:flex;
    gap:1.5rem;
    box-sizing:border-box;
    flex-wrap:wrap;
}
.place_area_wakayama .school_detail{
    width:50%;
}
.place_area_osaka .school_detail{
    width:calc(25% - 1.3rem);
}
.school_detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 2rem;
    background:#fff;
    box-sizing: border-box;
}
.school_detail .small{
    font-size:.7em;
    position:absolute;
    margin-top:4rem;
}
.school_detail h3{
    width:100%;
    background: var(--orange);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin:0;
}
.school_detail dl{
    display:flex;
    flex-wrap:wrap;
    position:relative;
}
.school_detail dl dt{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:35%;
    margin:0;
    border-bottom: solid 2px var(--orange);
    padding: 1rem 0;
    font-weight:bold;
}
.school_detail dl dd{
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:65%;
    margin:0;
    border-bottom: solid 2px #aaa;
    padding: 1rem 0;
}
.school_detail dl dt:nth-child(5),school_detail dl dt:nth-child(6){
    height:56px;
}
.school_detail dl dt:nth-child(7),school_detail dl dt:nth-child(8),
.school_detail dl dt:nth-child(9),school_detail dl dt:nth-child(10){
    height:85px;
}
@media screen and (max-width: 1280px) {
    .school_detail .small{
        font-size:.6em;
        left:1rem;
    }
    #sec__school{
        padding:3rem 0;
    }
    #sec__sc_detail{
        padding:3rem 0;
    }
    #sec__u15{
        padding:3rem 0;
    }
    .place_area_wakayama{
        gap:1.5rem;
    }
    .place_area_wakayama .school_detail{
        width:calc(50% - 1rem);
    }
    .place_area_osaka .school_detail{
        width:calc(50% - 1rem);
    }
}
@media screen and (max-width: 1024px) {
    #sec__school{
        padding:2rem 0;
    }
    #sec__sc_detail{
        padding:2rem 0;
    }
    #sec__u15{
        padding:2rem 0;
    }
    .place_area_wakayama{
        gap:1rem;
    }
    .place_area_osaka{
        gap:1rem;
    }
    .school_detail{
        padding:1rem;
    }
    .school_detail h3{
        font-size:1.1em;
        padding:.5rem 0;
    }
}
@media screen and (max-width: 768px) {
    .school__wrapper{
        padding:1rem 0;
    }
    .u15__wrapper{
        padding:1rem 0;
    }
    .school_image__area{
        flex-direction:column;
    }
    .school_image__area img{
        width:100%;
    }
    .u15_school_image__area{
        flex-wrap:wrap;
    }
    .u15_school_image__area img{
        width:95%;
        margin:0 auto;
    }
    .place_area_wakayama{
        flex-direction:column;
    }
    .place_area_osaka{
        flex-direction:column;
    }
    .place_area_wakayama .school_detail, .place_area_osaka .school_detail{
        width:100%;
    }
    .school_detail dl dt{
        padding:.8rem 0;
    }
    .school_detail dl dd{
        padding:.8rem 0;
    }
    .school_detail .small{
        position:relative;
        margin-top:0;
        left:0;
    }
    .school_detail dl dt:nth-child(5),school_detail dl dt:nth-child(6){
        height:auto;
    }
    .school_detail dl dt:nth-child(7),school_detail dl dt:nth-child(8),
    .school_detail dl dt:nth-child(9),school_detail dl dt:nth-child(10){
        height:auto;
    }    
}

/*Activities*/
#sec__activities{
    padding:4rem 0;
}
#sec__report{
    background:#eee;
    padding:4rem 0;
}
.report-item{
    background: #fff;
    padding: 2rem;
    margin: 4rem auto;
}
.report__photo_area{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    margin:0;
    padding:0;
}
.report__photo_area li{
    width:calc(50% - 1rem);
}
.report_title{
    font-size:1.8em;
    margin:0;
}

@media screen and (max-width: 1280px) {
    #sec__activities{
        padding:3rem 0;
    }
    #sec__report{
        padding:3rem 0;
    }
}
@media screen and (max-width: 1024px) {
    #sec__activities{
        padding:2rem 0;
    }
    #sec__report{
        padding:2rem 0;
    }
    .report__photo_area{
        gap:.3rem;
    }
    .report__photo_area li{
        width:calc(50% - .3rem);
    }    
    .report-item{
        padding: 1rem;
        margin:2rem auto;
    }
    .report_title{
        font-size:1.3em;
    }
    
}


/*ComingSoon*/
#comingsoon{
    height: 500px;
}
#comingsoon .comingsoon_area{
    height: 300px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#comingsoon p{
    font-size:3rem;
    text-align:center;
    color:#aaa;
}
@media screen and (max-width: 768px) {
    #comingsoon{
        height:350px;
    }
    #comingsoon p{
        font-size:2rem;
    }
}