@charset "UTF-8";

/*
（768px以上）タブレット以上の場合 タブレットを含む
@media (min-width:768px){}

横幅1080pxより大きいとき（PC表示）
@media (min-width:1080px){
}
*/


/****************************************************************************
 	global-header
****************************************************************************/
#global-header {
	width: 100%;
	position: fixed;
	z-index: 10000;
}
@media (min-width:768px){
	#global-header {
		height: 90px;
	}
}

/* white-bar
-----------------------------------------------------------*/
#global-header .white-bar {
	position: relative;
	width : -webkit-calc(100% - 85px) ;
	width : calc(100% - 85px) ;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	margin-left: 2%;
	margin-top: 15px;
	padding: 6px 5px 5px 5px;
	z-index: 1000;
}
#global-header .logo {
	width: 150px;
}
#global-header .gnavi-PC {
	display: none;
}
@media (min-width:768px){
	#global-header .white-bar {
		width : -webkit-calc(100% - 160px) ;
		width : calc(100% - 160px) ;
		height: 70px;
		border-radius: 50px;
		margin-left: 3%;
		margin-top: 15px;
		padding: 7px 0 0 10px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#global-header .logo {
		width: 220px;
	}
	#global-header .gnavi-PC {
		display: block;
		width : -webkit-calc(100% - 220px) ;
		width : calc(100% - 220px) ;
		margin-top: 12px;
		text-align: right;
		line-height: 1.8;
	}
	#global-header .gnavi-PC .gnavi-list-item {
		display: inline;
		margin: 0 15px 0 0;
		text-align: right;
	}
	#global-header .gnavi-PC .gnavi-list-link {
		text-decoration: none;
		font-size: 15px;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .gnavi-PC .gnavi-list-link:hover {
		opacity: .6;
	}
	#global-header .gnavi-PC .gnavi-list-link-icon {
		display: inline-block;
		width: 26px;
	}
}
@media (min-width:900px){
	#global-header .white-bar {
		width : -webkit-calc(100% - 190px) ;
		width : calc(100% - 190px) ;
		height: 70px;
		border-radius: 50px;
		margin-left: 3%;
		margin-top: 15px;
		padding: 7px 0 0 10px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#global-header .logo {
		width: 220px;
	}
	#global-header .gnavi-PC {
		display: block;
		width : -webkit-calc(100% - 260px) ;
		width : calc(100% - 260px) ;
		margin-top: 12px;
		text-align: right;
		line-height: 1.8;
	}
	#global-header .gnavi-PC .gnavi-list-item {
		display: inline;
		margin: 0 30px 0 0;
		text-align: right;
	}
	#global-header .gnavi-PC .gnavi-list-link {
		text-decoration: none;
		font-size: 17px;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .gnavi-PC .gnavi-list-link:hover {
		opacity: .6;
	}
	#global-header .gnavi-PC .gnavi-list-link-icon {
		display: inline-block;
		width: 26px;
	}
}


/* Toggle Button　SP時に表示
-----------------------------------------------------------*/
.nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 100;
	background-color: #122cde;
	border-radius: 0 0 0 20px;
	padding: 20px 20px;
}
.nav-toggle-inn {
    position: relative;
}
.nav-toggle .line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}
.nav-toggle .line:nth-child(1) {
    top: 0;
}
.nav-toggle .line:nth-child(2) {
    top: 8px;
}
.nav-toggle .line:nth-child(3) {
    top: 16px;
}
/* #nav-toggle オープン時切り替えアニメーション */
.open .nav-toggle .line:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open .nav-toggle .line:nth-child(2) {
	width: 0;
	left: 50%;
}
.open .nav-toggle .line:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
@media (min-width:768px){
	.nav-toggle {
		display: none;
	}
}


