@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');


/*-------------------------------------------------------
全デバイス共通のスタイルとスマートフォン向けレイアウト(599px以下)
---------------------------------------------------------*/
/* ロード */
.load{
    display: none;
}

.loadingImg{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
}

.loadingImg img{
    width:60%;
}

body{
    width: 100%;
    color: #411d0e;
    font-size: 16px;
    font-family: 'dnp-shuei-gothic-kin-std', 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    background-color:rgba(64,194,156,0.02);
    overflow-x: hidden;
}

header{
    text-align: center;
}

/*ページトップ*/
#pageTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
 
#pageTop a {
  display: block;
  z-index: 999;
  border-radius: 50%;
  width: 50px;
  height: 50px;
    line-height: 58px;
  padding-top: 4px;
  background-color: #82b7a7;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
 
#pageTop a:hover {
  text-decoration: none;
}

#pageTop .faLarge{
    font-size:32px;
}

/* センタリング */
.center{
    margin: 0 auto;
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span:after {
    content: attr(data-txt-close);
}

.menu-btn {
    cursor: pointer;

}

.menu {
    
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: rgba(211,211,211,0.9);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    
}

.menu ul {
    display: table-cell;
    vertical-align: middle;
}

.menu li {
    width: 300px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    text-align: center;
}

.menu li a {
    display: block;
    font-size: 18px;
    color: #411d0e;
}

.menu li a:hover {
    color: #999;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    /*cursor: url(../images/cross.svg),auto;*/
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}



#sp-menu{
    position: fixed;
    top:20px;
    right: 0;
    text-align: left;
    margin-right: 15px;
    
    
}


#sp-menu .menuBtn{
    border: solid 1px #411d0e;
    border-radius: 5px;
    font-size: 30px;
    height: 30px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(205, 238, 236, 0.8);
}

#navSmall_scroll{
    display: none;

}

#navigation{
    display: none;
}

#navigation_scroll{
    display: none;
  
    
}

.menu li a{
    font-family: 'Quattrocento Sans', sans-serif;;
    font-size: 32px;
    color: #411d0e;
}

article{
    line-height: 27px;
}

/*footerの設定*/
footer{
    text-align: center;
    padding: 40px 0;
    background: #263530;
    color:#EFFAF6;
}



/*メインビジュアルの設定*/
#mainImgBox{
    position: relative;
    width: 100vw;
    /* height: 50vh; */
    padding: 60px 0 30px;
    z-index: -1;
    background: linear-gradient(to right, #f6f6f6, #e6e6e6, #e6e6e6,#f6f6f6);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    display: block;
    text-align: center;
}

/* グラデ背景用アニメ */
@keyframes gradient {

    100% {
        background-position-x: 100%
    }
}

/* slickスライダー */
.slider{
    margin: 100px auto;
    width: 80%;
}
.slider img{
    height: auto;
    width: 100%;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #411d0e;
}

  


#mainImg{
    display: none;
    width: 100%;
}

/* #mainImgBox h1{
    font-family: 'Bad Script',sans-serif;
    font-size: 24px; */
/* } */

#mainImgBox #logo_small{
    display: none;
}


#mainImgBox #logo{
    /* width: 270px; */
    /* height: 60px; */
    position: absolute;
    top: 18%;
    right: 12%;
    font-family: 'Bad Script',sans-serif;
    font-size: 24px;
    line-height: 1.6;
    /* left: 50%; */
    /* margin-left: -135px; */
    /* margin-top: -60px; */
    
}

#mainImgBox #logo h1 span {
    opacity: 0;
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

/*worksの設定*/
#worksCont{
    background-image: url("../img/bg_cross.png");
    /* 背景のパターンを抑えめに */
    background-color:rgba(255,255,255,0.3);
    background-blend-mode: lighten;
}

.changeTab{
    display: none;
}

.changeTab_Btn_Content{
    letter-spacing: -0.4em;
}

