@charset "UTF-8";
/* 
* {
    outline: 1px solid red;
} */

body {
    transition: background-color 1s ease;
}

html {
    scroll-behavior: smooth;
}


.menu {
    /* 初期状態では非表示 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu.panelactive {
    position: fixed;
    z-index: 9999;
    /* ハンバーガーボタンより低く */
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

.circle-bg {
    position: fixed;
    z-index: 9998;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #EEEEEE;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: 25px;
    top: 25px;
    transition: transform 0.6s ease;
    /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}

.menu ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    list-style: none;
    padding: 0;
    margin: 0;
}

/*背景が出現後にナビゲーションを表示*/
.menu.panelactive ul {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
.menu.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;

}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*リストのレイアウト設定*/
.menu li {
    text-align: center;
    list-style: none;
    margin: 20px 0;
}

/*========= ボタンのためのCSS ===============*/
#menu-toggle {
    display: none;
    top: 10px;
    right: 10px;
    z-index: 10001;
    /* より高いz-indexに設定 */
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #D9D9D9;
    border: none;
    /* ボタンとして扱う場合 */
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    /* クリックイベントを確実に受け取る */
}


/*×に変化*/
#menu-toggle span {
    display: inline-block;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 25px;
}

#menu-toggle span:nth-of-type(1) {
    top: 15px;
}

#menu-toggle span:nth-of-type(2) {
    top: 23px;
}

#menu-toggle span:nth-of-type(3) {
    top: 31px;
}

/* アクティブ状態 */
#menu-toggle.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(45deg);
    width: 30%;
}

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

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

.sub-menu {
    position: absolute;
    z-index: 2;
    top: 3rem;
    padding: 0;
    list-style: none;
    background: #ffffff;
    font-size: 1rem;
}

.sub-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #000000;
}

.sub-menu a:hover {
    background-color: #F95890;
}

.pc-menu .sub-menu {
    transition: scale .4s;
    transform-origin: center top;
    scale: 1 0;
}

.pc-menu li:has(> .sub-menu):hover .sub-menu {
    scale: 1;
}


h1 {
    font-family: "Jacques Francois", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 5vw, 64px);
    /* font-size: 64px; */
    margin-left: 5%;
    margin-top: 6%;
}

.mainP {
    font-family: "Jacques Francois", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 5vw, 64px);
    margin-left: 25%;
    margin-top: 0;
}

.scrollbar_05 {
    position: absolute;
    left: 16%;
    top: 0;
    transform: translateX(-50%);
    bottom: 1px;
}

.scrollbar_05::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 1px;
    min-height: 305px;
    background: #fff;
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}



.mainvisual-flex {
    display: flex;
    margin-left: 15%;
}

.mainvisual-text {
    margin-top: -80%;
    margin-left: 26%;
    font-size: 25px;
    width: 348px;

}

.clouditem {
    display: block;
    position: absolute;
    left: 10%;
    top: 49%;
    animation: float 4s ease-in-out infinite;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(10%);
    }
}



@keyframes liner {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}


.mainvisual-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    height: 800px;
}


.mainvisual-wrapper .mainpic {
    position: absolute;
    right: 0;
    top: 30px;
    width: 60%;
    margin-left: auto;
    margin-right: 0;
    display: block;
    height: auto;

}


.maincontainer {
    max-width: 1700px;
    width: 90%;
    background-color: #FDF6C6;
    margin: 0 auto;
    height: auto;
    border-radius: 108px;
    text-align: center;
}


.about-container {
    display: flex;
    padding-top: 3%;
    justify-content: center;
}

.about-container img {
    width: 30%;
    height: 30%;
}

#ABOUT {
    margin-top: 8%;
    padding-top: 3%;
}

.maintitle {
    font-size: 48px;
    border: #FFA50A 3px solid;
    width: 40%;
    margin: 4% auto;
    padding: 1%;

}

.about-text h3 {
    font-size: clamp(25px, 2vw + 20px, 43px);
}

