/*-----------------------------------------------------------------------------------
	GlobalLife
	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 blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'NotoSansCjkJpSubMed';
	src: url('./fonts/NotoSansCjkJpSubMed/NotoSansCjkJpSubMed.woff2');
	src: url('./fonts/NotoSansCjkJpSubMed/NotoSansCjkJpSubMed.woff2') format('woff2'),
	url('./fonts/NotoSansCjkJpSubMed/NotoSansCjkJpSubMed.woff') format('woff'),
	url('./fonts/NotoSansCjkJpSubMed/NotoSansCjkJpSubMed.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'NotoSansCjkJpSubReg';
	src: url('./fonts/NotoSansCjkJpSubReg/NotoSansCjkJpSubReg.woff2');
	src: url('./fonts/NotoSansCjkJpSubReg/NotoSansCjkJpSubReg.woff2') format('woff2'),
	url('./fonts/NotoSansCjkJpSubReg/NotoSansCjkJpSubReg.woff') format('woff'),
	url('./fonts/NotoSansCjkJpSubReg/NotoSansCjkJpSubReg.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

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

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-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;
	position:relative;
}


/* Sizes */

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

/* = 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 Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* 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-md{
	margin-top:50px;
}


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

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* 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 .dropdown-menu.show{
	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: absolute;
	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;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* 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);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = 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-sq{
	border-radius: 0px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}




/* = Cards
-------------------------------------------------------------- */
.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;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}



