@charset "utf-8";

/*----------------------------------------------------------------------------------------------------

    GRAND SETTINGS

----------------------------------------------------------------------------------------------------*/

h2, h3 {
    font-family: Montserrat, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

@media screen\0 {
    h2, h3 {
        font-family: Montserrat,Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    }
}

a {
    color: #999;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    -ms-interpolation-mode: bicubic;
}

select::-ms-expand {
	display: none;
}

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

@media screen and (max-width: 768px) {
    a {
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: (0,0,0,0);
        cursor: pointer;
    }
}


/*----------------------------------------------------------------------------------------------------

    HEADER

----------------------------------------------------------------------------------------------------*/

#header {
    display: table;
    background: #000;
    width: 100%;
    margin: 0;
    padding: 15px 0;
}

#header > .wrapper {
    padding: 0 5%;
}

#header a {
    color: #fff;
}

.header__logo {
    display: table-cell;
    margin: 0;
    font-size: 0;
    vertical-align: middle;
}
.header__logo img {
    width: 143px;
    height: 42px;
}
.header__logo img a {
    margin: 0;
}

@media screen and (min-width: 769px) {
    #nav-toggle {
        display: none;
    }
}

#header__gloval-nav {
    display: table-cell;
    width: 100%;
}

.header__nav-list li {
    float: left;
    margin: 14px 0 10px 4%;
    text-align: center;
}

.header__nav-list a div {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header__nav-list a:hover div {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.nav-title {
    font-size: 15px;
    font-family: Montserrat;
    font-weight: bold;
}

.nav-text {
    font-size: 13px;
    color: #d0d0d0;
    margin: 0 0 0;
}

.nav-login {
    font-size: 0;
    width: 19px;
    height: 43px;
    background-image: url(../img/icon/icon_login.png);
    background-repeat: no-repeat;
    background-size: 19px 19px;
    background-position: 50% 50%;
    transition: 0.2s;
}

.nav-login a {
    display: block;
    width: 19px;
    height: 43px;
}

.nav-login .nav-title,
.nav-login .nav-text {
    font-size: 0;
    width: 22px;
}

.nav-instagram {
    font-size: 0;
    width: 19px;
    height: 43px;
    background-image: url(../img/icon/icon_instagram_pc.png);
    background-repeat: no-repeat;
    background-size: 19px 19px;
    background-position: 50% 50%;
    transition: all 0.2s ease-in-out;
}

.header__nav-list li.nav-instagram {
    margin-left: 2%;
}

.nav-instagram a {
    display: block;
    width: 19px;
    height: 43px;
}

.nav-instagram .nav-title,
.nav-instagram .nav-text {
    font-size: 0;
    width: 22px;
}

.nav-instagram:hover,
.nav-login:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}


#header__nav-toggle {
    margin: 0;
}
#header__nav-toggle--close {
    display: none;
}

