/*
Theme Name: wj-kuno_3
Author: abeden co.ltd.
Version: 1.0
*/

@charset "utf-8";

/* base */

html {
    padding: 0;
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background-image: url(img/tmp/bg_03.jpg);
    backdrop-filter: blur(3px);
    background-repeat: no-repeat;
    background-position: center center;
}

h1 {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 2.4rem;
    padding: 10px 0;
}

h1 a {
    color: #fff;
}

h2 {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #0051A2;
    font-size: 2.8rem;
    /*
    border-bottom: solid 1px #eee;
    */
    padding: 0 7px;
    margin: 30px auto 20px;
}

h2 span {
    display: block;
    color: #ccc;
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    border-top: solid 1px #ccc;
}

h3 {
    position: relative;
    text-align: left;
    font-size: 2.3rem;
    margin: 20px 0;
    border-bottom: 4px solid #ccc;
}

h3::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #66cdaa;
}

h4 {
    font-size: 2rem;
    text-align: left;
    color: #fff;
    border-bottom: double 3px #ccc;
    margin: 40px 0;
}

h4 span {
    display: inline-block;
}

h5 {
    color: #dbedff;
    font-size: 1.8rem;
    margin: 15px 0 5px;
}

h6 {
    font-weight: normal;
}

a {
    color: #0051A2;
    transition: .3s;
    outline: none;
}

a:hover {
    color: #89c4ff;
    transition-duration: 0.2s;
}

a:active,
a:visited {
    border: 0;
}

input,
select,
textarea {
    border: solid thin #ccc;
    border-radius: 3px;
}

button,
input[type="submit"] {
    display: inline-block;
    width: 80px;
    cursor: pointer;
    background: #3498db;
    color: #fff;
    border: none;
    padding: 5px 15px 2px;
    border-radius: 3px;
    box-shadow: 0 0 10px #ccc;
}

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

* {
    box-sizing: border-box;
}

/* header */

header {
    position: relative;
    z-index: 100;
}

.header {
    position: absolute;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    z-index: 400;
}

.header.container {
    margin: 0;
}

.site-title {
    padding: 5px 10px;
}

.title-box {
    font-size: 1.4rem;
    font-weight: bold;
}

.title-box a span {
    font-size: 2rem;
}

.site-title a {
    position: relative;
    color: #0051A2;
}

.site-title a::before {
    position: relative;
    top: 5px;
    content: url(img/tmp/logo_2.svg);
    margin-right: 5px;
}

.sub-title {
    display: inline-block;
    color: #0051A2;
    margin-left: 5px;
}


/* nav */

nav {
    padding: 0;
    z-index: 1;
}

nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

nav ul li {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0051a2;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    -webkit-transition: .5s;
    transition: .5s;
    padding: 15px 0;
    margin: 0;
    z-index: 5;
}

