html {
    scroll-behavior: smooth;
  }

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* opacityFadeIn */
.header.opacityFadeIn {
    animation: opacityFadeIn 3s ease 0s 1 normal;
}

@keyframes opacityFadeIn {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

[data-animate="fade"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 画面に入って .is-visible クラスがついた時の状態 */
[data-animate="fade"].is-visible {
    opacity: 1;
    transform: translateY(0);
}




[data-animate="left"] {
    opacity: 0;
}

/* 画面に入ってこのクラスがついたら、アニメーションを開始！ */
[data-animate="left"].is-visible {
    animation: fadeInLeft 0.7s ease 0s 1 normal forwards;
    /* forwardsで表示状態をキープ */
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* 0の位置まで戻す */
    }
}



/* --- 共通設定 --- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 画面に入った時の共通の状態（元の位置に戻る） */
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
    /* XもYも0に戻す */
}


[data-animate="right"] {
    opacity: 0;
}

/* 画面に入ってこのクラスがついたら、アニメーションを開始！ */
[data-animate="right"].is-visible {
    animation: fadeInright 0.7s ease 0s 1 normal forwards;
    /* forwardsで表示状態をキープ */
}

@keyframes fadeInright {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* 0の位置まで戻す */
    }
}

/* 右から（slide-right） */
[data-animate="slide-right"] {
    transform: translateX(40px);
    /* 右に40pxズラしておく */
}


/*ヘッダー*/

.header {
    background-image: url(images/haikei.png);
    width: 100%;
    min-height:700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 1px;
    /* 下方向にいくにつれて透明にする場合 */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    z-index: 1;
}


.name {
    color: #ffffff;
    font-size: 70px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    margin: 100px 0 0 100px;
}

.profile-site {
    color: #ffffff;
    font-size: 40px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    margin: 60px 0 0 100px;
}

.nav {
    text-decoration: none;
    display: flex;
    color: #634844;
    margin: 15px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
}

.nav:hover{
    color: #d47569;
    cursor:pointer;
}

.nav2 {
    text-decoration: none;
    display: flex;
    color: #634844;
    margin: 10px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    box-shadow:5px 5px 10px#5a423f;
    border-radius: 30px;
    background-color: #ffffff;
    padding: 4px 25px;
    font-size: 20px;
}

.nav2:hover{
    color: #d47569;
    cursor:pointer;
}

.head {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 25px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 5px 20px;

}

/*自己紹介*/
.section-profile {
    position: relative;
    z-index: 10;
}

.profile-title {
    margin-top: 0px;
    margin-bottom: 100px;
    padding-top: 100px;
    text-align: center;
    font-size: 50px;
    letter-spacing: 10px;
    color: #634844;
}