div.changeTab_Btn{
    padding:15px 10px;
    margin-right: 0.2%;
    font-size:14px;
    color:#888;
    letter-spacing: normal;
    background-color: #d3d3d3;
    border-bottom:none;
    border-radius:5px 5px 0 0;
    display: inline-block;
    cursor: pointer;
	width:27.4%;
}

div.changeTab_Btn:last-child{
    margin-right: 0;
}

div.changeTab_Btn:hover{
	background-color:#ccc;
	color:#411d0e;
    -webkit-transition: all .5s;
    transition: all .5s;
}

div.changeTab_Btn i{
	padding-right:6%;
}

div.tabActive{
	background-color:#82b7a7;
	color:#fff;
}

div.tabActive:hover{
	background-color:#82b7a7;
    color:#fff;
    opacity:0.9;
}

.subtitleBox{
/* background: rgba(64,194,155,1);
background: -moz-linear-gradient(top, rgba(64,194,155,1) 0%, rgba(104,200,211,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(64,194,155,1)), color-stop(100%, rgba(104,200,211,1)));
background: -webkit-linear-gradient(top, rgba(64,194,155,1) 0%, rgba(104,200,211,1) 100%);
background: -o-linear-gradient(top, rgba(64,194,155,1) 0%, rgba(104,200,211,1) 100%);
background: -ms-linear-gradient(top, rgba(64,194,155,1) 0%, rgba(104,200,211,1) 100%);
background: linear-gradient(to bottom, rgba(64,194,155,1) 0%, rgba(104,200,211,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40c29b', endColorstr='#68c8d3', GradientType=0 ); */
}
.subtitleBox h1{
    width: 333px;
    padding: 20px 0;
    margin: 0 auto;
    font-family: 'Bad Script',sans-serif;
    text-align: center;
    font-size: 32px;
}

.subtitleBox h1 a{
    color: #411d0e;
}
/* 
.subtitleBox h1 img{
    width: 162px;
    height: 33px;
    padding: 20px 0;
    margin: 0 auto;

} */

article.contBox{
    width: 100%;
    margin: 0 auto;
    padding-bottom: 62px;
}


#works,#profile,#contact{
    padding-top: 62px;

}

#works h1,#profile h1,#contact h1{
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 54px;
    width:200px;
    margin: 0 auto 25px;
    text-align: center;
    padding: 30px ;
}


.centerBox{
    width: 95%;
    margin: 0 auto;
}

.sectionBox{
    padding: 25px 0;
    margin: 0 auto;
}

.sectionBox h2{
    /* width: 250px; */
    padding-bottom: 10px;
    border-bottom: dashed 1px #82b7a7;
    font-size: 24px;
    margin-bottom: 30px;
}

.navigation_sub{

    display: none;
}

#works .worksBtn{
    width: 90px;
    height:50px;
    float: left;
    background-color: #40c29c;
    border-radius: 2px;
    margin: 0 3px;
}


#worksBtnBox{
    width: 288px;
    margin: 0 auto 50px;
}


#works .worksBtn a{
    display: block;
    text-align: center;
    line-height: 50px;
    color: #411d0e;
    font-size: 20px;
    border-radius: 2px;
}

#works .worksBtn a:hover{
    background-color: rgba(255,255,255,0.2);
    -webkit-transition: all .4s;
    transition: all .4s;

}


#banner,#others{
    padding-top: 62px;

}


.contWorks{
    margin-bottom: 20px;
    padding:40px 10px;
    border-top: 3px solid #82b7a7;
    background-color:#fff;
    border-radius:0 0 10px 10px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);

}

#kumaBox img{
    margin:0 auto;
}

.sectionBox dl{
    padding-top: 30px;
}

.grayBox1 p:first-child{
    font-size: 22px;
    font-weight: bold;
    padding: 0 0 15px 20px;
}

.grayBox1 dl{
    
    padding: 20px;
    
}

.sectionBox dl dt{
    font-weight: bold;
    font-size:18px;
}

#personalText dt{
   width: 80px;
    float : left;
}

