@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1600px以上の場合に適用 

*******************************************************/

/* 全体の設定 */

html {
	color: #222;
	}

body {
	width: 100%;
	font-family: 'Hiragino Sans', YuGothic, 'Yu Gothic medium', Meiryo, 'sans-serif';
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1600px;
	font-size: 16px;
	}

a {
	text-decoration: none;
	color: #222;
	cursor: pointer;
	}

p {
	color: #111;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.container {
    padding: 100px 0;
}
	
.wrapper {
	width: 95%;
	max-width: 1400px;
	margin: 0 auto;
	}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}

.h2 {
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 54px;
	text-align: center;
}

.btn {
	background-color: #a21f2d;
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
	display: block;
	width: 180px;
	height: 45px;
	line-height: 45px;
	color: #FFF;
	text-align: center;
	position: relative;
	transition: .2s;
}

.btn::after {
	content: "→";
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	display: block;
	vertical-align: 3px;
	transition: .2s;
}

.btn:hover {
	background-color: #111;
}

.btn:hover::after {
	right: 5px;
}



/* header */
.header {
	width: 100%;
	height: 80px;
	background-color: #a21f2d;
	z-index: 9000;
	position: fixed;
	top: 0;
	left: 0;
}

.header__logo {
	position: absolute;
	left: 1%;
	top: 20px;
	display: block;
	width: auto;
	height: 40px;
}

.globalNav {
	position: absolute;
	left: 230px;
}

.globalNav__box {
	display: flex;
	height: 80px;
	align-items: center;
}

.globalNav__item {
	margin-left: 40px;
	display: flex;
	position: relative;
}

.globalNav__link {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	display: block;
	position: relative;
	color: #FFF;
}

.globalNav__link::after {
	transition: .2s;
	display: inline-block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #FFF;
	position: absolute;
	bottom: -7px;
	left: 0;
	opacity: 0;
}

.globalNav__link:hover::after {
	opacity: 1;
}

.globalNav__link-en {
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
	display: block;
	font-size: 13px;
	margin-top: 2px;
}

.globalNav__link:hover {
	cursor: pointer;
}

.globalNav__item ul {
	position: absolute;
	top: 59px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	width: 280px;
	display: none;
}

.globalNav__item ul.visible {
	display: flex;
}

.globalNav__item ul li {
	width: 140px;
	background-color: #FFF;
	border-bottom: 1px solid #EEE;
}

.globalNav__item ul li:nth-of-type(odd) {
	border-right: 1px solid #EEE;
}

.globalNav__item ul li a {
	display: block;
	width: 100%;
	padding: 10px 10px 10px 25px;
	font-size: 13px;
	position: relative;
}

.globalNav__item ul li a::before {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #a21f2d;
	content: "";
	position: absolute;
	top: 16px;
	left: 10px;
	transform: rotate(45deg);
}

.globalNav__item ul li a::after {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #a21f2d;
	content: "";
	position: absolute;
	bottom: 17px;
	left: 10px;
	transform: rotate(-45deg);
}

.globalNav__item ul li a:hover {
	color: #a21f2d;
}

.subNav {
	height: 80px;
	display: flex;
	align-items: center;
	position: absolute;
	right: 1%;
}

.subNav__sns {
	display: flex;
}

.subNav__sns-item {
	margin-right: 30px;
	position: relative;
}

.subNav__sns-link {
	transition: .2s;
}

.subNav__sns-link:hover {
	cursor: pointer;
	opacity: .8;
}

.subNav__sns-item ul {
	position: absolute;
	top: 59px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	width: 140px;
	display: none;
}

.subNav__sns-item ul.visible {
	display: block;
}

.subNav__sns-item ul li {
	width: 140px;
	background-color: #FFF;
	border-bottom: 1px solid #EEE;
}

.subNav__sns-item ul li:nth-of-type(odd) {
	border-right: 1px solid #EEE;
}

.subNav__sns-item ul li a {
	display: block;
	width: 100%;
	padding: 10px 10px 10px 25px;
	font-size: 13px;
	position: relative;
}

.subNav__sns-item ul li a::before {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #a21f2d;
	content: "";
	position: absolute;
	top: 16px;
	left: 10px;
	transform: rotate(45deg);
}

