/* header / footer
---------------------------------------------------*/
#header{
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

#header .container{
    width: 100%;
    padding: 0;
}

#header .header__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    position: relative;
}

#header .header__inner::before{
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

#header .logo{
    position: relative;
    z-index: 75;
}

#header .logo img{
    width: 150px;
    height: auto;
    margin: 0 auto;
}

#header .toggler{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 15px;
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 75;
}

#header .toggler span,
#header .toggler::before,
#header .toggler::after{
    display: block;
    background-color: #222;
    width: 19px;
    height: 1px;
    transform-origin: center;
    transition: all 300ms ease-out;
}

#header .toggler::before{
    content: '';
    margin-bottom: 6px;
}

#header .toggler::after{
    content: '';
    margin-top: 6px;
}

#header .toggler.open span{
    opacity: 0;
}

#header .toggler.open::before{
    margin: 0;
    transform: rotate(45deg) translate(0, 1px);
}

#header .toggler.open::after{
    margin: 0;
    transform: rotate(-45deg) translate(0, -1px);
}

#header .menu-list{
    font-size: 14px;
    height: calc(100vh - 64px);
    position: fixed;
    top: calc(100vh * -1 + 64px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    transition: all 500ms ease-out;
}

#header .menu-list.open{
    transform: translateY(100vh);
}

#header .menu-list img{
    width: auto;
    height: 16px;
}

#header .menu-list > ul{
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
    overflow-y: scroll;
}

#header .menu-list li{
    text-align: center;
    padding-top: 40px;
}

#header .menu-list li a{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    color: #222;
    letter-spacing: 0.05em;
    transition: all 300ms ease-out;
}

#header .menu-list .inner_list{
    opacity: 0;
    visibility: hidden;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 300ms ease-out;
}

#header .menu-list .inner_list.open{
    opacity: 1;
    visibility: visible;
    height: auto;
    padding-bottom: 10px;
}

#header .menu-list .inner_list li{
    padding: 15px 0 0;
}

#header .menu-list .has-child a.open{
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
}

#header .menu-list .depth03 li a{
    color: #888;
}

#footer{
    background-color: #000;
    padding-top: 16px;
    padding-bottom: 24px;
}

#footer .footer_logo{
    height: auto;
    margin-top: 18px;
    position: relative;
}

#footer .footer_logo .logo{
    font-size: 16px;
}

#footer .footer_logo img{
    width: 150px;
    height: auto;
}

#footer .footer_logo .copyright{
    font-size: 10px;
    color: #fff;
}

#footer .footer_menu li{
    font-size: 11px;
    margin: 0 0 4px;
}

#footer .footer_menu li:not(:last-child)::after{
    content: '／';
    color: #fff;
    margin: 0 3px;
}

#footer .footer_menu a{
    color: #fff;
}

@media (min-width: 768px) {
    #header{
        padding-top: 0;
    }

    .has-info #header{
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    #header{
        height: 80px;
    }

    #header .container{
        width: 970px;
        padding: 0 15px;
    }

    #header .header__inner{
        justify-content: space-between;
        height: 79px;
    }

    #header .logo{
        height: 21px;
    }

    #header .toggler{
        display: none;
    }

    #header .menu-list{
        font-size: 12px;
        background-image: none;
        height: 21px;
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        z-index: 75;
    }

    #header .menu-list .sp-only{
        display: none;
    }

    #header .menu-list > ul{
        display: flex;
        align-items: flex-end;
        overflow-y: unset;
    }

    #header .menu-list .depth01 > li > a{
        line-height: 1;
    }

    #header .menu-list .depth01 > li{
        display: inline-flex;
        align-items: center;
        padding: 0 0 0 12px;
    }

    #header .menu-list li.menu-instagram{
        border-right: 1px solid #222;
        margin-left: 20px;
        padding-right: 12px;
    }

    #header .menu-list .depth02{
        display: flex;
        flex-wrap: wrap;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        padding: 0 calc((100% - 850px) / 2) 30px;
        position: fixed;
        top: 79px;
        left: 0;
        right: 0;
    }

    #header .menu-list .depth02.open{
        padding-bottom: 30px;
    }

    #header .menu-list .has-child a{
        transition: none;
    }

    #header .menu-list .depth01 > .has-child > a.open{
        margin-top: 1px;
        margin-bottom: 0;
    }

    #header .menu-list .depth02 > li{
        display: flex;
        width: calc(100% / 3);
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 30px;
    }

    #header .menu-list .depth02 > li:not(:nth-child(3n)){
        border-right: 1px solid #222;
    }

    #header .menu-list .depth02 > .has-child{
        position: relative;
    }

    #header .menu-list .depth02 > .has-child > a{
        position: relative;
    }

    #header .menu-list .depth02 > .has-child > a.open{
        border-bottom: none;
        margin-top: 0;
        margin-bottom: 0;
    }

    #header .menu-list .depth02 > .has-child > a.open::after{
        display: block;
        content: '';
        height: 1px;
        background-color: #222;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    #header .menu-list .depth03{
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: rgba(255, 255, 255, 0.9);
        min-width: 180px;
        padding: 0 20px 0 10px;
        position: absolute;
        top: 100%;
        left: 20px;
        z-index: 100;
    }

    #footer{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    
    #footer .footer_menu li{
        font-size: 16px;
        margin: 0 0 16px;
    }
    
    #footer .footer_menu li:not(:last-child)::after{
        margin: 0 6px;
    }
}