nav ul li a:after {
    position: absolute;
    -webkit-transition: .3s;
    transition: .3s;
    content: '';
    width: 0;
    top: 0;
    left: -10%;
    height: 100%;
    background: #0051a2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #0065ca), color-stop(0.00, #0051a2));
    background: -webkit-linear-gradient(top, #0051a2 0%, #0065ca 100%);
    background: -moz-linear-gradient(top, #0051a2 0%, #0065ca 100%);
    background: -o-linear-gradient(top, #0051a2 0%, #0065ca 100%);
    background: -ms-linear-gradient(top, #0051a2 0%, #0065ca 100%);
    background: linear-gradient(top, #0051a2 0%, #0065ca 100%);
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
    z-index: -1;
}

nav ul li a:hover {
    cursor: pointer;
    color: #fff;
    margin: 0;
}

nav ul li a:hover:after {
    left: -10%;
    width: 120%;
    margin: 0;
}

nav ul li ul {
    display: inline-block;
}

nav ul li ul li {
    display: block;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
/*
.current-menu-item {
    color: #fff;
    background-color: #0051a2;
}

.current-menu-item a {
    color: #fff;
}

.current-menu-item .sub-menu a {
    color: #0051a2;
}

.current-menu-item .sub-menu a:hover {
    color: #fff;
}
*/
nav ul li:hover .sub-menu {
    display: block;
    z-index: 22;
}

.sub-menu {
    position: absolute;
    display: none;
    width: 100%;
    max-width: 250px;
    top: 35px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.sub-menu li {
    padding: 0;
}

.sub-menu a {
    display: block;
    width: 100%;
    border: 0;
    margin: 0;
}

.slicknav_menu {
    display: none;
}


/* main */

.main {
    width: 100%;
    padding-top: 50px;
    margin: 0 auto;
}

.contents {
    width: 100%;
    text-align: center;
    margin: 10px auto;
}

.index,
.product,
.company,
.facility,
.license,
.waterjet,
.achievement,
.single,
.archive,
.access,
.err-page,
.tech-cat {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}

.contents p {
    margin: 10px 0;
}

.pankuzu {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    font-size: 1.2rem;
    padding-left: 20px;
    margin: 20px auto 0;
}

.pankuzu ul {
    list-style: none;
}

.pankuzu li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.pankuzu li::after {
    display: inline-block;
    content: "/";
    margin-left: 8px;
}

.pankuzu li:last-child::after {
    display: none;
}

.wrap {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: 30px auto;
}

.wrap_r {
    width: 100%;
    max-width: 1080px;
    padding: 20px;
    margin: 0 auto;
}

.wrap_w {
    width: 100%;
    max-width: 1280px;
    padding: 20px;
    margin: 0 auto;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.co_box {
    min-height: 200px;
    flex-basis: 450px;
    flex-grow: 1;
}

.co_box_l {
    flex-basis: 450px;
    flex-grow: 1;
}

.co_box_s {
    flex-basis: 250px;
    flex-grow: 1;
}

.co_box_2 {
    min-height: 200px;
    flex-basis: 270px;
    flex-grow: 3;
    font-size: 1.3rem;
    color: #333;
    padding: 20px 15px 15px;
}

.co_box_2 img {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 5px #ccc;
}

.co_box_3 {
    min-height: 200px;
    flex-basis: 300px;
    flex-grow: 1;
    padding: 0 15px;
}

.co_img {
    flex-basis: 300px;
    flex-grow: 1;
    padding: 10px;
}

.co_img img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.co_box img {
    width: 100%;
}

/* index */

.top-txt {
    position: relative;
    background-color: #f3f3f3;
    color: #003366;
    padding: 20px;
}

.top-txt div {
    position: absolute;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 3.6rem;
    text-align: right;
    vertical-align: middle;
    right: 0;
    bottom: 0;
    margin: 20px;
}

.top-img {
    margin: 0 auto;
}

.top-img img {
    width: 100%;
}

.catch-txt {
    position: absolute;
    left: 1em;
    bottom: 1em;
    width: 600px;
    height: 150px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 2.7rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    z-index: 200;
}

.txt-box {
    text-align: left;
    margin: 20px 0 40px;
}

.band {
    width: 100%;
    background: #f0f0f0;
    text-align: center;
    padding: 40px 0;
}

.band h2 {
    color: #0051A2;
}

.band h2 span {
    border-top-color: #ccc;
}

.water-cat {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 70px;
}

.water-cat ul {
    list-style: none;
    padding-left: 0;
}

.water-cat ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}

.water-cat ul li a {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    background-position: right bottom;
    background-size: 50%;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

.water-cat ul li a span {
    position: absolute;
    display: inline-block;
    width: 120px;
    height: 120px;
    background-image: url(img/tmp/shizuku.svg);
    background-position: right top;
    background-size: 50%;
    top: 50%;
    left: 0;
    margin: -1.8rem auto 0;
}

.water-cat ul li a:hover span {
    background-position: right bottom;
    transition-duration: 0.6s;
    z-index: 25;
}

.hi-icon-wrap {
    text-align: center;
    margin: 0 auto;
    padding: 2em 0 3em;
}

.hi-icon {
    display: inline-block;
    cursor: pointer;
    margin: 15px 25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px #0075c2, -1px -1px #0075c2, -1px 1px #0075c2, 1px -1px #0075c2, 0 1px #0075c2, 0 -1px #0075c2, 1px 0 #0075c2, -1px 0 #0075c2;
    z-index: 1;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.hi-icon-effect .hi-icon {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #3c669c), color-stop(0.79, #1375ca), color-stop(0.59, #1f7bca), color-stop(0.00, #82bcea));
    background: -webkit-linear-gradient(top, #82bcea 0%, #1f7bca 59%, #1375ca 79%, #3c669c 100%);
    background: -moz-linear-gradient(top, #82bcea 0%, #1f7bca 59%, #1375ca 79%, #3c669c 100%);
    background: -o-linear-gradient(top, #82bcea 0%, #1f7bca 59%, #1375ca 79%, #3c669c 100%);
    background: -ms-linear-gradient(top, #82bcea 0%, #1f7bca 59%, #1375ca 79%, #3c669c 100%);
    background: linear-gradient(top, #82bcea 0%, #1f7bca 59%, #1375ca 79%, #3c669c 100%);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}

.hi-icon-effect .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #fff;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}

.hi-icon-effect-a .hi-icon:hover {
    background: rgba(255, 255, 255, 1);
    color: #0051a2;
    text-shadow: none;
}

.hi-icon-effect-a .hi-icon:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.index_img {
    position: relative;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.cat_box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
}

.cat_box figure {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 200px;
}

.cat_box figcaption {
    position: absolute;
    top: -100%;
    left: -100%;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 2.4rem;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 1;
    padding: 90px 10px 20px;
}

.cat_box figure:hover figcaption {
    top: 0;
    left: 0;
}

.news-list {
    height: 350px;
    text-align: left;
    overflow: auto;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: solid thin #ccc;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.news-list div {
    margin: 5px 0;
}

.news-list a {
    color: #4682b4;
}

.news-list a:hover {
    color: #75baff;
}

.news-list .post {
    border-bottom: dotted 1px #ccc;
}

.profile {
    text-align: left;
    padding: 0 25px 20px;
    margin-top: 0;
}

.profile h4 {
    margin-top: 20px;
}

.profile img {
    width: 150px;
}

.profile p {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: justify;
    color: #333;
    font-size: 1.4rem;
    padding: 10px;
    border-radius: 4px;
}

.banner {
    text-align: center;
    margin: 10px 0 50px;
}

.banner a {
    display: inline-block;
    margin: 10px;
}

.banner img:hover {
    opacity: 0.8;
    transition-duration: 0.3s;
}

.category ul {
    display: inline-block;
    list-style: none;
    font-size: 1.1rem;
    margin-left: 20px;
}

.category a {
    color: #87ceeb;
}

.index .category a {
    color: #2e8b57;
}

.c_img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    text-align: center;
}

.c_img img {
    margin: 20px 10px;
}

.company table {
    width: 100%;
    margin: 30px 0;
}

.company table th,
.company table td {
    border-bottom: solid thin #ccc;
    padding: 20px;
}

.company table th {
    max-width: 150px;
    text-align: right;
    font-size: 1.7rem;
    vertical-align: top;
    color: #fff;
}

.company table td {
    text-align: left;
}

.company dl dt {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

.company dl dd {
    margin: 0 0 50px;
}

.to-access {
    display: inline-block;
    margin-left: 35px;
}

.waterjet {
    min-height: 100%;
    text-align: left;
    padding: 20px 20px 60px;
}

.waterjet p {
    margin: 20px 0;
}

.waterjet ul {
    list-style-type: circle;
    padding-left: 20px;
}

.waterjet ul li {
    margin: 15px 0;
}

.p_link {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    margin: 0 auto;
}

.p_link a {
    margin: 0 10px;
}

#technology,
#merit,
#processing,
#setsubi,
#shikaku,
#hokkaido,
#kyusyu,
#headquarters {
    padding-top: 60px;
}

.facility,
.license {
    border-bottom: dotted 2px #eee;
    padding: 20px 20px 60px;
    margin: 5px auto 100px;
}

.facility table,
.license table {
    border: 1px #888888 solid;
    background-color: #ffffff;
    color: #333;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    width: 70%;
}

.facility td,
.license td {
    border: 1px #888888 solid;
    padding: 10px 4px 8px 15px;
}

.font-center {
    text-align: center;
    vertical-align: middle;
}

.font-left {
    text-align: left;
    vertical-align: middle;
}

.cell-width {
    width: 15%;
}

.cell-bgcolor {
    background-color: #EFEFEF;
}

.font-comments {
    font-weight: bold;
}

.product {
    margin-top: 50px;
}

.product .container {
    border-bottom: dotted 2px #eee;
    padding: 20px 0 60px;
    margin: 20px 0 100px;
}

.product img {
    margin-bottom: 20px;
}

.product ul {
    text-align: left;
    min-height: 250px;
    vertical-align: middle;
    padding: 15px 10px 15px 35px;
    border-top: solid thin #eee;
    border-bottom: solid thin #eee;
}

.product ul li {
    margin: 10px 0;
}

.product ul span {
    display: block;
    text-align: right;
}

.ach_img {
    margin: 0 0 100px;
    text-align: left;
}

.ach_img .img-hover {
    display: inline-block;
    width: 295px;
    background: #fff;
    overflow: hidden;
    vertical-align: top;
    padding: 0;
    margin: 20px 10px;
}

.ach_img .img-hover img {
    width: 100%;
    max-width: 295px;
    max-height: 220px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.ach_img .img-hover:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.ach_img .youtube {
    display: inline-block;
    width: 610px;
    padding: 0;
    margin: 20px 10px;
}

.ach_img .youtube iframe {
    width: 100%;
    max-width: 610px;
    height: 343px;
    padding: 0;
    margin: 0;
}

.topics {
    text-align: center;
    border-bottom: solid thin #ccc;
    padding: 30px 0 50px;
    margin: 20px 0;
}

.topics-box {
    text-align: left;
    width: 100%;
    margin: 10px 30px 10px 0;
}

.topics img {
    margin: 10px 0;
}

.access {
    margin: 40px auto 100px;
}

.access dl dt {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.access dl dd {
    margin: 15px 0 50px;
}

.map {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    border: solid thin #ccc;
    margin: 20px 0 80px;
}

.post p {
    text-align: justify;
}

.single {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 100px;
}

.single h2 {
    font-size: 2.6rem;
}

.single-post {
    border-top: dotted 2px #ccc;
    border-bottom: dotted 2px #ccc;
    padding: 30px 15px;
    margin-top: 10px;
}

.single img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.img_w300,
.img_w200 {
    text-align: center;
    margin: 30px 0;
}

.img_w300 img {
    max-width: 300px;
}

.img_w200 img {
    max-width: 200px;
}

.space {
    margin: 30px 0;
}

.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 100px;
    text-align: left;
}

.archive .post {
    padding: 10px 0 50px;
    margin: 50px 0;
    border-bottom: dotted 2px #ccc;
}

.archive p a {
    display: inline-block;
    margin: 0 10px;
}

.ach_pdf a:hover {
    background-color: #1f7bca;
    color: #fff;
    transition-duration: 0.3s;
}

.single_area {
    min-height: 200px;
    flex-basis: 600px;
    flex-grow: 1;
}

.single_area img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.tech-cat figure {
    position: relative;
    overflow: hidden;
    width: 300px;
}

.tech-cat figure img {
    width: 100%;
    height: auto;
}

.tech-cat figcaption {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, .6);
    -webkit-transition: .3s;
    transition: .3s;
}

.tech-cat figcaption h3 {
    padding: 5px 0 0;
    font-size: 18px;
    margin-right: -30px;
}

.tech-cat figcaption p {
    margin-right: -30px;
    padding-top: 10px;
    font-size: 1.5rem;
}

.tech-cat figure:hover figcaption {
    right: 100%;
}

.transform01 {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tech-cat figure:hover .transform01 {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.tech-cat figure p {
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.contact {
    width: 100%;
    max-width: 600px;
    text-align: left;
    padding: 0 20px;
    margin: 0 auto 50px;
}

.contact .req {
    display: inline-block;
    background: #dc143c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 2px 8px 0;
    margin: 0 8px 5px;
    border-radius: 3px;
    box-shadow: 0 0 10px #ccc;
}

.contact p {
    margin: 50px 0;
}

.contact-mail {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    color: #0051a2;
    padding: 60px 20px 90px;
    margin: 0 auto;
    border-radius: 3px;
}

.contact-mail dl {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-mail dt {
    color: #0051a2;
    text-align: left;
    border-left: 6px solid #0051a2;
    padding-left: 10px;
    margin-bottom: 5px;
}

.contact-mail dd {
    margin-bottom: 50px;
}

.contact-mail .wpcf7-list-item {
    display: block;
    text-align: left;
    color: #333;
}

.contact-mail textarea,
.contact-mail input {
    color: #333;
    border-color: #999;
    padding: 5px;
}

.contact-mail textarea,
.contact-mail input[type="text"],
.contact-mail input[type="tel"],
.contact-mail input[type="email"] {
    width: 100%;
}

.contact-mail input[type="submit"] {
    color: #fff;
}

.err-page {
    padding: 20px 20px 100px;
}

.err-page p {
    margin: 40px 0;
}

.side_area {
    min-height: 200px;
    flex-basis: 200px;
    flex-grow: 1;
    padding: 0 30px;
}

.side ul {
    list-style: none;
    text-align: left;
}

.side li {
    padding: 0 5px;
}

.side h2 {
    display: block;
    text-align: left;
}

.peger {
    display: inline-block;
    margin: 50px;
}

.txt-l {
    font-size: 1.7rem;
}

.txt-red {
    color: red;
}

.txt-b {
    color: #1f7bca;
}

.txt-y {
    color: #ffff00;
    font-weight: bold;
}

.txt_c,
p.txt_c {
    text-align: center;
}

.link-deco {
    position: relative;
    display: inline-block;
    transition: .3s;
}

.link-deco::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .3s;
}

.link-deco:hover::after {
    width: 100%;
}

.link-ico {
    position: relative;
}

.link-ico:before {
    content: url(img/tmp/link.svg);
    margin-right: .3em;
    position: absolute;
    left: -1.3em;
}

.button {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.button a {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    font-size: 1.5rem;
    color: #0065ca;
    text-align: center;
    text-decoration: none;
    transition: .2s ease-in-out;
    margin: 20px 10px;
    padding: 12px 20px 10px;
}

.button a:active {
    background: rgba(255, 255, 255, .5);
}

.achievement .button {
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    padding: 30px 0;
    margin-bottom: 150px;
}

.lazer:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #0065ca;
    position: absolute;
    top: -1px;
    right: 0;
    transition: .1s ease-in-out .1s;
}

.lazer:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #0065ca;
    position: absolute;
    bottom: 0;
    right: -1px;
    transition: .1s ease-in-out .2s;
}

.lazer span:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #0065ca;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: .1s ease-in-out .3s;
}

.lazer span:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #0065ca;
    position: absolute;
    top: 0;
    left: -1px;
    transition: .1s ease-in-out;
}

.lazer:hover span:after {
    height: 0;
}

.lazer:hover:before {
    width: 0;
}

.lazer:hover:after {
    height: 0;
}

.lazer:hover span:before {
    height: 5px;
}

.youtube {
    margin-bottom: 150px;
    text-align: center;
}

.youtube iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}

.pdf {
    display: inline-block;
    position: relative;
    padding-right: 50px;
    margin: 30px 0;
}

.pdf:after {
    content: url(img/tmp/pdf.svg);
    position: absolute;
    right: 0;
    bottom: -17px;
}

.r_video video {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0 50px;
}

.t_1 {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 60px;
}

.t_1 tr {
    color: #333;
    border-bottom: solid thin #999;
}

.t_1 th {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.t_1 td {
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 10px 10px 10px 20px;
}

.t_1 ul {
    padding-left: 20px;
}

.btn_1 {
    display: inline-block;
    width: 300px;
    background: #fff;
    font-size: 24px;
    font-weight: bold;
    color: #0075c2;
    text-align: center;
    line-height: 1.2em;
    padding: 11px 15px;
    border: solid 2px #fff;
}

.btn_1:hover {
    background: #4682b4;
    color: #fff;
}

.large {
    font-size: 18px;
}


/* gallery */

.gallery-item {
    float: left;
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
}

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

.gallery-caption {
    color: #21759B;
    font-size: 90%;
    margin: 0;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    padding: 0%;
    margin: 0%;
    float: left;
    height: auto;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
    margin: 0%;
    box-sizing: border-box;
    float: left;
    height: auto;
}

.gallery-columns-2 .gallery-item {
    width: 48%;
    margin: 1%;
    float: left;
    height: auto;
}

.gallery-columns-3 .gallery-item {
    width: 30%;
    margin-left: 3%;
    float: left;
    height: auto;
}

.gallery-columns-4 .gallery-item {
    width: 23%;
    margin: 1%;
    float: left;
    height: auto;
}


/* pagination */

.pagination .current {
    display: inline-block;
    background: #ccc;
    text-align: center;
    padding: 3px 13px 5px;
    margin: 0 6px;
    border-radius: 3px;
}

.pagination a {
    display: inline-block;
    text-align: center;
    background: #fff;
    color: #0051a2;
    padding: 3px 13px 5px;
    margin: 0 6px;
    border-radius: 3px;
}

.pagination a:hover {
    background: #82bcea;
}

/* fixed-background */

.cd-fixed-bg {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 50px 0;
}

.cd-fixed-bg.cd-bg-1 {
    background-image: url("img/index/index_04.jpg");
}

.cd-fixed-bg.cd-bg-2 {
    background-image: url("img/tmp/wj-02.jpg");
}

.cd-fixed-bg.cd-bg-3 {
    background-image: url("img/tmp/wj-03.jpg");
}


/* pagetop */

.pagetop a {
    position: fixed;
    bottom: 15px;
    right: 20px;
    opacity: 0.9;
    z-index: 60;
}

.pagetop a:hover img {
    opacity: 0.7;
    transition-duration: 0.2s;
}


/* contact-area */

.contact-box {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    padding: 20px 20px 50px;
    margin: 0 auto;
    border-radius: 10px;
}

.contact-box h4 {
    font-size: 2.4rem;
    color: #0075c2;
}

.contact-box p {
    font-size: 3rem;
    color: #1375ca;
    margin: 10px 0;
}

.tel {
    font-size: 3rem;
    font-weight: bold;
}

.tel a {
    color: #333;
}

.tel:before {
    content: url(img/tmp/tel.svg);
}

.fax {
    font-size: 3rem;
    font-weight: bold;
}

.fax a {
    color: #333;
}

.fax:before {
    content: url(img/tmp/fax.svg);
}

.to-mail a {
    position: relative;
    display: inline-block;
    background-color: #2d96ff;
    color: #fff;
    font-size: 2rem;
    border-radius: 6px;
    padding: 7px 15px 6px 60px;
    margin: 30px auto 0;
    box-shadow: 0 0 10px #ccc;
}

.to-mail a:before {
    position: absolute;
    content: url(img/tmp/mail.svg);
    left: 15px;
    top: 8px;
}

.to-mail a:hover {
    background-color: #75baff;
}

.cap {
    font-size: 2rem;
    border-left: solid 5px #fff;
    padding-left: 10px;
    margin: 30px 0 10px;
}

.privacypolicy {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    margin: 0 auto 100px;
}

.privacypolicy dt {
    font-weight: bold;
}

.privacypolicy dd {
    margin-left: 23px;
    margin-bottom: 20px;
}

/* contact */

.required {
    display: inline-block;
    background: #dc143c;
    font-size: 13px;
    color: #fff;
    padding: 2px 10px 1px;
    margin-left: 10px;
}

/* footer */

footer {
    width: 100%;
    background-color: #eee;
    color: #333;
    clear: both;
    padding: 10px 10px;
}

.footer-link {
    margin: 10px 0;
}

.footer-link ul {
    display: table;
    width: 100%;
    max-width: 650px;
    padding-left: 0;
    margin: 0 auto;
}

.footer-link ul li {
    display: table-cell;
    text-align: center;
    padding: 0 10px;
    border-right: solid thin #0051A2;
}

.footer-link ul li:last-child {
    border-right: 0;
}

.footer-link ul li a {
    font-size: 1.2rem;
    color: #0051A2;
}

.footer-link ul li a:hover {
    color: #75baff;
}

address {
    color: #0051A2;
    text-align: center;
    font-style: normal;
    padding: 30px 0 20px;
    margin: 20px 0;
}

address a {
    font-size: 2rem;
    font-weight: bold;
    color: #0051A2;
}

address .footer-title {
    position: relative;
    display: inline-block;
    text-align: center;
    padding-left: 70px;
    margin-bottom: 10px;
}

address .footer-title:before {
    position: absolute;
    content: url(img/tmp/logo-w.svg);
    margin-left: -70px;
}

address a:hover {
    color: #82bcea;
}

.copyright {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    color: #0051A2;
    font-size: 1.2rem;
    padding: 10px;
    margin: 0 auto;
}

@media screen and (min-width: 1200px) {
    .top-txt div {
        font-size: 5.5rem;
    }
}

@media screen and (min-width: 1000px) {
    .topics-box {
        max-width: 600px;
        float: left;
        margin: 10px 30px 10px 0;
    }
}

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

@media screen and (max-width: 800px) {
    nav ul li a {
        font-size: 1.4rem;
    }
    .hi-icon {
        margin: 15px 10px;
    }
    .ach_img {
        text-align: center;
    }
    .ach_img .img-hover {
        width: 250px;
    }
    .ach_img .img-hover img {
        max-width: 250px;
        max-height: 187px;
    }
    .ach_img .youtube {
        width: 250px;
    }
    .ach_img .youtube iframe {
        max-width: 250px;
        height: 187px;
    }
    .side_area {
        padding: 0;
    }
    .waterjet {
        padding: 20px 0 60px;
    }
    .widget_archive {
        border-top: solid thin #eee;
    }
}

@media screen and (max-width: 600px) {
    #menu {
        display: none;
    }
    .slicknav_menu {
        display: block;
    }
    .sub-menu {
        background-color: #fff;
    }
    .sub-menu a {
        color: #0051a2;
    }
    .catch-txt {
        font-size: 2rem;
        padding: 30px 0;
        margin: 10px 0 30px;
    }
    .map {
        height: 300px;
    }
    .cd-fixed-bg {
        height: 200px;
        min-height: 100%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .cd-fixed-bg.cd-bg-1 {
        background-image: url("img/tmp/wj-01.jpg");
        background-size: 600px;
    }
    .cd-fixed-bg.cd-bg-2 {
        background-image: url("img/tmp/wj-02.jpg");
        background-size: 600px;
    }
    .cd-fixed-bg.cd-bg-3 {
        background-image: url("img/tmp/wj-03.jpg");
        background-size: 600px;
    }
    .footer-link ul {
        display: block;
        width: 100%;
        max-width: 650px;
        padding-left: 0;
        margin: 0 auto;
    }
    .footer-link ul li {
        display: block;
        text-align: center;
        padding: 0 10px;
        margin: 5px 0;
        border-right: none;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4 {
        font-size: 1.8rem;
    }
    .hi-icon {
        margin: 20px 45px;
    }
    .single h2 {
        font-size: 2.2rem;
    }
    .catch-txt {
        font-size: 1.5rem;
    }
    .company table th,
    .company table td {
        font-size: 1.2rem;
        padding: 10px;
    }
    .company table th {
        padding-left: 0;
    }
    .to-access {
        display: block;
        margin: 10px 20px 0;
    }
    .map {
        height: 250px;
    }
    .profile {
        padding: 20px 10px;
    }
    .profile img {
        width: 130px;
    }
    .cd-fixed-bg.cd-bg-1 {
        background-image: url("img/tmp/wj-01.jpg");
        background-size: 480px;
    }
    .cd-fixed-bg.cd-bg-2 {
        background-image: url("img/tmp/wj-02.jpg");
        background-size: 480px;
    }
    .cd-fixed-bg.cd-bg-3 {
        background-image: url("img/tmp/wj-03.jpg");
        background-size: 480px;
    }
    .pagetop a {
        right: 10px;
        bottom: 10px;
    }
}
