/*
Theme Name: +art
Theme URI: 
Description: 
Version: 1.0
Author: TechPR
*/

@charset "utf-8";

/* animation
----------------------------------------------------------------*/
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}



@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

/* スライド全体 */
.swiper-slide {
  transition: transform 0.6s;
}


/* Preferences
----------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
}
/* html5 reset css */
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, dialog, figure, footer, header,hgroup, menu, nav, section,time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; background: transparent; } article, aside, dialog, figure, footer, header,hgroup, nav, section {display:block;} nav ul {list-style:none;} blockquote, q {quotes:none;} blockquote:before, blockquote:after,q:before, q:after { content:''; content:none; } ins { background-color:#ff9; color:#000; text-decoration:none; } mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; } del {text-decoration: line-through;} abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; } hr { display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0; } input, select {vertical-align:middle;} 
/* //html5 reset css */

html {
    min-width: 1200px;
}
main{
     padding-top: 90px;
}
body {
    line-height: 1.89;
    color: #202020;
    background: #F8F8F8;
    /*letter-spacing: .07rem;*/
    position: relative;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    /*font-family: arno-pro-display,'Noto Serif', serif;*/
    font-family: ;
    font-weight: 400;
    font-style: normal;
    word-break: break-word;
    font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
}
.en{
    font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    font-style: normal;
    -webkit-font-smoothing: unset;
}
table{
    border-collapse: collapse;
    width: 100%;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}
a{
    color: #1f140f;
    text-decoration: none;
    outline: none;
    display: block;
    transition: all .5s;
}
p{
    /* margin-bottom: 1em; */
}
blockquote{
    margin: 0 0 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
}
blockquote p{margin: 0;}


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

    main {
        padding-top: 70px;
    }
    html {
        min-width: auto;
    }
    body{
        font-size: 13px;
    }

}

/* public css
----------------------------------------------------------------*/
.clear{clear: both;}
.cf:after {visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;overflow: hidden;}
* html .cf{ zoom: 1; } /* ie6 */
*:first-child+html .cf { zoom: 1; } /* ie7 */

.alignleft{float: left; margin-right: 40px;}
.alignright{float: right; margin-left: 40px;}
.aligncenter{text-align: center; display: block; margin-left: auto; margin-right: auto; }
@media screen and (max-width: 600px) {
    .alignleft{
        float: none;
        margin-right: 0;
    }
    .alignright{
        float: none;
        margin-left: 0;
    }
}

