@charset "utf-8";
/*--------------------------
	共通の設定/=iPhone 320px(縦)からの設定 /
-------------------------- */
*{
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-family: 'Manrope', sans-serif;
	font-size: 1.6em;
	color: #333;
	text-align: justify;

}

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

/*＝＝＝＝＝＝ヘッダー＝＝＝＝＝＝*/
header{
	position: relative;
}

.svg img{
	width: 100%;
	height: 100vh;
	position: relative;
	bottom: 50px;
}

.scroll {
  position: absolute;
  bottom: 150px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}

.scroll span{
	position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -12px;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/*＝＝＝＝＝＝メイン＝＝＝＝＝＝*/
.main01{
	position: relative;
}
/*＝＝＝＝＝＝プロフィール＝＝＝＝＝＝*/
h1{
	font-size: 2.5rem;
	text-align: center;
	line-height: 2;
	margin-bottom: 70px;
}

/*＝＝＝＝＝＝横棒引く＝＝＝＝＝＝*/
.Text-Span {
  position: relative;
  z-index: 1;
}
.Text-Span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 4px;
  background: #efd0d0;
  z-index: -1;
  transition: all 2s;
}
.Text-Span.isActive:after {
  width: 100%;
}



#fixed{
	display: none;
}

/*＝＝＝＝＝＝点滅する文字＝＝＝＝＝＝*/
.blink{
	animation: blinkAnime 1.6s infinite alternate;
	font-size: 1.4rem;
	font-weight: bold;
	position: absolute;
	top: 110px;
	left: 70px;
}

