@charset "UTF-8";
/* CSS Document */

html {
    color: #222;
    position: relative;
}

.com-name,
.menu-trigger,
.sm-nav {
    display: none;
}

.load {
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #fff;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.load img {
    width: 256px;
    height: 256px;
}

.h3 {
    margin: 4% 0;
    padding-bottom: .5%;
    border-bottom: 2px solid #B6E4FB;
    font-size: 2.1rem;
}

.h3::before {
    content: "■";
    color: #B6E4FB;
    padding-right: .5em;
}

h4 {
    font-size: 1.8rem;
}

.h5 {
    margin: 4% 0;
    padding-bottom: .5%;
    border-bottom: 2px solid #B6E4FB;
    font-size: 2.1rem;
}

.h5::before {
    content: "■";
    color: #B6E4FB;
    padding-right: .5em;
}

.tel {
    color: inherit;
    text-decoration: none;
    font-size: 3.6rem;
}

.line {
    color: inherit;
    text-decoration: none;
    font-size: 3.6rem;
}

.mail {
    color: inherit;
    text-decoration: none;
}

header {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: .5%;
    font-size: 1.3rem;
    background-color: #fff;
    z-index: 500;
}

.logos {
    position: absolute;
    width: 13%;
    background: rgba(255, 255, 255, .9);
    border-radius: 2px;
    top: -0.5px;
}

.head-sentence {
    line-height: 2.5rem;
    color: #3aabd2;
}

.head-tel {
    font-size: 2.9rem;
    font-weight: bold;
    color: #3aabd2;
}

.head-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.head-top p:first-child {
    width: 70%;
    text-align: right;
}

.head-tel {
    width: 50%;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.head-tel::after {
    content: "LINEでもご相談も受付けております！";
    position: absolute;
    font-size: 1.2rem;
    bottom: -20%;
    right: 22.5%;
}

.tel-icon {
    width: 10%;
    padding-right: 10px;
}

header .pc-nav {
    width: 87%;
    margin: 1% 0 0 auto;
}

header .pc-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}

header .pc-nav ul li:nth-child(1),
header .pc-nav ul li:nth-child(3) {
    width: 6%;
}

header .pc-nav ul li:nth-child(2) {
    width: 15%;
}

header .pc-nav ul li:nth-child(4),
header .pc-nav ul li:nth-child(5),
header .pc-nav ul li:nth-child(6),
header .pc-nav ul li:nth-child(7) {
    width: 18%;
}

header .pc-nav ul li a {
    display: inline-block;
    line-height: 4rem;
    color: #222;
    text-decoration: none;
    position: relative;
}

header .pc-nav ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #3aabd2;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

header .pc-nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.news div {
    overflow-y: scroll;
    height: 120px;
}

/*main*/

.main_imgBox {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.main_img {
    z-index: 10;
    opacity: 0;
    width: 100%;
    height: 500px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite;
}

.main_img:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.main_img:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

.main_img:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}

.main_img:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}

.main_img:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
}

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

    8% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}

@keyframes anime {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}