.middle{
    vertical-align: middle;
}
.center{text-align: center !important;}
.left{text-align: left !important;}
.right{text-align: right !important;}
.red{color: #d70e19;}
.small{font-size: 12px;}

.fright{float: right;}
.fleft{float: left;}

.white{
    color: #fff !important;
}

.blue{
    color: #2777BA;
}

.sh{
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/*space*/
.mt0{margin-top: 0;}.mt5{margin-top: 5px;}.mt10{margin-top: 10px;}.mt15{margin-top: 15px;}.mt20{margin-top: 20px;}.mt25{margin-top: 25px;}.mt30{margin-top: 30px;}.mt35{margin-top: 35px;}.mt40{margin-top: 40px;}.mt45{margin-top: 45px;}.mt50{margin-top: 50px;}.mt100{margin-top: 100px;}
.mr0{margin-right: 0;}.mr5{margin-right: 5px;}.mr10{margin-right: 10px;}.mr15{margin-right: 15px;}.mr20{margin-right: 20px;}.mr25{margin-right: 25px;}.mr30{margin-right: 30px;}.mr35{margin-right: 35px;}.mr40{margin-right: 40px;}.mr45{margin-right: 45px;}.mr50{margin-right: 50px;}.mr100{margin-right: 100px;}
.mb0{margin-bottom: 0;}.mb5{margin-bottom: 5px;}.mb10{margin-bottom: 10px;}.mb15{margin-bottom: 15px;}.mb20{margin-bottom: 20px;}.mb25{margin-bottom: 25px;}.mb30{margin-bottom: 30px;}.mb35{margin-bottom: 35px;}.mb40{margin-bottom: 40px;}.mb45{margin-bottom: 45px;}.mb50{margin-bottom: 50px;}.mb100{margin-bottom: 100px;}.ml0{margin-left: 0;}
.ml5{margin-left: 5px;}.ml10{margin-left: 10px;}.ml15{margin-left: 15px;}.ml20{margin-left: 20px;}.ml25{margin-left: 25px;}.ml30{margin-left: 30px;}.ml35{margin-left: 35px;}.ml40{margin-left: 40px;}.ml45{margin-left: 45px;}.ml50{margin-left: 50px;}.ml100{margin-left: 100px;}.pt0{padding-top: 0;}
.pt5{padding-top: 5px;}.pt10{padding-top: 10px;}.pt15{padding-top: 15px;}.pt20{padding-top: 20px;}.pt25{padding-top: 25px;}.pt30{padding-top: 30px;}.pt35{padding-top: 35px;}.pt40{padding-top: 40px;}.pt45{padding-top: 45px;}.pt50{padding-top: 50px;}.pt100{padding-top: 100px;}
.pr0{padding-right: 0;}.pr5{padding-right: 5px;}.pr10{padding-right: 10px;}.pr15{padding-right: 15px;}.pr20{padding-right: 20px;}.pr25{padding-right: 25px;}.pr30{padding-right: 30px;}.pr35{padding-right: 35px;}.pr40{padding-right: 40px;}.pr45{padding-right: 45px;}.pr50{padding-right: 50px;}.pr100{padding-right: 100px;}
.pb0{padding-bottom: 0;}.pb5{padding-bottom: 5px;}.pb10{padding-bottom: 10px;}.pb15{padding-bottom: 15px;}.pb20{padding-bottom: 20px;}.pb25{padding-bottom: 25px;}.pb30{padding-bottom: 30px;}.pb35{padding-bottom: 35px;}.pb40{padding-bottom: 40px;}.pb45{padding-bottom: 45px;}.pb50{padding-bottom: 50px;}.pb100{padding-bottom: 100px;}.pl0{padding-left: 0;}
.pl5{padding-left: 5px;}.pl10{padding-left: 10px;}.pl15{padding-left: 15px;}.pl20{padding-left: 20px;}.pl25{padding-left: 25px;}.pl30{padding-left: 30px;}.pl35{padding-left: 35px;}.pl40{padding-left: 40px;}.pl45{padding-left: 45px;}.pl50{padding-left: 50px;}.pl100{padding-left: 100px;}

/* wp plugin
----------------------------------------------------------------*/
/* pagenavi */
.wp-pagenavi {
    clear: both;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding-top: 2rem;
    padding-bottom: 12px;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    padding: 0;
    display: inline-flex;
    display: -webkit-inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
}
.wp-pagenavi a {
    color: #000;
}
.wp-pagenavi .pages{
    border: none;
    padding: 0;
    display: block;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    color: #777;
    margin-bottom: 16px;
    width: 100%;
    height: auto;
}
.wp-pagenavi > :nth-child(2){
    border-left: 1px solid #000;
}
.wp-pagenavi .extend{
    display: none;
}
.wp-pagenavi a:hover{background-color: #000; color: #fff;}
.wp-pagenavi span.current{background-color: #000; color: #fff;}
.wp-pagenavi a.first {
    width: auto;
    padding: 0 12px;
}
.wp-pagenavi a.last {
    width: auto;
    padding: 0 12px;
}

@media screen and (max-width: 600px) {
    .wp-pagenavi{padding-top: 1.5rem;}
    .wp-pagenavi .pages{font-size: 14px;}
}

@media screen and (max-width: 767px){
    .wp-pagenavi a, .wp-pagenavi span{
        width: 32px;
        height: 32px;
    }

}


/* common（共通パーツ）
----------------------------------------------------------------*/

.top-section-inner{
    max-width: 1080px;
    margin: 0 auto;
    /* margin: 0 15%; */
}
article#top-article section{
    padding: 110px 0;
}
.top-section-head{
    margin-bottom: 50px;
}
.top-section-head-title {
    line-height: 1;
    font-size: 42px;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    /* letter-spacing: -1px; */
}
.top-section-head-title a{
    display: inline-block;
    color: #A50005;
}
.top-section-head-title a:hover{
    opacity: 0.6;
}
.top-section-head-title i{
    margin-left: 24px;
}

/* btn style */

.btn-simple{

}
.btn-simple a {
    line-height: 1;
    position: relative;
    font-weight: 500;
    display: inline-block;
}
.btn-simple a:after{
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    margin-top: 10px;
    background: #E8E8E8;
}
.btn-simple a:before{
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #A50005;
    transition: all .5s;
}
.btn-simple a:hover:before{
    width: 100%;
}

.btn-main{

}
.btn-main a{
    width: 300px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    background: #000000;
    color: #fff;
    margin: 0 auto;
    padding: 22px 0;
    position: relative;
}
.btn-main a span{
    position: relative;
    z-index: 1;
}
.btn-main a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: #A50005;
    transition: 0.5s;
}
.btn-main a:hover:before{
    width: 100%;
}

.link_decorate_arrow {
    position: absolute;
    bottom: 12px;
    right: 16px;
}


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

article#top-article section{
    padding: 64px 0;
}
.top-section-inner{
    padding: 0 6%;
}
.top-section-head{
    margin-bottom: 40px;
}
.top-section-head-title{
    font-size: 28px;
}

.btn-simple a{
    font-size: 13px;
}
.btn-simple a:before{
    width: 100%;
    height: 2px;
}

.btn-main a{
    width: 100%;
    font-size: 15px;
    padding: 22px 0;
}


}

/* base rayout */
.pc{
    display: block !important;
}
.sp{
    display: none !important;
}


@media screen and (max-width: 767px) {
    
.pc{
    display: none !important;
}
.sp{
    display: block !important;
}

}



/* img */
.img-wrap{
    width: 100%;
    height: 0;
    position: relative;
}
.img-wrap img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    font-family: 'object-fit: cover;';
}
.img-wrap iframe{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    font-family: 'object-fit: cover;';
}



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


}


/* 下層共通パーツ */

.page-visual-content-inner{
    max-width: 1080px;
    margin: 0 auto;
}
.under-section-inner{
    max-width: 1080px;
    margin: 0 auto;
}
#page-visual {
    background: #f2f2f2;
    padding: 88px 0 56px;
    position: relative;
}

.page-visual-content-title{
    font-size: 64px;
    line-height: 1;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.page-visual-content-title:after{
    content: "";
    display: block;
    width: 48px;
    height: 12px;
    background: #000000;
    /* background: #A50005; */
    margin-top: 8px;
}
.page-visual-content-bodycopy{
    font-size: 16px;
    font-weight: 500;
}

article#page-article section{
    padding: 80px 0;
}
article#page-article section:last-of-type{
    padding-bottom: 110px;
}


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

#page-visual{
    padding: 72px 0 56px;
}
.page-visual-content-inner{
    padding: 0 6%;
}
.page-visual-content-title{
    font-size: 40px;
}
.page-visual-content-title.title-sm{
    font-size: 32px;
}
.page-visual-content-title:after{
    width: 40px;
    height: 8px;
    margin-top: 12px;
}
.page-visual-content-bodycopy{
    font-size: 14px;
}

.under-section-inner{
    padding: 0 6%;
}
article#page-article section{
    padding: 64px 0;
}
article#page-article section:last-of-type {
    padding-bottom: 64px;
}

}







/* header
----------------------------------------------------------------*/

