@charset "UTF-8";

/*********************
HOME
*********************/

#home-head-wrapper {
    position: relative;
    /*margin-bottom: 100px;*/
}
/* movie-wrapper */
#home-mov-wrapper {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: auto;
    /*z-index: -150;*/
    background-size: cover;
}

#home-mov-btn a.replay {
    display: inline-block;
    text-decoration: none;
    line-height: 1.2;
    padding: 1em 2em;
    font-size: .9em;
    background: #e1c980;
    color: black;
    border-radius: 5px;
    box-shadow: 0 0 7px rgba(0,0,0,.3);
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 1px;
    font-weight: bold;
}
#home-mov-btn a.replay:hover {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,.4);
}


@media screen and (min-width: 769px) {
   /* #home-mov-wrapper.finished {
        display: none;
    }
    #home-img-wrapper {
        display: none;
    }
    #home-img-wrapper.finished {
        display: block;
        position: relative;
        opacity: 1;
    }*/
    /*img#home-lead-pict {
        opacity: 0;
        transition: 5s ease-out;
    }*/
    img#home-lead-pict.finished {
        opacity: 1;
    }
    #home-mov-btn {
        position: absolute;
        bottom: 7VH;
        right: 7VW;
    }
}
@media screen and (max-width: 768px) {
    /*#home-mov-wrapper.finished {
        display: none;
    }
    #home-img-wrapper {
        display: none;
    }
    #home-img-wrapper.finished {
        display: block;
        position: relative;
        opacity: 1;
    }
    img#home-lead-pict {
        opacity: 0;
        transition: 5s ease-out;
    }
    img#home-lead-pict.finished {
        opacity: 1;
    }
    #home-img-wrapper {
        background: #222;
    }
    #home-mov-btn {
        text-align: center;
        padding: 30px 0;
    }
    #home-mov-btn a.replay {
        font-size: 1.2em;
    }*/
}
/*@media screen and (max-width: 768px) {
    #home-mov-wrapper {
        display: none;
    }
    #home-img-wrapper {
        background: #222;
    }
    #home-mov-btn {
        text-align: center;
        padding: 30px 0;
    }
    #home-mov-btn a.replay {
        font-size: 1.2em;
    }
}*/

/* 50th_btn */
#banner-50th a img {
    display: block;
}

/* number */
#home-number {
    background: #b7d1e4 url('../../images/number_bg.jpg') no-repeat top center;
    background-size: cover;
}
#home-number-slide {
    list-style: none;
}
#home-number-slide li.item {
    padding: 7px;
    margin: 0 5px;
    border-radius: 7px;
    background: white;
}
#home-number-slide li.item img {
    width: 100%;
}

/* about */
#home-about-btns ul {
    list-style: none;
    display: flex;
}
#home-about-btns ul li {
    flex-basis: 33.3%;
    align-self: center;
}
#home-about-btns ul li a {
    position: relative;
    font-size: .9em;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    background: #363636;
    color: white;
    height: 100%;
    padding: 1.2em 1em;
    border-right: 1px solid #666;
}
#home-about-btns ul li:first-child a {
    border-radius: 7px 0 0 7px;
}
#home-about-btns ul li:last-child a {
    border-radius: 0 7px 7px 0;
    border: none;
}
#home-about-btns ul li a:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    content: '\f054';
    font-weight: 900;
    margin-left: 1em;
    right: 1em;
    top: calc(50% - 5px);
}
#home-about-btns ul li a:hover {
    background: #666;
}

@media all and (max-width: 680px) {
    #home-about-btns ul {
        display: block;
    }
    #home-about-btns ul li a {
        border-right: none;
        border-bottom: 1px solid #666;
    }
    #home-about-btns ul li:first-child a {
        border-radius: 7px 7px 0 0;
    }
    #home-about-btns ul li:last-child a {
        border-radius: 0 0 7px 7px;
    }
}

