/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2019/08/08, 11:13:12
    Author     : thitinan
*/

body {
    color: #18344a;
    margin-top: 58px!important;
	height: calc(100% - 58px)!important;
}
	
.ndr-home main {
	overflow: hidden;
}

h1 {
	font-size: 3rem;
	font-weight: bold;
}

.h2, h2 {
/* 	margin-top: 1.5rem; */
	margin-bottom: 1.5rem;
	font-weight: bold;
	color: #3ab4f0;
}

.h2.white, h2.white {
	color: white;
}

.h3, h3 {
	margin-bottom: 1rem;
    font-size: 1.6rem;
	font-weight: bold;
}

.h3.blue, h3.blue {
    color: #3ab4f0;
}

.h3 a, h3 a {
	color: #034985;
}

.h3 a:hover, h3 a:hover {
	color: #034985;
	text-decoration: none;
}

.h4, h4 {
	font-size: 1.4rem;
	font-weight: bold;
}

.h4.blue, h4.blue {
    color: #3ab4f0;
}

.h5, h5 {
	font-weight: bold;
	color: #096384;
}

.ndr-navbar {
    z-index: 1000;
    width: 100%;
    height: 58px;
    position: fixed;
    background-color: white;
    top: 0;
}

.ndr-navbar ul li {
    padding: 16px 10px;
    font-size: 1rem;
}

.ndr-navbar ul ul {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: contrast(4) blur(20px);
    backdrop-filter: contrast(4) blur(20px);
}

.ndr-navbar ul ul li {
    padding: 8px 10px;
    font-size: 0.8rem;
}

.ndr-navbar ul ul li:hover {
/* 	background-color: #f5f5f5; */
}

.ndr-navbar ul ul li:hover a {
	color: #01a0ff;
}

.ndr-navbar ul li a {
    color: #0069a3;
    padding-top: 10px;
	padding-bottom: 10px;
    text-decoration: none;
    font-weight: normal;
}

.ndr-navbar ul li a:hover {
	color: #01a0ff;
}

.ndr-navbar .language {
	color: #18344a;
/* 	color: #0069a3; */
}

.ndr-menu {
    display: flex;
    list-style: none;
    height: 100%;
    padding-left: 10px;
}

.ndr-menu li {
    height: 100%;
    margin-bottom: 0;
}

.ndr-dropdown {
    position: relative;
    display: inline-block;
    z-index: 2000;
    height: 100%;
}

.ndr-dropdown .ndr-dropdownmenu {
    display: none;
    position: absolute;
    list-style: none;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    margin-top: 20px;
    transform: translateX(-50%);
    left: 50%;
    padding: 0px;
    text-align: center;
}

.ndr-dropdown .ndr-dropdownmenu::before {
	content: "";
    position: absolute;
    top: -10px;
    left: 0;
    height: 10px;
    width: 100%;
    background-color: transparent;
}

.ndr-dropdown.company .ndr-dropdownmenu {
    width: 160px;
}

.ndr-dropdown.company-en .ndr-dropdownmenu {
    width: 180px;
}

.ndr-dropdown.business .ndr-dropdownmenu {
    width: 200px;
}

.ndr-dropdown.business-en .ndr-dropdownmenu {
    width: 165px;
}

.ndr-dropdown.career-en .ndr-dropdownmenu {
    width: 180px;
}

.ndr-dropdown:hover .ndr-dropdownmenu {
    display: block;
}

.ndr-menu-button {
    position: relative;
    right: 4%;
    height: 20px;
    width: 24px;
    cursor: pointer;
    z-index: 110;
    transition: opacity .25s ease;
}

.ndr-menu-button:hover {
    opacity: .7;
}

.ndr-menu-button.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
}

.ndr-menu-button.active .middle {
    opacity: 0;
}

.ndr-menu-button.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
}

.ndr-menu-button .top,
.ndr-menu-button .middle,
.ndr-menu-button .bottom {
	background: #18344a;
}

.ndr-menu-button.active .top,
.ndr-menu-button.active .middle,
.ndr-menu-button.active .bottom {
	background: #18344a;
/* 	background: #0069a3; */
}

.ndr-menu-button span {
/*     background: #18344a; */
	background: #0069a3;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.ndr-menu-button span:nth-of-type(2) {
    top: 8px;
}

.ndr-menu-button span:nth-of-type(3) {
    top: 16px;
}

.ndr-overlay {
    position: fixed;
    background: white;
    top: 42px;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
}

.ndr-overlay.open {
    opacity: 1;
    visibility: visible;
/*    height: 100%;*/
    top: 42px;
    min-height: calc(100% - 42px);
    z-index: 100;
}

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

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

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

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

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

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

.ndr-overlay nav {
    position: relative;
    height: 100%;
/*    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
    font-size: 50px;
    /*font-family: 'Vollkorn', serif;*/
    font-weight: 400;
    text-align: center;
	overflow-x: hidden;
	overflow-y: scroll;
}

.ndr-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    /*height: 100%;*/
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.ndr-overlay ul li {
    display: block;
/*    height: 20%;
    height: calc(100% / 5);*/
    min-height: 50px;
    position: relative;
    opacity: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
/*    border-bottom: 1px solid;
    border-image: radial-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0)) 1;*/
}

.ndr-overlay .ndr-overlay-menu ul li a {
    display: block;
    position: relative;
    color: #18344a;
/* 	color: #0069a3; */
    text-decoration: none;
    overflow: hidden;
    font-weight: bold;
    padding-top: 0px;
    padding-bottom: 0px;
}

.ndr-overlay ul li a {
    font-size: 1.2rem;
}

.ndr-overlay ul li .collapse a,
.ndr-overlay ul li .collapsing a {
    font-size: 0.9rem;
    padding-top: 8px;
    padding-bottom: 7px;
/*     color: #007bff; */
	color: #0069a3;
}

.ndr-overlay ul li i,
.ndr-overlay ul li p {
/*     color: #007bff; */
	color: #0069a3;
}

.ndr-overlay-sub-menu {
	position: fixed;
    top: 58px;
    right: 0px;
}

