*,h1,h2,h3,h4,h5,p,a{
    font-family: "yu-gothic-pr6n", sans-serif;
    font-family:  sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #707070;
    letter-spacing: 0;
    /* outline: 2px solid blue; */
    /* max-width:100% */
}
img,a{
    display: block;
}
.header{
    padding: 0 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 70px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}
.header-logo{
    width: 130px;
    z-index: 9999;
}
.header-info-btn{
    border: 3px solid #707070;
    color: #707070;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
}
.header-link{
    color: #333;
}
.info-sp{
    display: none;
}
.header-mail-icon{
    width: 40px;
}
.btn-bg{
    position: absolute;
    top: -350px;
    left: -350px;
    width: 400px;
    height: 400px;
    transform: rotate(45deg);
    background: #707070;
    z-index: -1;
    transition: all 0.5s ease-in;
}
.header-info-btn:hover .btn-bg{
    top: -250px;
    left: -250px;
    transition: all 0.5s ease-out;
}
.header-info-btn:hover{
    color: #fff;
    transition: all 0.5s ease-out;
}
.contact-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 145px;
    right: 20px;
    background: rgba(196, 182, 154, 1);
    padding: 20px;
    z-index: 999;
    transition: all 0.3s;
}
.contact-btn:hover{
    /* outline: 5px solid #000; */
    transition: all 0.3s;
    /* background: rgba(196, 182, 154, 1); */
}
.contact-btn-second{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: rgba(88, 85, 85, 1);
    padding: 20px;
    z-index: 999;
    transition: all 0.3s;
}
.contact-btn:hover .contact-arrow{
    transition: all 0.3s;
    left: 20px;
    opacity: 1;
}
.contact-btn-second:hover .contact-arrow{
    transition: all 0.3s;
    left: 20px;
    opacity: 1;
}
.contact-text{
    color: #fff;
    font-size: 14px;
    letter-spacing: 0em;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    padding-bottom: 10px;
}
.arrow{
    position: relative;
}
.contact-arrow{
    max-width: 120px;
    position: absolute;
    bottom: 10px;
    left: -80px;
    opacity: 0;
    transition: all 0.3s;
}
.con-btn{
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.con-btn.is-active{
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}
.fv-section{
    position: relative;
}
.fv-section::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #434242;
    background: #000;
    opacity: 0.8;
    z-index: 1;
}
.slider{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slide{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}
.add-animation {
    /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
    /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
    animation: zoom-fade 10s both;
  }
  
  @keyframes zoom-fade {
  
    0% {
      /*transform: scale(1.05);*/
      transform: scale(1);
    }
  
    100% {
      /*transform: scale(1);*/
      transform: scale(1.1);
    }
}
.fv-text-area{
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}
.fv-first-text{
    font-size: 20px;
    line-height: 2;
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    width: 250px;
    margin: 0 auto;
    font-weight: bold;
}
.fv-logo{
    width: 250px;
    margin: 40px auto;
}
.fv-second-text{
    font-size: 20px;
    line-height: 2;
    color: #fff;
    text-align: center;
    font-weight: bold;
}
.title-section{
    height: 200px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-title{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #3B3B3B;
    line-height: 1.2;
}
.sub-title{
    font-size: 25px;
    line-height: 1.8;
    color: #5b5b5b;
    position: relative;
    text-align: center;
}
.sub-title::before{
    position: absolute;
    top: 22px;
    left: -55px;
    content: "";
    width: 40px;
    border-bottom: 2px solid #5b5b5b;
}
.sub-title::after{
    position: absolute;
    top: 22px;
    right: -50px;
    content: "";
    width: 40px;
    border-bottom: 2px solid #5b5b5b;
}
.article-container::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/about-bg.webp);
    background-position: 0 0;
    background-size: cover;
    z-index: -1;
}
.article-container{
    padding: 150px 0px;
}
.article-content{
    background: rgba(255, 255, 255, 0.95);
    /* background: #fff; */
    margin: 50px auto;
    width: 1080px;
    padding: 140px 120px;
}
.article-title{
    font-size: 60px;
    font-weight: bold;
    line-height: 1.5;
    color: #3B3B3B;
    text-align: right;
    width: 560px;
    position: relative;
}
.article-title::before{
    content: "";
    width: 100px;
    position: absolute;
    top: 45px;
    left: 10px;
    border: 2px solid #3B3B3B;
}
.article-title-btm{
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    color: #3B3B3B;
    margin-bottom: 40px;
}
.article-text{
    font-size: 20px;
    font-weight: bold;
    color: #5b5b5b;
    line-height: 2;
}
.font-a{
    font-size: 12px;
    color: #5b5b5b;
    font-weight: bold;
}
.font-b{
    font-size: 35px;
    color: #3b3b3b;
    /* text-shadow: #000 0px 0 2px; */
    font-weight: 900;
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    line-height: 2.3;
    z-index: 20;
    /* margin: 10px 0 20px 0; */
}
.font-b::after{
    position: absolute;
    bottom: 0px;
    left: -150%;
    content: "";
    width: 620px;
    width: 100%;
    height: 100%;
    /* clip-path: polygon(1% 0%, 100% 0, 99% 100%, 0% 100%); */
    background:  #3b3b3b;
    background:  rgba(223, 237, 28, 0.8);
    /* background:  #000; */
    transition: all 1.5s;
    z-index: -1;
}
.font-b.is-active.font-b::after{
    left:0px;
}
.article-btm-img{
    /* display: flex; */
    margin: 40px 0 0 0;
}
.article-btm-img img{
    width: 50%;
    height: auto;
    flex-shrink: 0;
    border: 1px solid #000;
    margin: 0 50px 0 0;
    flex-shrink: 0;
}
.article-btm-text{
    font-size: 14px;
    color: #5b5b5b;
    font-weight: bold;
    line-height: 2;
    margin-top: 40px;
}
.company-section{
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 100px 0;
    background-image: url(../img/sponsors-bg.png);
    background-position: 40% 40%;
    background-size: cover;
    /* background: #000; */
}
.company-title{
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.00em;
    color: #fff;
    text-align: center;
    padding: 100px 0 50px 0;
}
.company-container {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: 50px auto;
    width: 1080px;
    max-width: 100%;
    gap: 0 100px;
}
.company-content{
    width: 290px;
    margin: 50px 0;
}
.company-content:hover.company-content img{
    transform: scale(1.2);
    transition: all 0.5s;
}
.company-img-outer{
    width: 290px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.company-img-outer::before{
    content: "詳細を見る";
    font-size: 14px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    z-index: 4;
    opacity: 0;
    transition: all 0.5s;
}
.company-content:hover .company-img-outer::before{
    opacity: 1;
    transition: all 0.5s;
}
.company-content img{
    width: 290px;
    height: 160px;
    background: gray;
    transition: all 0.5s;
    object-fit: cover;
}
.company-name{
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
    text-align: center;
}
.footer{
    background: #1c2225;
    padding: 60px 0 20px 0;
}
.footer-logo{
    width: 250px;
    margin: 0 auto;
    display: block;
}
.footer-cp{
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    letter-spacing: 0.075em;
    color: #333;
}

.our-section{
    background: #333;
}
.our-sec-inner{
    padding: 0px 0 150px 0;
    /* padding: 0; */
}
.our-sec-coach-inner{
    width: 1400px;
    margin: 0px auto 150px auto;
    display: flex;
    /* align-items: end; */
    gap: 60px;
    /* justify-content: space-between; */
}
.our-sec-coach-container{
    width: 600px;
    flex-shrink: 0;
}
.our-sec-coach-container-r{}
.our-sec-coach-container-r-ttl{
    font-size: 40px;
    color: #fff;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 20px;
}
.our-sec-coach-container-r-txt{
    font-size: 18px;
    color: #fff;
    font-weight: 200;
    line-height: 1.5;
    margin-top: 40px;
}
.our-sec-coach-ttl{
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top: 50px;
}

.our-sec-coach-name{
    font-size: 45px;
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
}
.our-sec-coach-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0px auto;
}
.our-sec-ttl{
    color: #fff;
    font-size: 50px;
    margin: 0 auto 60px auto;
    padding-left: 100px;
    position: relative;
    width: 1400px;
}
.our-sec-ttl::before{
    position: absolute;
    top: 35px;
    left: 0px;
    width: 80px;
    height: 1px;
    background: #fff;
    content: "";
}
.our-sec-txt{
    color: #c1c1c1;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    width: 1400px;
    margin: 0 auto;
}
.our-sec-sp-content{
    display: none;
}
.our-sec-pc-content{}
@media screen and (min-width:1450px) {
    .fv-first-text{
        width: calc((100vw - 1450px)/3 + 250px);
        font-size:  calc((100vw - 1450px)/40 + 20px);
    }
    .fv-logo{
        width: calc((100vw - 1450px)/3 + 250px);
    }
    .fv-second-text{
        font-size:  calc((100vw - 1450px)/40 + 20px);
    }

}
@media screen and (max-width:1200px) {
    .contact-btn{
        bottom: 110px;
    }
    .con-btn{
        padding: 10px;
    }
    .contact-text{
        font-size: 11px;
    }
    .contact-arrow{
        max-width: auto;
        width: 90px;
    }
    .contact-btn:hover .contact-arrow{
        left: 10px;
    }
    .contact-btn-second:hover .contact-arrow{
        left: 10px;
    }
    .article-container{
        padding: 80px 0;
    }
    .article-content{
        width: 90%;
        padding: 100px 50px;
    }
    .article-title-btm{
        margin-bottom: 50px;
    }
    .company-container{
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 30px;
    }
    .company-content{
        margin: 30px;
    }
    .footer-logo{
        width: 250px;
    }
}
@media screen and (max-width:1000px) {
    .header-logo{
        width: 120px;
    }
    .header-info-btn{
        display: none;
    }
    .info-sp{
        display: block;
        font-size: 40px;
        color: #3B3B3B;
    }
    .fv-first-text{
        font-size: 20px;
        text-align: center;
        /* border: 2px solid #fff; */
        width: 250px;
    }
    .fv-logo{
        width: 250px;
        margin: 30px auto;
    }
    .fv-second-text{
        font-size: 20px;
        line-height: 40px;
    }
    .main-title{
        font-size: 40px;
        line-height: 1.2;
    }
    .sub-title{
        font-size: 25px;
    }
    .sub-title::before{
        top: 25px;
        left: -55px;
        width: 40px;
    }
    .sub-title::after{
        top: 25px;
        right: -55px;
        width: 40px;
    }
    .article-title{
        font-size: 40px;
        line-height: 1.4;
        width: 375px;
    }
    .article-title::before{
        content: "";
        width: 70px;
        top: 26px;
        left: 10px;
    }
    .article-title-btm{
        font-size: 40px;
        line-height: 1.4;
        margin-bottom: 40px;
    }
    .article-text{
        font-size: 20px;
    }
    .article-btm-text{
        font-size: 16px;
        line-height: 2.2;
        padding-right: 50px;
        width: 100%;
    }
    .font-a{
        font-size: 14px;
    }
    .font-b{
        width: 500px;
        font-size: 30px;
        line-height: 2.5;
    }
    .article-btm-img{
        display: block;
        margin: 100px 0 0 0;
    }
    .article-btm-img img{
        width: 80%;
        margin: 0 0 30px 0;
    }
    .article-btm-text{
        font-size: 18px;
        font-weight: bold;
        line-height: 2;
        padding: 0;
    }
    .company-section{
        /* margin-top: -20px; */
    }
    .company-container{
        margin: 0px auto;
    }
    .company-title{
        /* font-size: 20px; */
    }
    .company-name{
        font-size: 18px;
    }
}
@media screen and (max-width:768px) {
    .header{
        height: 50px;
        padding: 0 30px;
    }
    .header-logo{
        width: 80px;
    }
    .info-sp{
        font-size: 35px;
    }
    .main-title{
        font-size: 30px;
    }
    .sub-title{
        font-size: 20px;
    }
    .sub-title::before {
        top: 18px;
        left: -45px;
        width: 30px;
        border-bottom: 1px solid #5b5b5b;
    }
    .sub-title::after {
        top: 18px;
        right: -45px;
        width: 30px;
        border-bottom: 1px solid #5b5b5b;
    }
    .fv-text-area{
        top: 0;
    }
    .article-text{
        font-size: 16px;
    }
    .font-a{
        font-size: 12px;
    }
    .font-b{
        font-size: 25px;
    }
    .font-b::after{
        width: 460px;
        height: 40px;
    }
    .article-btm-img{
        margin-top: 50px;
    }
    .article-btm-text{
        font-size: 16px;
    }
    .company-section{
    background-position: 50% 50%;
    }
    .company-title {
        font-size: 25px;
        padding: 50px 0;
    }
    .footer-logo{
        width: 180px;
    }
    .footer-cp{
        margin-top: 10px;
        font-size: 12px;
    }

    .title-section{
        height: 150px;
    }
}
@media screen and (max-width:650px) {
    .article-content{
        padding: 60px 50px;
    }
    .article-text{
        font-size: 14px;
    }
    .article-btm-text{
        font-size: 14px;
    }
}
@media screen and (max-width:600px) {
    .title-section{
        height: 120px;
    }
    .article-container{
        padding: 40px 0;
    }
    .article-title{
        font-size: 30px;
        width: 280px;
    }
    .article-title::before{
        width: 50px;
        top: 20px;
        left: 5px;
        border-bottom: 1px solid #3b3b3b;
    }
    .article-title-btm{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .font-a{
        font-size: 8px;
    }
    .font-b{
        font-size: 20px;
        width: 350px;
    }
    .font-b::after{
        width: 370px;
        height: 30px;
    }
    .article-btm-img{
        margin-top: 50px;
    }
    .company-section{
        padding: 100px 0;
    }
    .company-title{
        font-size: 20px;
    }
    .company-name {
        font-size: 16px;
        margin-top: 5px;
    }
}
@media screen and (max-width:550px) {
    .article-content{
        padding: 50px 30px;
    }
    .article-title-btm{
        margin-bottom: 20px;
    }
    .article-btm-img img {
        width: 100%;
        margin: 0 0 10px 0;
    }
}
@media screen and (max-width:500px) {
    .article-title::before{
        width: 45px;
        height: 2px;
        background: #3B3B3B;
        /* top: 24px; */
        left: 5px;
        border: none;
    }
    .article-content{
        padding: 40px 20px;
    }
    .article-text{
        font-size: 12px;
    }
    .font-b{
        font-size: 18px;
        width: 320px;
    }
    .font-b::after{
        width: 335px;
        height: 25px;
    }
    .article-btm-text{
        font-size: 10px;
        margin-top: 20px;
    }
}
@media screen and (max-width:450px) {
    .con-btn{
        padding: 8px;
    }
    .contact-btn{
        bottom: 85px;
        right: 10px;
    }
    .contact-btn-second{
        bottom: 20px;
        right: 10px;
    }
    .contact-text{
        font-size: 8px;
    }
    .contact-arrow{
        width: 64px;
    }
    .article-container{
        padding: 20px 0;
    }
    .article-title-btm{
        margin-bottom: 10px;
    }
    .article-text{
        font-size: 10px;
    }
    .font-b{
        font-size: 16px;
        width: 300px;
    }
    .font-b::after{
        width: 300px;
        bottom: 7px;
    }
    .article-btm-img{
        margin-top: 30px;
    }
    .article-btm-img img{
        margin-bottom: 10px;
    }
    .article-btm-text{
        font-size: 10px;
    }
    .company-section{
        padding-bottom: 50px;
    }
    .company-title{
        font-size: 16px;
        padding: 0 0 30px 0;
    }
    .company-name{
        font-size: 12px;
    }
    .footer-logo{
        width: 150px;
    }
}
@media screen and (max-width:375px) {
    .sub-title{
        font-size: 18px;
    }
    .sub-title::before {
        top: 16px;
        left: -35px;
        width: 25px;
        border-bottom: 1px solid #5b5b5b;
    }
    .sub-title::after {
        top: 16px;
        right: -35px;
        width: 25px;
        border-bottom: 1px solid #5b5b5b;
    }
    .article-title{
        font-size: 25px;
        width: 235px;
    }
    .article-title::before{
        width: 40px;
        top: 16px;
        left: 5px;
        border-bottom: 1px solid #3b3b3b;
    }
    .article-title-btm{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .article-text,.article-btm-text{
        font-size: 8px;
    }
    .font-a{
        font-size: 6px;
    }
    .font-b{
        font-size: 14px;
        line-height: 2;
        width: 260px;
    }
    .font-b::after{
        width: 270px;
        bottom: 0;
    }
    .company-section{
        /* padding: 0; */
    }
    .company-title{
        font-size: 14px;
    }
}


/* 2026.1.10追加 */
.fv-logo {
    margin: 20px auto 60px auto;
}
.fv-second-text {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.08em;
}
.article-container{
    padding: 100px 0;
}
.article-content{
    padding: 100px 80px;
}
.article-title{
    font-size: 45px;
    width: 450px;
}
.article-title-pc{
    font-size: 45px;
    width: 100%;
    padding-bottom: 30px;
}
.article-title-btm{
    font-size: 45px;
    margin-bottom: 100px;
}
.article-title::before {
    width: 85px;
    top: 35px;
    left: 0px;
    border-bottom: 2px solid #222;
}
.font-b{
    font-size: 22px;
}
.main-title{
    color: #222;
}
.sub-title{
    color: #3b3b3b;
}
.article-title{
    color: #222;
}
.article-sub-ttl{
    font-size: 25px;
    color: #3b3b3b;
    color: #222;
    font-weight: 700;
    margin: 70px 0 15px 0;
}
.article-text{
    font-size: 18px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: normal;
    letter-spacing: normal;
}
.article-text span{
    font-weight: 700;
    font-size: 20px;
    color: #3b3b3b;
    border-bottom: 1px solid #3b3b3b;
}
.article-btm-img{
    margin-top: 30px;
}
.article-btm-img img{
    margin: 0;
    /* width: 100%; */
    border: none;
}
.article-btm-text {
    line-height: 1.2;
    margin-top: 20px;
}
.company-title {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.00em;
    color: #fff;
    text-align: center;
    padding: 0;
    font-weight: 400;
}
.company-name-txt{
    font-weight: 700;
    font-size: 25px;
    line-height: 2;
    letter-spacing: 0.00em;
    color: #fff;
    padding: 0;
    margin: 150px auto 50px auto;
    /* width: 1080px; */
    text-align: center;
}
.company-section{
    padding-top: 100px;
}
.company-container{
    margin-top: 0;
}
.company-content{
    margin-top: 0;
}
.company-section{
    padding-bottom: 0;
}
.footer-cp{
    color: #fff;
    /* font-weight: 400; */
    margin: 40px 0 0 0;
}
.report-ttl{
    text-align: center;
    font-size: 32px;
    color: #222;
    font-weight: 700;
}
.report-txt{
    text-align: center;
    font-size: 20px;
    color: #3b3b3b;
    margin: 10px 0 100px 0;
}
.pdf-file{
    width: 100%;
    min-height: 800px;
    height: 100%;
    margin-bottom: 30px;
}
.article-title-pc{
    /* padding-bottom: 70px; */
}
.article-title-sp{
    display: none;
}
.article-title-btm{
    padding-bottom: 30px;
}
.article-title-pc{}
@media screen and (max-width:1200px) {
    .article-title-sp{
        display: block;
        margin: 0 auto;
        text-align: center;
        color: #222;
    }
    .article-title-pc{
        display:none;
    }
    .article-title-top{
        transform: translateX(60px);
    }
    .article-title::before {
        width: 75px;
        left: -38px;
    }
    .report-txt{
        margin-bottom: 50px;
    }
    .company-content{
        /* margin: 0 0 50px 0; */
    }
    .company-container{
        width: auto;
        gap: 0;
        align-items: center;
    }
}
@media screen and (max-width:900px) {
    .company-container{
    }
}
@media screen and (max-width:800px) {
    .company-container{
        gap: 0;
        padding: 0;
    }
    .article-content{
        padding: 100px 40px;
    }
    .company-title{
        font-size: 16px;
        padding: 0 40px;
    }
    .company-name-txt{
        font-size: 20px;
        margin: 100px 0 30px 0;
    }
}
@media screen and (max-width:768px) {
    .company-section{
        padding-top: 70px;
    }
    .company-name-txt {
        font-size: 20px;
        margin: 100px 0 20px 0;
    }
}
@media screen and (max-width:700px) {
    .break-500{
        display: none;
    }
    .article-title-sp{
        /* margin: 0; */
    }
    .article-title-top {
        transform: translateX(45px);
    }
    .article-title-btm{
        /* text-align: left; */
    }
    .article-sub-ttl,.report-ttl{
        font-size: 25px;
    }
    .article-text,.report-txt{
        font-size: 16px;
    }
    .article-sub-ttl {
        margin: 70px 0 10px 0;
    }
    .company-title{
        text-align: left;
    }
    .company-name-txt{
        margin-bottom: 50px;
    }
    .company-container{
        flex-direction: column;
    }
    .company-content{
        margin: 0 auto 50px auto;
        width: 80%;
    }
    .company-img-outer{
        width: 100%;
        height: 300px;
    }
    .company-content img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 0 0;
    }
    .footer-cp{
        /* margin-top: 50px; */
    }
    .pdf-file{
        min-height: 500px;
    }
    .report-ttl{
        margin: 0;
    }
    .article-text span{
        font-size: 16px;
    }
}
@media screen and (max-width:600px) {
    .fv-first-text {
        font-size: 13px;
        width: 150px;
    }
    .fv-logo{
        width: 150px;
        margin: 10px auto 30px auto;
    }
    .fv-second-text{
        line-height: normal;
        font-size: 18px;
        letter-spacing: 0.1em;
    }
    .article-title{
        width: 350px;
        font-size: 35px;
        margin: 0 auto;
        letter-spacing: 0.08em;
    }
    .article-title::before{
        width: 55px;
        top: 25px;
    }
    .article-title-btm{
        letter-spacing: 0.08em;
        margin: 0 auto;
        width: 350px;
        font-size: 35px;
        /* padding-bottom: 20px; */
        padding-bottom: 40px;
    }
    .article-sub-ttl, .report-ttl {
        /* font-size: 22px; */
        margin: 40px 0 10px 0;
    }
    .article-container {
        padding: 20px 0;
    }
    .article-content {
        padding: 80px 40px;
    }
    .company-img-outer{
        height: 240px;
    }
    .company-name-txt{
        margin: 70px 0 20px 0;
    }
    .company-title{
        line-height: normal;
    }
    .report-ttl{
        margin: 0;
    }
    .report-txt {
        margin-bottom: 20px;
    }
}
@media screen and (max-width:500px) {
    .article-title-top {
        transform: translateX(30px);
    }
    .article-title {
        width: 220px;
        font-size: 25px;
    }
    .article-title-btm {
        width: 260px;
        font-size: 25px;
    }
    .article-title::before {
        width: 38px;
        top: 18px;
        left: -42px;
    }
    .article-sub-ttl, .report-ttl{
        font-size: 20px;
    }
    .company-title{
        padding: 0 20px;
    }
    .company-name-txt{
        font-size: 16px;
    }
    .company-img-outer{
        height: 170px;
    }
    .article-content {
        padding: 40px 20px;
        padding: 60px 20px;
    }
    .article-title-btm{
        padding-bottom: 20px;
    }
}
@media screen and (max-width:450px) {
    .pdf-file{
        min-height: 400px;
    }
}
@media screen and (max-width:370px) {
    .company-name-txt{
        font-size: 14px;
    }
}

/* 2026.7.21追記 */
.eco-img{
    margin-top: 40px;
}
.eco-sub-ttl{
    color: #555;
    font-weight: 700;
    margin: 40px 0 20px 0;
    font-size: 30px;
}
.eco-txt{
    font-size: 16px;
}
.eco-btm-ttl{
    font-size: 30px;
    text-align: center;
    margin: 60px auto 20px auto;
    background: #fff;
    font-weight: 700;
    letter-spacing: 0.075em;
    background: rgba(255, 255, 255, 0.95);
    width: fit-content;
    color: #555;
    position: relative;
    z-index: 2;
    padding: 7px 14px;
}
.eco-list{
    position: relative;
    font-size: 18px;
    margin-top: 60px;
    padding: 10px 0;
    border: 2px solid rgba(0, 0, 0, 0.5);
    padding: 60px 20px 40px 20px;
    line-height: 2.5;
}
.eco-list::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "★ OUR ACTION ★";
    letter-spacing: 0.075em;
    padding: 0px 20px;
    background: #3a6d7e;
    color: #fff;
}
.ac-768{
    display: none;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-list{
    display: flex;
    align-items: center;
    z-index: 9999;
    /* gap: 10px; */
}
.header-item{
    display: block;
    padding: 0 10px;
    border-left: 1px solid #333;
}
.header-item:nth-of-type(1){
    border-left: none;
}
html{
    scroll-behavior: smooth;
}
a{
    opacity: 1;
}
a:hover{
    opacity: 0.7;
}
.sub-page{
    margin-top: 70px;
}
.header-ham-menu,.header-ham-btns{
    display: none;
}

.ac-1200{
    display: none;
}
.our-sec-coach-container-r th{
    padding: 2px 0;
    width: 56px;
}
.our-sec-coach-container-r td{
    padding: 2px 0;
    padding-left: 10px;
}
.our-sec-coach-inner-b{
    margin-top: 150px;
    margin-bottom: 0;
}
.our-sec-coach-ttl-b{
    text-align: left;
}
.our-sec-coach-name-b{
    text-align: left;
    padding-bottom: 10px;
}
.splash{
    position: fixed;
    inset: 0;
    z-index: 99999999;
    background: #fff;
    animation: splashOut 1s ease 4s forwards;
}
.splash.is-finished {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-inner{
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: splashIn 1.5s ease forwards;
}
.splash-img{
    width: 300px;
    margin: 0 auto;
}
.splash-txt{
    color: #333;
    margin-top: 24px;
    font-size: 60px;
    letter-spacing: .15em;
}
.splash-txt-btm{
    margin-top: 5px;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: .15em;
}
@keyframes splashIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashOut {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.athletes-section{
    background: #333;
}
.athletes-container{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 300px 0 150px 0;
}
.athletes-container::before{
    content: "T2 ACADEMY ATHLETES  T2 ACADEMY ATHLETES  T2 ACADEMY ATHLETES  T2 ACADEMY ATHLETES";
    font-size: 200px;
    font-weight: bold;
    white-space: nowrap;
    color: #fff;
    opacity: 0.1;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    animation: scroll-right 200s infinite;
}
@keyframes scroll-right{
    from{
        transform: translateX(0%);
    } to{
        transform: translateX(-200%);
    }
}
.athletes-content{
    width: 1400px;
    padding: 40px;
    margin: 40px auto 0 auto;
    margin-top: 40px;
    display: flex;
    position: relative;
    z-index: 1;
    background: rgba(82, 132, 181, 0.1);
}
.athletes-content:nth-of-type(1){
    margin-top: 0;
}
.ath-img{
    width: 400px;
    height: 430px;
    object-fit: cover;
    margin-right: 60px;
    flex-shrink: 0;
}
.ath-name{
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
}
.ath-birth{
    font-size: 20px;
}
.ath-birth,.ath-experience,.ath-dream,.ath-history{
    padding: 15px 0 0 20px;
    color: #b9b9b9;
}
.ath-birth span,.ath-experience span,.ath-dream span,.ath-history span{
    color: #fff;
    font-size: 20px;
    display: block;
}
.ath-experience{
    font-size: 20px;
}
.ath-dream{
    font-size: 20px;
}
.ath-history{
    font-size: 20px;
}
.ath-sec-pc-content{}
.ath-sec-sp-content{
    display: none;
}

.our-sec-coach-container-r th{
    width: 60px;
}
.our-sec-coach-container-r-ttl{
    font-weight: 400;
}
.our-sec-coach-container-r-txt{
    font-weight: 400;
}

@media screen and (max-width:1500px){
    .our-sec-coach-inner,.our-sec-ttl,.our-sec-txt,.athletes-content{
        width: auto;
        margin-left: 60px;
        margin-right: 60px;
    }
}
@media screen and (max-width:1400px){
    .ath-img{
        margin-right: 30px;
    }
}
@media screen and (max-width:1200px){
    .our-sec-inner{
        padding: 0px 0 150px 0;
    }
    .our-sec-coach-inner{
        margin-bottom: 100px;
    }
    .our-sec-ttl{
        margin-bottom: 30px;
    }
    .our-sec-pc-content{
        display: none;
    }
    .our-sec-sp-content{
        display: block;
    }
    .our-sec-coach-ttl{
        padding-top: 50px;
    }
    .our-sec-coach-name{
        font-size: 40px;
    }
    .our-sec-coach-inner{
        flex-direction: column;
    }
    .our-sec-coach-inner,.our-sec-ttl,.our-sec-txt{
        width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .our-sec-ttl{
        font-size: 45px;
    }
    .our-sec-coach-inner{
        margin-top: 0;
    }
    .ac-1200{
        display: block;
    }
    .our-sec-coach-container{
        width: auto;
    }

    .our-sec-coach-inner-b{
        gap: 0;
    }
    .our-sec-coach-ttl-b{
        text-align: center;
        margin-top: 70px;
    }
    .our-sec-coach-name-b{
        text-align: center;
        padding-bottom: 30px;
    }

    .ath-sec-pc-content{
        display: none;
    }
    .ath-sec-sp-content{
        display: block;
    }
    .athletes-content-r{
        width: 100%;
    }
    .ath-name{
        text-align: center;
    }
    .ath-img{
        margin: 40px auto 60px auto;
    }
    .ath-birth,.ath-experience,.ath-dream,.ath-history{
        padding-left: 0px;
    }

    .our-sec-inner{
        padding-bottom: 80px;
    }
    .our-sec-coach-inner-b{
        margin-bottom: 0;
    }
}
@media screen and (max-width:1100px){
    .header-link{
        font-size: 12px;
    }
    .header-item{
        padding: 0 8px;
    }
}
@media screen and (max-width:900px){
    .athletes-content{
        margin-left: 20px;
        margin-right: 20px;
        padding: 40px 20px;
    }
    .athletes-container{
        padding-top: 185px;
    }
    .athletes-container::before{
        font-size: 120px;
    }
}
@media screen and (max-width:768px){
    .sub-page{
        margin-top: 50px;
    }
    .header-ham-menu,.header-ham-btns{
        display: block;
    }
    .header-list{
        display: none;
    }
    .header-ham-btns{
        height: 10px;
        width: 25px;
        position: relative;
        z-index: 99999;
    }
    .header-ham-line{
        width: 100%;
        height: 1px;
        border-bottom: 2px solid #707070;
    }
    .header-ham-line:nth-of-type(1){
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.5s ease-out;
    }
    .header-ham-line:nth-of-type(2){
        width: 80%;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: all 0.5s ease-out;
    }
    .header-ham-line:nth-of-type(1).is-active{
        position: absolute;
        top: 5px;
        transition: all 0.5s ease-out;
        transform: rotate(35deg);
    }
    .header-ham-line:nth-of-type(2).is-active{
        width: 100%;
        position: absolute;
        bottom: 4px;
        left: 0;
        transition: all 0.5s ease-out;
        transform: rotate(-35deg);
    }
    .header-ham-menu{
        position: fixed;
        top: 0px;
        left: 0;
        background: #fff;
        z-index: 999;
        width: 100vw;
        height: 100%;
        overflow-y: scroll;
        transform: translateY(-150%);
        transition: all 0.5s ease-out;
    }
    .header-ham-menu.is-active{
        transform: translateY(0%);
        transition: all 0.5s ease-out;
    }
    .header-ham-menu-list{
        padding: 100px 0;
        width: fit-content;
        margin: 0 auto;
    }
    .header-ham-menu-item{
        padding: 20px 0 7px 0;
        border-bottom: 2px dotted #000;
    }
    .header-ham-menu-link{
        font-size: 20px;
        color: #333;
    }
    .header-ham-menu-contact{
        border: 2px solid #707070;
        font-size: 16px;
        display: flex;
        align-items: center;
        width: fit-content;
        margin: 0 auto;
        padding: 10px 15px;
        gap: 15px;

    }
    .header-ham-menu-contact img{
        width: 25px;
    }

    .our-sec-coach-inner,.our-sec-ttl,.our-sec-txt{
        width: auto;
        margin-left: 40px;
        margin-right: 40px;
    }
    .our-sec-ttl{
    font-size: clamp(24px, calc(3.9466vw + 9.2px), 45px);
        padding-left: 0;
    }
    .our-sec-ttl::before{
        top: 30px;
        display: none;
    }
    .our-sec-txt{
        font-size: 16px;
    }
    .our-sec-ttl {
        margin-bottom: 40px;
    }
}
@media screen and (max-width:768px){
    .ac-768{
        display: block;
    }
}
@media screen and (max-width:650px){
    .eco-sub-ttl{
        font-size: clamp(
            20px,
          calc(20px + (38 - 20) * ((100vw - 375px) / (650 - 375))),
            38px
        );
    }
    .eco-list{
        padding: 40px 10px 10px 10px;
        line-height: 2;
        font-size: 14px;
    }
}
@media screen and (max-width:600px){
    .our-sec-coach-inner, .our-sec-ttl, .our-sec-txt {
        margin-left: 20px;
        margin-right: 20px;
    }
    .our-sec-inner{
        padding: 0 0 100px 0;
    }
    .our-sec-coach-ttl{
        font-weight: 300;
        font-size: 14px;
    }
    .our-sec-coach-name{
        font-size: 30px;
        padding-bottom: 17px;
    }
    .our-sec-coach-container-r-ttl{
        font-size: 28px;
    }
    .our-sec-coach-container-r-txt{
        margin-top: 20px;
        font-size: 16px;
    }
    .our-sec-coach-inner {
        margin-bottom: 70px;
        gap: 30px;
    }
    .our-sec-coach-container-r-txt{
        margin-top: 10px;
    }
    .our-sec-ttl {
        margin-bottom: 25px;
        font-weight: 600;
    }

        .our-sec-coach-ttl-b{
        margin-top: 0px;
        padding-top: 80px;
    }
    .splash-txt{
        font-size: clamp(30px, calc(10.667vw - 10px), 54px);
    }
    .splash-txt-btm{
        font-size: clamp(22px, calc(22px + (100vw - 375px) * 0.0356), 30px);
    }

    .athletes-container{
        padding-bottom: 80px;
    }
    .ath-name{
        font-size: 38px;
    }
    .ath-img{
        width: 100%;
        height: 450px;
        object-position: center 40%;
        margin: 0 0 15px 0;
    }
    .ath-birth,.ath-experience,.ath-dream,.ath-history{
        font-size: 18px;
    }
    .ath-birth span,.ath-experience span,.ath-dream span,.ath-history span{
        font-size: 22px;
        padding-bottom: 3px;
    }

    .our-sec-inner{
        padding-bottom: 60px;
    }
    .our-sec-coach-inner-b{
        margin-bottom: 0;
    }
}
@media screen and (max-width:500px){
    .athletes-container {
        padding-top: 125px;
    }
    .athletes-container::before{
        font-size: 80px;
    }
    .ath-birth span, .ath-experience span, .ath-dream span, .ath-history span {
        padding-bottom: 0px;
    }
}
@media screen and (max-width:450px){
    .footer{
        padding-top: 40px;
    }

    .ath-img{
        height: 350px;
    }
}
@media screen and (max-width:500px){}