/* youTUbe */
.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* home-business-tab */
#home-business .tab-label {	
    margin-bottom: -1px;
    padding: 7px 10px ;
    font-weight: bold;
    display: block;
    color: #444;
    background: #F0F0F0;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    cursor: pointer;
    transition: .3s;
}
#home-business .tab-label:hover {
    background: #ddeff9;
    color: #4491c2;
}
#home-business .tab-label:before {
    margin-right: .5em;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
}
#home-business input {
    display: none;
}
#home-business .business-inner {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: .3s;
}
#home-business input:checked + .tab-label {
    color: #fff;
    border-top: 1px solid #4491c2;
    border-bottom: 1px solid #4491c2;
    background: #4491c2;
}
#home-business input:checked + .tab-label:before {
    margin-right: .5em;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
}
#home-business input:checked + .tab-label + .business-inner {
    height: auto;
    margin-bottom: -1px;
    overflow: auto;
    opacity: 1;
}

/* home-business-content */
#home-business .business-inner img {
    width: 100%;
    margin: 20px 0;
    border-radius: 7px;
    display: block;
}
#home-business .business-inner h4 {
    margin: 15px 0;
    padding: 0;
    font-size: 1.4em;
    font-style: italic;
}
#home-business .business-inner h4 span {
    display: block;
    font-size: 12px;
}
#home-business .business-inner p {
    margin: 0 0 10px;
    padding: 0;
}
#home-business .business-inner a {
    display: inline-block;
    margin: 10px 0 40px;
}

/* slide */
.slide-photo p {
    margin: 0 10px;
}
.slider p.slick-list {
    overflow: visible;
}
.slide-photo img {
    width: 100%;
}

@media all and (min-width: 841px) {
    .slide-photo {
        padding-top: 40px;
    }
}
@media all and (max-width: 840px) {
    .slide-photo {
        padding-top: 15px;
    }
}

/** CSR **/
#home-csr {
    background: linear-gradient(135deg, #7481c9, #4ba0c7);
    color: white;
}
#home-csr .box {
    background: rgba(255,255,255,.2);
}
#home-csr h3 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 1.1em;
}
ul.csr-slide {
    list-style: none;
}
ul.csr-slide li {
    display: inline-block;
    margin: 10px;
    
}

/** information **/
#home-info {
    background: #f0f8fd;
}

/* information-thumb */
.home-info-primary {
    margin-bottom: 40px !important;
}
.info-slide li .thumb {
    background: white;
}
.info-slide li .thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.info-slide .slick-slide {
    margin:0 10px;
}
.info-slide li .date {
    font-size: .8em;
    color: #666;
    margin-bottom: 10px;
}
.info-slide li p.text {
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.6;
}