.ndr-overlay-sub-menu ul {
	display: flex;
    list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

.ndr-overlay-sub-menu ul li {
/* 	padding-top: 9px;
	padding-bottom: 10px; */
	filter: drop-shadow(-1px 1px 1px rgba(0,0,0,.2));
}

.ndr-overlay-sub-menu ul li i {
	font-size: 1.1rem;
	margin-left: 5px;
    padding-right: 5px;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) a {
	color: #fff;
    font-weight: bold;
	text-decoration: none;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) .item {
	position: relative;
    padding: 10px 50px 9px 20px;
    background-size: 200% 200%;
    background-position: 0 100%;
    background-color: #3ab4f0;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) .item::before {
	position: absolute;
    top: 0;
    left: -34px;
    height: 100%;
    content: "";
    width: 35px;
    color: #18344a;
    /* background-color: #ffb33b; */
    background: #3ab4f0;
    background-size: 500% 200%;
    background-position: 0 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    /* clip-path: url(#ndr-overlay-sub-menu-clippath); */
    /* clip-path: url(#clippath); */
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) a:hover {
	color: black;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) a:hover .item {
	background-position: 100% 0;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) a:hover .item::before {
	background-position: 100% 0;
}

.ndr-overlay-sub-menu ul li:not(:nth-last-child(1)) a:hover .item::after {
	background-color: #ff791d;
}

.ndr-overlay-sub-menu ul li:nth-last-child(1) .item {
    position: relative;
    background-color: #3b3d53;
    margin: 0;
    padding: 10px 150px 15px 45px;
    z-index: 100;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-overlay-sub-menu ul li:nth-last-child(1) .item::before {
	position: absolute;
    top: 0;
    left: -34px;
    height: 101%;
    content: "";
    width: 35px;
    color: #18344a;
    background-color: #3b3d53;
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-overlay-sub-menu ul li:nth-last-child(1) a:hover .item,
.ndr-overlay-sub-menu ul li:nth-last-child(1) a:hover .item::before {
	background-color: #255271;
}

.ndr-overlay-sub-menu ul li:nth-last-child(1) a {
	color: white;
	text-decoration: none;
}

.ndr-block {
	position: relative;
    background-color: white;
    /*border-bottom: 1px solid black;*/
}

.ndr-block.no-color {
	background-color: unset;
}

.ndr-block.grey {
    background-color: #f8f8f8;
}

.ndr-block.black {
	color: white;
    background-color: #1e1e1e;
}

.ndr-block.light-blue {
    background-color: #d3e7ea;
}

.ndr-block.black.top-down-arrow:before {
    content: "";
    border: 2rem 0 2rem 0;
	border-left: 3rem solid #1e1e1e;
    border-right: 3rem solid #1e1e1e;
    border-top: 2rem solid white;
    left: 50%;
    top: 0;
	transform: translate(-50%, 0);
    height: 1rem;
    width: 1rem;
    position: absolute;
}

.ndr-block .block-header {
    position: relative;
    color: #fff;
    background-color: #3ab4f0;
    padding: 5px 25px 7px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    max-width: calc(100% - 10px);
}

.ndr-block .block-header:after {
    position: absolute;
    top: 0;
    right: -34px;
    height: 100%;
    content: "";
    width: 35px;
    color: #18344a;
    background-color: #3ab4f0;
    -webkit-clip-path: polygon(0% 0%, 0% 100%,100% 0%);
    clip-path: polygon(0% 0%, 0% 100%,100% 0%);
}

.ndr-block .block-header a {
	text-decoration: none;
    color: #fff;
}

.ndr-block .container .row:not(:first-child) {
	margin-top: 2.5rem;
}

.ndr-block.type-a ol {
    font-size: 1.2rem;
    padding-left: 25px;
}

.ndr-block.ndr-footer {
    color: #3b3d53;
    background: -moz-linear-gradient(45deg, rgba(52,181,236,0.59) 0%, rgba(163,224,219,0.59) 100%);
    background: -webkit-linear-gradient(45deg, rgba(52,181,236,0.59) 0%,rgba(163,224,219,0.59) 100%);
    background: linear-gradient(45deg, rgba(52,181,236,0.59) 0%,rgba(163,224,219,0.59) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9634b5ec', endColorstr='#96a3e0db',GradientType=1 );
}

.ndr-block.ndr-footer .block-tel {
    position: relative;
    color: white;
    /* color: #3b3d53; */
    background-color: #3ab4f0;
    margin: 0;
    padding: 5px 25px 7px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    /* max-width: calc(100% - 10px); */
    float: left;
}

.ndr-block.ndr-footer .block-tel:before {
    position: absolute;
    top: 0;
    left: -35px;
    height: 100%;
    content: "";
    width: 35px;
    color: #fff;
    background-color: #3ab4f0;
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}

.ndr-block .background {
	position: absolute;
	width: 100%;
	height: 100%;
}

.ndr-block .background figure {
	display: block;
	width: 100%;
	height: 100%;
}

.ndr-block .background img {
	opacity: 0.5;
	width: 100%;
	height: 100%;
}

.ndr-block .background.left img {
	object-position: left;
}

.ndr-block .background.right img {
	object-position: right;
}

.block-contact {
    position: relative;
    color: #fff;
    background: #a3e0db;
    background: -moz-linear-gradient(left, #a3e0db 1%, #34b5ec 100%);
    background: -webkit-linear-gradient(left, #a3e0db 1%,#34b5ec 100%);
    background: linear-gradient(to right, #a3e0db 1%,#34b5ec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3e0db', endColorstr='#34b5ec',GradientType=1 );
    margin: 0;
    padding: 5px 5px 9px 10px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 5px;
    float: left;
    z-index: 100;
    margin: 5px;
    margin-right: 10px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.block-contact:hover {
    color: #004e84;
}

.block-contact i {
    font-size: 1.7rem;
    padding-top: 5px;
}

.ndr-logo {
    margin-left: 10px;
    width: 100px;
}

.ndr-logo h1 {
    display: flex;
}

.ndr-breadcrumb {
	position: absolute;
	padding: 8px 16px;
	top: 58px;
	width: 100%;
/* 	z-index: 110; */
	background-color: rgba(0,0,0,0.1);
    color: white;
    font-size: 0.8rem;
}

.ndr-breadcrumb a {
    color: white;
}

.ndr-cover {
    position: relative;
    height: 350px;
    overflow: hidden;
	z-index: 100;
}

.ndr-cover.short {
    height: 270px;
}

.ndr-cover figure {
	height: 100%;
}

.ndr-cover img {
    object-fit: cover;
/* 	font-family: 'object-fit: cover;'; */
    width: 100%;
    height: 100%;
}

.ndr-cover.bg-brightness-090 img {
    filter: brightness(90%);
}

.ndr-cover .logo {
    position: absolute;
    top: 20px;
    right: 20px;
/*     width: 250px; */
	height: auto;
	z-index: 120;
}

.ndr-cover .logo img {
    width: 100%;
	height: auto;
	object-fit: scale-down;
/* 	font-family: 'object-fit:scale-down;'; */
}

.ndr-cover .wp-block-image img {
	object-fit: cover;
}

.ndr-cover .banner-item {
	position: absolute;
	top: 35px;
	right: 5%;
	height: calc(100% - 45px);
}

.ndr-cover .banner-item img {
	object-fit: contain;
    object-position: right;
}

.ndr-cover .title {
    position: absolute;
    top: 40%;
    /*bottom: 10%;*/
    left: 50%;
    width: calc(80% - 30px);
    /*transform: translate(-50%, 0%);*/
    transform: translate(-50%, -50%);
/*     text-align: center; */
/*     text-shadow: white 1px 1px 2px, white -1px 1px 2px, white 1px -1px 2px, white -1px -1px 2px; */
	color: white;
	text-shadow: black 1px 1px 2px;
	word-break: break-word;
}

.ndr-cover.short .title {
    top: 45%;
}

.ndr-cover.dark .title {
	color: white;
	text-shadow: black 1px 1px 2px;
}

.ndr-cover .title p {
	margin-top: 1rem;
    margin-bottom: 0;
	font-weight: bold;
}

.ndr-footer .link {
    margin-top: 10px;
    margin-left: 20px;
}

.ndr-footer .link a {
    color: #3b3d53;
}

.ndr-gallery {
    height: 300px;
}

.ndr-gallery .carousel-inner {
	overflow: visible;
}

.ndr-gallery .carousel-inner .carousel-item img {
    width: 100%;
	object-fit: scale-down;
}

.ndr-gallery .carousel-inner .carousel-item .right img {
    object-position: top right;
}

.ndr-gallery .carousel-inner .carousel-item .right-2 img {
	object-position: 80% 0;
}

.ndr-gallery .carousel-inner .carousel-item .logo {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 250px;
	z-index: 100;
}

.ndr-gallery .carousel-inner .carousel-item .logo.left {
    right: unset;
	top: 20px;
	left: 20px;
}

.ndr-gallery .carousel-inner .carousel-item .logo img {
    width: 100%;
	object-fit: scale-down;
/* 	font-family: 'object-fit:scale-down;'; */
}

.ndr-gallery .carousel-inner .carousel-item .background img {
	object-fit: cover;
	object-position: right top;
    width: 100%;
    height: auto;
}

.ndr-gallery .carousel-inner .carousel-item .decoration {
    position: absolute;
    height: 160%;
    width: 100%;
    overflow: hidden;
}

.ndr-gallery .carousel-inner .carousel-item .decoration {
	height: 140%;
}

.ndr-gallery .carousel-inner .carousel-item .decoration .image {
	width: 100%;
    height: 100%;
    top: 0;
    right: -330px;
    position: absolute;
    z-index: 0;
	overflow: hidden;
}

.ndr-gallery .carousel-inner .carousel-item .decoration .image.drop-shadow {
	-webkit-filter: drop-shadow(2px 2px 2px #486075);
 	filter: drop-shadow(2px 2px 2px #486075);
}

.ndr-gallery .carousel-inner .carousel-item .decoration .image figure,
.ndr-gallery .carousel-inner .carousel-item .decoration .image figure img {
	height: 100%;
}

.ndr-gallery .carousel-inner .carousel-item .decoration .image.right figure img {
	object-position: calc(100% - 330px) 0!important;
}

.ndr-gallery .carousel-control-next,
.ndr-gallery .carousel-control-prev {
	bottom: -100px;
}

.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233ab4f0' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.ndr-gallery-btn {
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    width: 100%;
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    text-shadow: none;
    padding: 5px 10px;
    background: #a3e0db;
    background: -moz-linear-gradient(left, #a3e0db 1%, #34b5ec 100%);
    background: -webkit-linear-gradient(left, #a3e0db 1%,#34b5ec 100%);
    background: linear-gradient(to right, #a3e0db 1%,#34b5ec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3e0db', endColorstr='#34b5ec',GradientType=1 );
}

.ndr-gallery-btn:hover {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    color: #3b3d53;
    text-decoration: none;
    border-radius: 5px;
}

.ndr-entrance,
.ndr-entrance figure,
figure.ndr-entrance {
	width: 100%;
    height: 100%;
	margin-bottom: 0;
}

.ndr-entrance figure img,
figure.ndr-entrance img {
	width: 100%;
    height: 100%;
    object-fit: cover;
/* 	font-family: 'object-fit:cover;'; */
}

.ndr-entrance figure img,
.ndr-entrance.left figure img,
figure.ndr-entrance img,
figure.ndr-entrance.left img {
/* 	mask-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.7) 85%, rgba(255,255,255,0) 100%);
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.7) 85%, rgba(255,255,255,0) 100%); */
}

.ndr-entrance.right figure img,
figure.ndr-entrance.right img{
/* 	mask-image: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.7) 85%, rgba(255,255,255,0) 100%);
    -webkit-mask-image: -webkit-linear-gradient(right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.7) 85%, rgba(255,255,255,0) 100%); */
}

.ndr-entrance figure img,
.ndr-entrance.focus-left figure img,
figure.ndr-entrance img,
figure.ndr-entrance.focus-left img {
	object-position: 0 0;
}

.ndr-entrance.focus-right figure img,
figure.ndr-entrance.focus-right img{
	object-position: 100% 0;
}

.ndr-access-map {
	height: 500px;
}

.ndr-bluebox {
	border: 0.125rem solid #35c3e9;
   border-radius: 1rem;
	margin: 0 0.5rem 1rem;
   padding: 0;
	overflow: hidden;
	-webkit-transition: 0.25s ease-out;
	-moz-transition: 0.25s ease-out;
	-ms-transition: 0.25s ease-out;
	-o-transition: 0.25s ease-out;
}

.ndr-bluebox:hover {
	border-color: #baa3ed;
}

.ndr-bluebox::before {
	content: '';
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 max(45px, 4rem) max(45px, 4rem);
	border-color: transparent transparent #36c3e9 transparent;
	z-index: 1000;
	-webkit-transition: 0.25s ease-out;
	-moz-transition: 0.25s ease-out;
	-ms-transition: 0.25s ease-out;
	-o-transition: 0.25s ease-out;
}

.ndr-bluebox:hover::before {
	border-bottom-color: #baa3ed;
}

.ndr-bluebox::after {
	content: '詳細';
	position: absolute;
	bottom: 0.35rem;
	right: 0.25rem;
	color: white;
	font-size: 1rem;
	z-index: 1001;
}

.ndr-bluebox p {
	position: absolute;
	margin-bottom: 0;
	padding-top: 0.35rem;
	width: 100%;
	text-align: center;
	font-size: 1rem;
	font-weight: normal;
	color: #35c3e9;
	-webkit-transition: 0.25s ease-out;
	-moz-transition: 0.25s ease-out;
	-ms-transition: 0.25s ease-out;
	-o-transition: 0.25s ease-out;
}

.ndr-bluebox:hover p {
	color: #baa3ed;
}

.ndr-bluebox figure {
	padding: 1.55rem;
}

.ndr-bluebox figure img {
	width: 115px!important;
	height: 100%;
}

.ndr-work .head {
	border-left: 0.5rem solid #f6cf6e;
}

.ndr-work .head h3 {
	color: #3ab4f0;
}

.ndr-work .head p {
	font-size: 0.9rem;
}

.ndr-work .item {
    margin-bottom: 20px;
	height: 400px;
}

.ndr-work .icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-top: 10px;
}

.ndr-work .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid black;
    background-color: white;
}

.ndr-work .description {
    margin: 0px 20px;
    flex: 1;
}

.ndr-work .description .title {
    font-size: 1.2rem;
    font-weight: bold;
}

.ndr-work .description .subtitle {
    font-size: 0.8rem;
}

.ndr-work .card {
    padding-left: 0;
    padding-right: 0;
    border-color: black;
	z-index: 1;
}

.ndr-work .card .card-img-top img {
	width: 100%;
    height: 200px;
    object-fit: cover;
/* 	font-family: 'object-fit:cover;'; */
}

.ndr-work .card .ndr-card-header {
    position: absolute;
    color: #32b5eb;
    background-color: #fffcfc;
    right: 0;
    padding: 5px 15px 7px 5px;
    font-weight: bold;
    max-width: 90%;
    text-align: right;
    z-index: 100;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.ndr-work .card .ndr-card-header::before {
    position: absolute;
    top: -0.5px;
    left: -34.5px;
    height: 100%;
    content: "";
    width: 35px;
    color: #18344a;
    background-color: #fffcfc;
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-work .card .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.ndr-work .card .card-text {
    margin-bottom: 36px;
}

.ndr-news ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da\00a0";
}

.ndr-news-event {
    background-color: #FCFAFA;
    color: #18344a;
}

.ndr-news-event .item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ndr-news-event .item .date-icon {
    border-right: 1px solid #3ab4f0;
}

.ndr-news-event .item .date {
    text-align: right;
    padding-right: 5px;
    font-weight: bold;
    word-break: keep-all;
}

.ndr-news-event .item .icon {
    text-align: right;
    margin-top: 5px;
    margin-right: 5px;
    padding: 3px 5px 3px 5px;
    background-color: #3ab4f0;
    font-size: 0.7rem;
    display: inline-block;
    float: right;
    color: #fff;
    font-weight: bold;
}

.ndr-news-event .item .title-description a {
    color: #3b3d53;
    text-decoration: none;
}

.ndr-news-event .item .title-description a:hover {
    text-decoration: none;
}

.ndr-news-event .item .title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #3b3d53;
}

.ndr-news-event .item .description {
    font-size: 0.8rem;
}

.ndr-global ul li {
	margin-top: 0.5rem;
}

.ndr-global ul ul li {
	margin-top: unset;
}

.ndr-table {
	margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.ndr-table.recruit {
	padding-top: 0;
	padding-bottom: 0;
}

.ndr-table p {
	margin-bottom: 0;
	padding-top: 5px;
	padding-bottom: 5px;
    text-align: center;
    background-color: #096384;
	border-radius: 10px 10px 0 0;
	color: white;
}

.ndr-table table {
	font-size: 0.8rem;
	border: 0;
}

.ndr-table.recruit table {
	table-layout: auto;
}

.ndr-table.business table tr,
.ndr-table.company table tr,
.ndr-table.recruit table tr {
	vertical-align: top;
	border-bottom: 1px solid #096384;
}

.ndr-table.company table tr {
	border-bottom: none;
}

.ndr-table.company table th,
.ndr-table.company table td:first-child,
.ndr-table.business table th,
.ndr-table.business table td:first-child,
.ndr-table.business.header-short table th,
.ndr-table.business.header-short table td:first-child,
.ndr-table.business.header-shorter table th,
.ndr-table.business.header-shorter table td:first-child {
	width: 120px;
}

.ndr-table.business.header-long table th,
.ndr-table.business.header-long table td:first-child {
	width: 230px;
}

.ndr-table.company table th,
.ndr-table.company table td,
.ndr-table.recruit table th,
.ndr-table.recruit table td,
.ndr-table.business table th,
.ndr-table.business table td {
	padding: 1rem 0.5rem 1rem 1rem;
/* 	word-break: keep-all; */
}

.ndr-table.board-solution {
	text-align: center;
}

.ndr-table.board-solution tbody tr,
.ndr-table.board-solution tbody td {
	border-top: none;
	border-bottom: none;
	text-align: center;
}

.ndr-table.board-solution .column-1 {
	min-width: 80px;
	border-right: 0.5rem solid white;
}

.ndr-table.board-solution tr.row-1 .column-1,
.ndr-table.board-solution tr.row-2 .column-1,
.ndr-table.board-solution tr:last-child .column-1 {
	border-bottom: 1px solid rgb(59, 61, 83);
}

.ndr-table.board-solution tr.row-2 td {
	border-top: none;
	background-color: rgb(246, 246, 246);
	font-weight: bold;
	font-size: 1rem;
	color: rgb(50, 181, 235);
}

.ndr-table.board-solution tr.row-3 .column-1 {
	border-bottom: 2px solid rgb(50, 181, 235);
}

.ndr-table.board-solution tr:not(.row-1) .column-1 {
	background-color: rgb(59, 61, 83);
	color: rgb(50, 181, 235);
	font-weight: bold;
}

.ndr-table.board-solution tr:not(.row-1):not(.row-2):not(:last-child) .column-1 {
	border-bottom: 2px solid rgb(50, 181, 235);
}

.ndr-table.board-solution tr:not(.row-1):not(.row-2):not(:last-child) td:not(.column-1) {
	border-bottom: 2px solid rgb(59, 61, 83);
}

.ndr-table.board-solution .row-1 td {
	vertical-align: middle;
}

.ndr-table.achievement table {
	font-size: 1rem;
}

.ndr-table.achievement table tr th {
	color: white;
	background-color: rgb(59, 61, 83);
}

.ndr-table.achievement table tr th:not(:first-child) {
	border-left: 2px solid rgb(50, 181, 235);
}

.ndr-table.achievement table tr td:not(:first-child) {
	border-left: 2px solid rgb(59, 61, 83);
}

.ndr-table.achievement table tr th,
.ndr-table.achievement table tr td {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.table table {
	border: none;
}

.table.left-bold table tr td:first-child {
	font-weight: bold;
	color: #3ab4f0;
}

.table.no-border table tr,
.table.no-border table tr td {
	border: none;
}

.ndr-button-outline-orange {
    color: #ff9c00;
    border-color: #ff9c00;
}

.ndr-button-outline-orange:hover {
    background-color: #ff9c00;
    border-color: #ff9c00;
}

.ndr-button-outline-orange-inverse {
    color: white;
    background-color: #ff9c00;
    border-color: #ff9c00;
}

.ndr-button-outline-orange-inverse:hover,
.ndr-button-outline-orange-inverse:active,
.ndr-button-outline-orange-inverse:not(:disabled):not(.disabled):active{
    color: #ff9c00;
    background-color: transparent;
    border-color: #ff9c00;
}

.ndr-button-outline-blue-inverse {
    color: white!important;
    background-color: #32b5eb!important;
    border-color: #32b5eb!important;
}

.ndr-button-outline-blue-inverse:hover,
.ndr-button-outline-blue-inverse:active,
.ndr-button-outline-blue-inverse:not(:disabled):not(.disabled):active{
	color: #32b5eb!important;
    background-color: white!important;
    border-color: #32b5eb!important;
}

.ndr-button-outline-navy {
    color: #18344a;
    border-color: #18344a;
}

.ndr-button-outline-navy:hover {
    background-color: #18344a;
    border-color: #18344a;
}

.ndr-button-outline-navy-inverse {
    color: white;
    background-color: #18344a;
    border-color: #18344a;
}

.ndr-button-outline-navy-inverse:hover {
    color: #18344a;
    background-color: transparent;
    border-color: #18344a;
}

.ndr-5-col .col-1 {
    width: 20%;
    max-width: 20% !important;
    flex: none !important;
    padding-left: 0px;
    padding-right: 0px;
}

.ndr-text-size-12 {
    font-size: 1.2rem;
}

.ndr-text-size-15 {
    font-size: 1.5rem;
}

.ndr-shadow {
	filter: drop-shadow(1px 2px 2px #4e585f);
}

.ndr-detail-link-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: right;
}

.card .card-body .btn {
    padding-top: 3px;
    padding-bottom: 3px;
}

/* TABLE and ANCHOR FROM V2 */
.anchor {
	display: block;
	height: 68px;
	margin-top: -68px;
	visibility: hidden;
}

.anchor-before:before {
	content: '';
	display: block;
	height: 108px;
	margin-top: -108px;
	visibility: hidden;
}

table {
	width: 100%;
	border: 1px solid black;
	border-collapse: collapse;
	table-layout: fixed;
}

table.custom_posts tbody th,
table.custom_posts tbody td {
	word-break: break-word;
    overflow-wrap: break-word;
}

table.custom_posts {
	border: 0;
	background: none;
}

table.custom_posts tbody th,
table.custom_posts tbody td:first-child{
	border: 0;
	border-right: 1px solid black;
	padding: 9px;
	width: 165px;
	background: none;
    color: black;
	text-align: right;
    vertical-align: top;
	font-weight: normal;
}

table.custom_posts tbody td {
	padding: 9px;
	border: 0;
	border-collapse: collapse;
}

table.product.specification thead th {
    border: 1px solid black;
    border-collapse: collapse;
    width: 100px;
    padding: 9px;
    text-align: center;
    vertical-align: top;
	background-color: #495d98;
	color: white;
}

table.product.specification tbody th {
    border-collapse: collapse;
    font-size: 0.9375rem;
	padding: 9px;
	border: 1px solid black;
	text-align: center;
	font-weight: normal;
	width: 100px;
	vertical-align: middle;
}

table.product.specification tbody td {
	border-collapse: collapse;
	font-size: 0.9375rem;
	padding: 9px;
	border: 1px solid black;
}

table.product.specification tfoot tr {
	height: 50px;
}

table.product.specification tfoot td {
	padding-left: 10px;
}

/* Show Case from V.2 */
.ndr-background-color-445f6e {
    background-color: #445f6e;
}

.ndr-background-color-828b92 {
    background-color: #828b92;
}

.ndr-background-color-acbac5 {
    background-color: #acbac5;
}

.ndr-showcase h2 {
    color: white;
    background: rgb(9, 99, 132);
    background: -moz-linear-gradient(left, rgb(9, 99, 132) 1%, rgba(110,160,178,1) 45%, rgba(255,255,255,1) 99%);
    background: -webkit-linear-gradient(left, rgb(9, 99, 132) 1%,rgba(110,160,178,1) 45%,rgba(255,255,255,1) 99%);
    background: linear-gradient(to right, rgb(9, 99, 132) 1%,rgba(110,160,178,1) 45%,rgba(255,255,255,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#445f6e', endColorstr='#ffffff',GradientType=1 );
	text-shadow: 1px 1px 3px #096384;
}

.ndr-showcase .outline {
	font-size: 0.9rem;
    border-left: 5px solid #096384;
    padding-left: 25px;
	word-break: break-all;
}

.ndr-showcase .category {
	margin: 10px 0;
}

.ndr-showcase .title {
	font-size: 0.8rem;
	font-weight: bold;
}

.ndr-showcase .list {
	font-size: 0.8rem;
	word-break: keep-all;
}

.ndr-showcase-category {
	overflow: hidden;
}

.ndr-showcase-category .block {
	overflow: hidden;
    border-color: #096384;
    border: 1px solid #096384;
	border-radius: 0.5rem;
}

.ndr-showcase-category a {
	text-decoration: none;
	color: #096384;
}

.ndr-showcase-category .title {
	padding: 10px 15px;
	color: white;
	font-weight: bold;
	background-color: #096384;
}

.ndr-showcase-category ul {
	list-style-type: none;
	padding: 10px 0px;
	padding-left: 15px;
	font-size: 0.9rem;
	font-weight: bold;
}

.ndr-showcase-category ul ul {
	list-style-type: none;
	padding: 5px 5px;
/* 	font-size: 0.8rem; */
	font-weight: normal;
}

.ndr-showcase-category ul ul li a:before {
	content: "\f0da\00a0";
    font-family: "Font Awesome 5 Free";
	font-weight: 600;
	margin-right: 5px;
}

.ndr-showcase-keyword-button {
	background-color: #ff9c00;
	font-size: 0.8rem;
    font-weight: bold;
	-webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.ndr-showcase-keyword-button:hover {
    background-color: #ffca35;
}

.ndr-work-gallery .slick-slide:focus {
    outline: unset;
}

.ndr-work-gallery .wp-block-image img {
	height: auto;
}

.ndr-work-gallery-nav .wp-block-image img {
    border: 2px solid white;
	height: auto;
}

.ndr-work-gallery-nav .slick-current .wp-block-image img {
	border: 2px solid black;
}

.ndr-work-gallery-nav .wp-block-image img {
    object-fit: contain;
}

.ndr-work-gallery-nav .slick-slide:focus {
    outline: unset;
}

/* Override Bootstrap */
.ndr-gallery .carousel-caption {
    text-align: left;
    top: 40px;
    width: 45%;
    left: 5%;
    color: #3b3d53;
    /* text-shadow: black 0px 0px 10px; */
}

.ndr-gallery .carousel-caption h2 {
    font-size: 2.0rem;
    color: #32b5eb;
}

.ndr-gallery .carousel-caption p {
    font-size: 1.4rem;
}

.ndr-gallery .carousel-indicators {
    /* margin-bottom: 0px; */
	
	position: absolute;
	margin-bottom: 0.25rem;
    right: 0;
    bottom: -130px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-left: 4%;
    list-style: none;
	justify-content: unset;
}

.ndr-gallery .carousel-indicators li {
    background-color: transparent;
}

.ndr-gallery .carousel-indicators li, .gallery-item li.active{
/*     width: 192px;
    height: 80px; */
    width: 128px;
    height: 64px;
    position: relative;
    margin: 10px;
}

.ndr-gallery .carousel-indicators img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
/* 	font-family: 'object-fit:cover;'; */
    object-position: right;
    border: 0.125rem solid rgba(58, 180, 240, 0.2);
    border-radius: 5px;
}

.ndr-gallery .carousel-indicators .active img {
	border: 0.25rem solid rgba(58, 180, 240, 1);
}

.ndr-gallery .carousel-control-next,
.ndr-gallery .carousel-control-prev {
	opacity: 0.85;
    width: 5%;
}

.ndr-gallery .carousel-control-next:hover,
.ndr-gallery .carousel-control-prev:hover {
	opacity: 1;
}

.ndr-development-category {
	max-width: 950px;
}

.ndr-development-category .item .frame {
	position: relative;
	text-align: center;
	padding: 0;
	border-radius:50%; 
	overflow:hidden; 
}

.ndr-development-category .item .frame a:before{  
	content: '';
	display: inline-block;
	height: 48%;
}

.ndr-development-category .item .frame a {
	transition: all 0.7s ease-out;
	background: rgba(88, 88, 88, 0.7);
	border-radius: 50%; vertical-align:middle;
	padding: 5%; 
	color: #FFFFFF;
	position: absolute;
	font-size: 1.1rem; 
	font-weight: 700; 
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
}

.ndr-development-category .item .frame.active a,
.ndr-development-category .item .frame a:hover {
	background: none;
	border: none; 
	opacity:0;
}

.ndr-development-category .item .frame img {width:100%; height:auto; display:block}

/*Columns*/
.ndr-development-category .item {
	position: relative;
	padding: 10px;
	float: left;
	min-height: 1px;
	height: auto !important;
	width: 20%;
}

.ndr-development-category .item .frame .title {
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
}

.ndr-development-category .item .title.under {
	font-size: 0.8rem;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
}

.ndr-product-video {
    margin: 2rem 0;
	width: 560px;
}

.ndr-product-video .frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

.ndr-product-video .frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border: 2px solid black;
}

.ndr-right-arrow {
	position: relative;
}

.ndr-right-arrow:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 40%;
	right: -1.25rem;
    border-style: solid;
    border-width: 1rem 0 1rem 1.25rem;
    border-color: transparent transparent transparent #3b3738;
}

.ndr-totop-button {
	display: none;
	position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    color: #18344a;
    width: 50px;
    height: 50px;
	filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
    -moz-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.ndr-totop-button img {
    width: 100%;
}

/* Animation Start */
/* div:not(.ndr-cover):not(.ndr-gallery):not(.carousel-item):not(.logo) > .wp-block-image, .card .wp-block-image, .wp-block-columns,
div:not(.ndr-cover):not(.ndr-gallery) div:not(.ndr-cover):not(.ndr-gallery):not(.carousel-caption):has(> h2),div:has(> h3), div:has(> h5),
div:not(.ndr-cover):not(.ndr-gallery) div:not(.ndr-cover):not(.ndr-gallery):not(.carousel-caption):has(> p) {
	visibility: hidden;

    -webkit-animation-play-state: paused;   
    -moz-animation-play-state: paused;     
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;   
    animation-play-state: paused; 
} */

/*
 * 2 woocommerce/myaccount/form-login.php,
 */
/*li.product.type-product,*/
/* .animate,
.woocommerce-MyAccount-content,
.ndr-card-header,
.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce div.product .woocommerce-tabs .panel,
.wp-block-columns,
.ndr-text,
.ndr-table,
div.wp-block-image, div.cart_totals,
a.btn:not(.no-animate), button:not(.no-animate) {
	visibility: hidden;

    -webkit-animation-play-state: paused;   
    -moz-animation-play-state: paused;     
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;   
    animation-play-state: paused; 
}

.animate.animate-in,
.animate-in,
.woocommerce ul.products li.product.animate-in,
.woocommerce div.product div.summary.animate-in,
.woocommerce div.product .woocommerce-tabs .panel.animate-in,
.wp-block-columns.animate-in,
.ndr-table.animate-in,
li.product.type-product.animate-in,
div.wp-block-image.animate-in, div.cart_totals.animate-in,
a.btn.animate-in, button.animate-in {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
} */

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }	100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Animation Start */

/*
.wp-block-column {
	margin: 0;
}

.wp-block-column:not(:first-child) {
	margin-left: 0;
}
*/

.wp-block-image,
.wp-block-gallery {
	margin: 0;
}

.wp-block-image figure {
	margin-bottom: 0;
}

.wp-block-column .wp-block-image img {
	object-fit: contain;
	height: auto;
}

.wp-block-column .wp-block-image.full img {
	object-fit: cover;
	height: 100%;
}

.wp-block-image.fix-size img {
	object-fit: cover;
}

.wp-block-image img {
	object-fit: contain;
/* 	font-family: 'object-fit: cover;'; */
}

.wp-block-gallery .blocks-gallery-item {
	margin-bottom: 0;
}

figure.w-100 img {
	width: 100%;
}

.btn.focus, .btn:focus,
.btn-outline-dark.focus,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0 black;
}

.btn.btn-anchor {
	color: #1169d3;
	border-color: #1169d3;
	padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn.btn-anchor:after {
	content: "\f105";
	color: #1169d3;
    font-family: "Font Awesome 5 Free";
	font-weight: bold;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translatey(-50%);
}

.btn.btn-anchor:hover {
	color: white;
	background-color: #1169d3;
}

.btn.btn-anchor:hover:after {
	color: white;
}

a:focus,
a img:focus,
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

a p {
	font-weight: bold;
	color: #373d79;
}

p.has-background {
	padding: 20px 30px;
}

img {
	image-rendering: -webkit-optimize-contrast;
}

.blue-border {
	border: 3px solid cornflowerblue;
    border-radius: 20px;
}

.container-fluid {
	width: 80%;
}

ol.circle-number {
	list-style: none;
	counter-reset: li;
}

ol.circle-number li {
	position: relative;
	margin-bottom: 0.5rem;
}

ol.circle-number li::before {
	content: counter(li);
    counter-increment: li;
    height: 1rem;
    width: 1rem;
    border: 1px solid black;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: 100%;
    margin-right: 0.5rem;
    box-sizing: content-box;
    font-size: 0.7rem;
	font-weight: bold;
    display: inline-block;
    padding: 0.125rem;
}

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

@media (max-width: 781px) and (min-width: 600px) {
	/* Fix for kaishagaiyou page */
	.wp-block-columns.has-2-columns.row .wp-block-column,
	.wp-block-columns.row .wp-block-column　{
		flex-basis: unset!important;
    	flex-grow: unset!important;
	}
}

@media (min-width: 576px) and (max-width: 767.98px)  {
    /* Override Bootstrap */
    .ndr-gallery .carousel-caption {
/*         background-color: rgba(255,255,255,0.3); */
        text-align: left;
        top: auto;
        /* top: 55%; */
        width: 100%;
        left: 0%;
        padding-left: 5%;
        padding-right: 5%;
        /* height: 40%; */
        padding-bottom: 45px;
        bottom: 0;
		transform: unset;
    }
    
    .ndr-gallery .carousel-caption h2 {
        font-size: 1.4rem;
    }
    
    .ndr-gallery .carousel-caption p {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .block-contact {
        padding: 12px 20px 7px 25px;
        font-size: 1.2rem;
    }
    
    .block-contact i {
        font-size: 1.5rem;
    }
    
    .ndr-logo {
        margin-left: 20px;
        width: 120px;
    }
    
    .ndr-gallery .carousel-caption {
        width: 65%;
    }
    
    .ndr-gallery .carousel-control-next, .carousel-control-prev {
        width: 5%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .ndr-logo {
        margin-left: 20px;
        width: 120px;
    }
    
    .ndr-gallery .carousel-indicators li, .gallery-item li.active{
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .ndr-logo {
        margin-left: 20px;
        width: 120px;
    }
    
    .ndr-gallery .carousel-indicators li, .gallery-item li.active{
        opacity: 1;
    }
    
    .ndr-gallery .carousel-control-next,
    .ndr-gallery .carousel-control-prev {
        width: 5%;
    }
}

@media (max-width: 1399.98px) {
	.ndr-cover .title {
		width: calc(100% - 30px);
	}
	
	.container-fluid {
		width: unset;
	}
	
	.ndr-gallery .carousel-inner .carousel-item .decoration.small {
		height: 120%;
	}
}

@media (max-width: 1199.98px) {
    .ndr-gallery .carousel-inner .carousel-item .logo {
        width: 160px;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration {
        height: 110%;
    }
	
	.ndr-gallery .carousel-inner .carousel-item .decoration.small {
		height: 100%;
	}

    .ndr-gallery .carousel-inner .carousel-item .decoration .image {
        right: -200px;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image.right figure img {
        object-position: calc(100% - 199px) 0!important;
    }
}

@media (max-width:991.98px) {
	body {
        margin-top: 42px!important;
		height: calc(100% - 42px)!important;
    }
	
	.ndr-cover .banner-item {
		right: 0px;
	}

	.anchor {
		height: 52px;
		margin-top: -52px;
	}

	.ndr-navbar {
        height: 42px;
    }
	
	.ndr-breadcrumb {
		top: 42px;
	}
	
	/* .ndr-gallery .carousel-inner .carousel-item .logo {
		top: 20px;
    } */

    .ndr-gallery {
		height: calc(80vh - 42px);
	}

    .ndr-gallery .carousel-inner .carousel-item .logo {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 180px;
    }
	
	.ndr-gallery .carousel-inner .carousel-item .logo.left {
		top: 10px;
	}

    .ndr-gallery .carousel-inner .carousel-item .background,
    .ndr-gallery .carousel-inner .carousel-item .background img {
        height: 100%;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration {
        height: 100%;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image {
        width: 118%;
		top: -10%;
		right: 0;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image.boards {
        width: 100%;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image.right {
		top: 5%;
	}
	
	.ndr-gallery .carousel-inner .carousel-item .decoration .image.right figure img {
		object-position: calc(100% - 3px) 0!important;
	}
	
	.ndr-gallery .carousel-control-next,
    .ndr-gallery .carousel-control-prev {
		bottom: 0px;
	}

    /* Override Bootstrap */
    .ndr-gallery .carousel-caption {
        background-color: rgba(255,255,255,0.3);
        text-align: left;
        top: auto;
        /* top: 55%; */
        width: 100%;
        left: 0%;
        padding-left: 5%;
        padding-right: 5%;
        /* height: 40%; */
        padding-bottom: 45px;
        bottom: 0;
    }
    
    .ndr-gallery .carousel-caption h2 {
        font-size: 1.4rem;
    }
    
    .ndr-gallery .carousel-caption p {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
	
	.ndr-gallery .carousel-indicators {
		bottom: -45px;
		margin: 0 0;
		justify-content: center;
	}

    .ndr-gallery .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: black;
    }
	
	.ndr-entrance figure img,
	.ndr-entrance.left figure img,
	figure.ndr-entrance img,
	figure.ndr-entrance.left img,
	.ndr-entrance.right figure img,
	figure.ndr-entrance.right img{
		mask-image: unset;
		-webkit-mask-image: unset;
	}

	.ndr-development-category .item .frame a {
		font-size: 0.8rem;
	}
	
	.wp-block-column .wp-block-image.full img {
		height: auto;
	}
}

@media (max-width:767.98px) {
	.ndr-cover.short {
		height: 160px;
	}
	
	.ndr-cover.short .title {
		top: 55%;
	}
	
	.ndr-cover .banner-item {
		position: absolute;
		top: 0px;
		height: 100%;
		width: 100%;
		opacity: 45%;
	}
	
	.ndr-cover .banner-item img {
		object-fit: contain;
	}
	
	.ndr-cover img {
		object-fit: cover;
		object-position: right;
	}
	
	.ndr-cover .wp-block-image.fix-size img {
		height: 100%;
	}
	
	.ndr-cover .title {
		top: 50%;
	}
	
	.ndr-work .item {
		height: auto;
	}
	
	.ndr-product-video {
		margin: 0;
		width: 100%;
	}
	
	table.custom_posts tbody th {
		width: 72px;
	}
	
	div:not(.ndr-cover) .wp-block-image img {
		width: auto;
		height: auto;
	}
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .ndr-logo {
        width: 80px;
    }

    .ndr-gallery {
		height: calc(80vh - 42px);
    }
	
	.ndr-gallery .background {
		height: 120%;
	}

    .ndr-gallery .carousel-inner .carousel-item .decoration .image {
        width: 140%;
		height: 100%;
		top: -9%;
		right: -10%;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image.boards {
		right: 0%;
    }

    .ndr-gallery .carousel-inner .carousel-item .decoration .image.right {
		top: 3%;
	}
	
	.ndr-access-map {
		height: 300px;
	}

    .ndr-block .block-header,
    .ndr-footer.ndr-block .block-tel {
        font-size: 1.4rem;
    }

    .ndr-footer .link {
        font-size: 0.8rem;
        word-break: keep-all;
    }

    .ndr-footer .copyright {
        font-size: 0.8rem;
    }
    
    /* Override Bootstrap */
    .ndr-gallery .carousel-indicators li, .gallery-item li.active {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .ndr-gallery .carousel-caption {
        /* background-color: rgba(0,0,0,0.3); */
        text-align: left;
        top: auto;
        /* top: 55%; */
        width: 100%;
        left: 0%;
        padding-left: 5%;
        padding-right: 5%;
        /* height: 40%; */
/*         padding-bottom: 45px; */
		padding-bottom: 10px;
        bottom: 0;
    }
    
    .ndr-gallery .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .ndr-gallery .carousel-caption p {
/*         margin-bottom: 5px; */
		margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .ndr-gallery .carousel-control-next-icon {
        margin-right: 5px;
        margin-left: auto;
    }
    
    .ndr-gallery .carousel-control-prev-icon {
        margin-right: auto;
        margin-left: 5px;
    }
	
	.ndr-development-category .item {
		width: 25%;
		margin-left: 5%;
		padding: 5px;
	}

	.ndr-development-category .item .title.under {
		font-size: 0.5rem;
		padding-top: 5px;
	}
	
	.ndr-table.business.header-long table th,
	.ndr-table.business.header-long table td:first-child {
		width: 120px;
	}
	
	.ndr-table.business.header-shorter table th,
	.ndr-table.business.header-shorter table td:first-child {
		width: 85px;
	}
	
	.ndr-table.company table th,
	.ndr-table.company table td:first-child {
		width: 80px;
	}
		
	.ndr-bluebox figure img {
		width: 150px!important;
	}
	
	.ndr-right-arrow {
		margin-bottom: 2rem;
	}
	
	.ndr-right-arrow:after {
		top: 100%;
		right: 50%;
		border-width: 1.25rem 1rem 0;
		border-color: #3b3738 transparent transparent;
	}
	
}

@media (max-width: 575.98px) and (orientation: landscape) {
	.ndr-gallery {
        height: calc(100vh - 42px);
    }
}

@media (orientation: landscape) {
	.ndr-overlay ul {
		top: 0;
		transform: translateY(0);
	}
}

/* Fix for WP Block Columns/Row */
@media (max-width: 599px) {
	.wp-block-columns.row .wp-block-column {
		flex-basis: unset!important;
	}
}