@media (min-width: 1200px) {
    #header .container{
        width: 1230px;
    }

    #header .menu-list{
        font-size: 14px;
    }

    #header .menu-list .depth01 > li{
        padding-left: 20px;
    }

    #header .menu-list .depth02{
        padding: 0 calc((100% - 950px) / 2) 20px;
    }

    #header .menu-list li.menu-instagram{
        margin-left: 40px;
    }
}

/* global
---------------------------------------------------*/
.show-sp{
    display: inline;
}

.hide-sp{
    display: none;
}

@media (min-width: 768px) {
    .show-sp{
        display: none;
    }

    .hide-sp{
        display: inline;
    }
    
    .fixed-head .header__after{
        padding: 0;
    }
}

html{
    scroll-padding-top: 64px;
}

body #body_wrapper{
    padding-top: 64px;
}

body #body_wrapper #contents{
    background-image: none;
    padding-top: 0;
}

body #body_wrapper .inner{
    max-width: 1200px;
}

@media (min-width: 992px) {
    body #body_wrapper{
        padding-top: 80px;
    }

    html{
        scroll-padding-top: 80px;
    }
}

.site_info{
    position: relative;
    z-index: 50;
}

.site_info p{
    font-size: 12px;
    text-align: center;
    background-color: #ffdbd8;
    text-decoration: underline;
    margin: 0;
    padding: 8px 5px;
    position: relative;
    z-index: 100;
}

@media (min-width: 768px) {
    .site_info p{
        font-size: 14px;
        padding: 7px 5px;
    }
}

.more-btn{
    text-align: center;
    margin-top: 40px;
}

.more-btn a{
    display: inline-block;
    font-family: Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: #000;
    border: 1px solid #000;
    letter-spacing: 0.05em;
    padding: 8px 40px 6px;
}

.more-btn a.hover{
    opacity: 0.8;
}

@media (min-width: 768px) {
    .more-btn a{
        font-size: 14px;
        padding: 10px 60px 8px;
    }
}

.section{
    margin-bottom: 80px;
}

.section--head{
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.section--head::before{
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    background-color: #000;
    margin: 0 auto 16px;
}

.section--head .title{
    font-size: 16px;
    letter-spacing: 0.05em;
    margin: 0 0 2px;
}

.section--head .sub{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.1em;
    margin: 0;
}

@media (min-width: 992px) {
    .section{
        margin-bottom: 125px;
    }
}

@media (min-width: 768px) {
    .section--head{
        margin-bottom: 30px;
    }

    .section--head::before{
        width: 40px;
        margin: 0 auto 24px;
    }

    .section--head .title{
        font-size: 18px;
        letter-spacing: 0.15em;
        margin: 0 0 4px;
    }

    .section--head .sub{
        font-size: 14px;
    }
}

/* hero
---------------------------------------------------*/
.hero{
    margin-bottom: 60px;
}

.hero .container-fluid{
    padding: 0;
}

.hero__slick{
    margin-bottom: 0;
}

.hero__item{
    width: 100%;
}

.hero .slick-dots{
    bottom: 30px;
}

.hero .slick-dots li,
.hero .slick-dots li button,
.hero .slick-dots li button::before{
    width: 8px;
    height: 8px;
}

.hero .slick-dots li button::before{
    background-color: #fff;
    opacity: 0.5;
}

.hero .slick-dots li.slick-active button::before{
    opacity: 1;
}

@media (min-width: 768px) {
    .hero{
        margin-bottom: 125px;
    }

    .hero .slick-dots{
        bottom: 15px;
    }
}

/* front: catch
---------------------------------------------------*/
.front__catch{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-weight: 500;
}

.front__catch .section--head .title{
    font-size: 24px;
    margin-bottom: 20px;
}

.front__catch .section--head .sub{
    font-size: 14px;
    color: #000;
    letter-spacing: normal;
}

.front__catch .catch--list{
    font-size: 12px;
    text-align: center;
}

.front__catch .catch--list li{
    margin: 0 0 8px;
}

@media (min-width: 768px) {
    .front__catch .section--head .title{
        font-size: 28px;
    }

    .front__catch .section--head .sub{
        font-size: 16px;
        letter-spacing: 0.1em;
    }

    .front__catch .catch--list{
        font-size: 14px;
    }
}

/* front: business
---------------------------------------------------*/
.front__business{
    text-align: center;
}

.front__business .image{
    width: 85%;
    margin: 0 auto 20px;
}

.front__business .text{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
}

@media (min-width: 768px) {
    .front__business .image{
        max-width: 525px;
        width: 100%;
        margin: 0 auto 24px;
    }

    .front__business .text{
        font-size: 14px;
    }
}

/* front: brands
---------------------------------------------------*/
.front__brands{
    background-color: #eee;
    padding: 30px 0;
}

.front__brands .brand--list{
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
}

.front__brands .brand--item{
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
}

.front__brands .brand--item a{
    display: block;
    font-size: 3vw;
    font-weight: 500;
    color: #fff;
    width: 100%;
    position: relative;
}

.front__brands .brand--item a .cover{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
}

.front__brands .brand--item a .cover img{
    margin-top: 4px;
}

.front__brands .brand--item a::before{
    display: block;
    content: '';
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: all 300ms ease-out;
}

.front__brands .brand--item a:hover{
    opacity: 1;
}

.front__brands .brand--item a:hover::before{
    background-color: rgba(0, 0, 0, 0);
}

/* 240415: カタログ「STYLE」 追加 */
.front__brands .brand--item a .cover img.default-img,
.front__brands .brand--item a .cover img.hover-img{
    margin-top: 0;
}

.front__brands .brand--item a .cover img.hover-img{
    display: none;
}

.front__brands .brand--item.brand--item__style a::before{
    background-color: rgba(0, 0, 0, 0.4);
}

.front__brands .brand--item a:hover .cover img.default-img{
    display: none;
}

.front__brands .brand--item a:hover .cover img.hover-img{
    display: inline;
}

.front__brands .brand--item.brand--item__style a:hover::before{
    background-color: rgba(255, 255, 255, 0.6);
}


@media (min-width: 768px) {
    .front__brands{
        padding: 45px 0;
    }

    .front__brands .brand--item{
        width: auto;
    }

    .front__brands .brand--item a{
        font-size: 11px;
        width: 150px;
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    .front__brands .brand--list{
        max-width: 800px;
    }
}

/* front: staff-voice
---------------------------------------------------*/
.front__staff-voice{
    text-align: center;
}

.front__staff-voice .btn-staff-voice a{
    display: block;
    font-size: 14px;
    color: #fff;
    background-color: #000;
    width: 85%;
    padding: 10px 8px 8px;
    margin: 0 auto 24px;
}

.front__staff-voice .btn-staff-voice.btn-voice a{
    padding: 36px 8px 34px;
}

@media (min-width: 768px) {
    .front__staff-voice .btn-staff-voice a{
        font-size: 18px;
        width: 525px;
        padding: 14px 12px 12px;
    }

    .front__staff-voice .btn-staff-voice.btn-voice a{
        padding: 50px 12px 48px;
    }
}

/* front: instagram
---------------------------------------------------*/
.front__instagram{
    text-align: center;
}

.front__instagram .instagram--item{
    width: 75%;
    border: 1px solid #000;
    padding: 10px 10px 8px;
    margin: 0 auto 16px;
}

.front__instagram .instagram--item a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}

.front__instagram .instagram--item a img{
    width: 20px;
    height: auto;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .front__instagram .instagram--item{
        width: 400px;
        padding: 14px 14px 12px;
        margin: 0 auto 20px;
    }
    
    .front__instagram .instagram--item a{
        font-size: 14px;
    }
    
    .front__instagram .instagram--item a img{
        width: 30px;
        margin-left: 36px;
    }
}

/* page: global
---------------------------------------------------*/
.page__content{
    letter-spacing: 0.025em;
}

#page_about{
    padding-top: 50px;
}

