@charset "UTF-8";

body {
    background-color: white;
    max-width: 90dvw;
    width: 100%;
    margin: 0 auto;
}

header {
    position: fixed;
    max-width: 90dvw;
    width: 100%;
    top: 0;
    height: 8dvh;
    align-items: baseline;
    padding: 1rem 3rem;
    z-index: 999;
    background-color: aliceblue;
}

header div {
    display: flex;
    justify-content: space-around;
}


.slider img {
    height: 100px;
    width: 100%;
    margin: 20px;
    object-fit: cover;
    /* position: absolute; */
    display: flex;
}

.slider-item img {
    opacity: 0.5;
}


main {
    /* position: relative; */
    display: block;
    margin: 0 auto;
    line-height: 2em;
}

.content_wrap {
    /* position: absolute; */
    /* padding: 2rem; */
    justify-content: center;
    min-height: 80dvh;

    width: 90dvw;
    height: auto;
    background-color: antiquewhite;
    margin: 3dvh auto;
}

.wrapper {
    overflow: hidden;
    margin: 5rem auto;

}

/* .wrapper .about {
    min-height: 80dvh;
}

.wrapper .contact {
    min-height: 80dvh;
}


 */


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.3rem;
    padding-left: 2rem;
}

h3 {
    font-size: 0.8rem;
    padding-left: 2rem;

}

p {
    font-size: 0.8rem;
    padding-left: 2rem;

}



.item .ad {
    display: flex;
    margin: 0.5rem auto;
    flex-wrap: wrap;
}

.item .order {
    display: flex;
    flex-wrap: wrap;
}

.item .funArt {
    display: flex;
    margin: 0.5rem auto;
    flex-wrap: wrap;
}

.ad_img {
    max-width: 250px;
    width: 200px;
    height: auto;
    margin: 0.8rem;
}

.or_img {
    width: 200px;

    max-width: 250px;
    height: auto;
    margin: 0.8rem;
}

.fa_img {
    width: 200px;

    max-width: 250px;
    height: auto;
    margin: 0.8rem;
}

.landing li p {
    padding: 0;

}

.flex {
    display: flex;
}


*アコーディオン全体*/ .accordion-area {
    list-style: none;
    width: 90dvw;
    margin: 0 auto;
}

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

.accordion-area section {
    border: 1px solid #ccc;
}

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

.box ul {
    display: flex;
}

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

}

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

}

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

}

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

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

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















footer {
    background-color: aliceblue;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 10dvh;
    max-width: 90dvw;

    z-index: 1000;
}

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

    body {
        display: block;
    }
}