@charset "utf-8";

:root{
    --black: #000;
    --white: #fff;
    --yellow: #ffff00;
    --red: #ff0000;
    --blue: #0099FF;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    color: var(--black);
    box-sizing: border-box;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
    
}

body.no_scroll {
    overflow: hidden;
}

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

a {
    color: var(--black);
    text-decoration: none;
    transition: 0.6s;
}

a:hover {
    opacity: 0.7;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:1200px) {
    body {
        font-size: 15px;
    }

    .wrapper {
        padding: 0 15px;
    }
}

/* GLightbox */
.glightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.glightbox-container .gcontainer {
    width: fit-content !important;
    height: fit-content !important;
    overflow: visible !important;
}

.glightbox-container .ginner-container {
    width: fit-content;
    height: fit-content;
    justify-content: center;
    align-items: center;
}


.gslide-media.gslide-inline,
.gslide-inline .ginlined-content,
.glightbox-container .gslide-desc {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.gslide-inline .ginlined-content {
    text-align: center;
}

.gslide-media {
    justify-content: center;
}

.gslide-media.gslide-video {
    width: min(942px, 56.1vw)!important ;
}

.glightbox-container .gclose {
    font-size: 0; 
    width: 70px !important;
    height: 70px !important;
    background: url('../images/icon_close.png') center / contain no-repeat;
    top: -70px !important;
    right: -70px !important;
}

.glightbox-clean .gclose, 
.glightbox-clean .gnext, 
.glightbox-clean .gprev {
    background-color: unset !important;
    border-radius: unset !important;
}

.glightbox-container .gprev,
.glightbox-container .gnext {
    display: none;
}

.goverlay {
  background: rgba(0, 0, 0, 0.7) !important; 
}

@media (min-width: 769px) {
    .glightbox-clean .gslide-media {
        -webkit-box-shadow: unset !important;
        box-shadow: unset !important;
    }

    .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
        background-color: unset !important;
    }

    .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
        background-color: unset !important;
    }
}

@media (max-width:834px) {
    .gslide-media.gslide-video {
        width: 90vw!important ;
    }

    .glightbox-container .ginner-container {
        width: fit-content !important;
        height: fit-content!important ;
    }
    
    .glightbox-container .gclose {
        right: 0 !important;
        width: 50px !important;
        height: 50px !important;
    }
}



/* ---------- ここからheader　---------- */
.header {
    padding: 20px 30px 14px;
    background: url(../images/header_bg.jpg) no-repeat center/cover;
    position: relative;
    z-index: 3;
}

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

.header .site_logo {
    width: max(273px, 16.3vw);
}

.header .header_right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .nav_list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .nav_item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.header .nav_item .icon_inner {
    height: 40px;
    display: flex;
    align-items: center;
}

.header .nav_item:first-child .icon_inner {
    width: 33px;
}

.header .nav_item:nth-child(2) .icon_inner {
    width: 28px;
}

.header .nav_item:nth-child(3) .icon_inner {
    width: 30px;
}

.header .nav_item:nth-child(4) .icon_inner {
    width: 33px;
}

.header .nav_item:nth-child(5) .icon_inner {
    width: 35px;
}

.header .nav_item:last-child .icon_inner {
    width: 28px;
}

.header .nav_item span {
    font-size: 15px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.5;
}

.header .sns_list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .sns_item {
    width: 48px;
}

.header .drawer_btn {
    display: none;
}

@media(max-width:834px) {
    .header {
        padding: 10px 15px;
    }

    .header .site_logo {
        width: max(156px, 41.6vw);
    }

    .header .header_right {
        flex-direction: column;
        padding: max(40px, 5vw);
        position: absolute;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, .8);
        opacity: 0;
        pointer-events: none;
        z-index: -9999;
        transition: all ease .5s;
    }

    .header .header_right.open {
        opacity: 1;
        pointer-events: all;
        z-index: 10000;
    }

    .header .header_nav {
        width: 100%;
    }

    .header .nav_list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 40px;
    }

    .header .nav_item {
        padding: 25px 0;
        width: 100%;
        border-top: 1px dashed var(--white);
    }

    .header .nav_item:last-child {
        border-bottom: 1px dashed var(--white);
    }

    .header .nav_item a {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .header .nav_item .icon_inner {
        width: 35px;
    }

    .header .nav_item span {
        font-size: 18px;
    }

    .header .sns_list {
        justify-content: center;
    }

    .header .sns_item {
        width: 60px;
    }

    .header .drawer_btn {
        display: block;
        width: 44px;
        height: 38px;
        padding: 12px;
        background: var(--white);
        border-radius: 5px;
    }

    .header .drawer_btn .line_inner {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .header .drawer_btn .drawer_line {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: var(--black);
        transition: all ease .5s;
        position: absolute;
    }

    .header .drawer_btn .drawer_line:first-child {
        top: 0;
        left: 0;
    }

    .header .drawer_btn.open .drawer_line:first-child {
        top: 6px;
        transform: rotate(45deg);
    }

    .header .drawer_btn .drawer_line:nth-child(2) {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .header .drawer_btn.open .drawer_line:nth-child(2) {
        opacity: 0;
    }

    .header .drawer_btn .drawer_line:last-child {
        bottom: 0;
        left: 0;
    }

    .header .drawer_btn.open .drawer_line:last-child {
        bottom: 6px;
        transform: rotate(-45deg);
    }

}


/* ---------- ここからScroll Top　---------- */
.scroll_top {
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}


/* ---------- ここからFooter　---------- */
.footer {
    background: url(../images/footer_bg.png) no-repeat center/cover;
    padding: 40px 0;
}

.footer .footer_inner {
    max-width: 1180px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}

.footer .footer_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer .site_logo {
    width: max(273px, 16.3vw);
}

.footer .footer_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer .footer_nav {
    margin-bottom: 25px;
}

.footer .nav_list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .nav_item a {
   display: flex;
   align-items: center;
   gap: 10px;
}

.footer .nav_item .icon_inner {
    width: 35px;
}

.footer .nav_item span {
    font-size: 15px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.5;
}

.footer .sns_list {
    display: flex;
    gap: 20px;
}

.footer .sns_item {
    width: 48px;
}

.footer .copyright {
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

@media(max-width: 834px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer .footer_flex {
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin-bottom: 60px;
    }

    .footer .site_logo {
        width: 273px;
    }

    .footer .footer_right {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
        justify-content: center;
    }

    .footer .footer_nav {
        margin-bottom: 0;
    }

    .footer .nav_list {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .sns_list {
       flex-direction: column;
    }

    .footer .copyright {
        font-size: 11px;
    } 
}

