@charset "utf-8";

/* Wordpress ui fixed */
#wpadminbar {
	position:fixed !important;
	top:auto !important;
	bottom:0;
}

/* Let's get this party started */
/*
::-webkit-scrollbar {
    width:6px;
	height:6px;
}
*/
/* Track */
/*
::-webkit-scrollbar-track {
	background:#EEE;
}
*/
/* Handle */
/*
::-webkit-scrollbar-thumb {
	border-radius:4px;
	background:#BBB;
}
::-webkit-scrollbar-thumb:window-inactive {
	border-radius:4px;
	background:#BBB;
}
*/
@media only screen and (max-width:768px) {
	/* Let's get this party started */
/*
	::-webkit-scrollbar {
		width:4px;
	}
*/
	/* Track */
/*
	::-webkit-scrollbar-track {
		background:rgba(255,255,255,0.2);
	}
*/
	/* Handle */
/*
	::-webkit-scrollbar-thumb {
		border-radius:0;
	}
	::-webkit-scrollbar-thumb:window-inactive {
		border-radius:0;
	}
*/
}

/*================================================================
	Base Setting
================================================================*/
html,
body,
#wrap {
	overflow-x:hidden;
	width:100%;
	min-width: 320px;
}
body {
	line-height:2;
	font-family:"Noto Sans JP", "Noto Sans Japanese","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","sans-serif";
	font-size:16px;
	font-feature-settings:"palt";
	color:#222;
}
body img {
	width:auto;
	vertical-align:bottom;
}
body a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	text-decoration:none;
	color:inherit;
}
@media only screen and (min-width: 1025px) {
	body a,
	body a *,
	body :before,
	body :after {
		transition: 0.2s;
	}
	#globalLang { display: none; }
}
@media only screen and (max-width:1024px) {
	body { font-size:14px; }
	body a:hover img { opacity:1; }
	#globalHeader { display: none; }
}

::selection{
	background: #36c7d0;
	color: #ffffff;
}
::-moz-selection{
	background: #36c7d0;
	color: #ffffff;
}

/* #header
--------------------------------------------*/
#spMenu { display:none; }
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 320px;
	padding: 0 30px;
	background-color: #FFF;
	z-index: 100;
	transition: all 0.3s ease;
	box-shadow: 0px 1px 6px rgba(0,0,0,.1);
}
#header.bghidden {
	background-color:transparent;
/*	transition: all 0.8s ease;*/
	box-shadow:none;
	margin-top: 10px;
}
#gNav,
#gNav ul {
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:70px;
	font-weight: 700;
	font-size: 15px;
	}
#gNav ul a {
	color: #222;
	display:block;
	margin-left:2em;
	letter-spacing: 1px;
}
#logo {
	position: relative;
	width:100px;
	padding-top: 0.6em;
}

#gNav .contact a {
	color:#FFF;
	padding:0.2rem 1rem;
	background: #135aac;
	border: 1px solid #135aac;
	border-radius: 30px;
}
#gNav .contact a:hover{
	color:#135aac;
	background: #FFF;
	border: 1px solid #135aac;
/*	opacity: 0.8;*/
	transition: all 0.5s ease 0s;
}
.breadcrumbs {
	overflow-x:auto; 
	display: flex;
	position: absolute;
	margin-top: -50px;
	width: 100%;
	padding:0.5em 2em;
	font-size: 0.875em;
	/*
	text-shadow: 0 0 2px rgba(255,255,255,0.6);
	*/
	z-index: 99;
}
.breadcrumbs,
.breadcrumbs a {
	white-space: nowrap;
	color: rgba(0,0,0,0.6);
}
.breadcrumbs .current-item {
	color: rgba(0,0,0,0.9);
}

.subpage .breadcrumbs {
	top:300px;
	margin-top: -0;
}
.subpage .breadcrumbs,
.subpage .breadcrumbs a {
	color: rgba(255,255,255,0.5);
}
.subpage .breadcrumbs .current-item {
	color: rgba(255,255,255,0.9);
}


.breadcrumbs > span + span:before {
	content: "\0bb";
	margin: 0 0.5em;
}
.breadcrumbs a { text-decoration: underline; }
.breadcrumbs a:hover { text-decoration: none; }

