@charset "UTF-8";

body{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    background-color: #2B3048;
}

/*PC共通ヘッダー*/
header {
    width: 100%;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    position: fixed;
    top: 0;
    left: 0;
    height: 48px;
    display: flex;
    padding: 0 5%;
    align-items: center;
}

h1 {
    font-weight: bold;
    font-size: 25px;
    margin-right: auto;
}

h1 a {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
}

h1 a:hover {
    opacity: 0.6;
}

.menu-group {
    display: flex;
    height: 100%; /* 親要素の高さに合わせる */
    line-height: 48px; /* 親要素の高さと同じにする */
    gap: 35px;
}

.menu-group a {
    color: #FFFFFF;
    text-decoration: none;
}

.gnav a:hover {
    opacity: 0.6;
}

a{
    color: black;
    text-decoration: none;
}

@media (min-width: 768px){
    .sp-menu {
        display: none;
    }
}

/*スマートフォン用メディアクエリ ヘッダー*/
@media (max-width: 767px){
    .gnav {
    display: none;
    }

    .sp-menu__box {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 48px;
    width: 48px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    }

.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background: #ffffff;
    position: absolute;
}
.sp-menu__box span:before {
    bottom: 8px;
}
.sp-menu__box span:after {
    top: 8px;
}
#sp-menu__check {
    display: none;
}
#sp-menu__check:checked ~ .sp-menu__box span {
    background: rgba(255, 255, 255, 0);
}
#sp-menu__check:checked ~ .sp-menu__box span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#sp-menu__check:checked ~ .sp-menu__box span::after {
    top: 0;
    transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .sp-menu__content {
    left: 0;
}
.sp-menu__content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #979856;
    transition: all 0.5s;

}

.hamburgermenu_ul {
    width: 100%;
    margin: auto;
    margin-top: 48px;
    text-align: center;
}

.hamburgermenu_ul a {
    color: #FFFFFF;
    text-decoration: none;
    line-height: 40px;
}
.hamburgermenu_ul li:hover {
    opacity: 0.6;
}
.hamburgermenu_ul li::before {
    content: url(image/vector_white.png);
}
.hamburgermenu_ul li::after {
    content: url(image/vector_white.png);
}
}


/*PC共通　楕円背景とメインコンテンツ設定*/

.oval1 {
    width: 100%;
    max-width: 800px;
    height: auto;
    background-color: #ffffff;
    padding: 8px;
    align-items: center;
    margin: 40px auto;
    border-radius: 600px;/*ボックスを角丸にする*/
}

.oval {
    width: 100%;
    max-width: 780px;
    height: auto;
    background-color: #ffffff;
    border: #979856 1px solid;
    text-align: center;/*水平方向の行揃え：中央揃え*/
    line-height: 30px;/*行間：ボックスの高さと同じ数値で、垂直方向の揃えが中央になる*/
    align-items: center;
    margin: 0 auto;
    padding-bottom: 48px;
    border-radius: 600px;/*ボックスを角丸にする*/
}

.heading_vector {
    display: flex; /*Flexboxを有効にする*/
    flex-direction: column; /*縦方向にテキストと擬似要素のラインを整列*/
    align-items: center; /*中央揃え*/
    margin: 26px 0px auto;
}

.heading_vector::before {
    content: url(./image/Vector.png); /*h3要素の末尾に空のコンテンツを追加*/
    display: block; /*ブロック要素に変換*/
    text-align: center;/*水平方向の行揃え：中央揃え*/
    width: 10px; /*幅*/
    height: 20px; /*高さ*/
}

/*スマートフォン用メディアクエリ oval*/
@media (max-width: 810px){
.oval1 {
    max-width: 93%;
}
}

/*PC共通コンタクト*/

.contact_visual {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./image/contact.png);
}

.contact_visual_text {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    color: #FFFFFF;
    padding: 26px 0;
}