header#common-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F8F8F8;
    z-index: 9;
    box-shadow: 0px 4px 12px 0px rgb(126 28 201 / 10%);
    min-width: 1200px;
}
.header-inner {
    padding: 0 30px;
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
#header-logo a:hover{
    opacity: 0.7;
}
ul.header-nav-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
ul.header-nav-list li{
    padding: 0 15px;
}
ul.header-nav-list li a{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1;
}
ul.header-nav-list li a:hover{
    color: #A50005;
}
ul.header-nav-list li.btn-conversion{
    padding: 0;
}
ul.header-nav-list li.btn-conversion a{
    padding: 12.5px 16px;
    /* box-sizing: border-box; */
}
ul.header-nav-list li.btn-conversion a i {
    margin-left: 8px;
}
ul.header-nav-list li.btn-conversion.btn-contact{
    margin-left: 15px;
}
ul.header-nav-list li.btn-conversion.btn-contact a{
    background: #A50005;
    color: #fff;
    border: 1px solid #A50005;
    box-sizing: border-box;
}
ul.header-nav-list li.btn-conversion.btn-contact a:hover{
    color: #A50005;
    background: #fff;
}
ul.header-nav-list li.btn-conversion.btn-contact a i{
    /* font-size: 17px; */
}
ul.header-nav-list li.btn-conversion.btn-shop{
    margin-left: 15px;
}
ul.header-nav-list li.btn-conversion.btn-shop a{
    background: #000000;
    color: #fff;
    border: 1px solid #000000;
    box-sizing: border-box;
}
ul.header-nav-list li.btn-conversion.btn-shop a:hover{
    color: #000000;
    background: #fff;
}
.overlay {
    display: none;
}

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

    header#common-header{
        min-width: auto;        
    }
    .header-inner{
        height: 70px;
        padding: 0 6%;
    }
    nav#header-nav{
        display: none;
        position: fixed;
        width: 275px;
        height: 100%;
        background: #000000;
        top: 0;
        right: 0;
        z-index: 9999;
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: slideInRight;
        animation-name: slideInRight;
    }
    .open nav#header-nav {
        display: block;
        box-sizing: border-box;
        padding: 70px 10%;
    }
    ul.header-nav-list li{
        padding: 14px 0;
    }
    ul.header-nav-list li a{
        color: #fff;
        font-size: 16px;
    }
    #header-logo img{
        width: 130px;
        display: block;
    }

    .nav-toggle-box{
        position: relative;
        z-index: 99999;
    }
    #nav-toggle-box-btn{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        width: 25px;
        height: 16px;
        cursor: pointer;
        position: relative;
        z-index: 999;
    }
    #nav-toggle-box-btn span{
        background: #000000;
        display: block;
        width: 100%;
        height: 2px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
    }
    #nav-toggle-box-btn span:nth-of-type(1){
        top: 0;
    }
    #nav-toggle-box-btn.active span:nth-of-type(1){
        -webkit-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg);
    }
    #nav-toggle-box-btn span:nth-of-type(2){
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    #nav-toggle-box-btn.active span:nth-of-type(2){
        opacity: 0;
    }
    #nav-toggle-box-btn span:nth-of-type(3){
        bottom: 0;
    }
    #nav-toggle-box-btn.active span:nth-of-type(3){
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg);
    }
    #nav-toggle-box-btn.active span{
        background: #fff;
    }
    .open .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        display: block;
    }

    ul.header-nav-list{
        display: block;
    }

    ul.header-nav-list li.btn-conversion a{
        padding: 14px 0;
    }
    ul.header-nav-list li.btn-conversion.btn-contact{
        margin-left: 0;
        margin-top: 24px;
    }
    ul.header-nav-list li.btn-conversion.btn-shop {
        margin-left: 0;
        margin-top: 15px;
    }
    ul.header-nav-list li.btn-conversion.btn-contact a{
        text-align: center;
    }
    ul.header-nav-list li.btn-conversion.btn-shop a{
        border: 1px solid #fff;
        text-align: center;
    }




}


/* footer
----------------------------------------------------------------*/

footer#common-footer{
    background: #1E1E1E;
    color: #fff;
}
.footer-inner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 0;
}

#common-footer-top{
    margin-bottom: 56px;
}
.common-contact-link{

}
.common-contact-link a{
    color: #fff;
    display: inline-block;
    line-height: 1;
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
}
.common-contact-link a:hover{
    color: rgba(255,255,255,0.7);
}
.common-contact-link a img{
    transition: all .5s;
}
.common-contact-link a:hover img{
    opacity: 0.7;
}
.common-contact-link a:after{
    content: "";
    display: block;
    background: #E8E8E8;
    height: 1px;
    width: 100%;
    margin-top: 16px;
}
.common-contact-link a:before{
    content: "";
    display: block;
    height: 1px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #A50005;
    transition: all .5s;
}
.common-contact-link a:hover:before{
    width: 100%;
}


.common-contact-link-text{
    line-height: 1;
    display: inline-block;
    margin-right: 40px;
}

