@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%;
    overflow-x: hidden;
}


body {
    color: #fff;
    word-wrap: break-word !important;
    font-family: 'Noto sans JP', 'M PLUS 1p', "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
    margin: 0;
    font-size: 1.4em;
    min-width: 100%;
    background: #000;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}


@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

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;
}


p,
a,
li {
    font-size: 100%;
    font-family: 'Noto sans JP', 'M PLUS 1p', "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-family: 'Noto sans JP', 'M PLUS 1p', "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
    line-height: 30px;

    font-size: 15pt;
    color: #fff;
}

p {
    font-size: 16px;
    line-height: 30px;

}

h1 {
    font-size: 35px;
    margin-bottom: 30px;
    color: #005306;
    text-shadow: -1px -1px 4px #fff
}

h2 {
    font-size: 28px;
    letter-spacing: 1px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 300;
}

.caption {
    font-size: 23px;

    padding-top: 5px;
    display: block;
    letter-spacing: 1px;
}

ul li {
    list-style-type: none;
    font-weight: 300;
}

.toparea h2 {
    text-align: center;
    font-weight: 400;
    margin-top: 60px;
}

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

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.acc-txt {
    width: calc(70% - 10px);
    margin-bottom: 30px;
}

.acc-r {
    margin-bottom: 30px;
    width: calc(30% - 10px);
}

.acc-r img {
    margin: 0 0 30px !important;
    width: 80px;
}

.mb {
    margin-bottom: 55px;
}

.acc-sns {
    display: flex;
}

.acc-sns a {
    margin-right: 15px;
    font-size: 25px;
}

.small {
    font-size: 8pt;
}

.contents-area {
    margin: 45px 0 45px
}

header {
    position: fixed;
    z-index: 999;
}

.tel {
    text-decoration: underline;
}


.background {
    opacity: 0;
    border-radius: 20px;
    padding: 30px;
    background: rgb(0 0 0 / 0.3);
}


.hov-one {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 0.3s;
    z-index: 99;
}

.hov-one:hover {
    opacity: 0;
    transition: 0.3s;
}

.hov-two {
    position: absolute;
    top: 0;
    left: 0;
}

.toplogo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 30px;
}

.top-contents {
    position: relative;
    width: 100%;
    text-align: center;
    height: 55vh;
}

.top-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 90%;
}

.top-item p {
    text-shadow: -1px -2px 3px #000;
    color: #F5AA00;
    font-family: adobe-garamond-pro, serif;

    font-weight: 700;

    font-style: normal;
    font-weight: bold;
}

.news-contents {
    /*    max-height: 250px;
    overflow: scroll;*/
    opacity: 0;

}

.news-contents.active {
    overflow: scroll;
    animation: fadeInnews 1s ease 1s 1 forwards;
    -webkit-animation: fadeInnews 1s ease 1s 1 forwards;
}

@keyframes fadeInnews {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50px);
    }
}

@-webkit-keyframes fadeInnews {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50px);
    }
}

.news-contents,
.company-contents,
.contact-contents {
    background: rgba(0, 0, 0, 0.6);
    padding: 45px;
    width: 70%;
    margin: 100px auto 0;
    border-radius: 20px;

}


.sec-contents {
    background: rgba(0, 0, 0, 0.6);

    width: 70%;
    padding: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 20px;

}


.col2 {
    width: calc(50% - 10px);
}

.col3 {
    width: calc(33.3333% - 10px);
}

.hover-effect {
    overflow: hidden;
    position: relative;
    transition: 0.3s;
    display: block;
}

.hover-effect .hov-txt {
    text-align: center;
    padding: 5px 30px;
    color: #000;
    font-size: .85em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: 0.3s;
    background: #fff;

}

.hover-effect .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: table;
    transition: 0.3s;

}

.hover-effect:hover .mask {
    opacity: 1;
    transition: 0.3s;
}



.hover-caption {
    background: #000;
    padding: 5px 10px;
    display: block;
}

.news ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.news li {
    padding: 10px 0;
    font-size: 100%;
    font-family: 'Noto sans JP', 'M PLUS 1p', "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}

.news .date {
    width: 125px;
}

.news .news-txt {
    width: calc(100% - 135px);
}

.news-txt a {
    transition: 0.3s;
    color: #fff;
}

.news-txt a:hover .link-c {
    transition: 0.3s;
    color: #18933B;
}

#section1 {


    background-image: url(../img/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    content: " ";
    z-index: 0;
    padding: 60px 0 150px;

}




.button-banner {
    overflow: hidden;
    position: relative;
    transition: 0.3s;
    display: block;
}

.button-banner .hov-img {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 145px;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transition: 0.5s;
    z-index: 99;


}

.button-banner:hover .hov-img {

    transition: 0.5s;
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);

}