.heading_vectorwhite {
    display: flex; /*Flexboxを有効にする*/
    flex-direction: column; /*縦方向にテキストと擬似要素のラインを整列*/
    align-items: center; /*中央揃え*/
    margin: 0;
    padding: 0;
}

.heading_vectorwhite::before {
    content: url(./image/vector_white.png); /*h3要素の末尾に空のコンテンツを追加*/
    display: block; /*ブロック要素に変換*/
    text-align: center;/*水平方向の行揃え：中央揃え*/
    width: 10px; /*幅*/
    height: 20px; /*高さ*/
}

.contact_text {
    margin:26px 0px auto;
}

footer {
    color: #FFFFFF;
    text-align: center;
}

.copyright {
    margin: 10px auto;
}

h3 {
    margin: 26px 0px auto;
}

h4 {
    margin: 26px 0px auto;
}

/*スマートフォン用メディアクエリ コンタクト*/
@media (max-width: 767px) {
.contact_text {
    width: 90%;
    margin: 0px auto;
    margin-top: 26px;
    margin-bottom: 26px;
}
}

/*TOP*/

.main-contents {
    width: 100%;
    align-items: center;
    text-align: center;
}

.main_visual {
    background-image: url(./image/Top.png);
    margin-top: 48px;
}

.main_visual_text {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 110px;
    padding-bottom: 30px;
}

.top_text {
    width: 90%;
    max-width: 500px;
    display: inline-block;
    text-align: left;
    margin: 26px 0px auto;
}

.block {
    display: flex;
    text-align: center;
    justify-content: center;   
    align-items: center;
    margin: 26px 0px auto;
}

.block a{
    text-decoration: none;/*下線を消す*/
}

.block a :hover {
    background: #2B3048;
}

.btn {
    background-color: #979856;
    width: 150px;
    height: 40px;
    display: block;
    text-align: center;/*水平方向の行揃え：中央揃え*/
    border: none;
    color: #ffffff;/*文字色：白*/
    line-height: 40px;/*行間：ボックスの高さと同じ数値で、垂直方向の揃えが中央になる*/
    text-decoration: none;/*下線を消す*/
    font-size: 20px;/*文字サイズ*/
    border-radius: 40px;/*ボックスを角丸にする*/
    
}

.btn:hover{
	background: #2B3048;
}

.contact_block{
    display: block;
    text-align: center;
    justify-content: center;   
    align-items: center;
    margin: 26px 0px auto;
}

.contact_block a {
    text-decoration: none;
}

.contact_block a :hover {
    background: #2B3048;
}

.block_line {
    display: flex;
    width: 90%;
    max-width: 500px;
    justify-content: center; 
    align-items: center;  
    margin: 0 auto;
    margin-top: 26px;
}



/*works一覧共通*/