.zikoshoukai {

    /* linear-gradient(方向, 開始色, 終了色) */
    background-image: linear-gradient(to bottom, #ffffff 0%, #fff5f0 30%);
    background-size: 100% 1200px;
    background-repeat: no-repeat;
    background-color: #fff5f0;
}

.icon {
    text-align: center;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 7px rgb(184, 163, 152) solid;
    text-align: center;
}

.center {
    text-align: center;
}

.profile.text {
    text-align: center;
    margin-top: 50px;
    color: #634844;
    font-family: "Noto Serif JP", serif;
}

.first {
    margin-bottom: 30px;
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 3rem;
}

.website {
    margin-bottom: 50px;
    line-height: 3rem;
    font-size: 20px;
}

.okigaru {
    line-height: 2rem;
    font-size: 20px;
}


/*　　私の強み　　*/

.mystrength {
    margin-top: 0;
    padding-top: 300px;
    background-color: #fff5f0;
    background-image: linear-gradient(to bottom, #fff5f0 20%, rgba(255, 245, 240, 0) 100%),
    linear-gradient(to top, #faece3 0%, rgba(250, 236, 227, 0) 20%),url(images/yuuhi.png);


    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 300px;
    margin-top: -50px;
    position: relative;
    z-index: -1;
}

.strength-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 50px;
    letter-spacing: 10px;
    color: #634844;
}

.white-circle {
    background-color: #ffffff;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    /* box-shadow: X軸 Y軸 ぼかしの距離 影の広がり 色; */
    box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.subtitle1 {
    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.6rem;
    margin-bottom: 30px;
}

.strength.text {
    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.5rem;
    text-align: center;
}


.container {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.container .white-circle {
    margin-left: 120px;
    margin-right: 120px;
}

/*　　作品集　　*/

.banner {
    background-color: #faece3;
    width: 100%;
    min-height: 4200px;
    background-image: url(images/Wallpaper\ ideas.png);
    background-position: bottom;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    background-size: contain;
    margin-top: -10px;
    position: relative;
    z-index: -1;
}

.title.sakuhin {
    text-align: center;
    padding-top: 200px;
    color: #634844;
    font-size: 50px;
    letter-spacing: 10px;
}

.subtitle {
    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 25px;
    margin: 40px 0 30px;
    border-bottom: 4px #fda76e dotted;
}

.sub2title {
    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 25px;
    margin: 15px 0 20px;
    max-width: 330px;
}

.text.detile {
    text-align: left;
    margin: 5px 0 5px;
    line-height: 2.5rem;
    font-size: 16px;
    color: #634844;
    font-family: "Noto Serif JP", serif;
}

.beside {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 100px;
}

.img.fashion {
    width:500px;
    height: 500px;
    margin-top: 50px;
}


/*　野菜ジュースバナー  企業説明会 イタリアンチラシ　*/

.beside.reverse {
    flex-direction: row-reverse;
}

.img.vegetable {
    width: 500px;
    height: 500px;
    margin-top: 200px;
}

.img.company {
    width: 500px;
    height: 500px;
    margin-top: 200px;
}

.img.italian {
    width: 500px;
    height: 500px;
    margin-top: 200px;
}

.subtitle.margin {
    margin-top: 200px;
}

.subtitle.margin.company {
    letter-spacing: 3px;
}

/*　自分のスキル　*/

.section-skill {
    height: 600px;
}

.title.skill {
    margin-top: 200px;
    text-align: center;
    color: #634844;
    font-size: 50px;
    letter-spacing: 10px;
}

.boxskill ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-direction: row;
    align-items: stretch;
}

.item.skill {
    flex-direction: column;
    list-style: none;
    border: 2px #e9edf8 solid;
    text-align: center;
    padding: 50px 40px;
    margin-top: 100px;
    flex: 1;
    max-width: 325px;
    height: 500px;

    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.7rem;
}

.tu-ru {
    font-size: 25px;
    margin-bottom: 20px;
}

.img-tu-ru {
    width: 100px;
    height: 100px;
}

/* 経歴　*/

.sp-only {
    display: none;
}

.title.career {
    border-top: 2px bisque solid;
    padding-top: 150px;
    margin: 200px 0 150px 0px;
    letter-spacing: 10px;
    text-align: center;
    color: #634844;
    font-size: 50px;
    letter-spacing: 10px;
}

.container.career {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 80px;
    color: #634844;
    font-family: "Noto Serif JP", serif;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.career-date {
    font-size: 25px;
    margin-right: 100px;
}

.date-now {
    font-size: 25px;
    margin-right: 190px;
}

.career-row {
    display: flex;
    flex-direction: row;
    line-height: 2rem;
    font-size: 16px;
}

.career-now {
    display: flex;
    flex-direction: row;
    line-height: 2rem;
    margin-bottom: 200px;

}


/*　お問い合わせ　*/

.contact.form {
    background-image: url(images/orange.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 750px;
}

.title.contact {
    font-size: 47px;
    letter-spacing: 1.0rem;
    color: #634844;
    padding: 100px 0 0 120px;

}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.text.form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 80px 100px;
    margin-top: 20px;
    color: #634844;
    gap: 20px;
}


.form-group {
    font-size: 25px;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
    display: flex;
}

input {
    background-color: #ffffff;
    border: 1px #634844 solid;
    border-radius: 3px;
    padding: 20px;
    width: 550px;
    margin-bottom: 20px;
    margin-left: 20px;
    min-height: 10px;
}

textarea {
    background-color: #ffffff;
    border: 1px #634844 solid;
    border-radius: 3px;
    padding: 20px;
    width: 550px;
    min-height: 200px;
    margin-left: 20px;
}


.submit-btn{
    background-color: #634844;
    padding: 8px 60px;
    color: #e9edf8;
    font-size: 35px;
    font-family: "Noto Serif JP", serif;
    border-radius: 10px;
    margin-left: 500px;
    
    display: inline-block;
    width: 250px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #5a423f;
    box-shadow: 0px 5px 0px #5a423f;
    transition: .3s;

}

.submit-btn:hover{
    box-shadow: 5px;      
    transform: translateY(5px); /* 影の分だけ下にずらす（これでへこんで見える） */
    background-color: #622d25;
}



/* フッター*/

.footerall {
    height: 500px;
}

.footer-container {
    display: flex;
    justify-content: left;
    gap: 220px;
}

.name.footer {
    color: #634844;
    font-size: 60px;
    font-family: "Noto Serif JP", serif;
    margin-left: 250px;
    line-height: 4.5rem;
}

.profile-site.footer {
    color: #634844;
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    margin-left: 250px;
    margin-top: 5px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 230px;
    width: 200px;
    margin-top: 100px;
    margin-left: 200px;
}

.footer-text:hover{
    color: #d47569;
    cursor: pointer;
}

.footer-text {
    text-decoration: none;
    color: #634844;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    padding: 10px 40px;
}

.footer-bottom {
    color: #634844;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    margin-top: 120px;
}




/*雲の写真たち*/
.section-profile,
.article-banner,
.section-skill,
.section-career {
    position: relative;
    width: 100%;
}

.cloud {
    position: absolute;
    opacity: 0.8;
    z-index: 100;
    /* 少し透かす */
}


/*自己紹介の雲たち*/
.section-profile .cloud.cloud-1 {
    position: absolute;
    top: -180px;
    left: 0;
    z-index: 100;
    width: 600px;
}

.section-profile .cloud.cloud-2 {
    position: absolute;
    top: -180px;
    right: 0;
    z-index: 100;
    width: 600px;
}

.section-profile .cloud.cloud-3 {
    position: absolute;
    top: 200px;
    right: 400px;
    width: 200px;
}

.section-profile .cloud.cloud-4 {
    position: absolute;
    top: 400px;
    left: 300px;
    width: 250px;
}

.section-profile .cloud.cloud-5 {
    position: absolute;
    top: 600px;
    right: 300px;
    width: 250px;
}

.section-profile .cloud.cloud-6 {
    position: absolute;
    top: 1100px;
    left: 200px;
    width: 300px;
}

.section-profile .cloud.cloud-7 {
    position: absolute;
    top: 1200px;
    right: 200px;
    width: 350px;
}


/*作品集の雲たち*/
.cloud.cloud-8.no-opacity {
    position: absolute;
    top: 3400px;
    right: -100px;
    width: 600px;
    opacity: 1.0;
    z-index: 1000;
}

.cloud.cloud-9.no-opacity {
    position: absolute;
    top: 3400px;
    left: -200px;
    width: 700px;
    opacity: 1.0;
    z-index: 1000;
}

.article-banner .cloud.cloud-10 {
    top: 1000px;
    left: 200px;
    width: 230px;
}

.article-banner .cloud.cloud-11 {
    top: 1100px;
    right: 200px;
    width: 250px;
}

.article-banner .cloud.cloud-12 {
    top: 1900px;
    left: 200px;
    width: 300px;
}

.article-banner .cloud.cloud-13 {
    top: 2700px;
    right: 200px;
    width: 240px;
}

/*自分のスキルの雲たち*/
.section-skill .cloud.cloud-14 {
    top: -20px;
    right: 20px;
    width: 200px;
}

.section-skill .cloud.cloud-15 {
    top: -20px;
    right: 300px;
    width: 200px;
}

.section-skill .cloud.cloud-16 {
    top: -20px;
    left: 20px;
    width: 200px;
}

.section-skill .cloud.cloud-17 {
    top: -20px;
    left: 300px;
    width: 200px;
}

/*自分の経歴の雲たち*/

.section-career .cloud.cloud-18 {
    top: 120px;
    left: 300px;
    width: 200px;
}

.section-career .cloud.cloud-19 {
    top: 120px;
    left: 20px;
    width: 200px;
}

.section-career .cloud.cloud-20 {
    top: 120px;
    right: 20px;
    width: 200px;
}

.section-career .cloud.cloud-21 {
    top: 120px;
    right: 300px;
    width: 200px;
}

.sp-only {
    display: none;
    /* これでPCからは消えます */
}


@media(max-width:600px) {

    .pc-only {
        display: none;
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }


    .section-profile,
    .article-banner,
    .section-skill,
    .section-career .mystrength {
        position: relative;
        width: 100%;
        overflow: hidden;
    }


    .name {
        margin-top: 60px;
        margin-left: 20px;
        font-size: 50px;
    }

    .profile-site {
        margin-top: 10px;
        margin-left: 20px;
        font-size: 30px;
    }

    .header {
        background-image: url(images/haikei.png);
        width: 100%;
        min-height: 800px;
        background-size: cover;
        background-position: 60% center;
    }

    /* --- 1. メニュー本体（最初は隠す） --- */
    .header-nav {
        position: fixed;
        right: -100%;
        /* 画面の右外に隠す */
        top: 0;
        width: 100%;
        /* 画面いっぱい */
        height: 100vh;
        background-color: #ffebe8;
        /* メニューの背景色 */
        z-index: 998;
        transition: all 0.6s;
        display: block;
        border-radius: 10px;
        /* display: noneを解除 */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-nav:hover{
            color: #d47569;
            cursor:pointer; 
    }

    /* openクラスがついた時だけ画面に出す */
    .header-nav.open {
        right: 0;
    }

    /* 中のリストを縦並びにする */
    .head {
        display: flex;
        /* display: noneを強制解除 */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: static;
        margin: 0;
        

    }

    /* --- 2. ハンバーガーボタン --- */
    .burger-btn {
        position: fixed;
        /* 画面に固定 */
        top: 20px;
        right: 20px;
        width: 30px;
        height: 24px;
        z-index: 999;
        /* メニューより上に */
        cursor: pointer;
        display: block;
        /* 確実に出す */
    }

    .burger-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ffffff;

        /* 線の色 */
        transition: all 0.4s;
    }

    .burger-btn.scrolled span {
        background-color: #5a423f; /* 濃い茶色など、背景で目立つ色 */
      }

    /* 三本線の初期位置 */
    .burger-btn span:nth-child(1) {
        top: 0;
    }

    .burger-btn span:nth-child(2) {
        top: 11px;
    }

    .burger-btn span:nth-child(3) {
        bottom: 0;
    }

    /* --- 3. openクラスがついた時の「×」の形 --- */
    .burger-btn.open span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .burger-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .burger-btn.open span{
        background-color: #5a423f;
    }


    /*自己紹介SP*/

    .section-profile {
        position: relative;
        z-index: 100;
        width: 100%;
    }

    .zikoshoukai {
        height: 1500px;
    }


    .profile-title {
        text-align: center;
        font-size: 32px;
        letter-spacing: 10px;
        padding-top: 120px;
    }

    .icon {
        margin-top: -20px;
    }

    .center {
        text-align: center;
    }

    .first {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 3rem;
    }

    .website {
        margin-top: 50px;
        margin-bottom: 50px;
        line-height: 2.3rem;
        font-size: 16px;
    }

    .okigaru {
        line-height: 1.6rem;
        font-size: 16px;
    }

    .section-profile .cloud.cloud-1 {
        position: absolute;
        top: 0px;
        left: -30px;
        width: 180px;
        z-index: 100;
    }

    .section-profile .cloud.cloud-2 {
        position: absolute;
        top: 0px;
        right: -20px;
        width: 150px;
        z-index: 100;
    }

    .section-profile .cloud.cloud-3 {
        position: absolute;
        top: 180px;
        right: 20px;
        width: 110px;
    }

    .section-profile .cloud.cloud-4 {
        position: absolute;
        top: 230px;
        left: 20px;
        width: 100px;
    }

    .section-profile .cloud.cloud-5 {
        position: absolute;
        top: 420px;
        right: 20px;
        width: 80px;
    }

    .section-profile .cloud.cloud-6 {
        position: absolute;
        top: 450px;
        left: 10px;
        width: 120px;
    }

    .section-profile .cloud.cloud-7 {
        position: absolute;
        top: 1000px;
        left: -10px;
        width: 120px;
    }

    .icon {
        width: 200px;
        height: auto;
    }

    .profile.text {
        font-size: 14px;
        line-height: 4rem;
        color: #634844;
        font-family: "Noto Serif JP", serif;
    }

    .first {
        line-height: 2rem;
    }

    .website {
        margin-top: 40px;
        margin-bottom: 40px;
    }


    .sp-only {
        display: block;
        /* スマホの時だけ復活させる */
        position: absolute;
        /* 位置を自由に動かせるようにする */
        z-index: -1;
    }

    .section-profile,
    .article-banner,
    .section-skill,
    .section-career {
        position: relative;
        width: 100%;
    }

    .section-profile {
        z-index: 100;
    }


    .sp-cloud1 {
        position: absolute;
        top: 1050px;
        right: 0px;
        display: block;
        z-index: 3;
        width: 150px;
    }

    .sp-cloud2 {
        position: absolute;
        top: 1150px;
        left: -10px;
        display: block;
        z-index: 1;
        width: 200px;
    }


    .sp-cloud3 {
        position: absolute;
        top: 1300px;
        right: -30px;
        display: block;
        z-index: 1;
        width: 250px;
    }

    .sp-cloud4 {
        position: absolute;
        top: 1500px;
        left: -20px;
        display: block;
        z-index: 1;
        width: 300px;
    }

    /*　私の強みSP　*/

    .mystrength {
        background-image: linear-gradient(to bottom, #fff5f0 20%, rgba(255, 245, 240, 0) 100%),
        linear-gradient(to top, #faece3 0%, rgba(250, 236, 227, 0)20%),url(images/yuuhi.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
        margin-top: -240px;
    }

    .strength-title {
        font-size: 32px;
        letter-spacing: 10px;
    }

    .white-circle {
        width: 350px;
        height: 350px;
        margin-bottom: 80px;
    }

    .subtitle1 {
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
    }

    .strength.text {
        line-height: 1.6rem;
        font-size: 14px;
        line-height: 1.6rem;
        margin-top: 5px;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }



    /*　作品集SP　*/


    .article-banner {
        position: relative;
        height: auto;
        width: 100%;
        z-index: 2;
    }

    .cloud.cloud-8.no-opacity {
        position: absolute;
        margin-top: 670px;
        right: 0px;
        display: block;
        width: 70px;
        z-index: 100;

    }

    .cloud.cloud-9.no-opacity{
        position: absolute;
        margin-top: 670px;
        left: 0px;
        display: block;
        width: 80px;
        z-index: 100;
    }


    .banner {
        background-image: url(images/Wallpaper\ ideas.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        -webkit-mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
        z-index: 2;
        margin-top: -1px;
    }


    .title.sakuhin {
        padding-top: 0px;
        padding-bottom: 50px;
        font-size: 32px;
        letter-spacing: 10px;
    }

    .article-banner .cloud.cloud-8 {
        display: none;
    }

    .article-banner .cloud.cloud-9 {
        display: none;
    }

    .article-banner .cloud.cloud-10 {
        display: none;
    }

    .article-banner .cloud.cloud-11 {
        display: none;
    }

    .article-banner .cloud.cloud-12 {
        display: none;
    }

    .article-banner .cloud.cloud-13 {
        display: none;
    }


    /*ファッションバナー*/

    .img.fashion {
        width: 360px;
        height: 360px;
    }

    .subtitle {
        font-size: 18px;
        text-align: center;
        border-width: 3px;
    }

    .sub2title {
        font-size: 18px;
        margin-bottom: -1px;
    }

    .text.detile {
        text-align: left;
        margin-top: 10px;
        font-size: 15px;
        line-height: 2rem;
    }

    .beside {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 360px;
        margin: 0 auto;

    }



    /*野菜ジュースバナー*/
    .beside.reverse {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .img.vegetable {
        width: 360px;
        height: 360px;
        margin-top: 100px;
    }

    .subtitle.margin {
        margin-top: 20px;
    }


    /*企業説明会チラシ*/
    .img.company {
        width: 360px;
        height: 360px;
        margin-top: 100px;
    }

    /*イタリアンチラシ*/
    .img.italian {
        width: 360px;
        height: 360px;
        margin-top: 100px;
    }

    .beside.reverse {
        margin-bottom: 100px;
    }


    /*スキル*/

    .section-skill .cloud.cloud-14 {
        position: absolute;
        top: 130px;
        right: 10px;
        width: 70px;
    }

    .section-skill .cloud.cloud-15 {
        position: absolute;
        top: 130px;
        left: 10px;
        width: 70px;
    }

    .section-skill .cloud.cloud-16 {
        display: none;
    }

    .section-skill .cloud.cloud-17 {
        display: none;
    }


    .section-skill {
        height: 2400px;
        padding-bottom: 50px;
    }

    .tu-ru {
        font-size: 25px;
    }

    .title.skill {
        padding-top: 0px;
        text-align: center;
        font-size: 32px;
        letter-spacing: 2px;
        color: #634844;
        margin-top: 120px;
    }

    .boxskill ul {
        display: flex;
        gap: 0px;
        flex-direction: column;
        align-items: center;
    }

    .item.skill {
        flex-direction: column;
        list-style: none;
        border: 2px #e9edf8 solid;
        text-align: center;
        padding: 30px 30px;
        width: 90%;
        max-width: 350px;
        height: 420px;
        flex: none;
        font-size: 15px;
        line-height: 2rem;
        margin-bottom: 10px;
    }

    /* 経歴 */


    .section-career {
        height: auto;
        margin-top: -120px;
    }

    .title.career {
        border-top: 2px bisque solid;
        padding-top: 50px;
        letter-spacing: 10px;
        text-align: center;
        color: #634844;
        font-size: 32px;
        margin-bottom: 80px;
    }

    .container.career {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 80px;
        color: #634844;
        font-family: "Noto Serif JP", serif;
        justify-content: center;
        max-width: 100%;
    }

    .career-date {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .date-now {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .career-row {
        display: flex;
        flex-direction: column;
        line-height: 2rem;
        font-size: 16px;
    }

    .career-now {
        display: flex;
        flex-direction: column;
        line-height: 2rem;
        font-size: 16px;
        margin-bottom: 100px;
    }


    .section-career .cloud.cloud-18 {
        display: none;
    }

    .section-career .cloud.cloud-19 {
        position: absolute;
        top: 70px;
        left: auto;
        right: 10px;
        width: 70px;
    }

    .section-career .cloud.cloud-20 {
        position: absolute;
        top: 70px;
        left: 10px;
        width: 70px;
    }

    .section-career .cloud.cloud-21 {
        display: none;
    }

    .section-career .cloud.sp-cloud22 {
        position: absolute;
        top: 950px;
        left: 10px;
        width: 70px;
    }

    .section-career .cloud.sp-cloud23 {
        position: absolute;
        top: 950px;
        left: 160px;
        width: 70px;
    }

    .section-career .cloud.sp-cloud24 {
        position: absolute;
        top: 950px;
        right: 10px;
        width: 70px;
    }

    /*お問い合わせ*/
    .contact.form {
        background-image: url(images/orange.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        height: 600px;
        width: 100%;
    }

    .title.contact {
        font-size: 32px;
        letter-spacing: 5px;
        color: #634844;
        padding-top: 30px;
        padding-left: 0;
        text-align: center;

    }

    .flex-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .text.form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        margin-top: 20px;
        color: #634844;
        gap: 5px;
        margin: 0 auto;
    }


    .form-group {
        display: flex;
        flex-direction: column;
        font-size: 16px;
        font-weight: 400;
        font-family: "Noto Serif JP", serif;
        display: flex;
    }

    input {
        background-color: #ffffff;
        border: 1px #634844 solid;
        border-radius: 3px;
        padding: 10px;
        width: 300px;
        margin-bottom: 10px;
        margin: 0 auto;
    }

    textarea {
        background-color: #ffffff;
        border: 1px #634844 solid;
        border-radius: 5px;
        padding: 20px;
        margin-left: 0px;
        margin: 0 auto;
        width: 300px;
    }


    .submit-btn{
        background-color: #634844;
        padding: 6px 20px;
        color: #e9edf8;
        font-size: 25px;
        font-family: "Noto Serif JP", serif;
        border-radius: 10px;
        margin-left: 140px;
        margin-top: 15px;
        
        display: inline-block;
        width: 160px;
        line-height: 50px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        background-color: #5a423f;
        box-shadow: 0px 5px 0px #5a423f;
        transition: .3s;
    
    }
    
    .submit-btn:hover{
        box-shadow: 5px;      
        transform: translateY(5px); /* 影の分だけ下にずらす（これでへこんで見える） */
        background-color: #622d25;
    }
    
    


    /*フッター*/
    .footerall {
        height: auto;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .name.footer {
        color: #634844;
        font-size: 40px;
        font-family: "Noto Serif JP", serif;
        padding-top: 4px;
        line-height: 3.5rem;
        margin-left: 20%;
    }

    .profile-site.footer {
        color: #634844;
        font-size: 20px;
        font-family: "Noto Serif JP", serif;
        padding-top: 5px;
        margin-left: 0;
        margin-left: 20%;

    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 200px;
        width: 200px;
        padding-top: 0px;
        margin-left: 15%;
        margin-top: 40px;
    }




    .footer-text {
        text-decoration: none;
        color: #634844;
        font-family: "Noto Serif JP", serif;
        font-size: 16px;
        padding: 10px 20px;
    }

    .footer-text:hover{
        color: #d47569;
        cursor:pointer; 
    }

    .footer-bottom {
        color: #634844;
        font-family: "Noto Serif JP", serif;
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }


}