/* gnavi-SP SP時に表示
-----------------------------------------------------------*/
#global-header .gnavi-SP {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	position: absolute;
	top: 0;
    padding: 7rem 2rem 1rem 2rem;
	background-color: #fff;
	text-align: center;
}
#global-header .gnavi-SP a {
	pointer-events: none;
}
#global-header.open .gnavi-SP {
	opacity: 1;
	visibility: visible;
	transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
}
#global-header.open .gnavi-SP a {
	pointer-events: auto;
}
#global-header .gnavi-SP .gnavi-list-item {
	margin-bottom: 1.5rem;
}
#global-header .gnavi-SP .gnavi-list-link {
	display: inline-block;
	text-align: center;
	color: #122cde;
	text-decoration: none;
	font-size: 1.1rem;
}
#global-header .gnavi-SP .gnavi-list-link-icon img {
	width: 30px;
}
#global-header .gnavi-SP .gnavi-list-link-btn {
	position: relative;
	display: block;
	width: 160px;
	padding: 10px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.5;
	margin-left: auto;
	margin-right: auto;
	background-color: #122cde;
	color: #fff;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
@media (min-width:768px){
	#global-header .gnavi-SP {
		display: none;
	}
}


/* btn-contact-PC　【PC/Tab時に表示】
-----------------------------------------------------------*/
#global-header .btn-contact-PC {
	display: none;
}
@media (min-width:768px){
	#global-header .btn-contact-PC {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 125px;
		height: 90px;
	}
	#global-header .btn-contact-PC .btn-contact-link {
		display: block;
		width: 125px;
		height: 90px;
		background-color: #122cde;
		color: #fff;
		padding-top: 35px;
		border-radius: 0 0 0 20px;
		text-align: center;
		text-decoration: none;
		font-size: 17px;
		line-height: 1.5;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .btn-contact-PC .btn-contact-link:hover {
		opacity: .85;
	}
}

/****************************************************************************
 	main
****************************************************************************/