#common-footer-middle{
    margin-bottom: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.common-footer-middle-left{
    width: calc(100% - 450px);
}
nav#footer-nav{
    display: flex;
}
ul.footer-nav-list{
    margin-right: 72px;
}
ul.footer-nav-list li{
    line-height: 15px;
}
ul.footer-nav-list li:not(:first-child){
    margin-top: 20px;
}
ul.footer-nav-list li a{
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
}
ul.footer-nav-list li a:hover{
    color: #fff;
}
ul.footer-nav-list li.en-page a{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
ul.footer-nav-list li.en-page a:hover{
    color: rgba(255,255,255,0.7);
}
.common-footer-middle-right{
    width: 450px;
}

#common-footer-bottom{
    border-top: 1px solid #646464;
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.common-footer-bottom-left{
    width: calc(100% - 450px);
}
.common-footer-bottom-right{
    width: 450px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.common-footer-middle-right-content{
    display: flex;
    flex-wrap: wrap;
}
.footer-followus{
    width: 50%;
}
.footer-followus-item {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-onlineshop{
    width: 50%;
}
.footer-onlineshop-item {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-onlineshop-link a{
    display: inline-block;
    opacity: 0.7;
}
.footer-onlineshop-link a:hover{
    opacity: 1;
}

ul.footer-followus-link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
ul.footer-followus-link li{
    padding: 0 5px;
}
ul.footer-followus-link li a{
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.7);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
ul.footer-followus-link li a:hover{
    color: #fff;
    border: 1px solid #fff;
}
ul.footer-followus-link li a i{
    font-size: 13px;
}

ul.footer-language-link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
ul.footer-language-link li{
    display: flex;
    align-items: center;
}
ul.footer-language-link li:not(:first-child):before{
    content: "｜";
    display: block;
    color: rgba(255,255,255,0.7);
    margin: 0 8px;
}
ul.footer-language-link li a{
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
ul.footer-language-link li a:hover{
    color: #fff;
}
ul.footer-language-link li.active a{
    color: #A50005;
    pointer-events: none;
}

.footer-privacy{
}
.footer-privacy a{
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.footer-privacy a:hover{
    opacity: 0.7;
}
.copyright{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

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

.footer-inner{
    padding: 90px 12% 40px;
}
.common-footer-middle-left{
    width: 100%;
}
.common-footer-middle-right{
    width: 100%;
}
nav#footer-nav{
    display: none;
}
.common-contact-link {
    text-align: center;
}
.common-contact-link a{
    font-size: 25px;
}
.common-contact-link-text {
    margin-right: 24px;
}
.common-contact-link a img{
    width: 16px;
}

.common-footer-middle-right-content{
    display: block;
}
.footer-followus{
    width: 100%;
}
.footer-onlineshop{
    width: 100%;
    margin-top: 40px;
}
#common-footer-top{
    margin-bottom: 48px;
}
#common-footer-middle{
    margin-bottom: 32px;
}
.footer-followus-item{
    font-size: 13px;
}
ul.footer-followus-link li a {
    width: 40px;
    height: 40px;
}
ul.footer-followus-link li a i {
    font-size: 17px;
}
.footer-onlineshop-link a img{
    width: 170px;
}
ul.footer-followus-link{
    margin: 0 -8px;
}
ul.footer-followus-link li{
    padding: 0 8px;
}
#common-footer-bottom{
    display: block;
    padding-top: 28px;
}
.common-footer-bottom-left{
    width: 100%;
}
.common-footer-bottom-right{
    width: 100%;
    display: block;
    margin-top: 32px;
}
ul.footer-language-link {
    justify-content: center;
}
ul.footer-language-link li a {
    font-size: 15px;
}
ul.footer-language-link li:not(:first-child):before {
    margin: 0 16px;
}
.footer-privacy {
    text-align: center;
}
.footer-privacy a {
    text-decoration: underline;
}
.copyright {
    font-size: 11px;
    margin-top: 40px;
    text-align: center;
}



}




/* TOP
----------------------------------------------------------------*/


/* main-visual */
#main-visual{
    height: calc(100vh - 90px);
    min-height: 650px;
    background-image: url(img/main_visual01.png);
    background-position: center left;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}
#main-visual-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


/*#main-visual-slider .swiper-slide{
    background-position: center left;
    background-size: cover;
}
#main-visual-slider .swiper-slide.photo01{
    background-image: url(img/main_visual01.png);
}
#main-visual-slider .swiper-slide.photo02{
    background-image: url(img/main_visual02.png);
}
#main-visual-slider .swiper-slide.photo03{
    background-image: url(img/main_visual03.png);
}
#main-visual-slider .swiper-slide.photo04{
    background-image: url(img/main_visual04.png);
}*/

#main-visual-content:after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: #A50005;
}
#main-visual-content{
    color: #fff;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.main-visual-overlay{
    background: rgb(15,15,15);
    background: linear-gradient(90deg, rgba(15,15,15,0.75) 0%, rgba(90,90,90,0.15) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    z-index: 1;
}
.main-visual-content-inner{
    margin-left: -30px;
    padding: 24px 0 20px;
}
.main-visual-content-catchcopy{
    font-family: 'Poppins', sans-serif;
    line-height: 1.133333;
    font-size: 66px;
    font-weight: 700;
    letter-spacing: -2px;
    padding-left: 130px;
    margin-bottom: 30px;
}
.main-visual-content-subcopy {
    font-size: 21px;
    font-weight: 700;
    background: #000000;
    padding: 19px 32px 21px 130px;
    display: inline-block;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.main-visual-content-bodycopy{
    line-height: 2;
    font-size: 17px;
    font-weight: 500;
    padding-left: 130px;
    margin-top: 24px;
}

ul.main-visual-sns{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 25px;
    z-index: 2;
}
ul.main-visual-sns li{
    padding: 0 5px;
}
ul.main-visual-sns li a{
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.7);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
ul.main-visual-sns li a:hover{
    color: #fff;
    border: 1px solid #fff;
}
ul.main-visual-sns li a i{
    font-size: 17px;
}


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

#main-visual{
    min-height: auto;
    height: auto;
    padding: 64px 0 56px;
}
#main-visual-content:after{
    width: 40px;
}
.main-visual-content-inner {
    margin-left: 0;
    padding: 20px 6% 20px 0;
}
.main-visual-content-catchcopy{
    padding-left: calc(40px + 6%);
    font-size: 42px;
    margin-bottom: 24px;
}
.main-visual-content-subcopy{
    font-size: 16px;
    padding: 15px 16px 15px calc(40px + 6%);
}
.main-visual-content-bodycopy{
    font-size: 13px;
    padding-left: calc(40px + 6%);
    line-height: 1.89;
    margin-top: 20px;
}
ul.main-visual-sns.main-visual-sns-pc{
    display: none;
}

}



/* top-news */