.button-banner .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: table;
    transition: 0.3s;


}

.button-banner:hover .mask {
    opacity: 1;
    transition: 0.3s;
}

#section2 {
    background-image: url(../img/bg2.jpg);

    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;

    display: block;
    width: 100%;
    height: 100%;
    content: " ";

    z-index: 0;
}

#section3 {
    background-image: url(../img/bg3.jpg);

    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    content: " ";

    z-index: 0;
}

#section4 {
    background-image: url(../img/bg4.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    content: " ";

    z-index: 0;
}

#section5 {
    background-image: url(../img/bg5.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    content: " ";
    padding: 60px 0 150px;
    z-index: 0;
}

#section6 {
    background-image: url(../img/bg6.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    content: " ";
    z-index: 0;
}



.button {
    border: 1px solid #fff;

    margin-top: 10px;
    display: inline-block;
}

.button a {
    display: block;
    cursor: pointer;
    padding: 10px;
}

.pagenation {
    padding: 20px;
    position: fixed;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pagenation li {
    list-style-type: none;
    margin-bottom: 20px;
}

.pagenation a {
    display: block;
    height: 8px;
    border: 1px solid #fff;
    width: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.pagenation a.active {
    background: #fff;
}

.top_menu a {
    color: #CECBCB;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.3s;

}

.top_menu a:hover {
    color: #fff;
    transition: 0.3s;
}


.top_menu {
    width: 120px;
    position: fixed;
    z-index: 999;
    color: #fff;
    top: 95px;
    left: 40px;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: left;
    text-decoration: none;
    list-style: none;
}

.top_menu li {
    margin: 30px 0;
    color: #fff;
    list-style: none;
    font-weight: bold;
}

button.top_menu_button {
    display: none;
}


.top_menu_nav a {
    display: block;
    padding: 0 0 5px;
    text-decoration: none;
    font-weight: bold;
}

.underline a::after {
    border-bottom: solid 2px #fff;
    bottom: 0;
    content: "";
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 0;
}

.underline a:hover::after {
    width: 100%;
}

.logoconte {
    position: relative;
}

.headlogo {
    position: fixed;
    width: 100px;
    z-index: 999;

    top: 28px;
    left: 40px;
    transition: 0.5s;
    margin-bottom: 30px;
}

.headlogo.on {
    width: 100px;
    z-index: 999;
    opacity: 1;
    transition: 1s;
}

.spmenu {
    display: none;
}

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 10px;
    z-index: 999;
}

.fl {
    float: left;
}

.wh {
    color: #fff !important;
}

.clear {
    clear: both;
}

.middle {
    vertical-align: middle;
}

img {
    width: 100%;
    height: auto;
}



.tc {
    text-align: center;
}

.top20 {
    margin-top: 20px;
}

.top30 {
    margin-top: 30px;
}

.top50 {
    margin-top: 50px;
}

.underbar {
    letter-spacing: 0px;
}

.logo {
    width: 300px;
    margin: 0 auto;
}

.logocap {
    text-align: center;

    font-size: 10pt;
}

p.logocap {
    color: #fff;
}

.thumbnail {
    padding: 10px;
    width: 100%;
    height: auto;
}

.thumbnail p {
    margin-top: 20px;
    margin-bottom: 50px;

}

.cf {
    clear: both;

}

#contents {
    width: 100%;
    background-color: #eaeaea;
    height: 100vh;
}


.contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #333;
}

.otoiawase::after {
    content: '商品・製品に関する場合は商品名、数量など、車両やメンテナンスに関することは年式、型式仕様、グレード、走行距離などをわかる範囲でできるだけ詳しくご記入ください。 ';
    display: block;
}

svg {
    width: 100%;
}

.col4 {
    width: 25%;
    float: left;
}

.start {
    stroke: #fff;
    stroke-width: 1px;
    fill: #fff;
    /*opacity: 0.5;*/
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: textAnime 3s linear;
}

