@charset "utf-8";

/* 背景 */
.bg_line {
    position: relative;
}

.bg_line::after {
    content: "";
    width: 100%;
    height: clamp(0px, 2.3vw, 30px);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
}

.bg_line.yellow::after { background-image: url("../img/top/bg_line_yellow.svg"); }
.bg_line.white::after { background-image: url("../img/top/bg_line_white.svg"); }
.bg_line.pink::after { background-image: url("../img/top/bg_line_pink.svg"); }
.bg_line.blue::after { background-image: url("../img/top/bg_line_blue.svg"); }
.bg_line.green::after { background-image: url("../img/top/bg_line_green.svg"); }

@media screen and (max-width: 768px) {
    .bg_line::after {
        height: 2vw;
    }
    
    .bg_line.yellow::after { background-image: url("../img/top/bg_line_yellow_sp.svg"); }
    .bg_line.white::after { background-image: url("../img/top/bg_line_white_sp.svg"); }
    .bg_line.pink::after { background-image: url("../img/top/bg_line_pink_sp.svg"); }
    .bg_line.blue::after { background-image: url("../img/top/bg_line_blue_sp.svg"); }
    .bg_line.green::after { background-image: url("../img/top/bg_line_green_sp.svg"); }
}

/* コンテンツタイトル */
.cont_title {
    font-size: clamp(0px, 4.6vw, 60px);
    font-weight: var(--font-w-bl);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1;
}

.cont_title_2 {
    width: clamp(0px, 33.8vw, 440px);
    aspect-ratio: 440 / 60;
    font-size: clamp(0px, 1.9vw, 25px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    border: 3px solid;
    border-radius: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont_title_2.museum {
    color: var(--color-main);
    border-color: var(--color-main);
}

.cont_title_2.shrine {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.cont_title_area {
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cont_title_area .title_bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.cont_title_area .title_bg img {
    width: 1200px;
    max-width: 92.3vw;
}

.cont_title_area .cont_title {
    margin-bottom: clamp(0px, 3.8vw, 50px);
    position: relative;
    z-index: 1;
}

.cont_title_area .cont_lead {
    font-size: clamp(0px, 1.8vw, 23px);
    letter-spacing: 0.05em;
    font-weight: var(--font-w-bl);
    position: relative;
    z-index: 1;
}

.cont_title_3 {
    font-size: clamp(0px, 3.1vw, 40px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cont_title {
        font-size: 7.5vw;
    }

    .cont_title_2 {
        width: 72vw;
        aspect-ratio: 720 / 100;
        font-size: 4.5vw;
        border: clamp(2px, 0.4vw, 4px) solid;
        border-radius: 100vw;
    }

    .cont_title_area .title_bg img {
        width: 100%;
        max-width: 100%;
    }

    .cont_title_area .cont_title {
        margin-bottom: 6vw;
    }

    .cont_title_area .cont_lead {
        font-size: 4vw;
        line-height: 1.5em;
    }

    .cont_title_3 {
        font-size: 4vw;
        letter-spacing: 0.05em;
    }
}


/* ===============================================
   mv
=============================================== */
#mv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.movie_wrap img,
.movie_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#mv .mv_text {
    font-size: clamp(0px, 3.1vw, 40px);
    line-height: 1.5em;
    font-weight: var(--font-w-bl);
    letter-spacing: 0.01em;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #mv {
        height: 100svh;
    }
    
    #mv .mv_text {
        font-size: 2.7vh;
        line-height: 1.6em;
        writing-mode: vertical-rl;
        position: absolute;
        top: 24vw;
        right: 7vw;
        z-index: 5;
    }
}


/* ===============================================
   menu
=============================================== */
.cont_bg {
    padding: clamp(0px, 15.4vw, 200px) 0 clamp(0px, 18.5vw, 240px);
    background: #FFF;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 65%, rgba(185, 223, 245, 1) 100%);
    position: relative;
}

.cont_bg .cat {
    width: clamp(0px, 89.2vw, 1160px);
    position: absolute;
    top: clamp(-175px, -13.5vw, 0px);
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}

.cont_bg .cat img {
    width: clamp(0px, 16.2vw, 210px);
}

#top_menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

.site_menu {
    width: clamp(0px, 92.3vw, 1200px);
    margin: 0 auto clamp(0px, 12.3vw, 160px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0px, 1.5vw, 20px);
}

.site_menu a {
    width: clamp(0px, 21.9vw, 285px);
    aspect-ratio: 285 / 70;
    border-radius: 70px;
    background-color: #fff;
    border: 1px solid #47b4eb;
    font-size: clamp(0px, 1.9vw, 25px);
    font-weight: var(--font-w-b);
    letter-spacing: 0.05em;
    color: #47b4eb;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background 0.3s, color 0.3s;
}

.site_menu a::after {
    content: "";
    width: clamp(0px, 1.4vw, 18px);
    height: clamp(0px, 0.7vw, 9px);
    background: #47b4eb;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    top: 0;
    bottom: 0;
    right: clamp(0px, 1.5vw, 20px);
    margin: auto;
    transition: background 0.3s;
}

.site_menu a:hover {
    background-color: #47b4eb;
    color: #fff;
}

.site_menu a:hover::after {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .cont_bg {
        padding: 10vw 0 19vw;
    }

    .cont_bg .cat {
        width: 80vw;
        top: -35vw;
    }

    .cont_bg .cat img {
        width: 32vw;
    }
    
    .site_menu {
        width: 90vw;
        margin: 0 auto 5.5vw;
        gap: 2vw;
    }

    .site_menu a {
        width: 21vw;
        aspect-ratio: 210 / 110;
        border-radius: 11vw;
        font-size: 2.8vw;
    }

    .site_menu a::after {
        width: 1.8vw;
        height: 0.9vw;
        top: inherit;
        bottom: 1.5vw;
        left: 0;
        right: 0;
    }
}

/* チェック */
#check {
    padding-top: clamp(0px, 9.2vw, 120px);
    position: relative;
}

#check .bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#check .bg img {
    width: 1920px;
    max-width: 147.7vw;
}

