@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
}
body {
	background: url("../img/utyu.png")no-repeat fixed center top;
	background-size: cover;
	color: #3300CC;
	text-align: center;
	font-size: 1.4rem;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
/*ヘッターのスタイル*/

.mainimage {
	font-size: 0;
	overflow: hidden;
	width: 90%;
	margin: 0 auto;

	/*position: relative;*/
}

.mainimage img {
	width: 100%;
}

/*about重なりスタイル*/

.header {
	position: relative;
	width: 100%;
	/*background-color: #fff;*/
	padding:1% 0 2%;
}

.about {
	position: absolute;
	color: #fff;
	text-align: left;
	left: 25%;
	top: 62%;
	width: 33%;
	font-size: 1.7rem;
}



/*メニュー三本線*/
.menu-icon {
  cursor: pointer;
  position: fixed;
  top: 2%;
  right: 2.5%;
  z-index: 1020;
  width: 3.6%;
}
.menu-icon-line {
  background-color: #fff;
  width: 100%;
  height: 3px;
  margin: 30% 0 0;
}
/*展開メニュー*/
.menu-box {
  position: fixed;
  width: 100%;
  /*background-color: #d3d3d3;*/
  top: 0;
  right: 0;
  z-index: 1010;
}
.menu {
  position: fixed;
  display: none;
  width: 18%;
  height: 160px;
  top: 15%;
  right: 0;
  background: rgba(255, 255, 255, 0.7)
}
.menu .menu-list {
  list-style-type: none;
  margin: 1.2% .8% 1.2%;
}
.menu .menu-list a {
  display: block;
  margin-left: 8%;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #000;
  text-decoration: none;
  font-size: 2.4rem;
  border-bottom: 3px dashed transparent;
}
.menu .menu-list a:hover {
  border-bottom: 3px dashed #cc0099;
}
/*現在のページを示すメニュー*/
.now {
  background-color: rgba(0, 0, 0, 0.3);
}
.now a {
  cursor: default;
}
.menu .now a:hover {
  border-bottom: 3px dashed transparent;
}

/*作品のスタイル*/


.works {
	display: none;
}
/*見出しのスタイル*/

.heading {
	clear: both;
	width: 20%;
	margin: 6% auto 0;
}

.heading img {
	width: 100%;
}

h2 {
	color: #CC0099;
	font-size: 3rem;
	letter-spacing: 1.2rem;
	margin-bottom: 2%;
}

/*slickの設定*/

.ViewArea {
	width: 100%;
	margin: 0 auto;
}

 .slick {
	padding: 0;
	margin: 0 auto;
	padding-left: -40px;
	overflow:hidden;
}

.slick .slickimg {
	margin: 20% auto;
	width: 77%;
}

.slick .slickimg img {
	width: 100%;
	transition: 0.6s;
	border-radius: 50%;
	box-shadow: -6px 0px 8px rgba(255, 255, 255, 0.7),
		         6px 0px 8px rgba(255, 255, 255, 0.7);
}

.slick .slickimg img:hover {
	box-shadow: -6px 0px 10px rgba(204, 0, 153, 0.7),
		         6px 0px 10px rgba(204, 0, 153, 0.7);
}


.slick .slick-current img{
	transform: scale(1.2);
	transition: 0.6s;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots {
	position:static;
    /*background-color: #000;*/
	height: 40px;
	margin-bottom: 40px;
}

.slick-dots li button:before {
	content: "■";
	color: #fff;
	opacity: 0.6;
	font-size: 3rem;
}

.slick-dots li.slick-active button:before {
	color: #cc0099;
	opacity: 1;
	font-size: 3rem;
	text-shadow: 6px 0px 6px rgba(204, 0, 153, 0.5),
	            -6px 0px 6px rgba(204, 0, 153, 0.5);
}


/*ボタンのスタイル*/

.button {
	clear: both;
}
.button a {
	width: 200px;
	display: block;
	font-weight: bold;
	font-size: 1.6rem;
	text-decoration: none;
	transition: .4s;
	color: #cc0099;
	border: 2px solid #CC0099;
	padding: 20px 0;
	margin: 10px auto 4%;
	background-color: rgba(255, 255, 255, 0.7);
}
.button a:hover {
	box-shadow: -6px 0px 20px rgba(204, 0, 153, 0.7),
		         6px 0px 20px rgba(204, 0, 153, 0.7);
}
/*プロフィールのスタイル*/

.profile {
	width: 76%;
	margin: 7% auto 6%;
	overflow: hidden;
}

.abouthead {
	width: 40%;
}

.profbox {
	float: left;
	background-color: rgba(255,255, 255, 0.7);
	width: 46%;
	height: 260px;
	overflow: hidden;
	margin:4% 2% 0;
}
.profhead {
	font-size: 2.6rem;
	margin: 2% 0 5%;
	color: #3300CC;
}
.proftext {
	font-size: 1.6rem;
	line-height: 2;
	color: #000;
}
.profbox .button a {
	margin: 8% auto 2%;
	color: #cc0099;
	background-color: rgba(255, 255, 255, 0.5);
}

/*contactのスタイル*/
.contact {
	padding: 1% 0 0;
}

.contacthead {
	width: 27%;
}

.contact-form {
	width: 70%;
	margin: 50px auto 0;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 15px;
	outline: none;
	border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.7);
}

.contact-form input[type=text]:hover,
.contact-form input[type=email]:hover,
.contact-form textarea:hover {
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
	box-shadow:inset 0px 0px 8px rgba(204, 0, 153, 0.7),
		       inset 0px 0px 8px rgba(204, 0, 153, 0.7);
}

.contact-form textarea {
	height: 150px;
}

.contact-form input[type=submit] {
	display: block;
	width: 200px;
	margin: 40px auto 0;
	padding: 15px;
	border: 2px solid #cc0099;
	background-color: rgba(255, 255, 255, 0.7);
	color: #cc0099;
	cursor: pointer;
	font-weight: bold;
	transition: .4s;
	font-size: 1.8rem;
}

.contact-form input[type=submit]:hover {
	box-shadow: -6px 0px 20px rgba(204, 0, 153, 0.7),
		         6px 0px 20px rgba(204, 0, 153, 0.7);
}

#postmail a {
	color: #fff;
}