section#top-news {
    overflow: hidden;
}
section#top-news .top-section-head .top-section-inner,
section#top-exhibition .top-section-head .top-section-inner,
section#top-works .top-section-head .top-section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.top-news-list-wrap{
    overflow-x: scroll;
}
ul.top-news-list{
    /* display: flex; */
}
ul.top-news-list li{
    width: 390px;
    /* padding-right: 45px; */
    /* margin-right: 45px; */
}
ul.top-news-list li a .news-thumbnail{
    overflow: hidden;
    text-align: center;
    background: #fff;
}
ul.top-news-list li a .news-thumbnail img{
    height: calc(390px / 1.7778);
    transition: transform .5s ease;
    object-fit: cover;
}
ul.top-news-list li a:hover .news-thumbnail img{
    transform: scale(1.1);
}
.card02 .swiper {
    overflow: visible;
}
.top-news-btn {
    display: flex;
    align-items: center;
}
.swiper-btn-prev{
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    cursor: pointer;
    transition: transform .5s ease;
}
.swiper-btn-prev:hover{
    transform: scale(1.2);
}
.swiper-btn-prev img{
    transform: scale(-1, 1);
}
.swiper-btn-next{
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    cursor: pointer;
    transition: transform .5s ease;
}
.swiper-btn-next:hover{
    transform: scale(1.2);
}
.swiper-button-disabled{
    background: #F8F8F8;
    opacity: 0.7;
    cursor: auto;
}
.swiper-button-disabled:hover{
    transform: scale(1)
}

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

section#top-news .top-section-head{
    margin-bottom: 32px;
}
section#top-news .btn-simple {
    text-align: center;
    margin-top: 32px;
}
ul.top-news-list li {
    width: 85%;
}
.swiper-btn-next{
    margin-right: 0;
}
.swiper-btn-prev{
    width: 40px;
    height: 40px;
}
.swiper-btn-next{
    width: 40px;
    height: 40px;
}
ul.top-news-list li a .news-thumbnail img {
    height: 42.2vw;
}

}



/* top-service */
article#top-article section#top-service{
    background: #fff;
    padding-bottom: 0;
}
#top-service-head{
    margin-bottom: 56px;
}
#top-service-head .top-section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.top-service-head-content{
    
}
.top-service-head-content-catchcopy{
    text-align: center;
    line-height: 1;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 32px;
}
.top-service-head-content-description {
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
}
#top-service-body{
    margin-bottom: 60px;
}
ul.top-service-body-list{
    display: flex;
    flex-wrap: wrap;
    max-width: 1680px;
    margin: 0 auto;
}
ul.top-service-body-list li{
    width: 50%;
    box-sizing: border-box;
}
ul.top-service-body-list li.gallery{
    padding-right: 20px;
}
ul.top-service-body-list li.shop{
    padding-left: 20px;
}
.top-service-body-list-img{
    height: 450px;
    margin-bottom: 40px;
}
ul.top-service-body-list li.gallery .top-service-body-list-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
ul.top-service-body-list li.shop .top-service-body-list-img{
    display: flex;
    align-items: flex-end;
}
ul.top-service-body-list li.gallery .top-service-body-list-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
ul.top-service-body-list li.shop .top-service-body-list-content{
    
}
.top-service-body-list-content-inner{
    max-width: 540px;
    text-align: center;
    width: 100%;
}
.top-service-body-list-content-item-en{
    line-height: 1;
    font-size: 35px;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.top-service-body-list-content-item-jp{
    font-size: 16px;
    line-height: 1;
}
.top-service-body-list-content-item {
    margin-bottom: 30px;
}
.top-service-body-list-content p{
    color: #404040;
    font-weight: 500;
    font-size: 14px;
}

#top-service-foot{

}
#top-service-foot .btn-simple{
    text-align: center;
    margin-top: 65px;
}


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

#top-service-head{
    margin-bottom: 40px;
}
#top-service-body{
    margin-bottom: 40px;
}
.top-service-head-content-catchcopy{
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
}
.top-service-head-content-logo {
    width: 80%;
    margin: auto;
}
.top-service-head-content-description {
    font-size: 13px;
    margin-top: 16px;
}

ul.top-service-body-list{
    display: block;
}
ul.top-service-body-list li{
    width: 100%;
}
ul.top-service-body-list li.gallery{
    padding-right: 0;
    margin-bottom: 40px;
}
ul.top-service-body-list li.shop{
    padding-left: 0;
}
ul.top-service-body-list li.gallery .top-service-body-list-img {
    height: 54vw;
    margin-bottom: 32px;
}
ul.top-service-body-list li.shop .top-service-body-list-img {
    height: auto;
    width: 70%;
    margin: 0 auto 32px;
}

.top-service-body-list-content-inner{
    box-sizing: border-box;
    padding: 0 6%;
}
.top-service-body-list-content-item{
    margin-bottom: 24px;
}
.top-service-body-list-content-item-en {
    font-size: 28px;
    margin-bottom: 8px;
}
.top-service-body-list-content-item-jp {
    font-size: 14px;
}
.top-service-body-list-content p{
    font-size: 13px;
    text-align: left;
}

#top-service-foot .btn-simple{
    margin-top: 40px;
}


}



/* top-links */
article#top-article section#top-links{
    background: #fff;
    padding-bottom: 140px;
}
ul.top-links-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
ul.top-links-list li{
    width: 50%;
    box-sizing: border-box;
    padding: 0 20px;
}
.top-links-list-img {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}
ul.top-links-list li a .top-links-list-img img{
    height: auto;
    transition: transform .5s ease;
}
ul.top-links-list li a:hover .top-links-list-img img{
    transform: scale(1.1);
}
.top-links-list-name {
    line-height: 1;
    font-size: 35px;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

ul.top-links-list li p{
    font-size: 16px;
    font-weight: 500;
}


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

article#top-article section#top-links{
    padding-bottom: 72px;
}
ul.top-links-list{
    display: block;
    margin: 0;
}
ul.top-links-list li{
    width: 100%;
    padding: 0;
}
.top-links-list-name{
    font-size: 28px;
    margin-bottom: 8px;
}
ul.top-links-list li:first-of-type{
    margin-bottom: 40px;
}
ul.top-links-list li p{
    font-size: 13px;
}


}