.key1 {
    background: url(../img/back1.jpg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.key2 {
    background: url(../img/back2.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.key3 {
    background: url(../img/back3.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.key4 {
    background: url(../img/back1.jpg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.key5 {
    background: url(../img/back2.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.key6 {
    background: url(../img/back3.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.index-visual {
    position: relative;
}

.head-image-sentence {
    position: absolute;
    top: 230px;
    left: 20%;
    z-index: 500;
    font-size: 5.5rem;
    color: #fff;
    text-shadow: 5px 5px 5px #222;
    line-height: 6.5rem;
}

.head-image-sentence span {
    margin-left: -80px;
}

.head-image-sentence-two {
    position: absolute;
    top: 370px;
    left: 15%;
    z-index: 600;
    color: #fff;
    line-height: 4rem;
    font-size: 2rem;
    text-shadow: 5px 5px 5px #222;
}

.key-link {
    position: absolute;
    z-index: 600;
    top: 510px;
    left: 15%;
    display: block;
    padding: 2% 7%;
    background-color: #00B900;
    color: #fff;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    border: 2px solid #00B900;
}

.key-link:hover {
    background-color: #fff;
    border: 2px solid #06184e;
    text-decoration: none;
    color: #06184e;
}

.news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1120px;
    margin: 7% auto 5%;
    border: 2px solid #06184e;
    position: relative;
}

.news p {
    width: 150px;
    display: block;
    background-color: #06184e;
    color: #fff;
    text-align: center;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -2px;
    border-radius: 3px 3px 0 0;
    height: 30px;
}

.news div {
    width: 100%;
}

.news div ul li {
    margin: 1%;
    line-height: 2.3rem;
    background: url(../img/dairy_icon.png);
    background-repeat: no-repeat;
    background-position: 0 2px;
    padding-left: 1.3em;
}

.effect {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.effect h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.effect h2::before {
    content: "Window's Film Type...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.effect p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.ind-type-out {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ind-type-inner {
    width: 46%;
    margin: 2% 0;
    height: 320px;
    background-repeat: no-repeat;
    background-size: cover;
}

.indtype1 {
    background: url(../img/type5.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #999;
}

.indtype2 {
    background: url(../img/type2.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #999;
}

.indtype3 {
    background: url(../img/type3.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #999;
}

.indtype4 {
    background: url(../img/type1.png);
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #999;
}

.ind-type-inner:nth-child(odd) {
    margin-right: 6%;
}

.ind-type-inner h3 {
    margin-top: 10%;
    line-height: 3rem;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#B0E7F7), to(#0072FF));
    background: linear-gradient(to right, #B0E7F7, #0072FF);
    font-size: 2.8rem;
    padding: 2% 5%;
    color: #fff;
}

.ind-type-inner h3 span {
    font-size: 1.6rem;
}

.ind-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.ind-flex div {
    width: 100%;
    padding: 1.5% 0;
}

.ind-type-inner p {
    background-color: #fff;
    color: #222;
    width: 60%;
    margin-bottom: 3%;
    padding-left: 1em;
}

.ind-flex div a {
    color: #222;
    background-color: #fff;
    padding: 1% 3.3%;
}

.about-us {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.about-us h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.about-us h2::before {
    content: "About us MAURIKA...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.about-us p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.ind-us a:first-child {
    margin-right: 10%;
    display: inline-block;
    padding: 2% 5%;
    width: 13%;
    text-align: center;
    background-color: #06184e;
    color: #fff;
    margin-top: 4%;
    margin-left: 20%;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    border: 2px solid #06184e;
}

.ind-us a:first-child:hover {
    background-color: #fff;
    border: 2px solid #06184e;
    text-decoration: none;
    color: #06184e;
}

.ind-us a:last-child {
    margin-left: 5%;
    display: inline-block;
    padding: 2% 5%;
    width: 13%;
    text-align: center;
    background-color: #06184e;
    color: #fff;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    border: 2px solid #06184e;
}

.ind-us a:last-child:hover {
    background-color: #fff;
    border: 2px solid #06184e;
    text-decoration: none;
    color: #06184e;
}

/*main end*/
footer {
    background-color: #06184E;
}

.contact-foot-sec {
    background: -webkit-gradient(linear, left top, right top, from(#B0E7F7), to(#0072FF));
    background: linear-gradient(to right, #B0E7F7, #0072FF);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 300px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
    line-height: 3.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 3%;
    font-size: 2rem;
}

.contact-foot-sec h2 {
    width: 100%;
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
}

.contact-foot {
    font-size: 3.5rem;
    font-weight: bold;
}

.tel-foot,
.mail-foot {
    width: 50%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.mail-foot {
    color: #fff;
}

.tel-foot .contact-foot {
    background: url(../img/tel_one.png);
    background-repeat: no-repeat;
    display: inline-block;
    background-position: 5px 0;
    width: 360px;
    height: 50px;
    padding-top: 10px;
}

.mail-foot .contact-foot {
    background: url(../img/mail.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 370px;
    height: 50px;
    padding-top: 10px;
}

.foot-common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.foot-company-out,
.foot-menu {
    width: 50%;
}

.foot-company-out {
    background-color: #EFEFEF;
    text-align: center;
    padding: 5% 1% 5%;
}

.foot-company-out .foot-logos {
    width: 30%;
    padding: 10% 0 2%;
    margin: 0 auto;
}

.foot-menu ul {
    width: 95%;
    margin: 0 auto 0 5%;
    line-height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.foot-menu ul li {
    width: 45%;
    text-align: center;
    margin-bottom: 2%;
    border: 1px solid #ccc;
}

.foot-menu ul li:nth-child(8),
.foot-menu ul li:nth-child(9) {
    margin-bottom: 0;
}

.foot-menu ul li:nth-child(2n) {
    margin-right: 5%;
}

.foot-menu ul li a {
    color: #fff;
    position: relative;
    display: block;
    padding: 4% 0;
}

.foot-menu ul li:nth-child(1) {
    width: 95.4%;
}

.foot-menu ul li:nth-child(1) a {
    padding: 3% 0;
}



footer small {
    color: #fff;
    text-align: center;
    display: block;
    padding: .5%;
}

.sup {
    background-color: #fff;
}

.sup section {
    background-color: #fff;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.sup section h2 {
    font-size: 3rem;
    font-weight: bold;
    padding-top: 3%;
    text-align: center;
    position: relative;
}

.sup div {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 1%;
}

/*strenght.html*/

.strength-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.strength-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.strength-out h2::before {
    content: "MAURIKA's Strength...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.strength-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.st-out {
    margin: 5% 0 15%;
    width: 100%;
}

.st-out h3 {
    width: 100%;
    margin: 0 auto;
    font-size: 2.1rem;
    text-align: center;
    padding-bottom: 4%;
    position: relative;
}

.st-out h3::before {
    content: "その1";
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: #06184e;
}

.st-out2 h3::before {
    content: "その2";
}

.st-out3 h3::before {
    content: "その3";
}

.st-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.st-1 div {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.st-1 p {
    width: 50%;
    padding-left: 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    position: relative;
}

.st-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.st-2 p {
    padding-left: 0;
    padding-right: 3%;
}

.st-out a {
    display: block;
    width: 10%;
    margin: 5% auto;
}

/*strenght.html end*/
/*company.html*/

.company-visual {
    width: 100vw;
    height: 50vh;
    background: url(../img/back3.jpg);
    background-size: cover;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.company-sentence {
    position: absolute;
    left: 0;
    top: 40%;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: bold;
    color: #222;
    border-bottom: 3px solid #06184e;
    border-top: 3px solid #06184e;
    padding-top: 50px;
    padding-left: 165px;
    padding-right: 10px;
    background: rgba(255, 255, 255, .9);
    width: 100%;
    height: 23%;
}

.bread-out {
    background-color: #fff;
    padding: 10px 0;
}

.bread {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background-color: #fff;
    color: #222;
}

.bread a {
    color: #222;
}

.mt-2 {
    margin-top: 20px;
}

.button-usual {
    display: inline-block;
    text-align: center;
    padding: 2% 8%;
    background-color: #06184e;
    color: #fff;
    border: 2px solid #06184e;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.button-usual:hover {
    background-color: #fff;
    border: 2px solid #06184e;
    text-decoration: none;
    color: #06184e;
}

.button-out {
    text-align: center;
    margin-top: 5%;
}

.company-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.company-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.company-out h2::before {
    content: "President's Message...";
    position: absolute;
    color: #B6E4FB;
    font-size: 6rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.company-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.company-two-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.company-two-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.company-two-out h2::before {
    content: "Company Profile...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.company-two-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.company-two-out table {
    width: 100%;
    margin: 5% 0;
    line-height: 2.5rem;
}

.company-two-out table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px dotted #ccc;
    margin: 0 5%;
}

.company-two-out table tr th {
    display: block;
    width: 20%;
    padding: 2%;
    text-align: left;
}

.company-two-out table tr td {
    padding: 2%;
    width: 80%;
}

/*company.html end*/
/*filmtype.html*/

.filmtype-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.filmtype-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.filmtype-out h2::before {
    content: "Windows's Film Type...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.filmtype-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.film-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
}

.film-all li {
    width: calc(100% / 4);
}

.film-all li a {
    margin-right: 10%;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    position: relative;
    -webkit-transition: all 500ms;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.film-all li a:hover {
    color: #222;
    padding-bottom: 5px;
    border-bottom: 3px solid #B6E4FB;
}

.film-all li:nth-child(4) a {
    margin-right: 0;
}

.film-all li a::before {
    content: "";
    width: 21px;
    height: 21px;
    background: url(../img/icon-window.png);
    position: absolute;
    left: -25px;
    top: -2px;
}

.type-one-film div div:last-child {
    width: 100%;
}

.filmtype-one div div p {
    margin-top: 0;
}

.filmtype-one div:last-child {
    margin-right: 0;
}

.type-one-film p {
    margin-top: 1%;
}

.film-effect-inner1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 60%;
    max-width: 700px;
}

.film-effect1 {
    width: 100%;
    margin-left: 20px;
    margin-bottom: 10px;
}

.film-effect-inner1 .film-effect1:last-child {
    margin-bottom: 0;
}


.film-effect1 p {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1%;
    display: inline-block;
    border-bottom: 3px solid #eee;
}

.film-effect1 ul li {
    line-height: 2rem;
}

.film-effect1 ul li::before {
    content: "・";
}

.sp-10 .h4 {
    border-bottom: 3px solid #eee;
    display: inline-block;
    padding-bottom: 5px;
}

/*filmtype.html end*/
/*price.html*/
.price-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.price-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.price-out h2::before {
    content: "Price...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.price-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.p-inner {
    width: 47%;
}

.p-inner img {
    border: 1px solid #cfcfcf;
}

.p-inner p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px dotted #cfcfcf;
}

.p-inner p span:first-child {
    width: 80%;
}


.p-inner p span:last-child {
    width: 20%;
    text-align: right;
}

.p-inner:first-child {
    margin-right: 6%;
}

.film-out {
    margin-bottom: 90px;
}

.film-out h4 {
    font-weight: bold;
    margin: 3% 0;
    font-size: 2rem;
    border-left: 9px solid #3aabd2;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 3.5rem;
}

.film-out h4::before {
    content: "■ ";
    color: #3aabd2;
}

.film-out h4 span {
    padding: .5% 1%;
    background-color: #ccc;
    margin-right: 1%;
    border-radius: 4px;
}

.diffence {
    background: -webkit-gradient(linear, right top, left top, from(#085078), to(#85D8CE));
    background: linear-gradient(to left, #085078, #85D8CE);
    color: #fff;
    font-weight: normal;
}

.hot-cut {
    background: -webkit-gradient(linear, right top, left top, from(#FF512F), to(#F09819));
    background: linear-gradient(to left, #FF512F, #F09819);
    color: #fff;
    font-weight: normal;
}

.not-heat {
    background: -webkit-gradient(linear, right top, left top, from(#ED4264), to(#EC6F66));
    background: linear-gradient(to left, #ED4264, #EC6F66);
    color: #fff;
    font-weight: normal;
}

.not-watch {
    background: -webkit-gradient(linear, right top, left top, from(#348F50), to(#56B4D3));
    background: linear-gradient(to left, #348F50, #56B4D3);
    color: #fff;
    font-weight: normal;
}

.not-crime {
    background: -webkit-gradient(linear, right top, left top, from(#1488CC), to(#2B32B2));
    background: linear-gradient(to left, #1488CC, #2B32B2);
    color: #fff;
    font-weight: normal;
}

.film_attention {
    margin-top: 2.5%;
    line-height: 2.3rem;
}

.film_attention li {
    text-indent: -1.3em;
    padding-left: 1em;
}

.film_attention li:before {
    content: "※ ";
}

/*price.html end*/
/*voice.html*/

.voice-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.voice-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.voice-out h2::before {
    content: "To the Owner...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}
.voice-out h4 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.voice-out h4::before {
    content: "Contact us on line";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.voice-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.v-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.v-inner div p {
    margin-top: 0;
    padding-bottom: 2%;
}

.v-inner div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-inner div p:first-child {
    position: relative;
    line-height: 2.3rem;
    font-weight: bold;
    padding-left: 35px;
    font-size: 1.8rem;
    padding-top: 12px;
    border-bottom: 4px solid #102942;
}

.v-inner div p:last-child {
    padding-top: 4%;
}

.v-inner div p:first-child::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    background: url(../img/customer.png);
    top: 5px;
    left: -5px;
}

.v-inner div:first-child {
    width: 40%;
    margin-right: 5%;
}

.v-inner div:last-child {
    width: 55%;
}

.voice-common a {
    text-align: center;
    display: block;
    width: 20%;
    padding: 2% 5%;
    margin: 5% auto 9%;
}

.voice-common a:first-child {
    margin-bottom: 15%;
}

.t-des {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.t-des li {
    width: calc(100% / 3);
    margin-right: 1px;
    color: #222;
}

.t-des li:last-child {
    margin-right: 0;
}

.t-des li a {
    display: block;
    text-align: center;
    padding: 6%;
    color: #222;
    font-size: 1.6rem;
    height: 25px;
}

.current {
    border-bottom: 5px solid #3aabd2;
    background-color: #3aabd2;
    border-radius: 8px 8px 0 0;
    color: #fff !important;
}

.w-contents {
    background-color: #3aabd2;
    color: #fff;
    border-radius: 0 0 8px 8px;
}

.w-contents .fl p {
    width: 35%;
    padding: 4%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.w-contents .fl p:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.w-contents .fl p:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*voice.html end*/
/*flow.html*/

.flow-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.flow-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.flow-out h2::before {
    content: "Work Flow...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.flow-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.flow-one {
    border: 2px solid #06184e;
}

.flow-one h4 {
    padding: 1.7% 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #06184e;
}

.free {
    background-color: #B21F1F;
    border-radius: 90px;
    padding: .5% 1%;
    margin-left: 1%;
}

.flow-one p {
    margin: 2% auto;
    width: 95%;
}

.arrow {
    width: 60px;
    height: 60px;
    margin: 3.5% auto;
}

.flow-button a {
    display: block;
    margin: 4% auto;
    width: 20%;
    padding: 2%;
    text-align: center;
    background-color: #06184e;
    color: #fff;
}

.qa-under {
    border-bottom: 1px dotted #222;
    line-height: 3rem;
    padding-bottom: 1%;
}

.qa-under p {
    padding-left: 2.7rem;
    text-indent: -2.3rem;
}

.a-part {
    color: #f00;
    padding-left: 1.4em;
    text-indent: -1.3em;
    display: block;
    margin-left: -2.3rem;
    ;
}

/*flow.html end*/
/*contact.html*/

.contact-out {
    max-width: 1120px;
    width: 100%;
    margin: 100px auto 50px;
}

.contact-out h2 {
    font-size: 3rem;
    position: relative;
    z-index: 99999;
    border-bottom: 3px solid #B6E4FB;
}

.contact-out h2::before {
    content: "Contact Us...";
    position: absolute;
    color: #B6E4FB;
    font-size: 7rem;
    top: -40px;
    left: 0;
    z-index: -5;
}

.contact-out p {
    margin-top: 30px;
    line-height: 2.7rem;
}

.contact-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-detail p {
    width: 47%;
    padding: 4% 2% 3%;
    font-size: 3.6rem;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, right top, from(#B0E7F7), to(#0072FF));
    background: linear-gradient(to right, #B0E7F7, #0072FF);
    text-align: center;
    color: #222;
    position: relative;
    border-radius: 3px;
}

.contact-detail p:first-child::before {
    content: "お電話でのお問い合わせ";
    font-size: 1.8rem;
    background-color: #fff;
    padding: .6% 1%;
    position: absolute;
    top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 3px solid #0072FF;
    border-radius: 4px;
    width: 80%;
    text-align: center;
}

.contact-detail p:last-child::before {
    content: "メールでのお問い合わせ";
    font-size: 1.8rem;
    background-color: #fff;
    padding: .6% 1%;
    position: absolute;
    top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 3px solid #0072FF;
    border-radius: 4px;
    width: 80%;
    text-align: center;
}


.contact-detail p span {
    font-size: 1.6rem;
}

.contact-detail p:first-child {
    margin-right: 6%;
}
/*line*/
.contact-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-detail-line p {
    width: 43%;
    padding: 4% 2% 3%;
    font-size: 3.6rem;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, right top, from(#7fff00), to(#00B900));
    background: linear-gradient(to right, #7fff00, #00B900);
    text-align: center;
    color: #222;
    position: relative;
    border-radius: 3px;
	margin: 0 auto;
}
.contact-detail-line p:last-child::before {
    content: "LINEでのお問い合わせ";
    font-size: 1.8rem;
    background-color: #fff;
    padding: .6% 1%;
    position: absolute;
    top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 3px solid #00B900;
    border-radius: 4px;
    width: 80%;
    text-align: center;
}
.contact-detail-line p span {
    font-size: 1.6rem;
}
/*contact.html end*/