@keyframes textAnime {
    0% {
        stroke-dashoffset: 1000;
        fill: transparent;
    }

    50% {
        stroke-dashoffset: 500;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 0;
        fill: #fff;
    }
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?jbi1ap');
    src: url('../fonts/icomoon.eot?jbi1ap#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?jbi1ap') format('truetype'),
        url('../fonts/icomoon.woff?jbi1ap') format('woff'),
        url('../fonts/icomoon.svg?jbi1ap#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-vector:before {
    content: "\e900";
}

.scroll {
    position: absolute;
    bottom: 6.5%;
    right: 0%;
    opacity: 1;
    transition: 1s;
    z-index: 99;
}

.scroll.off {
    position: absolute;
    bottom: 0%;
    right: 0%;
    opacity: 0;
    transition: 0.5s;
}

.scroll p {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    color: #fff;
    font-size: 10pt;
    margin-bottom: 10px;
}

#single9 {
    height: 50px;
    width: 50px;
    overflow: hidden;
    color: #fff;
}

.links {

    -webkit-animation-name: links;
    -moz-animation-name: links;
    animation-name: links;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes links {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes links {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes links {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}


#single9 span {
    display: block;
    height: 50px;

    position: relative;
}

#single9 span:before {
    content: "\e900";
    position: relative;
    top: 15px;
    left: 40px;
    display: block;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    -webkit-animation-name: single9;
    animation-name: single9;
    -webkit-animation-duration: 2.4s;
    animation-duration: 2.4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes single9 {
    0% {
        top: -30px;
        opacity: 1;
    }

    50% {
        opacity: 1
    }

    100% {
        top: 65px;
        opacity: 1;
    }
}

@-moz-keyframes single9 {
    0% {
        top: -30px;
        opacity: 1;
    }

    50% {
        opacity: 1
    }

    100% {
        top: 65px;
        opacity: 1;
    }
}

@keyframes single9 {
    0% {
        top: -30px;
        opacity: 1;
    }

    50% {
        opacity: 1
    }

    100% {
        top: 65px;
        opacity: 1;
    }
}

.btt {
    position: fixed;
    bottom: 3%;
    right: -10px;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.btt.on {
    position: fixed;
    bottom: 9%;
    right: -10px;
    z-index: 999;
    opacity: 1;
    transition: 1s;
}

.btt p {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    color: #fff;
    font-size: 10pt;
    margin-top: 35px;
}


.fadein {
    opacity: 0;
    transition: opacity 1.5s;
}

.fadein.scrollin {
    opacity: 1;
}


.form {
    text-align: left;
    border-collapse: collapse;
    margin-top: 20px;
    width: 100%;
}

.form ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    vertical-align: middle;
    font-weight: normal;
}

.form li {
    width: 100%;
    font-weight: normal;
    list-style: none;
}

.form li span {
    margin-bottom: 15px;
    overflow: hidden;
    display: block;
}

.policy {
    width: 100%;
    max-width: 700px;
}

p.font_w {
    font-weight: bold;
}

.su-spoiler-content p {
    font-size: 9pt;
}

.pagearea {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px;
    padding-top: 5%;
    overflow: hidden;
}




.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
    background-color: #afafaf;
    color: #000;
    width: 100%;
    max-width: 700px !important;
    border: 1px solid #afafaf;
    font-size: 100%;
    padding: 0.5em;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .1) inset;
    font-size: 16px;
}

input.wpcf7-form-control.wpcf7-submit {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 25px;
}

input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: rgba(0, 0, 0, 0.1)
}

.form img {
    max-width: 100%;
}

#huge_it_portfolio_content_2 #huge_it_portfolio_container_2 {
    width: 100% !important;
    max-width: 100% !important;
    opacity: 0;
}

.last-contents {
    position: relative;

}

footer {
    padding: 30px 0;
    margin-top: 150px;
    width: 100%;
    background: #333;
    color: #fff;
    z-index: 999;

}


footer .copy {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footlogo {
    text-align: center;
    position: relative;
    display: block;
    width: 120px;
    margin: 0 auto;
    cursor: pointer;
}

.footsns {
    position: absolute;
    bottom: 0;
    right: -180px;
}

.footsns a {
    font-size: 30px;
    margin: 0 10px;
    transition: 0.3s;
}

.footsns a:hover {
    color: #18933B;
    transition: 0.3s;
}

footer ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin: 45px auto;
}