#check .cont_title {
    margin-bottom: clamp(0px, 7.7vw, 100px);
    position: relative;
    z-index: 1;
}

#check .cont_title span:nth-of-type(1) { color: #ff003a; }
#check .cont_title span:nth-of-type(2) { color: #ff7f00; }
#check .cont_title span:nth-of-type(3) { color: #ff95d2; }
#check .cont_title span:nth-of-type(4) { color: #90d700; }
#check .cont_title span:nth-of-type(5) { color: #03b1e0; }
#check .cont_title span:nth-of-type(6) { color: #8047d5; }
#check .cont_title span:nth-of-type(7) { color: #ffc314; }
#check .cont_title span:nth-of-type(8) { color: #00d2b4; }
#check .cont_title span:nth-of-type(9) { color: #e34c10; }
#check .cont_title span:nth-of-type(10) { color: #3333ca; }
#check .cont_title span:nth-of-type(11) { color: #ff005c; }

@media screen and (max-width: 768px) {
    #check {
        padding-top: 27vw;
    }

    #check .bg img {
        width: 100%;
        max-width: 100%;
    }

    #check .cont_title {
        margin-bottom: 10vw;
    }
}

/* スライダー全件 */
#slide_all_category {
    width: 100%;
    overflow: hidden;
}

#slide_all_category .slide_item {
    width: clamp(0px, 34.6vw, 450px);
    padding: 0 clamp(0px, 1.9vw, 25px);
}

#slide_all_category .slide_item .img {
    width: 100%;
    aspect-ratio: 450 / 335;
    margin-bottom: clamp(0px, 1.5vw, 20px);
    overflow: hidden;
}

#slide_all_category .slide_item a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#slide_all_category .slide_item a:hover .img img {
    transform: scale(1.08);
}

#slide_all_category .slide_item .cat_area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(0px, 0.8vw, 10px);
    margin-bottom: clamp(0px, 0.6vw, 8px);
}

#slide_all_category .slide_item .cat_area .new {
    font-size: clamp(0px, 1.9vw, 25px);
    line-height: 1;
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    font-style: oblique;
    color: #fff;
    background-color: var(--color-main);
    padding: 0.2em 0.4em;
}

