@charset "utf-8";
/* common */
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}

body { 
    color: #333; 
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
}

section h2 {
    font-size: 2.3rem;
}

a:hover {
    opacity: 0.5;
}

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

.message_txt {
    font-family: "Zen Old Mincho", sans-serif;
    font-size: 2.0rem;
    line-height: 170%;
}

.message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.message_img_worry {
    width: 75px;
    height: auto;
}

.message_img_plan {
    width: 75px;
    height: auto;
}

.message_img_top {
    width: 100px;
    height: auto;
    margin: 0 40px 0 0;
}

.message_line {
    flex-direction: column-reverse;
}

.section_topic {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 140%;
}

.section_topic::after {
    display: block;
    content: "";
    width: 50px;
    height: 2px;
    background: #4781D1;
    margin: 10px auto 5px;

}

.section_subtopic {
    font-family: Quicksand;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.section_description {
    padding: 0 14px;
    text-align: left;
    margin-bottom: 30px;
}

#point::before,#menu::before,#voice::before,#question::before,#access::before {
    content: "";
    display: block;
    height: 60px; 
    margin-top: -40px;
    visibility: hidden;
}

/* レスポンシブ */
.sp__design {
    max-width: 390px;
    margin: 0 auto;
    box-shadow: 0 4px 64px rgba(25, 25, 25, .15);
    overflow: hidden;
}


/* button */
.btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1300;
}

.btn_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    width: 375px;
    height: 50px;
    gap: 5px;
}



.btn_item:nth-child(1) {
    width: 33%;
    height: 100%;
    background: linear-gradient(90deg, #F3A183 0%, #EC6F66 100%);
    border-radius: 20px 20px 0 0;

}

.btn_item:nth-child(2) {
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);
    border-radius: 20px 20px 0 0;
}

.btn_item:nth-child(3) {
    width: 33%;
    height: 100%;
    background: linear-gradient(90deg, #FFE17D 0%, #FFB84C 100%);
    border-radius: 20px 20px 0 0;
}

.btn_item a {
    color: #Fff;
    text-decoration: none;
    display: flex; /* ← ここ！ */
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央 */
    width: 100%;
    height: 100%;
}

.pc__design {
    display: none;
}



/* header */
.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    max-width: 390px;
    z-index: 1200;
    background-color: #fff;
}
.header h1 {
    position: absolute;
    left: 10px;
}

.header h1 a {
    font-size: 2.0rem;
    font-weight: 700;
    text-decoration: none;
    color: #4781D1;
} 

.nav__topic a {
    font-size: 2.0rem;
    font-weight: 700;
    text-decoration: none;
    color: #FFF;
} 

.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

.btn_open img {
    width: 30px;
    height: 24px;
}

.btn_close img {
    width: 24px;
    height: 24px;
}
/* navigation */
/* .nav初期表示 */
.nav {
    background-color: #4781D1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s;
}
.nav__header {
    padding: 80px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 5px;
    width: 375px;
}
.nav__btn {
    width: 55px;
    height: 40px;
    cursor: pointer;
}
.nav__list {
    margin-top: 150px;
}
.nav__item {
    color: #FFF;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
}
.nav__item a {
    color: #FFF;
    text-decoration: none;
}

@media(min-width: 1160px) {
    .nav {
        max-width: 390px;
    }
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}
.nav.active+.btn_open {
    display:none;
} 
.nav.active+.btn_open {
    opacity:0;
} 
.header__btn {
    display: block;
    width: 55px;
    height: 40px;
    position:absolute;
    top: 17px;
    right: 20px;
    z-index: 1200;
    cursor: pointer;
}

