@charset "UTF-8";

:root {
    --link-color: #349bf4;
    --main-color: #43B7E1;
    --text-color: #003C64;
}

/*--------------------------------
 全体
---------------------------------*/

.trainer-body {
    background-color:#ebeddf;
    justify-content: center;
    width:100%;
    display: flexbox;
}

a {
    color: var(--link-color);
    text-decoration: underline;
}

.trainer-wide-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.trainer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 30px 80px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 70%,  /* 白の範囲を広げる */
        rgba(230, 230, 230, 0.6) 97%, /* さらに淡いグレー */
        rgba(200, 200, 200, 0.3) 97%, /* ほんのり灰色 */
        rgba(0, 0, 0, 0.05) 100% /* ほとんど目立たない黒 */
    );
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
  
.trainer-header__logo {
    width: 100%; /* 親要素の幅いっぱい */
  max-width: 100px; /* ただし最大150pxまで */
  height: auto;
}
 
/*--------------------------------
 グローバルナビ
---------------------------------*/

.trainer-gnav__list {
    display: flex;
    column-gap: 50px;
    font-size: 19px;
    font-weight: bold;
    transform: translate(-100%, 140%);
    list-style: none;
}

  
.trainer-gnav__link {
    color: var(--text-color);
    text-decoration: none;
}
  
.trainer-gnav__link:hover {
    color: var(--main-color);
}
  
.trainer-gnav__link--active {
    color: var(--main-color);
}
  
.trainer-btn-menu {
    display: none;
}

.trainer-btn {
    display: inline-block;
    font-size: 1.5rem;
    background-color: #00B915;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 26px;
    padding: 75rem 28rem;
    transform: translate(0%, -40%);
}
  
.trainer-btn:hover {
    background-color: #003C64;
    color: #FFFFFF;
}
  
.trainer-align-center {
    text-align: right;
}
  
  

/*--------------------------------
 コンセプト
---------------------------------*/
.trainer-concept {
    padding: 50px 0;
}

.trainer-concept > .trainer-container {
    display: flex;
    align-items: first normal;
}
  
.trainer-concept .trainer-img {
    width: 50%;
}

.trainer-concept .trainer-desc {
    width: 50%;
    padding-right: 20px;
    padding-left: 40px;
}
  
.trainer-concept .trainer-subtitle {
    font-size: 18px;
    text-align: center;
}

.trainer-concept .trainer-subtitle2 {
    font-size: 23px;
    margin-left: 135px;
    font-family :Quicksand, sans-serif;/*Google Font*/
}
  
.trainer-concept .trainer-title {
    font-size: 40px;
    font-weight: bold;

    letter-spacing: 0.1em;
    color: #000000;
    margin-left: 130px;
}
  
.trainer-concept .trainer-text p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.trainer-img-senter {    
    background-size: cover;
    background-position: center bottom;
    height: 800px;
}

.trainer-title-box {
    background   : #aed768;
    width: 520px;

}

.trainer-img-leftside {
    justify-content: right;
    align-content: center;
    width:50%;
    display: flex;
    height:800px
}

.trainer-concept .trainer-text1 {
    color: #545454;/*文字は白に*/
    font-weight: bold; /*太字に*/
    font-size: 20px;/*サイズ2倍*/
    margin-top: 9px;
    margin-left: 14px;
}

.trainer-concept .trainer-subtitle3 {
    font-size: 18px;
    font-family :Quicksand, sans-serif;/*Google Font*/

}

.trainer-concept .trainer-subtitle4 {
    font-size: 18px;
    font-family :Quicksand, sans-serif;/*Google Font*/

}


.trainer-img-continer {
    position: relative;
    text-align: center;
}

.trainer-title-center {
    position: absolute;
    color: white;/*文字は白に*/
    font-weight: bold; /*太字に*/
    font-size: 4.5em;/*サイズ2倍*/
    font-family :Quicksand, sans-serif;/*Google Font*/
    width: 100%;
    text-align: center;
    transform: translate(0%, 0%);
    top: 37%;
}

