/* 
画面全体のスタイルシート
*/
body {
    margin: 0;
    font-family: Shippori Mincho B1;
    color: #726837;
}
img {
    margin: 0;
    padding: 0;
    width: 100%;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
li{
    list-style: none; 
}
a{
    text-decoration: none;
    color: #726837;
}
h1 {
    font-size : 48px; 
    line-height : 1;    
}
 
h2 {
    font-size : 36px;
    line-height : 1.3333;
}
h3 {
    font-size : 24px;
    line-height : 1;    
}
hgroup h2,h4,h5,h6 {
    font-size : 18px; 
    line-height : 1.5;   
}
p{
    font-size: 16px;
    line-height: 1.5;
}

/* ヘッダーのスタイルシート */
.headerCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header picture img{
    width: 100%;
}
.headerCont_left{
    width: 20%;
}
.headerLogo img{
    width: 50%;
}
.headerCont_right{
    width: 80%;
    text-align: end;
}
.headerMenu li{
    display: inline-block;
    padding: 2%;
    font-size: 1.25rem;
}
.header_sp{
    display: none;
}
/* ボタンのホバー */
.headerMenu ul li a:hover{
    color: #345A5C;
}
/*タブレット*/
@media screen and (max-width: 988px){
    .header_spLeft img{
        width:  auto;
        height: 120px;
    }
    .headerMenu li{
        font-size: 1.0rem;
    }
    .header{
        display: none;
    }
    .header_sp{
        display: block;
    }
    .header_spAll{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 120px;
    }
    .header_spLeft{
        width: 20%;
    }
    .header_spRight{
        display: flex;
        align-items: center;
    }
    .reserveButton{
        width: 120px;
        height: 120px;
    }
    .header-button{
        display: flex;
        justify-content: end;
        cursor: pointer;
        position: relative;
        z-index: 100;     
        background: #726837;
        width: 120px;
        height: 120px;
        padding-right: 23%;
        padding-top: 16%;
    }
    /*inputのcheckboxは非表示に*/
    .h-menuCheckbox {
        display:none;
    }
    
    /*ハンバーガーメニュー*/
    .h-menu_icon {
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: middle;
    }
    
    /*3本線*/
    .hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
        content: '';
        display: block;
        position: absolute;
        z-index: 100;
        width: 60px;
        height: 4px;
        background: #FFF;
        cursor: pointer;
    }
    .hamburger-icon:before {
        top: 17px;
    }
    .hamburger-icon:after {
        top: 34px;
    }

    /*メニュー以外を暗くする*/
    #h-menu_black {
        display: none;
        position: fixed;
        z-index: 98;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #726837;
        opacity: 30;
        transition: .7s ease-in-out;
    }

    /*中身*/
    #h-menu_content {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        padding: 85px 16px 16px;
        background: #F1F4EF;
        overflow: auto;
        transition: .3s ease-in-out;
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
    }
    /*チェックボックスにチェックが入ったら表示*/
    input:checked ~ .h-menu_icon .hamburger-icon{
        background: transparent;
    }
    input:checked ~ .h-menu_icon .hamburger-icon::before{
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top:10px;
        z-index:999;
    }
    input:checked ~ .h-menu_icon .hamburger-icon::after{
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top:10px;
        z-index:999;
    }
    input:checked ~ #h-menu_black {
        display: block;
        opacity: .8;
    }
    #h-menu_checkbox:checked ~ #h-menu_content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 6px 0 25px rgba(0,0,0,.15);
    }
    .h-menu_icon .hamburger-icon,
    .h-menu_icon .hamburger-icon::before,
    .h-menu_icon .hamburger-icon::after,
    #h-menu_black,
    #h-menu_content{
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    #h-menu_content ul{
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #h-menu_content ul li{
        border-bottom: solid 2px #726837;
    }
    #h-menu_content li a {
        display: block;
        color: #272727;
        font-size: 14px;
        padding: 24px;
        text-decoration: none;
        transition-duration: 0.2s;
    }
}
/*スマホ*/
@media screen and (max-width: 480px){
    .header_spAll{
        height: 70px;
    }
    .header_spLeft img{
        width: auto;
        height: 70px;
    }
    /*3本線*/
    .hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
        width: 45px;
    }
    .header-button{
        width: 70px;
        height: 70px;
        padding-right: 19%;
        padding-top: 15%;
    }
    .reserveButton{
        width: 70px;
        height: 70px;
    }
    .hamburger-icon:before {
        top: 12px;
    }
    .hamburger-icon:after {
        top: 24px;
    }
}

