@charset "UTF-8"; /* 文字コードの指定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap'); /* Google Fonts用のCSSを読み込み */

/* Base
------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #666666;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: #fff;
    background-color: #48E625;
}


/* 複数箇所で使いまわす指定
------------------------------------------------------------*/

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}
.top-margin{
    margin-top:30px;
}
h2 {
    margin: 0 0 80px;
    font-size: 4.8rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.5rem;
}
h4 {
    margin: 0 0 30px;
    font-size: 3rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.5rem;
}
/* ヘッダー部分
------------------------------------------------------------*/

header {
    padding-bottom: 100px;
    background-color: #f1f0e9;
}


/* プロフィール部分
------------------------------------------------------------*/

.profile{
    background-color: rgba(238, 255, 228, 0.6);
    padding-top:180px;
    background-image:url(../images/profile.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.profile .container{
    display: flex;
    justify-content: space-between;
    width: 64%;
    margin: 0 auto;
}

.profile-name{
    margin:0;
    padding: 0 0 20px 0;
    font-size: 4.0rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    line-height: normal;
    color: #48E625;
}
.profile-name span{
    display: block;
    font-size: 5.6rem;
    letter-spacing: 0.5rem;
    color:#071e3d;
}

.profile-introduction{
    margin: 0 0 60px;
    width:60%;
}

.profile-image{
    margin: 60px 0 0 40px;
    border-radius:  50%;
}

/* Moreボタン、メールボタン、
------------------------------------------------------------*/
ul.contact {
    padding: 0;
    margin-bottom: 180px;
}
ul.contact li{
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

ul.contact a{
    display: block;
    width: 40px;
    height: 40px;
    padding:10px;
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.1;
    color: #666666;
    border-radius: 50%;
    background-color: rgba(72, 230, 37, 0.3);
}

ul.contact a:hover{
    background-color:  #48E625;
}

ul.contact li.button-more{
    margin-right: 40px;
}

ul.contact li.button-more a{
    width: 200px;
    height: 60px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    background-color: rgba(72, 230, 37, 0.3);
    border-radius: 30px;
    box-sizing: border-box;
    
}

/* Skills部分
------------------------------------------------------------*/
.skills{
    padding:80px 0 120px;
    background-color: #fff;
}
.skills .container{
    display: flex;
    justify-content:space-between;
    max-width: 1080px;
    margin:0 auto;
    width: 64%;
}
.skills-box{
    width: 32%;
    padding:30px;
    color: #fff;
    box-sizing: border-box;
    box-shadow: -8px 8px 8px rgba(0,0,0,0.15);
    
}
.color-a{
    background-color: #25E68B;
}
.color-b {
    background-color: #E6E425;
}
.color-c {
    background-color: #87E671;
}
.skills-box-heading{
    margin-bottom: 20px;
     display: flex;
    flex-direction: column; 
}
.skills i{
    float: left;
    padding-top: 16px;
    margin:0 20px 0 0;
    font-size: 3.3rem;
    color:#fff;
    padding-bottom:1rem;
}
.skills h3{
    margin:0;
    font-size: 3rem;
    font-weight: 400;
    line-height: 4rem;
}
.skills p{
    line-height: 2;
}

/* Works部分
------------------------------------------------------------*/
.works{
    padding:80px 0 180px;
    background-color: rgba(238, 255, 228, 0.6);
}

.works .container{
    max-width: 1080px;
    margin:0 auto;
       width: 64%;
       
}

.works .container::after{
    display: block;
    content:"";
    clear:both;
}
.works-box{
    position: relative;
    float: left;
    width: 32%;
    margin:0 2% 40px 0;
    color: #555;
    background-color:#fff;
    box-shadow: -16px 20px 16px rgba(0,0,0,0.04);
}
.works-box:nth-of-type(3n){
    margin-right: 0;
}
.works-box img{
    max-width:100%;
    vertical-align: bottom;
}
.works-box-inner{
    height: 120px;
    padding:20px;
    box-sizing: border-box;
}
.works-box-inner h3{
    margin:0;
    font-size:2rem;
    font-weight: 700;
    line-height: 1.5;
}
.works-box-inner span{
    position: absolute;
    bottom: 20px;
    font-size:1.2rem;
    color: #a8a698;
}

/* フッター部分
------------------------------------------------------------*/
footer{
    padding:20px 0;
    font-size:1.4rem;
    font-weight: 400;
    text-align:center;
    color:#fff;
    background-color: #48E625;
}

/* キャリア部分
------------------------------------------------------------*/

.career {
    padding: 80px 0 120px;
}

.career .container {
    width: 64%;
    margin: 0 auto;
}

.line {
    position: absolute;
    left: 15.6%;
    width: 5px;
    height: 900px;
    background: #e8edf4;
}

.career-box {
	position: relative;
	margin-bottom: 60px;
}

.icon-check {
	position: absolute;
	left: -48px;
    font-size: 3.6rem;
}

.career-box-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
	border-bottom: 2px dotted #a8a698;
}

.career-box-heading h3 {
    padding-bottom: 16px;
    margin: 0;
    font-size: 3.2rem;
    font-weight: 700;
	line-height: 1.25;
    color: #555;
}

.career-box-heading h3 span {
    font-size: 2.0rem;
    font-weight: 500;
    color: #a8a698;
}

.date {
    padding-bottom: 16px;
    font-size: 2.0rem;
    font-weight: 500;
    color: #a8a698;
}

.date i {
	margin-right: 12px;
}

.career-box p {
	width: 70%;
}

/* 香水HP部分
------------------------------------------------------------*/
body{
    background-color: rgba(238, 255, 228, 0.6);
}
.works-container {
    margin:10rem 30rem 10rem 30rem;
}
.works-container h1{
    color:#48E625;
    margin-top:8rem;
}

.works-container img{
    width:100%;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}
.works-url{
     color:#666666;
}
.works-url:hover{
     color:#48E625;
}
.text{
    margin:4rem 0 4rem 0;
}
.works-img{
    align-items:center;
    text-align:center;
}

.border{
    border-bottom: 2px dotted #48E625;
}

/* banner部分
------------------------------------------------------------*/
.banner-container{
    display:flex;
    justify-content:space-between;
}
.banner-box{
    margin:1rem;
    padding:2rem;
    background-color:#fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    width:25%;
    display: flex;
justify-content: center; /* 水平方向に中央揃え */
            align-items: center;
}

.banner-box img{
    box-shadow: 10px 10px 20px rgba(255, 255, 255, 0);
}

.banner-text{
    margin-top:6rem;
}
