@charset "UTF-8";

/* body設定　全体設定 */
body {

    font-family: "Zen Maru Gothic", "メイリオ", sans-serif;
    color: #6f4400;
    font-size: 18px;
    line-height: 1.8;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #f4babe 2px, transparent 2px), radial-gradient(circle, #f4babe 2px, transparent 2px);
    background-position: 0 0, 12px 24px;
    background-size: 24px 48px;

}

img {
    max-width: 100%;
    height: auto;
}

/* header全体の設定 */
header {
    background-color: #EF858C;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 5px rgb(239, 133, 140, 0.5);


}

/* ヘッダーナビとメインの横幅を揃える */
header nav,
main {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 0 5%;
}

/* ===headerの設定=== */
/*PCのみナビのハンバーガーを消す  */
.header {
    display: none;
}



/* PCでnavのリストを横に並べる */
#PCnav .nav-list {
    display: flex;
    justify-content: space-between;

}



header nav li {
    font-size: 24px;
    font-family: 'Cooper Black', 'Caprasimo', 'M PLUS Rounded 1c', sans-serif;

}


header nav li a:hover {
    color: #fff;
}

/* メイン画像の設定 */

main .imgtop {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    margin-bottom: 100px;

}

.imgtopmob {
    display: none;
}

h2 {
    font-family: 'Cooper Black', 'Caprasimo', 'M PLUS Rounded 1c', sans-serif;
    ;
    font-size: 48px;
    color: #EF858C;


}



main .PROFILE {

    display: grid;
    grid-template-columns: 4fr 6fr;
    align-items: center;
    gap: 50px;




}

main .grafic {
    width: 100%;
    margin: 0 auto 0;

}



main .PROFILE .namae {
    font-size: 26px;
    font-weight: bold;

}




main .PROFILE .namaeset .furigana {
    line-height: 0;
    padding-bottom: 1.5em;
}




main .PROFILEsoto,

.SKILLS,
.WORKS,
.CONTACT {
    background-color: #fff5f9;
    border-radius: 10px;
    margin-bottom: 40px;
    padding-block: 20px 60px;
    padding-inline: clamp(20px, 5vw, 60px);
    /* padding: 20px 60px 60px 60px; */
    box-shadow: 0 4px 1px #f7c2c5;

}

main .danraku_bottom p {
    margin-bottom: 20px;

}


main .skillichiran {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3em;


}



main .skill_icon dt {
    margin-bottom: 10px;

}

main .skill_icon {
    text-align: center;

}




main .star {
    color: #EF858C;
}

/* 作品一覧ページ */
main .WORKSmatome img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


main .WORKSmatome {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;


}


main .WORKSmatome .sakuhin {
    background-color: #EF858C;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    max-width: 500px;
    position: relative;
    overflow: hidden;


}

main .WORKSmatome .sakuhin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #C94E59, #EF858C, #F8D1D3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    transform: scale(1.1);

}

main .WORKSmatome .sakuhin>* {
    position: relative;
    z-index: 1;
}

main .WORKSmatome .sakuhin:hover::before {
    opacity: 1;
}




main .WORKSmatome .sakuhin .yohaku {
    background-color: white;
    padding: 10px 10px;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/3;
    overflow: hidden;
}


main .WORKSmatome h3 {
    color: #fff;
    font-weight: bold;
    padding-top: 20px;
}



/* form設定 */

main .CONTACT {

    margin: 0 auto 0;
    /* padding: 20px 60px 60px 60px; */
}

.name,
.mail,
.messege {
    margin-top: 5px;
    font-weight: bold;
}


input[type="text"],
[type="email"],
textarea {
    background-color: #fff;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 2px solid rgb(204 204 204);
    border-radius: 20px;
    /* border-width: 1px;
    border-style: solid;
    border-color: rgb(204 204 204); */
    border-image: initial;
    padding: 4px 8px;

}

textarea {
    height: 148px;
    margin-bottom: 30px;
}

/* ボタンをセンターに並べる */
.center {
    text-align: center;
}

/* 全てのボタンのデザイン設定 */

.btn {
    background-color: #EF858C;
    border: 2px solid white;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 20px;
    color: white;
    margin-top: 50px;

    display: inline-block;
    text-align: center;
    transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
}

.btn:hover {
    background-color: white;
    border: 2px dashed #EF858C;
    color: #EF858C;
    transform: scale(1.1);
}

input[type="submit"] {
    background-color: #EF858C;
    border: 2px solid white;
    padding: 20px 40px;
    border-radius: 20px;
    color: white;
}






footer {
    margin-top: 20px;
    background-color: #EF858C;
    padding: 10px;
    color: #fff;
    text-align: center;
}




/* thanksページ設定*/
.thanks main {
    text-align: center;
}


