header{
    background: var(--coler-Background-Gradient);
}
.page_title{
    background: var( --coler-Background-Accent);
}
h1{
    position: relative;
    background: url("../images/school/school_title_bg.jpg") no-repeat;
    background-position: top right;
    background-size: 90%;
    text-align: center;
    padding: 8% 0;
    color: var(--coler-Text-White);
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 1;
    animation-name: fadein;
    animation-duration:2s;
    animation-fill-mode: forwards;
    opacity: 0;
    
}
h1 span{
    display: block;
    font-family: var(--text-Title-sans_serif);
    font-size: 2vw;
     font-weight: 300;
    letter-spacing: 0.05em; 
}
@keyframes fadein
{
 0%{
     transform: translateX(50px);
     opacity: 0;
 }

 100%{
     transform: translateX(0);
     opacity: 1;
 }
}

/*パンくずリスト*/

.breadcrumb{
    position: absolute;
    width: 23%;
    background: var(--coler-Background-Primary);
    padding: 2% 5%;
    margin-top: -5vw;
    z-index: 2;
    
}
.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
  font-size: 1vw;
}
.breadcrumb li:after { /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: var(--coler-Text-Primary);
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: var(--coler-Text-Primary);
}
.breadcrumb li a:hover {
  color: var(--coler-Text-Sub);
  text-decoration: underline;
}
@media (width < 1000px){
    .breadcrumb{
        width: 25%;
    }
    .breadcrumb li {
        font-size: 1.2vw;
    }
}
@media (width < 768px){
    .breadcrumb{
        width: 30%;
    }
    .breadcrumb li {
        font-size: 1.5vw;
    }
}
@media (width < 500px){
    h1{
        font-size: 5vw;
        padding: 7.5% 0;
    }
    h1 span{
        font-size: 2.5vw;
    }
    .breadcrumb{
        width: 38%;
        margin-top: -7vw;
    }
    .breadcrumb li {
        font-size: 2.5vw;
    }
}

/*ページ共通*/
main p {
    margin-bottom: 1em;
    line-height: 1.7em;
    letter-spacing: 0.05em;
    color: var(--coler-Text-Primary);
    font-size: 16px;
}
main section{
    padding-top: 5%;
}
h2{
    margin-bottom: 5%;
}
h2.h2_blue{
    position: relative;
    display: flex; /* フレックスボックスを有効化 */
    flex-direction: column;
    color: var(--coler-Text-Accent);
    padding: 5% 0;
    font-size: 3vw;
    justify-content: center; /* 水平方向の中央寄せ */
    align-items: center; /* 垂直方向の中央寄せ */
    letter-spacing: 0.05em;
}
h2.h2_blue span{
    display: block;
    font-size: 1.5vw;
}
h2.h2_blue:after{
    position: absolute;
    top: 50%; /* 垂直方向の中央寄せ */
    left: 50%; /* 水平方向の中央寄せ */
    transform: translate(-50%, -50%); /* 中央に配置 */
    font-size: 12vw; /* 背景テキストのフォントサイズ */
    font-family: var(--text-Title-sans_serif);
    color:rgba(0,0,0,0); /* 背景テキストの色（透明度含む） */
    -webkit-text-stroke: 1px #19BAFF;
    white-space: nowrap; /* テキストの折り返し防止 */
    opacity: 0.5;  
}
h2.h2_white{
    position: relative;
    display: flex; /* フレックスボックスを有効化 */
    flex-direction: column;
    color: var(--coler-Text-White);
    padding: 5% 0;
    font-size: 3vw;
    justify-content: center; /* 水平方向の中央寄せ */
    align-items: center; /* 垂直方向の中央寄せ */
    letter-spacing: 0.05em;
}
h2.h2_white span{
    display: block;
    font-size: 1.5vw;
}
h2.h2_white:after{
    position: absolute;
    top: 50%; /* 垂直方向の中央寄せ */
    left: 50%; /* 水平方向の中央寄せ */
    transform: translate(-50%, -50%); /* 中央に配置 */
    font-size: 12vw; /* 背景テキストのフォントサイズ */
    font-family: var(--text-Title-sans_serif);
    color:rgba(0,0,0,0); /* 背景テキストの色（透明度含む） */
    -webkit-text-stroke: 1px #fefefe;
    white-space: nowrap; /* テキストの折り返し防止 */
    opacity: 0.5;  
}
.h3_blue{
    color: var(--coler-Text-Accent);
    font-size: 23px;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    line-height: 1.7em;
}
.h3_white{
    color: var(--coler-Text-White);
    letter-spacing: 0.1em;
    margin-bottom: 1em;
    line-height: 1.7em;
}
h4{
    color: var(--coler-Text-Accent);
    margin-bottom: 1em;
    font-size: 16px; 
}
@media (width < 1000px){
    h2.h2_white,h2.h2_blue{
        font-size: 4.5vw;
    }
}
@media (width < 768px){
     h2.h2_white,h2.h2_blue{
        font-size: 28px;
        margin: 5% 0 10% 0;
    }
     h2.h2_white:after,h2.h2_blue:after {
         font-size: 15vw;
    }
    .h3_blue{
        font-size: 20px;
    }
}

/*訓練学校について*/

