@charset "utf-8";


/*全体共通設定　開始*/
html{
    -webkit-text-size-adjust: 100%;
}

body{
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: white;
    background: url(./img/silverBackground.jpg) repeat;
    background-size: cover;
    
}

wrap{
    max-width: 980px;
    margin: 0 auto;
    text-shadow: 
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}

header,section,footer{
    max-width: 100%;
}


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

a{
    text-decoration: none;
    color: white;
}

a:hover{
    color: blue;
}


ul{
    list-style: none;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

.green:hover{
    color: greenyellow;
}


/*全サブタイトルについて*/
.subtitle{
    text-align: center;
    margin: 20px auto;
    border: 1px solid black;
    font-size: 35px;
    border-radius: 15px;
    width: 100%;
    background-color: black;
}

/*全ボタンについて*/
.button{
    padding: 10px auto;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid;
    border-color: #aaaaaa #444444 #444444 #aaaaaa;
    max-width: 65%;
    height: 48px;
    margin: 0 auto;
    cursor: pointer;
    background-color: white;
    box-shadow: 
        -1px -1px 0 #fff,
        2px 2px 0 #aaa;
    text-shadow: none;
    
}

.button:hover{
    background-color: gainsboro;
    transition-duration: 0.3s;
    color: black;
}

.button:active{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}


.button:focus{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}

.button a{
    text-decoration: none;
    color: black;
    display: block;
    width: 80%;
    height: 48px;
}

.oneLine{
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}


/*全体共通設定　終了*/




/*ヘッダー 開始*/
.header{
    display: flex;
    background-color: #1c110d;
    border: none;
    max-width: 980px;
    margin: 0 auto;
    
　　
}

.header h1 {
    max-width: 85%;
    margin: 0;
    padding: 0;
    border: none;
}

.header h1 img{
    max-width: 100%;
}

.header .hamburger{
    width: 40%;
    border: none;
    background-color: #1c110d;
    font-size: 38px;
    cursor: pointer;
    color: white;
}

.header .hamburger:focus{
    outline: none;
}

#nav{
    position: fixed;
    right: -260px;
    top: 0;
    width: 260px;
    height: 100%;
    background-color: #1c110d;
    z-index: 2;
}

#nav ul{
    margin-top: 60px;
}

#nav ul li{
    margin-bottom: 25px;
}

#nav ul li a{
    font-size: 22px;
}

.show{
    transform: translate3d(-260px, 0, 0);
/*    height: 100vh;*/
    overflow: hidden;
}

body .show button{
    z-index: 200;
    position: relative;
}

#wrapper, #nav{
    transition: transform 0.3s;
}

#wrapper .menu ul{
    text-align: center;
}

.sr-only{
    font-size: 20px;
}

/*
#nav:not(.show) .fa-times{
    display: none;
}

#nav.show .fa-bars{
    display: none;
}
*/

/*ヘッダー 終了*/


/*ファーストビュー　開始*/


.firstviewdiv{
    max-width: 980px;
    background-color: #333333;
    margin: 0 auto;
}

.firstview{
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}

.firstImg{
    width: 100%;
}

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

/*
.firstview .Philosophy{
    position: absolute;
    top: 25%;
    left: 27%;
    text-align: center;
    width: 90%;
    transform: translate(-25%, -27%);
    font-size: 14px;
    animation: fadeIn 1.3s 0.8s linear;
    animation-fill-mode: both;
    color: white;
    text-shadow: none;
    text-shadow: 
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
    background-color: black;
    border: 3px solid gold;

}

.firstview .Philosophy span{
    font-size: 25px;
    font-family: 'Playfair Display', serif;
}
*/

/*
.firstview #slider{
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-51%, -50%); 
    width: 85%;
    height: 150px;
    background-color: black;
    border: 3px solid gold;
}

.firstview #slider .slide{
    text-align: center;
    font-size: 20px;
    color: red;

    text-shadow: 
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;
    
}

.firstview #slider .slide span{
    color: yellow;
    font-family:serif;
}


.firstview #slider .slide p{
    color: white;

    text-shadow: 
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;

    margin-top: 2rem;    
}

.firstview #slider .slide:hover{
    opacity: 0.7;
}
*/

/*

.firstview #slider .event{
    margin: 0 auto;
    font-size: 30px;
    text-align: center;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.firstview #slider .event:hover{
    opacity: 0.7;
}


.firstview #slider .event p:hover{
    color: white;
}

.firstview #slider .event:active{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}


.firstview #slider .event:focus{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}

.firstview #slider .event span{
    color: yellow;
    font-size: 25px;
    font-family:serif;
/*    不安定な字体に変える*/
/*
}


.firstview #slider .event p{
    font-size: 14px;
    
}
*/


/*ファーストビュー　終了*/

/*概要　開始*/

.outline{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    max-width: 960px;
    margin: 0 auto;

}

/*
.outline .outline_detail{
    margin: 50px 5px;
    background-image: url("./img/cd.jpg");
    background-size:cover;

}
*/

.outline .outline_detail img{
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.outline h2{
    color: orange;
    font-size: 30px;
    margin: 30px 0;
    text-align: center;
    /*
    text-shadow: 
        2px 2px 3px #fff,
        2px 2px 3px #fff;
        */
}

/*
.outline h3{
    color: red;
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 
        2px 2px 3px #fff,
        2px 2px 3px #fff;
    margin-bottom: 0;

    
}
*/

/*
.outline .outlineSubtitle{    
    text-align: center;
    font-size: 100%;
    margin-top: 0;
}
*/

/*
.outline h4{
    text-align: center;
    font-size: 120%;
    color: gold;
    margin-bottom: 60px;
}

.outline h4 span{
    color: silver;
}
*/

/*
.outline .outline_detail h4{
    font-size: 120%;
    margin: 30px 10px;
    margin-top: 10px;
    line-height: 40px;
    color: gold;
    text-align: center;
}

.outline .outline_detail h4 span{
    color: silver;
}
*/


.outline .description p{
    margin: 30px 10px;
    margin-top: 10px;
    line-height: 40px;
}

.outline .description .balloon1-top{
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
/*
  color: #555;
  font-size: 16px;
*/
  background: #1c110d;
  border: solid 3px #555;
  box-sizing: border-box;
    border-radius: 40px;
}

.outline .description .balloon1-top:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #1c110d;
  z-index: 2;
}

.outline .description .balloon1-top:after{
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #555;
  z-index: 1;

}

.outline .description .balloon1-top p {
  margin: 0;
  padding: 0;
}

.outlines{
    display: flex;
}

.outlines img{
    width: 174px;
}

.outlines .outlines_text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.outlines .outlines_text p{
    margin: auto;
    margin: 0;
    margin-left: 15px;
    
}