@media screen and (max-width: 768px) {
    #header {
        position: relative;
        top: -50%;
        background: #000;
        padding: 20px auto;
    }
    .header__logo {
        display: block;
        text-align: center;
    }
    .header__logo img {
        height: 35px;
        width: auto;
    }
    /* navigation */
    #header__nav-toggle {
        position: absolute;
        top: 29%;
        right: 0px;
        width: 35px;
        height: 27px;
        cursor: pointer;
        margin: 0;
        z-index: 1000 !important;
        overflow: hidden;
    }
    #header__nav-toggle * {
        margin: 0;
    }
    #header__nav-toggle > div {
        position: relative;
        width: 50px;
    }
    #header__nav-toggle span {
        width: 70%;
        height: 2px;
        left: 0;
        display: block;
        background: #fff;
        position: absolute;
        transition: top .3s ease, -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, top .3s ease;
        transition: transform .3s ease-in-out, top .3s ease, -webkit-transform .3s ease-in-out;
    }
    #header__nav-toggle span:nth-child(1) {
        top: 3px;
    }
    #header__nav-toggle span:nth-child(2) {
        top: 13px;
    }
    #header__nav-toggle span:nth-child(3) {
        top: 23px;
    }
    .open #header__nav-toggle span {
        background: #fff;
    }
    .open #header__nav-toggle span:nth-child(1) {
        top: 13px;
        -webkit-transform: rotate(30deg);
                transform: rotate(30deg);
    }
    .open #header__nav-toggle span:nth-child(2) {
        top: 15px;
        width: 0;
        left: 50%;
    }
    .open #header__nav-toggle span:nth-child(3) {
        top: 13px;
        -webkit-transform: rotate(-30deg);
                transform: rotate(-30deg);
    }
    #header__gloval-nav {
        background-color: rgba(0,0,0,0.9);
        color: #fff;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 990;
        text-align: center;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        margin: 0;
        overflow-y: scroll;
    }
    #header__gloval-nav a {
        display: block;
        color: #fff;
        text-decoration: none;
        transition: color .6s ease;
        height: 50px;
        margin: 0 auto;
    }
    #header__gloval-nav ul {
        list-style: none;
    }
    #header__gloval-nav ul li {
        opacity: 0;
    }
    .open {
        overflow: visible;
    }
    .open #header__gloval-nav {
        visibility: visible;
        opacity: 1;
    }
    .open #header__gloval-nav li {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        transition: transform 1s ease, opacity .9s ease;
        transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
    }
    .header__nav {
        margin: 0;
        padding: 15% 12% 5% 12%;
    }
    .header__nav-list {
        display: inline;
        text-align: left;
        margin: 0;
    }
    .header__nav-list li {
        float: none;
        display: table;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    .nav-title {
        display: table-cell;
        font-size: 20px;
        text-decoration: underline;
        border-width: 1px;
        width: 60%;
        float: left;
        overflow: hidden;
        margin-right: 1%;
    }
    .nav-text {
        display: table-cell;
        font-size: 14px;
        color: #ccc;
        margin: 0 0 0;
        width: 39%;
        vertical-align: middle;
    }
    .nav-login {
        width: 100% !important;
        background-image: none;
        margin-left: 0 !important;
    }
    .nav-login a {
        width: 100%;
    }
    .nav-login .nav-title {
        display: table-cell;
        font-size: 20px;
        text-decoration: underline;
        border-width: 1px;
        width: 60%;
        float: left;
        overflow: hidden;
        margin-right: 1%;
    }
    .nav-login .nav-text {
        display: table-cell;
        font-size: 14px;
        color: #ccc;
        margin: 0 0 0;
        width: 39%;
        vertical-align: middle;
    }
    .nav-instagram {
        font-size: 0;
        width: 50px;
        height: 50px;
        background-image: url(../img/icon/icon_instagram_sp.png);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .header__nav-list li.nav-instagram {
        margin: 50px auto;
    }
    .nav-instagram a {
        width: 50px;
        height: 50px;
    }
    #header__nav-toggle--close {
        display: inline;
        color: #999;
        font-size: 20px;
        font-weight: bold;
        padding-left: 20px;
        background-image: url(../img/icon/icon_navicolse.png);
        background-repeat: no-repeat;
        background-size: 14px 14px;
        background-position: top 50% left 0;
    }
}


/*----------------------------------------------------------------------------------------------------

    CONTENTS

----------------------------------------------------------------------------------------------------*/

#main {
    text-align: center;
    margin: 0;
}

#main .block {
    margin: 80px auto 0;
}

#main .block-archive,
#main .block-single,
#main .block-page {
    margin: 30px auto 0;
}

#main .block-single img,
#main .block-page img {
    max-width: 100%;
    height: auto;
}

#main .block-link {
    margin: 80px auto 0;
}

#main .block-link > div:nth-of-type(n+2) {
    margin: 40px 0 90px;
}

@media screen and (max-width: 768px) {
    #main .block__archive,
    #main .block__single,
    #main .block__page {
        margin: 30px auto 0;
    }
    #main .block-link > div:nth-of-type(n+2) {
        margin: 40px 0 0;
    }
}


/* CONTACT overwrite */

#contact {
    padding: 0;
}


/* BREAD */

.bread a,
.bread-sp a {
    color: #000;
    text-decoration: underline;
}

.bread {
    color: #000;
    margin: 24px 0;
    padding: 0 0 12px 0;
}