/* メインのスタイルシート */
.mainCont picture img{
    width: 100%;
}
.solutionAll{
    background: url(image/solutionBgImg.jpg) no-repeat top center;
    background-size: cover;
    padding-bottom: 10%;
}
.solutionTitle h1{
    display: block;
    background-color: #FAF2C7;
    width: 80%;
    padding: 2% 10%;
    margin: 5% auto;
    text-align: center;
    font-size: 2.5rem;
    border-radius: 10px;
} 
.solutionCont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.solutionCont h2{
    font-size: 1.25rem;
    width: 95%;
    margin: 0 auto;
    padding: 4% 0;
}
.solutionCont p{
    font-size: 1.12rem;
    width: 95%;
    margin: auto;
    padding-top: 3%;
    line-height: 2rem;
}
.solutionCont img{
    width: 95%;
    display: block;
    margin: auto;
}
.solutionCont_01, .solutionCont_02, .solutionCont_03{
    background-color: #FFFFFF;
    box-shadow: 0px 0px 8px #726837;
    width: 25%;
    padding: 0 0 5%;
    min-width: 400px;
    margin-top: 5%;
}
/* スマホ */
@media screen and (max-width: 480px){
    .mainCont{
        padding-bottom: 20%;
    }
    .solutionCont{
        display: block;
        margin: auto;
        width: 80%;
    }
    .solutionCont_01, .solutionCont_02, .solutionCont_03{
        width: 100%;
        min-width: auto;
    }
    .solutionTitle h1{
        font-size: 1.25rem;
        line-height: 2.0rem;
    } 
}

.projectAll{
    background: url(image/projectBgImg_pc.jpg) no-repeat bottom center;
    background-size: cover;   
}
.projectTitle h2{
    text-align: center;   
    padding: 3% 0; 
    color: #FFFFFF;
}
.projectTitle_02 h3{
    display: none;
}
.projectTitle br{
    display: none;
}
.projectCont{
    width: 80%;
    display: flex;
    justify-content: space-around;
    margin: auto;
}
.projectLeft{
    width: 50%;
}
.projectLeft img{
    margin-top: 20%;
    width: 100%;
}
.projectRight{
    width: 45%;
    height: auto;
    background-color: #FFFFFF;
    opacity: 80%;
    margin: 5% 0 12%;
    padding-bottom: 3%;
}
.projectRight h3{
    font-size: 1.8rem;
    line-height: 2.5rem;
    padding-bottom: 5%;
    margin-top: 10%;
    text-align: center;
}
.projectRight p{
    font-size: 1.1rem;
    width: 90%;
    margin: auto;
    padding: 3% 0;
}
/* タブレット */
@media screen and (max-width: 992px){
    .projectAll{
        background: url(image/projectBgImg_sp.jpg) no-repeat bottom center;
        background-size: cover;   
        padding-bottom: 10%;
    }
    .projectCont{
        width: 95%;
        display: block;
        margin: auto;
    }
    .projectTitle{
        width: 95%;
        height: auto;
    }
    .projectTitle h2{
        padding: 6% 0;
    } 
    .projectTitle_02 h3{
        display: block;
        text-align: center;
        margin-top: 10%;
        font-size: 2.2rem;
        line-height: 3.0rem;
        font-weight: 600;
    }
    .projectLeft{
        width: 100%;
    }
    .projectLeft img{
        width: 60%;
        margin: 5% auto 0;
        display: block;
    }
    .projectRight{
        width: 100%;
        height: auto;
        background-color: #FFFFFF;
        opacity: 80%;
        margin: 5% 0 12%;
        padding-bottom: 3%;
    }
    .projectRight h3{
        display: none;
    }
    .projectTitle br{
        display: block;
    }
}
/* スマホ */
@media screen and (max-width: 480px){
    .projectAll{  
        padding-bottom: 20%;
    }
    .projectTitle h2{
        font-size: 1.3rem;
        line-height: 2.0rem;
        padding: 6% 0;
    } 
    .reserveBt{
        display: none;
    }
    .projectTitle_02 h3{
        font-size: 1.56rem;
        line-height: 2.5rem;
    }
}

