@charset "utf-8";

/* ==================================================
contents
================================================== */
/* Common style */
.section_ttl{
    margin-bottom: 35px;
}
/* cnt */
.cnt_inner {
    padding-left: calc((60 / 1280) * 100vw);
    padding-bottom: 60px;
    padding-top: 35px;
}

.carousel_item{
    position: relative;
    color: #ffffff;
    background-color: #000000;
}
.carousel_cnt{
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 0;
    padding: 40px 40px;
    width: 100%;
    max-width: 680px;
    color: #ffffff;
    transition: opacity 0.3s;
}
.carousel_cnt a{
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    background-color: transparent;
}
.carousel_item a .head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 62.5%;
    margin-bottom: 10px;
    margin-top: 18px;
}
.carousel_item a .category {
    padding: 4px 10px;
    padding-bottom: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.carousel_item a .category {
	display: none;
}
.carousel_item a .category1,
.carousel_item a .category2,
.carousel_item a .category3,
.carousel_item a .category4,
.carousel_item a .category5 {
	display: block;
}
.carousel_item a .date {
    letter-spacing: 0.05em;
    line-height: 1;
}
.carousel_item a .ttl {
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 125%;
}
.carousel_item .carousel_img img{
    width: 100%;
    height: 100vh;
    vertical-align: top;
    object-fit: cover;
}
.carousel_item .tag {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.carousel_item .tag a {
    white-space: nowrap;
    font-size: 62.5%;
    letter-spacing: 0.16em;
}
/* Mainvs section */
#tmp_mainvs{
    color: #ffffff;
    background-color: #000000;
    margin-bottom: 50px;
}
#tmp_mainvs .carousel_item:before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 50%;
    z-index: 1;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), color-stop(30%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
}
#tmp_mainvs .carousel_cnt{
    bottom: 37px;
}
#tmp_mainvs .carousel_item a .date{
    margin-top: 1px;
}
#tmp_mainvs .carousel_item .tag{
    margin-top: 10px;
}
#tmp_mainvs .carousel_item .tag .tag_li{
    display: none;
}
#tmp_mainvs .carousel_item .tag .tag_li1,
#tmp_mainvs .carousel_item .tag .tag_li2,
#tmp_mainvs .carousel_item .tag .tag_li3,
#tmp_mainvs .carousel_item .tag .tag_li4,
#tmp_mainvs .carousel_item .tag .tag_li5,
#tmp_mainvs .carousel_item .tag .tag_li6,
#tmp_mainvs .carousel_item .tag .tag_li7,
#tmp_mainvs .carousel_item .tag .tag_li8,
#tmp_mainvs .carousel_item .tag .tag_li9,
#tmp_mainvs .carousel_item .tag .tag_li10,
#tmp_mainvs .carousel_item .tag .tag_li11,
#tmp_mainvs .carousel_item .tag .tag_li12,
#tmp_mainvs .carousel_item .tag .tag_li13,
#tmp_mainvs .carousel_item .tag .tag_li14,
#tmp_mainvs .carousel_item .tag .tag_li15{
    display: block;
}
#tmp_mainvs .carousel_item .carousel_img{
    width: 100%;
    overflow: hidden;
}
#tmp_mainvs .carousel_item .carousel_img img {
    transform-origin: center;
    transition: transform 4s ease-in-out;
}
#tmp_mainvs .splide__slide.prev .carousel_img img,
#tmp_mainvs .splide__slide.is-active .carousel_img img,
#tmp_mainvs .splide__slide.is-prev .carousel_img img {
    animation: mainvsZoom 4s linear forwards;
}
#tmp_mainvs .paused .splide__slide.is-active .carousel_img img {
	animation-play-state: paused;
}
@keyframes mainvsZoom {
    from {
        transform: scale(1);
        transition: none;
    }
    to {
        transform: scale(1.02);
        transition: none;
    }
}
#tmp_mv_carousel .splide__controls {
    left: 40px;
    right: 40px;
    justify-content: flex-end;
}
/* Custom paging */
#tmp_mv_carousel .page_wrap {
    width: 60%;
    max-width: 600px;
    right: 0;
    bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 5px;
}
#tmp_mv_carousel .page_item {
    position: relative;
    width: calc(100% / 4 - 5px);
}
#tmp_mv_carousel .page_item .splide__pagination__page {
    text-indent: -9999px;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: inherit;
    border-radius: 0;
}
#tmp_mv_carousel .page_item .splide__pagination__page.is-active {
    transform: unset;
}
#tmp_mv_carousel .page_item .slider_progress {
    position: absolute;
    top: 0;
    margin: 12px 0;
    height: 1px;
    width: 100%;
    background-color: hsl(0deg 0% 100% / 20%);
}
#tmp_mv_carousel .page_item .slider_progress .slider_progress_bar {
    position: absolute;
    top: 0;
    height: 1px;
    background-color: white;
}
/* Magazine section */
#tmp_magazine{
    overflow: hidden;
    margin-bottom: 65px;
}
#tmp_magazine .splide__track{
    overflow: visible;
}
#tmp_magazine h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/magazine_eng.png);
}
#tmp_magazine .magazine_ttl{
    padding-right: 60px;
}
#tmp_magazine h3.sub_ttl{
    min-height: 30px;
    font-size: 75%;
    color: inherit;
    background: transparent;
    background-repeat: no-repeat;
    background-position: left top;
    border-bottom: solid 1px #a0122c;
    padding-bottom: 16px;
    margin-bottom: 40px;
}
#tmp_magazine .magazine_arrival h3.sub_ttl{
    padding-left: 127px;
    background-image: url(/site/shared/templates/naranoki_top/images/icon/arrival_eng.png);
}
#tmp_magazine .magazine_interview h3.sub_ttl{
    padding-left: 107px;
    background-image: url(/site/shared/templates/naranoki_top/images/icon/interview_eng.png);
}
#tmp_magazine .magazine_arrival{
    margin-bottom: 103px;
}
#tmp_magazine .block_item .tag{
    margin-top: 24px;
}
#tmp_magazine .more_link{
    margin-top: 80px;
}
#tmp_magazine .more_link > a{
    font-size: 87.5%;
}
/* Carousel */
#tmp_magazine .splide_common .splide__slide{
    padding-right: 40px;
}
#tmp_magazine .splide_common .splide__controls{
    position: static;
}
#tmp_magazine .splide_common .splide__arrow{
    position: absolute;
}
#tmp_magazine .splide_common .splide__toggle{
    margin-bottom: 10px;
}
#tmp_magazine .splide_common .splide__arrow.disabled{
    display: none;
}
#tmp_magazine .splide_common .splide__arrow--prev {
    left: 20px;
    right: auto;
}
#tmp_magazine .splide_common .splide__arrow--next {
    right: 60px;
}
/* About section */
#tmp_about{
    margin-bottom: 40px;
}
#tmp_about .about_wrap{
    display: flex;
}
#tmp_about h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/about_eng.png);
    margin-bottom: 32px;
}
#tmp_about .about_cnt {
    width: 50%;
    max-width: 500px;
    padding-right: 40px;
    padding-top: 5%;
}
#tmp_about .about_sub_ttl{
    font-size: 137.5%;
    margin-bottom: 19px;
}
#tmp_about .about_cnt .des{
    line-height: 2;
    margin-bottom: 16px;
}
#tmp_about .about_img{
    display: flex;
    align-items: center;
    flex: 1;
}
#tmp_about .about_img > p{
    width: 100%;
}
#tmp_about .about_img img{
    width: 100%;
    height: auto;
    vertical-align: top;
}
/* Introduce section */
#tmp_introduce h2.section_ttl{
    color: #ffffff;
    background-color: transparent;
    margin-bottom: 31px;
}
#tmp_introduce .carousel_item:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}
#tmp_introduce .carousel_item.story h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/story_eng.png);
}
#tmp_introduce .carousel_item.product h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/product_eng.png);
}
#tmp_introduce .carousel_item.archive h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/archive_eng.png);
}
#tmp_introduce .carousel_item.library h2.section_ttl{
    background-image: url(/site/shared/templates/naranoki_top/images/icon/library_eng.png);
}
#tmp_introduce .carousel_cnt{
    bottom: 22px;
}
#tmp_introduce .carousel_cnt .des{
    font-size: 100%;
    margin-bottom: 16px;
}
#tmp_introduce .more_link > a > span:before{
    border-color: #ffffff;
    transition: 0.3s ease-in-out background-color, 0.3s ease-in-out border-color;
}
#tmp_introduce .more_link > a > span:after{
    background-image: url(/site/shared/site_naranoki/images/icon/more_icon.png);
}
#tmp_introduce .splide_common .splide__arrow{
    position: absolute;
}
/* Style Hover */
.carousel_cnt a:hover .ttl,
.carousel_item .tag a:hover{
    text-decoration: underline;
}
#tmp_introduce .more_link > a:hover span:before{
	border-color: #a0122c;
}
/* ==================================================
font
================================================== */
#tmp_magazine h3.sub_ttl,
#tmp_about .about_sub_ttl,
#tmp_introduce .carousel_cnt .des{
	font-family: "Zen Old Mincho", "Noto Serif JP", serif;
	font-weight: normal;
}
/* ==================================================
no js
================================================== */
.no_javascript #tmp_mv_carousel.splide,
.no_javascript #tmp_magazine .splide,
.no_javascript #tmp_introduce_carousel.splide{
    visibility: visible;
}
.no_javascript #tmp_mainvs .splide__list,
#tmp_mainvs .no-splide .splide__list,
.no_javascript #tmp_introduce_carousel .splide__list,
#tmp_introduce_carousel.no-splide .splide__list{
    display: block;
    max-height: 100vh;
    overflow-y: auto;
}
.no_javascript #tmp_mainvs .splide__list .splide__slide:not(:last-child),
.no_javascript #tmp_introduce_carousel .splide__list .splide__slide:not(:last-child){
    margin-bottom: 10px;
}
.no_javascript #tmp_mainvs .carousel_item .carousel_img img,
#tmp_mainvs .no-splide .carousel_item .carousel_img img {
    transform: scale(1);
}
.no_javascript #tmp_magazine .splide__list{
    flex-wrap: wrap;
    gap: 50px 30px;
}
.no_javascript #tmp_magazine .splide__list .splide__slide{
    width: calc((100% - 60px) / 3);
    padding-right: 0;
}
#tmp_magazine .no-splide .splide__list .splide__slide{
    width: 40%;
    padding-right: 40px;
}