.bread-nh {
    display: block;
    padding: 30px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.bread-nh .list-bread {
    text-align: right;
    margin: 0 8px;
}

.bread-sp {
    display: none;
    margin: 0;
}

.list-bread {
    font-size: 12px;
    text-align: right;
    color: #000;
    margin: 0 10px;
}

.list-bread .list__item {
    display: inline-block;
    padding: 0;
}

.list-bread .list__item:nth-of-type(n+2):before {
    content: ">";
    padding: 0 12px 0 8px;
}

.inner .list-bread {
    margin: 34px 0;
}

@media screen and (max-width: 768px) {
    .bread-sp {
        display: block;
        padding: 40px 0 10px;
    }
    .bread-sp .list-bread {
        text-align: left;
        margin: 0 8px;
    }
    .bread-nh {
        display: none;
    }
}


/* HEADING */

.heading__title {
    font-weight: bold;
    margin: 0;
}

h2.heading__title {
    font-size: 24px;
    font-weight: bold;
}

h3.heading__title {
    font-size: 18px;
}

.heading__caption {
    font-size: 14px;
    margin: 5px 0 0;
}


/* CONTENT */

.contents {
    margin: 35px auto 0;
}
.contents > p {
    line-height: 2.0;
}
@media screen and (max-width: 768px) {
    .contents {
        margin: 25px auto 0;
    }
}


/* BUTTON */

.button--black:hover,
.button--white:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.button--black {
    display: block;
    font-size: 16px;
    color: #fff;
    background: #333;
    background: var(--primary-color);
    padding: 20px 0;
    margin: 0 auto;
    width: 300px;
    box-shadow: 0 3px 3px #9f9f9f;
    background-image: url(../img/icon/icon_arrow-white.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    text-align: center;
    transition: opacity .3s ease-out;
}

.button--white {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 20px 0;
    margin: 0 auto;
    box-shadow: 0 3px 3px #9f9f9f;
    background-image: url(../img/icon/icon_arrow-black.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    text-align: center;
    border: 1px solid #000;
    transition: opacity .3s ease-out;
}

#footer .button--white {
    margin: 0;
    font-weight: bold;
    box-shadow: none;
}

@media screen and (max-width: 768px) {
    #footer .button--white {
        margin: 0 auto;
        font-weight: normal;
    }
}


/*----------------------------------------------------------------------------------------------------

    COMMON : LARGE LINK

----------------------------------------------------------------------------------------------------*/

.link-box {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    text-align: center;
}

.link-box a {
    display: block;
    color: #000;
    padding: 50px 0 100px;
}

.link-box__title {
    font-size: 25px;
    font-family: Montserrat;
    font-weight: bold;
    margin: 0;
}

.link-box__caption {
    font-size: 13px;
    margin: 5px 0 20px;
}

/* FLOAT */

.link-box-advertising,
.link-box-wallshare {
    width: 49.8%;
    text-align: center;
    margin: 0;
}

/* COLOR */

.link-box-advertising {
    float: left;
    background: #ddd;
}
.link-box-advertising:hover {
    background: #f5b929;
}

.link-box-wallshare {
    float: right;
    background: #f3f3f3;
}
.link-box-wallshare:hover {
    background: var(--info-color);
    background: #62d0c9;
}

.link-box-calendar {
    background: #f3f3f3;
}
.link-box-flow {
    background: #ddd;
}
.link-box-calendar:hover,
.link-box-flow:hover {
    background: #5db2ef;
}

.link-box-entry {
    background: #f3f3f3;
}
.link-box-contact {
    background: #ddd;
}
.link-box-entry:hover,
.link-box-contact:hover {
    background: #de5e40;
}

@media screen and (max-width: 768px) {
    .link-box {
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        text-align: center;
    }
    .link-box-wallshare {
        margin-top: 25px;
    }
    .link-box-advertising,
    .link-box-wallshare {
        float: none;
        width: 100%;
    }
    .link-box a {
        padding: 40px 0 60px;
    }
}


/*----------------------------------------------------------------------------------------------------

    PAGE : ADVERTISING

----------------------------------------------------------------------------------------------------*/

#advertising-map {
    color: #fff;
    position: relative;
}

#advertising-map .gmap-info-window-marker {
    margin: 0;
}

#advertising-map .gm-control-active img {
    margin: 0;
}

#search-unit {
    position: absolute;
    background: rgb(000,000,000);
    filter: alpha(opacity=62);
    background: rgba(000,000,000,0.62);
    width: 100%;
    display: table;
    table-layout: fixed;
    padding: 10px 0;
    top: 0;
    margin: 0;
}

.search-unit-left {
    float: left;
    margin: 0;
    width: 18%;
    display: block;
    line-height: 50px;
}

.search-unit-right {
    float: left;
    margin: 0;
    width: 82%;
    text-align: left;
    font-size: 0;
}

.search-unit-text {
    text-align: left;
    font-weight: bold;
    margin: 0;
    opacity: none;
}

.search-unit-select {
    width: 63%;
    display: block;
    float: left;
}