.thanks main img {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.thanks h2 {
    font-size: clamp(24px, 5vw, 48px);

}

.thanks .thanks_wrapper {
    width: fit-content;
    margin: 10px auto 10px;
    background-color: #fff5f9;
    border-radius: 20px;

    padding: 20px 60px 60px 60px;
    box-shadow: 0 4px 1px #f7c2c5;

}

/* worksページ設定 */
.works_page h1 {
    font-weight: bold;
    margin-bottom: 40px;
    font-size: clamp(22px, 5vw, 36px);


}

.works_page img {
    margin-top: 20px;
    border-radius: 20px;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 4px 4px #f7c2c5;


}

.imgtop_wrapper {
    text-align: center;
    margin-top: 80px;
    border-radius: 20px;
    max-width: 100%;
    margin: 100px 0 60px;


}

.btn_right {
    text-align: right;

}

.sakuhin {
    background-color: #fff5f9;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px 60px 60px 60px;
    box-shadow: 0 4px 1px #f7c2c5;

}

/* .sakuhin p,.sakuhin dd, .sakuhin li{
        margin-bottom: 15px;
    } */


.btn_link {
    background-color: #EF858C;
    border: 2px solid white;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 20px;
    color: white;
    margin-top: 10px;
    margin-bottom: 20px;

    display: inline-block;
    text-align: center;
    transition: .3s cubic-bezier(0.5, 1, 0.89, 1);

}


.btn_link:hover {
    background-color: white;
    border: 2px dashed #EF858C;
    color: #EF858C;
    transform: scale(1.1);
}




.sakuhin h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sakuhin dl {
    display: flex;
    justify-content: start;
    gap: 5px;
}

.sakuhin h3 {
    font-size: 18px;
    font-weight: bold;
}

.sakuhin div {
    margin-bottom: 20px;
}

.sakuhin .pallet {
    background-color: #fff;
    border: 2px solid #6f4400;
    border-radius: 20px;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 20px;



}

.sakuhin .pallet dl {
    display: block;
    text-align: center;
}

.sakuhin .pallet dl dt {
    margin: auto;
}


.iro_1 {
    width: 50px;
    height: 50px;
    background-color: #efe9da;
    border-radius: 30px;
    margin: auto 0;
}

.iro_2 {
    width: 50px;
    height: 50px;
    background-color: #6d4c41;
    border-radius: 30px;
}

.iro_3 {
    width: 50px;
    height: 50px;
    background-color: #bfcbb3;
    border-radius: 30px;
}

.iro_4 {
    width: 50px;
    height: 50px;
    background-color: #315943;
    border-radius: 30px;
}

/* まめ吉バナーのパレット設定 */
.mamekichi .sakuhin .pallet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}


.mamekichi .iro_1 {
    background-color: #ebe4d4;

}

.mamekichi .iro_2 {
    background-color: #9c4b39;


}

.mamekichi .iro_3 {
    background-color: #bfa382;


}

.mamekichi .iro_4 {
    background-color: #a24f3d;

}



.mamekichi .iro_5 {
    background-color: #915909;
    width: 50px;
    height: 50px;
    border-radius: 30px;

}

.mamekichi .iro_6 {
    background-color: #fdf6ec;
    width: 50px;
    height: 50px;
    border-radius: 30px;

}


/* 結婚式ウェルカムボードページ設定 */
.wedding .sakuhin .pallet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.wedding img {
    max-width: 65%;

}

.wedding .iro_1 {
    background-color: #fee9f5;

}

.wedding .iro_2 {
    background-color: #feeced;


}

.wedding .iro_3 {
    background-color: #c4a9a9;

}



/* ココナラサービス画像設定 */
.kokonara .imgtop_wrapper {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;


}


.kokonara .iro_1 {
    background-color: #ce0090;

}

.kokonara .iro_2 {
    background-color: #222222;


}

.kokonara .iro_3 {
    background-color: #fefff8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.kokonara .iro_4 {
    background-color: #ffe047;

}

/* セミナーページ設定 */
.seminar img {
    max-width: 65%;
}

.seminar .iro_1 {
    background-color: #ffde59;

}

.seminar .iro_2 {
    background-color: #222222;


}

.seminar .iro_3 {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.seminar .iro_4 {
    background-color: #47de7a;

}

/* すず漢方堂パレット */
.kanpoudou .sakuhin .pallet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}


.kanpoudou .iro_1 {
    background-color: #8c6a4f;

}

.kanpoudou .iro_2 {
    background-color: #a3b18a;


}

.kanpoudou .iro_3 {
    background-color: #f5e1da;


}

.kanpoudou .iro_4 {
    background-color: #ddbea9;

}



.kanpoudou .iro_5 {
    background-color: #5a4a42;
    width: 50px;
    height: 50px;
    border-radius: 30px;

}

/* 猫カフェパレット */

.neko .sakuhin .pallet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}


.neko .iro_1 {
    background-color: #FAF7F2;

}

.neko .iro_2 {
    background-color: #7BA9C0;


}

.neko .iro_3 {
    background-color: #FFB5C0;


}