@media only screen and (min-width:1024px) {
	/*下線*/
	#gNav ul a.linkunder {
		position: relative;
		display: inline-block;
		text-decoration: none;
	}
	#gNav ul a.linkunder::after {
		position: absolute;
		bottom: -4px;
		left: 0;
		content: '';
		width: 100%;
		height: 3px;
		background: #135aac;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .2s;
	}
	#gNav ul a.linkunder:hover::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

@media only screen and (max-width:1024px) {
	#spMenu {
		display:flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 50px;
		height: 50px;
		background: rgba(19,90,172,0.95);
	}
	#spMenu span,
	#spMenu:before,
	#spMenu:after {
		content: "";
		display: inline-block;
		position: absolute;
		width: 26px;
		height: 2px;
		background: #FFF;
		transition: 0.3s;
	}
	#spMenu:before { top: 14px; }
	#spMenu:after { bottom: 14px; }
	
	#spMenu.open { 
		background: rgba(19,90,172,0.95);
	}
	#spMenu.open:before,
	#spMenu.open:after {
		top: auto;
		bottom:auto;
		background: #FFF;
	}
	#spMenu.open:before { transform: rotate(45deg); }
	#spMenu.open:after { transform: rotate(-45deg); }
	#spMenu.open span { opacity: 0; }
	#spMenu.open + ul { display: block; }
	
	#header {
		padding-left:1em;
		padding-right: 0;
	}
	#header.bghidden {
		margin-top: 0;
	}
	#gNav { height:50px; }
	#gNav ul {
		display: none;
		position: absolute;
		top: 50px;
		right: 0;
		width: 100%;
		height: auto;
	}
	#gNav ul a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 50px;
		margin-left:0;
		padding: 0 1em;
		border-top: 1px solid rgba(255,255,255,0.2);
		/*background: #46aef7 linear-gradient(15deg, #46aef7, #1addbf);*/
		background: rgba(19,90,172,0.95);
		color: #FFF;
		border-radius: 0px;
	}
	#gNav li:first-of-type a { border: 0; }
	#gNav ul a:after {
		content: "";
		border-style: solid;
		border-width: 6px 0 6px 6px;
		border-color: transparent transparent transparent #FFF;
	}
	#gNav .contactNav a {
		justify-content: space-between;
		flex-direction: row-reverse;
		width: auto;
		padding: 0 1em;
		border-color: rgba(250,168,2,1.0);
 		background: rgba(250,168,2,0.9);
		font-size: inherit;
	}
	#gNav .contactNav a:after { display: none; }
	#logo {
		top: 3px;
		width:150px;
		height: 50px;
	}
	#logo {
			width:68px;
		}
	
	.breadcrumbs {
		top: 50px;
		margin-top: 0;
		padding:0.5em 1.2em;
		font-size: 10px;
	}
	.subpage .breadcrumbs { top:220px; }
}

/* #main
--------------------------------------------*/
#main {
	position: relative;
/*	padding-top: 60px;*/
}
@media only screen and (max-width:1024px) {
/*	#main { padding-top: 50px; }*/
	#header {background-color: #FFF;}
}

/* #footer
--------------------------------------------*/
#footer {
	padding:3rem;
	background: #f4f4f4;
	color:#aaaaaa;
}
#fNav,
#fNav ul {
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
}
#fNav ul {
	justify-content:flex-end;
	padding:1rem 0 3rem;
}
#fNav li { margin-left:2rem; }
#fNav a { color:#333333; }
#copy,
#copy span {
	display:block;
	text-align:right;	
}
#copy span {
	font-size:12px;
	opacity:0.8;
}
@media only screen and (max-width:1024px) {
	#footer {
		padding:1rem;
	}
	#footer img { width: 123px; }
	#fNav {
		flex-direction: column;
		align-items:center;
	}
	#fNav ul {
		justify-content:center;
		align-items:center;
		flex-wrap: wrap;
		padding:2em 0 1em;
	}
	#fNav li { margin:0 1em 1em; }

	#copy,
	#copy span {
		display:block;
		text-align:center;	
	}
	#copy span {
		font-size:12px;
		opacity:0.4;
	}
}