.page__content table,
.page__content p{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}

@media (min-width: 768px) {
    #page_about{
        padding-top: 80px;
    }
}

/**********************************/

.subpage--hero{
    margin-bottom: 60px;
}

.subpage--hero .hero--image{
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.subpage--hero .hero--txt{
    display: block;
    text-align: center;
    margin-top: 50px;
}

.subpage--hero .hero--txt::before{
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    background-color: #000;
    margin: 0 auto 16px;
}

.subpage--hero .hero--txt .title{
    font-size: 16px;
    letter-spacing: 0.05em;
    margin: 0 0 2px;
}

.subpage--hero .hero--txt .sub{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.1em;
    margin: 0;
}

@media (min-width: 768px) {
    .subpage--hero{
        margin-bottom: 90px;
    }
    
    .subpage--hero .hero--txt{
        margin-top: 0;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }

    .subpage--hero .hero--txt::before{
        width: 40px;
        margin: 0 auto 24px;
    }

    .subpage--hero .hero--txt .title{
        font-size: 18px;
        letter-spacing: 0.15em;
        margin: 0 0 4px;
    }

    .subpage--hero .hero--txt .sub{
        font-size: 14px;
    }
}


/* page: about
---------------------------------------------------*/
#page_about .catch .title{
    text-align: center;
    margin: 0 0 40px;
}

#page_about .catch .title img{
    max-width: 400px;
}

#page_about .catch--list{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

#page_about .catch--list li{
    margin: 0 0 8px;
}

@media (min-width: 768px) {
    #page_about .catch--list{
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    #page_about .catch .title img{
        max-width: 600px;
    }

    #page_about .catch .title{
        margin-bottom: 60px;
    }

    #page_about .catch--list li{
        margin: 0 0 12px;
    }
}

/**********************************/

#page_about .greeting .texts{
    font-size: 14px;
    margin-top: 40px;
}

#page_about .greeting .texts .head{
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-top: 0;
}

#page_about .greeting .texts .head::after{
    display: block;
    content: '';
    width: calc(100% - 5.5em - (0.025em * 5)); 
    height: 1px;
    background-color: #222;
    margin-left: 1.5em;
}

#page_about .greeting .texts .detail{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
}

#page_about .greeting .texts .name{
    font-weight: 700;
}

#page_about .greeting .texts .name span{
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {
    #page_about .greeting .texts{
        font-size: 18px;
    }
    
    #page_about .greeting .texts .detail,
    #page_about .greeting .texts .name span{
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    #page_about .greeting__inner{
        display: flex;
        align-items: flex-start;
    }

    #page_about .greeting .image{
        width: 50%;
        order: 2;
    }

    #page_about .greeting .texts{
        font-size: 16px;
        width: 50%;
        padding-right: 2em;
        margin-top: 0;
        order: 1;
    }

    #page_about .greeting .texts .head::after{
        width: 72%;
    }

    #page_about .greeting .texts .name span{
        font-size: 14px;
    }

    #page_about .greeting .texts .detail{
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    #page_about .greeting .texts{
        font-size: 18px;
    }
    
    #page_about .greeting .texts .detail,
    #page_about .greeting .texts .name span{
        font-size: 14px;
    }
}

