@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700&display=swap');

body {
    background-color: #F5EFE9;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: black;
    line-height: 1.3;
}

/* header conponents */
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F5EFE9;
    height: 56px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid black 1px ;
    z-index: 100;
}

h1 {
    font-size: 16px;
    font-weight:500;
    line-height: 56px;
}

a h1 {
    transition: 0.4s;
}

a h1:hover {
    color: #90A7B0;
}

.navigation ul {
    display: flex;
    justify-content: space-between;
}

.navigation ul li {
    font-size: 16px;
    margin-top: 14px;
    margin-left: 24px;
    line-height: 28px;
    height: 28px;
}

.navigation ul li:hover {
    opacity: 0.6;
    border-bottom: solid black 1px;
}


/* main conponents */
main {
    margin-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
}

/* footer conponents */
footer {
    height: 64px;
    width: 100%;
    background: #162A41;
    border-top: solid rgba(199, 216, 130, 1) 1px;
    color: white;
}

.footer {
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    line-height: 28px;
    height: 28px;
}

.footerNavi ul {
    display: flex;
    justify-content: space-between;
}

.footerNavi ul li {
    margin-left: 30px;
}

.footerNavi ul li:hover {
    border-bottom: solid #C7D882 1px;
}

/* //////////// */
/* common items */
/* //////////// */

h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.indexTagParent {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.indexTag {
    height: 28px;
    margin-top: 8px;
    margin-right: 12px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #162A41;
    border-radius: 27px;
    line-height: 24px; /* 微調整している */
}

.column3 {
    width: 28.6%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 2%;
}

.column4 {
    width: 38.8%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 2%;
}


/* ///////////////// */
/*   more project    */
/* ///////////////// */

.moreProject {
    background: #162A41;
    color: white;
    padding-top: 40px;
    padding-bottom: 20px;
}

.moreProjectRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.morePJchild {
    width: 360px;
    height: 320px;
    /* background-color: darkgray; */
    margin: 20px;
}

.morePJchild img {
    width: 360px;
    margin-bottom: 8px;
}

.moreProject .indexTagParent .indexTag {
    color: #C7D882;
    border: 1px solid #C7D882;
}

.morePJchild a {
    transition: 0.5s;
}

.morePJchild a:hover {
    opacity: 0.7;
}


/* //////////// */
/* index.html */
/* //////////// */

.pjIndex {
    /* background-color: #162A41; */
    margin: 0 auto;
    height: 450px;
    width: 100%; /* 状況に応じて変更 */
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}

.pjIndexLeft {
    /* background-color: lightgray; */
    height: 100%;
    width: 28.6%;
}

.pjIndexRight {
    background-color: lightgray;
    height: 100%;
    width: 59.2%;
}

.readMore {
    margin-top: 15px;
}

.readMore a {
    border-bottom: solid black 1px;
}

.readMore a:hover {
    color: #90A7B0;
    border-bottom: solid #90A7B0 1px;
}

/* //////////// */
/*     ABOUT    */
/* //////////// */

.about {
    display: flex;
    justify-content: flex-start;
}

.about #skill {
    margin-top: 30px;
}

.about p, .about ul li {
    line-height: 1.6;
}


/* //////////// */
/*   bloomjoy   */
/* //////////// */

.pjIntroduction {
    display: flex;
    justify-content:space-between;
    padding-top: 10px;
}

.pjIntroductionLeft {
    width: 38.8%;
}

.pjIntroductionRight {
    width: 8.2%;
    position: relative;
    z-index: -5; /* 状況に応じて変更 */
}

.pjDate {
    position: absolute;
    right: 0;
    bottom: 0;
}

.pjMainPic {
    background-color: #90A7B0;
    width: 100%;
    height: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.flex {
    display: flex;
    justify-content: flex-start;
}


/* Under Construction */
.underC a {
    border-bottom: solid black 1px;
}

.underC a:hover {
    opacity: 0.5;
}