.subNav__sns-item ul li a::after {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #a21f2d;
	content: "";
	position: absolute;
	bottom: 17px;
	left: 10px;
	transform: rotate(-45deg);
}

.subNav__sns-item ul li a:hover {
	color: #a21f2d;
}

.subNav__sns-link {
	display: block;
	text-align: center;
	font-size: 10px;
	color: #FFF;
}

.subNav__sns-item--Instagram .subNav__sns-link {
	padding-right: 15px;
}

.subNav__sns-icon {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 30px;
	margin: 0 auto 3px auto;
	background-color: #FFF;
	background-size: 15px 15px;
	background-position: center center;
	background-repeat: no-repeat;
}

.subNav__sns-item--facebook .subNav__sns-icon {
	background-image: url("/img/common/icon_header_facebook.png");
}

.subNav__sns-item--line .subNav__sns-icon {
	background-image: url("/img/common/icon_header_line.png");
}

.subNav__sns-item--x .subNav__sns-icon {
	background-image: url("/img/common/icon_header_x.png");	
}

.subNav__sns-item--Instagram .subNav__sns-icon {
	background-image: url("/img/common/icon_header_instagram.png");	
	margin-left: 20px;
}

.subNav__sns-item--Instagram .subNav__sns-link::before {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #FFF;
	content: "";
	position: absolute;
	bottom: 6px;
	right: 4px;
	transform: rotate(45deg);
}

.subNav__sns-item--Instagram .subNav__sns-link::after {
	display: inline-block;
	width: 8px;
	height: 2px;
	background-color: #FFF;
	content: "";
	position: absolute;
	bottom: 6px;
	right: 0;
	transform: rotate(-45deg);
}

.subNav__cta {
	display: flex;
}

.subNav__cta-item {
	height: 45px;
	border-radius: 45px;
	overflow: hidden;
	margin-left: 10px;
}

.subNav__cta-item--goods {
	width: 120px;
}

.subNav__cta-item--recruit {
	width: 200px;
}

.subNav__cta-link {
	transition: .2s;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 45px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.subNav__cta-link:hover {
	opacity: .8;
}

.subNav__cta-item--goods .subNav__cta-link {
	background-color: #FFF;
	color: #a21f2d;
}

.subNav__cta-item--goods .subNav__cta-link::before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("/img/common/icon_header_goods.png");
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 7px;
	vertical-align: -3px;
}

.subNav__cta-item--recruit .subNav__cta-link {
	background-color: #bf9d5a;
	color: #FFF;
}

.subNav__cta-item--recruit .subNav__cta-link::before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("/img/common/icon_header_recruit.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 7px;
	vertical-align: -5px;
}



/* mvLower */
.mvLower {
	width: 100%;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}