.outlines .outlines_text small{
    text-align: center;
}

.outline .message{
    margin: 0 10px;
    text-align: center;
}

.outline .message a{
    font-size: 20px;
    color: yellow;
}




/*概要　終了*/





/*コース紹介　開始*/
/*

.course{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    color: black;
    text-shadow: none;
    font-size: 16px;
    max-width: 960px;
    margin: 0 auto;

}

.course h2{
    color: white;
}

*/

/*スタンダードコース*/

/*
.course .standard{
    border: 1px solid black;
    background-color: palegoldenrod;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.course .standard p:nth-child(1){
    text-align: right;
    background-color: white;
    margin: 0;
    padding: 0 5px;;
}

.course .standard p span{
    color: red;
}

.course .standard h3{
    font-size: 100%;
    margin: 0;
    padding: 10px 0;
    color: white;
    background-color: gold;
    text-align: center;
    font-size: 2rem;
    text-shadow: 
        2px 2px 3px #000;
}

.course .standard p:nth-of-type(2){
    margin: 10px 30px;
 }

.courseProgram{
    margin: 5px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.courseProgram div{
    margin: 0;
    margin-right: 10px;
}

.courseProgram div:nth-child(2){
    margin-right: 0;
}


.standard .courseProgram h4{
    color: red;
    margin: 0;
}

.course .standard p:nth-child(2){
    margin: 5px 0;
}



.standard .stepmark{
    border: 1px dashed red;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 50px;
    background-color: white;
    
}

.standard .stepmark span{
    font-size: 40px;
    line-height: 10px;
    color: red;
}

.standard .arrow{
    width: 1px;
    height: 1px;
    text-align: center;
    margin: 28px 62px 0;
    border: 18px solid transparent;
    border-top: 20px solid red;

}
*/

/*ビギナーコース*/

/*
.course .beginner{
    border: 1px solid black;
    background-color: gainsboro;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.course .beginner p:nth-child(1){
    text-align: right;
    background-color: white;
    margin: 0;
    padding: 0 5px;;
}

.course .beginner p span{
    color: blue;
}

.course .beginner h3{
    margin: 0;
    padding: 10px 0;
    color: white;
    background-color: silver;
    text-align: center;
    font-size: 2rem;
    text-shadow: 
        2px 2px 3px #000;
}

.course .beginner p:nth-of-type(2){
    margin: 10px 30px;
 }

.courseProgram{
    margin: 5px 10px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.courseProgram div{
    margin: 0 10px;
}

.beginner .courseProgram h4{
    color: blue;
    margin: 0;
}

.course .beginner p:nth-child(2){
    margin: 5px 0;
}



.beginner .stepmark{
    border: 1px dashed blue;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 50px;
    background-color: white;
    
}

.beginner .stepmark span{
    font-size: 40px;
    line-height: 10px;
    color: blue;
}

.beginner .arrow{
    width: 1px;
    height: 1px;
    text-align: center;
    margin: 28px 62px 0;
    border: 18px solid transparent;
    border-top: 20px solid blue;

}

.beginner .beginnerStepGuide{
    margin: 10px;
    margin-bottom: 5px;
    margin-top: 0;
    display: flex;

}

.beginner .beginnerStepGuide div:nth-child(1){
    margin: 0 20px;
}

.beginner .beginnerStepGuide div:nth-child(2){
    margin-right: 0;
}

.beginner .stepGuide{
    width: 100px;
    border: 3px solid blue;
    color: blue;
    padding: 3px;
    background-color: white;
}

.course .beginner .beginnerStepGuide p{
    padding: 0;
    background-color: gainsboro;
    text-align: left;
}

.beginner .message{
    margin: 28px 30px;
    margin-bottom: 0px;
    color: red;
    text-shadow: 1px 1px #fff;
}
*/

/*トレーニングプログラム*/

/*
.course .trainingProgram{
    border: 1px solid black;
    background-color: indianred;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.course .trainingProgram p:nth-child(1){
    text-align: right;
    background-color: white;
    margin: 0;
    padding: 0 5px;;
}

.course .trainingProgram p span{
    color: darkgreen;
}

.course .trainingProgram h3{
    font-size: 100%;
    margin: 0;
    padding: 10px 0;
    color: white;
    background-color: red;
    text-align: center;
    font-size: 2rem;
    text-shadow: 
        2px 2px 3px #000;
}

.course .trainingProgram p:nth-of-type(2){
    margin: 10px 30px;
 }
*/

/*
.courseProgram{
    margin: 5px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.courseProgram div{
    margin: 0;
    margin-right: 10px;
}

.courseProgram div:nth-child(2){
    margin-right: 0;
}
*/

/*

.trainingProgram .courseProgram h4{
    color: darkgreen;
    margin: 0;
}

.course .trainingProgram p:nth-child(2){
    margin: 5px 0;
}



.trainingProgram .stepmark{
    border: 1px dashed darkgreen;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 50px;
    background-color: white;
    
}

.trainingProgram .stepmark span{
    font-size: 40px;
    line-height: 10px;
    color: red;
}

.trainingProgram .arrow{
    width: 1px;
    height: 1px;
    text-align: center;
    margin: 28px 62px 0;
    border: 18px solid transparent;
    border-top: 20px solid darkgreen;

}


*/



/*コース紹介　終了*/


/*アクセス　開始*/

.access{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;

}


.access .map{
    max-width: 100%;
    margin-bottom: 40px;
}

.access h3{
    font-size: 18px;
}

.access .phone span{
    font-size: 30px;
}

.access p{
    margin-bottom: 0px;
}

.detailsMap img{
    max-width: 100%;
    border: 1px solid black;
}

.detailsMap h3{
    border: 3px solid red;
    width: 70%;
    margin: 0 auto;
    margin-top: 60px;
    font-size: 25px;
}


.detailsMap div{
    margin: 10px;
    margin-bottom: 20px;
}

.detailsMap ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.detailsMap li{
    flex: 1 1 auto;
    margin-right: 10px;
}

.detailsMap li:last-of-type{
    margin-right: 0;
}

/*アクセス　終了*/


/*コンタクト開始*/

.topbutton{
    display: flex;
    justify-content: center;
    width: 100%;
    
    background-color: #333333;
    padding-bottom: 40px;

}

.topbutton div{
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    
    
}

.topbutton div .button{
    color: #888800;
    width: 100%;
    margin: 0;
    padding: 5px;
    font-size: 17px;

}

.contact{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;

}

.contact h2{
    margin-bottom: 40px;
}

.contact h3{
    font-size: 100%;
    margin-bottom: 20px;
}

.contact a{
    max-width: 250px;
    padding: 5px;
    font-size: 17px;
}

/*コンタクト終了*/


/*限定公開動画開始*/

.LimitedVideo{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;

}