#slide_all_category .slide_item .cat_area .category {
    width: auto;
    height: clamp(0px, 3.1vw, 40px);
    font-size: clamp(0px, 1.2vw, 16px);
    font-weight: var(--font-w-bl);
    padding: 0 1.3em;
    background-color: #fff;
    border: 2px solid;
    border-radius: 40px;
    display: flex;
    align-items: center;
}

#slide_all_category .slide_item .cat_area .category.cat_museum {
    color: var(--color-main);
    border-color: var(--color-main);
}

#slide_all_category .slide_item .cat_area .category.cat_shrine {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

#slide_all_category .slide_item .title {
    font-size: clamp(0px, 1.5vw, 20px);
    font-weight: var(--font-w-b);
    line-height: 1.4em;
}

.article_icon {
    height: clamp(0px, 2.7vw, 35px);
    font-size: clamp(0px, 1.2vw, 16px);
    font-weight: var(--font-w-bl);
    color: #fff;
    background-color: var(--color-main);
    padding: 0 0.6em;
    display: flex;
    align-items: center;
}

/*.js_slide_lineup.is-looping .slide_item {
    transform: scale(0.608) !important;
    opacity: 0.5 !important;
}*/

@media screen and (max-width: 768px) {
    #slide_all_category .slide_item {
        width: 65.5vw;
        padding: 0 3vw;
    }

    #slide_all_category .slide_item .img {
        aspect-ratio: 655 / 490;
        margin-bottom: 5vw;
    }

    #slide_all_category .slide_item .cat_area {
        gap: 1.8vw;
        margin-bottom: 1.3vw;
    }

    #slide_all_category .slide_item .cat_area .new {
        font-size: 3.4vw;
    }

    #slide_all_category .slide_item .cat_area .category {
        height: 6vw;
        font-size: 2.4vw;
        border: 0.2vw solid;
    }
    
    #slide_all_category .slide_item .title {
        font-size: 3.5vw;
        letter-spacing: 0;
    }

    .article_icon {
        font-size: 2.4vw;
    }
}


/* ===============================================
   gallery
=============================================== */
#gallery {
    padding: clamp(0px, 14.6vw, 190px) 0 clamp(0px, 6.2vw, 80px);
    background-color: #fff593;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery .cont_title_area {
    padding-top: clamp(0px, 1.3vw, 17px);
}

#gallery .cont_title span:nth-of-type(1) { color: #3333ca; }
#gallery .cont_title span:nth-of-type(2) { color: #ff95d2; }
#gallery .cont_title span:nth-of-type(3) { color: #00d2b4; }
#gallery .cont_title span:nth-of-type(4) { color: #ffc314; }
#gallery .cont_title span:nth-of-type(5) { color: #ff003a; }
#gallery .cont_title span:nth-of-type(6) { color: #90d700; }
#gallery .cont_title span:nth-of-type(7) { color: #03b1e0; }

.gallery_title {
    width: clamp(0px, 92.3vw, 1200px);
    height: clamp(0px, 11.5vw, 150px);
    padding-bottom: clamp(0px, 1.9vw, 25px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gallery_title .bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    #gallery {
        padding: 16.5vw 0;
    }

    #gallery .cont_title_area {
        padding-top: 3vw;
    }
    
    #gallery .cont_title {
        font-size: 8vw;
    }

    .gallery_title {
        width: 100%;
        height: 24vw;
        padding-bottom: 4vw;
    }
}

/* ---------------------------------------
   slide
--------------------------------------- */
.gallery_slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.gallery_slider:active {
    cursor: grabbing;
}

.flow_wrapper {
    display: flex;
    width: max-content;
    will-change: transform;
}

.gallery_slider .slide_item {
    width: auto !important;
    padding: clamp(0px, 0.6vw, 8px) clamp(0px, 0.3vw, 4px);
    background-color: #fff;
    flex-shrink: 0;
}

.gallery_slider .slide_item img {
    height: 300px;
    width: auto;
    display: block;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .gallery_slider .slide_item {
        padding: 1vw 0.5vw;
    }

    .gallery_slider .slide_item img {
        height: 45vw;
    }
}