.sectionBox #chartImg{
    width:100%;
    min-width: 280px;
    max-width: 389px;
    padding: 20px 0 20px;
}

.grayBox1{
    background-color: #e1e9e7; 
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px 0;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.worksImgBox a{
    display: block;
    width: 250px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.worksImgBox a img:hover{
    opacity: 0.7;
	filter: alpha(opacity=70);
}

.worksImgBox{
    padding: 0px 20px 20px 20px;

}

.worksTextBox{
	padding-bottom:15px;
}

.worksImgBox img{
    margin: 0 auto;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    -ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
a.moreBtn:before{
    font-family: FontAwesome;
    content: "\f0da";
    padding-right: 5px;
}
a.moreBtn {
    display: block;
    width: 200px;
    height: 36px;
    margin:0 auto;
    border-radius:18px;
    text-align: center;
    line-height: 36px;
    color:#26755D;
    border: 1px solid #26755D;
    transition: 0.3s;
}


.grayBox2{
    background-color: #e1e9e7; 
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px 0;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.grayBox2 p:first-child{
    font-size: 22px;
    padding-bottom: 5px;
    font-weight: bold;
    padding: 0 0 15px  20px;
}

.grayBox2 dl{
    padding: 20px;
    
}

.skillBtn{
    cursor: pointer;
    margin-top:10px !important;
}

/*経歴内dlの設定*/

dl.indent01{
	padding-top:0;
}

dl.indent01 dd{
	margin-left: 1em;
}

dl.indent01 dt{
	margin-top: 1em;
}

/*contactのみの設定*/
#ContactCont{
    background-color: rgba(64,194,156,0.1);
}
div.button{
	text-align:center;
}

button#submitBtn{
    display: block;
    width: 200px;
    height: 36px;
    margin-left: auto;
    border-radius: 18px;
    text-align: center;
    line-height: 36px;
    background-color: #26755D;
    color: #fff;
    transition: 0.3s;
}

button#submitBtn:hover{
    transition: 0.3s;
    color: #26755D;
    border: 1px solid #26755D;
    background-color: #fff;
    color: #26755D;
}

#email{
    width: 100%;
}

#msg{
    width: 100%;
    height: 10em;
}


 #formBox h2{
    width: 290px;
    font-size:22px;
    margin-left:20px; 
}
    
#formBox{
    margin: 0 auto;
    width:95%;
    
}

#formBox label{
    padding-left: 10px;
}

#formBox #id_form1{
    padding: 20px;
    
    
}



.grayBox3{
    background-color: #fff;
    border-radius: 10px;
    margin: 20px 0;
    padding-top:20px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -o-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    -ms-box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.centerBox .contactTem{
    margin: 10px 0;
    
}


#formBox #id_form1 .formItem{
	font-weight:bold;
	padding:5px 0;
	margin:10px 0;
	border-left:3px solid #26755d;
}

#formBox #id_form1 .formAns{
	margin:10px 0 40px 0;
}



.contactBox h2{
    margin:0 auto;
}
.contactBox p img{
    margin: 0 auto;
    padding:15px 0;
    
}

.contactBox p #telImg{
    width: 143px;
    height: auto;
}

.contactBox p #mailImg{
    width: 237px;
    height: auto;
}

.contactBox {
    width:80%;
    margin:0px auto;
}





/*--------------------------------------------

以下、デバイス切り替え

---------------------------------------------*/

/*--------------------
タブレット向け:600~800px
---------------------*/

