@charset"utf-8";

/*base--------------------------------*/

*{
	font-family: 'IBM Plex Sans JP', sans-serif, 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	font-size: 100%;
	}
.container figcaption {
	font-size: 0.75em;
}

html, body {
	height: 100%;
	overflow: visible;
}

body{
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: scroll;
}

/* よく登場する要素のリセット */

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form, div {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	font-family: 'IBM Plex Sans JP', 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	color: #000;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img {
	vertical-align: bottom;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.cf:after {
	content: ".";	/* 新しい要素を作る */
	display: block;	/* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

* html .cf {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

ruby rt {
	font-size: 50%;
}
@-moz-document url-prefix() {
	ruby rt {
		font-size: 50%;
	}
}



/*common--------------------------------*/

body.hidden {
	overflow: hidden;
}

#wrap {
	overflow: hidden;
	background-color: #fff9de;
}

a:link,
a:visited,
a:active {
	color: #000;
	text-decoration: none;
}

a:focus {
	outline:none;
	text-decoration: none;
}

a.underline {
	text-decoration: underline;
}

.hover {
	transition: .3s ease-out;
}

.hover:hover {
	opacity:0.7;
	filter: alpha(opacity=70);
	zoom:1;
	transition: .3s ease-out;
}

.btn_obj {
	transition-duration: 0.3s;
}

.btn_obj:hover {
	transform: translate(10px, 10px);
	transition-duration: 0.1s;
}

.disabled {
	pointer-events: none;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.red {
	color: #db0a17;
}

.fit {
	width: 100%;
}

.zoom {
	transition-duration: 0.3s;
}

.zoom:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.rotate:hover {
  transition: transform 1s;
  transform: rotate(360deg);
}

.fade_up{
	animation-name:fadeUpAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	0% {
	  opacity: 0;
	  transform: translateY(0);
	}
	50% {
	  opacity: 0;
	  transform: translateY(0);
	}
	100% {
	  opacity: 1;
	  transform: translateY(-40px);
	}
}

.fade_in{
	animation-name:fadeInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
	0% {
	  opacity: 0;
	}
	50% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
}

.btn_container {
	width: 354px;
	height: 83px;
	margin: 32px auto 0;
	position: relative;
}

.btn_container::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	box-sizing: border-box;
	position: absolute;
	top: 8px;
	left: -8px;
	z-index: 0;
	transition-duration: 0.3s;
}

.btn_container a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 2px solid #000;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	transition-duration: 0.3s;
}

.btn_container a strong {
	font-size: 22px;
	font-weight: 700;
	padding-right: 30px;
	position: relative;
	transition-duration: 0.3s;
}

.btn_container a:hover {
	transform: translate(-4px, 4px);
	z-index: 2;
}

.btn_container a strong::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/common/ico_arrow_b.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.btn_container a:hover strong::after {
	transform: translate(5px, -50%);
}

.btn_container.back a strong {
	padding-right: 0;
	padding-left: 30px;
}

.btn_container.back a strong::after {
	right: unset;
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}

.btn_container.back a:hover strong::after {
	transform: translate(-5px, -50%) rotate(180deg);
}

.pb0 {
	padding-bottom: 0!important;
}


/*--------------------------------------*/

/*header*/

/*--------------------------------------*/

header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 999;
}

.top header {
	opacity: 0;
}

header .logo_container {
	padding: 8px 64px;
}

header .logo_obj:first-of-type {
	display: block;
	width: 375px;
}

header .logo_obj:last-of-type {
	display: block;
	width: 285px;
	padding-top: 10px;
}


header .btn_lang {
	display: none;
}


header .btn_lang a {
	position: absolute;
	top: 0;
	right: 128px;
	width: 76px;
	height: 76px;
	background-color: #fff;
	border: 1px solid #db0a17;
	border-top: unset;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	cursor: pointer;
	transition: .2s ease-out;
}

header .btn_lang a:hover {
	background-color: #db0a17;
	transition: .2s ease-out;
}


header .btn_lang a strong {
	font-size: 12px;
	font-weight: 500;
	padding-top: 43px;
	color: #db0a17;
	position: relative;
	transition: .2s ease-out;
	background: url('../img/common/ico_lang_off.svg') center top no-repeat;
	background-size: 37px 38px;
}

header .btn_lang a:hover strong {
	color: #fff;
	background-image: url('../img/common/ico_lang_on.svg');
	transition: .2s ease-out;
}


/*menu_trigger--------------------------------*/

.menu_trigger {
	position: absolute;
	top: 0;
	right: 40px;
	width: 76px;
	height: 76px;
	background-color: #db0a17;
	border: 1px solid #db0a17;
	border-top: unset;
	box-sizing: border-box;
	display: block;
	z-index: 99999;
	cursor: pointer;
	transition: .2s ease-out;
}

.menu_trigger:hover {
	background-color: #fff;
	transition: .2s ease-out;
}

.menu_trigger,
.menu_trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.menu_trigger span {
	position: absolute;
	right: 22px;
	width: 32px;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
	z-index: 4;
}

.menu_trigger:hover span {
	background-color: #db0a17;
	transition: all .4s;
}

.menu_trigger span:nth-of-type(1) {
	top: 25px;
}
.menu_trigger span:nth-of-type(2) {
	bottom: 25px;
}
.menu_trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}


/*menu_target--------------------------------*/

.menu_target {
	background-color: #fff;
	padding: 108px 64px 64px;
	position: absolute;
	top: 0;
	right: -120%;
	transition: 1.2s ease-out;
	z-index: 9999;
}

.menu_target.active {
	right: 0;
	transition: .6s ease-out;
}

.menu_target .nav_list_container {
	width: 560px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.menu_target .nav_list_item {
	width: 45%;
}

.menu_target .nav_list_item > a {
	display: block;
	margin-bottom: 40px;
}

.menu_target .nav_list_item a em {
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 48px;
	font-weight: 400;
	font-style: normal;
	color: #db0a17;
	line-height: .9m;
	letter-spacing: .04em;
	padding-bottom: 10px;
}

.menu_target .nav_list_item a strong {
	display: block;
	font-size: 20px;
	font-weight: 500;
	font-style: normal;
	color: #db0a17;
	line-height: 1.6em;
}

.menu_target .nav_list_item .subnav_list_container {
	transform: translate(1em, -32px);
}

.menu_target .nav_list_item .subnav_list_item {
	padding-bottom: 4px;
}

.menu_target .nav_list_item .subnav_list_item a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
}

.menu_target .nav_list_container + .subnav_list_container {
	padding: 2em 2em 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-top: 2px solid #000;
}

.menu_target .nav_list_container + .subnav_list_container .subnav_list_item a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
}

.menu_target .nav_list_container a {
	transition: .2s ease-out;
}

.menu_target .nav_list_container a:hover {
	padding-left: 5px;
	transition: .2s ease-out;
}


/*--------------------------------------*/

/*footer*/

/*--------------------------------------*/

footer {
	background-color: #000;
	padding: 56px 40px;
}

.footer_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer_container .logo_container {
	width: 264px;
	margin-right: 3vw;
}

.footer_container .nav_list_container {
	width: 100%;
	padding-bottom: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer_container .nav_list_item {
	padding-bottom: 10px;
}

.footer_container .nav_list_item:not(:last-child) {
	padding-right: 2.45em;
}

.footer_container .nav_list_item a {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4em;
}

.footer_container .footer_subnav_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer_container .subnav_list_container {
	padding-right: 2em;
}

.footer_container .subnav_list_item {
	display: inline;
}

.footer_container .subnav_list_item + .subnav_list_item {
	padding-left: 1.17em;
}

.footer_container .subnav_list_item a {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4em;
}

.footer_container .copy_wrap small {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4em;
}



/*--------------------------------------*/

/*top*/

/*--------------------------------------*/

/*mv_wrap--------------------------------*/

.top .mv_wrap {
	width: 100%;
	height: 770px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.top .mv_container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -43%);
	z-index: 1;
}