/* PCデザイン */
@media(min-width: 1160px) {
    .sp__design {
        max-width: 390px;
        margin: 0 auto;
        background-image: none;
    }
    .header {
        max-width: 390px;
    }
    .pc__design {
        background-image: repeating-radial-gradient(
            at 0% 0%,
            rgba(220, 239, 246, 0.7),
            rgba(255, 255, 255, 0.7)
        );
        position: fixed;
        z-index: -100;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .pc__design-wrapper {
        position: absolute;
        top: 5%;
        left: 3%;
        width: 30vw;
        /* max-width: 370px; */
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .pc__design_topic {
        font-size: 3.5rem;
        line-height: 140%;
        margin-bottom: 50px;
        font-weight: 700;
        color: #4781D1;
    }
    
    .pc_pointList {
        /* width: 30%; */
        max-width: 345px;
        list-style: none;
    }

    .pc_pointItem {
        margin-bottom: 30px;
        display: flex;
        padding: 10px 15px;
        justify-content: flex-start;
        align-items: center;
        border-radius: 25px;
        background: linear-gradient(90deg, #4781D1 0%, #80A8DF 100%);
        /* background: linear-gradient(90deg, #F3A183 0%, #EC6F66 100%); */
        color: #FFF;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
        width: 260px;
    }

    .pc_pointItem::before {
        display: inline-block;
        content: "";
        width: 25px;
        height: 25px;
        background-image: url("../images/light_plan.png");
        background-size: contain;
        padding-right: 10px;
        background-repeat: no-repeat;
    } 


    .nav {
        width: 100%;
        height: 100vh;

    }
    .nav__item {
        font-size: 2.2rem;
        margin-bottom: 48px;
    }
    .pc__design {
        display: block;
    }  
}

/* ↑↑↑PC要調整 */

/* top */
.main {
    background-color: #fff;
}
.mainVis {
    margin-top: 60px;
}

.mainVis {
    position: relative;
}

.mainVis_topic {
    position: absolute;
    top: 15px;
    left: 10px;
}
.mainVis_txt {
    position: absolute;
    top: 60px;
    left: 0px;
    text-align: left;   
}

.mainVis_description {
    position: absolute;
    top: 160px;
    left: 30px;
    text-align: left;
}

.mainVis_copy {
    color: #fff;
    font-size: 2.3rem;
    background: linear-gradient(90deg, #80A8DF 0%, #4781D1 100%);
    padding: 8px 8px 8px 15px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}


.mainVis_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mainVis_item::before {
    content: "";
    display: block;
    background-image: url("../images/icon_menu.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin: 10px auto 0;
}

.mainVis_item {
    background-color: #fff;
    color: #4781D1;
    font-weight: 600;
    border-radius: 60px;
    width: 110px;
    height: 110px;
    list-style: none;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
}

.mainVis_item span {
    font-size: 2.5rem;
}

.mainVis_lead {
    line-height: 180%;
    margin: 50px auto 0;
}

/*吹き出しレイアウト*/
.mainVis_lead__chat {
    width: 90%;
    margin: 0 auto 10px;
}

.msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.msg.right {
    flex-direction: row-reverse;
}

.icon {
    width: 105px;
    height: 105px;
    object-fit: cover;
    flex-shrink: 0;
}

.bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 14px;
    background: #DCEFF6;
    position: relative;
    line-height: 1.5;
    font-weight: 600;
    word-break: break-word;
    text-align: left;
}

.bubble.left::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 12px;
    border-width: 6px 8px 6px 0;
    border-style: solid;
    border-color: transparent #DCEFF6 transparent transparent;
}

.bubble.right::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 12px;
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #DCEFF6;
}

.mainVis_lead__txt {
    margin-bottom: 20px;
    line-height: 2;
    font-size: 1.8rem;
    font-weight: 700;
}

.youtube-wrap {
    position: relative;
    width: 90%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 の比率 */
    overflow: hidden;
    margin: 0 auto 40px;
}

.youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bold_red {
    font-size: 2.8rem;
    font-weight: 700;
    color: #D1474B;
    background: linear-gradient(transparent 70%,rgba(255, 250, 102, 0.40) 40%);
    display: inline;
}

.mainVis_lead__img {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.background {
    width: 90%;
    margin: 70px auto 0;
    padding: 50px 15px 30px;
    position: relative;
    background-image: url("../images/dot_bg.png");
    background-size: 100%;
    border: #4781D1 5px solid;
    border-radius: 10px;
    position: relative;
}

.background_title {
    background-color: #4781D1;
    border-radius: 35px;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.background_img {
    width: 100%;
    height: auto;
}

.background_description {
    text-align: left;
}

.youtube1 {
    margin-top: 30px;
}

.container {
    position: relative;
    background: #FFF;
    height: 15vh;
}

.wave {
    position: absolute;
    height: 70px;
    width: 100%;
    background: #FFF;
    bottom: 0;
}

.wave::before, .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.wave::before {
    width: 55%;
    height: 109%;
    background-color: #DCEFF6;
    right: -1.5%;
    top: 60%;
}
.wave::after {
    width: 55%;
    height: 100%;
    background-color: #FFF;
    left: -1.5%;
    top: 40%;
}

/* worry */
.section_worry {
    background-color: #DCEFF6;
    padding-bottom: 60px;
}

.worry_topic {
    padding-top: 100px;
    color: #4781D1;
    margin-bottom: 30px;
    line-height: 140%;
}

.worry_list {
    margin-bottom: 30px;

}

.worry_item {
    margin: 0 auto;
    list-style: none;
    background-color: #fff;
    height: 35px;
    width: 345px;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.worry_item::before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../images/check_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 5px;
}

.worry_txt {
    font-size: 2.0rem;
    font-weight: 600;
    margin: 30px auto 50px;
}

.worry_txt::before {
    display: block;
    content: "";
    width: 197px;
    height: 156px;
    background-image: url("../images/worry_img1.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px auto 20px;
}

.worry_txt::after {
    display: block;
    content: "";
    width: 13px;
    height: 32px;
    background-image: url("../images/arrow_img.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 50px auto;
}

.border_txt {
    background: linear-gradient(transparent 70%,rgba(255, 250, 102, 0.40) 40%);
    display: inline;
}

.worry_img {
    width: 345px;
    height: auto;
    margin: 20px auto;
}

.worry_description {
    padding: 0 15px;
    text-align: left;
    margin-bottom: 30px;
}

.worry_link {
    color: #333;
    font-size: 1.6rem;
}

.bold_txt {
    font-weight: 700;
}

/* .container_2 {
    position: relative;
    background: #FFF9F8;
    height: 5vh;
} */

/* .wave_2 {
    position: absolute;
    height: 78px;
    width: 100%;
    background: #DCEFF6;
    bottom: 0;
} */

.wave_2::before, .wave_2::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.wave_2::before {
    width: 55%;
    height: 109%;
    background-color: #FFF;
    right: -1.5%;
    top: 60%;
}

.section_point {
    margin: 40px auto 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/point_bg.jpg");
    background-repeat: repeat;
    background-size: 400px auto;   /* 横200pxで縮小（縦は自動） */
    /* background-position: center; */
    position: relative;
    padding-bottom: 20px;
}

.point_list {
    margin: 50px auto;
    list-style: none;
}

.point_item {
    width: 345px;
    padding: 40px 15px 20px;
    margin: 0 auto 80px;
    border-radius: 10px;
    border: 1px solid #4781D1;
    box-shadow: 0px 0px 5px 0px rgba(71, 129, 209, 0.6);
    position: relative;
    background-color: #fff;
}

.point_number {
    width: 60px;
    height: 60px;
    border-radius: 70px;
    background: #4781D1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: Quicksand;
    font-size: 1.4rem;
    padding-top: 5px;
}

.point_number span {
    color: #FFF;
    display: block;
    font-family: "Zen Old Mincho";
    font-size: 2.5rem;
    line-height: 0.5;
}

.point_topic {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 10px;
}

.point_topic span {
    color: #4781D1;
}

.point_img {
    width: 310px;
    height: 200px;
    margin-bottom: 10px;
}

.point_description {
    text-align: left;
}

.point_description h4 {
    font-weight: 600;
    border-top: 1px dotted #4781D1;
    padding-top: 10px;
}

.point_description h4:nth-of-type(1) {
    border: none;
}
.point_link_topic {
    margin-bottom: 10px;
}
.point_link {
    margin-bottom: 10px;
}

.point_link a {
    color: #333;
    display: block;
    text-align: right;
}

.nursery_txt {
    font-weight: 700;
    display: flex;
    justify-content: center;
}

.nursery_txt::before,.nursery_txt::after {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/chick_img.png");
    background-size: contain;
}

.nursery_img {
    width: 345px;
    height: auto;
    margin: 10px auto;
}

.nursery_description {
    width: 345px;
    margin: 0 auto;
    text-align: left;
}
.point_description {
    text-align: left;
    margin: 0 auto;
}

.section_menu {
    background: #DCEFF6;
    padding: 50px 0;
}

.menu_item {
    list-style: none;
    padding-bottom: 30px;
    margin: 0 auto 50px;
    width: 345px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
}

.menu_subtopic_comment {
    margin: 5px auto 30px!important;
}

.menu_comment {
    color: #fff;
    background-color: #F8B500;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 20px;
    display: inline-block;
    margin-top: 20px;
}

.menu_subtopic {
    color: #FFF;
    text-align: center;
    font-family: Quicksand;
    font-size: 2.0rem;
    line-height: 140%; 
}

.menu_item:nth-child(3) .menu_subtopic {
    display: flex;
    padding: 15px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(90deg, #F3A183 0%, #EC6F66 100%);
}

.menu_item:nth-child(3) .menu_subtopic::before,.menu_item:nth-child(3) .menu_subtopic::after {
    display: inline-block;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("../images/light_plan.png");
    background-size: contain;
}

.menu_item:nth-child(2) .menu_subtopic {
    display: flex;
    padding: 15px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);
}

.menu_item:nth-child(2) .menu_subtopic::before,.menu_item:nth-child(2) .menu_subtopic::after {
    display: inline-block;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("../images/standard_plan.png");
    background-size: contain;
}

.menu_item:nth-child(1) .menu_subtopic {
    display: flex;
    padding: 15px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(96deg, #D0A900 -8.21%, #FBE8AA 16.85%, #D0A900 53.94%, #FBE8AA 84.47%, #D0A900 103.22%);
}

.menu_item:nth-child(1) .menu_subtopic::before,.menu_item:nth-child(1) .menu_subtopic::after {
    display: inline-block;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("../images/premium_plan.png");
    background-size: contain;
}

.menu_money {
    color: #EC6F66;
    font-weight: 700;
    line-height: 150%; 
    margin: 30px auto;
    font-size: 2.0rem;
}

.pink {
    color: #EC6F66;
}

.blue {
    color: #3787BC;
}

.yellow {
    color: #F8B500;
}

.money_txt {
    font-size: 3.5rem;
}

.money_txt_b {
    color: #333;
    font-size: 2.0rem;
}

.menu_txt {
    width: 300px;
    margin: 0 auto 10px;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
}

.pink_pin::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/pin_pink.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 10px;
}

.blue_pin::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/pin_blue.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 10px;
}

.yellow_pin::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/pin_yellow.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 10px;
}

/* staff */
.section_staff {
    padding: 60px 15px;
    margin: 0 auto;
}

.slick_staff {
    margin: 0 auto 30px;
    width: 100%;
}

.staff_item {
    list-style: none;
    margin: 0 auto;
}

.staff_member {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.staff_number {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background: linear-gradient(90deg, #80A8DF 0%, #4781D1 100%);
    color: #fff;
    font-size: 4.0rem;
    line-height: 1.5;
}

.staff_name span {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.staff_name {
    font-size: 2.3rem;
    text-align: left;
}

.staff_img {
    width: 100%;
    height: auto;
}

.staff_topic {
    font-size: 2.0rem;
    line-height: 150%;
    border-bottom: 1px dotted #4781D1;
    text-align: left;
    padding: 10px 0;
    position: relative;
}

.staff_topic::after {
    content: "";
    display: inline-block;
    background-image: url("../images/staff_deco.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 65px;
    height: 41px;
    position: absolute;
    top: 20px;
    right: 0;
}

.staff_txt {
    text-align: left;
    line-height: 150%;
    margin-top: 10px;
}

/* voice */
.section_voice {
    margin: 50px auto 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/voice_bg.jpg");
    padding-bottom: 20px;
}

.slick_voice {
    padding: 0px 15px 30px;
}

.slick_voice_item {
    background: #fff;
    margin-bottom: 10px;
    width: 90%;
    border-radius: 10px;
    list-style: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voice_img {
    width: 90%;
    height: auto;
    margin: 20px auto;
}

.voice_txt {
    width: 90%;
    margin: 0 auto 30px;
    text-align: left;
}

.voice_attention {
    text-align: center;
    padding-bottom: 30px;
}

/* Words */
.section_words {
    margin: 0 auto 150px;
    padding-top: 70px;
}

.words_list {
    width: 90%;
    margin: 0 auto;
    list-style: none;
}

.words_item {
    position: relative;
}

.words_item::after {
    content: "";
    display: block;
    background-image: url("../images/words_line.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 295px;
    height: 43px;
    position: absolute;
    bottom: -35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.words_man {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.words_img {
    width: 150px;
    height: auto;
}

.words_txt {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
}

.words_txt span {
    font-weight: 500;
    display: block;
}

.words_description {
    margin: 10px auto 100px;
}
/* Instagram */
.section_sns {
    margin: 0 auto 80px;
}

.instagram_txt {
    writing-mode: vertical-rl;
    text-orientation: upright;  
    text-shadow: 0px 0px 5px rgba(238, 128, 112, 0.60);
    font-size: 3.0rem;
    font-weight: 400;
    margin: 50px auto 100px;
    position: relative;
}

.message_img_sns {
    width: 83px;
    height: auto;
}



/* question */

.section_question {
    background-color: #DCEFF6;
    padding: 50px 0;
}
.qa-6 {
    max-width: 350px;
    margin-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.20);
    margin: 0 auto;
    text-align: left;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1em 1em 3em;
    color: #333333;
    /* font-weight: 600; */
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* access */
.section_access {
    margin: 50px auto 0;
    padding-bottom: 50px;
}

.access_list {
    margin: 20px auto;
    width: 345px;
}

.access_item {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    text-align: center;
    line-height: 22px;
}

.access_item span {
    width: 85px;
    height: 22px;
    border-radius: 20px;
    background: #4781D1;
    color: #fff;
    margin-right: 20px;
}

.access_link {
    color: #333;
}
.access_map {
    width: 345px;
    height: 225px;
}

.access_parking {
    margin: 30px auto;
    width: 345px;
}

.parking_list {
    list-style: none;
}

.parking_item {
    margin-bottom: 30px;
}

.parking_title {
    margin-bottom: 10px;
}

.parking_txt {
    text-align: left;
    margin-bottom: 10px;
}

.parking_img {
    width: 345px;
    height: 200px;
    margin: 0 auto;
}

/* footer */

.footer {
    padding: 70px 0px;
    background-color: #6B5E58;
    color: #fff;
    margin: 0 auto;
}


/* スリック調整 */
/* .slick-slider {
    padding-bottom: 40px; 
}

.slick_voice {
    padding-bottom: 40px; 
} */


/* ふわっとあがるjs */
/* 初期状態 */
.fadeUp {
    opacity: 0;
    transform: translateY(20px); /* 下から少し上に動く */
    transition: all 0.5s ease-out;
}

/* アニメーションが発火した後の状態 */
.fadeUp.active {
    opacity: 1;
    transform: translateY(0);
}