/**********************************/

#page_about .company--profile .profile--tables{
    margin: 30px 0;
}

#page_about .company--profile .profile--tables table,
#page_about .company--profile .profile--tables tbody,
#page_about .company--profile .profile--tables tr,
#page_about .company--profile .profile--tables th,
#page_about .company--profile .profile--tables td{
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    text-align: left;
    font-weight: normal;
}

#page_about .company--profile .profile--tables th{
    margin-top: 2em;
}

#page_about .company--profile .profile--tables td{
    font-size: 12px;
    margin: 1em 0 0;
}

#page_about .company--profile .maps{
    position: relative;
    overflow: hidden;
}

#page_about .company--profile .maps::before{
    display: block;
    content: '';
    padding-top: 100%;
}

#page_about .company--profile .maps iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 768px) {
    #page_about .company--profile .profile--tables table{
        display: table;
        font-size: 14px;
    }

    #page_about .company--profile .profile--tables tbody{
        display: table-row-group;
    }

    #page_about .company--profile .profile--tables tr{
        display: table-row;
    }

    #page_about .company--profile .profile--tables th,
    #page_about .company--profile .profile--tables td{
        display: table-cell;
        font-size: 14px;
        vertical-align: text-top;
        padding: 0.75em 0;
    }

    #page_about .company--profile .profile--tables th{
        width: 123px;
    }

    #page_about .company--profile .profile--tables td{
        width: calc(100% - 123px);
    }

    #page_about .company--profile .maps::before{
        padding-top: calc(100% / 3);
    }
}

@media (min-width: 992px) {
    #page_about .company--profile .profile--tables{
        display: flex;
        flex-wrap: wrap;
    }

    #page_about .company--profile .profile--tables .table01,
    #page_about .company--profile .profile--tables .table02{
        width: 50%;
        margin-top: 30px;
        margin-bottom: 1em;
    }

    #page_about .company--profile .profile--tables table{
        margin: 40px 0;
    }

    #page_about .company--profile .profile--tables .table03{
        width: 100%;
        margin-bottom: 80px;
    }
}

/**********************************/
#page_about .company--office .office--box{
    margin-top: 30px;
}

#page_about .company--office .office--item{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 30px;
}

#page_about .company--office .office--item .head{
    border-bottom: 1px solid #333;
    margin: 0 0 1em;
    padding-bottom: 0.25em;
}

@media (min-width: 768px) {
    #page_about .company--office .office--box{
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        margin-left: -20px;
        margin-right: -20px;
    }

    #page_about .company--office .office--item{
        width: 50%;
        padding: 0 20px;
    }
}

@media (min-width: 992px) {
    #page_about .company--office .office--item{
        font-size: 14px;
        margin-bottom: 40px;
    }

    #page_about .company--office .office--item .head{
        margin: 0 0 1.25em;
    }
}

/**********************************/

#page_about .company--history .history--tables{
    margin-top: 30px;
}

#page_about .company--history .history--tables th,
#page_about .company--history .history--tables td{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
    text-align: left;
    font-weight: normal;
    vertical-align: text-top;
    padding: 0 0 1.5em;
}

#page_about .company--history .history--tables th{
    width: 85px;
}

#page_about .company--history .history--tables td{
    width: calc(100% - 85px);
}

@media (min-width: 768px) {
    #page_about .company--history .history--tables table{
        display: table;
        font-size: 14px;
    }

    #page_about .company--history .history--tables tbody{
        display: table-row-group;
    }

    #page_about .company--history .history--tables tr{
        display: table-row;
    }

    #page_about .company--history .history--tables th,
    #page_about .company--history .history--tables td{
        display: table-cell;
        font-size: 14px;
    }

    #page_about .company--history .history--tables th{
        width: 123px;
    }

    #page_about .company--history .history--tables td{
        width: calc(100% - 123px);
    }
}

@media (min-width: 992px) {
    #page_about .company--history .history--tables{
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    #page_about .company--history .history--tables table{
        width: 50%;
        margin-bottom: 1em;
    }
}

/**********************************/

#page_about .company--csr .csr--box{
    margin: 30px 0 50px;
}

#page_about .company--csr .csr--box .image{
    margin-bottom: 24px;
}

#page_about .company--csr .csr--box .texts{
    line-height: 1.75;
}

#page_about .company--csr .csr--box .texts .head{
    font-size: 14px;
    border-bottom: 1px solid #333;
    margin-bottom: 1em;
    padding-bottom: 0.25em;
    padding-left: 5px;
    padding-right: 5px;
}

#page_about .company--csr .csr--box .texts .detail{
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
}

@media (min-width: 768px) {
    #page_about .company--csr .csr--box{
        display: flex;
        margin-left: -15px;
        margin-right: -15px;
    }

    #page_about .company--csr .csr--box .image,
    #page_about .company--csr .csr--box .texts{
        padding: 0 15px;
    }

    #page_about .company--csr .csr--box .image{
        width: 50%;
        margin: 0;
    }

    #page_about .company--csr .csr--box .texts{
        width: 50%;
    }

    #page_about .company--csr .csr--box .texts .head{
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    #page_about .company--csr .csr--box{
        margin: 50px -20px 80px;
    }

    #page_about .company--csr .csr--box .image,
    #page_about .company--csr .csr--box .texts{
        width: 50%;
        padding: 0 20px;
    }
    
    #page_about .company--csr .csr--box .texts .head{
        font-size: 16px;
        font-weight: 700;
    }

    #page_about .company--csr .csr--box .texts .detail{
        font-size: 14px;
        font-weight: 500;
    }
}