/*フッターのスタイル*/

.footer {
	color: #fff;
	clear: both;
	background-color: #1d0072;
	border-radius: 40% 40% 0 0;
	background: url("../img/footerbg.png") no-repeat center bottom;
    background-size:contain;
    width: 100%;
	position: absolute;
	z-index: -10;
}

@media screen and (max-width: 1920px) {
	.footer {
		height: 60%;
		margin-top: -18%;
	}
}

@media screen and (max-width: 1200px) {
	.footer {
		height: 60%;
		margin-top: -28%;
	}
}

.copyright {
	display: inline-block;
	/*width: 100%;*/
	font-size: 1.4rem;
	position: absolute;
	bottom: 2%;
	width: 20%;
	left: 40%;
}

/*横幅768pxの時のスタイル*/

@media(max-width: 768px) {
	
	.mainimage {
		width: 100%;
	}
	
.about  {
	font-size: 1.1rem;
	position: static;
	width: 100%;
	text-align: center;
	margin: 6% 0 2%;
	}
	
.heading {
	width: 44%;
}
	
.abouthead {
	width: 80%;
}
	
.contacthead {
	width: 68%;
}
	
h2 {
	font-size:1.8rem;
	margin-bottom: 8%;
	letter-spacing: 0.4rem;
}
	
/*	横幅768pxのヘッダー*/
.menu-icon {
		width: 8%;
		top: 0.5%;
  }
  .menu-icon-line {
    height: 2px;
  }
  .menu-box .menu {
    display: none;
    width: 40%;
	height: 120px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 7%;
  }
  .menu .menu-list {
    margin-left: 0;
    height: 30px;
  }
  .menu .menu-list a {
    font-size: 2rem;
    margin: 0 auto;
  }
/*横幅768pxの作品*/

.ViewArea {
	display: none;

}

.works {
	display: block;
	width: 100%;
	margin: 0 auto 2%;
	overflow: hidden;
}
	
.bigbox {
	width: 50%;
	float: left;
	/*margin-left: 2.5%;*/
	margin-bottom: 2%;
	overflow: hidden;
}

.work-image {
	display: block;
	width: 100%;
}
.boxtext {
	padding: 6% 0;
	font-size: 1.2rem;
	color: #fff;
}

.bigbox:nth-of-type(odd) {
	float: left;
}
	
	
	
/*横幅768pxのプロフィール*/
	
.profile {
	width: 90%;
}
	
.profbox {
	clear: both;
	width: 100%;
	height: 200px;
	margin:0 0 4%;
}

.profhead {
	font-size: 2rem;
	padding-top: 10px;
	margin: 0 auto;
}
.proftext {
	padding-top: 10px;
	font-size: 1.1rem;
}
	
/*連絡先のスタイル*/

.contact-form {
	width: 90%;
	margin: 0 auto;
}
	
/*横幅768pxのフッター*/
	
.footer {
	margin-top: -56%;
}
.copyright {
	width: 60%;
	left: 20%;
	bottom: 4%;
	font-size: 1rem;
}
}