/* ---------------------------------------
   about
--------------------------------------- */
#about {
    width: 100%;
    padding: clamp(0px, 14.6vw, 190px) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about_inner {
    width: clamp(0px, 92.3vw, 1200px);
    position: relative;
}

.about_main {
    width: 100%;
    padding-top: clamp(0px, 11.5vw, 150px);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about .cont_title {
    font-size: clamp(0px, 5.4vw, 70px);
    margin-bottom: clamp(0px, 3.8vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 2.2vw, 28px);
}

#about .cont_title .title_1 span:nth-of-type(1) { color: #ff005c; }
#about .cont_title .title_1 span:nth-of-type(2) { color: #3333ca; }
#about .cont_title .title_1 span:nth-of-type(3) { color: #ff95d2; }
#about .cont_title .title_1 span:nth-of-type(4) { color: #00d2b4; }
#about .cont_title .title_2 span:nth-of-type(1) { color: #ff7f00; }
#about .cont_title .title_2 span:nth-of-type(2) { color: #ffc314; }
#about .cont_title .title_2 span:nth-of-type(3) { color: #90d700; }
#about .cont_title .title_2 span:nth-of-type(4) { color: #03b1e0; }
#about .cont_title .title_2 span:nth-of-type(5) { color: #8047d5; }
#about .cont_title .title_2 span:nth-of-type(6) { color: #ff005c; }
#about .cont_title .title_2 span:nth-of-type(7) { color: #00b1bf; }

#about .text_1 {
    font-size: clamp(0px, 2.2vw, 28px);
    font-weight: var(--font-w-b);
    line-height: 2em;
    letter-spacing: 0.05em;
    margin-bottom: 1.2em;
}

#about .text_2 {
    font-size: clamp(0px, 1.4vw, 18px);
    font-weight: var(--font-w-m);
    line-height: 2.6em;
    letter-spacing: 0.07em;
}

@media screen and (max-width: 768px) {
    #about {
        padding: 19vw 0 0;
    }
    
    #about::before {
        content: "";
        width: 100%;
        height: 5vw;
        background: url("../img/top/gallery_bg_2_sp.png") no-repeat center center / contain;
        position: absolute;
        top: 4.5vw;
        left: 0;
    }

    .about_inner {
        width: 100%;
    }

    .about_main {
        padding-top: 16vw;
    }

    #about .cont_title {
        font-size: 8.75vw;
        margin-bottom: 6vw;
        gap: 4vw;
    }

    #about .text_1 {
        font-size: 4vw;
        line-height: 1.5em;
        margin-bottom: 0.8em;
    }

    #about .text_2 {
        font-size: 3.6vw;
        line-height: 1.75em;
        letter-spacing: 0;
    }
}

/* ---------------------------------------
   gallery bg
--------------------------------------- */
#gallery .bg_bottom {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#gallery .bg_bottom img {
    width: 1920px;
    max-width: 147.7vw;
}

#gallery .cat {
    width: clamp(0px, 19.2vw, 250px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    #gallery .bg_bottom img {
        width: 100%;
        max-width: 100%;
    }

    #gallery .cat {
        width: 20vw;
        bottom: 0;
    }
}


/* ===============================================
   news
=============================================== */
#news {
    background-color: #fff;
    padding: clamp(0px, 17.7vw, 230px) 0 clamp(0px, 20.8vw, 270px);
}

#news .cont_title_area {
    padding-top: clamp(0px, 1.2vw, 15px);
    margin-bottom: clamp(0px, 5vw, 65px);
}

#news .cont_title span:nth-of-type(1) { color: #00d2b4; }
#news .cont_title span:nth-of-type(2) { color: #ffc314; }
#news .cont_title span:nth-of-type(3) { color: #ff003a; }
#news .cont_title span:nth-of-type(4) { color: #90d700; }

#news .cat {
    width: clamp(0px, 92.3vw, 1200px);
    position: absolute;
    bottom: clamp(0px, 1.2vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

#news .cat img {
    width: clamp(0px, 10vw, 130px);
}

#news .article_list li:nth-of-type(4) {
    display: none;
}

