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



body {
	margin: 0px;
	padding: 0px;
	background: repeat-x top;
	text-align:center;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	font-size: 12px;
	color: #333;
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

#header {
	position: relative;
    padding: 30px 20px 0px; /* スマホで上部パディングを減らす */
    min-height: 90px; /* スマホで高さを調整 */
    background-image: url("header-wave.svg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
	
}


.logo {
	color: #fff;
	font-size: 23px;
	text-decoration: none;
	position: relative;
	padding: 0px;
	margin: 0px;
	text-align: left;
	z-index: 10;
}


@media (max-width: 768px) {
    .logo {
		font-size: 15px;
	
}
}

/* nav */
/* ハンバーガーメニューのスタイル */
#header .hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 10; /* メニューより前に表示 */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #00CD7A; /* ボタンの色 */
  margin: 5px 0;
  transition: 0.4s;
}

/* メニューのスタイル */
.menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 200px;
	height: 100%;
	font-size: 15px;
	line-height: 50px;
	text-align:left;
	opacity: 0; /* 初期状態は透明 */
	pointer-events: none; /* クリック不可 */
	transition: opacity 0.5s ease; /* フェードインのアニメーション */
	padding: 20px;
	box-sizing: border-box;
	z-index: 5;
}


.menu ul{
	padding-left:0;

}

.menu li{
	list-style:none;

}

.menu a{
	text-decoration: none;
	color: #00CD7A;

}



/* メニューが開いたとき */
.menu.open {
  opacity: 1; /* 不透明にする */
  pointer-events: auto; /* クリック可能にする */
}

/* バツ印に変わるハンバーガーボタン */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* 真ん中の線を透明にする */
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}




.main_visual img {
	margin: 150px auto;
	width: 100px;
	opacity: 0;
    animation: fadeIn 1s forwards;
}


@keyframes fadeIn {
    to { opacity: 1; }
}


@media screen and (min-width:768px) and (max-width:1024px) {
	
	.main_visual img{
		width: 100px;
	}
}

@media screen and (max-width:480px) { 
   
	.main_visual img{
		width: 100px;
	}
}


.sub_title{
	color: #AAE6B4;
	margin: 30px 0px ;
	text-align: left;
	padding: 0px 50px ;
	font-weight: bold;
	font-size: 25px;
}

.sub_title_skills{
	color: #fff;
	margin: 30px 0px ;
	text-align: left;
	padding: 0px 50px ;
	font-weight: bold;
	font-size: 25px;
}

@media screen and (max-width:480px) { 
   
	.sub_title{
		font-size: 20px;
		
	}
	.sub_title_skills{
		font-size: 20px;
		
	}
}



.profile{
	margin: auto;
	height: 900px;
	padding: 30px 0px 0px;
	background-image: url("profile-wave.svg");
    background-size: cover;
    background-repeat: no-repeat;
	
}

.profile_name{
	font-size: 18px;
	color: #fff;
	line-height: 2;
	font-weight: 700;
}


.profile_text{
	font-size: 13px;
	width: 550px;
	margin: auto;
	padding: 0px 0px;
	text-align: left;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.profile{
	height: 1250px;
	
}
    .profile_text{
	width: 300px;
	
}
}

.skills{
	width: 700px;
	margin: auto;
	border: 2px solid #fff;
	padding: 0px;
	border-radius: 5px;
}


.skills_archive{
	display: flex;
	margin: auto;
	padding: 0px 0px 23px ;
	flex-wrap: wrap;
	
}


.skills_list {
	margin: auto;
	list-style:none;
	
}

.skills_list img{
	width: 250px;
}


.skills_title{
	color: #fff;
	margin: 30px 0px ;
	text-align: center;
	font-size: 23px;
	font-weight: 700;
}

.skills_sub{
	font-size: 14px;
	text-align: center;
}


@media (max-width: 767px) {
    .skills {
		width: 350px;
		padding: 0px;
		margin: auto;
    }
	.skills_list img{
		width: 180px;
		padding: 10px 0px;
	}
	.skills_title{
	color: #fff;
	margin: 30px 0px ;
	text-align: center;
	font-size: 18px;
	}
	
	.skills_sub{
	font-size: 13px;
	text-align: center;
}
}


.works {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	position: relative;
}

@media (max-width: 767px) {
    .works {
		display: block;
		width: 100%;
		max-width: 350px;
    }
}

.work_archive{
	display: flex;
	flex-wrap: wrap;
	padding: 0px ;
	margin: auto;
}


.work_list {
	margin: auto;
	list-style:none;
}

.work_list img{
	margin: auto;
	width: 300px;
	padding: 10px ;
}

.work_text{
	margin: 0px;
	padding: 0px 0px 40px;
}

@media (max-width: 767px) {
    .work_list img{
	width: 300px;
	padding: 10px 0px;
}
}


.contact{
	margin: auto;
	text-align: center;
	font-size: 20px;
	padding: 50px 0px 50px;
	
}

.contact_mail{
	color: #AAE6B4;
	text-decoration: none;
}



.footer {
	color: #FFF;
	text-align: center;
	height: 100px;
	padding: 100px;
	background-image: url("footer_wave.svg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}



.copyright {
 padding: 50px;
}