.marker {
    background: linear-gradient(transparent 50%, #F95890 50%);
}

.text-flex {
    font-size: clamp(25px, 1.5vw + 20px, 32px);
    margin-top: 5%;
}

.text-container {
    margin-top: 5%;
}

.text-containerbox {
    --border-color: black;
    margin: 3% 6% 2em;
    padding: 2em;
    position: relative;
}

.text-containerbox::before,
.text-containerbox::after {
    content: '';
    width: 20px;
    height: 30px;
    position: absolute;
}

.text-containerbox::before {
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    top: 0;
    left: 0;
}

.text-containerbox::after {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    bottom: 0;
    right: 0;
}


.text-containerbox p {
    margin: 0;
    font-size: 20px;
    text-align: left;
}

#ABOUT strong {
    font-size: clamp(16px, 1rem + 2vw, 30px);
    color: #FF4040;

}

.holiday {
    position: relative;
    margin: 5% 5% 2em;
    background-color: #FFE9EB;
    border-radius: 42px;
}

/* 休日スライダー */
.holiday-slider {
    padding: 2.5em 2em 2em;
    position: relative;
}

.holiday-slide-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin: 10px;
    border: 2px dashed #FFC4D6;
}

.holiday-slide-item h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    color: #333;
    line-height: 1.4;
}

.holiday-slide-item img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 休日スライダーの矢印カスタマイズ */
.holiday-slider .slick-prev,
.holiday-slider .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
}

.holiday-slider .slick-prev {
    left: -50px;
}

.holiday-slider .slick-next {
    right: -50px;
}

.holiday-slider .slick-prev:before,
.holiday-slider .slick-next:before {
    color: white;
    font-size: 20px;
}

/* 休日スライダーのドット */
.holiday-slider .slick-dots {
    display: none;
    position: static;
}

.holiday-slider .slick-dots li button:before {
    color: #FF69B4;
    font-size: 12px;
}

.holiday-slider .slick-dots li.slick-active button:before {
    color: #FF1493;
}


.holiday-title .holiday-maintaitle {
    font-size: 25px;
}

.holiday .holiday-title {
    background-image: repeating-linear-gradient(-45deg, #F6EEEC 0, #F6EEEC 3px, #fafafa 3px, #fafafa 13px);
    /*ストライプ*/
    transform: rotate(-2deg);
    /* テープの傾き */
    box-shadow: 0 1px 2px rgb(0 0 0 / .1);
    /*テープ影*/
    padding: .5em 1em;
    /* タイトルの余白 */
    line-height: 1;
    position: absolute;
    /* 親要素の左上に固定 */
    top: -25px;
    left: 16px;
    display: inline-block;
    /* タイトルの幅を内容に合わせる */
    font-size: 23px;
    width: auto;
    max-width: calc(100% - 2em);
    /* 左右の余白を考慮して最大幅を調整 */
    white-space: nowrap;
    /* タイトルを1行に固定 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* 省略記号（...）を表示 */
}

.holiday h3 {
    margin: 0;
    height: 60px;
    font-size: 20px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.pc-menu {
    margin-right: 0;
}

.pc-menu a:hover {
    background-color: #FFC4D6;
}

.pc-menu .main-menu {
    width: 55%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    font-size: 35px;
    z-index: 999999;
    border-radius: 0 0 0 20px;
}


.pc-menu .main-menu li {
    padding: 1%;
}


.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 1578px;
    margin: 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    background-color: #FFCB72;
    max-width: 1578px;
    border: 1px solid #ffcb72;
}

/*アコーディオンタイトル*/
.title {
    text-align: left;
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;

}

.title::before {
    top: 48%;
    right: 20px;
    transform: rotate(0deg);

}

.title::after {
    top: 48%;
    right: 20px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

#WORK {
    padding-bottom: 3%;
}



.slider {
    background-color: #FFCB72;
    border-radius: 40px;
    width: 95%;
    margin: 3% auto;
    padding-bottom: 5%;
    padding-top: 3%;
}



.slider .slide-item {
    text-align: center;
    padding: 10px;
}

.slider .slide-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.slider .slide-item .txt {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}

.slider .slide-item .txt:hover {
    background-color: #FFC4D6;
}

.slick-prev,
.slick-next {
    z-index: 2;
    width: 50px;
    height: 50px;

}

.slick-prev {
    left: -45px;

}

.slick-next {
    right: -45px;

}

.slick-dots {
    bottom: 0;
}


/* コンタクト */
#CONTACT {
    width: 100%;
    margin: 0 auto;
}