/****************************************************************************
 	footer
****************************************************************************/
/* 
-----------------------------------------------------------*/
#global-footer {
	background: url("../img/common/footer_bg_text.png")no-repeat center top;
	background-size: 100%;
	padding: 3rem 0;
}
#global-footer .logo {
	width: 60%;
	max-width: 398px;
	margin: 0 auto;	
}
#global-footer .contact-box {
	background-color: #203aef;
	border-radius: 10px;
	padding: .5rem 2rem;
	margin-top: 1.2rem;
	color: #fff;
	text-align: center;
}
#global-footer .contact-box .list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
#global-footer .contact-box .list-item {
	width: 100%;
	padding: 1rem 0;
}
#global-footer .contact-box .list-item:first-child {
	border-bottom: 1px solid #fff;
}
#global-footer .contact-box .list-item .title {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 1px;
}
#global-footer .contact-box .list-item .btn-tel {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	position: relative;
	margin-top: .8rem;
}
#global-footer .contact-box .list-item .btn-tel i {
	font-size: 26px;
	display: inline-block;
	position: absolute;
	top: 0;
}
#global-footer .contact-box .list-item .btn-tel .num {
	font-size: 30px;
	letter-spacing: 1px;
	padding-left: 28px;
}
#global-footer .contact-box .list-item .copy {
	font-size: .8rem;
}
#global-footer .contact-box .list-item .btn-mail {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 12px 20px;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	line-height: 1;
	position: relative;
	margin-top: .5rem;
	margin-bottom: .5rem;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-footer .contact-box .list-item .btn-mail:hover {
	background-color: #fff;
	color: #122cde;
}
#global-footer .info {
	margin-top: 1rem;
	text-align: center;
	color: #fff;
	font-size: .8rem;
	line-height: 1.5;
}
#global-footer .info-link {
	margin-top: .5rem;
	text-align: center;
	color: #fff;
	font-size: .8rem;
	line-height: 1.5;
}
#global-footer .info-link a {
	color: #fff;
}
#global-footer .copyright {
	margin-top: 2rem;
	text-align: center;
	color: #6d7ffb;
	font-size: .75rem;
}
@media (min-width:768px){
	#global-footer {
		padding: 3rem 0;
	}
	#global-footer .logo {
		width: 35%;
	}
	#global-footer .contact-box {
		border-radius: 20px;
		padding: 2rem 0;
	}
	#global-footer .contact-box .list-item {
		width: 50%;
		padding: 0 1rem;
	}
	#global-footer .contact-box .list-item:first-child {
		border-bottom: none;
		border-right: 1px solid #fff;
	}
	#global-footer .contact-box .list-item .title {
		font-size: 1.1rem;
	}
	#global-footer .contact-box .list-item .btn-tel i {
		font-size: 34px;
	}
	#global-footer .contact-box .list-item .btn-tel .num {
		font-size: 40px;
		letter-spacing: 2px;
		padding-left: 35px;
	}
	#global-footer .contact-box .list-item .copy {
		font-size: .85rem;
	}
	#global-footer .contact-box .list-item .btn-mail {
		padding: 12px 20px;
		margin-top: .5rem;
		margin-bottom: .5rem;
	}
	#global-footer .info {
		font-size: .85rem;
	}
	#global-footer .copyright {
		font-size: .8rem;
	}
}
@media (min-width:1080px){
	#global-footer {
		padding: 4rem 0;
	}
	#global-footer .logo {
		width: 398px;
	}
	#global-footer .contact-box {
		padding: 3rem 0;
		margin-top: 1.5rem;
	}
	#global-footer .contact-box .list-item .title {
		font-size: 1.2rem;
	}
	#global-footer .contact-box .list-item .btn-tel i {
		font-size: 46px;
	}
	#global-footer .contact-box .list-item .btn-tel .num {
		font-size: 50px;
		padding-left: 45px;
	}
	#global-footer .contact-box .list-item .copy {
		font-size: .9rem;
	}
	#global-footer .contact-box .list-item .btn-mail {
		padding: 16px 30px;
		font-size: 1.2rem;
		margin-top: .5rem;
		margin-bottom: .5rem;
	}
	#global-footer .info {
		margin-top: 2rem;
		font-size: 1rem;
	}
	#global-footer .info-link {
		font-size: 1rem;
	}
	#global-footer .copyright {
		margin-top: 3rem;
		font-size: .9rem;
	}
}


/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100000;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #062866;
	border-radius: 50%;
	cursor: pointer;
}
#pagetop:after {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -3px;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} 
@media (min-width:1080px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	

/****************************************************************************
 	ec-fix-btn
****************************************************************************/
#ec-fix-btn {
	position: fixed;
	z-index: 100000;
	bottom: 30%;
	right: 0;
	display: block;
	width: 40px;
	height: 165px;
	background-color: #0793f8;
	border-radius: 10px 0 0 10px;
	text-decoration: none;
	color: #feff00;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
	padding: 36px 0 0 3px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#ec-fix-btn:hover {
	opacity: .8;
}
#ec-fix-btn .text {
	writing-mode: vertical-rl;
	line-height: 1;
}
#ec-fix-btn .en {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
}
#ec-fix-btn .jp {
	font-size: 9px;
	font-weight: normal;
	letter-spacing: 1px;
}
#ec-fix-btn:before {
	position: absolute;
	top: 3px;
	right: 8px;
	font-size: 20px;
	content:'shopping_cart';
	font-family: "Material Icons";
}
@media (min-width:768px){
	#ec-fix-btn {
		bottom: 40%;
		width: 70px;
		height: 250px;
		border-radius: 10px 0 0 10px;
		padding: 55px 0 0 8px;
	}
	#ec-fix-btn .text {
		line-height: 1.2;
	}
	#ec-fix-btn .en {
		font-size: 22px;
		letter-spacing: 2px;
	}
	#ec-fix-btn .jp {
		font-size: 13px;
		letter-spacing: 2px;
	}
	#ec-fix-btn:before {
		top: 3px;
		right: 22px;
		font-size: 30px;
	}
}
@media (min-width:1180px){
	
}