.LimitedVideo h2{
    margin-bottom: 40px;
}

.LimitedVideo p{
    font-size: 100%;
    margin-bottom: 20px;
}

.LimitedVideo video{
    margin-bottom: 20px;
}


/*限定公開動画終了*/



/*注意点、お知らせ　開始*/

.Notice{
    background-color: #333333;
    padding: 10px;
    max-width: 960px;
    margin: 0 auto;

 }

.Notice .comments{
    max-width: 85%;
    margin: 0 auto;
    margin-bottom: 30px;

}


.Notice .NoticeComment1{
    width: 90%;
    height: auto;
    border-top: 12px gold double;
    border-bottom: 12px gold double;
    padding: 0px 10px;
    margin: 30px auto;
    display: flex;
    align-items: center;
}

.Notice .NoticeComment1 p{
    font-size: 20px;
}


.Notice .NoticeComment2{
    width: 90%;
    height: auto;
    border-top: 12px gold double;
    border-bottom: 12px gold double;
    padding: 0px 10px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    
}

.Notice .NoticeComment2 p{
    font-size: 20px;
    margin: 0;
}

.Notice .NoticeComment2 .smallNotice{
    display: flex;
    justify-content: center;
}

.Notice .NoticeComment2 .smallNotice p{
    font-size: 16px;
}

/*注意点、お知らせ　終了*/


/*メニュー一覧　開始*/
.menu{
    background: url(./img/seaMonokuro.jpg) no-repeat;
    background-size: cover;
    padding: 10px;
    padding-bottom: 18px;
    max-width: 960px;
    margin: 0 auto;
}


.menu ul{
    padding: 0;
}

.menu ul li{
    margin: 20px;
}

.menu ul li a{
     font-size: 27px;

}


/*メニュー一覧　終了*/

/*フッター　開始*/

.footer{
    background-color: #1c110d;
    color: white;
    max-width: 980px;
    margin: 0 auto;


}

.footer h2{
    text-align: center;
    margin-top: 0;
}

.footer h2 img{
    max-width: 100%;
}

.footer .sns{
    display: flex;
    justify-content: center;
}

.footer .sns i{
    font-size: 50px;
}

/*
.footer .sns li:first-of-type{
    margin-right: 50px;

}
*/

.footer .sns .fa-instagram:hover{
    color: purple;
}

.footer .sns .fa-line:hover{
    color: lawngreen;
}


.footer ul {
    text-align: center;
    font-size: 18px;
    margin: 10px 40px 10px 0;
}

.footer small{
    display: block;
    text-align: center;
    padding-bottom: 10px;
}


/*フッター　終了*/




/*-----------------料金表ページ------------------*/


.pricePage{
    font-size: 18px;
    text-align: center;
}


.priceList{
    background-color: #333333;
    max-width: 980px;
    margin: 0 auto;

}

.priceList .priceListDetail{
    padding: 0 10px;
    
}

.priceList .priceListDetail .priceMenu .outlines_text{
    display: flex;
    flex-direction: column;
    margin: 20px;
    
}

.priceList .priceListDetail .priceMenu .outlines_text p{
    font-size: 25px;
    margin-bottom: 0;
    
}


.priceList .priceListDetail .priceMenu h3{
    border-bottom: 2px solid yellowgreen;
    display: inline-block;
    margin-bottom: 20px;
}


.priceMessage{
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
    line-height: 2;
    padding: 10px;
    border: 1px solid gold;


}


.priceMenu{
    margin: 0;
    
}


.priceMenu div{
    margin: 10px;
    margin-bottom: 70px;
}

.priceMenu div a{
    color: gold;
}

.pricePage .explanation{
    text-align: left;
    display: block;
}


.priceMenu ul{
    display: flex;
    margin: 0;
    padding: 0;

}

.priceMenu ul li{
    border: solid 2px black;
    padding: 3px;
    width: 100%;
    background-color: white;
}




.priceMenu ul li:first-child{
    background-color: burlywood;
    text-shadow: -1px -1px 0 burlywood, 1px 1px 0 burlywood;

}


.priceMenu ul li:nth-child(2){
    color: burlywood;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;

}

.priceMenu ul li:nth-child(3){
    color: red;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;

}

.priceMenu ul li small{
    font-size: 10px;
}



.priceMenu div p small{
    color: red;
}



.priceList .lessonPrice{
    margin-bottom: 40px;
}



.lessonPrice .lessonPriceTable{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;

}


.lessonPriceTableList{
    padding: 0;
    
} 

.lessonPriceTableList li{
    text-align: center;
    padding: 3px;
    border: 1px solid white;
    border-collapse: collapse;
}


.lessonPriceTableList li:first-child{
    background-color: saddlebrown;
}


.priceMenu .intensivePlan{
    margin: 0 auto;
    
}

.priceMenu .intensivePlan{
    margin: 50px auto;
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 50px;
    
    
}

.intensivePlan p:nth-child(1){
    color: orangered;
    font-size: 25px;
}

.intensivePlan ul{
    padding: 0;
}


.intensivePlan li{
    margin-bottom: 20px;
}

.intensivePlan li span{
    color: gold;

}


.priceList .priceListDetail .LineNews{
    border: 1px solid green;
    margin: 0 auto;
    margin-bottom: 40px;
}

.priceList .priceListDetail .LineNews span{
    color: lawngreen;
}



.priceList .priceListDetail .trainingProgram p{
    margin-top: 0;
}



.priceList .priceListDetail .trainingProgram h3{
    border-bottom: 2px solid yellowgreen;
    display: inline;
}


.priceList .priceListDetail .trainingProgram p{
    margin-bottom: 50px;
}




.priceList .priceListDetail .Payment h3{
    border-bottom: 2px solid yellowgreen;
    display: inline;
}


.priceList .priceListDetail .pay{
    margin-bottom: 0;
}



.pricePage .Notice p{
    text-align: left;
}



/*背景チェンジ*/
.pricePage .contact{
    background: none;
    background-color: #333333;    
}

.pricePage .Notice{
    background: none;
    background-color: #333333;
    
}





/*-----------------トレーナー紹介ページ------------------*/

.trainerPage{
    font-size: 18px;
}


.trainer{
    background-color: #333333;
    max-width: 980px;
    margin: 0 auto;

}

.trainer p{
    padding: 0 20px;
}

.trainer .trainerIntroduction{
    padding: 10px;
    padding-bottom: 40px;
    margin: 0 auto;
    text-align: left;
}

.masumoto_masahiro{
    line-height: 39px;    
}



.woman_trainer{
    line-height: 39px;
}

.woman_trainer .profile .subtitle{
    font-size: 18px;
}

.woman_trainer .biography p{
    text-align: left;
}


.hamotani_masaru{
    line-height: 39px;
}