@media screen and (max-width: 768px) {
    #news {
        padding: 21vw 0 26vw;
    }

    #news .cont_title_area {
        padding-top: 3vw;
        margin-bottom: 9vw;
    }
    
    #news .cont_title {
        font-size: 8vw;
    }
    
    #news .cat {
        width: 90vw;
        bottom: 0.5vw;
    }

    #news .cat img {
        width: 17vw;
    }

    #news .article_list li:nth-of-type(4) {
        display: block;
    }
}


/* ===============================================
   vending_machine
=============================================== */
#vending_machine {
    padding: clamp(0px, 14.6vw, 190px) 0 clamp(0px, 20vw, 260px);
    background-color: #fff593;
}

#vending_machine .cont_title_area {
    padding-top: clamp(0px, 1.4vw, 18px);
    margin-bottom: clamp(0px, 5vw, 65px);
}

#vending_machine .cont_title span:nth-of-type(1) { color: #00d39b; }
#vending_machine .cont_title span:nth-of-type(2) { color: #ff7f00; }
#vending_machine .cont_title span:nth-of-type(3) { color: #ff005c; }
#vending_machine .cont_title span:nth-of-type(4) { color: #8047d5; }
#vending_machine .cont_title span:nth-of-type(5) { color: #0184b5; }

@media screen and (max-width: 768px) {
    #vending_machine {
        padding: 19vw 0 30vw;
    }

    #vending_machine .cont_title_area {
        padding-top: 2.6vw;
        margin-bottom: 6.5vw;
    }
}

/* ---------------------------------------
   vending machine bg
--------------------------------------- */
#vending_machine .bg_bottom {
    width: clamp(0px, 92.3vw, 1200px);
    position: absolute;
    bottom: clamp(0px, 1.2vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

#vending_machine .cat {
    width: clamp(0px, 92.3vw, 1200px);
    position: absolute;
    bottom: clamp(0px, 1.2vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    padding-left: clamp(0px, 0.4vw, 5px);
}

#vending_machine .cat img {
    width: clamp(0px, 11.5vw, 150px);
}

@media screen and (max-width: 768px) {
    #vending_machine .bg_bottom {
        width: 100%;
        bottom: 0;
    }

    #vending_machine .cat {
        width: 90vw;
        bottom: 0.5vw;
        padding-left: 0;
    }

    #vending_machine .cat img {
        width: 19vw;
    }
}


/* ===============================================
   products
=============================================== */
#products {
    padding: clamp(0px, 12.3vw, 160px) 0 clamp(0px, 15.4vw, 200px);
    background-color: #ffddee;
}

#products .cont_title_area {
    padding-top: clamp(0px, 1.4vw, 18px);
    margin-bottom: clamp(0px, 5vw, 65px);
}

#products .cont_title span:nth-of-type(1) { color: #ff003a; }
#products .cont_title span:nth-of-type(2) { color: #90d700; }
#products .cont_title span:nth-of-type(3) { color: #ff7f00; }
#products .cont_title span:nth-of-type(4) { color: #3333ca; }

#products .article_block {
    width: 100%;
}

#products .article_block .article_img {
    width: 100%;
    aspect-ratio: 365 / 275;
}

#products .article_block .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    #products {
        padding: 20vw 0 23vw;
    }

    #products .cont_title_area {
        padding-top: 3vw;
        margin-bottom: 6vw;
    }

    #products .article_block .article_img {
        aspect-ratio: 460 / 345;
    }
}

/* ---------------------------------------
   slide lineup
   --------------------------------------- */
.products_slide_list {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.products_slide_list .slick-slide {
    width: clamp(0px, 46.2vw, 600px) !important;
    margin: 0;
    outline: none;
    transition: none !important;
}

.products_slide_list .slide_item {
    width: 100%;
    transform: scale(0.608);
    opacity: 1;
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), opacity 300ms ease;
    backface-visibility: hidden;
    will-change: transform;
}

.products_slide_list .slide_item.is-active {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.products_slide_list .slick-center .slide_item,
.products_slide_list .slick-current .slide_item,
.products_slide_list .slick-active.slick-center .slide_item {
    transform: scale(0.608);
    opacity: 1;
}

.products_slide_list .article_img {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: clamp(0px, 1.5vw, 20px);
}

.products_slide_list .article_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35,24,21,0.5);
    mix-blend-mode: multiply; 
    pointer-events: none;
    opacity: 1;
    transition: opacity 300ms ease;
}