.mvLower__h1 {
	font-size: 54px;
	color: #FFF;
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.mvLower__txt {
	text-align: center;
	color: #FFF;
	font-weight: 500;
	font-size: 18px;
	margin-top: 10px;
}





/* footer */
.footerPartner__h2 {
	margin-bottom: 50px;
}

.footerPartner__box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footerPartner__item {
	width: 28%;
	margin-bottom: 70px;
}

.footerPartner__link {
	display: block;
	transition: .2s;
}

.footerPartner__link:hover {
	opacity: .7;
}

.footerPartner__img {
	display: block;
	width: 100%;
	height: auto;
}

.footerPartner__box--upper .footerPartner__item {
	margin-bottom: 30px;
}

.footerPartner__box--middle .footerPartner__item {
	width: 40%;
	margin: 0 auto 30px auto;
}

.footerSns {
	width: 100%;
	background-color: #a21f2d;
	height: 60px;
}

.footerSns__box {
	display: flex;
	height: 60px;
	border-left: 1px solid #FFF;
}

.footerSns__item {
	width: 25%;
	height: 60px;
	border-right: 1px solid #FFF;
	display: flex;
	align-items: center;
	padding-left: 40px;
}

.footerSns__link {
	font-weight: 700;
	color: #FFF;
	transition: .2s;
	font-family: "oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.footerSns__link:hover {
	opacity: .8;
}

.footerSns__link::before {
	display: inline-block;
	content: "";
	background-color: #FFF;
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	vertical-align: -11px;
	margin-right: 10px;
}

.footerSns__item--facebook .footerSns__link::before {
	background-image: url("/img/common/icon_header_facebook.png");
}

.footerSns__item--line .footerSns__link::before {
	background-image: url("/img/common/icon_header_line.png");
}

.footerSns__item--x .footerSns__link::before {
	background-image: url("/img/common/icon_header_x.png");
}

.footerSns__item--instagram .footerSns__link::before {
	background-image: url("/img/common/icon_header_instagram.png");
}

.footer {
	background-color: #191919;
	width: 100%;
	height: auto;
	position: relative;
	padding: 130px 0 70px 0;
}

.footer__upper {
	display: flex;
	justify-content: space-between;
}

.footer__upper-left {
	width: 40%;
}

.footer__logo {
	display: block;
	width: 155px;
	height: auto;
	margin-bottom: 30px;
}

.footer__txt {
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
}

.footer__nav {
	display: flex;
}

.footer__nav > li {
	margin-left: 70px;
}

.footer__nav > li > ul > li {
	line-height: 2.6;
	position: relative;
}

.footer__nav > li > ul > li::before {
	display: inline-block;
	content: "";
	width: 8px;
	height: 1px;
	background-color: #FFF;
	transform: rotate(45deg);
	position: absolute;
	left: -13px;
	bottom: 5px;
	top: 0;
	margin: auto;
}

.footer__nav > li > ul > li::after {
	display: inline-block;
	content: "";
	width: 8px;
	height: 1px;
	background-color: #FFF;
	transform: rotate(-45deg);
	position: absolute;
	left: -13px;
	bottom: 0;
	top: 5px;
	margin: auto;
}

.footer__nav > li > ul > li > a {
	font-size: 16px;
	color: #FFF;
	font-weight: 600;
}

.footer__nav > li > ul > li > a:hover {
	text-decoration: underline;
}

.footer__copyright {
	margin-top: 70px;
	color: #FFF;
	text-align: center;
	font-family: "oswald", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.footer__gotop {
	width: 50px;
	height: 50px;
	background-color: #DDD;
	position: fixed;
	right: 2%;
	bottom: 30px;
	border-radius: 5px;
	line-height: 50px;
	text-align: center;
	transition: .2s;
	opacity: 0;
}

.footer__gotop.scroll {
	opacity: 1;
}

.footer__gotop:hover {
	opacity: .7;
}





/******************************************************

タブレットの設定 1460px~1599pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1599px){

/* 全体の設定 */
body {
	max-width: 1599px;
	min-width: 100%;
	}
	
	
	
/* header */
.globalNav__item {
	margin-left: 25px;
}
	
.subNav__sns-item ul {
	top: auto;
	bottom: 55px;
}

	
	
	
}
	
	
	
/******************************************************

タブレットの設定 960px~1459pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1459px){

/* 全体の設定 */
body {
	max-width: 1459px;
	min-width: 100%;
	padding-bottom: 65px;
	}
	
	
	
/* header */
.subNav {
	background-color: #a21f2d;
	width: 100%;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: auto;
	right: auto;
}

.subNav__sns-item--Instagram .subNav__sns-link::before {
	bottom: 6px;
	right: 4px;
	transform: rotate(-45deg);
}

.subNav__sns-item--Instagram .subNav__sns-link::after {
	bottom: 6px;
	right: 0;
	transform: rotate(45deg);
}

	
/* footer */
.footer__gotop {
	bottom: 80px;
}
	
	

	
	

}





/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* 全体の設定 */
body {
	max-width: 959px;
	min-width: 100%;
	}
	
	
	
/* header */
.globalNav {
	display: none;
}
	
	
	
/* footer */
.footerSns__wrapper {
	width: 100%;
}

.footerSns__box {
	border-left: none;
}
	
.footerSns__item {
	padding-left: 20px;
}

.footerSns__item:last-child {
	border-right: none;
}

.footer__upper-left {
	width: 35%;
}

.footer__logo {
	display: block;
	width: 100%;
	max-width: 155px;
}

.footer__txt {
	font-size: 14px;
}

.footer__nav {
	display: flex;
}

.footer__nav > li {
	margin-left: 50px;
}

.footer__nav > li > ul > li {
	line-height: 2.6;
	position: relative;
}

.footer__nav > li > ul > li > a {
	font-size: 14px;
}