@media (min-width: 1200px) {
    #page_about .company--csr .csr--box .image{
        width: 545px;
        padding-right: 140px;
    }
    
    #page_about .company--csr .csr--box .texts{
        width: calc(100% - 545px);
    }
}


/* page: business
---------------------------------------------------*/
#page_business .business--contents{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#page_business .business--intro{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4em;
}

@media (min-width: 992px) {
    #page_business .business--intro{
        font-size: 18px;
    }
}

#page_business .business--list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

#page_business .business--link{
    width: 50%;
}

#page_business .business--link:first-child{
    margin-left: auto;
}

#page_business .business--link:last-child{
    margin-right: auto;
}

#page_business .business--link p{
    margin: 0;
}

#page_business .business--link a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 11px;
    color: #000;
}

#page_business .business--link a .num{
    font-size: 3.75em;
    color: #dbdcdc;
}

#page_business .business--link a .title{
    font-weight: bold;
    padding: 0 1em;
}


@media (min-width: 768px) {
    #page_business .business--link a{
        font-size: 13px;
    }

    #page_business .business--link{
        width: calc(100% / 3);
    }
}

@media (min-width: 992px) {
    #page_business .business--list{
        margin-bottom: 70px;
    }

    #page_business .business--link a{
        font-size: 11px;
    }

    #page_business .business--link{
        width: calc(100% / 5);
    }
}

@media (min-width: 1200px) {
    #page_business .business--link a{
        font-size: 13px;
    }
}

#page_business .business--item{
    margin-bottom: 70px;
}

#page_business .business--head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#page_business .business--item .num{
    font-size: 64px;
    color: #dbdcdc;
    margin: 0 0 0.25em;
}

#page_business .business--item .title{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
}

#page_business .business--item .sub--title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

#page_business .business--item .desc,
#page_business .business--desc{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    line-height: 1.5;
}

#page_business .business--item .desc strong,
#page_business .business--desc strong{
    font-weight: bold;
    border-radius: 4px;
    background-color: #dcdcdc;
    padding: 0.25em 1em;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
}

#page_business .business--desc{
    font-size: 14px;
}

#page_business .business--desc strong{
    display: inline-block;
    text-align: center;
}

#page_business .business--item .address{
    font-size: 16px;
    text-align: center;
    line-height: 1.75;
}

#page_business .business--item .address span{
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    background-color: #dcdcdc;
    padding: 0.5em 1em;
    margin-top: 1em;
}

@media (min-width: 992px) {
    #page_business .business--item{
        margin-bottom: 120px;
    }

    #page_business .business--head{
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
    }

    #page_business .business--head .num{
        width: 100%;
        text-align: center;
    }

    #page_business .business--head .title{
        width: 220px;
        height: 4.75em;
        border-right: 1px solid #000;
        padding-right: 1.5em;
        margin-bottom: 0;
    }

    #page_business .business--head .texts{
        padding-left: 40px;
        width: calc(100% - 220px);
    }

    #page_business .business--item .sub--title{
        text-align: left;
    }

    #page_business .business--item .desc{
        font-size: 13px;
    }

    #page_business .business--desc strong{
        min-width: 160px;
    }

    #page_business .business--item .address{
        text-align: left;
    }
}

#page_business .buisiness--detail{
    margin-bottom: 40px;
}

#page_business .buisiness--detail .detail--item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#page_business .buisiness--detail p{
    font-weight: bold;
    line-height: 1.5;
}

#page_business .buisiness--detail .detail--head{
    font-size: 12px;
    padding: 0.25em 0.75em;
    margin: 1.25em 0 0.25em;
    border-left: 1px solid #888;
    border-right: 1px solid #888;
}

#page_business .buisiness--detail .detail--notice{
    font-size: 12px;
}

#page_business .buisiness--detail .detail--desc{
    font-size: 12px;
    text-align: center;
}

#page_business .buisiness--detail .detail--desc strong{
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

#page_business .buisiness--detail .detail--item.fullwidth .detail--head{
    font-size: 14px;
    padding: 0.375em 0.5em;
}

#page_business .business--box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

#page_business .business--box__item{
    width: 150px;
    max-width: (50% - 10px);
    background-color: #dbdcdc;
    border-radius: 16px;
    text-align: center;
    margin: 0 5px 10px;
}

#page_business .business--box__item.dummy{
    background-color: transparent;
    margin-bottom: 0;
}

#page_business .business--box.half--box{
    margin-top: 10px;
}

#page_business .business--box.gallery--box{
    margin-top: 10px;
}

#page_business .half--box .business--box__item{
    width: 310px;
    max-width: (100% - 10px);
}

#page_business .gallery--box .business--box__item{
    width: 150px;
}

#page_business .business--box__item .item--head{
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 6px;
    margin-bottom: 6px;
    position: relative;
}

#page_business .business--box__item .item--head::after{
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

#page_business .business--box__item .item--desc{
    font-size: 11px;
}

#page_business .business--tv{
    text-align: center;
    margin: 20px 0 0;
}