.products_slide_list .slide_item:hover .article_img::after,
.products_slide_list .slide_item.is-active .article_img::after {
    opacity: 0;
}

.products_slide_list .slide_item .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.products_slide_list .slide_item:hover .article_img img {
    transform: scale(1.08);
}

@media screen and (max-width: 768px) {
    .products_slide_list .slick-slide {
        width: 65vw !important;
    }

    .products_slide_list .article_img {
        margin-bottom: 2vw;
    }
    
    #products .article_wrap .cat_area,
    #products .article_wrap .article_text {
        width: 100%;
    }
}


/* ===============================================
   recruit_vending
=============================================== */
#recruit_vending {
    padding: clamp(0px, 13.1vw, 170px) 0 clamp(0px, 17.7vw, 230px);
    background-color: #d2f4ec;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#recruit_vending .cont_title_area {
    padding-top: clamp(0px, 5.4vw, 70px);
    margin-bottom: clamp(0px, 5vw, 65px);
}

#recruit_vending .cont_title span:nth-of-type(1) { color: #ff95d2; }
#recruit_vending .cont_title span:nth-of-type(2) { color: #ffc314; }
#recruit_vending .cont_title span:nth-of-type(3) { color: #00d2b4; }
#recruit_vending .cont_title span:nth-of-type(4) { color: #ff003a; }
#recruit_vending .cont_title span:nth-of-type(5) { color: #03b1e0; }

#recruit_vending .cont_title_area .title_bg img {
    width: 1920px;
    max-width: 147.7vw;
}

#recruit_vending .btn_blue {
    width: clamp(0px, 40.4vw, 525px);
    display: flex;
    align-items: center;
    gap: clamp(0px, 0.9vw, 12px);
    margin-bottom: clamp(0px, 10.4vw, 135px);
}

#recruit_vending .btn_blue img {
    width: clamp(0px, 2.7vw, 35px);
}

#recruit_vending .cont_title_3 {
    margin-bottom: 1.3em;
}

#recruit_vending .article_list li:nth-of-type(4) {
    display: none;
}

@media screen and (max-width: 768px) {
    #recruit_vending {
        padding: 4vw 0 23vw;
    }

    #recruit_vending .cont_title_area {
        padding-top: 32vw;
        margin-bottom: 9vw;
    }

    #recruit_vending .cont_title_area .title_bg img {
        width: 100%;
        max-width: 100%;
    }

    #recruit_vending .btn_blue {
        width: 91.5vw;
        gap: 2vw;
        margin-bottom: 10vw;
    }

    #recruit_vending .btn_blue img {
        width: 5.8vw;
    }

    #recruit_vending .article_list li:nth-of-type(4) {
        display: block;
    }
}

/* ---------------------------------------
   recruit vending bg
--------------------------------------- */
#recruit_vending .bg_bottom {
    width: clamp(0px, 92.3vw, 1200px);
    position: absolute;
    bottom: clamp(0px, 1.2vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

#recruit_vending .cat {
    width: clamp(0px, 92.3vw, 1200px);
    position: absolute;
    bottom: clamp(0px, 1.2vw, 15px);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    padding-left: clamp(0px, 8.5vw, 110px);
}

#recruit_vending .cat img {
    width: clamp(0px, 10vw, 130px);
    transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
    #recruit_vending .bg_bottom {
        width: 100%;
        bottom: 0;
    }

    #recruit_vending .cat {
        width: 90vw;
        bottom: 0.3vw;
        padding-left: 0;
    }

    #recruit_vending .cat img {
        width: 15vw;
    }
}


/* ===============================================
   access
=============================================== */
#access {
    padding: clamp(0px, 20vw, 260px) 0;
    background-color: #fff;
}

#access .cont_title {
    margin-bottom: clamp(0px, 5.4vw, 70px);
}

#access .cont_title span:nth-of-type(1) { color: #ff003a; }
#access .cont_title span:nth-of-type(2) { color: #90d700; }
#access .cont_title span:nth-of-type(3) { color: #03b1e0; }
#access .cont_title span:nth-of-type(4) { color: #ff95d2; }