.search-unit-select > select {
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    color: #999;
    background: #fff;
    padding: 0 18px 0 40px;
    border: 0;
    border-radius: 5px 0 0 5px;
    background-image:
        url(../img/icon/icon_marker.svg),
        url(../img/icon/icon_pulldown.svg);
    background-repeat: no-repeat;
    background-size:
        auto 23px,
        auto 22px;
    background-position:
        center left 15px,
        center right 15px;
    margin: 0;
    height: 50px;
    line-height: 50px;
    width: 75%;
    vertical-align: middle;
}

.search-unit-button {
    font-size: 18px;
    padding: 0 35px 0 55px;
    margin: 0 0 0;
    border-radius: 0 5px 5px 0;
    border: 0;
    display: inline-block;
    color: #fff;
    background: #999;
    background-image: url(../img/icon/icon_search.svg);
    background-repeat: no-repeat;
    background-position: center left 25px;
        -ms-background-position-x: left;
        -ms-background-position-y: center;
    background-size: auto 18px;
    cursor: pointer;
    overflow: visible;
    height: 50px;
    line-height: 50px;
    width: 25%;
    vertical-align: top;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-unit-check {
    display: block;
    float: left;
    width: 35%;
    height: 50px;
    font-size: 0px;
    margin: 0;
}

.search-unit-check label {
    display: inline-block;
    width: 40%;
    margin: 0;
    font-size: 16px;
    line-height: 50px;
}

.search-unit-check label:first-of-type {
    margin-left: 10%;
    margin-right: 5%;
}

.search-unit-check label input[type=checkbox] {
    width: 17px;
    height: 17px;
    vertical-align: middle;
    margin: 0 5% 0 0;
    line-height: 50px;
}

@media screen and (max-width: 768px) {
    #search-unit {
        width: 100%;
        padding: 3%;
    }
    #search-unit > div {
        display: table;
    }
    .search-unit-left {
        float: none;
        display: table-cell;
        width: 30%;
        margin-right: 3%;
        vertical-align: middle;
    }
    .search-unit-text {
        font-weight: normal;
        font-size: 14px;
        line-height: 23px;
    }
    .search-unit-right {
        float: none;
        display: table-cell;
        width: 67%;
    }
    .search-unit-select {
        width: 100%;
        display: block;
    }
    .search-unit-select >select {
        width: 80%;
        font-size: 16px;
    }
    .search-unit-button {
        width: 20%;
        font-size: 0;
        padding: 0;
        background-position: center center;
        background-size: auto 19px;
        margin: 0 0 0 0px;
    }
    .search-unit-check {
        display: block;
        width: 100%;
        height: auto;
        line-height: 13px;
        margin-top: 10px;
    }
    .search-unit-check label {
        width: 47.5%;
        font-size: 13px;
        line-height: 13px;
    }
    .search-unit-check label:first-of-type {
        margin-left: 0;
    }
    .search-unit-check label input[type=checkbox] {
        line-height: 20px;
    }
}


/* LIST */

#advertising-list > .bread {
    margin: 0;
}
.list-advertising {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    width: 98%;
    margin: 0 auto;
}

.list-advertising .list__item {
    width: 22.5%;
    margin: 0 1%;
}

.list-advertising .list__item a {
    display: block;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.list-advertising .list__item a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.list-advertising .list__item:nth-child(n+5) {
    margin-top: 30px;
}

.list-advertising .list__item-image {
    font-size: 0;
}

.list-advertising .list__item-image img {
    width: 100%;
}

.list-advertising .list__item-title {
    color: #999;
    font-size: 14px;
    margin: 10px 0 0;
    line-height: 20px;
}
@media screen and (max-width: 768px) {
    #advertising-list > .bread {
        display: none;
    }
    .list-advertising {
        display: block;
        text-align: left;
    }
    .list-advertising .list__item {
        display: inline-block;
    }
    .list-advertising .list__item {
        width: 45%;
        margin: 0 2%;
    }
    .list-advertising .list__item:nth-child(n+3) {
        margin-top: 30px;
    }
    .list-advertising .list__item-title,
    .list-advertising .list__item-caption,
    .list-advertising .list__item-text {
        text-align: center;
    }
}


/*----------------------------------------------------------------------------------------------------

    PAGE : WALLSHARE

----------------------------------------------------------------------------------------------------*/

.list-wallshare {
    display: table;
    margin: 0 auto;
    table-layout: fixed;
}