.top .mv_container .mv_lead {
	display: inline;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-size: 28px;
	font-weight: 400;
	font-style: normal;
	line-height: 1em;
	padding: 0 .6em 0 .5em;
	position: absolute;
	top: 0;
	left: 0;
}

.top .mv_container .mv_lead::before {
	content: '';
	width: 2px;
	height: 24px;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-15deg);
}

.top .mv_container .mv_lead::after {
	content: '';
	width: 2px;
	height: 24px;
	background-color: #000;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(15deg);
}

.top .mv_container .mv_list_item {
	font-family: "Changa One", sans-serif;
	font-size: 200px;
	font-weight: 400;
	font-style: normal;
	color: #db0a17;
	line-height: .9em;
}

.top .mv_wrap .mv_obj {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-42%);
	z-index: 2;
}

.blur {
	filter: blur(30px);
	animation-name:imageBlur;
	animation-duration:5.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes imageBlur {
	0% {
		opacity: 0;
		filter: blur(30px);
	}
	80% {
		opacity: 0;
		filter: blur(20px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}



/*lead_wrap--------------------------------*/

.top .lead_wrap {
	padding-top: 640px;
	position: relative;
	padding-bottom: 144px;
	opacity: 0;
}

.top .lead_wrap .catch_container {
	width: 100%;
	padding-bottom: 100px;
	position: relative;
}

.top .lead_wrap .catch_container::before {
	content: 'Today,\A Tomorrow,\A Always';
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 180px;
	font-weight: 400;
	color: #f9ecb4;
	line-height: .9em;
    white-space: pre;
	z-index: 0;
	position: absolute;
	bottom: -.1em;
	left: 0;
}

.top .lead_wrap .catch_txt {
	font-size: 48px;
	font-weight: 600;
	color: #db0a17;
	line-height: 1.8em;
	text-align: center;
	padding-top: 90px;
	position: relative;
	z-index: 2;
}

.top .lead_wrap .catch_txt::before {
	content: '';
	display: block;
	width: 82px;
	height: 65px;
	background: url('../img/common/ico_chicken.svg') center top no-repeat;
	background-size: 82px 65px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.top .lead_wrap .btn_container {
	position: relative;
	z-index: 2;
}

.top .bnr_list_item {
	width: 495px;
	height: 285px;
	padding: 0 15px;
} 

.slick-dots {
	position: absolute;
	bottom: -60px;
	left: 50%;
	height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.slick-dots li {
	padding: 0 8px;
}

.slick-dots button {
	width: 16px;
	height: 16px;
	background-color: #c9c9c9;
	border-radius: 100vh;
	border: none;
	text-indent: -9999px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}

.slick-dots .slick-active button {
	background-color: #db0a17;
}

.slick-dots button:focus {
	outline: none;
}

.slick-dots button:hover {
	opacity:0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	zoom:1;
}

.slick_pause {
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 5px;
	background-color: #db0a17;
	position: absolute;
	bottom: 80px;
	right: 60px;
	cursor: pointer;
}

.slick_pause::before {
	content: '';
	display: block;
	width: 5px;
	height: 19px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(40%, -50%);
}

.slick_pause::after {
	content: '';
	display: block;
	width: 5px;
	height: 19px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-120%, -50%);
}

.slick_pause.paused::before {
	display: none;
}

.slick_pause.paused::after {
	width: unset;
	height: unset;
	background-color: unset;
	border-radius: unset;
	border-top: 9px solid transparent;
 	border-bottom: 9px solid transparent;
 	border-left: 9px solid #fff;
	transform: translate(-50%, -50%);
}


/*menu_wrap--------------------------------*/

.top .menu_wrap {
	background-color: #f0b500;
	padding: 96px 0;
}

.top .menu_ttl {
	font-family: "Changa One", sans-serif;
	font-size: 200px;
	font-weight: 400;
	color: #cf9c00;
	line-height: .9em;
	text-align: center;
	padding-bottom: 64px;
}

.top .menu_list_container {
	width: 91.47vw;
	max-width: 1160px;
	border: 2px  solid #000;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	position: relative;
}

.top .menu_list_container.other {
	margin-top: 64px;
}

.top .menu_list_container.chicken::before {
	content: '鶏';
	display: block;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 240px;
	font-weight: 400;
	color: #db0a17;
	position: absolute;
	top: 0;
	right: 11.03%;
	transform: translateY(-234px);
}

.top .menu_list_container.other::before {
	content: '他';
	display: block;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 240px;
	font-weight: 400;
	color: #db0a17;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-156px);
}

.top .menu_list_item {
	width: 50%;
	background-color: #fff;
	padding: 3.45%;
	border: 2px  solid #000;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: stretch;
}

.top .menu_list_item.cs_wrap{
	justify-content: center;
}

.top .menu_list_item .img_container {
	padding-bottom: 32px;
}

.top .menu_list_item .menu_list_obj {
	max-width: 100%;
}

.top .menu_list_item .txt_container {
	width: 100%;
}

.top .menu_list_container.chicken .menu_list_item .menu_list_ttl {
	position: relative;
	padding: 44px 0 8px;
}

.top .menu_list_item .menu_list_ttl strong {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4em;
	position: relative;
}

.top .menu_list_item .menu_list_ttl strong b {
	font-size: 50%;
}

.top .menu_list_item .menu_list_ttl i {
	display: block;
	font-size:12px;
	font-weight: 500;
	font-style: normal;
	color: #db0a17;
	background-color: #ffe2e3;
	border: 1px solid #db0a17;
	padding: 10px 15px;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-4.88deg);
}

.top .menu_list_item .menu_list_ttl em {
	display: block;
	font-size: 36px;
	font-weight: 700;
	font-style: normal;
	line-height: 1.4em;
	padding-bottom: 16px;
}

.top .menu_list_item .menu_list_txt {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4em;
}

.top .menu_list_item .detail_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}

.top .menu_list_item .detail_list_item {
	font-size: 14px;
	font-weight: 500;
	color: #ac7116;
	background-color: #fff;
	border: 1px solid #ac7116;
	border-radius: 100vh;
	padding: 8px 14px;
}

.top .menu_list_item .cs_txt {
	font-size: 36px;
	font-weight: 700;
	color: #cf9c00;
	line-height: 1.4em;
	text-align: center;
	padding-top: 32px;
}

.top .menu_list_container + .btn_container {
	margin-top: 64px;
}


/*confidence_wrap--------------------------------*/

.top .confidence_wrap {
	width: 100%;
	background-color: #000;
	padding-top: 72px;
	overflow: hidden;
}

.top .confidence_wrap .confidence_container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
}

.top .confidence_wrap .left_container {
	width: 45%;
	padding: 0 0 72px 64px;
}

.top .confidence_wrap .right_container {
	width: 55%;
	position: relative;
}

.top .confidence_wrap .confidence_ttl {
	display: block;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 72px;
	font-weight: 400;
	color: #db0a17;
	line-height: 1.2em;
	white-space: nowrap;
	padding-bottom: 24px;
}

.top .confidence_wrap .confidence_txt {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 1.5em;
	white-space: nowrap;
	padding-bottom: 6px;
}

.top .confidence_wrap .btn_container {
	margin: 32px 0 0;
}

.top .confidence_wrap .btn_container::before {
	background-color: #fff;
}

.top .confidence_wrap .btn_container a {
	color: #fff;
	background-color: #000;
	border: 2px solid #fff;
}

.top .confidence_wrap .btn_container a strong::after {
	background: url('../img/common/ico_arrow_w.svg') center center no-repeat;
}

.top .confidence_wrap .confidence_list_container {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 15px;
}

.top .confidence_wrap .confidence_list_container::before {
	content: '';
	display: block;
	width: 938px;
	height: 718px;
	background: url('../img/top/tower_obj.webp') left bottom no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 0;
}

.top .confidence_wrap .confidence_list_item {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	line-height: 2em;
	position: absolute;
}

.top .confidence_wrap .confidence_list_item .blank_box {
	display: inline-block;
	width: 62px;
	height: 23px;
	border: 2px solid #fff;
	box-sizing: border-box;
	margin: 0 4px;
	transform: translateY(4px);
}

.top .confidence_wrap .confidence_list_item:first-child {
	top: 60px;
	left: 10px;
}

.top .confidence_wrap .confidence_list_item:nth-child(2) {
	top: 245px;
	left: 10px;
}

.top .confidence_wrap .confidence_list_item:nth-child(3) {
	top: 223px;
	left: 568px;
}

.top .confidence_wrap .confidence_list_item:first-child::after {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: url('../img/top/arrow_obj01.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -15px;
	right: -16px;
}

.top .confidence_wrap .confidence_list_item:nth-child(2)::after {
	content: '';
	display: block;
	width: 50px;
	height: 42px;
	background: url('../img/top/arrow_obj03.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -47px;
	right: 0;
}

.top .confidence_wrap .confidence_list_item:nth-child(3)::after {
	content: '';
	display: block;
	width: 46px;
	height: 20px;
	background: url('../img/top/arrow_obj02.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -29px;
	left: -9px;
}


/*shoplist_wrap--------------------------------*/

.top .shoplist_wrap {
	padding: 96px 0;
}

.top .shoplist_ttl {
	font-family: "Changa One", sans-serif;
	font-size: 200px;
	font-weight: 400;
	color: #ac7116;
	line-height: .9em;
	text-align: center;
	padding-bottom: 32px;
}

.top .shoplist_txt {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.5em;
	text-align: center;
	padding-bottom: 72px;
}

.top .shop_list_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding-bottom: 40px;
}

.top .shop_list_item {
	width: calc(100% / 3);
	text-align: right;
}

.top .shop_list_item strong {
	font-size: 96px;
	font-weight: 700;
	color: #db0a17;
	line-height: 1em;
	padding-left: 80px;
	position: relative;
}

.top .shop_list_item:first-child strong::before {
	content: '';
	display: block;
	width: 60px;
	height: 62px;
	background: url('../img/top/ico_pin.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.top .shop_list_item:nth-child(2) strong::before {
	content: '';
	display: block;
	width: 63px;
	height: 63px;
	background: url('../img/top/ico_shop.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.top .shop_list_item i {
	font-size: 32px;
	font-weight: 500;
	font-style: normal;
	line-height: 1em;
}

.top .shop_list_item a strong {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	line-height: 1.6em;
	padding: 10px 42px 10px 0;
	border-bottom: 2px solid #000;
	position: relative;
}

.top .shop_list_item a strong::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/common/ico_arrow_b.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.top .shop_list_item a:hover strong {
	border-bottom: unset;
	transition-duration: 0.3s;
}

.top .shop_list_item a:hover strong::after {
	transform: translate(5px, -50%);
}

.top .area_list_container {
	width: 91.47vw;
	max-width: 1184px;
	margin: 0 auto;
	padding-bottom: 72px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.top .area_list_item {
	width: 370px;
	height: 120px;
	margin: 0 12px 24px;
	position: relative;
}

.top .area_list_item::before {
	content: '';
	display: block;
	width: 355px;
	height: 82px;
	background-color: #f0b500;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}

.top .area_list_item a {
	display: block;
	width: 364px;
	height: 112px;
	background-color: #fff;
	border: 2px solid #000;
	box-sizing: border-box;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transition-duration: 0.3s;
}

.top .area_list_item a:hover {
	top: 4px;
	right: 3px;
	transition-duration: 0.3s;
}

.top .fc_recruit_wrap {
	width: 91.47vw;
	max-width: 1160px;
	height: 413px;
	margin: 0 auto;
	background-color: #db0a17;
	position: relative;
}

.top .fc_recruit_ttl strong {
	display: block;
	font-size: 72px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4em;
	padding: 40px 0 0 48px;
	position: relative;
	z-index: 1;
}

.top .fc_recruit_ttl em {
	font-family: "Changa One", sans-serif;
	font-size: 160px;
	font-weight: 400;
	font-style: normal;
	color: #be000c;
	line-height: .8em;
	position: absolute;
	top: 160px;
	left: 0;
	z-index: 0;
}

.top .btn_fc_container a {
	display: block;
	width: 481px;
	height: 413px;
	background: url('../img/top/fc_obj_pc.svg') center center no-repeat;
	background-size: contain;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.top .btn_fc_container a strong {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 64px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	line-height: 1.4em;
	text-align: center;
	padding: 0 0 22px 40px;
}

.top .btn_fc_container a em {
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	line-height: 1.5em;
	text-align: center;
	padding: 0 0 36px 40px;
}

.top .btn_fc_container a.disabled {
	pointer-events: none;
}

.top .btn_fc_container a.disabled .cs_txt {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 64px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	line-height: 1.2em;
	text-align: center;
	padding: 0 0 70px 40px;
}


/*recruit_wrap--------------------------------*/

.top .recruit_wrap {
	background-color: #fff;
}

.top .recruit_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	padding: 56px 0;
	box-sizing: border-box;
	background: url('../img/top/recruit_obj_pc.jpg') center right no-repeat;
}

.top .recruit_ttl i {
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 48px;
	font-weight: 400;
	font-style: normal;
	color: #f0b500;
	line-height: .9em;
	padding: 0 0 12px 36px;
	position: relative;
}

.top .recruit_ttl i::before {
	content: '';
	display: block;
	width: 22px;
	height: 26px;
	background: url('../img/common/ico_hand.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.top .recruit_ttl strong {
	display: block;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 110px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	-webkit-text-stroke: 2px #be000c;
	text-stroke: 2px #be000c;
	line-height: .7em;
}

.top .recruit_ttl em {
	display: block;
	font-size: 56px;
	font-weight: 700;
	font-style: normal;
	color: #be000c;
	line-height: 1.4em;
	white-space: nowrap;
	padding: 0 0 48px 21px;
}

.top .recruit_txt {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
	white-space: nowrap;
	padding-bottom: 12px;
}

.top .recruit_wrap .btn_container {
	margin: 26px 0 0;
}


/*news_wrap--------------------------------*/

.top .news_wrap {
	background-color: #fff;
	padding: 96px 0;
}

.top .news_wrap .elm {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top .news_wrap .news_ttl strong {
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 88px;
	font-weight: 400;
	font-style: normal;
	color: #be000c;
	line-height: .9em;
	padding-bottom: 32px;
}

.top .news_wrap .news_ttl em {
	display: block;
	font-size: 22px;
	font-weight: 600;
	font-style: normal;
	color: #be000c;
	line-height: .9em;
	padding: 49px 0 4px;
	position: relative;
}

.top .news_wrap .news_ttl em::before {
	content: '';
	display: block;
	width: 49px;
	height: 39px;
	background: url('../img/common/ico_chicken.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.top .news_wrap .btn_container {
	width: 264px;
	margin-left: 0;
}

.news_container {
	width: 69.66%;
	padding-left: 3vw;
}

.category_list_container {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 32px;

}

.category_list_item {
	width: 24.25%;
	height: 54px;
	background-color: #fff;
	border: 2px solid #000;
	border-bottom: 4px solid #000;
	border-left: 4px solid #000;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.category_list_item:not(:last-child) {
	margin-right: .99%;
}

.category_list_item strong {
	font-size: 16px;
	font-weight: 500;
}

.category_list_item.current {
	background-color: #be000c;
	border: 2px solid #be000c;
	border-bottom: 4px solid #be000c;
	border-left: 4px solid #be000c;
}

.category_list_item.current strong {
	color: #fff;
}

.news_list_container {
	width: 100%;
	border-top: 1px solid #d7d7d7;
}

.news_list_item a {
	display: block;
	width: 100%;
	padding: 24px 12px;
	border-bottom: 1px solid #d7d7d7;
	box-sizing: border-box;
	transition-duration: 0.3s;
}

.news_list_item a i {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1em;
	padding-right: 20px;
}

.news_list_item a b {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	color: #ac7116;
	line-height: 1em;
	padding: 8px 14px;
	background-color: #fff;
	border: 1px solid #ac7116;
	border-radius: 100vh;
}

.news_list_item a strong {
	display: block;
	font-size: 16px;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5em;
	padding: 20px 32px 0 0;
	position: relative;
}

.news_list_item a strong::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url('../img/common/ico_arrow_b.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.news_list_item a:hover {
	background-color: #fff9de;
	transition-duration: 0.3s;
}

.news_list_item a:hover strong::after {
	transform: translate(5px, -50%);
}



/*--------------------------------------*/

/*lower*/

/*--------------------------------------*/

/*common--------------------------------*/

.lower article {
	padding-top: 32px;
	min-height: 600px;
}

.contents_wrap {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto 40px;
	padding: 40px;
	box-sizing: border-box;
	background-color: #fff;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

/*page_ttl--------------------------------*/

.page_ttl {
	padding-bottom: 40px;
}

.page_ttl em {
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 118px;
	font-weight: 400;
	font-style: normal;
	color: #be000c;
	line-height: .9em;
	text-align: center;
}

.page_ttl strong {
	display: block;
	font-size: 28px;
	font-weight: 600;
	font-style: normal;
	color: #be000c;
	line-height: 1.6em;
	text-align: center;
	padding-top: 16px;
}



/*related_wrap--------------------------------*/

.related_wrap {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	padding: 56px 0 64px;
}

.related_list_container {
	display: flex;
	justify-content: space-between;
}

.related_list_item {
	width: 48.97%;
	aspect-ratio: 142 / 77;
	position: relative;
}

.related_list_item a {
	display: block;
	width: 100%;
	height: 100%;
	border: 4px solid #000;
	border-bottom-width: 16px;
	overflow: hidden;
}

.related_list_item .related_obj {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition-duration: 0.3s;
}

.related_list_item a:hover .related_obj {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.related_list_item .related_ttl {
	background-color: #db0a17;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 24px;
	position: absolute;
	bottom: 16px;
	left: 4px;
}

.related_list_item .related_ttl strong {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	line-height: 1em;
	padding-right: 37px;
	position: relative;
}

.related_list_item .related_ttl strong::after {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.related_list_item.recruit .related_ttl strong::after {
	background-image: url('../img/common/ico_recruit.svg');
}

.related_list_item.fc .related_ttl strong::after {
	background-image: url('../img/common/ico_fc.svg');
}

.related_list_item.shop .related_ttl strong::after {
	background-image: url('../img/common/ico_shop.svg');
}

.related_list_item.confidence .related_ttl strong::after {
	background-image: url('../img/common/ico_confidence.svg');
}



/*breadcrumbs_wrap--------------------------------*/

.breadcrumbs_wrap {
	width: 100%;
	background-color: #000;
	padding: 16px 64px;
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
}

.breadcrumbs_list_item {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 1em;
}

.breadcrumbs_list_item:not(:last-child) {
	position: relative;
	padding-right: 32px;
}

.breadcrumbs_list_item:not(:last-child)::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%) rotate(45deg);
}

.breadcrumbs_list_item a {
	text-decoration: underline;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	line-height: 1em;
}



/*--------------------------------------*/

/*company*/

/*--------------------------------------*/

/*profile_list_container--------------------------------*/

.company .contents_wrap {
	padding: 16px 40px;
}

.lower .profile_list_container {
	display: flex;
	flex-wrap: wrap;
}

.lower .profile_list_item {
	padding: 24px 0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
}

.lower .profile_list_item:last-child,
.lower .profile_list_item:nth-last-child(2) {
	border-bottom: unset;
}

.lower dt.profile_list_item {
	width: 110px;
	font-weight: 700;
}

.lower dd.profile_list_item {
	width: calc(100% - 110px);
}

.lower dd.profile_list_item a {
	text-decoration: underline;
}



/*--------------------------------------*/

/*news*/

/*--------------------------------------*/

.news .category_list_container {
	justify-content: left;
}

.news .category_list_item {
	width: 196px;
}

.news .category_list_item:not(:last-child) {
	margin-right: 8px;
}

.news .pagination {
	padding-top: 48px;
}

.news .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
}

.news .page-numbers {
	font-size: 16px;
	font-weight: 400;
	color: #929292;
	line-height: 1em;
	padding: 0 10px;
}

.news .page-numbers.current {
	color: #db0a17;
	font-weight: 500;
}

.news .page-numbers.prev,
.news .page-numbers.next {
	color: #db0a17;
}



/*post_wrap--------------------------------*/

.news .post_wrap {
	margin: 80px auto 56px;
	padding: 64px 40px;
}

.news .post_wrap .ttl_container {
	padding-bottom: 24px;
	border-bottom: 1px solid #e0e0e0;
}

.news .post_wrap .ttl_container .post_ttl {
	font-size: 32px;
	font-weight: 600;
	color: #db0a17;
	line-height: 1.6em;
	padding-bottom: 20px;
}

.news .post_wrap .ttl_container i {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1em;
	padding-right: 20px;
}

.news .post_wrap .ttl_container b {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	color: #ac7116;
	line-height: 1em;
	padding: 8px 14px;
	background-color: #fff;
	border: 1px solid #ac7116;
	border-radius: 100vh;
}

.news .post_wrap .post_container {
	padding-top: 40px;
	overflow-wrap: anywhere;
}

.news .post_wrap .post_container h6 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container h5 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container h4 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap .post_container strong {
	font-weight: 700;
	font-style: normal;
}

.news .post_wrap a {
	text-decoration: underline;
}

.news .post_wrap .aligncenter {
	text-align: center;
}

.news .post_wrap ul,
.news .post_wrap ol {
	padding-left: 2em;
}

.news .post_wrap ul li,
	.news .post_wrap ol li {
	list-style-type: disc;
	padding-bottom: .2em;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6em;
	padding-bottom: 1em;
}

.news .post_wrap img {
	max-width: 100%;
	height: unset;
}

.news .post_wrap + .btn_container {
	margin-bottom: 72px;
}



/*--------------------------------------*/

/*sitemap*/

/*--------------------------------------*/

.sitemap_list_container {
	display: flex;
	flex-wrap: wrap;
}

.sitemap_list_container + .sitemap_list_container {
	padding-top: 24px;
}

.sitemap_list_container .sitemap_list_item {
	padding: 0 32px 24px 0;
	box-sizing: border-box;
}

.sitemap_list_container .sitemap_list_item:last-child {
	padding-bottom: 0;
}

.sitemap_list_container .sitemap_list_item.headline {
	width: 100%;
}

.sitemap_list_container dt:not(.headline) {
	width: 50%;
	padding-top: 24px;
}

.sitemap_list_container .sitemap_list_item a {
	display: inline-block;
	padding-right: 30px;
	position: relative;
}

.sitemap_list_container .sitemap_list_item a::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/common/ico_arrow_b.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.sitemap_list_container .sitemap_list_item a:hover::after {
	transform: translate(5px, -50%);
}

.sitemap_list_container dt a {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4em;
}

.sitemap_list_container dd a {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
}



/*--------------------------------------*/

/*privacy*/

/*--------------------------------------*/

.privacy .privacy_list_container dt {
	font-size: 32px;
	font-weight: 600;
	color: #db0a17;
	line-height: 1.4em;
	padding-bottom: 24px;
}

.privacy .privacy_list_container dd {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	padding-bottom: 48px;
}

.privacy .privacy_list_container dd:last-child {
	padding-bottom: 0;
}



/*--------------------------------------*/

/*access*/

/*--------------------------------------*/

.access .area_wrap {
	margin-bottom: 0;
}

.access .area_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.access .area_list_container + .area_list_container {
	padding-top: 24px;
}

.access .area_list_container dt {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4em;
	padding-right: 56px;
}

.access .area_list_container dd a {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #db0a17;
	line-height: 1.4em;
	padding-right: 30px;
	margin-right: 56px;
	position: relative;
}

.access .area_list_container dd a::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/access/ico_arrow.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(90deg);
	transition-duration: 0.3s;
}

.access .area_list_container dd a:hover::after {
	transform: translateY(-25%) rotate(90deg);
}

.access .shop_list_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
}

.access .shop_list_container dt {
	font-size: 48px;
	font-weight: 700;
	color: #db0a17;
	line-height: 1.4em;
	padding-bottom: 33px;
	margin-bottom: 40px;
	position: relative;
}

.access .shop_list_container dt::after {
	content: '';
	display: block;
	width: 80px;
	height: 9px;
	background-color: #db0a17;
	position: absolute;
	bottom: 0;
	left: 0;
}

.access .anchor + .shop_list_item {
	padding-top: 56px;
}

.access .shop_card_container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.access .shop_card_item {
	padding-bottom: 16px;
}

.access .shop_card_item:not(:nth-child(3n)) {
	padding-right: 16px;
}

.access .shop_card_item a {
	display: block;
	width: 370px;
	height: 100%;
	box-sizing: border-box;
	padding: 24px;
	background-color: #fff;
	border: 2px solid #000;
	border-bottom-width: 8px;
	border-left-width: 8px;
}

.access .shop_card_item a .shop_card_ttl {
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	color: #db0a17;
	line-height: 1.4em;
	padding-right: 30px;
	margin-bottom: 20px;
	position: relative;
}

.access .shop_card_item a .shop_card_ttl::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/access/ico_arrow.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.access .shop_card_item a:hover .shop_card_ttl::after {
	transform: translate(5px, -50%);
}

.access .shop_detail_container li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	padding-left: 28px;
	margin-bottom: 10px;
	position: relative;
}

.access .shop_detail_container li::before {
	content: '';
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 3px;
	left: 0;
}

.access .shop_detail_container .add_container::before {
	width: 14px;
	height: 16px;
	background-image: url('../img/access/ico_add.svg');
}

.access .shop_detail_container .tel_container::before {
	width: 15px;
	height: 15px;
	background-image: url('../img/access/ico_tel.svg');
}

.access .shop_detail_container .time_container::before {
	width: 15px;
	height: 15px;
	background-image: url('../img/access/ico_clock.svg');
}



/*shop--------------------------------*/

.access.shop .shop_wrap {
	margin-top: 32px;
}

.access.shop .shop_container {
	display: flex;
	justify-content: space-between;
	padding-bottom: 43px;
}

.access.shop .shop_container .txt_container {
	width: 58.7%;
}

.access.shop .shop_ttl {
	font-size: 48px;
	font-weight: 700;
	color: #db0a17;
	line-height: 1.4em;
	padding-bottom: 33px;
	margin-bottom: 40px;
	position: relative;
}

.access.shop .shop_ttl::after {
	content: '';
	display: block;
	width: 80px;
	height: 9px;
	background-color: #db0a17;
	position: absolute;
	bottom: 0;
	left: 0;
}

.access.shop .shop_container .img_container {
	width: 37.59%;
	aspect-ratio: 406 / 291;
	overflow: hidden;
	position: relative;
}

.access.shop .shop_container .img_container .shop_obj {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.access.shop .access_list_contaioner dt {
	/*width: 112px;*/
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	padding-bottom: 16px;
}

.access.shop .access_list_contaioner dd {
	/*width: calc(100% - 112px);*/
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}

.access.shop .detail_container .access_list_contaioner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.access.shop .detail_container .access_list_item {
	padding: 12px 0;
	border-bottom: 1px solid #e0e0e0;
}

.access.shop .detail_container .access_list_contaioner dt {
	width: 140px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	padding-bottom: 16px;
	display: flex;
	align-items: center;
}

.access.shop .detail_container .access_list_contaioner dd {
	width: calc(100% - 140px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	padding-bottom: 16px;
	display: flex;
	align-items: center;
}

.access.shop .detail_container .access_list_contaioner dd .brand_menu {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: #db0a17;
	line-height: 1.6em;
	padding: 0 30px 0 20px;
	position: relative;
}

.access.shop .detail_container .access_list_contaioner dd .brand_menu::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url('../img/access/ico_arrow.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.access.shop .detail_container .access_list_contaioner dd .brand_menu:hover::after {
	transform: translate(5px, -50%);
}

.access.shop .access_txt {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
}

.access.shop .access_txt + .access_txt {
	padding-top: 8px;
}

.access.shop .map_wrap {
	padding-bottom: 40px;
}

.access.shop .map_ttl {
	font-size: 32px;
	font-weight: 700;
	color: #ac7116;
	line-height: 1.4em;
	padding-left: 38px;
	margin-bottom: 24px;
	position: relative;
}

.access.shop .map_ttl::before {
	content: '';
	display: block;
	width: 22px;
	height: 25px;
	background: url('../img/access/ico_add.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.access.shop .map_container {
	width: 100%;
	height: 438px;
}

.access.shop .map_container iframe {
	width: 100%;
	height: 100%;
}

.access.shop .detail_ttl {
	font-size: 32px;
	font-weight: 700;
	color: #ac7116;
	line-height: 1.4em;
	padding-left: 38px;
	position: relative;
}

.access.shop .detail_ttl::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url('../img/access/ico_shop.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.access.shop .detail_container .access_list_item {
	padding: 24px 0;
}

.access.shop .btn_container.back {
	margin: 48px auto 72px;
}



/*--------------------------------------*/

/*menu*/

/*--------------------------------------*/

.brand_tab_list_container {
	display: flex;
	justify-content: center;
	padding-bottom: 56px;
}

.brand_tab_list_item {
	width: 445px;
	height: 120px;
	margin: 0 24px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 100vh;
	border: 2px solid #000;
	border-left-width: 8px;
	border-bottom-width: 8px;
	display: flex;
	justify-content: left;
	align-items: center;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.brand_tab_list_item.current {
	padding-left: 12px;
	background-color: #db0a17;
	border: none;
}

.brand_tab_list_item.current .brand_obj:first-of-type {
	margin-right: 8px
}

.menu .index_wrap {
	padding: 16px 0;
}

.menu .index_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.menu .index_list_item {
	width: 22.93%;
	padding: 14px 5px 12px;
	box-sizing: border-box;
	font-size: 20px;
	font-weight: 600;
	color: #db0a17;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.menu .index_list_item:hover,
.menu .index_list_item.current {
	background-color: #db0a17;
	color: #fff;
}

.menu .menu_lead {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	padding-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6em;
}

.menu .menu_lead strong {
	display: block;
	font-style: normal;
	color: #db0a17;
	padding-top: 12px;
}

.menu .note_list_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	padding: 12px 0 24px;
}

.menu .note_list_item {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	padding-left: 1em;
	text-indent: -1em;
}

.menu .note_list_item + .note_list_item {
	padding-top: 4px;
}

.menu .menu_wrap {
	border: 2px solid #000;
}

.menu .menu_wrap + .menu_wrap {
	margin-top: 40px;
}

.menu .ttl_container {
	float: left;
	width: 44.98%;
}

.menu .menu_list_ttl {
	position: relative;
	padding: 44px 0 8px;
}

.menu .menu_list_ttl strong {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4em;
	position: relative;
}

.menu .menu_list_ttl strong b {
	font-size: 50%;
}

.menu .menu_list_ttl i {
	display: block;
	font-size:12px;
	font-weight: 500;
	font-style: normal;
	color: #db0a17;
	background-color: #ffe2e3;
	border: 1px solid #db0a17;
	padding: 10px 15px;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-4.88deg);
}

.menu .menu_list_txt {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	padding-bottom: 20px;
}

.menu .price_txt {
	padding-bottom: 12px;
}

.menu .price_txt strong {
	font-size: 32px;
	font-weight: 700;
	font-style: normal;
	color: #db0a17;
	line-height: 1.4em;
}

.menu .price_txt i {
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	color: #db0a17;
	line-height: 1.4em;
}

.menu .price_txt small {
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.4em;
}

.menu .price_table_wrap {
	float: left;
	width: 44.98%;
}

.menu .price_table {
	width: 100%;
}

.menu .price_table th {
	padding: 16px 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1em;
	background-color: #f0f0f0;
	border: 1px solid #dcdcdc;
}

.menu .price_table tbody th {
	font-weight: 500;
}

.menu .price_table td {
	padding: 16px 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	border: 1px solid #dcdcdc;
}

.menu .menu_target_item {
	display: none;
}

.menu .menu_target_item.current {
	display: block;
}

.menu .detail_wrap {
	float: right;
	width: 49.91%;
}

.menu .detail_wrap .img_container {
	padding-bottom: 24px;
}

.menu .detail_list_container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu .detail_list_container dt {
	width: 92px;
	padding-bottom: 12px;
}

.menu .detail_list_container dt strong {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.menu .detail_list_container dd {
	width: calc(100% - 92px);
	padding-bottom: 12px;
}

.menu .detail_list_container dd strong {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.menu .detail_list_container {
	display: flex;
	flex-wrap: wrap;
}

.menu .detail_list_item {
	font-size: 14px;
	font-weight: 500;
	color: #ac7116;
	background-color: #fff;
	border: 1px solid #ac7116;
	border-radius: 100vh;
	padding: 8px 14px;
	margin: 0 12px 12px 0;
}

.menu .detail_wrap + .detail_container {
	float: left;
	width: 44.98%;
}

.sec_subttl {
	font-size: 56px;
	font-weight: 700;
	color: #db0a17;
	line-height: 1.4em;
	padding: 40px 0 32px;
	text-align: center;
}

.menu .sidemenu_wrap {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto 20px;
	padding: 32px;
	box-sizing: border-box;
	background-color: #fff;
	border: 2px solid #000;
}

.menu .sidemenu_ttl {
	text-align: center;
	padding-bottom: 12px;
}

.menu .sidemenu_ttl strong {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4em;
	padding-left: 58px;
	position: relative;
}

.menu .sidemenu_ttl strong::before {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	background: url('../img/menu/ico_rice.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 0;
}

.menu .sidemenu_txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 160%;
	text-align: center;
	padding-bottom: 20px;
}

.menu .sidemenu_list_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu .sidemenu_txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 160%;
	text-align: center;
	padding-bottom: 20px;
}

.menu .sidemenu_list_item {
	padding: 0 20px;
}

.menu .sidemenu_price_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu .sidemenu_price_container dt {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	padding-right: 4px;
}

.menu .sidemenu_price_container strong {
	font-size: 32px;
	font-weight: 700;
	font-style: normal;
	color: #db0a17;
	line-height: 1.4em;
}

.menu .sidemenu_price_container i {
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	color: #db0a17;
	line-height: 1.4em;
}

.menu .sidemenu_price_container small {
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.4em;
}

.menu .sidemenu_wrap.align_left {
	margin-bottom: 40px;
}

.menu .sidemenu_wrap.align_left .sidemenu_ttl {
	text-align: left;
}

.menu .sidemenu_wrap.align_left .sidemenu_txt {
	text-align: left;
}

.menu .sidemenu_wrap.align_left .sidemenu_list_container {
	justify-content: flex-start;
}

.menu .sidemenu_wrap.align_left .sidemenu_list_item {
	padding: 0 40px 0 0;
}

.menu .sidemenu_wrap .note_list_container {
	width: 100%;
	padding-bottom: 0;
}

.menu .flex_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.menu .flex_container .menu_wrap {
	width: 48.97%;
	padding: 24px;
	margin: 0 0 40px;
}

.menu .flex_container .menu_wrap + .menu_wrap {
	margin-top: 0;
}

.menu .flex_container .menu_wrap .ttl_container,
.menu .flex_container .menu_wrap .price_table_wrap,
.menu .flex_container .menu_wrap .detail_wrap {
	float: none;
	width: 100%;
}

.menu .flex_container .menu_list_ttl {
	padding: 0 0 16px;
}

.menu .flex_container .menu_list_ttl strong {
	font-size: 28px;
}

.menu .flex_container .price_txt {
	padding-bottom: 4px;
}

.menu .flex_container .price_txt strong {
	font-size: 28px;
}

.menu .flex_container .price_txt small {
	font-size: 16px;
}

.menu .menu_subttl {
	width: 91.47vw;
	max-width: 1160px;
    font-size: 48px;
    font-weight: 700;
    color: #db0a17;
    line-height: 1.4em;
    padding-bottom: 33px;
	margin: 0 auto 40px;
    position: relative;
}

.menu .menu_subttl::after {
    content: '';
    display: block;
    width: 80px;
    height: 9px;
    background-color: #db0a17;
    position: absolute;
    bottom: 0;
    left: 0;
}



/*--------------------------------------*/

/*contact*/

/*--------------------------------------*/

.contact .contact_txt {
	font-size: 16px;
	font-weight: 400;
	line-height: 2.6em;
	text-align: center;
}

.contact .contact_list_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact .contact_list_item {
	padding: 0 8px;
}

.contact .contact_list_item a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.6em;
	padding-right: 23px;
	position: relative;
}

.contact .contact_list_item a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url('../img/common/ico_arrow_b.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

.contact .contact_list_item a:hover::after {
	transform: translate(5px, -50%);
}

.contact .note_list_item {
	font-size: 16px;
	font-weight: 400;
	line-height: 2.6em;
	text-align: center;
	padding-left: 1em;
	text-indent: -1em;
}

.contact #contactForm {
	padding-top: 48px;
}

.contact .contact_table {
	width: 100%;
}

.contact .contact_table th {
	width: 30%;
	padding: 12px 0;
	vertical-align: top;
}

.contact .contact_table th span {
	display: flex;
	font-size: 16px;
	font-weight: 600;
	line-height: 31px;
}

.contact .contact_table th strong {
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: #db0a17;
	width: 44px;
	height: 29px;
	background-color: #fff;
	border: 1px solid #db0a17;
	border-radius: 100vh;
	margin-left: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact .contact_table td {
	width: 70%;
	padding: 0 0 20px;
	vertical-align: middle;
}

.contact .contact_table input[type=text] {
	width: 100%;
	height: 52px;
	border: 1px solid #dfe4ea;
	border-radius: 6px;
	padding: 20px 14px;
	box-sizing: border-box;
}

.contact .contact_table select {
	width: 100%;
	height: 52px;
	border: 1px solid #dfe4ea;
	border-radius: 6px;
	padding: 0 20px;
	box-sizing: border-box;
}

.contact .contact_table select option:hover {
	background-color: #484848;
}

.contact .contact_table textarea {
	width: 100%;
	height: 322px;
	border: 1px solid #dfe4ea;
	border-radius: 6px;
	padding: 20px 12px;
	box-sizing: border-box;
}

.contact .agree_container {
	margin: 16px auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact .agree_container a {
	color: #db0a17;
	text-decoration: underline;
}

.contact input[type=checkbox] {
	width: 20px;
	height: 20px;
	border: 1px solid #dfe4ea;
	margin-right: 10px;
}

.contact .submit_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact .submit {
	width: 350px;
	height: 83px;
	margin: 0 auto;
	padding-right: 24px;
	background-color: #fff;
	border: 2px solid #000;
	border-bottom-width: 8px;
	box-sizing: border-box;
	background: url('../img/common/ico_arrow_b.svg') 284px 50% no-repeat;
	background-size: 14px 14px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6em;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition-duration: 0.3s;
}

.contact .submit:hover {
	background-position: 289px 50%;
	transition-duration: 0.3s;
}

.contact #btn_submit.submit_off {
	color: #929292;
	border-color: #929292;
	background-image: none;
	padding-right: 0;
	transition-duration: 0.3s;
}

.contact #btn_submit.submit_off:hover {
	background-position: 284px 50%;
	cursor: default;
	transition-duration: 0.3s;
}

.contact .confirm_table {
		width: 100%;
		margin: 24px 0 48px;
}

.contact .confirm_table th {
	width: 30%;
	padding: 24px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #e0e0e0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5em;
}

.contact .confirm_table td {
	width: 70%;
	padding: 24px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #e0e0e0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
}

.contact .confirm_table tr:last-child {
	display: none;
}

.contact .submit_container .back {
	width: 110px;
	height: 28px;
	padding-left: 25px;
	margin-right: 56px;
	border: none;
	background: url('../img/common/ico_arrow_bak.svg') 6px 50% no-repeat;
	background-size: 10px 10px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
	cursor: pointer;
	transition-duration: 0.3s;
}

.contact .submit_container .back:hover {
	background-position: 0 50%;
	transition-duration: 0.3s;
}

.contact .contact_ttl {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 16px;
}

.contact .contact_txt.finish_txt {
	line-height: 1.6em;
}

.contact .tel_txt {
	text-align: center;
	padding-top: 16px;
}

.contact .tel_txt strong {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	padding-left: 28px;
	position: relative;
}

.contact .tel_txt strong::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background: url('../img/common/ico_tel.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/*--------------------------------------*/

/*confidence*/

/*--------------------------------------*/

.confidence .mv_wrap {
	width: 91.47vw;
	max-width: 1360px;
	margin: 34px auto 0;
	background: #f0b500 url('../img/confidence/dot_obj.png') center center;
	border: 6px solid #000;
	box-sizing: border-box;
	position: relative;
}

.confidence .mv_ttl {
	padding: 126px 0 84px 47px;
	position: relative;
	z-index: 1;
}

.confidence .mv_ttl em {
	display: block;
	font-family: "Changa One", sans-serif;
	font-size: 140px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	-webkit-text-stroke: 4px #000;
	text-stroke: 4px #000;
	line-height: .9em;
	padding-bottom: 27px;
}

.confidence .mv_ttl strong {
	font-size: 64px;
	font-weight: 700;
	color: #be000c;
	line-height: 1.2em;
}

.confidence .mv_obj01 {
	position: absolute;
	top: 0;
	right: 349px;
	z-index: 0;
}

.confidence .mv_obj02 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}


/*conf_wrap--------------------------------*/

.confidence .conf_wrap {
	padding: 80px 0 97px;
}

.confidence .conf_ttl {
	font-size: 72px;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 24px;
}

.confidence .conf_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
	padding: 80px 24px 48px;
	border: 4px solid #000;
	box-sizing: border-box;
	background-color: #fff;
	position: relative;
}

.confidence .conf_container::before {
	content: '01';
	display: block;
	width: 123px;
	height: 56px;
	background-color: #000;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

.confidence .conf_container.conf02::before {
	content: '02';
	left: unset;
	right: 0;
}

.confidence .conf_container.conf03::before {
	content: '03';
}

.confidence .conf_container:not(.conf01) {
	margin-bottom: 24px;
}

.confidence .conf_container.conf01 .img_container {
	width: 426px;
	position: absolute;
	top: -42px;
	right: -83px;
}

.confidence .conf_container.conf02 .img_container {
	width: 405px;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
}

.confidence .conf_container.conf02 .txt_container:first-of-type {
	padding-left: 38.45%;
}

.confidence .conf_container.conf02 .txt_container:nth-of-type(2) {
	width: 100%;
}

.confidence .conf_container.conf03 .img_container {
	width: 498px;
	position: absolute;
	bottom: -11px;
	right: -95px;
}

.confidence .conf_subttl {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4em;
	padding-bottom: 16px;
}

.confidence .conf_txt {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
	padding-bottom: 24px;
}

.confidence .conf_txt strong {
	font-style: normal;
	font-size: 700;
	color: #be000c;
}

.confidence .conf_list_container dt {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6em;
	padding-left: 43px;
	margin-bottom: 12px;
	position: relative;
}

.confidence .conf_list_container dt:before {
	content: '';
	display: block;
	width: 31px;
	height: 31px;
	background: url('../img/confidence/ico_check.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.confidence .conf_list_container dd {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
	padding: 0 0 24px 28px;
}

.confidence .conf_list_container dd:last-child {
	padding-bottom: 0;
}


/*vision_wrap--------------------------------*/

.confidence .vision_wrap {
	background: #000 url('../img/confidence/conf_obj05.jpg') center center no-repeat;
	padding: 80px 0 32px;
	position: relative;
}

.confidence .vision_wrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(4,4,4,.65);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.confidence .vision_wrap .vision_container {
	width: 91.47vw;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.confidence .vision_ttl {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 24px;
}

.confidence .vision_lead {
	font-size: 24px;
	font-size: 600;
	color: #fff;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 48px;
}

.confidence .vision_lead strong {
	font-style: normal;
	font-size: 700;
	color: #be000c;
}

.confidence .vision_list_container {
	width: 100%;
	max-width: 990px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 8px;
}

.confidence .vision_list_container dt {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6em;
	width: 26%;
	padding-bottom: 24px;
}

.confidence .vision_list_container dt strong {
	font-size: 48px;
	font-style: normal;
}

.confidence .vision_list_container dt i {
	font-size: 32px;
	font-style: normal;
	color: #be000c;
	padding-right: .4em;
}

.confidence .vision_list_container dd {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	line-height: 1.6em;
	width: 74%;
	padding-bottom: 24px;
}


/*design_wrap--------------------------------*/

.confidence .design_wrap {
	padding: 80px 0;
	position: relative;
}

.confidence .design_ttl {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 24px;
}

.confidence .design_container {
	width: 91.47vw;
	max-width: 1160px;
	margin: 0 auto;
}

.confidence .design_lead {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 24px;
}

.confidence .design_lead strong {
	font-style: normal;
	font-size: 700;
	color: #be000c;
}

.confidence .brand_list_container {
	display: flex;
	justify-content: space-between;
	padding-bottom: 58px;
}

.confidence .brand_list_item {
	width: 48.97%;
	position: relative;
}

.confidence .design_wrap .logo_container {
	width: 100%;
	height: 156px;
	background-color: #fff;
	border: 2px solid #000;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.confidence .design_wrap .logo_container .logo_obj {
	width: 86.97%;
}

.confidence .design_wrap .logo_note {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	line-height: 1.6em;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #cf9c00;
	padding: 8px 12px;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(50%);
}

.confidence .design_txt {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6em;
}

.confidence .design_txt + .design_txt {
	padding-top: 24px;
}


@media screen and (min-width: 768px) and (max-width: 1440px) {

	/*--------------------------------------*/

	/*top*/

	/*--------------------------------------*/

	/*confidence_wrap--------------------------------*/

	.top .confidence_wrap .left_container {
		padding: 0 0 5vw 4.44vw;
	}

	.top .confidence_wrap .confidence_ttl {
		font-size: 5vw;
		padding-bottom: 1.67vw;
	}

	.top .confidence_wrap .confidence_txt {
		font-size: 1.25vw;
		padding-bottom: .42vw;
	}

	.top .confidence_wrap .btn_container {
		margin: 2.22vw 0 0;
	}

	.top .confidence_wrap .confidence_list_container {
		left: 1.04vw;
	}

	.top .confidence_wrap .confidence_list_container::before {
		width: 65.14vw;
		height: 49.86vw;
	}

	.top .confidence_wrap .confidence_list_item {
		font-size: 1.39vw;
	}

	.top .confidence_wrap .confidence_list_item .blank_box {
		width: 4.31vw;
		height: 1.6vw;
		margin: 0 .28vw;
		transform: translateY(.28vw);
	}

	.top .confidence_wrap .confidence_list_item:first-child {
		top: 4.17vw;
		left: .69vw;
	}

	.top .confidence_wrap .confidence_list_item:nth-child(2) {
		top: 17.01vw;
		left: .69vw;
	}

	.top .confidence_wrap .confidence_list_item:nth-child(3) {
		top: 15.49vw;
		left: 39.44vw;
	}

	.top .confidence_wrap .confidence_list_item:first-child::after {
		width: 4.17vw;
		height: 4.17vw;
		top: -1.04vw;
		right: -1.11vw;
	}

	.top .confidence_wrap .confidence_list_item:nth-child(2)::after {
		width: 3.47vw;
		height: 2.92vw;
		top: -3.26vw;
	}

	.top .confidence_wrap .confidence_list_item:nth-child(3)::after {
		width: 3.19vw;
		height: 1.39vw;
		top: -2.01vw;
		left: -.63vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 1268px) {

	/*--------------------------------------*/

	/*access*/

	/*--------------------------------------*/

	.access .shop_card_item:not(:nth-child(3n)) {
		padding-right: 0;
	}

	.access .shop_card_item:not(:nth-child(2n)) {
		padding-right: 16px;
	}



	/*--------------------------------------*/

	/*confidence*/

	/*--------------------------------------*/



	/*conf_wrap--------------------------------*/

	.confidence .conf_container {
		padding: 80px 1.89vw 48px;
	}

	.confidence .conf_container.conf01 .img_container {
		width: 33.6vw;
		right: -6.55vw;
	}

	.confidence .conf_container.conf02 .img_container {
		width: 31.94vw;
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 0;
		left: 0;
	}

	.confidence .conf_container.conf03 .img_container {
		width: 39.27vw;
		right: -7.49vw;
	}

	.confidence .conf_subttl {
		font-size: 3.79vw;
	}

	.confidence .conf_txt {
		font-size: 1.89vw;
	}

	.confidence .conf_list_container dt {
		font-size: 2.21vw;
		padding-left: 3.39vw;
	}

	.confidence .conf_list_container dt:before {
		width: 2.44vw;
		height: 2.44vw;
	}

	.confidence .conf_list_container dd {
		font-size: 1.89vw;
		padding: 0 0 24px 2.21vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 1240px) {

	/*footer--------------------------------*/

	.footer_container .footer_subnav_wrap {
		display: block;
	}

	.footer_container .subnav_list_container {
		padding-bottom: 40px;
	}
}



@media screen and (min-width: 768px) and (max-width: 1180px) {

	/*vision_wrap--------------------------------*/

	.confidence .vision_ttl {
		font-size: 4.75vw;
	}

	/*--------------------------------------*/

	/*menu*/

	/*--------------------------------------*/

	.menu .sidemenu_wrap {
		padding: 32px 2.71vw;
	}
	
	.menu .sidemenu_list_item {
		padding: 0 1.69vw;
	}
	
	.menu .sidemenu_price_container dt {
		font-size: 1.69vw;
		padding-right: .34vw;
	}
	
	.menu .sidemenu_price_container strong {
		font-size: 2.71vw;
	}
	
	.menu .sidemenu_price_container i {
		font-size: 1.69vw;
	}
	
	.menu .sidemenu_price_container small {
		font-size: 1.53vw;
	}

}



@media screen and (min-width: 768px) and (max-width: 1080px) {

	/*--------------------------------------*/

	/*top*/

	/*--------------------------------------*/

	/*shoplist_wrap--------------------------------*/

	.top .fc_recruit_wrap {
		height: 680px;
		overflow: hidden;
	}

	.top .btn_fc_container a {
		display: block;
		width: 481px;
		height: 413px;
		background: url('../img/top/fc_obj_pc.svg') center center no-repeat;
		background-size: contain;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: end;
		position: absolute;
		top: unset;
		bottom: 0;
		right: 0;
		z-index: 2;
	}

	.top .btn_fc_container a strong {
		font-family: "Dela Gothic One", sans-serif;
		font-size: 64px;
		font-weight: 400;
		font-style: normal;
		color: #fff;
		line-height: 1.4em;
		text-align: center;
		padding: 0 0 22px 40px;
	}

	.top .btn_fc_container a em {
		font-size: 20px;
		font-weight: 700;
		font-style: normal;
		color: #fff;
		line-height: 1.5em;
		text-align: center;
		padding: 0 0 36px 40px;
	}


	/*vision_wrap--------------------------------*/

	.confidence .vision_list_container dt {
		font-size: 2.96vw;
	}

	.confidence .vision_list_container dt strong {
		font-size: 4.44vw;
	}

	.confidence .vision_list_container dt i {
		font-size: 2.96vw;
	}

	.confidence .vision_list_container dd {
		font-size: 2.22vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 930px) {

	/*vision_wrap--------------------------------*/

	.confidence .vision_lead {
		font-size: 2.58vw;
	}
}