/* top-company */
article#top-article section#top-company{
    padding-top: 75px;
    background: #fff;
    padding-bottom: 0;
}
.top-company-bg{
    background: url(img/cube_bg.png) center 0;
    background-size: 175px 175px;
    background-color: #1D1D1D;
    padding-bottom: 95px;
}
.top-company-img {
    height: 535px;
}
.top-company-photo {
    /* margin-bottom: 75px; */
    position: relative;
    bottom: 75px;
    max-width: 1680px;
    margin: 0 auto;
    text-align: right;
}
.top-company-photo-img{
    display: inline-block;
}
.top-company-photo-img:after{
    content: "";
    display: block;
    height: 5px;
    width: 100%;
    background: #A50005;
}

section#top-company .top-section-head-title{
    color: #fff;
}

ul.company-link-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -18px;
}
ul.company-link-list li{
    width: calc(100% / 4);
    padding: 0 18px;
    box-sizing: border-box;
}
ul.company-link-list li a{
    border: 1px solid #fff;
    color: #fff;
    position: relative;
    height: 320px;
    box-sizing: border-box;
}
ul.company-link-list li a:hover{
    opacity: 0.7;
}
.company-link-list-img {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.company-link-list-img img{
    /* margin-top: 56px; */
}
.company-link-list-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.company-link-list-content-name {
    padding: 24px 18px;
    line-height: 1;
}
.recruit-link{
    margin-top: 40px;
}
.recruit-link a{
    border: 1px solid #fff;
    line-height: 1;
    font-size: 35px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    height: 160px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.recruit-link a:hover{
    opacity: 0.7;
}

.top-company-table-wrap {
    background: #fff;
    margin-bottom: 50px;
    padding: 32px 48px 40px;
}
table.top-company-table{
    line-height: 1.75;
    font-size: 16px;
}
table.top-company-table tbody{

}
table.top-company-table tr{
    border-bottom: 1px solid #dfdfdf;
}
table.top-company-table tr th {
    width: 200px;
    text-align: left;
    padding: 16px 0;
}
table.top-company-table tr td{
    padding: 24px 0;
    color: #404040;
    font-weight: 500;
}
table.top-company-table tr:first-of-type th,table.top-company-table tr:first-of-type td{
    padding-top: 0;
}
.top-company-table-sm{
    font-size: 14px;
    color: #666;
    margin-left: 16px;
}

.map {
    margin-top: 24px;
}
.map iframe {
    display: block;
    width: 100%;
    height: 350px;
}


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

article#top-article section#top-company{
    padding-top: 0;
}
.top-company-bg {
    background-size: 100px 100px;
    padding-bottom: 64px;
}
.top-company-photo{
    bottom: 0;
    margin-bottom: 40px;
}
ul.company-link-list{
    margin: 0 -8px;
}
ul.company-link-list li{
    padding: 0 8px;
    width: 50%;
    margin-top: 16px;
}
ul.company-link-list li a {
    height: 175px;
}
ul.company-link-list li:nth-of-type(1){
    margin-top: 0;
}
ul.company-link-list li:nth-of-type(2){
    margin-top: 0;
}
.company-link-list-img img {
    margin-bottom: 16px;
    height: 32px;
    width: auto;
}
.company-link-list-content-name {
    padding: 24px 16px 32px;
    line-height: 1;
    font-size: 14px;
}
.link_decorate_arrow {
    bottom: 8px;
    right: 10px;
}
.link_decorate_arrow img{
    width: 50px;
}

.recruit-link {
    margin-top: 32px;
}
.recruit-link a {
    font-size: 22px;
    height: 90px;
}

.top-company-table-wrap{
    padding: 6%;
}
table.top-company-table{
    font-size: 13px;
}
table.top-company-table tr th{
    display: block;
    width: 100%;
    padding: 16px 0 0;
    font-size: 14px;
}
table.top-company-table tr td{
    padding: 4px 0 16px;
    display: block;
}
table.top-company-table tr:first-of-type td{
    padding-top: 4px;
}
.top-company-table-sm{
    font-size: 12px;
    display: block;
    margin-left: 0;
}

.map{
    margin-top: 16px;
}
.map iframe{
    height: 70vw
}



}




/* top-instagram */
.top-instagram-dammy{
    height: 640px;
    background: #e8e8e8;
}


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



}









/* NEWS
----------------------------------------------------------------*/

