@charset "UTF-8";


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

#global-header {
	width: 100%;
	height: 52px;
	position: fixed;
	z-index: 1000;
	/*background-color: #FFF8EF;*/
}
#global-header .logo {
	width: 140px;
	position: absolute;
	left: 3%;
	top: 11px;
}
#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 .logo {
		width: 180px;
		left: 2%;
		top: 15px;
	}
	#global-header {
		height: 60px;
	}
}
@media (min-width:900px){
	#global-header {
		width: 100%;
		height: 100px;
	}
	#global-header .logo {
		width: 310px;
		position: absolute;
		left: 2%;
		top: 16px;
	}
}

/* スクロールしたら -------------*/
#global-header.scroll {
	background-color: #FFF8EF;
}
@media (min-width:900px){
	#global-header.scroll {
		height: 70px;
	}
	#global-header.scroll .logo {
		width: 240px;
		top: 8px;
	}
}



/* SP用 menu-wrap-SPTAB
------------------------------*/
/* 採用ボタン */
#global-header .menu-wrap-SPTAB .head-btn {
	position: absolute;
	right: 57px;
	top: 11px;
	display: block;
	width: 6.5rem;
	height: 32px;
	background-color: #EB612A;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	padding: .4rem 0 0 0;
	text-align: center;
	font-weight: 700;
	font-size: .75rem;
}
	
/* バーガーメニュー */
#global-header .menu-wrap-SPTAB .hamburger {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 15px;
	top: 13px;
	border: none;
	background-color: transparent;
	z-index: 10;
}
#global-header .menu-wrap-SPTAB .hamburger__line {
    display: block;
    height: 3px;
    position: absolute;
    top: 12px;
    left: 0;
    width: 32px;
    background-color: #EB612A;
	border-radius: 10px;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .hamburger__line:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #EB612A;
	border-radius: 10px;
    transition: inherit;
	top: -10px;
	left: 0;
}
#global-header .menu-wrap-SPTAB .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #EB612A;
	border-radius: 10px;
    transition: inherit;
	top: 10px;
	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:before {
    display: none;
}
#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: #fff;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .header__nav-area.-active {
	right: 0;
	visibility: visible;
}