@media (min-width: 992px) {
    #page_business .buisiness--detail{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 40px 0 60px;
    }

    #page_business .buisiness--detail p{
        margin: 0;
    }

    #page_business .buisiness--detail .detail--item{
        flex-direction: row;
        width: 50%;
        margin-bottom: 20px;
    }

    #page_business .buisiness--detail .detail--item.fullwidth{
        width: 100%;
    }

    #page_business .buisiness--detail .detail--desc{
        text-align: left;
        margin-right: auto;
    }

    #page_business .buisiness--detail .detail--item .detail--head{
        display: flex;
        align-items: center;
        font-size: 13px;
        justify-content: center;
        width: 130px;
        height: 3em;
        margin: 0 1em 0 0;
    }

    #page_business .buisiness--detail .detail--item .detail--notice{
        font-size: 11px;
        width: calc(100% - 145px);
    }

    #page_business .buisiness--detail .detail--desc strong{
        font-size: 16px;
    }

    #page_business .buisiness--detail .detail--item.fullwidth .detail--head{
        width: 268px;
    }

    #page_business .buisiness--detail .detail--item.fullwidth .detail--notice{
        width: calc(100% - 282px);
    }

    #page_business .half--box .business--box__item{
        width: calc(50% - 10px);
    }

    #page_business .gallery--box .business--box__item{
        width: 190px;
    }

    #page_business .business--tv{
        width: 580px;
        text-align: left;
        padding-left: 40px;
        margin-left: auto;
    }
}

#page_business .business--store{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#page_business .business--store .store--text{
    padding-left: 1em;
}

#page_business .business--store .store--head{
    font-size: 16px;
    text-indent: -0.75em;
}

#page_business .business--store .store--img{
    width: 190px;
}

@media (min-width: 992px) {
    #page_business .business--store{
        flex-direction: row;
    }

    #page_business .business--store .store--img{
        margin-left: 30px;
    }
}

#page_business .business--sns .head{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

#page_business .business--sns .head span{
    display: flex;
    align-items: center;
    font-size: 14px;
}

#page_business .business--sns .head span::before,
#page_business .business--sns .head span::after{
    display: block;
    content: '';
    width: 1.25em;
    height: 1px;
    background-color: #000;
    margin: 0 0.5em;
}

#page_business .business--sns .sns--link{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

#page_business .business--sns .sns--link a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #555;
    width: 280px;
    border: 1px solid #000;
    padding: 1em;
}


#page_business .business--sns .sns--link img{
    width: 22px;
    margin-left: 20px;
}

#page_business .business--sns .sns--link .pc,
#page_business .business--sns .sns--link .id{
    display: none;
}

@media (min-width: 992px) {
    #page_business .business--sns .sns--box{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #page_business .business--sns .head{
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }

    #page_business .business--sns .head::after{
        display: block;
        content: '';
        width: calc(100% / 3 * 2);
    }
    
    #page_business .business--sns .head span::before{
        margin-left: 1.5em;
    }

    #page_business .business--sns .head span::after{
        margin-right: 2em;
    }

    #page_business .business--sns .sns--link{
        width: calc(100% / 3);
    }

    #page_business .business--sns .sns--link:last-child a{
        border-right: none;
    }

    #page_business .business--sns .sns--link a{
        align-items: flex-end;
        width: 100%;
        border: none;
        border-right: 1px solid #000;
        padding: 0 20px;
    }

    #page_business .business--sns .sns--link .pc,
    #page_business .business--sns .sns--link .id{
        display: block;
    }

    #page_business .business--sns .sns--link .sp{
        display: none;
    }

    #page_business .business--sns .sns--link img{
        width: auto;
        margin-left: 10px;
    }
}

#page_business .business--sales .sales--box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#page_business .business--sales .sales--box p{
    font-size: 14px;
    text-align: center;
    margin-top: 3em;
}

#page_business .business--sales .sales--box img{
    margin-top: 50px;
}

@media (min-width: 992px) {
    #page_business .business--sales .sales--box p br{
        display: none;
    }

    #page_business .business--sales .sales--box p{
        font-size: 18px;
        order: 1;
        margin-top: 50px;
    }
    
    #page_business .business--sales .sales--box img{
        order: 2;
    }
    
}

#page_business .business--achievement .achievement--item{
    margin-bottom: 50px;
}

#page_business .business--achievement .achievement--item .head{
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding: 0 0.25em 0.25em;
    margin-bottom: 1.5em;
}

#page_business .business--achievement .achievement--item .detail{
    font-size: 12px;
}

#page_business .business--achievement .achievement--item .detail p{
    margin: 0 0 2em;
}

#page_business .business--achievement .achievement--item .detail .hide-sp{
    display: none;
}

#page_business .business--achievement .achievement--item .detail .has-txt .image{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

#page_business .business--achievement .achievement--item .detail .has-txt .image img{
    width: 125px;
}

#page_business .business--achievement .achievement--item .detail .has-txt .image p{
    width: calc(100% - 125px);
    padding-left: 15px;
}

@media (min-width: 768px) {
    #page_business .business--achievement .achievement--box{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #page_business .business--achievement .achievement--item{
        width: 50%;
        padding: 0 20px;
    }
}

@media (min-width: 992px) {
    #page_business .business--achievement .achievement--item .head{
        font-size: 16px;
    }

    #page_business .business--achievement .achievement--item .detail{
        font-size: 14px;
    }

    #page_business .business--achievement .achievement--item .detail .hide-sp{
        display: inline;
    }
}


/* layout: tab
---------------------------------------------------*/
.tab--head{
    display: flex;
    border-bottom: 1px solid #333;
    margin: 50px 0;
}