@keyframes blinkAnime{
   0% { color: #fff }
  94% { color: #777 }
 100% { color: #777 }
}

/*＝＝＝＝＝吹き出し＝＝＝＝＝＝*/
.balloon{
  position: absolute;
  display: inline-block;
  padding: 0 5px;
  width: 65px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background: #666;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon:before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -7px;
  margin-top: -15px;
  border: 7px solid transparent;
  border-left: 15px solid #666;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#about_me{
	padding-top: 30px;
}

.hover{
	width: 30%;
	display: block;
	margin: 0 auto;
	margin-bottom: 50px;
}

.face{
	display: inline-block;
}

.face_hover{
	display: none;
}

.hover:hover > .face{
	display: none;
}

.hover:hover > .face_hover{
	display: inline-block;
}

.text_box{
	font-size: 1.4rem;
	padding: 0 15px;
	line-height: 1.7;
	margin-bottom: 50px;
}

/*＝＝＝＝＝＝スキル＝＝＝＝＝＝*/

.skill_box{
	padding: 15px;
}

.skill_box p{
	margin-bottom: 10px;
}

h2{
	font-size: 1.8rem;
}

.items{
	display: flex;
}

.line01{
	width: 200px;
	height: 15px;
	background-color: #bbb;
	border-radius: 0 10px 10px 0;
	margin-left: 30px;
	position: relative;
	top: 3px;
	z-index: 1;
}


/*＝＝＝＝＝＝可視範囲で横に伸ばす＝＝＝＝＝＝*/

.line02 {
	position: relative;
	bottom: 7px;
	margin-bottom: 25px;
	z-index: 1;
}

.line02:after {
	content: '';
	position: absolute;
	border-radius: 0 10px 10px 0;
	margin-left: 30px;	
	margin-bottom: 20px;
	width: 0%;
	height: 15px;
	background: #efd0d0;
	z-index: 2;
	transition: all 3s;
}

.line02.isActive:after {
 	width: 100%;
}

.line_all01{
	margin-left: -5px;
}

.line_all01 .line02{
	max-width: 70%;
}

.line_all02{
	margin-left: 30px;
}

.line_all02 .line02{
	max-width: 30%;
}

.line_all03{
	margin-left: 38px;
}

.line_all03 .line02{
	max-width: 70%;
}

.line_all04{
	margin-left: 20px;
}

.line_all04 .line02{
	max-width: 50%;
}

.line_all05{
	margin-left: 28px;
}

.line_all05 .line02{
	max-width: 50%;
}

.line_all06{
	margin-left: 90px;
}

.line_all06 .line02{
	max-width: 20%;
}

.skill_box p{
	font-size: 1.4rem;
	line-height: 1.7;
	margin-bottom: 50px;
}


/*＝＝＝＝＝＝作品Webサイト＝＝＝＝＝＝*/
.web_all{
	text-align: center;
}

h3{
	text-align: center;
	font-size: 1.7rem;
	margin-bottom: 20px;
}

.works_box p{
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.page_list li{
	margin-bottom: 15px;
}

.page_list ul{
	margin-bottom: 40px;
}

.img_wrap img{
	width: 65%;
	margin: 0 auto;
	margin-bottom: 80px;
}

/*＝＝＝＝＝＝作品染め＝＝＝＝＝＝*/
.batik_text p{
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.7;
	margin-bottom: 50px;
}
.bird_hover{
	margin-left: 25px;
}

.batik_text a{
	text-decoration: none;
	color: #CC8283;
	font-weight: bold;
}
/*＝＝＝＝＝＝SNS＝＝＝＝＝＝*/
.sns_box{
	margin-bottom: 50px;
}
.icon{
	text-align: center;
	margin-bottom: 70px;
}
.sns_box .icon .icon01{
	width: 8%;
	margin-right: 30px;
}
.sns_box .icon .icon02{
	width: 13%;
}

.to_top{
	text-align: center;
}
.to_top a{
	text-decoration: none;
	color: #333;
	font-size: 1.5rem;
	font-weight: bold;
}

/*＝＝＝＝＝＝フッター＝＝＝＝＝＝*/
footer p{
	font-size: 1.2rem;
	text-align: center;
	padding: 20px;
}


/*
--------------------------
	タブレット / iPad 768px(縦)から1023pxまでの設定 /
-------------------------- */

@media screen and (min-width:768px){
/*＝＝＝＝＝＝メイン＝＝＝＝＝＝*/
h1{
	font-size: 3.4rem;
	margin-bottom: 120px;
}	

.blink{
	font-size: 2.5rem;
	font-weight: bold;
	position: absolute;
	left: 130px;
}

.balloon{
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 130px;
  height: 90px;
  line-height: 90px;
}

.balloon:before {
    border: 10px solid transparent;
    border-left: 20px solid #666;
}

/*クリックでふわっと出る*/
.text_box {
	font-size: 1.7rem;
	line-height: 1.9;
	margin: 10px 0 0 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
}
	
.open {
	opacity: 1;
}
	
.main01{
	margin-bottom: 30px;
}	
	
/*＝＝＝＝＝＝スキル＝＝＝＝＝＝	*/
h2{
	font-size: 2.3rem;
}	
	
.skill_box p {
	font-size: 1.7rem;
}

.skill_box p:last-child{
	margin-bottom: 100px;
}
	
.line02:after {
	height: 20px;
}
	
.line01 {
    width: 250px;
    height: 20px;
}	
	
.line02 {
    width: 250px;
    height: 20px;
    bottom: 10px;
}
	
.line_all02 {
    margin-left: 38px;
}
	
.line_all03 {
    margin-left: 50px;
}
	
.line_all04 {
    margin-left: 30px;
}
	
.line_all05 {
    margin-left: 43px;
}
	
.line_all06 {
    margin-left: 126px;
}
	
.line_all01 .line02{
	max-width: 70%;
}
	
/*＝＝＝＝＝＝works_web＝＝＝＝＝＝*/
h3{
	font-size: 2.3rem;
	margin-bottom: 20px;
}

.works_box p{
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.page_list li{
	font-size: 2rem;
	margin-bottom: 20px;
}

.page_list ul{
	margin-bottom: 80px;
}
	
.img_wrap:last-child{
	margin-bottom: 100px;
}

/*＝＝＝＝＝＝works_batik＝＝＝＝＝＝*/	
.batik_text p{
	font-size: 1.7rem;
}
	
.bird_hover img{
	width: 80%;
	margin-left: 100px;
}
/*＝＝＝＝＝＝sns＝＝＝＝＝＝*/	
.sns_box .icon .icon01 {
    width: 5%;
    margin-right: 50px;
	margin-bottom: 60px;
}	
	
.sns_box .icon .icon02 {
    width: 8%;
	margin-bottom: 60px;
}	
	
.icon .icon_min{
	cursor: pointer;
	transition-duration: 0.5s;
}


.icon .icon_min:hover {
	transform: rotate(360deg);
	transition-duration: 0.5s;
}	
	
.to_top a{
	font-size: 2.3rem;
}
/*＝＝＝＝＝＝フッター＝＝＝＝＝＝*/
footer p{
	font-size: 1.5rem;
	padding: 30px;
}
	

	
}

/*--------------------------
	PC /1024px以上の設定/
-------------------------- */
@media screen and (min-width:1024px) {
	
.inner{
	width: 1024px;
	margin: 0 auto;
	/*background-color: #E0FBFA;*/
}	


/*＝＝＝＝＝＝＝メイン＝＝＝＝＝＝＝*/
	/*クリックでふわっと出る*/
	h1{
		font-size: 4.5rem;
	}
/*＝＝＝＝＝＝sns＝＝＝＝＝＝	*/
#fixed{
	display: inline-block;
}	
.fade_off {
	width: 100%;
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.fade_on {
    opacity: 1;
}
.pc_icon{
	position: fixed;
	bottom: 35%;
	left: -175px;
}
	
.icon{
	display: flex;
	transform: rotate(90deg);
}

.icon .icon01{
	width: 40%;
	margin-right: 30px;
}
	
.icon .icon02{
	width: 80%;
}
	
.icon .icon_min:hover {
    transform: rotate(-90deg);
}
	
.to_top{
	transform: rotate(90deg);
	padding-bottom: 5%;
}
.to_top a{
	padding-left: 300px;
}
	
.arrow{
	position: absolute;
	right: 410px;
}

.stickarrow01 {
	width: 150px;
	border-bottom: 3px solid #333;
	border-radius: 5px 5px 5px 5px;
	position: relative;
	left: 425px;
	top: 10px;
}

.stickarrow02 {
	width: 20px;
	border-bottom: 3px solid #333;
	border-radius: 5px 5px 5px 5px;
	position: relative;
	left: 425px;
	transform: rotate(-40deg);
}	
/*＝＝＝＝＝＝snsここまで＝＝＝＝＝＝	*/
.hover {
    margin-left: 450px;
}	
.balloon{
	margin-left: 170px;
}	
.text_box {
	margin: 10px 0 0 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
}
.open {
	width: 85%;
    margin: auto;
	opacity: 1;
	margin-bottom: 90px;
}
	
/*＝＝＝＝＝＝スキル＝＝＝＝＝＝*/
.skill_box{
	padding: 0 80px;
}
.skill_box p{
	width: 40%;
}
.skill_individual{
	display: flex;
}
.line_all01,.line_all02,.line_all03,.line_all04,.line_all05{
	margin-right: 70px;
}
	
.line02:after {
	height: 20px;
}
	
	.xd{
		margin-left: 65px;
	}
	
/*＝＝＝＝＝＝作品Webサイト＝＝＝＝＝＝*/
	
	.fbloom, .spice, .boss, .ichthys_lobo{
		display: flex;
		justify-content: center;
	}
	
	.boss{
		
	}
	
.web_all h3{
	font-size: 2rem;
}
	
.web_all p{
	font-size: 1.7rem;
}
	
	.web_all ul{
		list-style-type: none;
	}
	
.img_wrap img{
	width: 80%;
    margin-left: 100px;
}
	
/*.img_wrap img{
	cursor: pointer;
	filter: grayscale(100%);
	transition-duration: 0.5s;
}
	
.img_wrap img:hover{
	filter: grayscale(0);
	transition-duration: 0.5s;
}*/
	
/*＝＝＝＝＝＝works_batik＝＝＝＝＝＝*/
.bird_hover img {
    width: 50%;
    margin-left: 260px;
	margin-bottom: 80px;
}	

	.sns_box{
		display: none;
	}
/*＝＝＝＝＝＝フッター＝＝＝＝＝＝*/
footer p{
	font-size: 1.2rem;
}
	
	
}