#global-header .menu-wrap-SPTAB .navi-wrap {
	padding: 3rem 4rem 0 4rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-item {
	list-style-type: none;
	margin-top: 2.3rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: 2px;
	color: #000;
	text-decoration: none;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list {
	margin-top: 4.5rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-ttl {
	color: #000;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 1px;
	margin-bottom: .8rem;
	padding-left: 28px;
	position: relative;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-ttl:before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -11px;
	display: block;
	content:"";
	width: 22px;
	height: 22px;
	background: url("../img/common/icon_instagram_orange.svg") no-repeat 0 0;
	background-size: cover;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-item {
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-link {
	display: grid;
	grid-template-columns: 15px 1fr;
	gap: 0.6rem;
	text-decoration: none;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-link .icon {
	position: relative;
	width: 20px;
	height: 20px;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-link .icon:before {
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -4px;
	display: block;
	content:"";
	width: 10px;
	height: 10px;
	background-color: #EB612A;
	border-radius: 50px;
}
#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-link .text {
	font-size: 1.05rem;
	font-weight: 500;
	position: relative;
}
@media (min-width:768px){
	#global-header .menu-wrap-SPTAB .head-btn {
		right: 65px;
		top: 15px;
		width: 7.8rem;
		padding: .25rem 0 0 0;
		font-size: .8rem;
	}
	#global-header .menu-wrap-SPTAB .hamburger {
		right: 20px;
		top: 17px;
	}
	#global-header .menu-wrap-SPTAB .header__nav-area {
		width: 40%;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap {
		padding: 5rem 3rem 0 3rem;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
		font-size: 1.3rem;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-ttl {
		font-size: 1.2rem;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap .insta-list-link .text {
		font-size: .95rem;
	}
}
@media (min-width:900px){
	#global-header .menu-wrap-SPTAB {
		display: none;
	}
}

/* PC用 menu-wrap-PC
------------------------------*/
#global-header .menu-wrap-PC {
	display: none;
}
@media (min-width:900px){
	#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: 2%;
		top: 32px;
		list-style-type: none;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item {
		margin-right: 1.7rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item.btn {
		margin-right: .7rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item:last-child {
		margin-right: 0;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link {
		font-family: "Poppins", sans-serif;
		font-weight: 600;
		font-size: 1.1rem;
		letter-spacing: 1px;
		text-decoration: none;
		line-height: 1.5;
		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 ease-in-out;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link:hover {
		color: #EB612A;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link.btn {
		display: block;
		width: 8.5rem;
		height: 2.5rem;
		background-color: #EB612A;
		border-radius: 50px;
		color: #fff;
		padding: .5rem 0 0 0;
		text-align: center;
		letter-spacing: 0;
		text-decoration: none;
		font-weight: 700;
		line-height: 1.8;
		font-size: .9rem;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s ease-in-out;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link.btn:hover {
		opacity: .8;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link.btn-icon {
		display: block;
		width: 2.5rem;
		height: 2.5rem;
		background-color: #EB612A;
		border-radius: 50px;
		color: #fff;
		padding: 10px;
		text-align: center;
		
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link.btn-icon:hover {
		opacity: .8;
	}
	/*--- インスタボタンクリックでポップオーバー ---*/
	/* ポップオーバーの基準 */
	.ig-trigger {
		background: none;
		border: none;
		padding: 0;
		cursor: pointer;
		}
	.ig-popover{
		position: relative;
	}

	/* メニュー本体 */
	.ig-menu {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		min-width: 180px;
		padding: 8px;
		border-radius: 10px;
		background: #fff;
		box-shadow: 0 12px 30px rgba(0,0,0,.12);
		border: 1px solid rgba(0,0,0,.08);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-6px);
		transition: .2s ease;
		z-index: 1000;
	}
	/* 吹き出しの矢印（右上に出す） */
	.ig-menu::before,
	.ig-menu::after {
		content: "";
		position: absolute;
		top: -10px;
		right: 12px;
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
	}

	/* 外枠（薄い線） */
	.ig-menu::before {
		top: -11px; /* 1pxだけ上にして枠線が見えるように */
		border-bottom: 9px solid rgba(0,0,0,.08); /* .ig-menu の border 色に合わせる */
	}

	/* 中身（白） */
	.ig-menu::after {
		border-bottom: 10px solid #fff; /* .ig-menu の背景色に合わせる */
	}
	
	/* 開いた状態 */
	.ig-popover.is-open .ig-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* メニューアイテム */
	.ig-menu-item {
		display: block;
		padding: 10px 12px;
		border-radius: 10px;
		text-decoration: none;
		color: #000;
		font-size: .8rem;
		line-height: 1.2;
	}

	.ig-menu-item:hover,
	.ig-menu-item:focus {
		background: #FFF8EF;
		outline: none;
	}
}

/* スクロールしたら -------------*/
@media (min-width:900px){
	#global-header.scroll .menu-wrap-PC .navi-wrap .list {
		top: 12px;
	}
	#global-header.scroll .menu-wrap-PC .navi-wrap .list-link {
		color: #000;
	}
	#global-header.scroll .menu-wrap-PC .navi-wrap .list-link:hover {
		color: #EB612A;
	}
	#global-header.scroll .menu-wrap-PC .navi-wrap .list-link.btn {
		color: #fff;
	}
}


/****************************************************************************
 	main
****************************************************************************/
#main-wrap {
	position: relative;
	padding-top: 52px;
}
#main-wrap.page-top {
	padding-top: 0;
}
@media (min-width:768px){
	#main-wrap {
		padding-top: 60px;
	}
}
@media (min-width:900px){
	#main-wrap {
		padding-top: 100px;
	}
}


/****************************************************************************
 	footer
****************************************************************************/
#global-footer {
	padding: 3rem 0;
}
#global-footer .logo {
	margin: 0 auto;
	width: 13rem;
}
#global-footer .m-table-base {
	width: 85%;
	margin: 1rem auto 0 auto;
}
#global-footer .m-table-base th,
#global-footer .m-table-base td {
	padding: .6rem .5rem;
}
#global-footer .cr {
	color: #F5AC8F;
	font-weight: 500;
	letter-spacing: 1px;
	text-align: center;
	font-size: .7rem;
	margin-top: 2rem;
}
@media (min-width:768px){
	#global-footer {
		padding: 3rem 0;
	}
	#global-footer .logo {
		width: 14rem;
	}
	#global-footer .m-table-base {
		width: 500px;
		margin: 1.5rem auto 0 auto;
	}
	#global-footer .m-table-base th,
	#global-footer .m-table-base td {
		padding: .7rem 1rem;
	}
	#global-footer .cr {
		font-size: .8rem;
	}
}
@media (min-width:1110px){
	#global-footer {
		padding: 3rem 0;
	}
	#global-footer .logo {
		width: 17rem;
	}
	#global-footer .m-table-base {
		width: 550px;
		margin: 1.5rem auto 0 auto;
	}
	#global-footer .m-table-base th,
	#global-footer .m-table-base td {
		padding: .7rem 1rem;
		font-size: .9rem;
	}
	#global-footer .m-table-base th {
		width: 22%;
	}
	#global-footer .m-table-base td {
		width: 78%;
	}
}



/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100;
	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:1150px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	





