@charset "UTF-8";

body {
    height: 100vh;
    width: 100%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #5D5D63;
}

/* ―――――――――――――――――――――――――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――― */
header {
    background-color: rgba(225, 209, 208, 0.3);
}

header img {
    width: 13%;
}

/* --------------------------↑header↑--------------------------------- */


/* --------------------------↓toppage↓--------------------------------- */
/* --------------------------------------------------------------------*/
.container {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}



.mainvisual img {
    width: 100%;
}

.works {
    background-color: #f8edf4;
    padding: 50px;
}


h1 {
    font-family: 'Unna', serif;
    font-size: 2.25rem;
    margin-top: 30px;
}

.big-text {
    font-size: 3rem;
    text-decoration: underline dotted #fff;
}

p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}


.website {
    margin-top: 100px;
    width: 100%;
}

.website-box {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px auto;
}

.website-box img {
    width: 100%;
}

.website-box p {
    margin-top: 20px;
}

.web-banner {
    margin-top: 100px;
    cursor: auto;
}

.banneritems img {
    width: 80%;
}


.grid {
    display: grid;
    justify-content: center;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    width: 100%;
    margin: 20px auto;

}


.others {
    margin-top: 100px;
}

.othersitems img {
    width: 80%;
}

.others p {
    margin-top: 20px;
}

.about-me {
    margin: 30px auto;
    width: 100%;
}

.about-flex {
    display: flex;
    justify-content: center;

}

.about-flex img {
    width: 100%
}

/* ---------------------------- profile--------------------------- */
/* ------------------------------------------------------------------------- */
.profile {
    display: flex;
    width: 100%;
    margin: 30px auto;
    justify-content: center;

}

.profile-l {
    width: 40%;
}

.profile img {
    margin-top: 80px;
    width: 70%;
    border-radius: 50px;
}

.text {
    text-align: left;
    line-height: 25px;
    background-color: #f8edf4;
    padding: 45px;
    margin-right: 30px;
    width: 50%;
    margin: 0 30px;
    word-break: auto-phrase;

}

.eng {
    font-family: "Quicksand", sans-serif;
}

.text h2 {
    font-family: "Zen Maru Gothic", serif;
}

.detail {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px auto;
}

.skills {
    margin-top: 150px;
}

.detail-items {
    width: 100%;
    /* margin: 0 30px; */
    text-align: center;
    justify-content: center;
}

.detail-items p {
    word-break: auto-phrase;

    margin: 20px 50px;
}

text li {
    width: 100%;
}

.career {
    display: block;
    font-size: 0.2rem;
}

.career li {
    font-size: 0.95rem;
}

.about-in {
    width: 45%;
    /* border: 1px red solid; */
    margin: 0 30px;
    padding: 55px 10px;
    text-align: justify;
    line-height: 25px;
    word-break: auto-phrase;
}

/* --------------------------------footer----------------------------------- */
/* ------------------------------------------------------------------------- */
footer {
    background-color: #dbc3ed;
    color: #727171;
    height: 50px;
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 300;
}

/* --------------------------------works----------------------------------- */
/* ------------------------------------------------------------------------- */

/* ―――――――――――――――――――――――――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――― */


/* ――――――――――――website―――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――― */

h2 {
    font-family: 'Unna', serif;
    font-size: 1.8rem;
    margin-top: 30px;
}

.announce {
    font-size: 0.8rem;
}

.area-1 {
    margin: 30px auto;
    background-color: rgba(236, 245, 250, 0.3);
    padding: 50px 0;

}

.website-detail {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    width: 100%;

}

.website-detail-box {
    margin: 0 20px;
}

.website-detail-box img {
    width: 90%;
    margin: 0 auto;
}

/* ――――――――――――banner―――――――――――――――― */
/* ―――――――――――――――――――――――――――――――――――――― */
.area-2 {
    margin: 30px auto;
    background-color: rgba(255, 244, 244, 0.3);
    padding: 50px 0;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 30px auto;
}

.gallery-list img {
    width: 60%;
    margin: 0 auto;
}

.gallery {
    width: 70%;

}



/* =========DTP========= */
.area-3 {
    margin: 30px auto;
    background-color: rgba(255, 213, 213, 0.3);
    padding: 50px 0;
}


/* ――――――――――――ハンバーガーメニュー―――――――――――――――― */

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #ebe2f1;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    color: #5D5D63;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #4b4b4b;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/* ―――――――――――――モーダル ――――――――――――――――――*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
    display: none;
    z-index: 999;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}






/* ――――――――――――――――――――――――――Lpページ―――――――――――――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */
.title-text {
    margin-top: 100px;
}


.flex-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;

}

.img-width {
    width: 50%;
    margin: 50px 30px;
}

.img-width img {
    width: 100%;
}

tr {
    width: 50%;
}