/* news一覧パーツ */
.news-info{
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.news-info-date{
    line-height: 1;
    color: #444444;
    font-family: 'Poppins', sans-serif;
}
.news-info-cat{
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.news-info-cat:before{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #404040;
    margin-right: 8px;
}
.news-info-cat.cat-exhibition:before{
    background: #A50005;
}
.news-info-cat.cat-information:before{
    background: #666666;
}
.news-title{
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 700;
}


#archive-content{
    display: flex;
    flex-wrap: wrap;
    flex-flow: row-reverse;
}
.archive-content-left{
    width: 250px;
}
.archive-content-right{
    width: calc(100% - 250px);
    box-sizing: border-box;
    padding-left: 40px;
}
.news-archive-title {
    font-size: 18px;
    font-weight: 700;
    padding: 14px 24px;
    line-height: 1.35;
    background: #f1f1f1;
    color: #000000;
    border-left: 4px solid #181818;
    margin-bottom: 32px;
}
ul.news-list{
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px 0;
}
ul.news-list li{
    width: 50%;
    box-sizing: border-box;
    padding: 40px 20px 0;
}
ul.news-list li a .news-thumbnail {
    overflow: hidden;
    text-align: center;
    background: #fff;
}
ul.news-list li a .news-thumbnail img {
    /*height: 210px;*/
    height: calc(375px / 1.7778);
    transition: transform .5s ease;
    object-fit: cover;
}
ul.news-list li a:hover .news-thumbnail img {
    transform: scale(1.1);
}
.archive-content-parts-caption {
    line-height: 1;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}
ul.archive-content-parts-list{

}
ul.archive-content-parts-list.cat-news-list li:not(:first-child){
    margin-top: 8px;
}
ul.archive-content-parts-list.cat-news-list li a{
    padding: 12px 16px;
    background: #fff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
ul.archive-content-parts-list.cat-news-list li a:hover{
    background: #000;
    color: #fff;
}
ul.archive-content-parts-list.cat-news-list li a:hover .news-info-cat.cat-all:before{
    background: #fff;
}
ul.archive-content-parts-list.cat-news-list li.active a{
    background: #000;
    color: #fff;
    pointer-events: none;
}
ul.archive-content-parts-list.cat-news-list li.active a .news-info-cat.cat-all:before{
    background: #fff;
}


ul.archive-content-parts-list li a .news-info-cat:before {
    width: 15px;
    height: 15px;
    margin-right: 12px;
}
.news-info-cat.cat-exhibition:before {
    background: #A50005;
}
.news-info-cat.cat-lottery:before{
    background: #00558f;
}

.news-info-cat.cat-all:before{
    border-radius: 0;
    background: #000;
    transition: all .5s;
}

ul.archive-content-parts-list.cat-news-list li a .news-info-cat{
    font-weight: 500;
}
.archive-content-parts-list-icon{
    position: relative;
    top: 1px;
}
.archive-content-parts-list-icon .material-symbols-outlined{
    font-size: 17px;
}


/* NEWS詳細ページ */
section#news-single{
    background: #fff;
}
#page-visual-content-decorate {
    position: absolute;
    bottom: -32px;
    right: 0;
    font-size: 200px;
    opacity: 0.08;
    line-height: 1;
    font-weight: 700;
    color: #A50005;
    font-family: 'Poppins', sans-serif;
}
.under-section-inner-sm{
    max-width: 900px;
    margin: 0 auto;
}
#single-section-head{
    padding: 0 48px 0;
}
.single-section-head-title {
    font-weight: 700;
    line-height: 1.3;
    font-size: 36px;
    margin-bottom: 16px;
}
.single-section-head-info.news-info {
    justify-content: flex-start;
}
.single-section-head-info.news-info .news-info-date{
    margin-right: 28px;
    font-size: 16px;
}
.single-section-head-info.news-info .news-info-cat{
    font-size: 16px;
}
.single-section-head-img{
    margin-top: 40px;
}
#single-section-body {
    margin-top: 48px;
}
#single-section-body{
    padding: 0 48px 64px;
    margin-top: 40px;
}
#single-section-body p{
    margin-top: 16px;
    line-height: 2;
}
#single-section-body > p:nth-of-type(1){
    /* margin-top: 0; */
}
#single-section-body h2 {
    margin: 60px 0 20px;
    padding: 7px 0 15px;
    font-size: 26px;
    font-weight: 700;
    border-bottom: 2px solid #181818;
    line-height: 1.55;
}

#single-section-body h3{
    /* color: #fff; */
    line-height: 1.35;
    font-size: 22px;
    font-weight: 700;
    /* border-left: 8px solid #2777BA; */
    /* padding-left: 24px; */
    box-sizing: border-box;
    /* margin-bottom: 24px; */
    margin-top: 48px;
    background: #A50005;
    padding: 12px 24px;
    border-radius: 4px;
    margin: 40px 0 20px;
    padding: 16px 24px 15px;
    font-size: 20px;
    font-weight: 700;
    background: #f5f5f5;
    border-radius: 8px;
    line-height: 1.55;
}

#single-section-body h4{
    font-size: 20px;
    font-weight: 700;
    border-left: 5px solid #A50005;
    padding-left: 18px;
    box-sizing: border-box;
    margin-top: 40px;
    line-height: 1.45;
}
#single-section-body iframe:not(.instagram-media) {
    width: 100%;
    height: 452px;
}

#single-section-body img {
    margin-top: 32px;
    height: auto !important;
}

#single-section-body a{
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    line-height: 1.45;
    color: #A50005;
}
#single-section-body a:hover{
    text-decoration: none;
    color: #000;
}


ul.other-news-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}
ul.other-news-list li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 0 16px;
}
ul.other-news-list li a .news-thumbnail {
    overflow: hidden;
    background: #fff;
    text-align: center;
}
ul.other-news-list li a .news-thumbnail img {
    height: 198px;
    object-fit: cover;
    transition: transform .5s ease;
}
ul.other-news-list li a:hover .news-thumbnail img {
    transform: scale(1.1);
}

.single-section-head-share {
    margin-top: 32px;
}
ul.list-sns{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -5px;
}
ul.list-sns li{
    padding: 0 5px;
}
ul.list-sns li a {
    background: #333;
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
}
ul.list-sns li.tweet a{
    background: #55acee;
    border: 1px solid #55acee;
}
ul.list-sns li.facebook a{
    background: #315096;
    border: 1px solid #315096;
}
ul.list-sns li.line a{
    background: #00c030;
    border: 1px solid #00c030;
}
ul.list-sns li.linkedin a{
    background: #0077B5;
    border: 1px solid #0077B5;
}

ul.list-sns li.tweet a:hover{
    color: #55acee;
    background: #fff;
}
ul.list-sns li.facebook a:hover{
    color: #315096;
    background: #fff;
}
ul.list-sns li.line a:hover{
    color: #00c030;
    background: #fff;
}
ul.list-sns li.linkedin a:hover{
    color: #0077B5;
    background: #fff;
}