.hdfMission{
    margin-top: 3%;
}
.hdfMission picture img{
    margin: auto;
    display: block;
}
.hdfMissionCont{
    display: flex;
    justify-content: space-around;
    margin: 5% auto;
}
.hdfMissionCont img{
    width: 40%;
}
.hdfMissionText{
    width: 50%;
}
.hdfMissionText p{
    font-size: 1.1rem;
    margin: 5% auto;
    line-height: 2.5rem;
}
.worries02 img{
    width: 100%;
}
.solution02 {
    text-align: center;
    padding: 5% 0;
    background: url(image/solution02_bgImg.png) top center;
    background-size: contain;
}
.solutionPhrase{
    margin: 10% auto;
}
.solution02 h3{
    font-size: 3.9rem;
    border-bottom: 20px solid #FFFAC5;
    display: inline-block;
    padding: 0 15% ;
}
.solution02 p{
    font-size: 2.6rem;
}
.solution02_s01 img, .solution02_s02 img, .solution02_s03 img{
    margin: 5% 0;
}
.reserveBt img{
    margin: 3% auto 5%;
}
/* タブレット */
@media screen and (max-width: 992px){
    .hdfMissionCont{
        display: block;
        text-align: center;
    }
    .hdfMissionCont img{
        width: 95%;
    }
    .hdfMissionText{
        width: 95%;
        text-align: left;
        margin: auto;
    }
    .hdfMissionText br{
        display: none;
    }
    .solution02 p{
        font-size: 1.8rem;
    }
    .solution02 h3{
        font-size: 2.26rem;
        padding: 0 5%;
    }
}
/* タブレット */
@media screen and (max-width: 480px){
    .solution02 p{
        font-size: 1.3rem;
    }
    .solution02 h3{
        font-size: 1.56rem;
        padding: 0 5%;
    }
}