.table-detail {
    width: 70%;
    padding-left: 20px;
    text-align: left;
    line-height: 1.8;
    word-break: auto-phrase;
    margin-top: 80px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.big-bold {
    font-size: 1.5rem;
    color: #a09f9f;
    font-weight: lighter;

}



.back-page {
    display: inline-block;
    transition: all .3s ease 0s;
    text-decoration: none;
    margin-bottom: 30px;
}

.back-page:hover {
    cursor: pointer;
    color: #f8c3e8;
    background-color: rgb(94, 94, 94);
    padding: 10px 20px;
    border-radius: 50px;
}

/* ------------バナーページ--------------- */

.banner-title-text {
    margin-bottom: 20px;

}

.banner-detail {
    width: 60%;
    margin: 30px auto;
    flex-direction: column;
}

.banner-sumarry {
    line-height: 30px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.banner-sumarry th {
    width: 20%;
}


/* ---------------装飾------------――――――――――------------------装飾---------- */

/* ----------------------topfadeup---------------------------------------- */
/* ---------------------------------------------------------------------- */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}

/* -------------------------------viewmore------------------------------- */
/* -------------------------------------------------------------- */

/*矢印が右に移動する*/
.btnarrow4 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 30px;
    color: #333;
    text-decoration: none;
    outline: none;
    font-size: 1.3rem;
}

/*矢印と下線の形状*/
.btnarrow4::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -3px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before {
    left: 20%;
}

.btnarrow4:hover::after {
    right: -5%;
}

/* ―――――――――――――――ここからレスポンシブ用！！――――――――――――――――――― */
/* ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― */

@media screen and (max-width:480px) {
    /*　画面サイズが600px以下の場合ここの記述が適用される　*/

    /* ヘッダー */
    button {
        width: 40px;
        height: 40px;
        background: repeating-linear-gradient(to top, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 1)15%, rgba(0, 0, 0, 0)15%, rgba(0, 0, 0, 0)40%);
        position: fixed;
        top: 10px;
        right: 10px;
    }

    nav ul li {
        width: 200px;
    }

    nav ul {
        position: fixed;
        top: 60px;
        right: 0;
        display: none;
        flex-direction: column;
    }


    /* ―――――――――― */

    /* トップページ */

    .website-box {
        flex-direction: column;
    }

    .banneritems {
        grid-column: auto;
        grid-row: auto;
        flex-direction: column;
    }

    .banneritems img {
        height: auto;
    }

    .grid {
        grid-template-columns: repeat(1, minmax(240px, 1fr));
    }

    .about-flex {
        flex-direction: column;

    }

    .about-flex img {
        width: 80%;
        margin: 0 auto;
    }

    .profile-l {
        width: 100%;
        margin: 20px auto;
        text-align: center;
    }
    .profile-l img{

    }
    .about-in {
        width: 80%;
        margin: 0 auto;
        word-break: auto-phrase;
    }

    /* -----------------works-------------- */
    .website-detail {
        flex-direction: column;
        justify-content: center;

    }

    .website-detail-box img {
        width: 85%;
        margin: 20px auto;
    }


    .gallery-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 26px;
        margin: 30px auto;
    }


    /* -----------------lp------------------- */
    .title-text h2 {
        font-size: 1.2rem;
        width: 90%;
        margin: 0 auto;
    }

    .flex-wrapper {
        align-items: center;
        flex-direction: column;
        width: 90%;
        margin: 10px auto;
    }

    .img-width {
        width: 100%;
    }

    .table-detail {
        width: 100%;
        padding-left: 0;
        margin-top: 0;
    }

    .big-bold {
        font-size: 1.1rem;
    }

    td {
        text-align: center;
    }

    .banner-detail {
        width: 100%;
        margin: 60px auto
    }

    .banner-detail img {
        width: 80%;
    }

    .banner-sumarry {
        margin: 20px auto;
        font-size: 0.875rem;
        width: 85%;

    }

    .profile {
        flex-direction: column;
    }

    .detail {
        flex-direction: column;
        width: 85%;
        margin: 0 auto;
    }

    .title-text {
        margin-top: 50px;
    }


    /* profileページ */
    .profile {
        background-color: #f8edf4;
    }

    .profile img {
        border-radius: 200px;
    }

    .text {
        text-align: left;
        background-color: #f8edf4;
        padding: 5px;
        margin-right: 0x;
        width: 80%;
        margin: 15px 30px;

    }

    .text h2 {
        font-size: 1.5rem;
    }

    li {
        list-style-type: disc;
        border-bottom: dotted 2px rgb(81, 81, 81, 0.3);
    }

    .birth {
        font-size: 1.15rem;
        font-family: "Zen Maru Gothic", serif;
    }

    .text p {
        text-align: center;
    }

    .career-big {
        font-size: 1.3rem;
    }

    .skills p {
        margin-bottom: 20px;
    }


    .detail-items p {

        margin: 20px auto;
    }
}