@charset "UTF-8";
/* CSS Document */

/* 全体のCSS */
.html {
	color: #777;
	background:linear-gradient(90deg,#EEE8DA 0%,#EEE8DA 80%, #EFD7AA 100%);	
	margin-top: 0!important;
}
body {
	background-image: url("assets/img/bg.png");
	background-size: 100%;
	background-repeat: repeat-y;
}
main {
	width: 100%;
}
section {
	width: 87%;
	max-width: 1440px;
	margin: 0 auto 150px;
}
section h1 {
	font-size: 150px;
	line-height: 100px;
	color: #7C6D50;
	margin:  0 0 5% 0;
}
section h1 span {
	font-size: 40px;
}
.glid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.fix {
	position: fixed;
}

/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#7C6D50;
  text-align:center;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 50%;
}
.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);
  }
}

/* navigation.phpのCSS */
header {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto 150px;
}
.g-nav.pc ul {
	text-align: right;
	margin: 2% 3% 2% 0;
}
.g-nav.pc ul li {
	display: inline-block;
	margin-left: 2%;
	font-size: 35px;
	color: #7C6D50;
}
.g-nav.pc ul li a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: #7C6D50;
	position: relative;
}
.g-nav li a:hover{
	color:#7C6D50;
}
.g-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background:#7C6D50;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.g-nav li a:hover::after {
    transform: scale(1, 1);
}
.g-nav.sp {
	display: none;
}
@media(max-width: 1000px) {
	header {
		margin: 0 auto;
	}
	.g-nav.pc {
		display: none;
	}
	.g-nav.sp {
		display: block;
	}
	#g-nav_sp {
    position:fixed;
    z-index: 999;
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;
	background:#7C6D50;
	transition: all 0.6s;
}
#g-nav_sp.panelactive{
    right: 0;
}
#g-nav_sp.panelactive {
    position: fixed;
    z-index: 999; 
    width: 88%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.g-nav_sp_logo {
	position: absolute;
	width: 20%;
	bottom: 5%;
	right: 5%;
	}	
#g-nav_sp ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#g-nav_sp li{
	list-style: none;
    text-align: center;
}
#g-nav_sp li a{
	color: #ddd8ac;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.openbtn{
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background:#7C6D50;
	border-radius: 5px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background-color: #fff;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:19px;
}
.openbtn span:nth-of-type(3) {
	top:25px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
	top:5px;
	left:-2px;
	color: #ddd8ac;
	font-size: 0.6rem;
	text-transform: uppercase;
}
.openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
}
@media(max-width: 787px) {
	section {
	width: 90%;
	margin: 0 auto 60px;
}
section h1 {
	font-size: 40px;
	line-height: 30px;
	margin:  0 0 3% 0;
}
section h1 span {
	font-size: 24px;
}
	header {
	margin: 0 auto 60px;
}
}

/* kv.phpのCSS */
.kv_title {
	margin-top: 13%;
	text-align: center;
	color: #7C6D50;
}
.kv_title h1 {
	font-size: 110px;
	margin: 2% 0 2% -5%;
} 
.kv_title h1 span {
	font-size: 100px;
}
.kv_logo {
	display: block;
	width: 50%;
	opacity: 0.45;
	margin: -5% 0 3% auto;
}
.kv_title p {
	font-size: min(4vw,50px);
	text-align: right;
}
.sns-icon {
	width: 70px;
	padding: 10px;
	margin: -15% 0 0 -2%;
}
.sns-icon_box {
	margin-top: 60px;
	width: 100%;
}
.sns-icon_box p {
	font-size: 16px;
	transform: rotate(90deg);
	position: relative;
}
.sns-icon_box p::after {
	content: "";
	width: 40px;
	height: 3px;
	background-color: #777;
	border-radius: 2px;
	position: absolute;
	top: 7px;
	left: 50px;
}
.sns-icon_box img {
	margin-top: 15px;
}
.kv_myname {
	margin: -5% 0 0 5%;
	font-size: 20px;
	font-weight: 600;
	line-height: 35px;
}
.kv_myname_name {
	font-size: 24px;
	width: 20%;
	padding-bottom: 10px;
	border-bottom: solid 2px #777;
	margin-bottom: 10px;
}
.scrolldown span{
	position: absolute;
	left:10px;
	bottom:10px;
	color: #7C6D50;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom:0;
    right:1%;
 	width:10px;
	height:10px;
	border-radius: 50%;
	background:#7C6D50;
 	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }
.scrolldown:after{
	content:"";
	position: absolute;
	bottom:0;
	right:1.3%;
	width:2px;
	height: 50px;
	background:#7C6D50;
}
@media(max-width: 1000px) {
	.kv_title {
	margin-top: 0;
	padding-top: 25%;
}
.kv_title h1 {
	font-size: 90px;
	margin: 0 0 3% -5%;
} 
.kv_title h1 span {
	font-size: 70px;
}
.kv_logo {
	margin: -7% 0 4% auto;
}
.sns-icon {
	margin: -15% 0 0 10px;
}
.kv_myname {
	margin: 0% 0 0 100px;
}
}
@media(max-width: 767px){
.kv_title {
	padding-top: 60%;
}
.kv_title h1 {
	font-size: 40px;
	margin: 0 0 10% -5%;
} 
.kv_title h1 span {
	font-size: 30px;
}
.kv_logo {
	width: 60%;
	margin: 0 0 10% auto;
}
.kv_title p {
	font-size: 18px;
}
.sns-icon {
	width: 30px;
	padding: 1px;
	margin: -10% 0 0 10px;
}
.sns-icon_box {
	margin-top: 50px;
}
.sns-icon_box p {
	font-size: 14px;
}
.sns-icon_box p::after {
	width: 25px;
	top: 6px;
	left: 40px;
}
.sns-icon_box img {
	margin-top: 6px;
}
.kv_myname {
	margin: 17% 0 0 60px;
	font-size: 14px;
	line-height: 20px;
}
.kv_myname_name {
	font-size: 20px;
	width: 50%;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
}

/* front-page.phpのCSS */
.works h1 {
	text-align: right;
}
.works_wrapper {
	width: 90%;
	margin: 0 auto;
}
.works_title {
	margin: 0 0 3% 2%;
	align-items: flex-end;
}
.works_title h2 {
	font-size: 50px;
	position: relative;
	width: 50%;
	margin: 0 0 1% 0;
}
.works_title h2::before {
	content: "";
	width: 10px;
	height: 40px;
	background-color: #777;
	position: absolute;
	top: 5px;
	left: -30px;	
}
.works_title p {
	font-size: 24px;
	line-height: 36px;
}
.works_content {
	margin: 0 0 3% 0;
}
.works_content_box {
	width: 50%;
	margin: 0 auto 10px;
	max-width: 550px;
	box-sizing: border-box;
	padding: 1%;
}
.website_img {
	width: 100%;
	height: auto;
	box-shadow: 2px 2px 8px #777;
}
.works_hidearea{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

.others_img {
	width: 100%;
	height: min(22vh,200px);
	box-shadow: 2px 2px 8px #777;
}
.modal_title {
	text-align: center;
	font-weight: 600;
	font-size: 24px;
	margin: 0 0 30px 0;
}
.modal_img {
	display: block;
	width: 50%;
	box-sizing: border-box;
	padding: 2%;
}
.modal_description {
	text-align: left;
	line-height: 24px;
	width: 50%;
	box-sizing: border-box;
	padding: 2%;
}
.modal_description h3 {
	font-size: 20px;
	margin: 0 0 20px 0;
}
.modal_description_detail {
	margin: 0 0 1% 0;
}
@media(max-width: 767px) {
.works_wrapper {
	width: 85%;
}
.works_title {
	margin: 0 0 5% 3%;
}
.works_title h2 {
	font-size: 24px;
}
.works_title h2::before {
	width: 5px;
	height: 20px;
	top: 5px;
	left: -15px;	
}
.works_title p {
	font-size: 16px;
	line-height: 24px;
}
.works_content {
	margin: 0 0 5% 0;
}
.works_content div {
	width: 100%;
}
.others_img {
	height: min(18vh,200px);
}
}
.about_wrapper {
	width:  95%;
	margin: 0 auto;
}
.about_contentBox {
	align-items: flex-start;
}
.about_content {
	width: 50%;
	padding: 2% 1%;
}
.about_content.myphoto {
	text-align: center;
}
.about_content img {
	border-radius: 10px;
	max-height: 520px;
}
.about_profile {
	margin: 0 0 10% 0;
}
.about_profile_title {
	width: 50%;
	position: relative;
}
.about_profile_title::after {
	content: "";
	background-color: #777;
	border-radius: 10px;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -10px;
	left: 0;
}
.about_profile_title h3 {
	font-size: 24px;
	margin: 0 0 5% 0;
}
.about_profile_title h3 span {
	font-size: 20px;
}
.about_profile_title p {
	font-size: 18px;
	margin: 0 0 5% 0;
}
.about_profile_name {
	margin: 5% 0 0 0;
	align-items: flex-end;
}
.about_profile_name h3 {
	font-size: 48px;
	letter-spacing: normal;
}
.about_profile_name p {
	font-size: 20px;
	margin: 0 0 0 2%;
}
.about_description {
	line-height: 24px;
}
.about_description p {
	margin: 0 0 3% 0;
}
.about_hashtag {
	margin: 0 0 0 7%;
}
.about_hashtag ul {
	list-style: none;
}
.about_hashtag ul li {
	display: inline-block;
	font-size: 18px;
	margin: 0 0 3% 3%;
}
@media(max-width: 1000px) {
.about_profile {
	margin: 0 0 5% 0;
	}
.about_profile_title::after {
	bottom: -8px;
}
.about_profile_title p {
	font-size: 16px;
}
.about_profile_name h3 {
	font-size: 36px;
}
.about_profile_name p {
	font-size: 18px;
}
.about_hashtag {
	margin-top: -25%;	
}
}
@media(max-width: 767px) {
.about_content {
	width: 100%;
	padding: 5%;
}
.about_content img {
	border-radius: 10px;
}
.about_profile {
	margin: 0 0 7% 0;
}
.about_profile_title {
	width: 50%;
}
.about_profile_title::after {
	bottom: -8px;
}
.about_profile_title h3 {
	font-size: 18px;
	margin: 0 0 8% 0;
}
.about_profile_title h3 span {
	font-size: 14px;
}
.about_profile_title p {
	font-size: 14px;
	margin: 0 0 5% 0;
}
.about_profile_name h3 {
	font-size: 28px;
}
.about_profile_name p {
	font-size: 16px;
	margin: 0 0 0 2%;
}
.about_description p {
	margin: 0 0 5% 0;
}
.about_hashtag ul {
	list-style: none;
}
.about_hashtag {
		margin-top: 0
	}
.about_hashtag ul li {
	font-size: 16px;
	margin: 0 0 5% 3%;
}
}
.skills h1 {
	text-align: right;
}
.skills_wrapper {
	width: 95%;
	margin: 0 auto;
}
.skills_contentBox {
	align-items: stretch;
}
.skills_content {
	width: 33.3%;
	max-width: 370px;
	margin: 0 auto 30px;
	padding: 4% 2%;
}
.skill_content_title {
	text-align: center;
	font-size: 24px;
	margin: 0 0 30px 0;
}
.skill-img {
	display: block;
	width: 50%;
	margin: 0 auto 40px
}
.skill-img.sns {
	width: 30%;
}
.skill_content_discription {
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 30px 0;
}
.skill_content_list {
	width: 85%;
	margin: 0 auto;
}
.skill_content_list ul li {
	margin: 0 0 10px 0;
}
@media(max-width: 767px) {
.skills_content {
	width: 100%;
	padding: 1%;
}
}
.contact-button_link {
	text-align: center;
	margin: 0 0 60px 0;
}
.contact-button_link a {
	display: block;
    width: 45%;
    margin: 0 auto;
    padding: 2% 3%;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    background: #7d6d4f;
    border-radius: 20px;
}
.instagram-link {
	width: 50%;
	max-width: 560px;
	margin: 0 auto 80px;
	justify-content: center;
}
.instagram-link_img {
	width: 20%;
	max-width: 70px;
}
.instagram-link_text {
	width: 80%;
	font-size: 22px;
	line-height: 35px;
	margin: 0 0 0 15px;
}
.instagram-link_account {
	font-size: 24px;
}
@media(max-width: 767px) {
	.contact-button_link a {
		width: 80%;
		padding: 4% 3%;
}
	.instagram-link {
	width: 75%;
	margin: 0 auto 60px;
}
.instagram-link_text {
	width: 80%;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}
.instagram-link_account {
	font-size: 16px;
	font-weight: 600;
}
.instagram-link_img img {
	width: 80%;
}
}
/* ページトップリンク */
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#384249;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	background: #777;
}
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media(max-width: 1000px) {
	#page-top {
		display: none;
	}
} 
/* footer.php */
footer {
	width: 100%;
	background-color: #7C6D50;
	padding: 3% 2% 10px 2%;
	color: #EEE8DA;
}
footer p {
	width: 80%;
	max-width: 1400px;
	font-size: 32px;
	margin: 0 auto 30px;
}
footer small {
	font-size: 14px;
	display: block;
	text-align: center;
}
@media(max-width: 767px) {
	footer p {
		font-size: 20px;
		margin: 10px auto 30px;
	}
}