ul.list-sns li a .icon {
    border-radius: 4px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
ul.list-sns li a .icon i{
    font-size: 17px;
}
ul.list-sns li a .sns-text {
    font-size: 13px;
    /* padding-right: 14px; */
    line-height: 1;
    font-weight: 500;
    padding-bottom: 1px;
}

.single-section-foot-share{
    margin-top: 32px;
    padding: 0 48px;
}

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

.news-title {
    font-size: 14px;
    line-height: 1.55;
}
.news-info{
    margin-top: 16px;
}
.news-info-date{
    font-size: 12px;
}
.news-info-cat{
    font-size: 12px;
}
.news-info-cat:before{
    width: 12px;
    height: 12px;
}

#archive-content{
    display: block;
}
.archive-content-right{
    width: 100%;
    padding-left: 0;
}
.archive-content-left{
    width: 100%;
    margin-top: 64px;
}
ul.news-list{
    display: block;
    margin: -40px 0 0;
}
ul.news-list li{
    width: 100%;
    padding: 40px 0 0;
}
ul.news-list li a .news-thumbnail img {
    height: 52vw;
}


article#page-article section#news-single{
    padding-top: 48px;
}
#page-visual-content-decorate{
    font-size: 80px;
    bottom: -12px;
}

.under-section-inner-sm{
    padding: 0 6%;
}
#single-section-head{
    padding: 0;
}
.single-section-head-title {
    font-weight: 700;
    line-height: 1.3;
    font-size: 22px;
    margin-bottom: 16px;
}
.single-section-head-info.news-info{
    margin-top: 24px;
}
.single-section-head-info.news-info .news-info-date{
    font-size: 14px;
}
.single-section-head-info.news-info .news-info-cat {
    font-size: 14px;
}
.single-section-head-img {
    margin-top: 24px;
}
.single-section-head-share {
    margin-top: 24px;
}
#single-section-body{
    padding: 0 0 32px;
}
#single-section-body h2{
    margin: 40px 0 20px;
    font-size: 20px;
    padding: 7px 0 10px;
}
#single-section-body h3 {
    font-size: 17px;
    margin: 32px 0 20px;
    padding: 16px 16px 15px;
}
#single-section-body h4{
    font-size: 16px;
}
#single-section-body p{
    line-height: 2;
    font-size: 14px;
}
#single-section-body iframe:not(.instagram-media) {
    height: 50vw;
}
.single-section-foot-share{
    padding: 0;
}
ul.list-sns li a .icon{
    margin-right: 0;
}
ul.list-sns li a .sns-text{
    display: none;
}


ul.other-news-list{
    display: block;
    margin: 0;
}
ul.other-news-list li{
    width: 100%;
    padding: 0;
}
ul.other-news-list li:not(:first-child){
    margin-top: 40px;
}
ul.other-news-list li a .news-thumbnail img {
    height: 52vw;
}

.news-archive-title{
    font-size: 16px;
    padding: 14px 16px;
}
ul.archive-content-parts-list.cat-news-list li a .news-info-cat{
    font-size: 14px;
}

.archive-content-parts-sp{
    margin-bottom: 56px;
}
.select-wrap {
    background: #fff;
    height: 50px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    border: 1px solid rgb(214, 214, 214);
    border-radius: 4px;
}
.select-wrap select {
    color: #202020;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 48px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    height: 48px;
    text-indent: 12px;
    width: 100%;
}
.select-wrap::after {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    right: 20px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 2px solid #202020;
    border-right: 2px solid #202020;
    z-index: -1;
}

.archive-content-parts-caption {
    font-size: 18px;
    margin-bottom: 16px;
}
ul.archive-content-parts-list.cat-news-list li a{
    padding: 16px 16px;
}


}




/* SERVICE
----------------------------------------------------------------*/



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



}




/* WORKS
----------------------------------------------------------------*/



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



}




/* ARTIST
----------------------------------------------------------------*/



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



}




/* COMPANY
----------------------------------------------------------------*/



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



}




/* RECRUIT
----------------------------------------------------------------*/



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



}




/* CONTACT
----------------------------------------------------------------*/



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



}





/* PRIVACY
----------------------------------------------------------------*/

.base-page-content{

}
.base-page-content h2{

}
.base-page-content h2 {
    margin: 60px 0 24px;
    padding: 8px 0 16px;
    font-size: 26px;
    font-weight: 700;
    border-bottom: 2px solid #181818;
    line-height: 1.55;
}
.base-page-content h3{
    font-size: 20px;
    font-weight: 700;
    border-left: 5px solid #A50005;
    padding-left: 18px;
    box-sizing: border-box;
    margin-top: 40px;
    line-height: 1.45;
}
.base-page-content p{
    margin-top: 16px;
    font-size: 16px;
}
.base-page-content a{
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    line-height: 1.45;
    color: #A50005;
}
.base-page-content a:hover{
    text-decoration: none;
    color: #000;
}
.base-page-content .bold{
    font-weight: 700;
}
.base-page-content ul{
    padding-left: 20px;
    margin-top: 24px;
}
.base-page-content ul li{
    list-style: disc;
}
.privacy-policy-update {
    margin-top: 56px;
    text-align: right;
}
.base-page-content .privacy-policy-update p {
    margin-top: 4px;
}
.mt0{
    margin-top: 0 !important;
}

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

.base-page-content h2{
    margin: 40px 0 20px;
    font-size: 20px;
    padding: 7px 0 10px;
}
.base-page-content h3 {
    font-size: 16px;
}
.base-page-content p{
    font-size: 13px;
}




}








/* IE
----------------------------------------------------------------*/
/*@media all and (-ms-high-contrast: none) {
    body {font-family: "繝｡繧､繝ｪ繧ｪ",Meiryo,Verdana,"�ｭ�ｳ �ｰ繧ｴ繧ｷ繝�け","MS PGothic";}
}