.hamotani_masaru .profile .subtitle{
    font-size: 18px;
}

.hamotani_masaru .biography p{
    text-align: left;
}



.watanabe_tsuyoshi{
    line-height: 39px;
}

.profile{
    text-align: center;
    margin: 0 auto;
    padding: 20px;

}

.watanabe_tsuyoshi .profile .subtitle{
    font-size: 18px;
}

.profile .name{
    border-top: 20px blue solid;
    border-bottom: 20px blue solid;
    padding: 5px;

}

.profile img{
    max-width: 250px;
    border: 1px black solid;
}


.trainer .explanation{
    text-align: left;
}


.trainer h3{
    display: inline;
    border-bottom: 3px solid yellowgreen;
    padding-bottom: 5px;
}

.trainer .contact h3{
    display: inline-block;
    border-bottom: none;
    padding-bottom: 0;
}

.trainer .greeting{
    text-align: center;
}

.trainer .greeting p{
    margin: auto 10px;
    text-align: left;
}

.masumoto_masahiro .golfBiography p{
    padding: 0;
    text-align: left;
}

.masumoto_masahiro .bodymakeBiography p{
    padding: 0;
    text-align: left;
}


.masumoto_masahiro .biography ul{
    padding: 0;
}

.watanabe_tsuyoshi .biography p{
    text-align: left;
}

.trainer .smallNotice p{
    padding: 0;
}

/*
.video{
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    
}

.video li{
    width: auto;
    height: auto;
    border: 1px yellow solid;
    border-radius: 5px;
    margin-bottom: 50px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video li:hover{
    opacity: 0.8;
}

.video li a{
    display: block;
    padding: 11px 6px;
}
*/

/*
.tsuyoshi_calendar{
    margin: 0 5px;
}

.tsuyoshi_calendar iframe{
    max-width: 100%;
}

.tsuyoshi_calendar{
    margin-bottom: 50px;
}


.trainer .contact{
    background: none;
    background-color: #333333;    
}

.trainer .contact h3{
    border-bottom: none;
    display: block;
}


.trainer .Notice{
    background: none;
    background-color: #333333;

}


.trainer .Notice p{
    padding: 0;
}




/*-----------------コース紹介ページ------------------*/

.courseDetail{
    background-color: #333333;
    max-width: 960px;
    margin: 0 auto;

}

