@charset "utf-8";
/* CSS Document */
/*
Theme Name: portfolio
*/
/*default*/

html,body{
	width:100%;
	height: 100%;
}

body{
    background: url("../img/bg.png");
}

.font_en{
 font-family: 'Lemonada', cursive;
}
.font_jp{
     font-family:'Kiwi Maru', serif;
    }

a {
  display: block;
  text-decoration: none;
  color: #fff;
}

img{
	vertical-align: bottom;
}

/*header*/
header {
  position: relative;
}

.logo_sp{
  position: absolute;
    top: -7px;
    left:10px;
    z-index: 1;
}

.logo_sp img{
    width: 5.5em;
}


.pc_nav {
    width:100%;
	margin: 0 auto;
    display: flex;
    justify-content: center;
    position: absolute;
    top:10px;
    z-index: 1;
    font-family: 'Lemonada', cursive;
    text-shadow: 1px 2px 3px #232323;
}


#works_detail .pc_nav{
    position: static;

}

.pc_nav ul{
    display: flex;
    justify-content: space-between;
}

.pc_nav li:not(:nth-child(3)){
/*    width: 20%;*/
    padding: 35px;
}

.pc_nav li:nth-child(3) a:hover::after{
  display: none;
}

/*メニューホバー時の動き*/
.pc_nav li a {
/*  margin-right: 50px;*/
  line-height: 3;
  position: relative;
    text-align: center;
}
.pc_nav li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #74b88d;
  left: 0;
  /*横方向0で非表示にする*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*中央を基点にアニメーション*/
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pc_nav li a:hover::after {
  /*横方向等倍まで拡大*/
  transform: scale(1, 1);
}
/*========= ハンバーガーメニュー ===============*/
/*アクティブになったエリア*/
#g_nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
/*丸の拡大*/
.circle_bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #74b88d;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 1s; /*1秒かけてアニメーション*/
}
.circle_bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g_nav_list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g_nav.panelactive #g_nav_list {
  display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g_nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  /*    z-index: 999;*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
/*背景が出現後にナビゲーションを表示*/
#g_nav.panelactive ul {
  opacity: 1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g_nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .3s; /*0.3 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g_nav li {
  text-align: center;
}
#g_nav li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: 'Lemonada', cursive;
}
/*=========ボタンのためのCSS ===============*/
/*ハンバーガーボタン外側*/
.openbtn {
  position: fixed;
  background: #74b88d;
  cursor: pointer;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 999;
}
/*ボタン内側　三本線*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*ハンバーガーメニュー終わり*/


/*メインビジュアル設定*/
#slider {
  width: 100%;
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*site title*/
.main_title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.2em;
  color: #fff;
  font-family: 'Sofia', cursive;
  text-shadow: 1px 2px 3px #232323;
}
.main_title p{
    padding: 10px 0;
}

.sub_title {
  padding-top: 50px;
  font-size: 3vw;
  font-family: 'Sacramento', cursive;
}

.main_visual{
    position: relative;
}



/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:-185px;
    /*全体の高さ*/
	height:80px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-27px;
	top: -15px;
    /*テキストの形状*/
	color: #eee;
	font-size: 1rem;
	letter-spacing: 0.2em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 2px;
	height: 30px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.5s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}


/*mainビジュアルタイトルふわっと出てくる*/
.fadeup{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*メインビジュアル終わり*/


/*共通_メインコンテンツ*/
.main_img{
    background: url("../img/main_img4.jpg") top center no-repeat;
    background-size: cover;
    height: 100vh;
}



section {
  margin: 150px auto;
  text-align: center;
  font-family: 'Kiwi Maru', serif;
}

#works_detail section{
    margin:10px 0;
}

.website{
    margin: 35px auto;
}

section h2 {
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: solid 3px #74b88d;
 font-family: 'Lemonada', cursive;
    background: url("../img/title_bg.png") no-repeat;
    background-size: cover;
}

section h2 span{
    display: inline-block;
    background: url("../img/h2after.png") no-repeat;
    background-size: contain;
    width:40px;
    height: 65px;
    vertical-align: middle;
}

