@charset "utf-8";
/* =========================
common
========================= */
/* フォントrem用の設定 */
html {
    font-size: 62.5%;
}

/* ベースの設定 */
body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: #7C7A7A;
    background-color: #FAFAFA;
    line-height: 1.6;
}

/* 画像サイズ縮小設定 */
img {
    max-width: 100%;
    height: auto;
}

/* h2 見出し */
.section__topic {
    font-family: "Maven Pro";
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1;
    align-items: end;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.section__topic::after{
    background-color: #7C7A7A;
    content: "";
    flex-grow: 1;
    height: 1px;
}

/* ボタン */
.btn {
    font-family: "Maven Pro";
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
}

/* .header pc */
@media screen and (min-width:769px) {
    /* h2 見出し */
    .section__topic {
        font-size: 6.4rem;
    }
}

/* =========================
header
========================= */
.header {
    padding: 10px 6.4% 5px;
}

.header__topic,
.nav__topic,
.hooter__topic {
    width: 25px;
    height: 40px;
}

/* .nav初期表示 */
.nav {
    background: rgba(255, 255, 255, 0.90);
    width: 100%;
    height: 100vh;
    padding: 10px 6.4% 5px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

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

.nav__list {
    margin-top: 92px;
}

.nav__item {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    margin-top: 30px;
}

.nav__item img {
    display: inline-block;
    vertical-align: 2px;
    margin-right: 10px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 18px;
    height: 11px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 6.4%;
}

/* .header pc */
@media screen and (min-width:769px) {
    .header {
    /* max-width: 1280px; */
    padding: 15px 140px 5px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        margin-top: 0;
        display: flex;
    }

    .nav__item {
        font-family: "Maven Pro";
        margin-top: 0;
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 1.3;
        margin-left: 32px;
    }

    .nav__header {
        display: none;
    }

    .nav__item img {
        display: none;
        margin-right: 0;
    }

    .nav__item:first-of-type {
        display: none;
    }

    .header__btn {
        display: none;
    }
}/* pc 769px */

/*==========================
main
==========================*/
/* article header */
.mainImg .mainImg__pc {
    display: none;
}

.mainImg__sp {
    width: 100%;
}

.mainImg {
    position: relative;
}

.mainImg__txt {
    position: absolute;
    top: 116px;
    left: 20px;
}

.mainImg__txttitle {
    font-family: "Maven Pro";
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 17px;
}

.mainImg__txtline {
    width: 1px;
    height: 28px;
    background-color: #7C7A7A;
    margin-left: 25.3%;
}

.mainImg__txtsub p {
    font-family: "Maven Pro";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 11px;
}

/* article header pc */
@media screen and (min-width:769px) {
    .mainImg .mainImg__pc {
        display: block;
    }

    .mainImg__pc {
        width: 100%;
        height: 670px;
        object-fit: cover;
    }

    .mainImg .mainImg__sp {
        display: none;
    }

    .mainImg__txt {
        position: absolute;
        top: 168px;
        left: 140px;
    }
}/* pc 769px */

/* .work */
.section--work {
    padding: 80px 4.2% 0;
}

.work__item img {
    width: 100%;
}

.work__content {
    margin-top: 10px;
    margin-bottom: 50px;
}

.work__content01 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.work__topic {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.work__name {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
}

.work__category {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
}

/* .work pc */
@media screen and (min-width:769px) {
    .section--work {
        padding: 100px 140px 0;
    }

    .work {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .work__item {
        width: 31%;
    }

    .work__content {
        margin-top: 20px;
    }
  
    .work__content01 {
        margin-top: 20px;
        margin-bottom: 50px;
    }  
}/* pc 769px */

/* .aboutme */
.section--aboutme {
    padding: 80px 4.2% 0;
}

.aboutmeimg {
    width: 100%;
}

.aboutmetxt {
    margin-top: 30px;
}

.aboutmetxt_name {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
}

.aboutmetxt_namesb {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}

.aboutmetxt_content {
    margin-top: 30px;
}

.aboutmetxt__txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1.6px;
    width: fit-content;
    margin-top: 20px;
}

.skill__title {
    font-family: "Maven Pro";
    font-size: 3.2rem;
    font-weight: 400;
    margin: 70px 42% 40px;
    text-align: center;
}

.skill__item {
    display: flex;
    width: 100%;
    height: 395px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #FFF;
    padding-top: 22px;
    margin-top: 30px;
}

.skill__list {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
}

.skill__txt {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}

.skill__img01 {
    width: 230px;
    height: 230px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin-bottom: 25px;
}

.skill__img02 {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin: 30px 0 25px;
}

.skill__img03 {
    width: 230px;
    height: 230px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin: 19px 0 29px;
}

@media screen and (min-width:769px) {
    .section--aboutme {
        padding: 100px 140px 0;
    }

    .aboutme__pc {
        max-width: 1160px;
        display: flex;
        width: auto;
        justify-content: space-between;
        align-items: center;
    }

    .aboutmeimg {
        width: 373px;
        height: 302px;
        padding-right: 31px;
    }

    .aboutmetxt {
        margin-top: 0px;
        display: flex;
        width: 756px;
        flex-direction: column;
        align-items: flex-start;
    }

    .aboutmetxt_name {
        font-size: 2.4rem;
        margin-bottom: 0;
    }

    .aboutmetxt__txt {
        line-height: 1.5;
        align-self: stretch;
    }

    .aboutmetxt__txt:first-of-type {
        margin-top: 0px;
    }

    .aboutmetxt_content {
        margin-top: 25px;
    }

    .skill__title {
        display: block;
        font-size: 3.6rem;
        margin: 100px 0 30px;
        text-align: center;
    }
    
    .skill__pc {
        display: flex;
        max-width: 1160px;
        margin: 0 auto;
        justify-content: center;
        gap: 20.5px;
    }

    .skill__item {
        max-width: 373px;
    }
}/* pc 769px */

/* .photo */
.section--photo {
    padding: 80px 4.2% 0;
}

.section__topic--photo {
    font-family: "Maven Pro";
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1;
    align-items: end;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;  
}

.section__topic--photo::after{
    background-color: #7C7A7A;
    content: "";
    flex-grow: 1;
    height: 1px;
}

.photo__sb {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 50px;
    text-align: center;
}

.photo__img {
    margin-top: 30px;
}

.photo__img img {
    width: 100%;
}

.photo__img:first-of-type {
    margin-top: 0;
}

.photo__img:last-of-type {
    margin-bottom: 50px;
}

/* .photo pc */
@media screen and (min-width:769px) {
    .section--photo {
        padding: 100px 140px 0;
    }

    .photo__pc {
        display: flex;
        padding-bottom: 50px;
        align-items: flex-end;
        gap: 28px;
    }

    .photo__pc h2 {
        margin-bottom: 0;
        padding-bottom: 0;
        align-items: flex-end;
    }

    .photo__sb {
        margin-bottom: 0;
    }

    .photo__pc::after {
    background-color: #7C7A7A;
    content: "";
    flex-grow: 1;
    height: 1px;
    }

    .photo__pcimg {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .photo__img {
        width: 31%;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .photo__img:first-of-type {
        margin-bottom: 30px;
    }

    .photo__img:last-of-type {
        margin-bottom: 30px;
    }
}/* pc 769px */



/* .access */
.section--access {
    padding: 80px 4.2% 50px;
}

.address__txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 14%;
    text-align: center;
}

.map {
    width: 100%;
    margin-top: 20px;
    height: 365px;
}

/* .access pc */
@media screen and (min-width:769px) {
    .section--access {
        padding: 100px 140px 0;
    }

    .address__txt {
        text-align: center;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.80;
        margin-bottom: 20px;
    }

    .map {
        margin-bottom: 100px;
    }
}/* pc 769px */

/*==========================
footer
==========================*/
.footer {
    padding: 42px 4.2% 9px;
    background-image: url(../images/footer_img.svg);
    background-size:  cover;
}

.menu__list {
    font-family: "Maven Pro";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 24px 7.4% 0;
    gap: 30px;
}

.copy {
    font-family: "Maven Pro";
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 81px 3.4% 9px;
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer {
        padding: 27px 140px 0;
    }

    .menu__list {
        justify-content: start;
        padding-right: 30px;
        margin-left: 0;

    }

    .copy {
        font-family: "Maven Pro";
        text-align: center;
        font-size: 1.2rem;
        font-weight: 400;
        margin: 61px 0 27px;
    }
}/* pc 769px */