.introduction{
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.introduction h3{
    display: inline-block;
/*    border-bottom: 3px solid yellowgreen;    */
}

.introduction p{
    font-size: 20px;
    padding: 0 20px;
    text-align: left;

}

.introduction .center{
    text-align: center;
}


.introduction p:nth-child(3){
    margin-bottom: 40px;

}

.introduction h4{
    display: inline-block;
    border-bottom: 3px double yellowgreen;
    margin-top: 0;
    margin-bottom: 0;    
}


.courseDetail .introduction .golf_visual .step{
    color: red;
    text-align: center;
}


.courseDetail .introduction .golf_visual .stepsonota{
    color: yellow;
    text-align: center;
}



.courseDetail .introduction .golf_visual h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.courseDetail .introduction .golf_visual h3 img{
    width: 320px;
    height: 250px;
    margin: 0 auto;
}


.courseDetail .introduction .golf_visual h3 p{
    display: inline-block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #ffff00;
    font-size: 26px;
    text-align: center;
    width: 300px;
}




/*

.courseDetail .introduction .golf_visual h3,
.golf_100under h3,
.golf_90under h3,
.golf_single h3,
.golf_bigDrive h3,
.golf_option h3,
.golf_functional h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.courseDetail .introduction .golf_visual h3 img,
.golf_100under img,
.golf_90under img,
.golf_single img,
.golf_bigDrive img,
.golf_option img,
.golf_functional img{
    width: 320px;
    height: 180px;
    margin: 0 auto;
}


.courseDetail .introduction .golf_visual h3 p,
.golf_100under h3 p,
.golf_90under h3 p,
.golf_single h3 p,
.golf_bigDrive h3 p,
.golf_option h3 p,
.golf_functional h3 p{
    display: inline-block;
    width: 170px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 83%;
    left: 29%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}
*/

.courseDetail .introduction .oneLine{
    margin: 0;
    padding: 0;
    text-align: center;
}


/*
.courseDetail .introduction .golf_100under h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.courseDetail .introduction .golf_100under img{
    width: 320px;
    margin: 0 auto;
}


.courseDetail .introduction .golf_100under h3 p{
    display: inline-block;
    width: 170px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 83%;
    left: 68%;
    transform: translate(-50%,-50%);
    color: yellow;
    font-size: 17px;
    background-color: white;
    text-align: center;

}
*/


.coursePage .introduction .golfTitle{
    border: red 3px solid;
    margin: 40px;
    padding: 10px;
}

.coursePage .introduction .golfTitle ul{
    padding: 0;
}


.coursePage .introduction .branch h5{
    color: blue;
    font-size: 23px;
}

.coursePage .introduction .branch small{
    padding: 0 20px;
    text-align: left;
    display: block;
}


.course_message{
    text-align: center;
    margin-bottom: 40px;
}

.course_message h3{
    display: block;
    border-bottom: 3px solid yellowgreen;    
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 350px;

}

.course_message img{
    max-width: 95%;
}

.course_message p{
    font-size: 18px;
    padding: 0 20px;

}

.course_message_greeting{
    line-height: 39px;    
    margin: auto 10px;
    text-align: left;
    
}

.junior{
    text-align: center;
    margin-bottom: 40px;
}

.junior h3{
    display: inline-block;
    border-bottom: 3px solid yellowgreen;    
    padding: 0 10px;
    margin-bottom: 20px;    
}

.junior p{
    font-size: 18px;
    margin: 0;
    padding: 0 20px;
    
}

.courseOther{
    text-align: center;
    padding: 0 20px;
}

.courseOther h3{
    display: inline-block;
    border-bottom: 3px solid yellowgreen;    
    padding: 0 10px;
    margin-bottom: 20px;
    
}

.courseOther p{
    font-size: 18px;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;

}



.freeService h4{
    display: inline-block;
    border-bottom: 3px double yellowgreen;
    margin-bottom: 0;
}


/*背景チェンジ*/
.coursePage .course{
    background: none;
    background-color: #333333;
}

.coursePage .contact{
    background: none;
    background-color: #333333;    
}

.coursePage .Notice{
    background: none;
    background-color: #333333;
    
}



/*-----------------トレーニングページ------------------*/

.trainingDetail{
    background-color: #333333;
    max-width: 960px;
    margin: 0 auto;

}

.trainingPage .introduction{
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
    
}

.trainingPage .introduction h3{
    display: inline-block;
    border-bottom: none;
}

.trainingPage .introduction p{
    font-size: 20px;
    padding: 0 20px;
    margin: 20px 10px;
    text-align: left;

}

.trainingPage .introduction p:nth-child(3){
    margin-bottom: 0px;

}

.trainingPage .introduction .price{
    text-align: center;
}

.trainingPage .introduction h4{
    display: inline-block;
    border-bottom: 3px double yellowgreen;
    margin-top: 0;
    margin-bottom: 0;    
}

.trainingPage .introduction div{
    margin-bottom: 80px;
}

.trainingPage .introduction .afterCourse h3{
    display: block;
    border: none;
    border: 2px blue solid;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
    
}

.trainingPage .introduction .personalTraining h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.trainingPage .introduction .personalTraining h3 img{
    width: 320px;
    margin: 0 auto;
}


.trainingPage .introduction .personalTraining h3 p{
    display: inline-block;
    width: 190px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 86%;
    left: 29%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}

.trainingPage .introduction .dietaryGuidance h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.trainingPage .introduction .dietaryGuidance h3 img{
    width: 320px;
    margin: 0 auto;
}


.trainingPage .introduction .dietaryGuidance h3 p{
    display: inline-block;
    width: 170px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 85%;
    left: 26%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}

.trainingPage .introduction .afterSupport h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.trainingPage .introduction .afterSupport h3 img{
    width: 320px;
    margin: 0 auto;
}


.trainingPage .introduction .afterSupport h3 p{
    display: inline-block;
    width: 170px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 86%;
    left: 25%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}

.trainingPage .introduction .oneLine{
    margin: 0;
    padding: 0;
    text-align: center;
}





/*背景チェンジ*/
.trainingPage .training{
    background: none;
    background-color: #333333;
}

.trainingPage .contact{
    background: none;
    background-color: #333333;    
}

.trainingPage .Notice{
    background: none;
    background-color: #333333;
    
}


/*トレーニングプログラム*/

.trainingPage .course{
    background: none;
}

.course .trainingProgram{
    border: 1px solid black;
    background-color: indianred;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.course .trainingProgram p:nth-child(1){
    text-align: right;
    background-color: white;
    margin: 0;
    padding: 0 5px;;
}

.course .trainingProgram p span{
    color: darkgreen;
}

.course .trainingProgram h3{
    font-size: 100%;
    margin: 0;
    padding: 10px 0;
    color: white;
    background-color: red;
    text-align: center;
    font-size: 2rem;
    text-shadow: 
        2px 2px 3px #000;
}

.course .trainingProgram p:nth-of-type(2){
    margin: 10px 30px;
 }

/*
.courseProgram{
    margin: 5px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.courseProgram div{
    margin: 0;
    margin-right: 10px;
}

.courseProgram div:nth-child(2){
    margin-right: 0;
}
*/


.trainingProgram .courseProgram h4{
    color: darkgreen;
    margin: 0;
}

.course .trainingProgram p:nth-child(2){
    margin: 5px 0;
}



.trainingProgram .stepmark{
    border: 1px dashed darkgreen;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 50px;
    background-color: white;
    
}

.trainingProgram .stepmark span{
    font-size: 40px;
    line-height: 10px;
    color: red;
}

.trainingProgram .arrow{
    width: 1px;
    height: 1px;
    text-align: center;
    margin: 28px 62px 0;
    border: 18px solid transparent;
    border-top: 20px solid darkgreen;

}





/*-----------------コンセプトページ------------------*/

.Concept{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    max-width: 960px;
    margin: 0 auto;


}

.eachConcept{
    margin-bottom: 50px;
}

.eachConcept span{
    color: yellow;
}

.eachConcept ul li{
    max-width: 400px;
    margin: 0 auto;
}


.Concept h3{
    text-align: center;
    border: solid red;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;

}

.conceptDetail{
    max-width: 960px;
}



.conceptDetail .ConceptSubtitle p{
    display: block;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    
}


.conceptDetail h4{
    text-align: center;
}

.conceptDetail h4:nth-child(2n){
    margin-top: 50px;
}

.conceptDetail iframe{
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    width: 284px;
    height: 160px;
}


.eachConcept{
    line-height: 35px;
}





/*-----------------施設紹介ページ------------------*/

/*施設　開始*/

/*
.facilityPage .CounselingImage{
    width: 340px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.facilityPage .CounselingImage img{
    width: 340px;
    height: 120px;
    margin: 0 auto;
}


.facilityPage .CounselingImage p{
    display: inline-block;
    width: 170px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 70%;
    left: 27%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}


*/


.Facility{
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    max-width: 960px;
    margin: 0 auto;


}

.eachFacility{
    margin-bottom: 50px;
}

.eachFacility span{
    color: yellow;
}


.Facility h3{
    text-align: center;
    border: solid red;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;

}

.Facility .eachFacility img{
    display: block;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

/*施設　終了*/



.facilityDetail{
    max-width: 960px;
}

.facilityDetail h4{
    text-align: center;
}

.facilityDetail h4:nth-child(2n){
    margin-top: 50px;
}

.facilityDetail iframe{
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    width: 284px;
    height: 160px;
}


.eachFacility{
    line-height: 35px;
}

.eachFacility img{
    max-width: 100%;
}



/*-----------------会員特典ページ------------------*/

.benefitsDetail{
    background-color: #333333;
    max-width: 960px;
    margin: 0 auto;

}

.benefitsPage .introduction{
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.benefitsPage .introduction img{
    margin-bottom: 50px;
    
}


.benefitsPage .introduction h3{
    display: inline-block;
    border-bottom: 3px solid yellowgreen;    
    margin-bottom: 20px;

}

.benefitsPage .introduction h4{
    display: block;
    padding-bottom: 5px;
    width: 180px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.benefitsPage .introduction p{
    font-size: 20px;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 50px;

}

.benefitsPage .introduction a{
    margin-bottom: 50px;
    padding: 5px;
    background-color: #dddd00;
    color: red;
}


.benefitsPage .introduction .number ol{
    list-style: none;
    text-align: center;
    padding: 0;
    counter-reset: count 0;
}

.benefitsPage .introduction .number ol li{
/*    text-indent: -1em;*/
    padding-left: 1em;
    font-size: 20px;
}

.benefitsPage .introduction .number ol li h4{
    width: 250px;
}


/*
.benefitsPage .introduction .number ol li:before{
    content: counter(count) ". ";
    counter-increment: count 1;
}

.benefitsPage .introduction .point_service{
    padding: 10px;
    padding-left: 0;
    padding-bottom: 0;
    border: 3px solid white;
    margin: 0 auto;
}

.benefitsPage .introduction .point_service h4{
    display: block;
    border-bottom: 3px solid yellowgreen;
    padding-bottom: 5px;
    width: 200px;
    margin: 0 auto;
}

.benefitsPage .introduction ol{
    list-style: circle;
    text-align: left;
    display: inline-block;
}

.benefitsPage .introduction ol li{
    margin-bottom: 10px;
}

.benefitsPage .introduction ol li:last-child{
    padding-bottom: 15px;
    margin-bottom: 0;

}
*/


/*背景チェンジ*/
.benefitsPage .benefits{
    background: none;
    background-color: #333333;
}

.benefitsPage .contact{
    background: none;
    background-color: #333333;    
}

.benefitsPage .Notice{
    background: none;
    background-color: #333333;
    
}


/*-----------------お知らせページ------------------*/
.beginner{
    background-color: #333333;
    text-align: center;
    padding: 10px;
    max-width: 960px;
    margin: 0 auto;
    
}

.beginner h2{
    text-align: center;
    margin: 20px auto;
    font-size: 35px;
    text-shadow: 
        1px 1px 0 #ffff00,
        -1px 1px 0 #ffff00,
        1px -1px 0 #ffff00,
        -1px -1px 0 #ffff00;
}


/*
.beginner .waku{
    position: relative;
}

.beginner .waku img{
    width: 100%;
}

.beginner .waku p{
    position: absolute;
    top: 50%;
    left: 25%;
    text-align: center;
}
*/

.beginner .beginnerTitle p{
    margin: 0;  
    margin-top: 20px;
    text-align: center;
}

.beginner .biginnerMenu{
    margin: 0;
    margin-bottom: 50px;
}


.beginner .biginnerMenu ul{
    display: flex;
    margin: 0;
    padding: 0;

}

.beginner .biginnerMenu ul li{
    border: solid 2px black;
    padding: 3px;
    width: 100%;
    background-color: white;
}




.beginner .biginnerMenu ul li:first-child{
    background-color: burlywood;
    text-shadow: -1px -1px 0 burlywood, 1px 1px 0 burlywood;

}


.beginner .biginnerMenu ul li:nth-child(2){
    color: burlywood;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;

}

.beginner .biginnerMenu ul li:nth-child(3){
    color: gold;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;

}

.beginner .biginnerMenu ul li small{
    font-size: 10px;
}




.beginner h3{
    font-size: 24px;
    color: yellow
}


.beginner .contact24{
    color: yellow;
}


.beginner .beginner_personal h3,
.beginner_personal_plus h3,
.beginner_personal_double h3,
.beginner_reserve h3{
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.beginner .beginner_personal h3 img,
.beginner_personal_plus h3 img,
.beginner_personal_double h3 img,
.beginner_reserve h3 img{
    width: 320px;
    margin: 0 auto;
}


.beginner .beginner_personal h3 p,
.beginner_personal_plus h3 p,
.beginner_personal_double h3 p,
.beginner_reserve h3 p{
    display: inline-block;
    width: 190px;
    padding: 0 5px 0 5px;
    position: absolute;
    top: 94%;
    left: 25%;
    transform: translate(-50%,-50%);
    color: gold;
    font-size: 17px;
    background-color: white;
    text-align: center;
    text-shadow: -1px -1px 0 white, 1px 1px 0 white;
    border: solid black 1px;

}

.beginner_personal_plus .option{
    margin-bottom: 0;
    
}

.beginner .oneLine{
    margin: 0;
    padding: 0;
    text-align: center;
}




/*
.firstview #slider{
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-51%, -50%); 
    width: 85%;
    height: 150px;
    background-color: black;
    border: 3px solid gold;
}

.firstview #slider .slide{
    text-align: center;
    font-size: 20px;
    color: red;

    text-shadow: 
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;
    
}

.firstview #slider .slide span{
    color: yellow;
    font-family:serif;
}


.firstview #slider .slide p{
    color: white;

    text-shadow: 
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;

    margin-top: 2rem;    
}

.firstview #slider .slide:hover{
    opacity: 0.7;
}
*/

/*

.firstview #slider .event{
    margin: 0 auto;
    font-size: 30px;
    text-align: center;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.firstview #slider .event:hover{
    opacity: 0.7;
}


.firstview #slider .event p:hover{
    color: white;
}

.firstview #slider .event:active{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}


.firstview #slider .event:focus{
    box-shadow: 
        2px 2px 5px #999 inset;
    background-color: whitesmoke;
    transition-duration: 0.1s;

}

.firstview #slider .event span{
    color: yellow;
    font-size: 25px;
    font-family:serif;
/*    不安定な字体に変える*/
/*
}


.firstview #slider .event p{
    font-size: 14px;
    
}
*/


.beginner .point_service{
    padding: 10px;
    padding-bottom: 0;
    border: 3px solid white;
    margin: 0 auto;
}

.beginner h4{
    display: block;
    border-bottom: 3px solid yellowgreen;
    padding-bottom: 5px;
    width: 200px;
    margin: 0 auto;
}

/*
.beginner ol{
    list-style: circle;
    text-align: left;
    display: inline-block;
}

.beginner ol li{
    margin-bottom: 10px;
}

.beginner ol li:last-child{
    padding-bottom: 15px;
}
*/

.beginner p{
    text-align: left;
    margin: auto 20px 40px;
    padding-top: 10px;
}

.beginner p:nth-child(3){
    line-height: 40px;
}

.beginner p:nth-child(3) a span{
    font-size: 21px;
    text-decoration: underline;
    color: lawngreen;
}

.beginner small{
    color: red;
    text-shadow: 
        1px 1px 0 #ffff00,
        -1px 1px 0 #ffff00,
        1px -1px 0 #ffff00,
        -1px -1px 0 #ffff00;    
}

.beginner .point_service p{
    text-align: left;
}




/*-----------------お問い合わせページ------------------*/
.contactDetail{
    text-align: center;
    background-color: #333333;
    max-width: 960px;
    margin: 0 auto;

}

.contactDetail h3{
    margin-top: 40px;
    font-size: 20px;
}

.contactDetail p{
    margin-bottom: 20px;
    font-size: 20px;
}

.contactDetail p span{
    font-size: 35px;
}

.contactDetail .netReservation{
    margin-top: 50px;
    
}

.contactDetail .netReservation h4{
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}

/*
.contactDetail .explanation{
    text-align: left;
}
*/

.reservation{
    display: block;
    margin: 0 auto;
    border: 2px green solid;
    max-width: 60%;
    height: auto;
    font-size: 25px;
    background-color: yellow;
    margin-bottom: 20px;
}

.ReservationDetail{
    margin: 10px;
    border: 3px solid yellow;

}

.contactSns .Instagram{
    margin: 10px;
    margin-top: 50px;
    border: 3px solid violet;
}

.contactSns .Instagram h4{
    font-size: 20px;
    color: plum;
    margin: 0 auto;
}

.contactSns .Instagram p{
    margin: 5px;
}

.contactSns .Instagram p:nth-child(3){
    margin: 10px;
    font-size: 16px;
    border: 2px solid palevioletred;
    background-color: purple;
    
}

.contactSns .Instagram i{
    font-size: 50px;
    margin: 10px;
    margin-bottom: 20px;
}

.contactSns .Instagram i:hover{
    color: purple;
}


.contactSns .Line{
    margin: 10px;
    margin-top: 50px;
    border: 3px solid green;
}

.contactSns .Line h4{
    font-size: 20px;
    color: lawngreen;
    margin: 0 auto;
}

.contactSns .Line p{
    margin: 5px;
}

.contactSns .Line p:nth-child(3){
    margin: 10px;
    font-size: 16px;
    border: 2px solid greenyellow;
    background-color: yellowgreen;
    
}

.contactSns .Line i{
    font-size: 50px;
    margin: 10px;
    margin-bottom: 20px;
}

.contactSns .Line i:hover{
    color: lawngreen;
}


.contactPage .Notice{
    background: none;
    background-color: #333333;
    
}

.contactPage .Notice p{
    text-align: left;
}


.contactPage .menu ul{
    text-align: left;
}




/*-----------------会員規則ページ------------------*/

.constitution{
    background-color: #333333;
    max-width: 960px;
    margin: 0 auto;

}

.constitution .subtitle{
    width: 100%;
}

.constitutionList{
    line-height: 39px;
    padding: 0 10px;
    
}

.constitution h3{
    font-size: 25px;
    text-align: center;
    color: burlywood;
    font-family: serif;
    text-shadow: 
        1px 1px 0 saddlebrown,
        -1px 1px 0 saddlebrown,
        1px -1px 0 saddlebrown,
        -1px -1px 0 saddlebrown;
}

.constitution h4,h5{
    color: black;
    text-shadow: 
        1px 1px 0 white,
        -1px 1px 0 white,
        1px -1px 0 white,
        -1px -1px 0 white;

}

/*
.constitution ol{
    margin-left: 3.5em;
}

.constitution ol li{
    list-style-type: none;
    counter-increment: cnt;
    position: relative;
}

.constitution ol li::before{
    content: "(" counter(cnt) ")";
    display: inline-block;
    margin-left: -3.5em;
    width: 3em;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}
*/

.constitution .listnone{
    list-style: none;
}

.constitution .listcircle{
    list-style-type: circle;
}


.constitutionExplanation{
    padding: 10px;
}



/*-------
----------
PCサイト メディアクエリ
-----------
---------------*/

@media screen and (min-width: 640px){
/*　　　タブレット&PCレイアウト    */
    
    
.PC{
display: none;
    }
    
    
.SP{
display: none;
    }
    
    
    
/*全サブタイトルについて*/
.subtitle{
    width: 55%;
}

/*全ボタンについて*/
.button{
    max-width: 40%;
}

.button a{
    width: 80%;
    height: 48px;
}




/*ヘッダー*/
    .header h1{
        margin: 0 auto;
    }
    
    .header .hamburger{
        width: 15%;
        font-size: 70px;
        margin-right: 10px;
}
    
    
    
/*トップページ*/
    
/*ファーストビュー*/
/*
    .firstview .Philosophy{
        width: 60%;
        font-size: 33px;
}

    .firstview .Philosophy span{
        font-size: 65px;
        font-family: 'Playfair Display', serif;
    }
*/

    .firstview #slider{
        height: 270px;
    }

    .firstview #slider .slide{
        font-size: 40px;
    }

    .firstview #slider .event{
        font-size: 60px;
    }


    .firstview #slider .event span{
        font-size: 50px;
    }

    .firstview #slider .event p{
        font-size: 28px;

    } 
    
/*ファーストビューボタン*/
    
    .topbutton{
    display: flex;
    justify-content: center;
    width: 100%;
    
    background-color: #333333;
    padding: 10px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;

}

.topbutton div{
    display: flex;
    justify-content: center;
    width: 100%;
}
    

.topbutton div .button{
    color: #888800;
    width: 300px;
    margin: 0;
    padding: 5px;
    font-size: 17px;

}


    
/*アウトライン*/
    
    .topPage .outline h2{
    font-size: 55px;
}
    
/*
    .topPage .outline h4{
    font-size: 200%;
}
*/

    
    .topPage .outline .outline_detail h4{
    font-size: 200%;
    text-align: center;
    margin: 30px 10px;
    margin-top: 10px;
    line-height: 40px;
    padding-bottom: 30px;

}
    
    
    .topPage .outline .outline_detail img{
    max-width: 600px;
    margin: 0 auto;
    display: block;
}




    .topPage .description{
        font-size: 22px;
        text-align: center;

    }

    
    .topPage .outlines p{
        font-size: 30px;
    }
    
    
    
    
/*コンセプト*/
    .Concept h3{
        width: 70%;
        
}
    
    .Concept .diet{
        display: flex;
    }

/*施設*/
    .Facility h3{
        width: 70%;
        
}
    
    .Facility .diet{
        display: flex;
    }
    
/*案内写真*/
    .detailsMap img{
        max-width: 65%;
    }    
    
    
    
/*注意事項*/
    .Notice .comments{
        max-width: 70%;
    }
    
    
/*メニュー*/
    .menu{
        background: url(./img/seaMonokuro.jpg);
        background-size: 50%;
    }
    
    
/*コース紹介*/
    .course_message h3{
        display: block;
        max-width: 450px;

    }

    .course_message img{
        width: 100%;
}
    
    .coursePage .introduction .branch{
    display: flex;
    
}
    
    .coursePage .introduction .branch div{
    width: 50%;
}

    
    
/*料金表ページ*/
    .priceMenu{
        margin: 0 10px;
    
}

    .priceMessage{
        width: 350px;
        line-height: 2;
        padding: 20px;
        border: 2px solid gold;
}

    
    .intensivePlan{
        width: 350px;
        line-height: 2;
        padding: 20px;
        border: 2px solid red;

        
    }
    
    .Linenews{
        width: 350px;
        line-height: 2;
        padding: 20px;
        border: 2px solid green;

        
    }
    
    
    
/*トレーナーページ*/
    .trainerPage .profile img{
        max-width: 50%;
    }
    
    
    .masumoto_masahiro .golfBiography p{
    padding: 0;
    }

    .masumoto_masahiro .bodymakeBiography p{
    padding: 0;
    }

    .trainerPage .trainer .greeting p{
        text-align: center;
    }


/*コンセプト紹介詳細*/    
    .conceptDetail iframe{
        display: block;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 853px;
        height: 480px;
    }
    
    .conceptDetail .textCenter{
        text-align: center;
    }

    
/*
    .conceptDetail .eachConcept img{
        max-width: 50%;
        
    }
*/

    
/*施設紹介詳細*/    
    .facilityDetail iframe{
        display: block;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 853px;
        height: 480px;
    }
    
    
    .facilityDetail .eachFacility img{
        max-width: 50%;
        
    }
    
    .facilityDetail .eachFacility .drivingRoom{
        display: flex;
    }
    
    .facilityDetail .eachFacility .drivingRoom img{
        max-width: 90%;
    }
    
    .facilityDetail .eachFacility p{
        display: block;
        margin: 0 15%;
    }
        


    
/*お知らせページ*/    
    .point_service{
        max-width: 50%;
    }
    
    
/*特典ページ*/
    
    .benefitsPage .introduction .number ol{
        width: 80%;
        margin: 0 auto;
}

    
/*
    .benefitsPage .introduction .button{
        width: 250px;
    }
*/
    
    
/*お問い合わせページ*/
    .contactDetail .netReservation{
        margin: 15%;

    }
    
    .reservation{
        max-width: 40%;
    }

    .contactSns{
        margin: 15%;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contactSns p:nth-child(3){
        margin: 10px 15%;

    }

    .contactSns i{
        margin: 10px;
        margin-bottom: 20px;
    }




/*会員規則*/
    .constitution .subtitle{
    width: 45%;
}

 


    
}

@media screen and (min-width: 940px){
/*  固定レイアウト（コンテンツ最大幅。背景のみ無限）  */
    /*ヘッダー*/
    .header h1{
        margin: 0 auto;
        margin-left: 20%;
    }
    
    .header .hamburger{
    width: 15%;
    font-size: 70px;
}
    
    

   
    
}


/*AIコード*/

    /*<style>*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    /*
    body {
        font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
        line-height: 1.8;
        color: #333;
    }
    */
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* ヘッダー */
    header {
        background: #3a3a3a;
        color: white;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 24px;
        font-weight: bold;
    }
    
    .header-cta {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .phone {
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    
    /* ファーストビュー */
    .hero {
        background: linear-gradient(rgba(58, 58, 58, 0.9), rgba(58, 58, 58, 0.95)),
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%233a3a3a" width="1200" height="600"/><circle cx="600" cy="300" r="150" fill="%23fff" opacity="0.05"/></svg>');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 300;
    }
    
    .hero-points {
        font-size: 20px;
        margin-bottom: 40px;
        line-height: 2;
    }
    
    .cta-button {
        display: inline-block;
        background: #ff6b35;
        color: white;
        padding: 20px 50px;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        transition: all 0.3s;
    }
    
    .cta-button:hover {
        background: #ff8555;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
    
    /* セクション共通 */
    section {
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        font-size: 36px;
        margin-bottom: 50px;
        color: #3a3a3a;
    }
    
    /* 悩みセクション */
    /*
    .worries {
        background: #f8f9fa;
    }
    */
    
    .worry-list {
        max-width: 700px;
        margin: 0 auto 40px;
        /*background: white;*/
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 10px white;
    }
    
    .worry-item {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
    }
    
    .worry-item:last-child {
        border-bottom: none;
    }
    
    .worry-item::before {
        content: "□ ";
        color: #ff6b35;
        font-weight: bold;
        margin-right: 10px;
    }
    
    .solution {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        /*color: #3a3a3a;*/
        margin-top: 30px;
    }
    
    /* 特徴セクション */
    /*
    .features {
        background: white;
    }
    */
    
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature-card {
        /*background: #f8f9fa;*/
        padding: 40px 30px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .feature-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: #3a3a3a;
        color: white;
        border-radius: 50%;
        line-height: 50px;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
        /*color: #3a3a3a;*/
    }
    
    .feature-desc {
        font-size: 16px;
        /*color: #666;*/
    }
    
    /* 実績 */
    .stats {
        background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
        color: white;
    }
    
    .stats .section-title {
        color: white;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: center;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 18px;
        opacity: 0.9;
    }
    
    /* 料金 */
    /*
    .pricing {
        background: #f8f9fa;
    }
    */
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .pricing-card {
        /*background: white;*/
        border-radius: 10px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 4px 15px white;
        transition: all 0.3s;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .pricing-card.featured {
        border: 3px solid #ff6b35;
        transform: scale(1.05);
    }
    
    .plan-name {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
        /*color: #3a3a3a;*/
    }
    
    .plan-price {
        font-size: 42px;
        font-weight: bold;
        color: #ff6b35;
        margin: 20px 0;
    }
    
    .plan-price small {
        font-size: 18px;
        /*color: #666;*/
    }
    
    .plan-features {
        list-style: none;
        margin: 30px 0;
        text-align: left;
    }
    
    .plan-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .plan-features li::before {
        content: "✓ ";
        color: #ffff00;
        font-weight: bold;
        margin-right: 10px;
    }
    
    /* アクセス */
    /*
    .access {
        background: white;
    }
    */
    
    .access-info {
        max-width: 800px;
        margin: 0 auto;
        /*background: #f8f9fa;*/
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 10px white;

    }
    
    .access-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        font-size: 18px;
    }
    
    .access-icon {
        font-size: 24px;
        margin-right: 15px;
        min-width: 30px;
    }
    
    /* お客様の声 */
    /*
    .testimonials {
        background: #f8f9fa;
    }
    */
    
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .testimonial-card {
        /*background: white;*/
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px white;
    }
    
    .testimonial-title {
        font-size: 20px;
        font-weight: bold;
        /*color: #3a3a3a;*/
        margin-bottom: 10px;
    }
    
    .testimonial-meta {
        /*color: #999;*/
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        line-height: 1.8;
        /*color: #666;*/
    }
    
    /* CTA最終 */
    .final-cta {
        background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
        color: white;
        text-align: center;
        padding: 80px 20px;
    }
    
    .final-cta h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .cta-options {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .cta-option-tel {
        background: #00ffff;
        /*color: #3a3a3a;*/
        padding: 20px 40px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .cta-option-line {
        background: #00ff00;
        /*color: #3a3a3a;*/
        padding: 20px 40px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s;
    }

.cta-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .faq-list {
        max-width: 700px;
        margin: 40px auto 0;
    }
    
    .faq-item {
        background: rgba(255,255,255,0.1);
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 5px;
    }
    
    .faq-q {
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .faq-a {
        opacity: 0.9;
    }
    
    /* フッター */
    footer {
        background: #222;
        color: white;
        text-align: center;
        padding: 30px 0;
    }
    
    /* レスポンシブ */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 32px;
        }
        
        .hero-subtitle {
            font-size: 18px;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .header-cta {
            flex-direction: column;
            gap: 10px;
        }
        
        .phone {
            font-size: 16px;
        }
    }
/*</style>*/