/* information-tab */
.information-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.information-wrapper .tab-label {
    margin-right: 5px;
    margin-bottom: 15px;
    padding: 3px 15px;
    order: -1;
    border-radius: 3px;
    background: #EEE;
    transition: .5s ;
    cursor: pointer;
}
.information-wrapper .tab-label:nth-last-of-type(1){
    margin-right: 0;
}
.information-wrapper input {
    display: none;
}
.information-wrapper ul.information-inner {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.information-wrapper input:checked + .tab-label {
    color: white;
    background: #4d84b0;
}
.information-wrapper input:checked + .tab-label + ul.information-inner {
    height: auto;
    overflow: auto;
    transition: .5s opacity;
    opacity: 1;
}

/* information-content */
.information-wrapper ul li {
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #DDD;
}
.information-wrapper ul li:last-child {
    border-bottom: none;
}
.information-wrapper ul li dl dt {
    color: #999;
}
.information-wrapper ul li dl dd {
    margin: 0;
}

@media screen and (min-width: 801px) {
    .information-wrapper {
        background: white;
        border-radius: 7px;
        padding: 40px;
        justify-content: flex-end;
    }
    .information-wrapper ul li dl {
        display: flex;
    }
    .information-wrapper ul li dl dt {
        flex-basis: 10em;
        flex-shrink: 0;
    }
}
@media screen and (max-width: 800px) {
    .home-info-primary {
        margin-bottom: 10px !important;
    }
    .information-wrapper {
        border-top: 1px solid #96b6d1;
        padding-top: 20px;
    }
    .information-wrapper .tab-label {
        background: white;
        border: 1px solid #4d84b0;
        margin-bottom: 10px;
    }
    .infor
    .information-wrapper ul {
        display: block;
    }
    .information-wrapper ul li dl dt {
        margin-bottom: 10px;
    }
}


/*********************
NEWS RELEASE
*********************/

#blog-content {
    border-bottom: 1px solid #CCC;
    margin-bottom: 40px;
    padding-bottom: 50px;
}
.archive-news-list dl dt span,
#blog-content .info-cat {
    display: inline-block;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: .8em;
    font-weight: bold;
    margin-bottom: 10px;
}
.archive-news-list dl dt span.news,
#blog-content .info-cat.news {
    background: #4ba0c7;
}
.archive-news-list dl dt span.media,
#blog-content .info-cat.media {
    background: #9161a5;
}
#blog-content h3 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 1.4em;
}
#blog-content h3:after {
    background: linear-gradient(135deg, #CCC, #4ba0c7);
    border-radius: 2px;
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
}
#blog-content p {
    line-height: 1.8;
    margin-bottom: 40px;
}
#blog-content table tr.even,
#blog-content table tr.alt,
#blog-content table tr:nth-of-type(2n) {
    background: #F9F9F9;
}
#blog-content table {
    border-top: 1px solid #CCC;
    margin: 5px 0;
}
#blog-content table th,
#blog-content table td {
    padding: 1em 1.2em;
    border-bottom: 1px solid #CCC;
}

/* archive */
.archive-news-list dl dt span {
    margin-left: 1em;
}
.archive-news-list a {
    text-decoration: none;
}
.archive-news-list dl,
.archive-news-list dt,
.archive-news-list dd {
    margin: 0;
    padding: 0;
}
.archive-news-list dl {
    border-top: 1px solid #CCC;
    padding: 20px 0;
}
.archive-news-list dt {
    margin-right: 20px;
}

@media screen and (max-width: 990px) {
    .archive-news-list dl {
        display: block;
    }
}
@media screen and (max-width: 680px) {
    #blog-content {
        margin-bottom: 20px;
        padding-bottom: 40px;
    }
}

/*********************
BUSINESS
*********************/

/* agency */
#business-agency-lead {
    background: #eff9f8;
}
#business-agency-concept {
    position: relative;
}

h2.agency-section-title {
    margin: 0;
    padding: 0;
    line-height: 0;
    text-align: center;
}
h2.agency-section-title span {
    display: block;
}
h2.agency-section-title span.en {
    font-size: 120px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    color: #e4e3e3;
}
h2.agency-section-title span.jp {
    font-size: 18px;
    color: #666;
}


#business-agency-concept h2.agency-section-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

#business-agency-concept h2.agency-section-title span.en {
    color: #d8f0ed;
}

#business-agency-business {
    background: #fafafa;
}

#business-agency-business .pictAera,
#business-agency-works .pictAera {
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    background: #f2f2f2;
}
#business-agency-business .pictAera img,
#business-agency-works .pictAera img {
    width: 100%;
}

#business-agency-works h2.agency-section-title span.en {
    color: #e4e3e3;
}

h2.sampling-comicTitle {
    display: inline-block;
    color: #734c2d;
    border-bottom: 3px dotted #e5a319;
    margin: 1em 0;
    padding: 0 0 5px;
    font-size: 1.4em;
}

.box-sampling-list {
    border: 1px solid #c6911d;
    padding: 1.8em 2.4em;
    border-radius: 10px;
}
.box-sampling-list h4 {
    color: #734c2d;
    margin: 1.8em 0 0;
    padding: 0;
}
.box-sampling-list p {
    margin: .6em 0 0;
    padding: 0;
}