/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"NotoSansCjkJpSubReg";
	color:var(--swatch-var-3568)!important;
}
.container{
	max-width:1140px;
}
h1{
	font-size:45px;
	line-height:53px;
	font-family:"NotoSansCjkJpSubMed";
}
h2{
	font-size:35px;
	line-height:43px;
	font-family:"NotoSansCjkJpSubMed";
}
h3{
	font-size:25px;
	line-height:33px;
	font-family:"NotoSansCjkJpSubMed";
}
h4{
	font-size:21px;
	line-height:29px;
	font-family:"NotoSansCjkJpSubMed";
}
p{
	font-size:16px;
	line-height:24px;
	font-family:"NotoSansCjkJpSubReg";
	letter-spacing:0.07em;
}
.globallife-button-phone{
	text-transform:uppercase;
	font-size:16px;
	line-height:24px;
	padding-right:28px;
	padding-left:28px;
	letter-spacing:1px;
	background-color:var(--swatch-var-5677);
	color:#FEFFFF!important;
	font-family:"NotoSansCjkJpSubMed";
}
.globallife-button-phone:hover{
	background-color:var(--swatch-var-2726);
	color:#00CFCD!important;
}
.globallife-bottom-margin{
	padding:15px 15px 15px 15px;
	width:30%;
	margin-bottom:40px;
	box-shadow:1.41px 1.41px 15px #E8E8E8;
	border-radius:10px 10px 10px 10px;
}
.globallife-facility-column{
	max-width:528px;
	margin-right:auto;
	margin-left:auto;
}
.globallife-white-button{
	text-transform:uppercase;
	font-size:14px;
	line-height:24px;
	padding-right:28px;
	padding-left:28px;
	letter-spacing:1px;
	background-color:#FEFFFF;
	border-style:solid;
	border-color:#FEFFFF!important;
	color:var(--swatch-var-779)!important;
	border-width:1px 1px 1px 1px;
}
.globallife-white-button:hover{
	background-color:var(--swatch-var-3131);
	color:var(--swatch-var-779)!important;
}
.globallife-service-shortcut{
	height:300px;
	padding-top:140px;
	font-size:25px;
	letter-spacing:0.01em;
	background-color:rgba(0,0,0,0.6);
	opacity:0.0;
}
.globallife-service-shortcut:hover{
	background-color:rgba(0,0,0,0.7);
	opacity:1.0;
}
.form-control{
	font-size:15px;
	line-height:23px;
	margin-bottom:15px;
	background-color:#FEFFFF;
	color:#212121!important;
	border-radius:0px 0px 0px 0px;
	border-width:1px 1px 1px 1px;
}
.form-control:hover{
	border-color:#00CCCC!important;
	background-color:#FEFFFF;
	border-width:1px 1px 1px 1px;
}
.form-control:focus{
	background-color:#FEFFFF;
	text-shadow:0px 0px 0px rgba(0,0,0,0.0);
	box-shadow:0px 0px 0px rgba(0,0,0,0.0);
}
.form-control:active{
	background-color:#FEFFFF;
}
.form-control:focus:hover{
	background-color:#FEFFFF;
}
.form-control:focus:active{
	background-color:#FEFFFF;
}
.globallife-footer-icon{
	margin-right:5px;
	color:var(--swatch-var-2628)!important;
}
.globallife-footer-icon:hover{
	;
}
.globallife-footer-link{
	color:#FEFFFF!important;
}
.globallife-footer-menu-item{
	margin-left:0px;
	margin-bottom:5px;
}
.globallife-footer-menu-item:hover{
	margin-left:5px;
}
.globallife-bold{
	font-family:"NotoSansCjkJpSubMed";
}
.alert{
	font-size:14px;
	line-height:22px;
	color:#00CCCC!important;
	background-color:#FEFFFF;
	border-radius:0px 0px 0px 0px;
	border-width:0px 0px 0px 0px;
}
.globallife-navigation-link{
	border-color:rgba(0,204,204,0.0)!important;
	text-transform:uppercase;
	letter-spacing:0.03em;
	font-size:14px;
	color:#424242!important;
	line-height:35px;
	font-family:"NotoSansCjkJpSubMed";
}
.globallife-active-link{
	border-style:solid;
	border-color:rgba(0,207,205,0.0)!important;
	color:#00CFCD!important;
	border-width:8px 0px 0px 0px;
}
.globallife-navbar{
	padding:0px 0px 0px 0px;
}
.globallife-navigation-button{
	margin-top:14px;
	margin-left:15px;
}
.navbar-brand{
	text-transform:uppercase;
	color:#000000!important;
	font-size:28px;
	font-family:"NotoSansCjkJpSubMed";
}
.navbar-brand:hover{
	color:#00CFCD!important;
}
.blocsapp-special-menu blocsnav{
	background-color:#FEFFFF;
}
.close-special-menu .close-icon{
	background-color:var(--swatch-var-3568);
	color:#00CCCC!important;
}
.globallife-header-icon{
	width:40px;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	color:#FEFFFF!important;
	font-size:28px;
}
.globallife-header-icon:hover{
	text-shadow:2px 0px 15px rgba(255,255,255,0.3);
}
.globallife-header-link{
	font-size:13px;
	color:#FEFFFF!important;
	font-family:"NotoSansCjkJpSubMed";
}
.globallife-header-link:hover{
	text-shadow:0px 2px 15px rgba(255,255,255,0.3);
}
.globallife-record-icon{
	font-size:60px;
}
.globallife-doctor-thumbnail{
	box-shadow:0px 5px 10px rgba(0,0,0,0.1);
}
.globallife-doctor-icon{
	width:30px;
	margin-right:auto;
	text-align:center;
	color:#00CFCD!important;
}
.globallife-doctor-icon:hover{
	color:#000000!important;
}
.globallife-doctor-column{
	margin-bottom:50px;
}
.globallife-doctor-column:hover{
	;
}
.globallife-service-column{
	margin-bottom:0px;
}
.globallife-contact-header{
	background-color:rgba(255,255,255,0.6);
	padding:28px 28px 28px 28px;
}
.globallife-optin{
	margin-bottom:15px;
}
.globallife-text-shadow{
	text-shadow:0px 2px 15px rgba(0,0,0,0.2);
	color:var(--swatch-var-2628)!important;
}
.scrollToTop{
	background-color:var(--swatch-var-779);
	color:#FEFFFF!important;
	border-radius:5px 5px 5px 5px;
}
a{
	text-decoration:none;
}
h5{
	font-size:19px;
	line-height:26px;
	font-family:"NotoSansCjkJpSubMed";
}
h6{
	font-size:17px;
	font-family:"NotoSansCjkJpSubMed";
	line-height:1.5em;
}
.navbar-brand img{
	width:100%;
}
.top-nav{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:flex-end;
}
.top-header-otoiawase{
	margin-left:15px;
	line-height:12px;
}
.topbar-nav{
	padding-top:0px;
	padding-bottom:0px;
	display:flex;
	align-items:center;
}
.icon-nav{
	width:64px;
	display:flex;
	flex-direction:column;
	align-content:center;
	border-radius:10px 10px 10px 10px;
	background-color:var(--swatch-var-3031);
}
.icon-nav-row{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
.hamburger{
	background-color:var(--swatch-var-779);
	border-radius:0px 0px 0px 20px;
	width:60px;
	height:60px;
	position:fixed;
	top:0px;
	right:0px;
	z-index:99;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-2628)!important;
	fill:var(--swatch-var-2628)!important;
}
.menu-icon-navigation-bar-stroke{
	stroke:var(--swatch-var-2628)!important;
	fill:var(--swatch-var-2628)!important;
}
.menu-contents-wrap{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
	padding-right:0px;
	height:60px;
}
.menu-contents-container{
	display:flex;
	width:100%;
	justify-content:space-between;
	align-items:center;
}
.globallife-button-light{
	text-transform:uppercase;
	font-size:15px;
	line-height:24px;
	padding:6px 28px 6px 28px;
	letter-spacing:1px;
	background-color:var(--swatch-var-2628);
	border-style:solid;
	border-color:var(--swatch-var-779)!important;
	color:var(--swatch-var-779)!important;
	border-width:2px 2px 2px 2px;
	font-family:"NotoSansCjkJpSubMed";
	margin-top:4px;
	border-radius:20px 20px 20px 20px;
}
.globallife-button-light:hover{
	background-color:var(--swatch-var-1843);
	color:var(--swatch-var-779)!important;
	border-style:solid;
	border-color:var(--swatch-var-779)!important;
	border-width:1px 1px 1px 1px;
}
.top-en{
	font-family:"NotoSansCjkJpSubMed";
	font-size:16px;
}
.top-price{
	font-family:"Helvetica";
	font-weight:600;
	font-size:40px;
}
.top-list-image{
	background-size:length;
	width:100%;
	height:56.5%;
}
.globallife-button-big{
	text-transform:none;
	font-size:18px;
	line-height:18px;
	padding:15px 50px 15px 50px;
	letter-spacing:1px;
	background-color:var(--swatch-var-2247);
	color:#FEFFFF!important;
	font-family:"NotoSansCjkJpSubMed";
	border-radius:10px 10px 10px 10px;
	font-weight:600;
}
.globallife-button-big:hover{
	background-color:#FEFFFF;
}
.flow{
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	flex-wrap:wrap;
	align-items:stretch;
	background-color:var(--swatch-var-1843);
}
.section-title{
	font-size:2rem;
	text-align:center;
	line-height:2.5rem;
	font-family:"NotoSansCjkJpSubMed";
}
.section-subtitle{
	font-weight:600;
}
.flow-col{
	display:flex;
	flex-wrap:nowrap;
	flex-direction:row;
	justify-content:space-around;
	align-items:flex-start;
}
.flow-card{
	justify-content:flex-start;
	align-items:center;
	height:600px;
	display:flex;
	flex-direction:column;
	padding-left:20px;
	padding-right:20px;
	width:25%;
}
.flow-card-up{
	padding-right:10px;
	padding-left:10px;
	height:350px;
}
.flow-number{
	width:100px;
	margin-bottom:0.5rem;
}
.flow-heading{
	font-weight:600;
	font-size:1rem;
	line-height:1.35em;
	color:var(--swatch-var-779)!important;
}
.flow-card-bottom{
	z-index:100;
	display:flex;
	width:100%;
	flex-direction:column;
	justify-content:flex-start;
	row-gap:0px;
	column-gap:0px;
}
.flow-fig-box{
	border-width:2px 2px 2px 2px;
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	background-color:var(--swatch-var-2628);
	font-weight:600;
	font-size:1.2em;
	display:block;
	flex-direction:column;
	width:100%;
	border-color:var(--swatch-var-779)!important;
	color:var(--swatch-var-5803)!important;
	text-align:center;
	padding:1rem 0.5rem 1rem 0.5rem;
	margin-bottom:0px;
	margin-top:0px;
}
.flow-line-v{
	border-style:solid;
	border-color:var(--swatch-var-779)!important;
	border-width:0px 2px 0px 0px;
	width:2px;
	margin-left:auto;
	margin-right:auto;
	padding-top:30px;
	padding-bottom:0px;
}
.flow-col-m{
	display:flex;
	flex-wrap:nowrap;
	flex-direction:column;
	justify-content:space-around;
	align-items:center;
}
.flow-card-m{
	margin-top:3rem;
}
.flow-fig-title-m{
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	background-color:var(--swatch-var-2628);
	border-radius:6px 6px 6px 6px;
	padding:2rem 3rem 1rem 3rem;
	max-width:700px;
	width:100%;
	border-width:0px 3px 0px 3px;
	border-color:var(--swatch-var-779)!important;
	border-style:solid;
}
.flow-number-m{
	width:64px;
	margin-left:15px;
}
.flow-fig-box-m{
	font-size:1.2em;
	width:100%;
	color:var(--swatch-var-779)!important;
	text-align:center;
	font-family:"NotoSansCjkJpSubMed";
}
.flow-fig-body-m{
	display:flex;
	flex-direction:row;
	justify-content:flex-start;
}
.flow-fig-body-m-left{
	width:200px;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.flow-fig-body-m-icon{
	width:100%;
}
.flow-line{
	margin-top:-246px;
	margin-bottom:246px;
}
.divider-style{
	height:90px;
	width:10%;
	margin-left:auto;
	margin-right:auto;
	background-color:var(--swatch-var-3031);
}
.faq-10-full{
	margin-left:auto;
	margin-right:auto;
	display:flex;
	justify-content:center;
}
.faq-10-box{
	margin-bottom:0px;
	padding:1rem 1rem 0.5rem 1rem;
	position:relative;
	border-style:solid;
	border-color:#E0E0E0!important;
	border-width:1px 0px 0px 0px;
	margin-top:0px;
}
.global-radius{
	overflow:hidden!important;
	border-radius:4px 4px 4px 4px;
	cursor:pointer;
}
.faq-10-question{
	display:inline-flex;
	width:100%;
	align-items:center;
	justify-content:space-between;
	flex-direction:row;
	padding-bottom:8px;
}
.faq-question-title{
	font-size:1.1em;
	margin-right:10px;
}
.collapse{
	color:var(--swatch-var-5803)!important;
}
.faq-10-box-end{
	border-width:1px 0px 1px 0px;
	border-style:solid;
	border-color:#EAEAEA!important;
}
.flow-content-m{
	margin-top:20px;
}
.h3-style{
	font-size:15px;
	line-height:18px;
}
.scroll-image{
	width:40%;
}
.form-zip{
	display:flex;
}
.form-zip-input-wrap{
	padding-right:15px;
}
.top-catch{
	width:100%;
	line-height:1.5em;
}
.footer-globallife-text{
	color:var(--swatch-var-2628)!important;
}
.p-locations-style{
	font-size:14px;
	line-height:20px;
}
.p-51-style{
	font-size:14px;
	line-height:17px;
}
.p-52-style{
	font-size:14px;
	line-height:17px;
}
.p-53-style{
	font-size:14px;
	line-height:17px;
}
.p-32611-style{
	font-size:14px;
	line-height:px;
}
.flow-fig-title-m-head{
	display:flex;
	flex-direction:column;
	align-items:center;
	border-radius:6px 6px 6px 6px;
	padding:2rem 7rem 1rem 7rem;
}
.footer-18-logo{
	max-width:228px;
}
.mini-text-logo{
	font-size:1.8em;
	text-transform:uppercase;
}
.mini-large-p{
	font-size:1.3em;
}
.mini-footer-1-form{
	display:flex;
}
.mini-form-field{
	background-color:var(--swatch-var-3131);
	border-width:0px 0px 0px 0px;
	color:var(--swatch-var-5803)!important;
	border-radius:0px 0px 0px 0px;
	height:40px;
}
.mini-form-field:hover{
	background-color:var(--swatch-var-3131);
}
.mini-form-field:active{
	background-color:var(--swatch-var-3131);
}
.footer-18-field{
	text-align:center;
}
.mini-micro-p{
	font-size:0.8em;
}
.mini-small-p{
	font-size:0.7em;
}
.footer-7-links-small{
	display:flex;
	flex-direction:row;
	justify-content:flex-end;
	align-items:center;
}
.mini-small-link{
	text-decoration:none;
	margin-left:7px;
	margin-right:7px;
}
.img-style{
	width:300px;
}
.globallife-footer-menu{
	font-size:14px;
	padding-bottom:0px;
	margin-bottom:0px;
	font-family:"NotoSansCjkJpSubMed";
	line-height:1.9em;
}
.globallife-tadashigaki{
	color:var(--swatch-var-3568)!important;
	font-size:11px;
	line-height:1em;
}
.top-service-list{
	display:flex;
	justify-content:space-between;
}
.top-service-list-title{
	margin-top:9px;
}
.icon-nav-wrap{
	width:64px;
	background-color:var(--swatch-var-6657);
	margin:5px 5px 5px 5px;
	display:flex;
	flex-direction:column;
	align-content:center;
	align-items:center;
}
.icon-nav-text{
	font-size:12px;
	text-align:center;
	color:var(--swatch-var-3568)!important;
	margin-top:4px;
}
.top-lead{
	font-size:15px;
	font-family:"NotoSansCjkJpSubMed";
}
.carousel-text{
	background-color:var(--swatch-var-779);
	color:var(--swatch-var-2628)!important;
	padding:20px 30px 20px 30px;
}
.globallife-logo{
	width:220px;
}
.globallfe-nav-button{
	width:40px;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-2628);
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-6018);
}
.top-carousel{
	background-size:cover;
	height:600px;
}
.top-carousel-item{
	background-image:url("img/air-con_p_103441750.jpg");
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
	background-size:cover;
	background-position:center bottom;
	background-repeat:no-repeat;
}
.top-carousel-item-image{
	background-size:cover;
	background-image:url("img/air-con_p_103441750.jpg");
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
	background-image: -webkit-image-set(url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);background-image: image-set(url("img/air-con_p_103441750.jpg") 1x,
url("img/air-con_p_103441750.jpg") 2x,url("img/air-con_p_103441750.webp") 1x,
url("img/air-con_p_103441750.webp") 2x);
}
.top-carousel-item-1{
	background-size:cover;
	background-position:center center;
}
.top-carousel-image-1{
	display:block;
	position:relative;
	width:100%;
	height:50%;
}
.img-bloc-2-style{
	width:220px;
}
.swi-button{
	background-color:var(--swatch-var-779);
	font-size:15px;
	border-radius:20px 20px 20px 20px;
	color:var(--swatch-var-2628)!important;
	font-family:"NotoSansCjkJpSubMed";
}
.footer-col{
	border-width:0px 0px 0px 2px;
	border-style:solid;
	border-color:var(--swatch-var-779)!important;
}
.service-tag{
	background-color:var(--swatch-var-3031);
	display:inline-block;
	padding:2px 4px 2px 4px;
	border-radius:3px 3px 3px 3px;
	margin-right:6px;
	margin-bottom:5px;
}
.service-tag-wrap{
	padding:0px 0px 0px 0px;
	margin:10px 0px 0px 0px;
	display:flex;
	flex-wrap:wrap;
}
.service-tag-text{
	color:var(--swatch-var-2628)!important;
	font-size:13px;
	text-align:center;
	line-height:1em;
	margin:0px 0px 0px 0px;
	font-family:"NotoSansCjkJpSubMed";
	letter-spacing:0em;
	white-space:nowrap;
}
.service-sc{
	font-size:15px;
	line-height:1em;
	margin-bottom:0px;
	margin-top:0px;
	color:var(--swatch-var-3881)!important;
}
.service-tc{
	margin-top:5px;
	margin-bottom:0px;
	font-size:30px;
}
.service-detail-button{
	text-transform:uppercase;
	line-height:24px;
	padding-right:28px;
	padding-left:28px;
	letter-spacing:1px;
	background-color:var(--swatch-var-779);
	color:#FEFFFF!important;
	font-family:"NotoSansCjkJpSubMed";
	border-width:2px 2px 2px 2px;
	border-style:solid;
	border-color:var(--swatch-var-779)!important;
	border-radius:20px 20px 20px 20px;
	margin-right:10px;
	font-size:1.2em;
}
.service-detail-button:hover{
	background-color:var(--swatch-var-2803);
	color:var(--swatch-var-2628)!important;
}
.service-hero{
	background-image:url("img/kitchen_a_24360558_l.jpg");
	background-image: -webkit-image-set(url("img/kitchen_a_24360558_l.webp") 1x,
url("img/kitchen_a_24360558_l.webp") 2x);background-image: image-set(url("img/kitchen_a_24360558_l.jpg") 1x,
url("img/kitchen_a_24360558_l.jpg") 2x,url("img/kitchen_a_24360558_l.webp") 1x,
url("img/kitchen_a_24360558_l.webp") 2x);
	background-position:center center;
	background-size:cover;
}
.cta-button-left{
	margin-right:10px;
	font-size:17px;
}
.services-page-title{
	margin-bottom:0px;
	margin-top:0px;
	line-height:1em;
	padding-top:5px;
	padding-bottom:5px;
	background-color:var(--swatch-var-3031);
	border-radius:99px 99px 99px 99px;
}
.service-image-photo{
	border-radius:0px 99px 0px 99px;
}
.h1-style{
	font-size:40px;
}
.service-tag-title{
	background-color:var(--swatch-var-5556);
}
.service-tag-text-title{
	color:var(--swatch-var-3031)!important;
}
.cta-button-right{
	font-size:17px;
}
.h1-pp-style{
	font-size:30px;
}
.p-style{
	font-size:14px;
}
.h2-style{
	font-size:50px;
}
.service-single-header h1{
	color:rgba(0,0,0,0.55)!important;
}
.mini-subtitle{
	text-transform:uppercase;
	font-size:1.4em;
}
.mini-event-border{
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:rgba(145,145,145,0.50)!important;
	padding:20px 8px 20px 8px;
}
.mini-date-border{
	border-width:0px 1px 0px 0px;
	border-style:solid;
	border-color:#919191!important;
	margin-right:20px;
	padding-right:8px;
}
.mini-event-big-date{
	font-size:2rem;
	line-height:1em;
}
.mini-event-type{
	font-size:0.9rem;
	background-color:rgba(145,145,145,0.10);
	margin-left:14px;
	position:relative;
	top:-1px;
	padding-right:10px;
	padding-left:10px;
	display:inline-block;
	line-height:1.5rem;
	padding-top:2px;
}
.white-button{
	border-width:1px 1px 1px 1px;
	border-style:solid;
	background-color:var(--swatch-var-2628);
	color:var(--swatch-var-4497)!important;
	border-color:rgba(0,0,0,0.28)!important;
}
.white-button:hover{
	background-color:var(--swatch-var-3131);
	color:var(--swatch-var-5803)!important;
	border-color:#000000!important;
}
.white-button:active{
	background-color:var(--swatch-var-3131);
}
.mini-event-date-switcher{
	margin-left:auto;
	margin-right:auto;
	width:100%;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	margin-bottom:28px;
}
.full-width{
	width:100%;
}
.mini-step-number{
	font-size:3em;
	line-height:1em;
}
.grid-38494-style{
	grid-template-columns:0.70fr 1fr;
}
.mini-blog-side-content{
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.mini-feature-colors{
	position:relative;
	height:328px;
}
.mini-feature-color-1{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:row;
	min-width:150px;
	min-height:150px;
	max-width:150px;
	max-height:150px;
	position:absolute;
	left:7%;
	top:14%;
}
.mini-feature-color-2{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:row;
	min-width:150px;
	max-width:150px;
	min-height:150px;
	max-height:150px;
	position:absolute;
	right:7%;
	top:28%;
}
.mini-feature-color-3{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:row;
	min-width:150px;
	max-width:150px;
	min-height:150px;
	max-height:150px;
	position:absolute;
	left:24%;
	top:55%;
}
.button-primary{
	background-color:var(--swatch-var-7669);
	color:#FFFFFF!important;
}
.button-primary:hover{
	background-color:var(--swatch-var-5545);
}
.button-primary:active{
	background-color:var(--swatch-var-5545);
}
.mini-responsive-icon{
	font-size:60px;
}
.black-button{
	color:#EAEAEA!important;
	background-color:var(--swatch-var-4497);
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-4497)!important;
}
.black-button:hover{
	color:#FEFFFF!important;
	background-color:#181818;
	border-color:#181818!important;
}
.black-button:active{
	background-color:var(--swatch-var-5803);
}
.mini-win-card{
	display:flex;
	flex-direction:row;
	justify-content:flex-start;
	align-items:center;
	padding:50px 50px 50px 50px;
	box-shadow:0.00px -0.00px 28px rgba(169,169,169,0.14);
}
.mini-win-image{
	max-width:100px;
	border-radius:100px 100px 100px 100px;
	margin-right:28px;
}
.win-price{
	font-size:1.5em;
}
.pricing-4-card{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
	padding-left:50px;
	padding-right:50px;
	height:120px;
	margin-bottom:14px;
	position:relative;
	margin-right:14px;
}
.pricing-4-card:hover{
	padding-right:45px;
	filter:invert(100%);
}
.mini-pricing-4-title-desc{
	flex-direction:row;
	width:100%;
	display:flex;
	align-items:center;
}
.mini-4-pricing-title{
	font-size:1.8rem;
	padding-right:28px;
}
.mini-pricing-4-desc{
	font-size:1.2em;
	margin-top:3px;
}
.pricing-4-all-card{
	padding:40px 40px 40px 40px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	min-height:390px;
}
.mini-background-off-white{
	background-color:var(--swatch-var-3131);
	border-width:0px 0px 0px 0px;
}
.mini-pricing-1-icon{
	margin-right:5px;
	font-size:20px;
}
.mini-pricing-1{
	margin-right:auto;
	margin-left:auto;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
}
.mini-pricing-1-left-card{
	padding:50px 40px 50px 50px;
	width:280px;
	border-style:solid;
	border-color:rgba(242,242,242,0.14)!important;
	border-width:1px 0px 1px 1px;
	border-top-right-radius:0px!important;
	border-bottom-right-radius:0px!important;
}
.small-subtitle{
	padding:0.3em 1em 0.3em 1em;
	background-color:rgba(169,169,169,0.20);
	font-size:0.9em;
	overflow:hidden;
}
.mini-pricing-1-price{
	font-size:2.5em;
	line-height:1.3em;
	font-family:"NotoSansCjkJpSubMed";
}
.mini-pricing-1-card{
	padding:50px 50px 50px 50px;
	z-index:1;
	width:328px;
}
.mini-pricing-1-right-card{
	padding:50px 50px 50px 40px;
	width:280px;
	border-width:1px 1px 1px 0px;
	border-style:solid;
	border-color:rgba(242,242,242,0.14)!important;
	border-top-left-radius:0px!important;
	border-bottom-left-radius:0px!important;
}
.mini-pricing-6{
	padding:50px 40px 50px 50px;
	width:100%;
	border-style:solid;
	border-color:rgba(242,242,242,0.14)!important;
	border-width:1px 1px 1px 1px;
}
.mini-pricing-6-main{
	padding:50px 50px 50px 50px;
	z-index:1;
	width:100%;
}
.mini-pricing-3-navtabs{
	display:flex;
	justify-content:space-between;
	margin-bottom:50px;
	width:200px;
	margin-left:auto;
	align-items:center;
	background-color:#424242;
}
.mini-pricing-tab{
	width:100px;
}
.pricing-3-card-grid{
	z-index:1;
	padding:28px 28px 28px 28px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
.single-feature-card{
	width:25%;
	padding-right:10px;
	margin-top:10px;
}
.single-service-tag-wrap{
	padding:0px 0px 0px 0px;
	margin:10px 0px 0px 0px;
	display:flex;
	flex-wrap:wrap;
	flex-direction:column;
	align-items:flex-start;
}
.single-feature-card-wrap{
	display:flex;
	flex-wrap:wrap;
}
.single-feature-heading{
	width:100%;
	font-size:1.4em;
	padding-top:8px;
	padding-bottom:8px;
	background-color:var(--swatch-var-2628);
	border-radius:6px 6px 6px 6px;
	text-align:center;
	margin-bottom:0px;
	margin-top:0px;
}
.single-service-tag{
	display:block;
	border-style:dotted;
	border-color:var(--swatch-var-3568)!important;
	border-width:1px 0px 0px 0px;
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
}
.single-service-tag-text{
	margin:0px 0px 0px 0px;
}
.single-service-img{
	border-radius:17px 17px 17px 17px;
	width:100%;
}
.single-feature-img-cap{
	margin-top:12px;
}
.h2-service-price-style{
	font-size:2em;
	line-height:px;
}
.option-price{
	display:block;
	margin-top:10px;
	border-width:0px 0px 1px 0px;
	border-style:dotted;
	border-color:var(--swatch-var-7133)!important;
	padding-top:10px;
	padding-bottom:10px;
}
.mini-pricing-1-price-small{
	font-size:1.8em;
	line-height:1.3em;
	font-family:"NotoSansCjkJpSubMed";
}
.h1-service-top-style{
	font-size:16px;
	line-height:1em;
}
.single-tc-h1{
	font-size:30px;
}
.single-point-st{
	font-size:1.1em;
}
.single-option-title{
	text-align:center;
	padding-top:4px;
	padding-bottom:4px;
}
.single-button-red{
	background-color:var(--swatch-var-779);
	padding-top:20px;
	padding-bottom:20px;
	font-size:25px;
	font-family:"NotoSansCjkJpSubMed";
	border-radius:6px 6px 6px 6px;
}
.single-pricewrap{
	border-radius:10px 10px 10px 10px;
	padding-bottom:30px;
}
.globallife-text-shadow:hover{
	color:var(--swatch-var-2628)!important;
}
.globallife-text-shadow:active{
	color:var(--swatch-var-2628)!important;
}
.globallife-text-shadow:focus{
	color:var(--swatch-var-2628)!important;
}
.globallife-text-shadow:visited{
	color:var(--swatch-var-2628)!important;
}
.single-button-red:hover{
	background-color:var(--swatch-var-2803);
}
.single-service-lead-small{
	font-size:0.85em;
}
.faq-question-column{
	padding:0px 0px 0px 0px;
}
.mini-event-title{
	display:flex;
	align-items:center;
	margin-bottom:28px;
	margin-top:28px;
}
.arrow-icon{
	font-size:20px;
	width:25px;
	text-align:center;
}
.p-235-style{
	font-size:14px;
	margin-bottom:0px;
	padding-bottom:0px;
}
.win-price-s{
	font-size:14px;
}
.p-232-style{
	font-size:20px;
}
.mini-faq-1-div{
	overflow:hidden;
	box-shadow:1.41px 1.41px 14px rgba(0,0,0,0.08);
}
.mini-faq-2-header{
	border-width:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	border-radius:0px 0px 0px 0px!important;
}
.mini-faq-1-question{
	font-size:1.4em;
	padding:20px 20px 20px 20px;
	border-radius:0px 0px 0px 0px;
	border-width:0px 0px 2px 0px;
	border-style:solid;
	border-color:rgba(192,192,192,0.14)!important;
}
.mini-faq-1-body{
	padding:20px 15px 20px 15px;
}
.p-22-style{
	font-size:1.1em;
}
.gl-navbar-right{
	width:50%;
}
.scroll-to-top-btn-icon{
	stroke-linecap:round;
	stroke-width:6;
}
.win-card-photo{
	width:50%;
	margin-left:auto;
	margin-right:auto;
}
.win-size-icon{
	margin-bottom:30px;
	width:128px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-2628:rgba(255,255,255,1.00);
	
	--swatch-var-1843:rgba(245,245,245,1.00);
	
	--swatch-var-3568:rgba(41,41,41,1.00);
	
	--swatch-var-4961:rgba(40,40,40,1.00);
	
	--swatch-var-5803:rgba(16,16,16,1.00);
	
	--swatch-var-4497:rgba(32,32,32,1.00);
	
	--swatch-var-779:rgba(232,19,19,1.00);
	
	--swatch-var-5617:rgba(255,242,244,1.00);
	
	--swatch-var-3131:rgba(238,238,238,1.00);
	
	--swatch-var-3031:rgba(42,59,135,1.00);
	
	--swatch-var-6018:#BEE2FF;
	
	--swatch-var-3881:rgba(77,116,205,1.00);
	
	--swatch-var-3840:rgba(212,212,212,1.00);
	
	--swatch-var-5677:rgba(72,205,20,1.00);
	
	--swatch-var-5556:rgba(255,255,255,1.00);
	
	--swatch-var-2726:rgba(106,224,60,1.00);
	
	--swatch-var-2803:rgba(232,63,63,1.00);
	
	--swatch-var-7133:rgba(131,131,131,1.00);
	
	--swatch-var-7669:#0066CC;
	
	--swatch-var-5545:rgba(0,136,255,1.00);
	
	--swatch-var-633:rgba(243,245,255,1.00);
	
	--swatch-var-2505:rgba(82,82,82,1.00);
	
	--swatch-var-6657:rgba(221,240,255,1.00);
	
}


/* Background colour styles */

.bgc-6657{
	background-color:var(--swatch-var-6657);
}
.bgc-2628{
	background-color:var(--swatch-var-2628);
}
.bgc-1843{
	background-color:var(--swatch-var-1843);
}

/* Text colour styles */

.tc-4961{
	color:var(--swatch-var-4961)!important;
}
.tc-5803{
	color:var(--swatch-var-5803)!important;
}
.bgc-2628{
	background-color:var(--swatch-var-2628);
}
.tc-7669{
	color:var(--swatch-var-7669)!important;
}
.tc-4497{
	color:var(--swatch-var-4497)!important;
}
.tc-2628{
	color:var(--swatch-var-2628)!important;
}
.tc-3568{
	color:var(--swatch-var-3568)!important;
}
.tc-3881{
	color:var(--swatch-var-3881)!important;
}

/* Link colour styles */

.ltc-779{
	color:var(--swatch-var-779)!important;
}
.ltc-779:hover{
	color:#B50000!important;
}
.ltc-5803{
	color:var(--swatch-var-5803)!important;
}
.ltc-5803:hover{
	color:#000000!important;
}
.ltc-3881{
	color:var(--swatch-var-3881)!important;
}
.ltc-3881:hover{
	color:#1A419A!important;
}

/* Icon colour styles */

.icon-779{
	color:var(--swatch-var-779)!important;
	border-color:var(--swatch-var-779)!important;
}

/* Bloc image backgrounds */

.bg-services-win-a-24413886-l{
	background-image:url("img/services_win_a_24413886_l.jpg");
	background-image: -webkit-image-set(url("img/services_win_a_24413886_l.webp") 1x,
url("img/services_win_a_24413886_l.webp") 2x);background-image: image-set(url("img/services_win_a_24413886_l.jpg") 1x,
url("img/services_win_a_24413886_l.jpg") 2x,url("img/services_win_a_24413886_l.webp") 1x,
url("img/services_win_a_24413886_l.webp") 2x);
}
.bg-kitchen-p-94920509{
	background-image:url("img/kitchen_p_94920509.jpg");
	background-image: -webkit-image-set(url("img/kitchen_p_94920509.webp") 1x,
url("img/kitchen_p_94920509.webp") 2x);background-image: image-set(url("img/kitchen_p_94920509.jpg") 1x,
url("img/kitchen_p_94920509.jpg") 2x,url("img/kitchen_p_94920509.webp") 1x,
url("img/kitchen_p_94920509.webp") 2x);
}

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

/* * Swiper for Blocs * Version 3.0.8 * Code by Lucas Tsolakian * ©2022 Archetypon */ /* @group General */.sf-wrapper {
		height: 100%;
		min-height: 100%;
}
.sf-container {
		width: 100%;
		height: 100%;
		transition: height .7s ease;
}
.sf-slide {
		width: 100%;
		height: auto;
		transition: height .7s ease;
}
.sf-inner-image img {
		width: 100%;
		height: auto;
		object-fit: cover;
		transition: height .7s ease;
}
.sf-height {
		height: 350px;
		transition: height .7s ease;
}
@media (max-width: 1199.98px) {
		.sf-height {
			transition: height .7s ease;
	}
}@media (max-width: 991.98px) {
		.sf-height {
			transition: height .7s ease;
	}
}@media (max-width: 767.98px) {
		.sf-height {
			transition: height .7s ease;
	}
}@media (max-width: 575.98px) {
		.sf-height {
			transition: height .7s ease;
	}
}.sf-parallax-bg {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 350px;
		overflow: hidden;
		background-position: center;
		object-position: center 50%;
		object-fit: cover;
}
.sf-parallax-bg img {
		width: 100%;
		height: 350px;
		object-fit: cover;
		transition: left .7s;
}
.sf-parallax-bg.hidden {
		display: none;
}
.sf-container {
		margin-left: auto;
		margin-right: auto;
		/*overflow: hidden !important;
	*/	top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0);
		width: 100%;
}
.sf-slide, .sf-wrapper {
		position: relative;
		height: 100%;
		width: 100%}.sf-bric-container.hidden {
		display: none;
}
custom-bric-container {
		z-index: 999;
		width: 100%;
}
.sf-overlay {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		/*z-index: 999;
	*/}.sf-display {
		display: block;
}
.sf-hidden {
		display: none;
}
.swiper-container-no-flexbox .sf-slide {
		float: left}.swiper-container-vertical > .sf-wrapper {
		-webkit-box-orient: vertical;
		-moz-box-orient: vertical;
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column}.sf-wrapper {
		z-index: 1;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-transition-property: -webkit-transform;
		-moz-transition-property: -moz-transform;
		-o-transition-property: -o-transform;
		-ms-transition-property: -ms-transform;
		transition-property: transform;
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
		box-sizing: content-box}.swiper-container-android .swiper-slide, .sf-wrapper {
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		-o-transform: translate(0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)}.swiper-container-multirow > .sf-wrapper {
		-webkit-box-lines: multiple;
		-moz-box-lines: multiple;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap}.swiper-container-free-mode > .sf-wrapper {
		-webkit-transition-timing-function: ease-out;
		-moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
		-o-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
		margin: 0 auto}.sf-container {
		flex-direction: column;
}
.swiper-slide {
		-webkit-flex-shrink: 0;
		-ms-flex: 0 0 auto;
		flex-shrink: 0;
		position: absolute;
		top: 0;
		left: 0;
		border: none;
		z-index: 0;
}
.swiper-slide.sf-preview {
		z-index: 1;
}
.slide-inner-image img {
		display: block;
		width: 100%;
		object-fit: cover}.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
		height: auto}.swiper-container-autoheight .sf-wrapper {
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-transition-property: -webkit-transform,height;
		-moz-transition-property: -moz-transform;
		-o-transition-property: -o-transform;
		-ms-transition-property: -ms-transform;
		transition-property: transform,height}.swiper-container .swiper-notification {
		position: absolute;
		left: 0;
		top: 0;
		pointer-events: none;
		opacity: 0;
		z-index: -1000}.swiper-wp8-horizontal {
		-ms-touch-action: pan-y;
		touch-action: pan-y}.swiper-wp8-vertical {
		-ms-touch-action: pan-x;
		touch-action: pan-x}/* @end *//* @group Navigation */.sf-buttons {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
}
.sf-button-next, .sf-button-prev {
		cursor: pointer !important;
		-moz-background-size: 27px 44px !important;
		-webkit-background-size: 27px 44px !important;
		background-size: 27px 44px !important;
		background-position: center;
		background-repeat: no-repeat;
		z-index: 1;
}
.sf-button-next.hide, .sf-button-prev.hide {
		display: none;
}
.sf-button-next.show, .sf-button-prev.show {
		display: block !important;
}
.sf-button-next:focus, .sf-button-prev:focus {
		outline: none;
}
.sf-button-next.swiper-button-disabled, .sf-button-prev.swiper-button-disabled {
		opacity: .35;
		cursor: auto;
		pointer-events: none}.sf-button-next {
		align-self: right;
		height: 15px !important;
		width: 15px !important;
		border: 10px solid #fff;
		border-width: 2px 2px 0 0 !important;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-right: 30px;
}
.sf-button-next:hover, .sf-button-prev:hover {
		opacity: .7;
		transition: opacity .5s ease}.sf-button-prev {
		height: 15px !important;
		width: 15px !important;
		border: 10px solid #fff;
		border-width: 0 0 2px 2px !important;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-left: 25px;
}
/* @end *//* @group 3D etc */.sf-slide .slide-inner, .sf-slide .slide-inner .slide-inner-image {
		width: 100%;
		height: 100%;
		position: absolute}.sf-slide {
		overflow: hidden}.sf-slide .slide-inner {
		left: 0;
		top: 0;
}
.sf-slide .slide-inner-image {
		background-size: cover;
		background-position: center;
			/*-webkit-transition: opacity .6s ease-in-out,transform 2s ease .7s;
		-moz-transition: opacity .6s ease-in-out,transform 2s ease .7s;
		transition: opacity .6s ease-in-out,transform 2s ease .7s*/}.tm-image-zoom {
		transform: scale(1.07);
		-webkit-transition: opacity .6s ease-in-out,transform 2s ease .7s;
		-moz-transition: opacity .6s ease-in-out,transform 2s ease .7s;
		transition: opacity .6s ease-in-out,transform 2s ease .7s}.swiper-slide-active .slide-inner-image, .swiper-slide-duplicate-active .slide-inner-image {
		opacity: 1;
		transform: scale(1)}.swiper-container-3d {
		-webkit-perspective: 1200px;
		-moz-perspective: 1200px;
		-o-perspective: 1200px;
		perspective: 1200px}.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .sf-wrapper {
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-ms-transform-style: preserve-3d;
		transform-style: preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 10}.swiper-container-3d .swiper-slide-shadow-left {
		background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
		background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right {
		background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
		background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top {
		background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
		background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom {
		background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
		background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
		background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .sf-wrapper, .swiper-container-flip .sf-wrapper {
		-ms-perspective: 1200px}.swiper-container-cube, .swiper-container-flip {
		overflow: visible}.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
		pointer-events: none;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		z-index: 1}.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
		pointer-events: none}.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
		pointer-events: auto}.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
		z-index: 0;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden}.swiper-container-cube .swiper-slide {
		visibility: hidden;
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		transform-origin: 0 0;
		width: 100%;
		height: 100%}.swiper-container-cube.swiper-container-rtl .swiper-slide {
		-webkit-transform-origin: 100% 0;
		-moz-transform-origin: 100% 0;
		-ms-transform-origin: 100% 0;
		transform-origin: 100% 0}.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next+.swiper-slide, .swiper-container-cube .swiper-slide-prev {
		pointer-events: auto;
		visibility: visible}.swiper-container-cube .swiper-cube-shadow {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: .6;
		-webkit-filter: blur(50px);
		filter: blur(50px);
		z-index: 0}.swiper-container-fade.swiper-container-free-mode .swiper-slide {
		-webkit-transition-timing-function: ease-out;
		-moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
		-o-transition-timing-function: ease-out;
		transition-timing-function: ease-out}.swiper-container-fade .swiper-slide {
		pointer-events: none;
		-webkit-transition-property: opacity;
		-moz-transition-property: opacity;
		-o-transition-property: opacity;
		transition-property: opacity}.swiper-container-fade .swiper-slide .swiper-slide {
		pointer-events: none}.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
		pointer-events: auto}.swiper-zoom-container {
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		text-align: center}.swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain}.swiper-scrollbar {
		border-radius: 10px;
		position: relative;
		-ms-touch-action: none;
		background: rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar {
		position: absolute;
		left: 1%;
		bottom: 3px;
		z-index: 50;
		height: 5px;
		width: 98%}.swiper-container-vertical>.swiper-scrollbar {
		position: absolute;
		right: 3px;
		top: 1%;
		z-index: 50;
		width: 5px;
		height: 98%}.swiper-scrollbar-drag {
		height: 100%;
		width: 100%;
		position: relative;
		background: rgba(0,0,0,.5);
		border-radius: 10px;
		left: 0;
		top: 0}.swiper-scrollbar-cursor-drag {
		cursor: move}.swiper-lazy-preloader {
		width: 42px;
		height: 42px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -21px;
		margin-top: -21px;
		z-index: 10;
		-webkit-transform-origin: 50%;
		-moz-transform-origin: 50%;
		transform-origin: 50%;
		-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
		-moz-animation: swiper-preloader-spin 1s steps(12,end) infinite;
		animation: swiper-preloader-spin 1s steps(12,end) infinite}@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg)}}@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg)}}/* @end *//* @group Info */.sf-slide-caption {
		/*position*/	position: absolute;
		top: 0;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
		align-content: center;
		flex: 1;
	    /*style*/	padding: 20px;
		color: #fff;
		opacity: 1;
}
.swiper-slide-active .sf-slide-caption {
		opacity: 1;
		transition: opacity 1s ease 1s}.sf-caption {
		font-size: 2em;
		color: #FFFFFF;
		transition: text-align .3s ease-in-out;
		transition: font-size .3s ease-in-out}.sf-caption {
		font-size: 2em;
}
.sf-caption.hidden {
		display: none !important;
}
.caption-top-left {
		align-self: flex-start;
}
.caption-top-center {
		text-align: center;
}
.caption-top-right {
		align-self: flex-end;
		text-align: right;
}
.caption-bottom-left {
		justify-content: flex-end;
}
.caption-bottom-right {
		justify-content: flex-end;
		text-align: right;
}
.caption-bottom-center {
		justify-content: flex-end;
		text-align: center;
}
.caption-center {
		align-items: strech;
		text-align: center;
		justify-content: center;
}
/* @end *//* @group Pagination  */.sf-timeline-top {
		top: 0;
		position: absolute;
		left: 0;
		right: 0;
		display: block;
		z-index: 999;
		width: 100%;
		height: 4px;
		margin: 0;
}
.sf-timeline-bottom {
		bottom: 0;
		position: absolute;
		left: 0;
		right: 0;
		display: block;
		z-index: 999;
		width: 100%;
		height: 4px;
		margin: 0;
}
.sf-fraction {
		font-size: 1em;
		color: #FFFFFF;
}
.sf-fraction .hide {
		display: none;
}
.sf-fraction-left {
		text-align: left !important;
		padding-left: 20px;
}
.sf-fraction-right {
		text-align: right !important;
		padding-right: 40px;
}
.sf-bullets, .swiper-pagination-bullet, .swiper-pagination-bullet-active {
		outline: none !important;
}
/* @end *//* @group Link */.sf-link {
		text-decoration: none;
		visibility: visible;
		letter-spacing: .15em}.sf-link.hidden, .close-box.hidden {
		display: none}/* @end *//* @group Close Box */.close-box {
		position: absolute;
		display: inline-block;
		top: 50px;
		z-index: 999;
		right: 30px;
		width: 30px;
		height: 20px;
		vertical-align: middle}.close-box_line_1, .close-box_line_2 {
		position: absolute;
		width: 30px;
		height: 3px;
		margin: 0;
		background-color: #fff;
		transition: background-color .3s ease}.close-box_line_1 {
		top: 8px;
		-webkit-transform: translate3d(0,-8px,0) rotate(45deg);
		transform: translate3d(0,-8px,0) rotate(45deg)}.close-box_line_2 {
		top: 8px;
		-webkit-transform: translate3d(0,-8px,0) rotate(-45deg);
		transform: translate3d(0,-8px,0) rotate(-45deg)}/* @end */
