@charset "utf-8";
/* CSS Document */





/* ---------- 基本設定 ---------- */

html {
	font-size: 62.5%;
}
p,a {
	font-family: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "sans-serif";
	font-size: 16px;
	color: #333;
}
#wrapper {
	overflow: hidden;
	background-color: #f8f7f3;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	line-height: 0;
	vertical-align: bottom;
}
a {
	text-decoration: none;
}
a:hover {
	opacity: 0.9;
}
h2 {
	font-family: "Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo","sans-serif";
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
}
h1,h3,h4,h5 {
	font-family: 'Kumbh Sans';
	color: #333;
}
.section_gap {
	width: 90vw;
	margin: 0 auto;
}





/* ---------- ナビゲーション部ここから ---------- */

#header_fixed { 
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 1;
	justify-content: space-between;
    align-items: center;
	color: #000;
	margin: 0 auto;
}
#header_fixed h1 {
	width: 200px;
	margin-left: 20px;
}
#global_navi ul {
	display: flex;
}
.globalMenuSp img{
	width: 30%;
}
.globalMenuSp ul {
	display: flex;
	justify-content: flex-end;
	text-align: center;
}
.globalMenuSp ul li a{
	margin-left: 30px;
	font-size: 13px;
	line-height: 2.5rem;
}
.hamburger {
	display: none;
}
.globalMenuSp {
	display: flex;
	padding: 20px 40px;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	background-color: #f8f7f3;
	z-index: 999;
	left: 0;
	right: 0;
}
.globalMenuSp img{
	text-align: left;
}





.pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 10px;
	bottom: 30px;
	background: #fff;
	border: solid 2px #0C6D5B;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
  }
  .pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #0C6D5B;
    border-right: 3px solid #0C6D5B;
	transform: translateY(20%) rotate(-45deg);
  }





/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
	background-color: #f8f7f3;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F9F9F9;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.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%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション liを表示*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	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;
}
.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%;
}



/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	#header_fixed h1 {width: 180px;}
	.hamburger {top: 15px;}
	.hamburger {
		display: block;
	}
	.globalMenuSp nav{
		display: none
	}
	.globalMenuSp {
		padding: 20px 15px;
		background-color: transparent;
		z-index: 1;
	}
	.globalMenuSp img {
        width: 20%;
    }
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	#header_fixed {height: 60px;}
	#header_fixed h1 {width: 150px; margin-left: 10px;}
	.hamburger {top: 10px; right: 10px;}
}
/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	p {
		font-size: 14px;
	}
}

/* ---------- ナビゲーション部ここまで ---------- */





main {
	width: 80%;
	margin: 0 auto;
}




/* メインビジュアルここから */

#profile_box h3 {
	font-size: 7.0rem;
	font-weight: 200;
	text-align: center;
	margin-bottom: 50px;
	color: rgb(0, 0, 0);
}
#profile1{
	display: inline-block;
}
#profile1 img{
	width: 150px;
}
#profile2{
	width: 55%;
}
.profile_txt{
	line-height: 2.8rem;
}
.profile_txt h5{
	font-style: normal;
	font-size: 20px;
	margin-bottom: 1em;
}
.profile_txt p{
	font-size: 16px;
}
.profile_txt li{
	font-size: 1.3rem;
}
#profile_box{
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding-bottom: 150px;
}
#about {
	width: 85%;
	margin: 0 auto;
	text-align: left;
}
.about_title {
	margin-top: 100px;
}
.about_title {
	text-align: center;
	margin-bottom: 70px;
}
.skills_title {
	text-align: center;
	margin-bottom: 70px;
}
.about_title h1, .about_skill_block h1{
	font-size: 40px;
	margin-bottom: 10px;
	font-size: 48px;
	font-weight: 200;
	text-align: center;
	margin-bottom: 10px;
}
.about_title h1::before, .about_skill_block h1::before {
	content: "";
	background-image: url(../images/title_before.png);
	display: inline-block;
	width: 18px;/*画像の幅*/
	height: 18px;/*画像の高さ*/
	background-size: contain;
	margin-right: 40px;
	vertical-align: 5px;
}
.about_title h1::after, .about_skill_block h1::after {
	content: "";
	background-image: url(../images/title_after.png);
	display: inline-block;
	width: 18px;/*画像の幅*/
	height: 18px;/*画像の高さ*/
	background-size: contain;
	margin-left: 40px;
	vertical-align: 5px;
}
.about_skill_spec h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}