.myself{
    line-height: 2;
    margin-top: 55px;
    margin-bottom: 30px;
}

.button a{
  width: 100px;
  height:100px;
  margin: 0 auto 124px;
  border: 1px solid #74b88d;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
 color: #180e02;
     font-family: 'Lemonada', cursive;
    line-height: 5;
	transition: .3s;
}


.button a:hover{
      border-radius: 50%;
    background: #74b88d;
      color: #fff;
	transform: scale(1.1);
}

/*各コンテンツ*/

/*index*/
.main_1 img, .main_2 img {
  height: 240px;
}

/*about*/
.about{
	padding: 50px 0;
	position: relative;
/*	background: #74b88d;*/
}

.about

.about_point{
	width:167px;
	height: 130px;
	position: absolute;

}

.start{
	background: url("../img/kakko1.png");
	left:130px;
}

.end{
	background: url("../img/kakko2.png");
	bottom:0px;
	right: 160px;
}

.about  h3 {
  margin-top: 50px;
	font-size: 20px;;
}

.about ul{
	margin:70px 0;
	line-height: 3;
}

.about img{
    border-radius: 50%;
    width:100%;
    margin: 15px;
}

.border{
	border:3px solid#74b88d;
	margin:40px 0;
}



.history table th{
	padding: 30px;
	text-align: left;
    
	
}

.history table td{
	text-align: left;
	
}


.skill img {
  width: 100px;
  height: 100px;
}

.skill p{
	padding: 10px 0;
}


/*works*/


.contents{
	padding: 65px 0;
}

.works h3{
	margin-bottom: 35px;
	font-size: 1.5em;
	font-weight: bold;
}

.works p{
    padding-bottom: 30px;
}


.flyer img{
    width: 400px;
}

.banner_1{
    margin-top: 75px;
}

.works_detail h3{
    padding: 30px 0;
    font-size: 1.5em;
	font-weight: bold;
}


.works_detail img{
    width: 500px;
}

.works_detail dl{
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5em;
	text-align: left;
	padding-left: 10px;
}

.works_detail a{
    color: #000;
}

.works_detail dt{
    width:35%;
	color: #B9B5B5;
    text-align: right;
    padding-right: 60px;

}

.works_detail dd{
	width:65%;
	text-align: left;
}

/*contact*/
#contact{
    text-align: center;
}

#contact main{
    margin:150px 0;
}
.title{
	font-size: 48px;
	letter-spacing: 5px;
	margin-bottom: 40px;
    text-align: center;
}

.sentence{
	font-size:20px;
    text-align: center;
    line-height: 2;
}
.required{
	color: #f53a3a;
}

/*form*/
#contactForm{
    margin-top: 50px;
}
.contact {
	margin: 10px 20px;
	text-align: center;
	vertical-align: super;
	font-size: 20px;
}

.contactTable dt{
  padding-bottom: 10px;
}


.contactTable input,textarea{
	box-sizing: border-box;
	width: 400px;
	height: 70px;
	border: 3px solid #74b88d;
	border-radius: 3px;
	margin: 0 20px 20px;
}
.contactTable textarea{
		height: 400px;
}


#btn{
	text-align: center;
	margin: 40px auto;

}

.contact button{
	width: 200px;
	height: 50px;
	background: #74b88d;
    border: #74b88d;
	color: #fff;
	font-size: 24px;
    font-family:'Kiwi Maru', serif;
	border-radius: 10px;
	cursor: pointer;
}
button:hover{
	opacity: 0.7;
}

/*共通footer*/
footer {
  margin-top: 65px;
  background:#895D4C;
  text-align: center;
  font-size: 70%;
  font-family:'Kiwi Maru', serif;

}
footer p {
  padding-top: 10px;
}

footer a{
    padding: 0 20px;
}
.ft_flex {
  display: flex;
  justify-content: center;
}




/*responsive*/

/* pc */
@media (min-width : 768px) {
  .only_sp {
    display: none;
  }
    

}

/* sp */
@media (max-width : 768px) {
  .only_pc {
    display: none;
  }
}