@media Only screen and (min-width: 600px) {
    
    body{
        padding-top: 0px;
        
    }
    
    #mainImg_small{
        display: none;
    
    }
    
    #mainImg{
        display: inline;
        height: auto;
    }
    
	div.changeTab_Btn{
	    font-size:16px;
	}
	
	.contWorks{
	
		padding:40px 60px;
	}
	
		
	.contWorks div.changeTab h2{
		text-align:left;
	
	}
    
	.worksImgBox{
		float:left;
		padding-left:0;
	}
	
	.contWorks a.moreBtn{
        margin:0 0 0 auto;
        
	}
	
    .centerBox{
        width: 93%;
        margin: 0 auto;
        
    }
    
    .grayBox1{
    	padding:3%;
    }
    
    
	.grayBox1 p:first-child{
	    padding-left: 0;
	}
    

    
    .grayBox1 dl, .grayBox2 dl{
        padding: 0px;
        
    }
    
    .grayBox1 .worksImgBox, .grayBox2 .worksImgBox{
    	float:none;
        padding: 0 0 15px 0;
        
    }
    
    .grayBox2{
    	padding:3%;
    }    
	.grayBox2 p:first-child{
	    padding-left: 0px;
	}

    
    #kumaBox{
    float: left;
}

	#kumaBox img{
	    padding: 50px;
	}


    #personalText{
        margin-left: 267px;
        padding:80px 0 0 0;
    }
    
    #formBox{
    	width:93%;
    }
    
    #msg{
    	width:100%;
    
    }
   
}

/*------------
PC向け:801px以上
-------------*/