/* colorbox main
------------------*/
#cboxLoadingOverlay,
#cboxLoadingGraphic { display: none !important; }

#colorbox,
#cboxWrapper,
#cboxContent,
#cboxLoadedContent,
#cboxMain {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 320px;
	background: none !important;
	cursor: pointer;
}
#cboxMain,
#cboxInner {
	display: flex;
	justify-content: center;
	align-items: center;
}
#cboxInner {
	position: relative;
	width: 80%;
	height: 80%;
	max-width: 1120px;
	max-height: 730px;
}
#cboxInner .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
#cboxInner .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cboxMain #close {
	position:absolute;
	top: 17px;
	right:20px;
	width:50px;
	height:50px;
	cursor: pointer;
}
#cboxMain #close:before,
#cboxMain #close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 40px;
	margin: -20px 0 0 -1px;
	background: #FFF;
}
#cboxMain #close:before { transform: rotate(45deg); }
#cboxMain #close:after { transform: rotate(-45deg); }
@media only screen and (max-width:768px) {
	#cboxInner {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	#cboxMain #close {
		top: 0;
		right:0;
		width:50px;
		height:50px;
	}
	#cboxMain #close:before,
	#cboxMain #close:after {
		height: 27px;
		margin: -14px 0 0 -1px;
	}
}


/*================================================================
	subpage Setting 
================================================================*/
.subpage #header.bghidden {
	background-color:#FFF;
/*	transition: all 0.8s ease;*/
	box-shadow:none;
	margin-top: 0;
}
.subpage #main {
	padding-top: 70px;
}
#hero {
	position: relative;
	margin: 0;
	background: #135aac url("../img/kinesys3/bg_pattern.png") no-repeat 50% 40%;
	background-size: cover;
	color: #FFF;
	margin-bottom: 5%;
}
#hero .txt {
	height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.6;
	text-align: center;
/*	padding-top: 2%;*/
}
#hero .txt .title{
	font-size: 2.2em;
	font-weight: 900;
	letter-spacing: 0.2em;
}
#hero .txt .ff_eng{
	font-family: 'Roboto';
	font-size: 1.2em;
	font-weight: 900;
	letter-spacing: 0.2em;
}
#hero .txt .subtitle{
	color: #135aac;
	font-size: 1.2em;
	font-weight: 900;
	letter-spacing: 0.1em;
	background-color: #FFF;
	border-radius: 50px;
	margin: 1em 1em 0;
	padding: 0.2em 1em;
}
#breadcrumb { display: none; }
#breadcrumb ul{
	font-size:0.8em;
	letter-spacing: 0.1em;
	padding: 0 0 1em 1em;
	display: flex;
	align-items: center;
}
#breadcrumb a span{
	color: #FFF;
	border-bottom:1px solid #FFF;
	text-decoration: none;
}
#breadcrumb ul li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: 900;
	color: #CCC;
	margin: 0 0.5em;
	line-height: 1;
}
#breadcrumb ul li:first-child::before {
	display: none;
}

@media only screen and (max-width:1024px) {
	.subpage #main { 
		padding-top: 50px; 
	}
	#hero {
		background-size: 180%;
	}
	#hero .txt{
		height: 200px;
		padding: 5% 0;
	}
	#hero .txt .title{
		font-size: 1.8em;
	}
	#breadcrumb ul{
/*		padding: 0 1.5em 1em;*/
		display: none;
	}
}

/*------------------------------------------
	#footer bottomBan
------------------------------------------*/
.bottomBan {
	position: fixed;
	right: -150px;
	bottom: 20px;
	z-index: 100;
	transition: 0.5s;
}
.bottomBan a {
	overflow: hidden;
	display: block;
	width: 140px;
	height: 140px;
	background: url("../img/sale/ban_10off_arrow.webp")no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
.bottomBan a:hover {
	opacity: 0.7;
}
.bottomBan.active { 
	right: 10px; 
	opacity: 1;
}
.menuOpen .bottomBan { display: none !important; }
@media only screen and (max-width:990px) {
	.bottomBan { 
/*		display: none; */
		bottom: 10px;
	}
	.bottomBan a {
		width: 22vw;
		height: 22vw;
		max-width: 120px;
	}
}
.bottomBan.active {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