.tab--head a{
    font-size: 10px;
    font-weight: bold;
    color: #000;
    width: calc(100% / 3);
    text-align: center;
    padding: 0.75em 1em;
    transition: all 300ms ease-out;
}

.tab--head a.active,
.tab--head a:hover{
    color: #fff;
    background-color: #333;
    opacity: 1;
}

.tab--head a.active{
    background-color: #000;
}

.tab--item{
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.tab--item.active{
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
}

@media (min-width: 992px) {
    .tab--head{
        margin: 90px 0;
    }

    .tab--head a{
        font-size: 18px;
    }
}

.sub__tab--head{
    display: flex;
    margin: 50px 0;
}

.sub__tab--head a{
    font-size: 14px;
    font-weight: bold;
    color: #000;
    background-color: #dbdcdc;
    width: calc(50% - 2px);
    text-align: center;
    padding: 0.75em 1em;
    margin: 0 1px;
    transition: all 300ms ease-out;
}

.sub__tab--head a.active,
.sub__tab--head a:hover{
    color: #fff;
    background-color: #333;
    opacity: 1;
}

.sub__tab--head a.active{
    background-color: #000;
}

.sub__tab--item{
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.sub__tab--item.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}

@media (min-width: 992px) {
    .sub__tab--head{
        margin: 90px 0;
    }

    .sub__tab--head a{
        font-size: 18px;
    }
}


/* page: voice
---------------------------------------------------*/
#page_voice .voice--box{
    margin: 20px 0 60px;
}

#page_voice .voice--item{
    border-top: 1px solid #595757;
    border-left: 1px solid #595757;
    padding-left: 30px;
    margin-bottom: 50px;
}

#page_voice .voice--item .num{
    font-size: 60px;
    color: #595757;
    line-height: 1;
    text-align: right;
    margin: -0.5em 0 6px;
}

#page_voice .voice--item .num span{
    background-color: #fff;
    padding-left: 0.25em;
}

#page_voice .voice--item .head{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: normal;
    margin: 1.75em 0 1.25em;
}

#page_voice .voice--item .detail{
    font-size: 12px;
    padding-bottom: 1em;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #page_voice .voice--box{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #page_voice .voice--item{
        width: calc(50% - 60px);
        margin: 0 30px 60px;
    }
}

@media (min-width: 992px) {
    #page_voice .voice--box{
        margin: 80px 0;
    }

    #page_voice .voice--item .head{
        font-size: 16px;
    }

    #page_voice .voice--item .detail{
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    #page_voice .voice--item{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding-left: 24px;
    }

    #page_voice .voice--item .num{
        width: 100%;
        order: 1;
        margin-bottom: -0.25em;
        position: relative;
        z-index: 10;
    }

    #page_voice .voice--item .num span{
        background-color: transparent;
        position: relative;
        z-index: 10;
    }

    #page_voice .voice--item .num::before{
        display: block;
        content: '';
        background-color: #fff;
        width: 1.25em;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0.3em;
        z-index: 5;
    }

    #page_voice .voice--item .image{
        width: 30%;
        order: 3;
        position: relative;
        z-index: 5;
    }

    #page_voice .voice--item .text{
        width: 70%;
        padding-right: 20px;
        order: 2;
        position: relative;
        z-index: 5;
    }

    #page_voice .voice--item .head{
        margin-top: 0;
    }
}

#page_voice .recruit--btn a{
    display: block;
    font-size: 14px;
    max-width: 525px;
    width: 100%;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 0.75em;
    margin: 0 auto;
}

@media (min-width: 992px) {
    #page_voice .recruit--btn a{
        font-size: 16px;
    }
}

#page_voice .work--flow__content .tab--item{
    text-align: center;
}


@media (min-width: 768px) {
    #page_voice .work--flow__content .tab--item img{
        max-width: 60%;
    }
}

/* page: recruit
---------------------------------------------------*/
#page_recruit{
    overflow-y: hidden;
}

#page_recruit .recruit__tab{
    margin-top: 0;
}

#page_recruit .recruit__tab a{
    font-size: 12px;
    width: calc(100% / 4);
}

#page_recruit .recruit__tab a .hide-sp{
    display: none;
}

@media (min-width: 992px) {
    #page_recruit .recruit__tab a{
        font-size: 18px;
    }    

    #page_recruit .recruit__tab a .hide-sp{
        display: inline;
    }
}

#page_recruit .recruit--head{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 0.25em;
    margin-top: 0;
    margin-bottom: 2em;
}

#page_recruit .recruit__content .recruit--head:not(:first-child){
    margin-top: 60px;
}

#page_recruit .recruit--detail .catch{
    font-size: 14px;
    margin-bottom: 1.5em;
}

#page_recruit .recruit--detail .desc{
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 2em;
}

#page_recruit .recruit--table,
#page_recruit .recruit--table tbody,
#page_recruit .recruit--table tr,
#page_recruit .recruit--table th,
#page_recruit .recruit--table td{
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    text-align: left;
    font-weight: normal;
}

#page_recruit .recruit--table th{
    margin-top: 2em;
}

#page_recruit .recruit--table td{
    font-size: 12px;
    margin: 1em 0 0;
}

#page_recruit .recruit--table td span{
    font-weight: bold;
    color: #ff3333;
}

#page_recruit .recruit--table td strong{
    font-size: 14px;
}


#page_recruit .recruit--table td span.disabled{
    color: #0065b0;
}

#page_recruit .recruit--table td .entry--btn a{
    display: block;
    font-family: Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    width: 280px;
    text-align: center;
    color: #000;
    line-height: 1;
    border: 1px solid #000;
    padding: 1.25em;
    margin-top: 1em;
}