.footer__copyright {
	font-size: 14px;
}

	

}



	
/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 14px;
	padding-bottom: 40px;
	}
	
.container {
    padding: 60px 0;
}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
	
.h2 {
	font-size: 28px;
	}
	
.btn {
	width: 120px;
	height: 35px;
	line-height: 35px;
	font-size: 12px;
}


	
	
/* header */
.header {
	height: 54px;
}

.header__logo {
	position: absolute;
	left: 2%;
	top: 12px;
	display: block;
	width: auto;
	height: 30px;
}

.subNav {
	height: 40px;
}

.subNav__sns-item {
	margin-right: 8px;
}
	
.subNav__sns-link span {
	display: none;
}

.subNav__sns-item--Instagram .subNav__sns-link {
	padding-right: 0;
}

.subNav__sns-icon {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 30px;
	margin: 0 auto;
	background-color: #FFF;
	background-size: 15px 15px;
	background-position: center center;
	background-repeat: no-repeat;
}

.subNav__sns-item--Instagram .subNav__sns-icon {
	margin-left: 0;
}

.subNav__sns-item--Instagram .subNav__sns-link::before {
	display: none;
}

.subNav__sns-item--Instagram .subNav__sns-link::after {
	display: none;
}

.subNav__cta-item {
	height: 25px;
	margin-left: 5px;
}

.subNav__cta-item--goods {
	width: 60px;
}

.subNav__cta-item--recruit {
	width: 130px;
}

.subNav__cta-link {
	line-height: 25px;
	font-size: 10px
}

.subNav__cta-item--goods .subNav__cta-link::before {
	width: 12px;
	height: 12px;
	margin-right: 3px;
	vertical-align: -1px;
}

.subNav__cta-item--recruit .subNav__cta-link::before {
	width: 12px;
	height: 12px;
	margin-right: 3px;
	vertical-align: -3px;
}
	
	
	
/* mvLower */
.mvLower {
	height: 150px;
	margin-top: 54px;
}
	
.mvLower__content {
	margin-top: 10px;
}

.mvLower__h1 {
	font-size: 28px;
}

.mvLower__txt {
	font-size: 12px;
	margin-top: 5px;
}
	
	
	
/* footer */
.footerPartner__h2 {
	margin-bottom: 30px;
}

.footerPartner__box {
	display: block;
}

.footerPartner__item {
	width: 70%;
	margin-bottom: 20px;
}

.footerPartner__box--upper .footerPartner__item {
	margin: 0 auto;
}

.footerPartner__box--middle .footerPartner__item {
	width: 70%;
	margin: 0 auto 30px auto;
}
	
.footerPartner__box--lower {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
	
.footerPartner__box--lower .footerPartner__item {
	width: 46%;
}
	
	
	
/* footer */
.footerSns__wrapper {
	width: 100%;
}
	
.footerSns {
	height: auto;
}

.footerSns__box {
	display: flex;
	flex-wrap: wrap;
	height: auto;
	border-left: none;
}

.footerSns__item {
	width: 50%;
	height: 44px;
	border-right: none;
	padding-left: 20px;
}

.footerSns__item:nth-of-type(odd) {
	border-right: 1px solid #FFF;
}
	
.footerSns__item:nth-of-type(1),
.footerSns__item:nth-of-type(2) {
	border-bottom: 1px solid #FFF;
}

.footerSns__link::before {
	display: inline-block;
	content: "";
	background-color: #FFF;
	background-size: 15px 15px;
	background-position: center center;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	border-radius: 35px;
	vertical-align: -7px;
	margin-right: 7px;
}
	
.footer {
	padding: 60px 0 30px 0;
}
	
.footer__logo {
	width: 60%;
	max-width: 200px;
	margin: 0 auto 10px auto;
}

.footer__txt {
	font-size: 12px;
	color: #FFF;
	text-align: center;
}
	
.footer__txt a {
	color: #FFF;
}
	
.footer__upper-left {
	width: 100%;
	margin-bottom: 20px;
}
	
.footer__upper-right {
	display: none;
}

.footer__copyright {
	margin-top: 0;
	padding-top: 10px;
	font-size: 10px;
}
	
.footer__gotop {
	width: 35px;
	height: 35px;
	bottom: 45px;
	border-radius: 3px;
	line-height: 35px;
	font-size: 12px;
}


}