#business-agency-contact {
    background: #555;
    color: white;
}
#business-agency-contact h2 {
    margin: 0 0 1em;
    padding: 0;
    font-size: 1.2em;
}

@media screen and (min-width: 991px) {
    h2.agency-section-title {
        height: 100px;
    }
    #business-agency-concept h2.agency-section-title {
        top: -80px;
    }
}

@media screen and (max-width: 990px) {
    h2.agency-section-title {
        height: 60px;
    }#business-agency-concept h2.agency-section-title {
        top: -50px;
    }
    h2.agency-section-title span.en {
        font-size: 80px;
    }
}

@media screen and (max-width: 680px) {
    h2.agency-section-title {
        margin: 0 0 20px;
        padding: 0;
        text-align: left;
        height: auto;
        line-height: 1;
    }
    #business-agency-concept h2.agency-section-title {
        position: relative;
        top: 0;
        margin: 0 0 20px;
    }
    h2.agency-section-title span.en {
        font-size: 40px;
    }
    h2.agency-section-title span.jp {
        font-size: 14px;
    }
}

/*********************
BOOKS
*********************/
.book-wrapper {
    border-bottom: 1px solid #CCC;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
h4.book-title {
    font-size: 1.1em;
    margin: 0 0 10px;
    padding: 0;
}
h4.book-title span {
    display: block;
}
h4.book-title span.sub {
    display: inline-block;
    font-size: 12px;
    background: #55a6cb;
    color: white;
    padding: 2px 1em;
    border-radius: 3px;
    margin-bottom: 5px;
}

.book-thumb-wrapper {
    margin-bottom: 10px;
    text-align: center;
}
.book-thumb-wrapper img.style-shadow {
    border-radius: 0;
}
img.book-thumb {
    width: 100%;
    margin: 0 auto;
    max-width: 160px !important;
}
.book-sold {
    display: inline-block;
    background: #EEE;
    border-radius: 3px;
    font-size: .8em;
    padding: .6em 1.2em;
}

ul#hkn-btns {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
ul#hkn-btns li {
    flex-basis: 25%;
}
ul#hkn-btns li a {
    display: block;
    text-decoration: none;
    background: #fff;
    color: #666;
    border-radius: 5px;
    padding: .5em 1em;
    margin: 5px;
    font-size: .9em;
    border: 1px solid #DDD;
    font-weight: bold;
}
ul#hkn-btns li a:hover {
    background: #999;
    color: white;
}

@media screen and (max-width: 1200px) {
    ul#hkn-btns li {
        flex-basis: 33.33%;
    }
}
@media screen and (max-width: 680px) {
    h4.book-title span.sub {
        font-size: 10px;
    }
    ul#hkn-btns li {
        flex-basis: 50%;
    }
}

/*********************
CM
*********************/

ul.cm-list {
    list-style: none;
}
ul.cm-list li {
    padding: 20px;
    margin-bottom: 20px;
}
ul.cm-list li:nth-child(odd) {
    background: #f7f7f7;
    border-radius: 7px;
}
ul.cm-list li h3 {
    margin: 0 0 10px;
    padding: 0 0 5px;
    border-bottom: 1px solid #666;
}

/* gallery */
.cm-gallery-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
.cm-gallery-nav ul li a {
    display: block;
    margin: 2px;
    padding: 2px 6px;
    border: 1px solid #499cc6;
    border-radius: 3px;
    text-decoration: none;
}
.cm-gallery-nav ul li.selected a {
    background: #499cc6;
    color: white;
}
.cm-gallery-nav ul li a:hover {
    background: #499cc6;
    color: #fff;
    transition: all .3s;
}
h5.cm-gallery-title {
    background: #499cc6;
    color: white;
    padding: .5em 1em;
    border-radius: 3px 3px 0 0;
    margin: 0;
}
@media screen and (min-width: 768px) {
    h5.cm-gallery-title {
        min-height: 4em;
    }
}


/*********************
CSR
*********************/