#CONTACT button {
    width: 50%;
    padding: 3%;
    margin: 3%;
    background-color: #fff;
    border-radius: 10px;
}

#CONTACT button a {
    font-size: 30px;
}

#CONTACT button:hover {
    width: 50%;
    background-color: #ffbfdf;
}


footer {
    text-align: center;
    margin: 2% 0;
}

@media screen and (max-width: 1024px) {


    .mainvisual-wrapper .mainpic {
        top: 302px;
    }

    .clouditm {
        top: 42%;
        left: 5%;
    }
}

@media screen and (max-width: 787px) {

    .pc-menu {
        display: none;
    }

    #menu-toggle {
        display: block;
        position: fixed;
        background-color: #fff;

    }

    #text-slider p {
        font-size: 16px;
    }



    .mainvisual-text {
        margin-top: -31%;
        margin-left: 19%;
        font-size: 16px;
    }

    .clouditem {
        left: 3%;
        top: 59%;
    }

    .mainvisual-wrapper {
        height: 441px;
    }

    .maintitle {
        font-size: 35px;
    }

    .mainvisual-wrapper .mainpic {
        top: 194px;
    }

    .about-container {
        display: block;
    }



    .holiday-slide-item {
        margin: 10px;
        padding: 15px;
    }

    .holiday-slide-item h3 {
        font-size: 16px;
    }

    .holiday-slide-item img {
        max-width: 180px;
        height: 120px;
    }

    .holiday-slider .slick-dots {
        display: block;
    }

    .holiday-slider .slick-prev,
    .holiday-slider .slick-next {
        width: 35px;
        height: 35px;
    }

    .holiday-slider .slick-prev {
        left: 0;
    }

    .holiday-slider .slick-next {
        right: 0;
    }

    /* === ここから追加：スライダーの強制的な1枚表示 === */

    .slider .slick-track {
        display: flex !important;
    }

    .slider .slick-slide {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        float: none !important;
    }

    /* slickが自動で設定するwidthを上書き */
    .slider .slick-slide>div {
        width: 100% !important;
    }

    .slider .slide-item {
        width: 100% !important;
        padding: 10px 20px;
    }

    .slider .slide-item img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* 矢印の位置調整 */
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .slider .slide-item .txt {
        width: 50%;
        margin: 10px auto;

    }
}

@media screen and (max-width: 480px) {
    .clouditem {
        width: 40%;
        left: 3%;
        top: 44%;
    }

    .mainvisual-wrapper .mainpic {
        top: 290px;
    }

    .scrollbar_05 {
        left: 24%;
    }

    .scrollbar_05::after {
        min-height: 156px;
    }

    h1 {
        margin-top: 80px;
    }

    .maintitle {
        font-size: 25px;
    }

}


@media screen and (max-width: 400px) {
    h1 {
        margin-top: 20%;
    }


    .mainP {
        margin-left: 50%;

    }

    .mainvisual-wrapper .mainpic {
        top: 290px;
    }

    .clouditem {
        left: 3%;
        top: 44%;
    }

    .scrollbar_05 {
        left: 24%;
    }

    .scrollbar_05::after {
        min-height: 156px;
    }


    .text-containerbox p {
        font-size: 15px;
    }

    .holiday {
        margin-top: 13%;
    }

    .holiday .holiday-title {
        font-size: 20px;
    }

    .title {
        font-size: 18px;
        padding: 3% 2% 3% 12px;
    }

    .slider .slide-item .txt {
        width: 100%;
    }

    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }

    #CONTACT {
        padding-bottom: 5%;
    }

    #WORK {
        padding-top: 0;
    }


    #CONTACT button a {
        font-size: 20px;
    }


}