.worksContainer {
    width: 90%;
    max-width: 450px;
    margin: auto;
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.works1 {
    width: 200px;
    margin: 8px;
}

.works1 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works2 {
    width: 200px;
    margin: 8px;
}

.works2 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works3 {
    width: 200px;
    margin: 8px;
}

.works3 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works4 {
    width: 200px;
    margin: 8px;
}

.works4 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.Title {
    margin: 4px 0 auto;
}

.Title::before {
    content: url(./image/Vector.png);
}

.Title::after {
    content: url(./image/Vector.png);
}

.block_worksline {
    display: flex;
    width: 70%;
    max-width: 400px;
    justify-content: center;   
    margin: 0px auto;
    padding-top: 50px;
    padding-bottom: 26px;
}

.block_worksline2 {
    display: flex;
    width: 70%;
    max-width: 400px;
    justify-content: center;   
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

/*スマートフォン用メディアクエリ works一覧共通*/
@media (max-width: 767px) {
    .worksContainer {
    width: 90%;
    max-width: 450px;
    margin: auto;
    margin-top: 26px;
    align-items: center;
    display: block;
}

.works1 {
    display: inline-block;
    margin-top: 8px;
}

.works1 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works2 {
    display: inline-block;
    margin-top: 26px;
}

.works2 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works3 {
    display: inline-block;
    margin-top: 26px;
}

.works3 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.works4 {
    display: inline-block;
    margin-top: 26px;
}

.works4 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
}

/*About*/
.profile li::before{
    content: url(./image/Vector.png);
}

.profile {
    display: inline-block;
    margin-top: 26px;
}

.profile li {
    text-align: left;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    line-height: 28px;/*行間：ボックスの高さと同じ数値で、垂直方向の揃えが中央になる*/
}

.strong {
    display: flex;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 26px;
    justify-content: space-between;
    align-items: center;
}

.strongtext {
    margin-top: 26px;
}

.strongright h3 {
    margin-top: 0;
}

.like {
    display: flex;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 26px;
    justify-content: space-between;
    align-items: center;
}

.likeleft h3 {
    margin-top: 0;
}

.liketext {
    margin-top: 26px;
}

.skill {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
}

.skilltext {
    margin-top: 26px;
}

.skillgraph {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}

.timeline {
    list-style: none;
    margin-top: 26px;
}

.timeline li {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    width: 80px;
    float: left;
}
.timeline-content {
    width: 80%;
    float: left;
    text-align: left;
    border-left: 2px black solid;
    padding-left: 30px;
}
.timeline-content:before {
    content: "";
    width: 10px;
    height: 10px;
    background: black;
    position: absolute;
    left: 76px;
    top: 10px;
    border-radius: 100%;
}

.vision {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 5%;
    padding-bottom: 50px;
}

.visiontext {
    display: inline-block;
    margin: 26px 0px auto;
    text-align: left;
}

/*スマートフォン用メディアクエリ About*/
@media (max-width: 767px){
    .strong {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 26px;
    align-items: center;
}

.strongright h3 {
    order: 1;
    margin-top: 0;
}

.strongimg {
    order: 2;
    margin-top: 26px;
}

.like {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 26px;
    align-items: center;
}

.likeimg{
    margin-top: 26px;
}

.timeline li {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    width: 54px;
    float: left;
}
.timeline-content {
    width: 82%;
    float: left;
    text-align: left;
    border-left: 1px black solid;
    padding-left: 30px;
}
.timeline-content:before {
    content: "";
    width: 8px;
    height: 8px;
    background: black;
    position: absolute;
    left: 50px;
    top: 10px;
    border-radius: 100%;
}

}

/*Works2*/
.works2page_img {
    width: 90%;
    max-width: 400px;
    display: inline-block;
    margin-top: 26px;
}

.works2page_img img {
    width: 350px;
    height: auto;
    margin: 0 auto;
}

.works2page_text {
    width: 90%;
    max-width: 560px;
    margin: 0px auto;
    margin-top: 26px;
    text-align: left;
}

.works2page_delitei {
    display: inline-block;
    margin: 26px 0px auto;
}

.works2page_delitei li {
    text-align: left;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    line-height: 28px;/*行間：ボックスの高さと同じ数値で、垂直方向の揃えが中央になる*/
}

.works2page_delitei li::before{
    content: url(./image/Vector.png);
}

/*Contact*/
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 水平方向の中央寄せ */
    align-items: center; /* 垂直方向の中央寄せ (必要に応じて) */
    width: 90%;
    max-width: 500PX;
    margin: 0 auto;
}

.foam {
    margin: 0px auto;
    margin-top: 26px;
    text-align: left;
    line-height: 30px;/*行間：ボックスの高さと同じ数値で、垂直方向の揃えが中央になる*/
}


.foam li:not(:first-child) {
    margin-top: 16px;
}

.foam li::before{
    content: url(./image/Vector.png);
}

.foam input {
    width: 300px;
    height: 28px;
}

.foam textarea {
    width: 300px;
    height: 65px;
}