#page_recruit .recruit--table td .entry--btn a:hover{
    opacity: 0.8;
}

@media (min-width: 768px) {
    #page_recruit .recruit--table{
        display: table;
        font-size: 14px;
    }

    #page_recruit .recruit--table tbody{
        display: table-row-group;
    }

    #page_recruit .recruit--table tr{
        display: table-row;
    }

    #page_recruit .recruit--table th,
    #page_recruit .recruit--table td{
        display: table-cell;
        font-size: 18px;
        vertical-align: text-top;
        padding: 0.75em 0;
    }

    #page_recruit .recruit--table th{
        width: 200px;
    }

    #page_recruit .recruit--table td{
        font-size: 14px;
        width: calc(100% - 200px);
    }
}

@media (min-width: 992px) {
    #page_recruit .recruit__content .recruit--head:not(:first-child){
        margin-top: 90px;
    }
    
    #page_recruit .recruit--head{
        font-size: 18px;
    }

    #page_recruit .recruit--detail .catch{
        font-size: 18px;
    }

    #page_recruit .recruit--detail .desc{
        font-size: 14px;
    }

    #page_recruit .recruit--table td .entry--btn a{
        font-size: 18px;
        padding: 0.75em;
    }

    #page_recruit .recruit--table td strong{
        font-size: 18px;
    }
}

#page_recruit .recruit--btn a{
    display: block;
    font-size: 14px;
    max-width: 525px;
    width: 100%;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 0.75em;
    margin: 60px auto 0;
}

@media (min-width: 992px) {
    #page_recruit .recruit--btn a{
        font-size: 16px;
        margin-top: 90px;
    }
}

/* merci */
#contants_merci{
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
}

#contants_merci .more-btn a{
    padding: 12px 40px 10px
}

.merci--title{
    text-align: center;
    margin: 20px 0;
}

.merci--title .title{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 2px;
}

.merci--title .sub{
    font-size: 12px;
    color: #888;
    letter-spacing: 0.1em;
    margin: 0;
}

.merci--hero{
    margin-left: -16px;
    margin-right: -16px;
}

.merci--events{
    display: flex;
    flex-wrap: wrap;
    padding-left: 2px;
}

.merci--event__item{
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 50%;
    height: 3.5em;
    text-align: center;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    margin-right: -1px;
    margin-bottom: 10px;
}

.merci--event__item p{
    line-height: 1.5;
}

.merci--events .sub{
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin-top: 1.5em;
}

.merci--brands{
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
}

.merci--brand__item{
    width: calc(100% / 3);
    padding: 0 3px;
    margin-bottom: 12px;
}

.merci--brand__item.merci--brand__more{
    width: 100%;
    text-align: right;
    margin-left: auto;
}

.merci--brand__item.merci--brand__more p{
    font-family: Roboto, "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    margin: 0;
}

@media (min-width: 768px) {
    #contants_merci .more-btn a{
        padding: 16px 60px 14px
    }
        
    .merci--title{
        margin: 30px 0;
    }

    .merci--title .title{
        font-size: 18px;
        margin: 0 0 4px;
    }

    .merci--title .sub{
        font-size: 14px;
        letter-spacing: 0.15em;
    }

    .merci--hero{
        margin-left: 0;
        margin-right: 0;
    }
    
    .merci--events{
        padding-left: 5px;
    }

    .merci--event__item{
        width: 20%;
    }

    .merci--brand__item{
        width: calc(100% / 7);
    }
}

@media (min-width: 992px) {
    .merci--events .sub{
        font-size: 16px;
    }

    .merci--brand__item{
        padding: 0 10px;
        margin-bottom: 30px;
    }
}

/* 250306: add */
#blue
#olive,
#orange,
#pink,
#green,
#purple,
#bronze,
#platinum{
  margin-top: -180px;
  padding-top: 180px;
  width: 100%;
}

#blue{
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 50;
}

#olive{
  position: relative;
  z-index: 40;
}

#orange{
  position: relative;
  z-index: 30;
}

#pink{
  position: relative;
  z-index: 20;
}

#green{
  position: relative;
  z-index: 10;
}

#purple{
  position: relative;
  z-index: 7;
}

#bronze{
  position: relative;
  z-index: 4;
}

#platinum{
  position: relative;
  z-index: 1;
}


#blue .goumet-item_head h2{
  background-color: #4d8cbe;
}

#olive .goumet-item_head h2{
  background-color: #aab214;
}

#orange .goumet-item_head h2{
  background-color: #e59450;
}

#pink .goumet-item_head h2{
  background-color: #e8909f;
}

#green .goumet-item_head h2{
  background-color: #61a078;
}

#purple .goumet-item_head h2{
  background-color: #b09ac8;
}

#bronze .goumet-item_head h2{
  background-color: #a36e5d;
}

#platinum .goumet-item_head h2{
  background-color: #adb8b4;
}

.shikisai-content .goumet-item_detail .catalog-price .price small{
  font-size: 50%;
}

@media screen and (max-width: 767px){
  #blue,
  #olive,
  #orange,
  #pink,
  #green,
  #purple,
  #bronze,
  #platinum{
    margin-top: -48px;
    padding-top: 48px;
  }

  #blue{
    margin-top: 0;
    padding-top: 0;
  }
}

.input-form .page-heading{
    padding-top: 40px;
}

@media (min-width: 768px) {
    .input-form .page-heading{
        padding-top: 60px;
    }
}