.list-wallshare .list__item {
    display: table-cell;
    margin: 0;
    padding-left: 33px;
}

.list-wallshare .list__item:first-of-type {
    padding-left: 0;
}

.list-wallshare .list__item-img {
    position: relative;
}

.list-wallshare .item-img img {
    width: 100%;
    max-width: 251px !important;
}

.list-wallshare .item-arrow {
    position: absolute;
    top: 30%;
    right: -30px;
}

@media screen and (max-width: 768px) {
    .list-wallshare {
        display: block;
        padding: 10px;
    }
    .list-wallshare .list__item {
        display: block;
        font-size: 0;
        margin: 0;
        padding: 0;
    }
    .list-wallshare .list__item-img {
        display: inline-block;
        vertical-align: middle;
        width: 170px;
    }
    .list-wallshare .item-img {
        display: inline-block;
        vertical-align: middle;
        width: 150px;
    }
    .list-wallshare .item-arrow {
        position: static;
    }
    .list-wallshare .item-arrow img {
        margin: -5px 0 5px;
        width: 25px;
    }

    .list-wallshare .list__item .list__item-text {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        font-size: 14px;
        padding-left: 1%;
        text-align: left;
        margin-top: -20px;
    }
}


/*----------------------------------------------------------------------------------------------------

    PAGE : MEDIA and WORKS

----------------------------------------------------------------------------------------------------*/

#media {
    margin: 0 auto;
    padding: 0 0 20px 0;
    width: 100%;
}

#media .row {
    margin: 0 auto;
    max-width: 1200px;
    border-spacing: 10px;
}

#media .row .col {
    width: 290px;
    padding-bottom: 24px;
    vertical-align: top;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
}

#media .row .col:hover {
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
    opacity: 0.6;
}

.media-list-image {
    font-size: 0;
    line-height: 0;
    display: table-cell;
    table-layout: fixed;
    vertical-align: middle;
    text-align: center;
    width: 280px;
    height: 163px;
}

.media-list-image img {
    width: auto;
    max-width: 280px;
    max-height: 163px;
}

#media .row .col p.media-list-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 12px 0;
    word-break: break-all;
}

.media-list-meta {
    font-size: 12px;
    width: 90%;
    margin: 0 auto;
    border-spacing: 0;
}

.media-list-date {
    text-decoration: underline;
}


@media screen and (max-width: 768px){
    #works .col {
        margin: 10px;
        padding-bottom: 10px;
    }
    #media .row:last-of-type :not(.placeholder):last-child {
        padding-bottom: 0;
    }
    #media .col.placeholder.hd,
    #works .col.placeholder.hd {
        display: none;
    }
}


/*----------------------------------------------------------------------------------------------------

    TOP PAGE ONLY

----------------------------------------------------------------------------------------------------*/

#home section:last-of-type {
    margin-bottom: 90px;
}

/* VISUAL */

#home-visual {
    position: relative;
    max-width: 100%;
}

.home-visual__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background: #000;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-x: center;
}

.home-visual__form {
    padding: 600px 0 80px;
    margin: 0;
}

.home-visual__form h2 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.home-visual__form-select {
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    color: #999;
    background: #fff;
    width: 410px;
    padding: 0 20px 0 42px;
    border: 0;
    border-radius: 5px 0 0 5px;
    background-image:
        url(../img/icon/icon_marker.svg),
        url(../img/icon/icon_pulldown.svg);
    background-repeat: no-repeat;
    background-size:
        auto 23px,
        auto 22px;
    background-position:
        center left 15px,
        center right 15px;
    margin: 0;
    height: 60px;
    line-height: 60px;
}

.home-visual__form-select option {
    background-color: #fff;
    color: #333;
}

.home-visual__form-value {
    font-size: 18px;
    padding: 0 35px 0 50px;
    margin: 0 0 0 -6px;
    border-radius: 0 5px 5px 0;
    border: 0;
    display: inline-block;
    color: #fff;
    background: #999;
    background-image: url(../img/icon/icon_search.svg);
    background-repeat: no-repeat;
    background-position: center left 25px;
        -ms-background-position-y: center;
        -ms-background-position-x: 10px;
    background-size: auto 18px;
    cursor: pointer;
    overflow: visible;
    height: 60px;
    line-height: 60px;
    vertical-align : top;
}