@media Only screen and (min-width: 801px) {
  
    #pageTop a:hover {
        
        opacity: 0.7;
    }
    
    .subtitleBox{
        padding-top: 62px;
    }
    
    .subtitleBox h1{
        width: 333px;
        padding: 20px 0;
        margin: 0 auto;

    }
    
    .subtitleBox h1 img {
        width: 324px;
        height: 66px;
    }
    
    
    .menu-btn{
        display: none;
        position: static;
    }
    
    #navSmall{
        display: none;
    }
    
    #navSmall .menu{
        position: static;
    }
    
    #navigation{
        width: 100%;
        display: block;
        position: fixed;
        top:0px;
        left: 0;
        padding:15px;
    }
    
    #navigation ul{
        padding-left:2%;
        background-image: none;
    }
    #navigation li{
        float: left;
        padding:0 60px 0 0;
    }
    
    #navigation li:last-child{
        padding-right: 0px;
    }
    
    #navigation li a{
        display: inline-block;
        transition: .2s;
        font-family: 'Quattrocento Sans', sans-serif;;
        font-size:32px;
        color: #411d0e;
    }
    
    #navigation li a:hover{
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        color: #82b7a7;
    }
    
    #navigation_scroll{
        width: 100%;
        display: none;
        position: fixed;
        top:0px;
        left: 0;
        padding:15px;
        
        background-color: rgba(159,214,210,0.8);
    }

    #navigation_scroll ul{
        padding-left:2%;
        background-image: none;
        width: 600px;
        margin: 0 auto;
    }
    #navigation_scroll li{
        float: left;
        padding:0 60px 0 0;
    }
    #navigation_scroll li:last-child{
        padding-right: 0px;
        }
    
    #navigation_scroll li a{
        display: inline-block;
        transition: .2s;
        font-family: 'Quattrocento Sans', sans-serif;;
        font-size:32px;
        color: #411d0e;
    }
    #navigation_scroll li a:hover{
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        color: #fff;
    }
    #mainImgBox{
        width: 100vw;
        height: 100vh;
        padding: 86px 0;
    }
    #mainImgBox #logo{
        /* width: 540px; */
        /* height: 120px; */
        position: absolute;
        top: 10%;
        right: 12%;
        font-size: 46px;
        /* left: 50%; */
        /* margin-left: -270px; */
        /* margin-top: -70px; */
    }

    
   
    
    
    #logo_small{
        display: none;
    
    }

	article.contBox{
		min-width:744px;
		max-width:920px;
	}


	#works h1,#profile h1,#contact h1{
    font-size: 64px;
    padding:40px;
    margin: 0 auto 25px;
    }


	.sectionBox{
		padding:25px 20px;
	}

    .centerBox{
    width: 100%;
        margin: 0 auto;
        
    }
    
    .centerBox h2{
    margin: 0 auto;
    /* text-align: center; */
    }
    
    #contWorksBox{
        width: 768px;
        height:300px;
        margin: 20px auto;
    
    }
    
    .contWorks ul{
        margin: 40px auto;

    }

    .contWorks .worksImgBox {
    padding:0;
    padding-top: 20px;
    padding-right:30px;
    float: left;
    }
    

    .contWorks h2 {
        margin-bottom: 20px;
        
    }
    
    .contWorks{
        margin: 0;
    }


	.contWorks .worksTextBox{
        padding: 20px 0;
    }
	

	a.moreBtn:hover {
        transition: 0.3s;
        background-color: #26755D;
        color:#fff;
    }
    
    .grayBox1{
        width: 720px;
        margin: 50px auto;
        padding: 3%;
        overflow:hidden;
    }
    
    .grayBox1 dl{
        padding: 0;
        margin-left: 280px;
    }
    
    
     .grayBox1 .worksImgBox, .grayBox2 .worksImgBox{
    	float:left;
        padding: 0 0 15px 0;
        
    }
    
    .grayBox2{
        height: 350px;
        width: 720px;
        margin: 50px auto;
        padding: 3%;
        overflow:hidden;
    }
    
    .grayBox2 dl{
        padding: 0;
        margin-left: 280px;
    }
    
    #worksBox{
        padding-bottom: 20px;
        
    }
    
    #profBox1{
        width: 460px;
        margin: 0 auto;
    }
    
     #profBox2{
        width: 720px;
        margin: 0 auto;
    }
    
     #profBox3{
        width: 500px;
        margin: 0 auto;
    }
    
    .sectionBox #chartImg{
        padding:50px 0 0 0;
        float: left;
        width: 389px;
        height: 274px;
    }
    #chartText{
        margin-left: 389px;
        padding: 50px 0 0 50px;
    }
    
    /*worksだけのナビ*/
    .navigation_sub{
        width: 100%;
        display: block;
        position: fixed;
        top:0;
        left: 0;
        padding:15px;
        background-color: rgba(159,214,210,0.8);
    }

    .navigation_sub ul{
        padding-left:2%;
        background-image: none;
        width: 600px;
        margin: 0 auto;
    }
    .navigation_sub li{
        float: left;
        padding:0 60px 0 0;
    }
    .navigation_sub li:last-child{
        padding-right: 0px;
    }

    .navigation_sub li a{
        display: inline-block;
        transition: .2s;
        font-family: 'Quattrocento Sans', sans-serif;;
        font-size:32px;
        color: #411d0e;
    }
    .navigation_sub li a:hover{
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        color: #fff;

    }
    
    
    
    
    #works .worksBtn{
        width: 100px;
        margin: 0 16px;
    }


    #worksBtnBox{
        width: 400px;
        
    }

    

    
    .worksImgBox{
    padding-top: 20px;
    float: left;
    }
    
    .worksText{
    float: left;
    }
    
    #formBox{
        width: 750px;
        
    }
    
    .grayBox3{
    width: 720px;
    margin: 20px auto;
    }
    
    .grayBox3 #name{
        width: 200px;
        padding: 10px;
        margin-bottom: 15px;
    }
    .grayBox3 #msg{
        width: 673px;
        /* margin: 20px 0; */
    }
    
    .grayBox3 #email{
        width: 400px;
        padding: 10px;
        margin-bottom: 20px;
    }
    
    #formBox h2{
        margin-left:auto;
    }
    
    .contactBox{
       width:260px;
        margin: 0 auto;
    
    }
    
    
    
    
}


@media Only screen and (min-width: 961px) {
    #contWorksBox{
        width: 920px;
        

    }
}


/*------------
パーツ
-------------*/

.fsB{
	font-weight:bold;

}

.pb4{
    padding-bottom: 4em;
}
.pt6{
    padding-top: 6em;
}

/*各デバイスの表示非表示*/
@media Only screen and (min-width: 600px) {
	.sp-only{
		display:none;
	}
}


@media screen and (max-width: 599px){
	.pc-only {
		 display: none;
    }
}