.access_main {
    display: flex;
    justify-content: center;
    gap: clamp(0px, 7.7vw, 100px);
}

.access_cont {
    width: clamp(0px, 42.3vw, 550px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access_cont .access_title {
    width: clamp(0px, 33.8vw, 440px);
    aspect-ratio: 440 / 60;
    font-size: clamp(0px, 1.9vw, 25px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    border: 3px solid;
    border-radius: 60px;
    margin-bottom: clamp(0px, 1.9vw, 25px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.museum .access_title {
    color: var(--color-main);
    border-color: var(--color-main);
}

.shrine .access_title {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.access_cont .text {
    font-size: clamp(0px, 1.4vw, 18px);
    font-weight: var(--font-w-m);
    letter-spacing: 0.07em;
    line-height: 1.7em;
    text-align: center;
    margin-bottom: 2em;
}

.access_cont .img {
    width: clamp(0px, 33.8vw, 440px);
    aspect-ratio: 440 / 255;
    margin-bottom: clamp(0px, 3.1vw, 40px);
}

.access_cont .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access_cont .map {
    width: 100%;
    aspect-ratio: 550 / 500;
    background-color: #fffbd1;
    padding: clamp(0px, 0.4vw, 5px);
    margin-bottom: clamp(0px, 1.5vw, 20px);
}

.access_cont .map iframe {
    width: 100%;
    height: 100%;
}

.access_cont .address {
    font-size: clamp(0px, 1.2vw, 16px);
    font-weight: var(--font-w-m);
    letter-spacing: 0.07em;
}

@media screen and (max-width: 768px) {
    #access {
        padding: 24vw 0 26vw;
    }

    #access::before {
        content: "";
        width: 100%;
        height: 12.5vw;
        background: url("../img/top/access_title_bg_sp.png") no-repeat center center / contain;
        display: inline-block;
        position: absolute;
        top: 21vw;
        left: 0;
        z-index: 0;
    }

    #access .cont_title {
        margin-bottom: 8vw;
        z-index: 1;
    }

    .access_main {
        flex-direction: column;
        align-items: center;
        gap: 20vw;
    }

    .access_cont {
        width: 90vw;
    }

    .access_cont .access_title {
        width: 72vw;
        aspect-ratio: 720 / 100;
        font-size: 4.5vw;
        border: 0.4vw solid;
        border-radius: 100vw;
        margin-bottom: 4vw;
    }

    .access_cont .text {
        font-size: 3.6vw;
        font-weight: var(--font-w-m);
        letter-spacing: 0;
        line-height: 1.8em;
        margin-bottom: 1em;
    }

    .access_cont .img {
        width: 72vw;
        aspect-ratio: 720 / 420;
        margin-bottom: 6.5vw;
    }

    .access_cont .map {
        aspect-ratio: 900 / 820;
        padding: 0.8vw;
        margin-bottom: 3vw;
    }
    
    .access_cont .address {
        font-size: 3vw;
        line-height: 1;
    }
}


/* ===============================================
   contact
=============================================== */
#contact {
    padding: clamp(0px, 13.1vw, 170px) 0 clamp(0px, 14.6vw, 190px);
    background-color: #b9dff5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact .img {
    width: clamp(0px, 9.6vw, 125px);
    margin-bottom: clamp(0px, 3.8vw, 50px);
}

#contact .cont_title {
    margin-bottom: clamp(0px, 6.2vw, 80px);
}

#contact .cont_title span:nth-of-type(1) { color: #ff7f00; }
#contact .cont_title span:nth-of-type(2) { color: #8047d5; }
#contact .cont_title span:nth-of-type(3) { color: #0184b5; }
#contact .cont_title span:nth-of-type(4) { color: #ff95d2; }
#contact .cont_title span:nth-of-type(5) { color: #ffc314; }
#contact .cont_title span:nth-of-type(6) { color: #ff005c; }

#contact .btn_base {
    width: clamp(0px, 39.6vw, 515px);
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 17vw 0 19vw;
    }

    #contact .img {
        width: 16vw;
        margin-bottom: 3.5vw;
    }

    #contact .cont_title {
        margin-bottom: 8vw;
    }
    
    #contact .btn_base {
        width: 91.5vw;
    }
}
