@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Montserrat:200);


body{
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    margin:0;
    color:#313131;
}


/********メインページ共通*****************************************************************/
.main_h1{
    font-family: Montserrat, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 30px;
    margin-bottom: 70px;
    color: rgba(50,180,255,0.5);
    position: relative;
    display: inline-block;
    padding: 0 100px;
}

.main_h1:before, .main_h1:after{
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 80px;
height: 1px;
background-color: rgba(50,180,255,0.5);
}

.main_h1:before {left:0;}
.main_h1:after {right: 0;}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
   
   .main_h1{
    padding: 0 250px;
}

.main_h1:before, .main_h1:after{
width: 200px;
}
    
}
/********メインページ共通*****************************************************************/

/********ヘッダー*****************************************************************/

header{
    background-image: url(parts/top1.JPG);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

header h1{
    font-family: Montserrat, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 20px;
    margin: 0;
    width:auto;
    padding: 18px 0 18px 20px;
        
}
header h1 a{
    text-decoration:none;
    color:aquamarine;

}

header h2{
    font-family: Montserrat, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 24px;
    color: #fff;
    
    width: 100%;
    text-align: center;
    
    position: absolute;
    top: 45%;
    -ms-transform: translateY(-50%);
    -webkit-transform : translateY(-50%);
    transform : translateY(-50%);
    
    
}

#navigation{
    width: 100%;
    position: fixed;
        z-index: 3;
     transition: .3s;
    background-color: rgba(50,180,255,0.5);
}






/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
    
    header h1{
    font-size: 35px;
    padding: 20px 0 10px 30px;
}
    
    
    header h2{
    font-size: 60px;
}
    
    #navigation{
    background-color: transparent;
}



}
/********ヘッダー*****************************************************************/

/********メニュー*****************************************************************/

/*--------------------------------------------------------------- */
/* ▼スマホ専用デザイン▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* -------------------------------------------------------------- */
@media screen and (max-width: 1169px) {
    
/*メニューボタン（トグル）のデザイン*/
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
    
    #menuButton {
        display: block;
        width: 54px;
        height:54px;
        position: fixed;
        z-index: 3;
        right: 10px;
        transition: .3s;
        margin-top: 5px;
    }
    
    /*線*/
    #menuButton span {
        display: block;
        background-color: aquamarine;
        width: 36px;
        height: 2px;
        position: absolute;
        left: 9px;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
    }
    
    /*通常時の一番上の線*/
    #menuButton span:first-child {
        top: 13px;
    }
    
    /*通常時の真ん中の線*/
    #menuButton span:nth-child(2) {
        margin-top: -1px;
        top: 50%;
    }
    
    /*通常時の一番下の線*/
    #menuButton span:last-child {
        bottom: 13px;
    }
    
    #menuButton.active span {
        background-color: aquamarine;
    }
    
    /*押された時の一番上の線*/
    #menuButton.active span:first-child {
        -webkit-transform: translateY(13px) rotate(45deg);
        -moz-transform: translateY(13px) rotate(45deg);
        -ms-transform: translateY(13px) rotate(45deg);
        transform: translateY(13px) rotate(45deg);
    }
    
    /*押された時の真ん中の線*/
    #menuButton.active span:nth-child(2) {
        opacity: 0;
    }
    
    /*押された時の一番下の線*/
    #menuButton.active span:last-child {
        -webkit-transform: translateY(-13px) rotate(-45deg);
        -moz-transform: translateY(-13px) rotate(-45deg);
        -ms-transform: translateY(-13px) rotate(-45deg);
        transform: translateY(-13px) rotate(-45deg);
    }
    
/*▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/
/*メニューボタン（トグル）のデザイン*/



    #menuBox{
        background-color: rgba(50,180,255,0.5);
       font-family: Montserrat, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        
    }

    #menu ul{
        margin:0;
        padding:10px 0 15px 0px;
        list-style: none;
        border-top: solid 1px aquamarine;
        border-bottom: solid 1px aquamarine;
    }
    
    #menu ul li{
    }
    
    #menu ul li a {
        display:block; /*テキスト以外もリンクとして反応するように*/
        font-size:16px;
        color:#fff;
        text-decoration:none;
        padding:15px 0px 15px 60px;
    }
    
    #menu ul li a i{
        color: aquamarine;
        float: right;
        padding:0px 37px 0px 0px;
        font-size: 24px;
    }
    
    }
/*--------------------------------------------------------------- */
/* ▲スマホ専用デザイン▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* -------------------------------------------------------------- */