.csr-wrapper > div {
    height: 100%;
}
.csr-inner {
    background: #f5f5f5;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 7px;
    height: 100%;
}
.csr-inner > a {
    text-decoration: none;
}
.csr-inner img {
    width: 100%;
    border-radius: 7px 7px 0 0;
    transition: .2s;
}
.csr-inner > a:hover img {
    opacity: .8;
}
.csr-inner dl {
    padding: 30px 0;
    margin: 0 20px;
    background: url(../../images/csr/ar.png) no-repeat right center;
    background-size: 15px auto;
}
.csr-inner dl dt h3 {
    margin: 0 0 15px;
    padding: 5px 10px;
    font-size: 12px;
    background: #333;
    color: white;
    display: inline-block;
    border-radius: 3px;
}
.csr-inner dl dd {
    margin: 0;
    padding: 0 25px 0 0;
    font-weight: bold;
}

@media screen and (max-width: 680px) {
    .csr-inner dl {
        padding: 20px 0;
        margin: 0 10px;
        background-size: 10px auto;
    }
    .csr-inner dl dt h3 {
        margin: 0 0 10px;
        padding: 3px 8px;
        font-size: 11px;
    }
    .csr-inner dl dd {
        padding: 0 20px 0 0;
    }
}

/*********************
PRIVACY
*********************/
.privacy-wrapper h4.title {
    background: #f1f1f1;
    padding: 2px 5px;
}
.privacy-wrapper h4.title.border {
    background: transparent;
    padding: 0;
    font-size: 1.1em;
    border-bottom: 2px solid #999;
}
.privacy-wrapper h5 {
    font-size: 1em;
    margin: 0 0 1em;
    padding: 0 0 0 10px;
    border-left: 5px solid #b0d2e1;
    border-bottom: 1px solid #EEE;
}


/*********************
YOUCHI
*********************/

.youchi-btn a {
    display: block;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(128,128,128,.1);
    padding: 1.6em 1em;
    height: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.youchi-btn a figure {
    margin: 0;
    padding: 0;
}
.youchi-btn a img {
    width: 100%;
}
.youchi-btn a:hover {
    opacity: .8;
}

@media screen and (min-width: 576px) {
    .youchi-btn a figure {
        margin: 0 auto 10px;
        width: 50%;
        max-width: 100px;
    } 
}
@media screen and (max-width: 575px) {
    .youchi-btn a {
        display: flex;
        text-align: left;
        align-items: center;
    }
    .youchi-btn a:after {
        font-family: "Font Awesome 5 Free";
        text-decoration: none;
        font-weight: 900;
        content: '\f105';
        margin-left: 7px;
        color: #7ac2da;
    }
    .youchi-btn a figure {
        margin: 0 10px 0 0;
        flex-shrink: 0;
        flex-basis: 70px;
    }
    .youchi-btn a div {
        flex-shrink: 0;
        flex-basis: calc( 100% - 95px );
    }
}

ul.youchi-information {
    list-style: none;
    margin: 0 -15px;
}
ul.youchi-information li.slick-slide {
    margin: 0 15px;
}
ul.youchi-information a {
    text-decoration: none;
}
ul.youchi-information a .body {
    text-decoration: underline;
}
ul.youchi-information img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
ul.youchi-information .cat span {
    display: inline-block;
    font-size: .8em;
    font-weight: bold;
    color: white;
    border-radius: 3px;
    padding: 5px 10px; 
    margin: 0 0 10px;
    line-height: 1;
}
ul.youchi-information .date {
    font-size: .8em;
    margin-bottom: 5px;
    text-decoration: none;
}

ul.youchi-information .cat.cat01 span { background: #af6c3a; }
ul.youchi-information .cat.cat02 span { background: #41a0b1; }
ul.youchi-information .cat.cat03 span { background: #6855cc; }
ul.youchi-information .cat.cat04 span { background: #cc6855; }

@media screen and (max-width: 575px) {
    ul.youchi-information {
        margin: 0 -10px;
    }
    ul.youchi-information li.slick-slide {
        margin: 0 10px;
    }
}