@media screen and (max-width: 768px) {
    .home-visual__image {
        background-position-x: 75%;
        background-position: 75% center;
    }
    .home-visual__form h2 {
        font-size: 24px;
        font-weight: bold;
    }
    .home-visual__form {
        padding: 80vw 0 20vw;
    }
    .home-visual__form-select {
        font-size: 16px;
        width: 54%;
        padding: 0 0 0 40px;
        background-size:
            auto 23px,
            auto 18px;
        background-position:
            center left 15px,
            center right 15px;
        height: 44px;
        line-height: 44px;
    }
    .home-visual__form-value {
        font-size: 16px;
        width: 100px;
        padding: 0 15px 0 39px;
        background-size: auto 19px;
        background-position: center left 17px;
        height: 44px;
        line-height: 44px;
    }
}

/* NEWS 2021-01-21追加 */

.home-news__container {
    width: 100%;
    margin: 50px auto;
    padding: 0 0 50px;
    max-width: 1200px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.home-news__container--title {
    font-size: 30px;
    font-weight: bold;
}

.home-news__container--text {
    font-size: 14px;
    line-height: 2.0;
    margin: 0 10%;
}

.home-news__container--text a {
    color: #000;
    text-decoration: underline;
}

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

/* ABOUT */

.home-about__container {
    display: table;
    width: 90%;
    margin: 50px auto;
    max-width: 1200px;
}

.home-about__left,
.home-about__center,
.home-about__right {
    display: table-cell;
    vertical-align: middle;
}

.home-about__left {
    text-align: left;
    width: 5%;
}

.home-about__center {
    text-align: center;
    width: 90%;
}

.home-about__right {
    text-align: right;
    width: 5%;
}

.home-about__left img,
.home-about__right img {
    width: 16px;
}


.home-about__center--title {
    font-size: 24px;
    font-weight: bold;
}

.home-about__center--text {
    font-size: 14px;
    line-height: 2.0;
}

@media screen and (max-width: 768px) {
    .home-about__center {
        text-align: left;
        width: 80%;
    }
    .home-about__left,
    .home-about__right {
        width: 10%;
    }
    .home-about__left img,
    .home-about__right img {
        height: 52px;
        width: 13px;
    }
}

/* WALLSCAPE */

.top-wallscape {
    width: 100%;
}

.top-wallscape__lst {
    background: #000;
}

.top-wallscape__lst-item {
    position: relative;
    width: 25%;
    margin: 0;
    float: left;
    overflow: hidden;
}

.top-wallscape__lst-item:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.top-wallscape__lst-item a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.top-wallscape__article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-wallscape__article-txt {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    width: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    -webkit-transition: all 0.2s ease;
    transition: all 0.4s ease;
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 50% 0;
}

.top-wallscape__lst-item:hover .top-wallscape__article-txt {
    opacity: 1;
}

.top-wallscape__article-txt p {
    font-family: Montserrat, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-size: 24px;
    color: #fff;
    top: 50%;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .top-wallscape__lst-item {
        width: 50%;
    }
    .top-wallscape__article-txt p {
        font-size: 20px;
    }
}

/* MEDIA */

.top-media__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}

.top-media__list-item {
    width: 16%;
    margin: 2%;
    word-break: break-all;
}

.top-media__list-item img {
    max-width: 100%;
    max-height: 120px;
}

@media screen and (max-width: 768px) {
    .top-media__list {
        margin: 0 40px 40px;
    }
    .top-media__list-item {
        width: 29.333%;
    }
}


/*----------------------------------------------------------------------------------------------------

    POST

----------------------------------------------------------------------------------------------------*/

/* works */

.works-contents {
    margin: 0;
}

.under_dir .inner.description p a {
    color: #999;
}


/*----------------------------------------------------------------------------------------------------

    CALENDAR

----------------------------------------------------------------------------------------------------*/

#calendar {
    margin: 20px auto;
}

#calendar * + * {
    margin: 0;
}

.ai1ec-subscribe-container {
    display: none !important;
}

@media screen and (max-width: 768px) {
    #calendar {
        margin: 20px ;
        overflow: hidden;
    }
}


/* schedule */

#schedule #contact_form .heading {
    text-align: center;
}

.schedule_post * + * {
    margin: 0;
}

.schedule_post {
    text-align: left;
    padding: 0 0 0;
}

/* plugin overwrite */

.ai1ec-field-value > span {
    display: none;
}

.ai1ec-single-event .ai1ec-actions .ai1ec-btn-group-vertical:last-child {
    display: none;
}