/* = Additional CSS
-------------------------------------------------------------- */
/*globallife*/
.hamburger::after { content: "Menu";color: #ffffff;display: block;font-size:11px;font-family: "NotoSansCjkJpSubMed";}
.menu-contents-container {
width: calc(100% - 70px);}
.service-contact #g-cta{display: none;
}

/*default*/

/* iPhoneのSafariブラウザー用 */
textarea.form-control::-webkit-input-placeholder, input.form-control::-webkit-input-placeholder {
     color: #bbb !important;
}
/* モバイル端末以外のブラウザー用 */
textarea.form-control::-webkit-input-placeholder, input.form-control::placeholder {
   color: #bbb !important;
}
/*  */
.nav-item.fadeIn {
	animation-name: none;
}
.sidebar-nav.gp-nav {
	width: 300px!important;max-width:90%;
}
.open.nav-special.sidebar-nav{
	transition: all .05s linear;
}
.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .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%;}
    .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)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .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){
	h1{
		font-size:40px;
		line-height:48px;
	}
	h2{
		font-size:30px;
		line-height:38px;
	}
	h3{
		font-size:23px;
		line-height:31px;
	}
	h4{
		font-size:20px;
		line-height:28px;
	}
	.globallife-bottom-margin{
		width:48%;
		padding:15px 15px 15px 15px;
	}
	.globallife-facility-column{
		margin-right:auto;
		margin-left:auto;
	}
	.navbar-brand{
		font-size:23px;
	}
	.globallife-navigation-link{
	}
	.globallife-header-link{
		font-size:15px;
	}
	.globallife-header-icon{
		font-size:25px;
	}
	.globallife-service-column{
		margin-bottom:0px;
	}
	h5{
		font-size:20px;
		line-height:28px;
	}
	h6{
		font-size:20px;
		line-height:28px;
	}
	.globallife-button-phone{
	}
	.hamburger{
	}
	.hamburger::after{
	}
	.globallife-button-light{
		padding:6px 24px 6px 24px;
	}
	.globallife-button-big{
	}
	.section-title{
		text-align:center;
		font-size:1.8rem;
	}
	.section-subtitle{
		text-align:left;
	}
	.flow-col{
		flex-wrap:wrap;
		display:none;
	}
	.flow-card{
		flex-direction:column;
		width:50%;
	}
	.flow-card-up{
		height:300px;
		width:100%;
	}
	.flow-card-bottom{
	}
	.flow-fig-box{
		padding-bottom:1rem;
	}
	.flow-col-m{
		flex-wrap:wrap;
	}
	.flow-card-m{
	}
	.flow-fig-title-m{
		width:100%;
		padding-left:5rem;
		padding-right:5rem;
	}
	.flow-fig-box-m{
	}
	.flow-fig-body-m{
		column-gap:15px;
	}
	.flow-fig-body-m-left{
		width:20%;
		padding-bottom:1rem;
		padding-top:1rem;
		background-size:auto auto;
		background-position:center center;
	}
	.m-left-start{
		background-image:url("img/flow-m-v-line-2.png");
	background-image: -webkit-image-set(url("img/flow-m-v-line-2.webp") 1x,
url("img/flow-m-v-line-2.webp") 2x);background-image: image-set(url("img/flow-m-v-line-2.png") 1x,
url("img/flow-m-v-line-2.png") 2x,url("img/flow-m-v-line-2.webp") 1x,
url("img/flow-m-v-line-2.webp") 2x);
		background-size:15px 50px;
		background-repeat:no-repeat;
		background-position:center bottom;
	}
	.flow-fig-body-m-icon{
		background-image:url("img/flow_start.svg");
	}
	.flow-fig-body-m-right{
		padding-top:1rem;
		padding-bottom:1rem;
	}
	.flow-content-m{
		font-size:0.9375rem;
	}
	.m-left-step{
		background-image:url("img/flow-m-v-line.png");
	background-image: -webkit-image-set(url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);background-image: image-set(url("img/flow-m-v-line.png") 1x,
url("img/flow-m-v-line.png") 2x,url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);
	background-image: -webkit-image-set(url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);background-image: image-set(url("img/flow-m-v-line.png") 1x,
url("img/flow-m-v-line.png") 2x,url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);
		background-size:15px 15px;
		background-repeat:repeat-y;
		background-position:center center;
	}
	.m-left-end{
		background-image:url("img/flow-m-v-line.png");
	background-image: -webkit-image-set(url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);background-image: image-set(url("img/flow-m-v-line.png") 1x,
url("img/flow-m-v-line.png") 2x,url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);
	background-image: -webkit-image-set(url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);background-image: image-set(url("img/flow-m-v-line.png") 1x,
url("img/flow-m-v-line.png") 2x,url("img/flow-m-v-line.webp") 1x,
url("img/flow-m-v-line.webp") 2x);
		background-size:15px 50px;
		background-repeat:no-repeat;
		background-position:center top;
	}
	.flow-line{
		display:none;
	}
	.faq-10-box{
		padding:1.5rem 1.5rem 1.5rem 1.5rem;
	}
	.faq-question-title{
		font-size:1.3em;
	}
	.h6-style{
		font-size:1.3rem;
	}
	.qa-title-col{
	}
	.flow-fig-title-m-head{
		width:100%;
		padding-left:5rem;
		padding-right:5rem;
	}
	.mini-text-logo{
	}
	.mini-large-p{
		font-size:1.2em;
	}
	.mini-footer-1-form{
		flex-direction:row;
		align-items:flex-start;
	}
	.mini-form-field{
		text-align:center;
	}
	.mini-small-link{
		margin-right:0px;
		margin-left:0px;
	}
	.top-service-list-title{
		margin-top:9px;
	}
	.icon-nav{
		padding:8px 8px 8px 8px;
	}
	.icon-nav-wrap{
		padding:8px 8px 8px 8px;
		background-color:var(--swatch-var-6657);
		width:64px;
	}
	.globallife-logo{
		width:200px;
	}
	.globallfe-nav-button{
		width:40px;
	}
	.globallife-nav-button-wrap{
		width:100px;
	}
	.menu-contents-container{
	}
	.top-carousel{
		height:500px;
	}
	.service-detail-button{
	}
	.service-image-photo{
		border-bottom-left-radius:66px;
		border-top-right-radius:66px;
	}
	.h1-style{
		font-size:36px;
	}
	.cta-button-right{
		font-size:17px;
	}
	.footer-col{
	}
	.h2-style{
		font-size:40px;
	}
	.mini-event-border{
	}
	.mini-step-number{
		font-size:2em;
	}
	.grid-38494-style{
		grid-template-columns:0.60fr 1fr;
	}
	.mini-feature-colors{
	}
	.mini-feature-color-1{
		min-width:128px;
		max-width:128px;
		min-height:128px;
		max-height:128px;
	}
	.mini-feature-color-2{
		min-width:128px;
		min-height:128px;
		max-width:128px;
		max-height:128px;
		top:24%;
	}
	.mini-feature-color-3{
		min-width:128px;
		max-width:128px;
		min-height:128px;
		max-height:128px;
		top:45%;
		left:20%;
	}
	.mini-responsive-icon{
		font-size:50px;
	}
	.divider-style{
		height:100px;
	}
	.black-button{
	}
	.mini-win-card{
		padding:28px 28px 28px 28px;
	}
	.mini-win-image{
		max-width:80px;
		margin-right:20px;
	}
	.pricing-4-card{
		padding-left:28px;
		padding-right:28px;
	}
	.mini-4-pricing-title{
		font-size:1.5rem;
		padding-right:20px;
	}
	.mini-pricing-4-desc{
		font-size:1em;
	}
	.mini-background-off-white{
		border-width:0px 0px 0px 0px;
	}
	.mini-pricing-1{
	}
	.mini-pricing-1-left-card{
		padding:40px 20px 40px 24px;
	}
	.mini-pricing-1-card{
		padding:40px 40px 40px 40px;
		width:328px;
	}
	.mini-pricing-1-right-card{
		padding:40px 24px 40px 20px;
	}
	.mini-pricing-6{
		padding:40px 20px 40px 24px;
	}
	.mini-pricing-6-main{
		padding:40px 40px 40px 40px;
	}
	.mini-pricing-3-navtabs{
		margin-bottom:28px;
		margin-top:14px;
	}
	.pricing-3-card-grid{
		padding:40px 40px 40px 40px;
	}
	.single-feature-card{
		width:50%;
		margin-top:40px;
	}
	.single-feature-sonota-wrap{
		margin-top:50px;
	}
	.single-feature-heading{
		text-align:center;
	}
	.mini-faq-1-question{
		font-size:1.3em;
	}
	
	/* MD Row Margin Offsets */
	.voffset-md{
		margin-top:30px;
	}
	
}