.trainer-title-center2 {
    position: absolute;
    color: white;/*文字は白に*/
    font-weight: normal; /*太字に*/
    font-size: 3em;/*サイズ2倍*/
    font-family :Quicksand, sans-serif;/*Google Font*/
    width: 100%;
    text-align: center;
    transform: translate(0%, 0%);
    top: 53%;
    margin-top: 3rem;
}

/*--------------------------------
 コメント
---------------------------------*/
.trainer-comment {
    padding: 50px 0;
}
  
.trainer-comment .trainer-heading {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}
  
.trainer-comment .trainer-subtitle {
    font-size: 17px;
    letter-spacing: 0.1em;
    color: #333;
    font-family :Quicksand, sans-serif;/*Google Font*/
    text-align: left;
    width: 80%;
    margin: 0 auto;
}

.trainer-comment .trainer-big {
    font-size: 20px;
    display: block;
    text-align: center;
}

.trainer-center {
    margin-inline: auto;
    max-inline-size: max-content;
}


/* モバイル */
@media screen and (max-width: 767px) {

    body {
        font-size: 15px;
        line-height: 1.7;
    }

    /* レイアウト */
    .trainer-container {
      padding: 0 20px;
    }

    /* ヘッダー */
    .trainer-header {
        position: relative;
        height: 30px;
        padding: 20px;
    }

    .trainer-header__logo {
        width: 70px;
    }

    /* グローバルナビ */
    .trainer-gnav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
        width: 180px;
        height: 100%;
        background-color: var(--main-color);
        box-shadow: -10px 0 35px -20px rgb(0 0 0 / 25%);
    }

    .trainer-gnav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 180px;
        padding: 90px 20px 20px 50px;
        row-gap: 25px;
    }


    .trainer-btn-menu {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 100;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        text-align: center;
        padding: 21px 16px;
        border: none;
        outline: none;
        background: none;
        background-color: var(--main-color);
        cursor: pointer;
        appearance: none;
    }

    .trainer-btn-menu {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 100;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        text-align: center;
        padding: 21px 16px;
        border: none;
        outline: none;
        background: none;
        background-color: var(--main-color);
        cursor: pointer;
        appearance: none;
    }


    /* コンセプト */
    .trainer-concept {
     padding: 40px 0;
    }

    .trainer-concept > .trainer-container {
        flex-direction: column;
        display: block;
        align-items: first normal;
    }

    .trainer-concept .trainer-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .trainer-concept .trainer-desc {
        width: 100%;
        padding-right: 0;
        padding-left: 20px;
    }

    .trainer-concept .trainer-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }


    .trainer-title-center {
        font-size: 2em;/*サイズ2倍*/
        width: 100%;
        text-align: center;
        transform: translate(0%, 0%);
        top: 31%;
    }

    .trainer-title-center2 {
        position: absolute;
        color: white;/*文字は白に*/
        font-weight: normal; /*太字に*/
        font-size: 1.5em;/*サイズ2倍*/
        font-family :Quicksand, sans-serif;/*Google Font*/
        width: 100%;
        text-align: center;
        transform: translate(0%, 0%);
        top: 54%;
        
    }

    .trainer-img-senter {    
        background-size: cover;
        background-position: center bottom;
        height: 200px;
    }

    .trainer-wide-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .trainer-img-leftside {  
        flex-direction: 100%; /* 縦並び */
        width: 100%;
        height: 400px;
        justify-content: center;
        object-position: center; /* 中央寄せ */
    }

    .trainer-concept .trainer-title {
        width: 100%;
        margin-left: 10px;
    }

    .trainer-concept .trainer-subtitle {
        width: 100%;
        font-size: 20px;
    }

    .trainer-title-box {
        background   : #aed768;
        width: 100%;
    }

    .trainer-concept .trainer-subtitle2 {
        font-size: 23px;
        margin-left: 10px;
        font-family :Quicksand, sans-serif;/*Google Font*/
    }
      

}