.ai1ec-event-details .ai1ec-row {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.ai1ec-event-details .ai1ec-row:last-child {
    border-bottom: 0;
}
.ai1ec-field-label {
    padding-left: 0 !important;
    width: 15% !important;
    font-size: 13px !important;
    line-height: 2.0em !important;
}

.ai1ec-time .ai1ec-field-label {
    padding: 7px 15px 7px 0 !important;
}

.ai1ec-time .ai1ec-field-value {
    font-size: 20px !important;
    line-height: 2.0em !important;
    padding-left: 0 !important;
}
.ai1ec-categories .ai1ec-category,
.ai1ec-categories .ai1ec-field-value {
    padding-left: 0 !important;
}
.ai1ec-single-event .ai1ec-event-details {
    margin-bottom: 80px !important;
}

.ai1ec-popover.ai1ec-popup.ai1ec-popup-in-month-view {
    display: none !important;
}
.timely.ai1ec-tooltip.ai1ec-fade.ai1ec-top.ai1ec-in {
    margin: 0 !important;
}

@media screen and (max-width: 768px) {
    .ai1ec-field-label {
        width: 100% !important;
        padding-left: 15px !important;
    }
    .ai1ec-event-details {
        margin: 25px 15px 0 !important;
    }
    .ai1ec-time .ai1ec-field-label {
        padding-left: 15px !important;
    }
    .ai1ec-time .ai1ec-field-value {
        font-size: 16px !important;
        padding-left: 15px !important;
    }
    .ai1ec-categories .ai1ec-category,
    .ai1ec-categories .ai1ec-field-value {
        padding-left: 15px !important;
    }
    .ai1ec-single-event .ai1ec-event-details {
        margin-bottom: 25px !important;
    }
    .ai1ec-actions {
        display: none;
    }
    #schedule .backlink {
        margin-top: 20px;
    }
    #schedule .backlink > a {
        text-decoration: underline;
    }
    .ai1ec-event-details.ai1ec-clearfix > .ai1ec-time.ai1ec-row,
    .ai1ec-event-details.ai1ec-clearfix > .ai1ec-categories.ai1ec-row {
        padding-left: 15px !important;
    }
}

/*----------------------------------------------------------------------------------------------------

    FOOTER

----------------------------------------------------------------------------------------------------*/

#footer {
    font-size: 14px;
    background-color: #f6f6f6;
    padding: 70px 30px;
    margin: 90px 0 0;
}

#footer a {
    color: #000;
    transition: 0.2s;
}

.footer__unit {
    float: left;
    width: 30%;
    margin: 0;
}

.footer__unit:nth-of-type(2) {
    margin: 0 5%;
}

.footer__def-link {
    margin: 0;
    width: 90%;
}

.footer__def-link dt {
    font-size: 16px;
}

.footer__def-link dt:nth-of-type(2) {
    margin-top: 40px;
}

.footer__def-link dd a {
    max-width: 100%;
}

/* button */

.footer__def-link a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 3px 3px #9f9f9f;
    background-image: url(../img/icon/icon_arrow-black.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    border: 1px solid #000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    outline: none;
}
.footer__def-link a:focus {
    outline: none;
}

.def-link-advertising a:hover {
    background-color: #f5b929;
}

.def-link-wallshare a:hover {
    background-color: #62d0c9;
}

.float-list {
    float: left;
    width: 50%;
}

.float-list li {
    margin-bottom: 17px;
}

.float-list li a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.footer__def_address {
    margin: -5px 0 0 0;
}

.footer__def_address dt {
    font-size: 18px;
}

.footer__def_address dd {
    line-height: 1.8;
}

.footer__copyright {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    #footer {
        font-size: 14px;
        padding: 60px 10% 20px 10%;
        margin: 0;
    }
    #footer a {
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
    }
    .footer__unit {
        float: none;
        width: 100%;
    }
    .footer__unit:first-of-type {
        text-align: center;
    }
    .footer__unit:nth-of-type(2) {
        margin: 50px 0;
    }
    .footer__def-link {
        width: 100%;
    }
    .footer__def-link dt {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .footer__def-link a {
        font-weight: normal;
    }
    .float-list {
        float: none;
        width: 100%;
    }
    .float-list li {
        display: inline-block;
        width: 49%;
    }
    .float-list:nth-of-type(2) {
        margin: 0;
    }
    .float-list li:last-of-type {
        margin-bottom: 0;
    }
}


/*----------------------------------------------------------------------------------------------------

    UTILITY

----------------------------------------------------------------------------------------------------*/

