@charset "UTF-8";

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}



html {
    font-size: 62.5%;
    min-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    color: #000;
    word-wrap: break-word !important;
    font-family: dnp-shuei-mincho-pr6n, garamond-premier-pro, sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 1.4em;
    min-width: 100%;
    height: 100%;
    background-image: url(../img/paper_texture_11.png) !important;
    background-size: cover;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-text-size-adjust: 100%;
}

#thanks {
    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;
    flex-direction: column;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

#thanks h1 {
    font-size: 20pt;
    color: #000;

}

#thanks p {
    margin: 15px 0;

}

#thanks a {
    text-decoration: underline;
}


html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}


p,
a {
    font-size: 100%;
    font-family: dnp-shuei-mincho-pr6n, garamond-premier-pro, sans-serif;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-family: dnp-shuei-mincho-pr6n, garamond-premier-pro, sans-serif;
    font-weight: 400;
    line-height: 30px;

    letter-spacing: 2px;
    font-size: 15pt;
    color: #000;
}

p {
    font-size: 10.5pt;
}

h1 {
    font-size: 35pt;
    margin: 0px 0px;
    font-weight: 300;
    letter-spacing: 10px;
    line-height: 70px;
    color: #fff;
}

h2 {
    font-size: 130pt;
    display: inline-block;
    line-height: 200px;
    background-size: 350px;
}

h3 {
    font-size: 16pt;
    font-weight: 400;
    margin-bottom: 30px;
}

h4 {
    font-size: 16pt;

    margin-bottom: 30px;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}


ul li {
    list-style-position: inside;
    list-style-type: none;
}

.reblo5 {
    display: block;
}

.fadeIn .view {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    opacity: 1;
}

.view {
    display: block;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: 1s;
}

.view.fadeIn {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    opacity: 1;
    transition: 1s;
}

.view.fadeIn::before {
    -webkit-animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    margin: 1px;
    z-index: 91;


}

.section1 .view.fadeIn::before {
    -webkit-animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 1px;
    z-index: 91;


}

.section3 .view.fadeIn::before {
    -webkit-animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 1px;
    z-index: 91;


}

.section7 .view.fadeIn::before {
    -webkit-animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    animation: hideFromLeft .5s forwards, showFromLeft .5s forwards .5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 1px;
    z-index: 91;


}

@-webkit-keyframes hideFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes hideFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes showFromLeft {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes showFromLeft {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.revealImg {

    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: bottom;
}

.top30 {
    margin-top: 30px;
}


.img-wrap {
    overflow: hidden;
    position: absolute;
    left: 34%;
    top: 43vh;
    width: 800px;
    z-index: -1;
}

h1 img {
    width: 300px !important;
    position: absolute;
    top: 50px;
    left: 105px;
}

.img-wrap:before {
    animation: img-wrap 0.5s cubic-bezier(.4, 0, .2, 1) forwards;
    animation-delay: 1s;
    background-image: url(../img/paper_texture_11.png) !important;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    /*pointer-events: none;*/
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.img-wrap img {
    width: 90%;

}

@keyframes img-wrap {
    100% {
        transform: translateX(100%);
    }
}

.fade {
    animation-name: fadein;
    animation-duration: 2s;
    animation-iteration-count: 1;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paper {
    background: url(../img/paper_texture_11.png) no-repeat;
    background-blend-mode: multiply;
    background-size: 100% 100%;
    z-index: 9999;
    width: 100vw;
    height: 100%;
}

.top50 {
    margin-top: 50px;
}

.fl {
    float: left;
}

h1 img {
    width: 300px;
}

span.required {
    color: #d00000;
    margin-right: 10px;
}

/*---------------menu-------------------*/
header .logo {
    width: 130px;
    position: fixed;
    z-index: 11;
    top: 2%;
    left: 2%;
}
header .logo img {
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 1));
}


button {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    border: none;
    position: relative;
    height: 35px;
    font-size: 10pt;
    padding: 0 2em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    margin-top: 30px;
    border-radius: 5px;
}

button:hover {
    background: #2d4892;
    color: #fff;
}

.section4 button:hover {
    background: #e1b449;
    color: #000;
}

.section4 button:before,
.section4 button:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #000;
    transition: 400ms ease all;
}

.section4 button:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.section4 button:hover:before,
.section4 button:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

.section4 button a {
    color: #000;
    display: block;
    font-size: 10pt;
}

.section4 button a:hover {
    color: #000;
}

button:before,
button:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 400ms ease all;
}

button:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

button:hover:before,
button:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

button a {
    color: #000;
    display: block;
    font-size: 10pt;
}

button a:hover {
    color: #fff;
}

.overlay {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 990;
}

.button_container {
    position: fixed;
    top: 2%;
    right: 2%;
    height: 27px;
    width: 50px;
    cursor: pointer;
    z-index: 999;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.button_container:hover {
    opacity: .7;
}

.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}

.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.button_container span {
    background: #000;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 11px;
}

.button_container span:nth-of-type(3) {
    top: 22px;
}

.overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 7);
    min-height: 50px;
    position: relative;
    opacity: 0;
}

.overlay ul li a {
    font-size: 15pt;
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

/*---------------menu-------------------*/


.topcontents {
    position: relative;

}

.topcontents_in {
    position: absolute;
    top: 38vh;
    left: 35vw;
    text-align: center;
}

.topcontents_in p {
    font-size: 30px;
    margin-bottom: 75px;
}

.scroll {
    position: absolute;
    top: 75vh;
    right: 47vw;
    z-index: 900;
}

.arrow {
    position: absolute;
    animation: 2s arrow-animation infinite;
    height: 0;
    width: 5em;
    border: .5px solid #000;
}

.arrow::after {

    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -3px;
    width: 1px;
    height: 25px;
    border-top: 7px solid #000;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;

}


@keyframes arrow-animation {
    0% {
        width: 10em;
    }

    100% {
        width: 1em;
    }
}

.rotate {
    transform: rotate(-90deg);
    position: absolute;
    top: 30vh;
    left: 0%;
}

.rotate h2 {
    font-size: 130pt;
}

.item1 {
    position: absolute;
    left: 25%;
    top: 9%;
}

.item1 img {
    width: 80vh;
}

.animation {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.animation.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


#contents {
    margin: 0;
    height: 100%;
    z-index: 10;
    /*    overflow: hidden;*/
    left: 95vw;
    position: relative;
    width: 12800px;
    display: -ms-flexbox;
    display: flex;
    /*    overflow-x: scroll;
    overflow-y: hidden;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;*/

}

.box {
    height: 100%;
    /*    float: left;*/
    background-color: #333;
    /*width: calc(80vw + 60px);*/
    width: 1600px;
    position: relative;
    overflow: auto;
}

.effect-fade {
    opacity: 0;
    transform: translate(0, 45px);
    transition: all 300ms;
}

.effect-fade.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

.section1 {
    background: #2D4892;
    width: 100%;
    height: 100%;

}

.section1 h2,
.section1 h3,
.section1 p {
    color: #fff;
}

.section1 .txtarea {
    position: absolute;
    top: 69%;
    left: 17%;
}


.section1 h2 {
    background-image: url(../img/br_1.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section2 h2 {
    background-image: url(../img/br_2.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section3 h2 {
    background-image: url(../img/br_3.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section4 h2 {
    background-image: url(../img/br_4.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section5 h2 {
    background-image: url(../img/br_5.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section6 h2 {
    background-image: url(../img/br_6.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section7 h2 {
    background-image: url(../img/br_7.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.section8 h2 {
    background-image: url(../img/br_8.png);
    background-repeat: no-repeat;
    background-position: left 85%;
}

.pattern {
    width: 100%;
    height: 100%;

    background-color: #fff;
    background-size: 80px 80px;
    background-image:
        linear-gradient(rgba(120, 140, 197, .1) 1%, rgba(120, 140, 197, .1) 1%, transparent 1%,
        transparent 99%, rgba(120, 140, 197, .1) 99%, rgba(120, 140, 197, .1) 100%),
        linear-gradient(90deg, rgba(120, 140, 197, .1) 1%, rgba(120, 140, 197, .1) 1%, transparent 1%,
        transparent 99%, rgba(120, 140, 197, .1) 99%, rgba(120, 140, 197, .1) 100%),
        linear-gradient(transparent, transparent 25%, rgba(120, 140, 197, .1) 25%, rgba(120, 140, 197, .1) 26%, transparent 26%,
        transparent 50%, rgba(120, 140, 197, .1) 50%, rgba(120, 140, 197, .1) 51%, transparent 51%,
        transparent 75%, rgba(120, 140, 197, .1) 75%, rgba(120, 140, 197, .1) 76%, transparent 76%, transparent 100%),
        linear-gradient(90deg, transparent, transparent 25%, rgba(120, 140, 197, .1) 25%, rgba(120, 140, 197, .1) 26%, transparent 26%,
        transparent 50%, rgba(120, 140, 197, .1) 50%, rgba(120, 140, 197, .1) 51%, transparent 51%,
        transparent 75%, rgba(120, 140, 197, .1) 75%, rgba(120, 140, 197, .1) 76%, transparent 76%, transparent 100%);
}

.backline {
    background: #2D4892;
    width: 80px;
    height: 100%;

    position: absolute;
    top: 0;
    left: -2px;
}

.section2 {
    position: absolute;
    z-index: 100;
    top: 5%;
}

.section2 img {
    width: 80vh;
}

.section3 {
    width: 100%;
    height: 100%;

    background-image: url(../img/p3.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right center;
    background-color: #081024;
    padding: 30px;
}



.section3 .txtarea {
    position: absolute;
    top: 30%;
    left: 5%;
}

.section3 h2 {
    color: #fff;
}

.section3 p {
    color: #fff;
        width: 565px;
}


.section4 {
    position: relative;
    width: 100%;
    height: 100%;

    background-color: #E1B449;
    background-image: url(../img/works.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.section4 h2 {
    margin-bottom: 115px;
}

.section4 .txtarea {
    position: absolute;
    top: 10%;
    left: 5%;
}

.section4 {
    position: relative;
    width: 100%;
    height: 100%;

    background-color: #E1B449;

}

.section4 h2 {
    margin-bottom: 115px;
}

.section4 .txtarea {
    position: absolute;
    top: 10%;
    left: 5%;
}

.section5 {
    position: relative;
    width: 100%;
    height: 100%;

    background-color: #E1B449;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section5_in {
    padding: 30px;
    background-color: #E4E4E4;
    height: 90vh;
    margin: 0 auto;
}

.section5_in img {
    width: 100%;
}

.customer {
    padding: 15px 0;
}

.col2 {
    width: 50%;
    box-sizing: border-box;
    float: left;
}

.col3 {
    width: 33.33333%;
    box-sizing: border-box;
    float: left;
}

.clearfix {
    clear: both;
}

.section6 {
    width: 100%;
    height: 100%;

    background-color: #E4E4E4;
    position: relative;

}

.sec6txt {
    position: absolute;
    top: 6%;
    left: 10%;
    z-index: 99;
}

.sec6_blue {
    background-color: #064372;
    position: absolute;
    right: -2px;
    top: 0;
    width: 300px;
    height: 100%;

}

.list {
    border-bottom: 1px dashed #4D4D4D;
    padding: 15px 0;
    width: 80%;

}

.cparea {
    width: 80%;
    margin: 60px 30px;

}

.section7 {
    background-color: #064372;
    width: 100%;
    height: 100%;

    color: #fff;
}

.section7 h2,
.section7 p {
    color: #fff;
}

.section7 .rotate {
    transform: rotate(-90deg);
    position: absolute;
    top: 35%;
    left: -12%;
}

.recruitarea {
    position: absolute;
    left: 200px;
    top: 4%;
}

.section7 .list {
    width: 60%;
    border-bottom: 1px dashed #fff;
}

.section8 {
    position: relative;
    width: 100%;
    height: 100%;
}

.contactarea {
    position: absolute;
    top: 5%;
    left: 30%;
}

.fade_on {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.fade_off {
    opacity: 1;
}

.section8 {
    background-color: #fff;
    width: 100%;
    height: 100%;

}

form {
    max-width: 600px;
    width: 100%;
    height: 100%;

}

form input {
    background-color: #E4E4E4;
    border-radius: 6px;
    border: none;
    height: 25px;
    width: 100%;
}

form textarea {
    background-color: #E4E4E4;
    border-radius: 6px;
    border: none;
    height: 100px;
    width: 100%;
}

.form1,
.form2,
.form3,
.form4,
.form5,
.form6,
.form7 {
    margin: 10px 0 !important;
}

.form1,
.form5 {
    width: 50%;
    box-sizing: border-box;
    float: left;
    padding-right: 15px;


}

.form2,
.form6 {
    width: 50%;
    box-sizing: border-box;
    float: left;

}

.form3,
.form4,
.form7 {
    width: 100%;
    box-sizing: border-box;
    float: left;

}

textarea[name=comment] {
    font-size: 16px !important;
}

input[type=email] {
    font-size: 16px !important;
}

input[type=tel] {
    font-size: 16px !important;
}

input[type="button"] {
    -webkit-appearance: none;
    width: 150px;
    height: 40px;
}

input[type="button"]:hover {
    opacity: 0.5;
}

input[type="button"]:focus {
    border: 1px solid #2D4892;
    outline: 0;
}

input[type=ueno] {
    font-size: 16px;
}

input[type=text] {
    font-size: 16px;
}

input[type=text] {
    font-size: 16px;
}

input[type=text] {
    font-size: 16px;
}

input[type="text"]:focus {
    border: 1px solid #2D4892;
    outline: 0;
}

input[type="tel"]:focus {
    border: 1px solid #2D4892;
    outline: 0;
}

input[type="email"]:focus {
    border: 1px solid #2D4892;
    outline: 0;
}

textarea[name="comment"]:focus {
    border: 1px solid #2D4892;
    outline: 0;
}

.svg-block {
    position: relative;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.svg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    fill: #CDD9E3;
}

.svg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    fill: #CDD9E3;
}

.block {
    display: block;
}

footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    text-align: right;
}

.media {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.media img {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@supports (object-fit: cover) {
    .media img {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}

footer img {
    width: 70px;
}

.privacy {
    margin: 15px 0px;
    font-size: 8pt;
}

.privacy a {
    text-decoration: underline;
}

@media screen and (max-width:1370px) {
    .topcontents_in {

        left: 25vw;

    }

    .img-wrap {
        left: 24%;
    }

    #contents {
        width: 10400px;

    }

    .box {
        width: 1300px;

    }

    .rotate h2 {
        font-size: 93pt;
    }

    h2 {
        font-size: 93pt;
        display: inline-block;
        line-height: 130px;
        background-size: 300px;
    }

    .item1 {

        left: 25%;

    }

    .section2 img {
        width: 85vh;
    }

    .item1 img {
        width: 90vh;
    }

    .section4 {
        background-size: auto 120%;
    }

    .section5_in {
        padding: 15px;
        height: 95vh;
        width: 65%;

    }

    .list {
        border-bottom: 1px dashed #4D4D4D;
        padding: 5px 0;
        width: 90%;
    }

    p {
        font-size: 9.5pt;
    }

    form {

        margin-top: 20px;
    }

    .form1,
    .form2,
    .form3,
    .form4,
    .form5,
    .form6,
    .form7 {
        margin: 10px 0 !important;
    }
}

@media screen and (max-height:990px) {
    .rotate h2 {
        font-size: 110pt;
    }

    h2 {
        font-size: 110pt;
        line-height: 190px;
        background-size: 300px;
    }

    .list {
        padding: 10px 0;

    }

    .section5_in {
        padding: 20px;
    }

    .section7 .rotate {
        left: -8%;
    }

}

@media screen and (max-height:1040px) {

    .media {

        height: 350px;
    }

    .item1 img {
        width: 90%;
    }
}

@media screen and (max-height:950px) {
    .cparea {
        width: 80%;
        margin: 30px 30px;
    }
}

@media screen and (max-height:870px) {
    .rotate {

        top: 25%;

    }

    .media {

        height: 300px;
    }

    .list {
        padding: 5px 0;
    }

    .form1,
    .form2,
    .form3,
    .form4,
    .form5,
    .form6,
    .form7 {
        margin: 5px 0 !important;
    }
}

@media screen and (max-height:800px) {
    .media {
        height: 250px;
    }

    .customer {
        padding: 5px 0;
    }
}

@media screen and (max-width:1366px) and (max-height: 768px) {
    .item1 img {
        width: 74%;
    }

    .section2 img {
        width: 75vh;
    }
}

@media screen and (max-width:1280px) and (max-height: 600px) {
    .top50 {
        margin-top: 10px;
    }

    .rotate h2 {
        font-size: 90pt;
    }

    h2 {
        font-size: 90pt;
        line-height: 140px;
        background-size: 300px;
    }

    .section4 h2 {
        margin-bottom: 20px;
    }

    p,
    a {
        line-height: 20px;
    }

    .media {
        height: 200px;
    }

    .sec6txt {
        top: 3%;
    }

    .cparea {
        width: 90%;

    }

    .list {
        padding: 2px 0;
    }

    p {
        font-size: 9pt;
    }

    .contactarea {
        top: 0%;

    }

    form {
        margin-top: 0px;
    }

    .form1,
    .form2,
    .form3,
    .form4,
    .form5,
    .form6,
    .form7 {
        margin: 1px 0 !important;
    }
}

@media screen and (max-width:769px) and (max-height: 1025px) {
    .section5_in {
        padding: 15px;
        height: 93vh;
        width: 60%;
    }

    .section2 {
        left: 3%;
    }

    .section4 {
        background-size: auto 100%;
    }

    .recruitarea {

        top: 10%;
    }
}

@media screen and (max-width:800px) {
    .topcontents_in {
        left: 12vw;
    }

    .img-wrap {
        left: 10%;
    }


}

@media screen and (max-width:768px) {
    .section7 .rotate {
        left: -9%;
    }

    .topcontents_in {
        left: 14vw;
    }

    .img-wrap {
        left: 15%;
    }

    .txtl {
        width: 450px;
        box-sizing: border-box;
        padding-right: 30px;
        float: left;
        margin-top: 15px;
    }

    #thanks h1 {
        font-size: 15pt;
        color: #000;
    }

    .cparea {
        width: 88%;
    }

    .blo7 {
        display: block;
    }
}

@media screen and (max-width:500px) {
    .blo7 {
        display: inline;
    }

    header .logo {

        top: 1%;
    }

    #contents {
        width: 6400px;
        left: 95vw;
    }

    .button_container {
        top: 2%;
        right: 2%;
    }

    .topcontents_in p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    header .logo {
        width: 120px;
    }

    h1 {
        line-height: 0;
    }

    h1 img {
        width: 170px !important;
        position: absolute;
        top: 27px;
        left: 61px;
    }

    h2 {
        font-size: 55pt;
        background-size: 220px;
        line-height: 85px;
    }

    p,
    a {
        line-height: 20px;
        letter-spacing: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {

        letter-spacing: 1px;
    }

    img {
        width: 90%;

    }

    .item1 img {
        width: 76%;
    }

    .scroll {

        right: 20vw;

    }

    .blo5 {
        display: block;
    }

    .rotate h2 {
        font-size: 55pt;
    }

    .rotate {
        top: 27%;
        left: -4%;
    }

    .box {

        width: 800px;

    }

    .img-wrap {
        top: 40vh;
        left: 2vw;
        width: 430px;

    }

    .topcontents_in {
        top: 35vh;
        left: 5vw;
        text-align: center;
    }

    .section1 h2 {

        background-size: 215px;

    }

    .item1 {
        position: absolute;
        left: 20%;
        top: 4%;
    }

    .section1 .txtarea {
        width: 350px;
        left: 11%;
        top: 62%;
    }

    h3 {
        font-size: 13pt;
        margin-bottom: 10px;
        line-height: 35px;
    }

    .section2 img {
        width: 60%;
    }

    .txtl {
        width: 360px;
        box-sizing: border-box;
        padding-right: 30px;
        float: left;
        margin-top: 5px;
    }


    .section3 p {
        color: #fff;
        width: 350px;
    }

    .section3 .txtarea {
        position: absolute;
        top: 20%;
        left: 5%;
    }

    .section4 {

        background-size: auto 100vh;
    }

    .section4 h2 {
        margin-bottom: 40px;
    }


    .section4 p {
        width: 350px;
    }

    .section4 .txtarea {
        top: 4%;
    }

    .customer {
        padding: 10px 0;
    }

    .section5_in {
        padding: 15px;
    }

    .section5 p {
        line-height: 20px;
        font-size: 8pt;
    }

    .small {
        margin-top: 10px;
        font-size: 8pt !important;
        line-height: 13px !important;
    }

    .section5_in {

        height: 95%;
        width: 75%;

    }

    .recruitarea {
        top: 4%;
        left: 115px;
    }

    .list {

        padding: 4px 0;
        width: 90%;
    }

    .list p {
        font-size: 9pt;
    }

    .list a {
        text-decoration: underline;
    }

    p {
        font-size: 10pt;
    }

    .cparea p {
        font-size: 9pt;
    }

    .cparea {
        width: 100%;
        margin: 15px 10px;
    }

    .sec6_blue {
        width: 190px;

    }

    .sec6txt {
        position: absolute;
        top: 2%;
        left: 3%;
        z-index: 99;
    }

    .top50 {
        margin-top: 15px;
    }

    .section7 p {
        font-size: 7pt;
        line-height: 15px;

    }

    .section7 .rotate {

        left: -8%;
    }

    .section7 .list {
        width: 100%;
    }

    .recruitarea {

        width: 360px;
    }

    form {
        width: 70%;
        height: 100%;
        margin-top: 0px;
        font-size: 9pt;
    }

    input[type="button"] {
        -webkit-appearance: none;
        width: 130px;
        height: 30px;
    }

    dt {
        font-size: 9pt;
    }

    .form1,
    .form2,
    .form3,
    .form4,
    .form5,
    .form6,
    .form7 {
        margin: 3px 0 !important;
    }


    button {

        margin: 15px 0px;

    }

    input[type="submit"] {

        height: 30px;
    }

    .media {
        height: 200px;
    }

    label {
        font-size: 9pt !important;
    }

    form textarea {

        height: 80px;
        width: 100%;
    }

    #thanks h1 {
        font-size: 14pt;
        color: #000;
        line-height: 36px;
    }

    #thanks p {
        margin: 15px 0;
        padding: 0 10px;
    }

    .reblo5 {
        display: inline;
    }
}

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

    .topcontents_in p {
        font-size: 14.5px;
        margin-bottom: 15px;
    }

    p {
        font-size: 9pt;
        line-height: 18px;
        letter-spacing: 0;
    }

    .item1 img {
        width: 65%;
    }

    .rotate h2 {
        font-size: 50pt;
    }

    h2 {
        font-size: 50pt;
        background-size: 220px;
        line-height: 75px;
    }

    .section2 img {
        width: 44%;
    }

    .section4 h2 {
        margin-bottom: 5px;
    }

    .media {
        height: 140px;
    }

    .list {
        padding: 1px 0;
        width: 90%;
    }

    .customer {
        padding: 0px 0;
    }

    .section7 p {
        font-size: 7pt;
        line-height: 13px;
    }

    .list {
        padding: 2px 0;
    }

    form textarea {
        height: 50px;
    }

    form input {
        height: 18px;

    }

    .form1,
    .form2,
    .form3,
    .form4,
    .form5,
    .form6,
    .form7 {
        margin: 1px 0 !important;
    }

}