@charset "UTF-8";


/****************************************************************************
 	global-header
****************************************************************************/

#global-header {
	width: 100%;
	height: 52px;
	position: fixed;
	z-index: 1000;
	background: url("../img/common/obi.png")repeat-x left top #fff;
	background-size: 60% 11%;
}
#global-header .logo {
	width: 110px;
	position: absolute;
	left: 4%;
	top: 17px;
}
#global-header .logo a {
	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-header .logo a:hover {
	opacity: .7;
}
@media (min-width:768px){
	#global-header {
		background-size: 35% 12%;
	}
}
@media (min-width:1000px){
	#global-header {
		width: 100%;
		height: 90px;
		background-size: auto;
	}
	#global-header .logo {
		width: 210px;
		position: absolute;
		left: 2%;
		top: 28px;
	}
}

/* SP用 menu-wrap-SPTAB
------------------------------*/
/* バーガーメニュー */
#global-header .menu-wrap-SPTAB .hamburger {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 4%;
	top: 5px;
	border: none;
	background-color: transparent;
	z-index: 10;
}
#global-header .menu-wrap-SPTAB .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 15px;
    left: 0;
    width: 32px;
    background-color: #000;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #000;
    transition: inherit;
	top: 15px;
	left: 0;
}

#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line {
	top: 50%;
	left: 0;
	transform: rotate(45deg);
}
#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line:after {
    top: 50%;
	left: 0;
    transform: rotate(-90deg);
}

/* バーガーメニュー中身 */
#global-header .menu-wrap-SPTAB .header__nav-area {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	background-color:#FCFAF7;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .header__nav-area.-active {
	right: 0;
	visibility: visible;
}

#global-header .menu-wrap-SPTAB .navi-wrap {
	padding: 5em 5em 0 5em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-item {
	list-style-type: none;
	margin-top: 2.5em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 2px;
}
@media (min-width:1000px){
	#global-header .menu-wrap-SPTAB {
		display: none;
	}
}

/* PC用 menu-wrap-PC
------------------------------*/
#global-header .menu-wrap-PC {
	display: none;
}
@media (min-width:1000px){
	#global-header .menu-wrap-PC {
		display: block;
	}
	#global-header .menu-wrap-PC .navi-wrap {
		position: relative;
	}
	#global-header .menu-wrap-PC .navi-wrap .list {
		position: absolute;
		right: 10px;
		top: 34px;
		list-style-type: none;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item {
		margin: 0 15px;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link {
		font-weight: 600;
		font-size: 15px;
		letter-spacing: 1px;
		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 .menu-wrap-PC .navi-wrap .list-link:hover {
		color: #FA9E0A;
	}
}


/****************************************************************************
 	main
****************************************************************************/
#main-wrap {
	padding-top: 52px;
}
@media (min-width:1000px){
	#main-wrap {
		padding-top: 90px;
	}
}

/****************************************************************************
 	footer
****************************************************************************/
#global-footer {
	background: url("../img/common/obi.png")repeat-x left top #fff;
	background-size: 60% 7px;
}
#global-footer .wrap {
	padding: 50px 0 20px 0;
}
#global-footer .info-box .logo img {
	width: 160px;
}
#global-footer .info-box .copy {
	color: #797478;
	font-size: .9em;
	line-height: 1.6;
	margin-top: 10px;
}
#global-footer .navi-box {
	margin-top: 20px;
}
#global-footer .navi-box .list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
#global-footer .navi-box .list-item {
	width: 48%;
	margin-right: 4%;
	margin-bottom: 20px;
}
#global-footer .navi-box .list-item:nth-child(2n) {
	margin-right: 0;
}
#global-footer .navi-box .list-link {
	font-size: .9em;
}
#global-footer .navi-box .list-link:hover {
	opacity: .5;
}
#global-footer .cr {
	text-align: center;
	color: #CCCACC;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 20px 0;
}
@media (min-width:768px){
	#global-footer {
		background-size: 35% 7px;
	}
	#global-footer .wrap {
		padding: 50px 0 20px 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#global-footer .info-box {
		width: 40%;
	}
	#global-footer .info-box .logo img {
		width: 160px;
	}
	#global-footer .info-box .copy {
		font-size: .85em;
		line-height: 1.6;
		margin-top: 10px;
	}
	#global-footer .navi-box {
		width: 55%;
		margin-top: 0;
	}
	#global-footer .navi-box .list-item {
		margin-bottom: 15px;
	}
	#global-footer .navi-box .list-link {
		font-size: .9em;
	}
	#global-footer .cr {
		font-size: 12px;
		padding: 20px 0;
	}
}
@media (min-width:1110px){
	#global-footer {
		background-size: auto;
	}
	#global-footer .wrap {
		padding: 60px 0 20px 0;
	}
	#global-footer .info-box {
		width: 30%;
	}
	#global-footer .info-box .logo img {
		width: 230px;
	}
	#global-footer .info-box .copy {
		font-size: .9em;
		line-height: 1.6;
		margin-top: 20px;
	}
	#global-footer .navi-box {
		width: 65%;
		margin-top: 20px;
	}
	#global-footer .navi-box .list-item {
		width: 22.5%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	#global-footer .navi-box .list-item:nth-child(5n) {
		width: 5%;
	}
	#global-footer .navi-box .list-link {
		font-size: .85em;
		letter-spacing: 0;
	}
	#global-footer .cr {
		text-align: right;
		font-size: 12px;
		padding: 20px 0;
	}
}



/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100000;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #000;
	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:1110px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	