footer li a {
    padding: 5px 15px;
    transition: 0.3s;
}

footer li a:hover {
    color: #18933B;
    transition: 0.3s;
}

.footlogo img {
    width: 100%;
    transition: 0.3s;
    opacity: 1;

}

.footlogo img:hover {

    transition: 0.3s;
    opacity: 0.5;

}

#footer {
    width: 100%;
}

footer p {
    font-size: 9pt;
    color: #fff !important;
}

#footer2 {
    width: 100%;
    background: #333;
    padding: 1%;
    z-index: 999;
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
}

.company ul {
    margin: 45px 0;
    display: flex;

    flex-wrap: wrap;
}

.company li {
    border-bottom: 1px solid #fff;
    padding: 10px 0;
}

.company .list-left {
    width: calc(25% - 0px);
}

.company .list-right {
    width: calc(75% - 0px);
    padding-left: 15px;
}

.contact-cap {
    margin-top: 45px;
    padding-top: 45px;
    border-top: 1px solid #fff;
}

.sp {
    display: none;
}

.map {
    position: relative;
    padding-bottom: 65.5%;
    height: 0;
    overflow: hidden;
}

.map iframe {
    width: 100%;
}

.contact-txt {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.contact-cap p {
    font-size: 13px;
}

.contact-cap .big {
    font-size: 15px;
}

.fit-img {
    max-height: 304px;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 1600px) {
    h2 {
        font-size: 35px;
    }

    .top_menu a {

        font-size: 20px;

    }

    .top_menu {
        width: 150px;
    }

    .sec-contents {

        padding: 60px;
    }

    .top-item p {

        font-size: 25px;
    }

    .news-contents,
    .company-contents,
    .contact-contents {

        padding: 60px;
    }

    .contents-area {
        margin: 45px 0 45px;
    }

    .news .small {
        margin-bottom: 10px;
    }

    .small {
        font-size: 15pt;
    }

    p,
    a {

        line-height: 30px;

        font-size: 20px;
    }

    p {
        font-size: 20px;
        line-height: 35px;
    }

    .company li {

        font-size: 20px;
    }

    .contact-cap p {
        font-size: 20px;
    }

    .contact-cap .big {
        font-size: 25px;
    }

    form#mail_form dl dt {
        clear: both;
        width: 100%;
        padding: 15px 0 0;
        overflow: hidden;
        font-size: 20px;
    }
}

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

    .sp {
        display: block;
    }

    .sp-none {
        display: none;
    }

    .headlogo {
        top: 10px;
        left: 10px;
    }

    .col3 {
        width: 100%;
        display: inherit;
        margin-bottom: 15px;
    }

    .c_pagearea {
        width: 90%;
    }

    .block {
        display: inline-block;
    }

    .fl {
        float: none;
    }

    .logo {
        width: 90%;
        margin: 0 auto;
    }




    h1 {
        font-size: 30px;
        margin-bottom: 80px;
        line-height: 45px;
    }

    h2 {
        font-size: 16pt;
        margin: 0px 0px 10px;
        letter-spacing: 1px;

        line-height: 35px;
    }

    .top-contents {
        position: relative;
        width: 100%;
        text-align: center;
        height: 90vh;
    }

    .toplogo {
        max-width: 230px;
        width: 100%;
        margin: 0 auto 100px;
    }

    .top-item {

        width: 100%;
    }


    .scroll {
        position: fixed;
        right: -4.1%;
    }

    .scroll.off {
        position: fixed;
        right: -4.1%;
    }


    .btt {

        bottom: 3%;
        right: -7.2%;
    }

    .btt.on {
        position: fixed;
        bottom: 15%;
        right: -7.2%;
        z-index: 999;
        opacity: 1;
        transition: 1s;
    }

    .pp-scrollable .sec-contents {
        width: 90%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        margin: 100px auto 0;
        border-radius: 20px;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    #section3,
    #section5 {
        padding-bottom: 150px;
    }

    .news-contents,
    .company-contents,
    .contact-contents {
        padding: 20px;
        width: 90%;

    }


    .sec-contents {
        width: 90%;
        padding: 20px;


    }

    .col4 {
        width: 100%;
        float: none;
    }

    .button-banner .hov-img {

        width: 80px;
    }

    footer p {
        font-size: 8px;
        width: 85%;
    }

    /* Toggle Button */

    #nav-toggle {
        position: fixed;
        right: 10px;
        top: 10px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 101;
        display: block;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        left: 0;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }

    #nav-toggle span:nth-child(1) {
        top: 0;
    }

    #nav-toggle span:nth-child(2) {
        top: 11px;
    }

    #nav-toggle span:nth-child(3) {
        top: 22px;
    }

    /* #nav-toggle 切り替えアニメーション */
    #nav-toggle.open span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    #nav-toggle.open span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    #nav-toggle.open span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    .top_menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        transition: .3s;
    }

    .top_menu.open {
        top: 0;
        background: rgba(0, 0, 0, 0.8);
        padding-top: 25%;
        z-index: 100;
    }

    .top_menu ul {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .top_menu li {
        margin: 15px auto;
        text-align: center;
        font-size: 16px;
    }


    .spmenu {
        display: initial;
        width: 100%;
        position: fixed;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 999;
        opacity: 0;
        transition: 0.5s;
    }

    .news-contents,
    .company-contents,
    .contact-contents {
        padding: 20px;
        width: 90%;

    }

    .news .date,
    .news .news-txt {
        width: 100%;
    }

    .news .news-txt {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .col2 {
        width: 100%;
        margin-bottom: 15px;
    }



    .spmenu.on {
        opacity: 1;
        transition: 0.5s;
    }

    .spmenu li {
        width: 25%;
        margin: 0;
        float: left;
        text-align: center;
        color: #fff;
        list-style: none;
        padding: 5px 0;
    }

    .spmenu a {
        display: block;
        line-height: 15px;

    }

    .headlogo {
        width: 70px;
    }

    .headlogo.on {
        width: 70px;
        left: 8%
    }

    .pagenation {
        padding: 10px;
    }

    .pagearea {
        width: 90%;
        padding-top: 15%;
    }

    .c_pagearea {
        padding-top: 15%;
    }

    .a_pagearea p {
        line-height: 38px;

        font-size: 11pt;
    }

    .a_pagearea {
        width: 90%;
        max-width: none;
    }

    .thumbnail {
        padding: 0px;
    }

    .top50 {
        margin-top: 30px;
    }

    .a_pagearea {
        margin-top: 30%;
    }

    .worksin {

        width: 90%;

    }

    .fesdatelist li {
        width: 100%;
        margin: 0px 0;
        color: #FFF;
        padding: 0px;
        text-align: left;
        font-size: 9pt;
    }

    li.fdarea {
        width: 100%;
        margin: 15px 0 5px;
    }

    iframe {
        width: 90%;
    }

    form#mail_form dl {
        width: 100% !important;
        overflow: hidden;
        margin: 0 auto;
    }

    .footlogo {
        text-align: center;
        position: relative;
        display: block;
        width: 135px;
        margin: 0;
        padding-left: 15px;
    }

    footer ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        width: 95%;
        margin: 45px auto;
    }

    footer li {
        width: 100%;
        margin: 10px 0;
    }

    #section2 {
        padding: 60px 0 150px;

    }

    .a_pagearea p {
        line-height: 34px;

        font-size: 9pt;
    }

    p,
    a,
    li,
    .news li {
        font-size: 9pt;
    }

    h2 {
        font-size: 15pt;
    }

    .btt.on {

        bottom: 18%;
    }

    .scroll {
        bottom: 7%;
    }

    .a_pagearea {
        width: 95%;
    }

    .a_pagearea p {
        line-height: 30px;
        letter-spacing: 1px;
        font-size: 9pt;
    }

    .a_pagearea {
        margin-top: 25%;
    }

    .contents-area {
        margin: 20px 0 20px;
    }

    .company ul {
        margin: 20px 0;

    }

    form#mail_form input#postal {
        width: 50% !important;
    }

    form#mail_form input#postal+a {
        padding: 6px 9px 5px !important;
        text-align: center;
    }

    form#mail_form input#company,
    form#mail_form input#mail_address,
    form#mail_form input#mail_address_confirm,
    form#mail_form input#phone,
    form#mail_form input#phone3 {
        width: 100% !important;
    }

    form#mail_form input#name_1,
    form#mail_form input#name_2,
    form#mail_form input#f-name_1,
    form#mail_form input#f-name_2,
    form#mail_form input#read_1,
    form#mail_form input#read_2,
    form#mail_form input#postal,
    form#mail_form input#schedule {
        width: calc(50% - 5px) !important;
    }
}

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