/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	.works_title p:first-of-type {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.works_title {
		margin-top: 30px;
	}
	#works_block {
		padding: 100px 0 50px;
		margin: 0 auto;
		text-align: center;
	}
	#profile1 {
        width: 70%;
    }
	#profile1 img{
		width: 60%;
	}
	#profile2 {
		width: 100%;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	#profile_box {
		display: block;
		padding-bottom: 100px;
	}
	.profile_txt h5 {
        text-align: center;
    }
	#profile1 {
        text-align: center;
        width: 100%;
    }
	#profile1 img {
		margin-bottom: 50px;
        width: 40%;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	#profile1 img {
        width: 50%;
    }
	.about_title h1 {
        font-size: 35px;
        margin-bottom: 10px;
    }
	.about_title {
		text-align: center;
		margin-bottom: 50px;
	}
	.profile_txt p {
		font-size: 14px;
	}
	.about_skill_block h1 {
		font-size: 35px;
	}
}

/* メインビジュアルここまで */





/* ---------- スキルここから ---------- */

#about_skill {
	/* width: 1220px; */
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	font-size: 1.5rem;
	line-height: 2.0rem;
	flex-wrap: wrap;
	margin-bottom: 100px;
}
.about_skill_spec {
	width: 42%;
	margin-bottom: 50px;
	background-color: #fff;
	padding: 40px 25px;
	border-radius: 3%;
}
.about_skill_spec p{
	line-height: 2.8rem;
}
.about_skill_spec div {
	margin: 0 auto 40px;
	width: 80%;
	text-align: center;
}
.about_skill_spec h5 {
	text-align: center;
	margin-bottom: 40px;
	width: 300px;
	margin: 0 auto;
}


/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
	
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
	#profile_box {
		padding-bottom: 100px;
	}
	.skills_title {
		margin-bottom: 50px;
	}
}
/* ---------- スキルここまで ---------- */





/* ---------- キャリアここから ---------- */
.timeline {
	margin: 0 0 120px;
  }
  .timeline > li {
	margin-bottom: 60px;
  }
  .timeline-content h3 {
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 20px;
  }
  .timeline-content p {
	line-height: 2.8rem;
  }
  .timeline li {
    overflow: hidden;
    margin: 0;
    position: relative;
    text-align: left;
}
  .timeline-date {
	width: 110px;
	float: left;
	margin: 32px 0;
  }
  .timeline-content {
	width: 80%;
	float: left;
	border-left: 3px #d5e9c7 solid;
	padding: 30px 0 30px 40px;
	}
  .timeline-content:before {
	content: '';
	width: 12px;
	height: 12px;
	background: #3DAD58;
	position: absolute;
	left: 106px;
	top: 38px;
	border-radius: 100%;
  }
/* ---------- キャリアここまで ---------- */





/* ---------- フッター：コピーライト部ここから ---------- */

footer {
	background-color: #0C6D5B;
}
footer .copyright{
	font-size: 12px;
	font-weight: 300;
	padding: 30px;
	text-align: center;
	color: #fff;
}
.footer_contents {
	display: flex;
	justify-content: space-between;
	padding: 80px 0;
	width: 80%;
	margin: 0 auto;
}
.footer_contents .footer_logo p {
	font-weight: 400;
	color: #fff;
}
.footer_logo {
	position: relative;
}
.footer_contents .footer_logo a::before{
	content: url(../images/logo_img_footer.png);
    position: absolute;
    transform: scale(0.23);
    top: -70px;
    left: -105px;
}
.footer_nav ul li {
	font-size: 16px;
	margin-bottom: 20px;
	text-align: left;
}
.footer_nav ul li a{
	color: #fff;
}
.footer_nav a:hover {
    opacity: 0.8;
}


/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	.timeline-content {
		width: 100%;
		border-left: none;
		padding: 0;
	  }
	.timeline-content:before {
		display: none;
	}
	.timeline-date {
        width: auto;
        padding: 0 0 5px 0;
        color: #3DAD58;
        font-weight: 600;
    }
	footer h3 {width: 400px;}
	.footer_nav {
		display: none;
	}
	.footer_contents {
		justify-content: center;
	}
	.footer_contents .footer_logo p {
		padding-left: 32px;
	}
	.footer_contents .footer_logo a::before{
		transform: scale(0.2);
        top: -70px;
        left: -72px;
	}
	#about_skill {
		display: block;
	}
	.about_skill_spec {
		width: auto;
	}
	.timeline-date {
        margin-bottom: 10px;
		margin-top: 0;
    }
	.timeline li {
		margin-bottom: 50px;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhoine6.7.8Plus横 / iPhoine6.7.8横*/
@media screen and (max-width: 767px) {
	.footer_contents .footer_logo p {
        font-size: 16px;
    }
	.timeline {
		margin: 0 0 100px;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
	footer h3 {width: 80vw;}
}

/* ---------- フッター：コピーライト部ここまで ---------- */