.introduction_wrap{
    display: flex;
    justify-content: space-between;
    padding: 5% 0 10% 10%;
    align-items: center;
    background: url("../images/school/introduction_bg.jpg") no-repeat;
    background-size: cover;
    background-position: top;
}
.introduction_text{
    width: 40%;
}
.introduction_wrap p {
    margin-bottom: 1em;
    line-height: 1.7em;
    letter-spacing: 0.05em;
}
.introduction_wrap img{
    display: block;
    width: 53%;
    height: 100%;
    object-fit: cover;
}
.about_school{
    border: 1px solid #072B79;
    padding: 5%;
    margin-top: 5%;
    letter-spacing: 0.05em;
}
.about_school ul li{
    color: var(--coler-Text-Primary);
    line-height: 1.7em;
    list-style: disc;
    list-style-position: inside;
    font-size: 14px; 
}
@media (width < 1000px){
    .introduction_wrap{
        flex-direction: column;
        padding-left: 0;
}
    .introduction_text,.introduction_wrap img{
        width: 90%;
        margin: 0 auto;
}
    .introduction_text{
        margin-bottom: 5%;
    }
}

/*藤井左建の想い*/

.thought{
    background: var(--coler-Background-Gradient-Lower);
}
.thought h2:after {
    content: 'THOUGHT'; 
}
.thought_wrap{
    background: url("../images/school/thought_bg.jpg") no-repeat;
    background-position: top left;
    background-size: 53%;
    padding: 8% 0 0 0;
    line-height: 1.7em;
    letter-spacing: 0.1em;
}

.thought_text{
    background: var(--coler-Background-Accent);
    width: 55%;
    padding: 5% 10% 10% 5%;
    margin: 0 0 0 auto;
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.thought_text.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
.thought_text p{
    font-size: 16px;
    color: var(--coler-Text-White);
}
.thought_text_inner{
    border-right: 2px solid #CDD010;
    padding: 0 5% 0 0;
}
@media (width < 1000px){
    .thought_wrap{
        background-size: 100%;
    }
    .thought_text{
        width: 90%;
        margin: 40vw auto 0 auto;
        padding: 5% 5% 10% 5%;
    }
    .thought_text_inner{
        border: none;
        padding-right: 0%;
    }
}


/*スケジュール*/

.schedule{
    background: var(--coler-Background-Primary);
}
.schedule h2:after {
    content: 'SCHEDULE'; 
}
.schedule_wrap{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    color: var(--coler-Text-White);
    column-gap: 10%;
}
.schedule_wrap{
    padding-bottom: 5%;
}
.schedule_wrap table{
    width: 100%;
}
.schedule_wrap .detail{
    width: 100%;
    border: 1px solid #072B79;
    padding: 3%;
    margin: 5% 0;
    letter-spacing: 0.05em;    
}
.schedule_wrap table,.schedule_wrap tr th,.schedule_wrap tr td{
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 1px solid #072B79;
    padding: 5% 0;
    color: var(--coler-Text-Primary);
    line-height:1.7em;
    vertical-align: middle;
     }
.schedule_wrap tr th{
    width: 35%;
    text-align: left;
}
.schedule_wrap table tr td{
    text-align: left;
    padding-left: 5%;
}
.schedule_wrap table caption{
    color: var(--coler-Text-White);
    background-image: -webkit-linear-gradient(335deg,#19BAFF 0%,#192E7A 100%);
    background-image: linear-gradient(115deg,#19BAFF 0%,#192E7A 100%);
    padding: 1.5% 0;
    font-size: 25px;
    letter-spacing: 0.2em;
    font-weight: 700;
}
@media (width < 1000px){
    .schedule_wrap{
        width: 90%;
        flex-direction: column;
        margin: 0 auto;
    }
    .schedule_wrap table{
        width: 100%;
        margin-bottom: 10%;
    }
}
}
@media (width < 750px){
    .schedule_wrap table,.schedule_wrap tr th,.schedule_wrap tr td{
        padding: 5% 0;
    }
    .schedule_wrap tr th{
        width: 30%;
    }
}


/*待遇*/

.treatment{
    background: var(--coler-Background-Gradient-Lower);
}
.treatment h2:after {
    content: 'TREATMENT'; 
}
.treatment table{
    width: 80%;
    margin: 0 auto;
}
.treatment table caption{
    font-size: 23px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 3%;
    letter-spacing: 0.05em;
}
.treatment{
    padding-bottom: 5%;
}
.treatment table,.treatment tr th,.treatment tr td{
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 1px solid #fefefe;
    padding: 2% 0;
    color: var(--coler-Text-White);
    line-height:1.7em;
    vertical-align: middle;
    letter-spacing: 0.05em;
     }
.treatment tr th{
    width: 15%;
    text-align: left;
}
.treatment table tr td{
    text-align: left;
}
.treatment .btn{
    width: 30%;
    margin: 5% 0;
    font-size: 1vw;
}
.treatment .align_center{
    width: 100%;
    margin: 2% 0 0 0;
}

@media (width < 1000px){
    .treatment table{
        width: 90%;
    }
    .treatment .btn{
        font-size: 1.7vw;
    }
    .treatment .btn-c{
         width: 42%;
    }
}
@media (width < 750px){
    .treatment table caption{
        font-size: 20px;
    }
    .treatment table,.treatment tr th,.treatment tr td{
        padding: 5% 0;
    }
    .treatment tr th{
        width: 30%;
    }
    .treatment .btn{
        font-size:15px;
    }
    .treatment .btn-c{
         width: 60%;
    }
}
@media (width < 500px){
    .treatment .btn-c{
         width: 80%;
    }
}

    