@media (max-width: 767px){
	h1{
		font-size:35px;
		line-height:43px;
	}
	h2{
		font-size:28px;
		line-height:36px;
	}
	h3{
		font-size:21px;
		line-height:29px;
	}
	h4{
		font-size:18px;
		line-height:26px;
	}
	p{
		font-size:15px;
		line-height:23px;
	}
	.navbar-brand{
		font-size:22px;
	}
	.globallife-navigation-link{
	}
	.globallife-navbar{
		padding-top:5px;
		padding-bottom:5px;
	}
	.globallife-header-link{
		font-size:14px;
	}
	.globallife-header-icon{
		width:35px;
	}
	.globallife-service-column{
		margin-bottom:15px;
	}
	.globallife-navigation-button{
		margin-left:0px;
	}
	h5{
		font-size:18px;
		line-height:26px;
	}
	h6{
		font-size:18px;
		line-height:26px;
	}
	.globallife-facility-icon{
	}
	.top-nav{
		display:flex;
		align-items:center;
		justify-content:flex-end;
	}
	.icon-nav{
		width:64px;
		padding:8px 8px 8px 8px;
	}
	.icon-nav-row{
	}
	.globallife-button-phone{
		width:45%;
		font-size:13px;
		padding:10px 10px 10px 10px;
	}
	.globallife-button-light{
		font-size:13px;
		padding:6px 18px 6px 18px;
	}
	.globallife-button-big{
		width:45%;
		font-size:13px;
		padding:10px 10px 10px 10px;
	}
	.flow{
		flex-direction:row;
	}
	.section-title{
		text-align:center;
		font-size:1.6rem;
		line-height:2rem;
	}
	.flow-card{
		width:100%;
	}
	.flow-card-up{
		height:320px;
	}
	.flow-fig-box{
		display:flex;
	}
	.flow-fig-box-m{
		display:flex;
		text-align:left;
	}
	.flow-fig-body-m-left{
		width:25%;
	}
	.flow-fig-body-m-right{
	}
	.faq-10-box{
		padding:1.2rem 1.2rem 1.2rem 1.2rem;
	}
	.faq-question-title{
		font-size:1.1em;
	}
	.stretched-link{
	}
	.scroll-image{
		width:80%;
	}
	.flow-fig-title-m{
		padding-right:4rem;
		padding-left:4rem;
	}
	.h6-style{
		font-size:1.2rem;
	}
	.flow-fig-title-m-head{
		padding-right:4rem;
		padding-left:4rem;
	}
	.mini-footer-1-form{
		align-items:flex-start;
	}
	.mini-form-field{
	}
	.footer-7-links-small{
		flex-direction:column;
		align-items:center;
	}
	.mini-small-link{
		margin-right:0px;
	}
	.h3-style{
		font-size:16px;
	}
	.globallife-bottom-margin{
		width:50%;
	}
	.top-service-list-title{
		margin-top:9px;
	}
	.icon-nav-wrap{
		width:28%;
		padding:8px 8px 8px 8px;
		align-items:center;
		background-color:var(--swatch-var-6657);
	}
	.globallife-logo{
		width:180px;
	}
	.menu-contents-container{
	}
	.globallfe-nav-button{
		width:40px;
	}
	.globallife-nav-button-wrap{
		width:90px;
	}
	.hamburger{
	}
	.top-catch{
		line-height:1.6em;
	}
	.service-detail-button{
		width:45%;
		font-size:13px;
		padding:10px 10px 10px 10px;
	}
	.service-sc{
		margin-top:20px;
	}
	.service-image-photo{
		border-bottom-left-radius:88px;
	}
	.h1-style{
		font-size:33px;
	}
	.cta-button-left{
		font-size:17px;
	}
	.cta-button-right{
		font-size:17px;
	}
	.mini-event-border{
		padding-right:8px;
	}
	.mini-date-border{
		border-right-width:0px;
		margin-right:0px;
		padding-right:0px;
	}
	.full-width{
	}
	.grid-38494-style{
		grid-template-columns:0.65fr 1fr;
	}
	.mini-feature-color-1{
		left:10%;
	}
	.mini-feature-color-2{
		right:10%;
	}
	.mini-feature-color-3{
		left:28%;
		top:47%;
	}
	.divider-style{
		height:70px;
	}
	.win-price{
		font-size:1.4em;
	}
	.pricing-4-card{
		height:100px;
		margin-bottom:10px;
		margin-right:0px;
	}
	.mini-background-off-white{
		border-width:0px 0px 0px 0px;
	}
	.mini-pricing-1{
		flex-direction:column;
	}
	.mini-pricing-1-left-card{
		padding:35px 28px 35px 28px;
		width:328px;
		border-radius:auto auto auto auto!important;
		border-width:1px 1px 1px 1px;
	}
	.mini-pricing-1-card{
		box-shadow:0.00px 0.00px 28px rgba(0,0,0,0.14);
		margin-top:28px;
		margin-bottom:28px;
	}
	.mini-pricing-1-right-card{
		padding:35px 28px 35px 28px!important;
		border-radius:0px 0px 0px 0px!important;
		border-width:1px 1px 1px 1px;
		width:328px;
	}
	.mini-pricing-6{
		padding:35px 28px 35px 28px;
		border-width:1px 1px 1px 1px;
	}
	.mini-pricing-6-main{
		box-shadow:0.00px 0.00px 28px rgba(0,0,0,0.14);
		margin-top:28px;
		margin-bottom:28px;
	}
	.mini-pricing-3-navtabs{
		margin-top:14px;
		margin-bottom:28px;
	}
	.pricing-3-card-grid{
		padding:28px 28px 28px 28px;
	}
	.single-feature-card{
		width:50%;
		margin-top:40px;
	}
	.mini-faq-1-question{
		font-size:1.2em;
	}
	.blocsapp-special-menu blocsnav{
		width:300px;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
}

@media (max-width: 575px){
	h1{
		font-size:30px;
		line-height:38px;
	}
	h2{
		font-size:25px;
		line-height:33px;
	}
	h3{
		font-size:20px;
		line-height:28px;
	}
	h4{
		font-size:17px;
		line-height:25px;
	}
	.navbar-brand{
		font-size:20px;
	}
	.globallife-white-button{
	}
	.globallife-contact-header{
		padding:10px 10px 10px 10px;
	}
	h5{
		font-size:17px;
		line-height:25px;
	}
	h6{
		font-size:17px;
		line-height:25px;
	}
	.icon-nav{
		padding:6px 6px 6px 6px;
		width:64px;
	}
	.globallife-bottom-margin{
		padding:10px 10px 10px 10px;
		margin-bottom:60px;
		width:100%;
	}
	.flow{
		align-items:stretch;
		flex-direction:row;
	}
	.section-title{
		text-align:center;
		font-size:1.25rem;
		line-height:1.7rem;
	}
	.flow-col{
		row-gap:50px;
	}
	.flow-card{
		height:600px;
		justify-content:space-between;
		padding-left:0px;
		padding-right:0px;
		width:100%;
	}
	.flow-card-up{
		flex-direction:column;
		align-items:flex-start;
		justify-content:flex-start;
		height:350px;
	}
	.flow-card-bottom{
		align-items:center;
	}
	.flow-col-m{
		row-gap:0px;
		padding:0rem 0.33rem 0rem 0.33rem;
	}
	.flow-fig-box-m{
		padding:0.5rem 05px 0.5rem 0.5rem;
		font-size:0.9rem;
		margin-bottom:0px;
	}
	.flow-fig-body-m{
		column-gap:10px;
		margin:0rem 0rem 0rem 0rem;
		padding-top:1rem;
		padding-bottom:1rem;
	}
	.flow-fig-body-m-left{
		width:25%;
	}
	.m-left-start{
		background-size:15px 75%;
	}
	.flow-fig-body-m-right{
		font-size:0.875rem;
	}
	.flow-content-m{
		font-size:0.9375rem;
		margin-bottom:0px;
		padding-bottom:0px;
	}
	.faq-10-box{
		padding:1rem 0rem 1rem 0rem;
	}
	.faq-question-title{
		font-size:1em;
	}
	.flow-fig-title-m{
		padding-left:1rem;
		padding-right:1rem;
	}
	.flow-card-m{
	}
	.h6-style{
		font-size:1rem;
	}
	.qa-title-col{
		display:flex;
		flex-direction:column;
	}
	.flow-fig-title-m-head{
		padding-left:1rem;
		padding-right:1rem;
	}
	.mini-text-logo{
	}
	.mini-large-p{
		font-size:1.1em;
	}
	.mini-footer-1-form{
		align-items:stretch;
		flex-direction:column;
	}
	.mini-form-field{
		min-width:100%;
	}
	.mini-small-link{
	}
	.top-service-list-title{
		margin-top:9px;
	}
	.globallife-button-light{
		padding:4px 16px 4px 16px;
	}
	.icon-nav-row{
		justify-content:space-between;
	}
	.icon-nav-wrap{
		padding:6px 6px 6px 6px;
		width:28%;
		background-color:var(--swatch-var-6657);
	}
	.top-catch{
		font-size:17px;
		line-height:1.7em;
	}
	.top-lead{
		font-size:14px;
	}
	.hamburger{
	}
	.menu-contents-container{
	}
	.globallife-logo{
		width:150px;
	}
	.globallife-nav-button-wrap{
		width:80px;
	}
	.globallfe-nav-button{
		width:36px;
	}
	.service-sc{
		margin-top:20px;
	}
	.service-image-photo{
		border-bottom-left-radius:66px;
	}
	.h1-style{
		font-size:30px;
	}
	.globallife-button-phone{
		width:45%;
		margin-bottom:20px;
	}
	.cta-button-left{
		width:90%;
		font-size:17px;
	}
	.cta-button-right{
		font-family:"NotoSansCjkJpSubMed";
		font-size:17px;
		width:90%;
	}
	.h4-style{
		font-size:16px;
	}
	.h1-service-contact-style{
		font-size:36px;
	}
	.h1-pp-style{
		font-size:28px;
	}
	.h2-style{
		font-size:35px;
	}
	.globallife-navigation-link:hover{
	}
	.globallife-navigation-link{
	}
	.globallife-navigation-link:active{
	}
	.global-radius{
	}
	.mini-event-type{
		margin-left:auto;
		display:inline-block;
	}
	.mini-event-date-switcher{
		flex-direction:row;
		align-items:center;
	}
	.grid-38494-style{
		grid-template-columns:1fr;
	}
	.mini-feature-colors{
		height:280px;
	}
	.mini-feature-color-1{
		top:0%;
		left:0%;
	}
	.mini-feature-color-2{
		top:14%;
		right:0%;
	}
	.mini-feature-color-3{
		left:20%;
		top:34%;
	}
	.mini-responsive-icon{
		font-size:50px;
	}
	.divider-style{
		margin-left:auto;
		margin-right:auto;
		height:180px;
	}
	.mini-win-card{
		padding:20px 20px 20px 20px;
	}
	.mini-win-image{
		max-width:65px;
	}
	.pricing-4-card{
		padding-left:20px;
		padding-right:20px;
	}
	.mini-pricing-4-title-desc{
		flex-direction:column;
		align-items:flex-start;
	}
	.mini-pricing-4-desc{
		font-size:0.9em;
	}
	.pricing-4-all-card{
		padding:40px 40px 40px 40px;
	}
	.mini-background-off-white{
		border-width:0px 0px 0px 0px;
	}
	.mini-pricing-1{
	}
	.mini-pricing-1-left-card{
		width:100%;
		padding-top:28px;
		max-width:280px;
	}
	.mini-pricing-1-card{
		width:100%;
		max-width:328px;
	}
	.mini-pricing-1-right-card{
		width:100%;
		padding-bottom:28px;
		max-width:280px;
	}
	.mini-pricing-6{
		width:100%;
		padding-top:28px;
	}
	.mini-pricing-6-main{
		width:100%;
	}
	.mini-pricing-3-navtabs{
		margin-right:auto;
	}
	.pricing-3-card-grid{
	}
	.single-feature-card{
		width:100%;
		padding-right:0px;
		margin-top:40px;
	}
	.h1-service-top-style{
		font-size:20px;
	}
	.single-service-img{
	}
	.single-feature-heading{
		padding:4px 15px 4px 15px;
	}
	.faq-question-column{
	}
	.mini-faq-1-question{
		font-size:1.1em;
	}
	.globallife-navbar{
	}
	
}