.neko .iro_4 {
    background-color: #EFE5A6;

}



.neko .iro_5 {
    background-color: #5C5C5C;
    width: 50px;
    height: 50px;
    border-radius: 30px;

}

/* ポートフォリオパレット */

.portfolio .iro_1 {
    background-color: #EF858C;

}

.portfolio .iro_2 {
    background-color: #FFF5F9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.portfolio .iro_3 {
    background-color: #6F4400;


}

.portfolio .iro_4 {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

/* ロゴパレット */

.rogo img {
    width: 80%;
}

.rogo .iro_1 {
    background-color: #F3DADE;

}

.rogo .iro_2 {
    background-color: #EEC6D1;


}

.rogo .iro_3 {
    background-color: #D4A4AD;


}

.rogo .iro_4 {
    background-color: #AF7081;

}



.rogo .iro_5 {
    background-color: #F6F4F0;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.rogo .iro_6 {
    background-color: #2A3D4F;
    width: 50px;
    height: 50px;
    border-radius: 30px;

}


/* 名刺パレット+画像設定 */

.meishi img {
    max-width: 50%;

}



.meishi .iro_1 {
    background-color: #746961;

}


.meishi .iro_2 {
    background-color: #AF7081;

}

.meishi .iro_3 {
    background-color: #CEA1AA;
}


.meishi .iro_4 {
    background-color: #F6F4F0;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

/* グループワークカラーパレット */
.groupwork .iro_1 {
    background-color: #F8F4E6;

}


.groupwork .iro_2 {
    background-color: #5A7C6B;

}

.groupwork .iro_3 {
    background-color: #3F342F;
}


.groupwork .iro_4 {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}



@media (max-width:768px) {


    header {
        background-color: #EF858C;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }


    header nav {
        padding: 0 20px;
    }

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

    #PCnav {
        display: none;
    }

    .header {
        display: block;

    }

    /* overlay-styles.css */
    .hamburger-overlay {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1000;
        width: 48px;
        height: 48px;
        border: none;
        background-color: rgba(239, 133, 140, 0.95);
        ;
        border-radius: 100px;
        cursor: pointer;
    }

    .hamburger-overlay__line {
        position: absolute;
        left: 11px;
        width: 26px;
        height: 2px;
        background-color: #6f4400;
        transition: all .6s;
    }

    .hamburger-overlay__line:nth-of-type(1) {
        top: 14px;
    }

    .hamburger-overlay__line:nth-of-type(2) {
        top: 23px;
    }

    .hamburger-overlay__line:nth-of-type(3) {
        top: 32px;
    }

    .hamburger-overlay.active .hamburger-overlay__line {
        background-color: #fff;
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(239, 133, 140, 0.95);
        visibility: hidden;
        opacity: 0;
        transition: all .6s;
        z-index: 900;


    }

    .nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .nav-overlay__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }

    .nav-overlay__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-overlay__item {
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s;
    }

    .nav-overlay.active .nav-overlay__item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-overlay__item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-overlay.active .nav-overlay__item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-overlay.active .nav-overlay__item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-overlay.active .nav-overlay__item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-overlay__link {
        display: inline-block;
        padding: 20px;
        color: #fff;
        font-size: 40px;
        text-decoration: none;
        transition: color .3s;
    }

    .nav-overlay__link:hover {
        color: #6f4400;
    }



    main {
        max-width: 720px;
        margin: 0 auto 0;
    }

    .top .imgtop {
        display: none;


    }

    .imgtopmob {
        display: block;
        margin-top: 20px;
        margin-bottom: 100px;
        border-radius: 10px;
    }

    main .PROFILE {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;

    }

    main .PROFILE img {
        max-width: 300px;
    }



    main .WORKSmatome {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .thanks .imgtop {
        margin-top: 50px;
        margin-bottom: 50px;
    }


    /* 作品ページのdlデザイン変更 */
    .sakuhin .sumaho_narabi dl {
        display: block !important;

    }


    .sakuhin dl {
        display: block;
    }

    .sakuhin p,.sakuhin dd, .sakuhin li{
        margin-bottom: 15px;
    }

    /* 作品パレットの並び変更 */
    .sakuhin .pallet {
        grid-template-columns: repeat(2, 1fr);
    }


    /* ココナラサービス紹介の画像並び変更 */
    .kokonara .imgtop_wrapper {
        display: block;
        padding: 0 5px;
        margin-bottom: 0;
    }

    /* ウェディングページの写真％変更 */
    .wedding h1 img {
        max-width: 100%;

    }

    .skill_icon img {
        max-width: 80%;

    }

    main .imgtop {
        /* max-width: 120%; */


    }

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

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



}



@media(max-width:375px) {

    body {
        font-size: 16px;
        line-height: 1.8;
    }

    header nav,
    main {
        padding: 0 10px;
    }


    main .PROFILEsoto,
    .SKILLS,
    .WORKS,
    .CONTACT {
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;




    }
}