/*content1-中央寄せ
 contents2-横
 contents5-中央寄せ２
 共通*/

/*共通*/

* {
    font-family: 'karla', sans-serif;
    letter-spacing: 0.05em;
    color: #ffffff;
}

body {
    -webkit-font-smoothing: antialiased;
}

img {
    width: auto;
    max-width: 100%; /*囲っているサイズの100 % 以上にならない */
    height: auto; /*高さはその横幅に合わせる*/
}

@import url('https://fonts.googleapis.com/css?family=Karla:400,700');
*,
*:before,
*:after {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/*text*/
.top_heading {
    font-weight: 100;
    margin-bottom: 40px;
    font-size: 120px;
    font-family: 'Source Serif Pro', serif;
    color: white;
    text-shadow: 1px 0px 1px #000000;
}

.heading {
    margin-bottom: 40px;
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: 40px;
}

.subheading {
    margin-top: 20px;
}

@media (min-width: 320px) {
    .movie_heading {
        display: none;
    }
}

@media (max-width: 900px) {
    .top_heading, .movie_heading {
        font-size: 60px;
        padding-bottom: 10px;
        font-family: 'Source Serif Pro', serif;
    }

    .heading {
        font-size: 26px;
        line-height: 35px;
    }

    .subheading {
        line-height: 25px;
    }
}

/*text装飾*/

.color-w {
    color: #ffffff;
    text-shadow: 1px 0 1px #000000;
}

/*textのmargin*/

.top_heading + .paragraph {
    margin-top: 75px;
}

.subheading + .paragraph {
    margin-top: 10px;
}

.paragraph {
    margin-bottom: 20px;
}

/*header部分*/
.logo {
    font-size: 13px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 420px) {
    .logo {
        font-size: 14px;
    }
}

/*.nav-link2,
.nav-link {
    text-decoration: none;
    font-size: 18px;
    line-height: 30px;
    color: inherit;
}

.nav-link:not(:first-of-type) {
    margin-left: 20px;
}
*/

/*flexbox styles*/
.flex,
.spread,
.center,
.right,
.vertical,
.centervertical {
    display: flex;
}

.spread {
    justify-content: space-between;
}

.center {
    align-items: center;
    justify-content: center;
}

.centervertical { /*コラムに対して水平*/
    flex-direction: column;
    justify-content: center;
}

.right {
    justify-content: flex-end;
}

.vertical {
    flex-direction: column;
}

/*grid*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11 {
    padding: 0 20px;
}

.col-12 {
    padding: 20px 20px;
}

.col-1 {
    width: 8.333333%;
}

.col-2 {
    width: 16.666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333333%;
    margin: 0 0.5% 0 0.5%;
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: rgba(255, 255, 255, 0.13);
}

.col-4 img {
    display: block;
    margin: 0 auto;
}

.col-5 {
    width: 41.666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333333%;
}

.col-8 {
    width: 66.666667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333333%;
}

.col-11 {
    width: 91.666667%;
}

.col-12 {
    width: 100%;
}

/*レイアウト containers*/
.container-lrg,
.container-sml {
    margin: auto;
    width: 100%;
}

.container-lrg {
    max-width: 1080px;
}

.container-sml {
    max-width: 700px;
}

.ctas {
    margin: 40px 0 0 0;
}

.centerdevices,
.sidedevices {
    position: relative;
}

.header {
    padding: 20px 0 90px 0;
    overflow: hidden;
    background-size: cover;
}

@media (max-width: 900px) {
    .header .top_heading {
        margin-top: 60px;
    }
}

.ctas-button {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    padding: 0 30px;
    background: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: 1px solid white;
    text-decoration: none;
    color: #444;

}

.contents5 {
    padding: 90px 0;
}

.contents5 img {
    margin: 0 auto;
}

.contents5 .logos {
    padding-top: 60px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .contents5 .col-3 {
        width: 33.33%;
    }

    .contents5 .logos img {
        margin: 0 auto;
        padding-bottom: 40px;

    }
}

.ctas-button,
.ctas-button-2 {
    display: inline-block;
    height: 40px;
    line-height: 38px;
    padding: 0 30px;
    background: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: 1px solid white;
    text-decoration: none;
}

.ctas-button-2 {
    background: transparent;
    color: white;
    margin: 0 0 0 10px;
}

@media (max-width: 440px) {
    .ctas-button,
    .ctas-button-2 {
        display: block;
        width: 100%;
        text-align: center;
    }

    .ctas-button-2 {
        margin: 10px 0 0 0;
    }
}

.footer {
    padding: 90px 0 45px;
}

.footer-nav {
    padding-top: 90px;
}

.footer .ctas {
    margin: 0;
}

@media (max-width: 900px) {
    .footer .center {
        flex-direction: column;
    }

    .footer .col-7,
    .footer .col-5 {
        width: 100%;
    }

    .footer .text-right {
        text-align: left;
    }

    .footer .ctas {
        margin-top: 30px;
    }

    .footer .nav-link {
        display: inline-block;
        margin: 0 10px;
    }
}

.ctas-input {
    outline: none;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    padding: 0 15px;
    width: 460px;
    display: inline-block;
    color: #000000;
}

.ctas-button {
    display: inline-block;
    margin: 20px 0 0 10px;
    height: 40px;
    line-height: 38px;
    padding: 0 30px;
    background: #fff;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: 1px solid white;
    text-decoration: none;
}

@media (max-width: 440px) {
    .ctas-input,
    .ctas-button {
        display: block;
        width: 90%;
        text-align: center;
        margin: 5%;
    }

    .ctas-button {
        margin: 5%;
        width: 90%;

    }
}

@media (max-width: 600px) {
    .ctas-input,
    .ctas-button {
        width: 90%;

    }
}

/*背景*/
.bg-01 {

    background: #48dac4;
    background: -moz-linear-gradient(top, #48dac4 0%, #35163f 100%);
    background: -webkit-linear-gradient(top, #48dac4 0%, #35163f 100%);
    background: linear-gradient(to bottom, #48dac4 0%, #35163f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#48dac4', endColorstr='#35163f', GradientType=0);

/*    border-bottom: 1px solid rgba(0, 0, 0, .1);
    color: #000000;
    background: linear-gradient(58deg, #9769ae, rgba(72, 218, 196, 0.49), #ac66d1);
    background-size: 200% 200%;

    -webkit-animation: AnimationName 60s ease infinite;
    -moz-animation: AnimationName 60s ease infinite;
    animation: AnimationName 60s ease infinite;*/

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 88%
    }
    50% {
        background-position: 100% 13%
    }
    100% {
        background-position: 0% 88%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 88%
    }
    50% {
        background-position: 100% 13%
    }
    100% {
        background-position: 0% 88%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 88%
    }
    50% {
        background-position: 100% 13%
    }
    100% {
        background-position: 0% 88%
    }
}

}

.bg-02 {
    background: #a09fa1;
    background: -moz-radial-gradient(center, ellipse cover, #a09fa1 0%, #35163f 100%);
    background: -webkit-radial-gradient(center, ellipse cover, #a09fa1 0%, #35163f 100%);
    background: radial-gradient(ellipse at center, #a09fa1 0%, #35163f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a09fa1', endColorstr='#35163f', GradientType=1);
}

.bg-03 {
    background-color: #1a1a1a;
}

.bg-04 {
    background: #48dac4;
    background: -moz-linear-gradient(bottom, #48dac4 0%, #35163f 100%);
    background: -webkit-linear-gradient(bottom, #48dac4 0%, #35163f 100%);
    background: linear-gradient(to top, #48dac4 0%, #35163f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#48dac4', endColorstr='#35163f', GradientType=0);

}

.bg-img3 {
    padding-top: 180px;
    background: linear-gradient(-25deg, rgba(157, 128, 83, 0.8), rgba(8, 0, 5, 0.8)) fixed, url(../img/reform.png) fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-img4 {
    padding-top: 180px;
    background: linear-gradient(-25deg, rgba(98, 66, 108, 0.8), rgba(8, 0, 5, 0.8)) fixed, url(../img/faniture.jpg) fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-img5 {
    padding: 180px 0 180px 0;
    background: linear-gradient(-45deg, rgba(31, 21, 19, 0.8), rgba(34, 25, 17, 0.65)) fixed, url(../img/dispwall.png) fixed;
    background-size: cover;
    background-repeat: no-repeat;

}

.bg-img6 {
    padding-top: 180px;
    background: linear-gradient(-25deg, rgba(8, 100, 63, 0.8), rgba(8, 0, 5, 0.8)) fixed, url(../img/assosiation.jpg) fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-img7 {
    padding-top: 180px;
    background: linear-gradient(-25deg, rgba(249, 249, 249, 0.54), rgba(8, 0, 5, 0.8)) fixed, url(../img/docment_01.png) fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 500px) {
    .contents1 .col-4:nth-of-type(1) {
        margin-bottom: 0;
    }

    .contents1 .col-4:not(:nth-of-type(1)) {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 900px) {

    .bg-img3, .bg-img4, .bg-img5, .bg-img6, .bg-img7 {
        background-position: center;
        background-color: #000000;
    }

    .contents2 .flex {
        flex-direction: column;
    }

    .contents2 .col-5,
    .contents2 .col-6 {
        width: 100%;
    }
}

.contents1 {
    padding: 90px 0;
}

@media (max-width: 750px) {

    .contents1 .flex {
        flex-wrap: wrap;
    }

    .contents1 .col-4:nth-of-type(1) {
        width: 100%;
        margin-bottom: 30px;
    }

    .contents1 .col-4:not(:nth-of-type(1)) {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .contents1 .col-4:nth-of-type(1) {
        margin-bottom: 0;
    }

    .contents1 .col-4:not(:nth-of-type(1)) {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 440px) {
    .bg-img3, .bg-img4, .bg-img5, .bg-img6, .bg-img7 {
        height: auto;
        padding-top: 56.25%;
        background-size: contain;
    }
}

.header {
    border-top: solid 6px #491e57;
    height: 650px;
    width: 100%;
}

.footer {
    width: 100%;
    color: white;
    background-color: #35163f;
    padding: 45px 0;
    display: inline-block;
    border-bottom: solid 6px #491e57;

}

@media (max-width: 900px) {
    .header {
        max-height: 650px;
    }

}

@media (max-width: 440px) {
    #video {
        height: 0;
        padding-top: 56.25%;
        background-size: contain;
    }

    #video .logo {
        position: absolute;
        top: 5px;
        padding-top: 0;
    }

}

/*パーツ*/

.button {
    font-size: 16px;
    color: #333333;
    letter-spacing: 0.04em;
    display: inline-block;
    width: 280px;
    height: 54px;
    margin: 90px 20px 90px 20px;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    outline: none;
}

.button::before,
.button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.button,
.button::before,
.button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
    line-height: 50px;
    overflow: hidden;
}

.button:hover {
    color: #ffffff;
}

.button::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

.button:hover::after {
    background: #000000;
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 900px) {
    .button {
        width: 90%;
        margin: 20px;
    }

}

/*コンテンツ１：メニュー*/

.menu {
    text-align: center;
}

.menu p {
    padding-top: 30px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.menu a, a:visited {
    text-decoration: none;
    color: #ffffff;
}

.menu a:hover {

}

.menu a i {
    padding: 5px 10px;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu a i:hover,
.menu a i:focus {
    color: #d3d3d3;
}

@media (min-width: 900px) {

    .menu div {
        padding: 3%;
    }

    .menu i {
        font-size: 120px;
        display: block;
    }

}

@media (max-width: 900px) {
    .menu div {
        width: 50%;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .menu i {
        font-size: 80px;
    }

}

.flex-container {
    -webkit-justify-content: center; /* Safari */
    justify-content: center;
}

/*コンテンツ２：dispwall*/

#dispwall iframe {
    width: 100%;
    height: 500px;
    margin-top: 80px;
}

#dispwall .col-6 img {
    display: block;
    margin: 0 auto;
}

#dispwall i, #furniture i {
    font-size: 30px;
    margin-right: 5px;
}

@media (max-width: 900px) {
    #dispwall img, #dispwall iframe {
        display: block;
        margin: 0 auto;
        padding: 0;
    }
}

/*コンテンツ２：リフォーム*/

#reform .button,
#furniture .button,
#association .button {
    width: 40%;
}

@media (max-width: 900px) {

    #reform .button,
    #furniture .button,
    #association .button {
        width: 90%;
        margin: 20px;
    }

}

#reform .col-12 {
    margin-top: 40px;
}

#docment .button {
    margin-top: 0;
}

.border {
    border-top: 0.2px solid #ffffff;
    margin: 0 auto;
}

/*下層*/

.photo-img img {
    width: 300px;
    margin: 10px;
}


.blink {
  animation: blinkAnime 1s infinite alternate;
}
@keyframes blinkAnime{
   0% { color: #000000 }
 100% { color: #ff0000 }
}
</style>

