@charset "UTF-8" ;
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP:wght@100;400;700;900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16pt;
}

h2 {
    font-size: 60px;
    text-align: center;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.header_inner {
    max-width: 100%;
    margin: auto;
    padding: 10px 20px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_inner a {
    font-size: 16px;
    text-decoration: none;
}

.title-logo {
    font-size: 16px;
    color: white;
}

.gnav-list {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    list-style: none;
}

.gnav-list li {
    margin-left: 15px;
}

.gnav-list li a {
    text-decoration: none;
    color: white ;
}

@media ( min-width : 640px ){
    .header_inner {
        padding: 10px 100px;
    }

    .title-logo {
        font-size: 30px;
    }

    .header_inner a {
        font-size: 20px;
    }

    .gnav-list li {
        margin-left: 30px;
    }
}

/* Index→メイン→ヘッドコンテント */
.head_container {
    width: 100%;
    height: 100vh;
    font-family: 'DotGothic16', sans-serif;
    background-color: black;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(rgb(49, 49, 49),rgb(49, 49, 49,0),rgba(49,49,49)),url(images/top/cording.png);
    background-position: center;
    background-size: cover;
}
.head_container h1 {
    text-align: center;
    padding-top: 300px;
    font-size: 64px;
    font-weight: 700;
}

/* Index→メイン→自己紹介 */
.about_me_section {
    /* font-family: 'DotGothic16', sans-serif; */
    text-align: center;
    padding-block: 25px;
    margin-inline: 20px;
}

.about_me_section_container {
    display: flex;
    justify-content: center;
    padding: 30px;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.about_me_section_container img{
    width: 300px;
    height: 300px;
    border: 5px solid black;
    border-radius: 10px;
}

@media ( min-width : 640px ){
    
}

.about_me_section_container table {
    text-align: left;
    padding-inline: 15px;
}

.about_me_section_container table th {
    padding-inline: 10px;
}

.history_section {
    padding-block: 25px;
    background-color: rgb(0, 0, 0);
}
.history_container {
    display: flex;
    justify-content: center;
    padding-right: 30px;
    color: rgb(255, 255, 255);
}
.history_section h2 {
    color: rgb(0, 200, 255);
}

/* Index→メイン→タイムライン */
.timeline {
    list-style: none;
}

.timeline li {
    margin-top: 15px;
}

.timeline h3 {
    text-decoration: wavy underline #0bb870;
}

.timeline-date {
    margin-right: 20px;
}
.timeline-content a {
    text-decoration: none;
    color: #7371f8;
    font-weight: bold;
    border-bottom: #c4c3fa solid 2px;
}
.timeline-content a:before {
    content:'\f0c1';
    font-family: 'Font Awesome 5 Free';
}

@media ( min-width : 640px ){
    .timeline > li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }
    .timeline li:last-child .timeline-content {
        padding-bottom: 0px;
    }
    .timeline-date {
        width: 110px;
        float: left;
        margin-top: 20px;
    }
    .timeline-content {
        width: 75%;
        float: left;
        border-left: 3px #0bb870 solid;
        padding-left: 30px;
        padding-bottom: 20px;
    }
    .timeline-content:before {
        content: '';
        width: 12px;
        height: 12px;
        background: #00c3ff;
        position: absolute;
        left: 126px;
        top: 35px;
        border-radius: 100%;
    }

    .timeline h3 {
        text-decoration: none;
    }
}

/* Index→メイン→記事 */
.Article_section {
    /* font-family: 'DotGothic16', sans-serif; */
    text-align: center;
    padding-block: 25px;
    margin-inline: 20px;
}

.Article_container {
    display: flex;
    justify-content: center;
    padding: 30px;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.Article_card {
    background-color: rgb(218, 218, 218);
    width: 60vw;
    max-width: 1000px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.Article_title {
    display: flex;
    justify-content: space-between;
}
.Article_title h3 {
    font-size: 20pt;
    padding-inline: 20px;
    margin-left: 20px;
    border-bottom: black solid 1px;
}
.Article_title p {
    padding-inline: 20px;
    margin-left: 20px;
    margin-block: auto;
}

.Article_content{
    padding-inline: 20px;
    padding-block-start: 20px;
    text-align: left;
}
.view_more {
    text-align: right;
    margin-block: 10px;
    margin-inline: auto 0;

    width: 100%;
    max-width: 180px;
    height: 40px;
    position: relative;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #045cd4;
    color: #045cd4;
    background-color: #fff;
    box-shadow: 0 6px 0 #045cd4;
    transition: all 0.3s ease;
}
.view_more:hover {
    color: #fff;
    background-color: #045cd4;
    box-shadow: 0 0 0 #045cd4;
    transform: translateY(6px);
}
@media ( max-width : 640px ){
    .Article_card {
        width: 80vw;
        margin-inline: auto;
    }
    .Article_container {
        display: block;
        justify-content: center;
        padding: 10px;
        margin: 10px 0px;
        flex-wrap: wrap;
    }
    .Article_title {
        display: block;
    }
    .Article_title h3 {
        font-size: 30pt;
    }
    .Article_title p {
        font-size: 16pt;
    }
    .Article_content {
        font-size: 14pt;
    }
    .view_more {
        width: 200px;
        height: 50px;
        font-size: 20px;
    }
    
}



/* フッター */
footer {
    text-align: center;
    background-color: black;
    color: white;
    font-size: 12px;
    padding-block: 10px;
}


/* worksページ */
.works_t_section {
    width: 100%;
    height: 50vh;
    font-family: 'DotGothic16', sans-serif;
    background-color: black;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(rgb(49, 49, 49),rgb(49, 49, 49,0),rgba(49,49,49)),url(images/top/cording.png);
    background-position: center;
    background-size: cover;
}

.works_t_section h1 {
    text-align: center;
    padding-top: 100px;
    font-size: 64px;
    font-weight: 700;
}

.works_t_section p {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.works_section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    margin-inline: auto;
}

.works_section .container .card {
    width: 350px;
    padding: 20px 10px;
    border: 3px solid #00c3ff;
    border-radius: 5px;
    margin: 20px 5px;
}

.works_section .container .card img {
    margin-inline: auto;
    max-width: 300px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
    margin-block: 10px;
}
.works_section .container .card video {
    margin-inline: auto;
    max-width: 300px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
    margin-block: 10px;
}

@media ( min-width : 640px ){
    .works_section .container .card {
        width: 400px;
    }

    .works_section .container .card img {
        max-width: 350px;
    }
}

/* skillsページ */
.skills_t_section {
    width: 100%;
    height: 50vh;
    font-family: 'DotGothic16', sans-serif;
    background-color: black;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(rgb(49, 49, 49),rgb(49, 49, 49,0),rgba(49,49,49)),url(images/top/cording.png);
    background-position: center;
    background-size: cover;
}

.skills_t_section h1 {
    text-align: center;
    padding-top: 100px;
    font-size: 64px;
    font-weight: 700;
}

.skills_t_section p {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.skills_section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 90%;
    margin-inline: auto;
}

.skills_section .container .card {
    padding: 20px ;
    margin: 20px 5px;
    background-color: rgba(0, 0, 0, 0.409);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.599);
    text-align: center;
}

.skills_section .container .card img {
    width: 200px;
    height: 200px;
}
.skills_section p {
    color: white;
    font-size: 30px;
    font-weight: 800;
    padding-top: 10px;
}

/* Articleたち */
#article-main{
    background-color: rgb(255, 255, 255);
    width: 80vw;
    max-width: 1200px;
    margin-inline: auto;
    margin-block: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.article-head {
    text-align: left;
    padding-block: 25px;
    margin-block: 20px;
    margin-inline: auto;
}
.article-head h1 {
    font-size: 40pt;
    font-weight: 700;
    padding-inline: 20px;
    margin-inline: 20px;
    border-bottom: rgb(20, 199, 44) solid 5px;
    max-width: 100%;
}
.article-head .day {
    text-align: right;
    font-size: 20px;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-block: auto;
}
.article-head .tag {
    text-align: left;
    font-size: 20px;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-block: auto;
}

.large-section h2{
    text-align: left;
    font-size: 30pt;
    font-weight: 700;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-block: 10px;
    border-bottom: rgb(20, 199, 44) ridge 5px;
    max-width: 100%;
}
.large-section h3 {
    text-align: left;
    font-size: 25pt;
    font-weight: 700;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-block : 30px;
    border-left: rgb(20, 199, 44) solid 5px;
    max-width: 100%;
}
.large-section h4 {
    text-align: left;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-block: 10px;
    max-width: 100%;
}
.large-section p {
    text-align: left;
    font-size: 14pt;
    padding-inline: 20px;
    margin-inline: 20px;
    margin-bottom: 20px;
    margin-top: 10px;

}

.large-section p a {
    /* margin-top: 20px; */
    position: relative;
	color: #045cd4;
	text-decoration: none;
    display: inline-block;
    height: 40px;
    padding: 10px;
}
.large-section p a:hover {
    color: #0bb870;
}
.large-section p a::after {
    content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #0bb870;
	transition: width 0.3s;
}
.large-section p a:hover::after {
    width: 100%;
}

.code_container {
    width: 90%;
    margin-inline: auto;
    font-size: 13pt;
}
.large-section img {
    max-width: 90%;
    min-width: 20%;
    margin-inline: auto;
    margin-block: 20px;
}

.large-section ul{
    text-align: left;
    font-size: 14pt;
    padding-inline: 40px 20px;
    margin-inline: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bg-yellow {
    background-color: rgb(255, 247, 128);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    margin-inline: 5px;
}
.bg-code {
    background-color: rgb(56, 56, 56);
    color: white;
    padding: 2px 5px;
    border-radius: 5px;
    margin-inline: 5px;
    font-family: "Source Code Pro", monospace;
}

@media ( max-width : 640px ){
    #article-main {
        width: 90vw;
        padding: 5px;
    }
    .article-head h1 {
        font-size: 30pt;
    }
    .article-head .day {
        font-size: 16px;
    }
    .article-head .tag {
        font-size: 16px;
    }
    .large-section h2 {
        font-size: 20pt;
    }
    .large-section h3 {
        font-size: 18pt;
    }
    .large-section h4 {
        font-size: 16pt;
    }
    .large-section p {
        font-size: 12pt;
    }
    .large-section img {
        max-width: 100%;
        
    }
    .large-section ul {
        font-size: 12pt;
    }
    .code_container {
        font-size: 12pt;
    }
    
}