/* clear */

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


/* display */

@media screen and (min-width: 769px) {
    .sp_only {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .pc_only {
        display: none !important;
    }
}


/* form button */

#entry input[type="submit"]#submit,
#contact input[type="submit"]#submit,
#recruit input[type="submit"]#submit {
    display: block;
    font-size: 16px;
    color: #fff;
    background: #333;
    background: var(--primary-color);
    padding: 20px 0;
    margin: 0 auto;
    width: 300px;
    box-shadow: 0 3px 3px #9f9f9f;
    background-image: url(../img/icon/icon_arrow-white.png) !important;
    background-repeat: no-repeat !important;
    background-position: center right 15px !important;
    text-align: center;
    transition: opacity .3s ease-out;
    border-radius: 0;
}

#entry input[type="submit"]#submit:hover,
#contact input[type="submit"]#submit:hover,
#recruit input[type="submit"]#submit:hover {
    text-align: center;
    zoom: 1;
    background: rgb(000,000,000);
    filter: alpha(opacity=62);
    background: rgba(000,000,000,0.62);
    opacity: 0.6;
}

@media screen and (max-width: 768px) {
    #entry input[type="submit"]#submit,
    #contact input[type="submit"]#submit,
    #recruit input[type="submit"]#submit {
        box-shadow: 0 3px 3px #9f9f9f;
    }
    #entry input[type="text"],
    #entry input[type="email"],
    #entry input[type="tel"],
    #entry form .select_wrap.select_deco select,
    #entry textarea,
    #contact input[type="text"],
    #contact input[type="email"],
    #contact input[type="tel"],
    #contact textarea,
    #recruit input[type="text"],
    #recruit input[type="email"],
    #recruit input[type="tel"],
    #recruit textarea {
        font-size: 16px;
    }
}


/* transition clear IE11 */

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}


/*

    2020/08/12 新規追加

*/

#main .block-list {
    padding: 50px 0;
    background-color: #f0f0f0;
}

#main .block-list .contents {
    margin: 0 auto !important;
}

#main .block-list .link-list {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
}
#main .block-list .link-list .list__item {
    width: calc(33% - 7px);
    margin: 5px;
}
#main .block-list .link-list .list__item a {
    display: block;
    font-size: 16px;
    color: #fff;
    width: calc(100% - 60px);
    background: #333;
    background: var(--primary-color);
    padding: 20px 30px;
    margin: 0 auto;
    box-shadow: 0 3px 3px #9f9f9f;
    background-image: url(../img/icon/icon_arrow-white.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    text-align: center;
    transition: opacity .3s ease-out;
}
#main .block-list .link-list .list__item a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}
@media screen and (max-width: 768px) {
    #main .block-list .link-list {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
    #main .block-list .link-list .list__item {
        width: 300px;
        margin: 10px auto;
    }
}

/*

    2020/10/09 新規追加

*/

#main .block-list.bgc-white {
  background-color: #fff;
}

#main .block-list .link-list-img {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

#main .block-list .link-list-img .list__item {
  width: calc(33% - 7px);
  margin: 5px;
}

#main .block-list .link-list-img .list__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #fff;
  width: calc(100%);
  box-shadow: 0 3px 3px #9f9f9f;
  background: #333;
  background: var(--primary-color);
  transition: opacity .3s ease-out;
}

#main .block-list .link-list-img .list__item a figure {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#main .block-list .link-list-img .list__item a figure img {
  position: absolute;
  max-width: 100%;
  vertical-align: bottom;
  top: 50%;
  transform: translate(-50%, -50%);
}

#main .block-list .link-list-img .list__item a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

#main .block-list .link-list-img .list__item a .item-day {
  text-align: left;
  padding: 10px 30px 0;
  margin: 0;
}

#main .block-list .link-list-img .list__item a .item-ttl {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  text-align: left;
  overflow: hidden;
  padding: 10px 30px;
  margin: 0;
}

#main .block-list .link-list-img .list__item a .item-ttl::after {
  position: absolute;
  content: url("../img/icon/icon_arrow-white.png");
  top: 50%;
  transform: translate(0, -50%);
  right: 15px;
}

@media screen and (max-width: 768px) {
  #main .block-list .link-list-img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  #main .block-list .link-list-img .list__item {
    width: 300px;
    margin: 10px auto;
  }
  #main .block-list .link-list-img .list__item a figure {
    position: relative;
    height: 185px;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}