/*-----------------------------------------------------------------------------------
	    iso-station-project-02
        Built with Blocs
-----------------------------------------------------------------------------------*/
 
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow:hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent ugly blue glow on chrome and safari */
a:hover{text-decoration: none; cursor:pointer;}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 50px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
}


/* Sizes */

.bloc-xxl{
	padding:200px 50px;
}
.bloc-lg{
	padding:100px 50px;
}
.bloc-md{
	padding:50px;
}
.bloc-sm{
	padding:20px 50px;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-b-edge{
	background: bottom no-repeat;
}
.bg-br-edge{
	background: bottom right no-repeat;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = NavBar
-------------------------------------------------------------- */

.hero .hero-nav{
	padding-left:inherit;
	padding-right:inherit;
}
/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* Thick Bars Menu Icon */
.navbar-light .menu-icon-thick-bars .navbar-toggler-icon{
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='5' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .menu-icon-thick-bars .navbar-toggler-icon{
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='5' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .show .dropdown-menu{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: fixed;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}

/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
.navbar-toggle.menu-icon-thick-bars{
	margin-top:4px!important;
}
/* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link {
	color: rgb(64, 64, 64);
}
.btco-menu li > a {
	padding: 10px 15px;
	color: #000;
}
.btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{
	background: transparent;
	outline: 0;
}
.dropdown-menu .show > .dropdown-toggle::after{
	transform: rotate(-90deg);
}

/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}


/*  Rounded Image */
.img-rd-md{
	border-radius:20px;
}
.img-rd-lg{
	border-radius:34px;
}



.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}



/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* ScrollToTop button */

.scrollToTop{
	width:40px;
	height:40px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity: 0;
	z-index: 500;
	transition: all .3s ease-in-out;
}
.scrollToTop span{
	margin-top: 6px;
}
.showScrollTop{
	font-size: 14px;
	opacity: 1;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Noto Sans JP";
	font-weight:500;
}
.container{
	max-width:1140px;
}
.gnav-tel{
	font-family:"Cinzel";
	color:#AD794A!important;
	font-size:28px;
	margin-top:50px;
}
.gnav-size{
	background-color:#FEFFFE;
	font-size:14px;
	color:#029DFF!important;
	text-align:center;
	margin-left:20px;
	width:200px;
	border-style:solid;
	border-color:#049DFF!important;
	border-radius:20px 20px 20px 20px;
	border-width:3px 3px 3px 3px;
}
.gnav-yuinou{
	color:#C1262D!important;
	box-shadow:0px 0px 0px #C1262C;
	border-style:solid;
	border-color:#C1262C!important;
	margin-top:15px;
	margin-left:15px;
	border-width:0px 0px 1px 0px;
}
.gnav-kousiki{
	color:#AC7949!important;
	text-shadow:0px 0px 0px #000000;
	box-shadow:0px 0px 0px #AB7949;
	border-style:solid;
	border-color:#AB7949!important;
	margin-left:15px;
	border-width:0px 0px 1px 0px;
}
.navbar-brand img{
	width:300px;
}
.img-style-hero{
	width:500px;
}
.h1-hero{
	font-size:36px;
	letter-spacing:5px;
	text-align:center;
	color:#1D1D1D!important;
	font-family:"Noto Sans JP";
	font-weight:700;
	line-height:54px;
}
.button-hero{
	border-style:solid;
	background-color:#FEFFFE;
	border-color:#234EA4!important;
	font-size:16px;
	color:#234EA4!important;
	margin-left:15px;
	font-family:"Lato";
	font-weight:700;
	padding:8px 30px 8px 30px;
	border-radius:10px 10px 10px 10px;
	border-width:1px 1px 1px 1px;
}
.gnav-size:hover{
	background-color:transparent;
}
.gnav-size:active{
}
p{
	font-family:"Noto Sans JP";
	font-weight:400;
	font-size:16px;
	line-height:28px;
}
.margin-top50{
	padding-top:50px;
}
h3{
	font-size:18px;
}
.text-link{
	color:#1E1E1D!important;
	font-weight:bold;
	text-decoration:underline!important;
}
.text-link:hover{
	color:#57BCF9!important;
	text-decoration:underline!important;
}
.tit-h2-top{
	font-size:65px;
	font-family:"Noto Sans JP";
	text-decoration:none;
	font-weight:700;
	line-height:64px;
	letter-spacing:0px;
	color:#005AAB!important;
}
.f-menu{
	text-align:center;
	font-size:14px;
	font-weight:bold;
	color:#1D1E1D!important;
	line-height:30px;
}
.img-logo-inteld-style{
	width:270px;
}
.cortion{
	font-size:12px;
	line-height:16px;
	color:#1D1E1D!important;
}
.margin-bottom30{
	margin-bottom:50px;
	font-size:16px;
	font-weight:bold;
	border-color:#0068D6!important;
	color:#0068D6!important;
	background-color:transparent;
	border-width:3px 3px 3px 3px;
}
.search-button{
	margin-top:50px;
	background-color:#FF7600;
	padding-left:50px;
	padding-right:50px;
	margin-bottom:30px;
	width:350px;
}
.button-w{
	background-color:transparent;
	color:#FEFFFE!important;
	margin-bottom:10px;
	border-style:solid;
	border-color:#FEFFFE!important;
	font-size:14px;
	font-family:"Lato";
	font-weight:700;
	padding:10px 20px 10px 20px;
	border-radius:10px 10px 10px 10px;
	border-width:1px 1px 1px 1px;
}
.button-w:hover{
	background-color:transparent;
}
.button-bl{
	background-color:#2C65E2;
	padding-top:15px;
	padding-bottom:15px;
}
.button-mini{
	background-color:#029DFF;
	color:#282828!important;
	width:150px;
	margin-right:10px;
	background-position:center top;
	background-repeat:repeat;
	font-size:14px;
	font-family:"Lato";
	font-weight:700;
	padding:5px 5px 5px 5px;
	border-radius:20px 20px 20px 20px;
}
.button-mini:hover{
	background-color:#F0F0F0;
	color:#2B65E0!important;
}
.p-english{
	font-size:48px;
	font-family:"Concert One";
	letter-spacing:5px;
	font-weight:400;
	text-transform:capitalize;
}
.img-margin{
	margin-left:1px;
}
.button-hero:hover{
	background-color:transparent;
}
.p-style{
	font-weight:bold;
	font-size:16px;
	letter-spacing:2px;
	line-height:36px;
}
.p-margin{
	margin-left:20px;
	margin-right:20px;
}
.p-footer-menu{
	font-size:14px;
	line-height:28px;
}
.tit-h1{
	font-size:28px;
	font-weight:bold;
	line-height:48px;
	color:#005AAB!important;
}
.tit-h2{
	font-size:25px;
	letter-spacing:0px;
	line-height:45px;
	font-family:"Noto Sans JP";
	font-weight:700;
}
.bg-red{
	border-style:none;
	border-color:#e6e6e6!important;
	margin-bottom:15px;
	font-size:20px;
	letter-spacing:-1px;
	font-weight:bold;
	text-decoration:none;
	padding-left:15px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#FFD8D8;
}
.img-copy--style{
	width:350px;
}
.img-11-style{
	width:50px;
}
.margin{
	margin-left:5px;
}
.box-line02{
	background-color:rgba(255,255,255,0.9);
	background-position:center top;
	margin-bottom:50px;
	padding:50px 50px 50px 50px;
}
.img-17-style{
	width:100px;
}
.box-line{
	background-color:transparent;
	box-shadow:0px 0px 0px rgba(0,0,0,0.0);
	background-position:center top;
	font-size:16px;
	font-weight:bold;
	color:#059CFF!important;
	border-style:solid;
	border-color:#059CFF!important;
	line-height:28px;
	padding:30px 50px 30px 50px;
	border-radius:0px 0px 0px 0px;
	border-width:2px 2px 2px 2px;
}
.img-1ry9dymyicu-style{
	width:750px;
	height:300px;
}
.img-top-ill--style{
	width:150px;
}
.img-8-style{
	width:150px;
}
.img-7-style{
	width:150px;
}
.img-6-style{
	width:150px;
}
.img-logo-goshi-style{
	width:300px;
}
.caution{
	font-size:10px;
	line-height:24px;
}
h1{
	font-size:28px;
}
h2{
	font-size:24px;
}
.p-small{
	font-size:14px;
}
.img-tori--style{
	width:300px;
	margin-top:20px;
}
.p-19-style{
	font-size:14px;
	line-height:24px;
}
.h2-margin-top{
	margin-top:40px;
}
.box-line-03{
	border-style:none;
	border-color:#12C7FF!important;
	margin-bottom:30px;
	background-color:#12C7FF;
	padding:30px 30px 30px 30px;
	border-radius:30px 30px 30px 30px;
}
.p-32-style{
	line-height:36px;
	color:#FEFFFE!important;
}
.img-28-style{
	width:150px;
}
.img-27-style{
	width:200px;
}
.img-bloc-10-style{
	width:350px;
}
.box-line-04{
	background-color:rgba(254,245,59,0.9);
	margin-bottom:30px;
	padding:30px 30px 30px 30px;
	border-radius:30px 30px 30px 30px;
}
.img-13-style{
	width:200px;
}
.img-hanga-style{
	width:450px;
}
.box-line-05{
	border-style:solid;
	border-color:rgba(110,0,0,0.0)!important;
	margin-bottom:15px;
}
.row-margin-top{
	margin-top:50px;
}
.p-red{
	color:#F200AA!important;
	text-align:center;
}
.p-strong{
	font-size:24px;
	color:#FF5878!important;
	border-style:solid;
	width:260px;
	text-align:center;
	border-color:#FFFF00!important;
	line-height:16px;
	border-width:0px 0px 10px 0px;
}
.icon-fb{
	background-color:transparent;
	color:#FFFFFF!important;
	margin-left:10px;
}
.img-style{
	width:300px;
}
.bloc-margin-top{
	margin-bottom:200px;
	margin-top:-100px;
}
.hero-button{
	font-family:"Noto Sans JP";
	font-weight:700;
	font-size:16px;
	padding-right:25px;
	padding-left:25px;
	border-style:solid;
	border-color:#0068D6!important;
	background-color:#FEFFFE;
	color:#0068D6!important;
	border-width:3px 3px 3px 3px;
}
.gnav-contact{
	font-size:16px;
	font-weight:bold;
	background-color:#0098FF;
	padding-right:50px;
	margin-left:15px;
	color:#FEFFFE!important;
	width:120px;
	text-align:center;
}
.hero-button:hover{
	background-color:#0068D6;
	border-style:solid;
	color:#FEFFFE!important;
	border-width:3px 3px 3px 3px;
}
.tit-01{
	width:850px;
}
.button-01{
	border-style:solid;
	border-color:#0068D6!important;
	background-color:#FEFFFE;
	color:#0068D6!important;
	font-size:16px;
	font-weight:bold;
	width:270px;
	border-width:3px 3px 3px 3px;
}
.button-01:hover{
	color:#FEFFFE!important;
	background-color:#0068D6;
	border-style:solid;
	border-color:#0068D6!important;
	border-width:3px 3px 3px 3px;
}
.telfax{
	font-size:36px;
	font-family:"Noto Sans JP";
	font-weight:700;
	text-transform:none;
	letter-spacing:1px;
	line-height:40px;
}
.img-margin-top{
	margin-top:60px;
}
.img-logo-iso-bl-style{
	width:300px;
}
.under-line{
	border-style:solid;
	border-color:rgba(40,40,40,0.1)!important;
	border-width:0px 0px 1px 0px;
}
.icon-margin{
	margin-top:20px;
	margin-bottom:10px;
}
.tit-h3-hero{
	color:#0059AB!important;
	font-weight:bold;
	font-size:18px;
	line-height:36px;
}
.tit-h1-hero{
	font-family:"Abril Fatface";
	color:#FFFFFF!important;
	font-size:78px;
	font-weight:900;
	text-transform:none;
}
.gnav{
	font-size:15px;
	font-weight:bold;
	color:#005AAB!important;
}
.gnav:hover{
	color:#005AAB!important;
	text-decoration:underline!important;
}
.top-button{
	font-weight:bold;
	color:#005AAB!important;
	background-color:transparent;
	margin-bottom:15px;
}
.top-button:hover{
	background-color:transparent;
	font-weight:bold;
}
.img-flame{
	border-style:dotted;
	border-color:#005AAB!important;
	border-width:0px 2px 0px 0px;
}
.p-answer{
	font-size:50px;
	color:#FFD000!important;
	font-family:"Vollkorn";
	line-height:50px;
}
.tit-h2-q{
	font-size:40px;
	text-align:center;
	color:#005AAB!important;
	font-family:"Noto Serif JP";
	font-weight:400;
	background-color:transparent;
}
.tit-h3-top{
	font-size:28px;
	font-weight:bold;
	line-height:48px;
}
.img-top-style{
	width:250px;
}
.tit-h2-02{
	font-size:16px;
	line-height:28px;
	color:#005AAB!important;
	font-weight:bold;
}
.margin-left{
	margin-left:100px;
}
.p-blue{
	color:#005AAB!important;
}
.img-hero-tit-style{
	width:800px;
}
.img-concept{
	width:600px;
}

.margin-top{
	margin-top:0px;
	padding-top:30px;
}
.link-style{
	color:#000000!important;
	font-size:20px;
	text-decoration:line-through;
}
.bg-red:hover{
}
.text-span-color{
	color:#000000;
}
.bg-b{
	background-color:#D2EAFF;
	font-size:20px;
	font-weight:bold;
}
.tit-h3{
	border-style:none;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#FFCD00;
	border-color:#FFD000!important;
	background-size:auto auto;
	color:#000000!important;
	font-size:19px;
	padding-left:10px;
	border-radius:10px 10px 10px 10px;
}
.pr-5{
	margin-right:20px;
}
.mr-2{
	margin-right:20px;
}
.button-02{
	border-style:solid;
	border-color:#006DDD!important;
	background-color:#FEFFFE;
	color:#006DDD!important;
	font-weight:bold;
	font-size:16px;
	margin-bottom:30px;
	border-width:3px 3px 3px 3px;
}

.button-02:hover{
	color:#FEFFFE!important;
	font-weight:bold;
	background-color:#006DDD;
	margin-bottom:30px;
}

/* = Colour
-------------------------------------------------------------- */

/* Background colour styles */

.bgc-banana-yellow{
	background-color:#FFE62D;
}
.bgc-capri{
	background-color:#00DAFF;
}

/* Text colour styles */

.tc-dark-jungle-green{
	color:#1E1E1D!important;
}

/* Bloc image backgrounds */

.bg-main{
	background-image:url("img/main.svg");
}
.bg-haikei-01{
	background-image:url("img/haikei-01.jpg");
}
.bg-main{
	background-image:url("img/main.png");
}
.bg-illust-01{
	background-image:url("img/illust-01.svg");
}
.bg-cat-tit{
	background-image:url("img/cat-tit.jpg");
}
.bg-haikei-01{
	background-image:url("img/haikei-01.svg");
}

/* = Custom Bric Data
-------------------------------------------------------------- */



/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc{
        padding-left: 20px; 
        padding-right: 20px;  
    }
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .page-container{overflow: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .page-container{
        overflow: hidden;
        position:relative;
    }
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .a-block{
        padding:0 10px;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.tit-h2-top{
		text-align:center;
	}
	.gnav-size{
		font-size:10px;
		width:150px;
	}
	.button-bl{
		font-size:16px;
		margin-bottom:10px;
	}
	.button-w{
		font-size:16px;
	}
	.search-button{
		margin-bottom:10px;
		margin-top:15px;
	}
	.margin-bottom30{
		margin-bottom:30px;
	}
	p{
		font-size:14px;
		line-height:24px;
	}
	.p-style{
		letter-spacing:0px;
		line-height:36px;
		font-size:16px;
		font-weight:normal;
	}
	.button-hero{
		background-color:#FEFFFE;
	}
	.tit-h1{
		font-size:28px;
		letter-spacing:5px;
		text-align:center;
	}
	.tit-h2{
		font-size:24px;
		letter-spacing:0px;
		line-height:36px;
		text-align:center;
	}
	.bloc-margin-top{
		margin-top:-150px;
	}
	.tit-01{
		width:650px;
	}
	.img-9-style{
		width:200px;
	}
	.bg-red{
		text-align:center;
		font-size:20px;
		line-height:24px;
		margin-bottom:5px;
	}
	.hero-button{
		margin-top:30px;
	}
	.img-illust-style{
		;
	}
	.telfax{
		text-align:center;
	}
	.img-top--style{
		width:500px;
	}
	.cortion{
		text-align:center;
	}
	.box-line02{
		margin-right:30px;
		margin-left:30px;
	}
	.box-line{
		font-size:14px;
		line-height:24px;
		padding-right:30px;
		padding-left:30px;
	}
	.top-button{
		font-size:14px;
	}
	.tit-h2-q{
		font-size:45px;
	}
	.tit-h2-02{
		text-align:center;
	}
	
	/* MD Text Margin Offsets */
	.mg-md-md{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

@media (max-width: 767px){
	h3{
		font-size:18px;
	}
	.cortion{
		text-align:center;
	}
	.f-menu{
		font-size:12px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:rgba(254,246,59,0.9);
	}
	.gnav-size:hover{
		;
	}
	.gnav-size{
		margin-top:15px;
		background-color:transparent;
		font-size:14px;
		width:200px;
		margin-bottom:50px;
	}
	.img-style-hero{
		width:350px;
	}
	.margin-right{
		;
	}
	.button-bl{
		margin-bottom:10px;
		font-size:16px;
	}
	.button-w{
		font-size:16px;
	}
	.search-button{
		margin-bottom:10px;
		margin-top:10px;
	}
	.margin-top50{
		padding-top:20px;
	}
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.p-english{
		text-align:center;
		font-size:36px;
	}
	.p-style{
		line-height:28px;
		font-size:14px;
	}
	.tit-h1{
		text-align:center;
		font-size:20px;
		letter-spacing:3px;
		line-height:36px;
	}
	.tit-h2{
		text-align:center;
		font-size:20px;
		letter-spacing:0px;
	}
	.navbar-brand img{
		width:240px;
	}
	.bloc-margin-top{
		margin-top:50px;
	}
	.close-special-menu .close-icon{
		background-color:#282828;
	}
	.box-line{
		margin-bottom:10px;
		padding-right:30px;
		padding-left:30px;
		font-size:14px;
		line-height:24px;
	}
	.p-strong{
		text-align:center;
	}
	.tit-01{
		width:500px;
	}
	.hero-button:hover{
		;
	}
	.hero-button{
		margin-bottom:15px;
	}
	.bg-red{
		text-align:center;
		font-size:20px;
	}
	.box-line02{
		margin-right:15px;
		margin-left:15px;
	}
	.top-button{
		font-size:14px;
	}
	.tit-h2-q{
		font-size:38px;
	}
	.tit-h3-top{
		font-size:20px;
		line-height:36px;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
	/* Small Text Margin Offsets */
	.mg-md-sm{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

@media (max-width: 575px){
	.gnav-tel{
		font-size:20px;
	}
	.gnav-size{
		width:180px;
	}
	.gnav-kousiki{
		font-size:13px;
	}
	.text-link{
		font-size:14px;
		letter-spacing:-1px;
	}
	.f-menu{
		letter-spacing:-1px;
	}
	p{
		font-size:12px;
		line-height:20px;
	}
	.navbar-brand img{
		width:200px;
	}
	.tit-h2-top{
		letter-spacing:2px;
		line-height:36px;
		font-size:28px;
		font-weight:bold;
	}
	.search-button{
		width:100%;
		text-align:center;
		margin-bottom:10px;
	}
	.bloc-style{
		opacity:1.0;
	}
	.button-bl{
		margin-bottom:10px;
	}
	.p-style{
		line-height:28px;
		font-size:14px;
		letter-spacing:-1px;
		font-weight:normal;
	}
	.button-w{
		font-size:12px;
		padding:10px 10px 10px 10px;
	}
	.button-hero{
		width:180px;
		margin-bottom:5px;
		font-size:12px;
	}
	.p-footer-menu:hover{
		;
	}
	.p-footer-menu{
		font-size:12px;
	}
	.footer-link{
		text-align:center;
	}
	.f-button{
		width:100%;
		background-color:#24448F;
		border-style:solid;
		border-color:#FEFFFE!important;
		font-size:11px;
		padding:15px 15px 15px 15px;
		border-radius:0px 0px 0px 0px;
		border-width:1px 1px 1px 1px;
	}
	.p-english{
		font-size:28px;
	}
	.bloc-margin-top{
		margin-top:52px;
	}
	.box-line{
		margin-bottom:10px;
		box-shadow:0px 0px 0px rgba(0,0,0,0.0);
		border-style:solid;
		text-align:left;
		padding-right:10px;
		padding-left:10px;
		font-size:14px;
		line-height:24px;
		border-radius:0px 0px 0px 0px;
		border-width:2px 2px 2px 2px;
	}
	.tit-h1{
		font-size:18px;
		line-height:28px;
		letter-spacing:2px;
	}
	.img-17-style{
		width:50px;
	}
	.box-line02{
		margin:-60px 5px 10px 5px;
		padding:5px 5px 5px 5px;
	}
	.tit-h2{
		font-size:18px;
		letter-spacing:0px;
		line-height:24px;
	}
	.p-bloc-8-style{
		font-size:12px;
	}
	.p-small{
		font-size:12px;
		line-height:18px;
	}
	.bg-red{
		font-size:14px;
		letter-spacing:-1px;
		margin-bottom:5px;
		padding-right:5px;
		text-align:center;
		padding-left:0px;
	}
	.img-27-style{
		width:100px;
	}
	.img-28-style{
		width:100px;
	}
	.box-line-03{
		padding:8px 8px 8px 8px;
	}
	.p-32-style{
		line-height:24px;
	}
	.p-strong{
		font-size:20px;
		width:200px;
	}
	.hero-button{
		color:#FEFFFE!important;
		border-color:#FEFFFE!important;
		background-color:#003991;
		margin-top:20px;
	}
	.tit-01{
		width:270px;
	}
	.telfax{
		font-size:20px;
		text-align:center;
		letter-spacing:0px;
		line-height:30px;
	}
	.under-line{
		border-color:rgba(255,255,255,0.4)!important;
	}
	.button-01{
		margin-bottom:20px;
		font-size:14px;
	}
	.top-button{
		font-size:14px;
		line-height:20px;
	}
	.img-flame{
		border-right-width:0px;
	}
	.tit-h3-hero{
		font-size:14px;
		line-height:28px;
	}
	.tit-h2-q{
		font-size:20px;
	}
	.tit-h3-top{
		font-size:18px;
		line-height:28px;
	}
	.p-answer{
		font-size:28px;
		line-height:28px;
	}
	.tit-h2-02{
		font-size:15px;
		line-height:1.5;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-sm-xs{
		margin-top:10px;
		margin-bottom:5px;
	}
		.mg-md-xs{
		margin-top:10px;
		margin-bottom:20px;
	}
		.mg-clear-xs{
		margin:0;
	}
	
#top01 .tit-h2-02,#top02 .tit-h2-02 {
		font-size: 15px !important;
		line-height:1.8 !important;
	}
}

	/* naming */
.bgc-1032 {
  background-color: #FFE62D;
}
.tit-name-h3 {
  font-size: 18px;
  line-height: 1.5em;
  color: #005AAB !important;
}

.button-name {
  color: #fff !important;
  background-color: #cc3300;
  font-size: 16px;
	padding: 1em 2em 1em 2em;
}

.box-naming {
  border-radius: 30px 30px 30px 30px;
  border-color: #005AAB !important;
  border-style: solid;
  border-width: 5px 5px 5px 5px;
  padding: 1em 1em 1em 1em;
    padding-right: 1em;
	padding-left: 1em;
}

.icon-630 {
  color: #cc3300 !important;
  border-color: #cc3300;
}