/* 代表挨拶 */
.greetingTitle_sp{
    display: none;
}
.greetingCont{
    background: url(image/greetingBgImg.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 5%;
}
.greetingAll{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.greetingLeft{
    width: 50%;
}
.greetingTitle{
    margin: 10% auto;
}
.greetingTitle p{
    font-size: 2.1rem;
}
.profileTitle{
    border-bottom: 1px solid #726837;
}
.profileTitle h3{
    font-size: 1.5rem;
}
.profileTitle span{
    font-size: 2.5rem;
}
.profileText{
    background-color: #FFFFFF;
    opacity: 80%;
    padding: 2%;
    margin: 3% auto;
}
.profileText p,.greetingText p{
    font-size: 1.1rem;
    line-height: 2.5rem;
}
.greetingRight{
    width: 40%
}
.greetingRight img{
    width: 100%;
}
.greetingText_sp{
    display: none;
}
.greetingBorder02{
    margin: 3% auto;
}
/* タブレット */
@media screen and (max-width: 992px){
    .greetingAll{
        align-items: flex-start;
    }
    .greetingLeft {
        width: 55%;
    }
    .greetingTitle_sp{
        display: block;
        padding-top: 10%;
    }
    .greetingTitle_sp img{
        width: 65%;
    }
    .greetingTitle{
        display: none;
    }
    .profileTitle h3{
        margin-top: 15%;
        padding-bottom: 4%;
    }
    .profileText p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .greetingText{
        display: none;
    }
    .greetingText_sp{
        display: block;
    }
    .greetingText_sp p{
        line-height: 2.0rem;
    }
}
/* 受講生の声 */
.studentFbCont{
    background: url(image/studentFbBgImg.jpg) no-repeat bottom center;
    background-size: cover;  
    padding-top: 10%;
}
.studentFb_title{
    background-color: #FAF2C7;
    text-align: center;
    border-radius: 10px;
    padding: 1% 0;
    margin-bottom: 5%;
}
.studentFb_title p{
    font-size: 2.1rem;

}
.studentFb_title h2{
    font-size: 2.5rem;
}
.studentVoiceCont{
    margin: 5% auto 0;
}
.invitation_phrase{
    text-align: center;
    padding: 5% 0;
    margin-bottom: 8%;
}
.invitation_phrase h3{
    font-size: 3.4rem;
    line-height: 4.0rem;
}
/* タブレット */
@media screen and (max-width: 992px){
    .studentFb_title{
        width: 95%;
        padding: 1% 0;
    }
    .studentFb_title p{
        font-size: 0.87rem;
    }
    .studentFb_title h2{
        font-size: 1.56rem;
    }
    .invitation_phrase h3{
        font-size: 1.81rem;
        line-height: 3.0rem;
    }
}
/* タブレット */
@media screen and (max-width: 480px){
    .studentFb_title{
        padding: 5% 0;
    }
}

/* よくある質問 */
.faqArea > p {
    max-width: 800px;
    margin: 16px auto 0;
    text-align: right;
    font-size: 12px;
}
.faqArea .qaPair .qLine span,
.faqArea .qaPair .aLine span {
    display: block;
    margin-right: 24px;
}
.faqArea .qaPair .aLine span {
    margin-right: 24px;
}
.faqArea .qaPair .aLine {
    background: #faf8f5;
    color: #333333;
    padding: 32px 16px 32px 60px;
    font-size: 16px;
    line-height: 2.0rem
}
.faqArea .qaPair .qLine {
    color: #726837;
    padding: 16px 0;
    font-size: 18px;
    line-height: 2.0rem;
}
.faqArea .qaPair .qLine,
.faqArea .qaPair .aLine {
    display: flex;
}
.faqArea .qaPair {
    margin: 20px auto 0;
}
.faqArea {
    padding: 80px 0 80px;
    background: #fff;
}
/* スマホ */
@media screen and (max-width: 600px){
    .faqArea .qaPair .aLine {
    padding: 32px 16px 32px 20px;
}
.faqArea .qaPair .aLine ,.faqArea .qaPair .qLine{
    width: 95%;
    margin: auto;
}
}


/* プライバシーポリシー */
.privacy ul{
    text-align: center;
 }
.privacy li{
   display: inline-block; 
   margin: auto;
   padding: 2% 3%;
}
/* ボタンのホバー */
.privacy li a:hover{
    color: #345A5C;
}
/* フッター */
.footer{
    width: 100%;
    background: #726837;
    color: #FFFFFF;
    margin: auto;
    display: block;
    text-align: center;
    padding: 1.5% 0;
}
.footer_sp{
    display: none;
}
/* スマホ */
@media screen and (max-width: 480px){
    .privacy{
        display: none;
    }
    .footer{
        display: none;
    }
    .footer_sp{
        display: block;
        position:fixed;
        bottom:0;
        z-index: 99;
    }
}

/* privacyArea */
#privacy-policyArea{
    padding: 5% 0;
}
#privacy-policyArea h1{
    line-height: 3.0rem;
    padding: 3% 2%;
    font-weight: bold;
    background-color: #726837;
    color: #FFF;
}
#privacy-policyArea h2{
    line-height: 2.5rem;
    padding: 2%;
}
#privacy-policyArea p{
    line-height: 1.8rem;
    padding: 1% 2%;
}
#privacy-policyArea li{
    line-height: 1.8rem;
    padding: 0.5% 3%;
}
@media screen and (max-width: 480px){
    #privacy-policyArea h1{
        font-size: 2.0rem;
    }
    #privacy-policyArea h2{
        font-size: 1.5rem;
    }
    #privacy-policyArea li{
        line-height: 1.5rem;
        font-size: 1rem;
    }
}