/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

 
}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    

    #menuBox{
        font-family: Montserrat, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        width:auto;
        position: fixed;
        z-index: 3;
        top: 20px;
        right: 10px;
    }
    #menuBG{
        background-color: #444;
    }
    
    #menuButton{
        display: none;
    }
      
    #menu{
        margin: 0 20px 0 0;
        display: block !important;
    }
    #menu ul{
        margin:0;
        padding:0;
	   font-size: 0;
    }
    #menu ul li{
        display: inline-block;
        width:auto;  
        margin:0;
	   padding:0;
    }
    #menu ul li a {
	   display:block; /*テキスト以外もリンクとして反応するように*/
	   font-size:20px;
	   text-align:center; /*テキストをセンターに*/
	   color:rgba(50,180,255,0.5);
	   text-decoration:none;
        padding:10px 37px;
    }
    #menu ul li a i{
	   display:none;
    }
    #menu ul li a:hover span{
        display: block;
        background-color: aquamarine;
        width: 100%;
        height: 2px;
        margin-top: 5px;
    }
    
    #menu ul li a.active{
        color:aquamarine;
    }
    }
/********メニュー*****************************************************************/

/********アバウト*****************************************************************/


#about{
    width:100%;
    padding-top:70px;
    padding-bottom:100px;
    background-color: #fff;
    text-align: center;
}


#about p{
    color: #999;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 30px;
    line-height: 2em;
    padding: 0 20px;
}




/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    


   
}
/********アバウト*****************************************************************/

/********プロフィール*****************************************************************/


#profile{
    width:100%;
    padding-top:70px;
    padding-bottom:100px;
    background-color: #f9f9f9;
    text-align: center;
}


#profile h2{
    color: #444;
}




#profile p{
    color: #888;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 30px;
    line-height: 2em;
    padding: 0 20px;
}
#pro_pic{
    text-align: center;
    margin-bottom: 30px;
}
#profile img{
    width: 200px;
}



/*Instagram▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.insta_btn{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  vertical-align: middle;/*垂直中央寄せ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション@*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn:before{/*グラデーションA*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s;
    padding: 0 5px;
}

.insta_btn:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}


/*Instagram▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲*/



/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
   
   #profile img{
    width: 400px;
}
    
}
/********プロフィール*****************************************************************/

/********ブログ*****************************************************************/


#blog{
    width:100%;
    padding-top:70px;
    padding-bottom:100px;
    background-color: #fff;
    text-align: center;
}



#blog p{
    color: #999;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 500px;
    line-height: 2em;
}




/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
   
   
    
}
/********ブログ*****************************************************************/

/********コンタクト*****************************************************************/


#contact{
    width:100%;
    padding-top:70px;
    padding-bottom:100px;
    background-color: #f9f9f9;
        text-align: center;

}

#contact label{
    color: #555;

}



#contact input{
    border:0;
    padding:10px;
    font-family:Arial, sans-serif;
    font-size: 14px;
    color:#222;
    border:solid 1px #ccc;
    width: 100%;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#contact input:focus {
    outline: 0;
    border:solid 1px #40e0d0;
}

#contact textarea{
    border:0;
    padding:10px;
    font-family:Arial, sans-serif;
    font-size: 14px;
    color:#222;
    border:solid 1px #ccc;
    width: 100%;
    height: 70px;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#contact textarea:focus {
    outline: 0;
    border:solid 1px #40e0d0;
}

#contact input[type="submit"]{
    border:0;
    padding:10px;
    font-family:Arial, sans-serif;
    font-size: 14px;
    color:#40e0d0;
    border:solid 1px #40e0d0;
    background-color: #fff;
    width: 140px;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    

}

#contact input[type="submit"]:hover{
    color:#fff;
    border:solid 1px #ccc;
    background-color: #40e0d0;
    
}



#contact form{
    padding: 0 40px 0 20px;
    text-align: left;

}




.form_one{
    margin-bottom: 40px;
}
.form_button{
    text-align: center;
    margin-bottom: 50px;
}

span.error_m {
    font-size: 15px;
    font-weight: normal;
    color: #FF4040;
    display: block;
    margin: 0;
}

#contact input[type="text"].inp_error,
#contact input[type="tel"].inp_error,
#contact textarea.inp_error {
    border: 1px solid #F88A8A;
    background: #F4D4D4;
}

#send{
    color: #FF4040;
    font-size: 18px;
}



/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {
    
    
}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
   #contact form{
    width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 70px;
        margin-bottom: 120px;

}

   
    
}
/********コンタクト*****************************************************************/

/********フッター*****************************************************************/

footer{
        background-color: rgba(50,180,255,0.5);
        text-align: center;
    padding: 10px 0px;
    }

    small{
        font-size: 15px;
        color: #fff;
        
    }

/* ------------------------------------ */
/* ▼タブレット用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 600px) {

}

/* ------------------------------------ */
/* ▼PC用デザイン▼ */
/* ------------------------------------ */
@media screen and (min-width: 1170px) {
    
    

}

/********フッター*****************************************************************/



















