@charset "UTF-8";
/*―――――――――――――――――――――――――――――
top
――――――――――――――――――――――――――――――*/
.w1200 {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.meiryo {
	font-family: "メイリオ", "Meiryo", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans", sans-serif;
}

#mv {
	background: #EA5405 url(../img/mv_bg.jpg) no-repeat center;
	min-height: 310px;
	font-size: 0;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 60px;
}

#lead_text {
	text-align: center;
	margin-bottom: 70px;
}
#lead_text img {
	display: inline-block;
	max-width: 1000px;
	width: 100%;
}

#shop_index_ttl {
	position: relative;
	text-align: center;
	margin-bottom: 45px;
}
#shop_index_ttl:after {
	position: absolute;
	left: 0;
	bottom: 12px;
	content: '';
	display: block;
	width: 100%;
	height: 55px;
	background: #221814;
}
#shop_index_ttl img {
	position: relative;
	z-index: 1;
	display: inline-block;
}

#shop_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1160px;
	margin: 0 auto;
}
#shop_list > a {
	position: relative;
	display: block;
	width: 47.41%;
	border: solid 3px #221814;
	background: #fff;
	border-radius: 10px;
	padding-top: 18px;
	box-shadow: 5px 5px 9px -1px rgba(0, 0, 0, 0.33);
	margin-bottom: 3.6%;
}
#shop_list > a:before {
	position: absolute;
	left: 20px;
	top: -24px;
	content: '';
	display: block;
	width: 104px;
	height: 44px;
	background: url(../img/click.svg) no-repeat left top/100% auto;
}
#shop_list > a:nth-child(2) .header,
#shop_list > a:nth-child(3) .header,
#shop_list > a:nth-child(6) .header,
#shop_list > a:nth-child(7) .header {
	background: #fdebd1;
}
#shop_list > a:nth-child(2) .header_inner,
#shop_list > a:nth-child(3) .header_inner,
#shop_list > a:nth-child(6) .header_inner,
#shop_list > a:nth-child(7) .header_inner {
	border-top-color: #f39700;
	border-bottom-color: #f39700;
}
#shop_list > a:nth-child(5) .header_inner {
	align-items: flex-start;
}
#shop_list > a:nth-child(5) h4 {
	padding: 10px 0 8px;
}
#shop_list .header {
	background: #fbe4df;
	padding: 6px 16px;
}
#shop_list .header_inner {
	display: flex;
	justify-content: space-between;
	border-top: solid 2px #ea5404;
	border-bottom: solid 2px #ea5404;
	padding: 6px 0;
	align-items: center;
}
#shop_list .header_inner .case {
	width: 90px;
	margin-right: 20px;
}
#shop_list .header_inner .w_name {
	width: calc(100% - 110px);
}
#shop_list .header_inner h4 span {
	display: block;
}
#shop_list .header_inner h4 .c_name {
	margin-bottom: 10px;
}
#shop_list .w_text {
	font-size: 20px;
	line-height: 1.7;
	padding: 16px;
	display: flex;
	justify-content: space-between;
}
#shop_list .w_text p {
	letter-spacing: 0.025em;
	width: 48%;
}
#shop_list .w_text .img {
	width: 48.5%;
}

.notes {
	margin-top: 70px;
	font-size: 16px;
	background: #f4f6f7;
	padding: 10px;
	text-align: center;
}
.notes span {
	font-size: 18px;
	display: inline-block;
	border: solid 1px #221814;
	padding: 1px 10px;
	margin-right: 22px;
}

@media only screen and (max-width: 1240px) {
	.w1200 {
		padding-left: 4%;
		padding-right: 4%;
	}
}
@media screen and (max-width: 767px) {
	#mv {
		min-height: 0;
		margin-bottom: 30px;
		background-size: cover;
	}

	#lead_text {
		margin-bottom: 30px;
	}

	#shop_index_ttl {
		margin-bottom: 40px;
	}
	#shop_index_ttl img {
		max-width: 200px;
	}
	#shop_index_ttl:after {
		bottom: 5px;
		height: 27px;
	}

	#shop_list {
		display: block;
	}
	#shop_list > a {
		width: 100%;
		display: block;
		margin-bottom: 40px;
	}
	#shop_list > a:before {
		width: 80px;
		left: 14px;
		top: -19px;
	}
	#shop_list .header_inner {
		display: block;
		padding: 15px 0 18px;
	}
	#shop_list .header_inner .case,
	#shop_list .header_inner .w_name {
		width: 100%;
	}
	#shop_list .header_inner .case {
		text-align: center;
		margin-bottom: 10px;
	}
	#shop_list .header_inner .case img {
		max-width: 60px;
		display: inline-block;
	}
	#shop_list .header_inner .w_name {
		text-align: center;
	}
	#shop_list .header_inner .w_name img {
		display: inline-block;
	}
	#shop_list .w_text {
		font-size: 14px;
	}

	.notes {
		margin-top: 0;
		font-size: 13px;
		text-align: left;
		padding: 15px;
	}
	.notes span {
		text-align: center;
		font-size: 14px;
		display: block;
		margin-right: 0;
		margin-bottom: 5px;
	}
}
/*―――――――――――――――――――――――――――――
詳細
――――――――――――――――――――――――――――――*/
#jirei_detail .w1200 {
	padding-top: 115px;
}
#jirei_detail.orange .detail_top .flex {
	border-top-color: #f39700;
	border-bottom-color: #f39700;
}
#jirei_detail.orange .detail_top .flex:before,
#jirei_detail.orange .detail_top .flex:after {
	background: #f39700;
}
#jirei_detail.orange .section.bg {
	background-image: url(../img/dot_bg_orange.jpg);
}
#jirei_detail.orange .section.bg:before,
#jirei_detail.orange .section.bg:after {
	background-image: url(../img/line_orange.svg);
}
#jirei_detail.orange .detail_bottom {
	border-top-color: #f39700;
	border-bottom-color: #f39700;
	background: #fdebd1;
}

.detail_top {
	margin-bottom: 85px;
}
.detail_top.case5 .c_name,
.detail_top.case5 .name {
	line-height: 1.46;
}
.detail_top + .section {
	padding-top: 0;
}
.detail_top .flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: solid 6px #ea5404;
	border-bottom: solid 6px #ea5404;
	padding: 26px 0;
}
.detail_top .flex > div {
	width: 50%;
}
.detail_top .flex:before,
.detail_top .flex:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #ea5404;
	left: 0;
}
.detail_top .flex:before {
	top: 8px;
}
.detail_top .flex:after {
	bottom: 8px;
}
.detail_top .flex .left {
	padding-left: 68px;
}
.detail_top .flex .left h2 {
	margin-bottom: 35px;
}
.detail_top .flex .left h2.mb {
	margin-bottom: 60px;
}
.detail_top .flex .left p {
	font-size: 28px;
}
.detail_top .flex .right {
	padding-left: 40px;
}

.section {
	padding: 100px 0;
}
.section.bg {
	background: url(../img/dot_bg.jpg) -3px -3px;
	position: relative;
}
.section.bg:before,
.section.bg:after {
	position: absolute;
	left: -4px;
	content: '';
	display: block;
	width: calc(100% + 12px);
	height: 9px;
	background: url(../img/line.svg) repeat-x left top;
}
.section.bg:before {
	top: -4px;
}
.section.bg:after {
	bottom: -4px;
}
.section h3 {
	text-align: center;
	margin-bottom: 40px;
}
.section h3 img {
	display: inline-block;
}
.section p {
	font-size: 20px;
	max-width: 890px;
	margin: 0 auto 35px;
	font-feature-settings: "palt";
}
.section .img01,
.section .img04 {
	max-width: 500px;
	margin: 60px auto 70px;
}
.section .img01:last-child,
.section .img04:last-child {
	margin-bottom: 0;
}
.section .img01 p,
.section .img04 p {
	font-size: 18px;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.6666;
	margin-top: 18px;
}
.section .img01 .tl,
.section .img04 .tl {
	text-align: left;
}
.section .img04 {
	max-width: 100%;
	text-align: center;
}
.section .img04 img {
	display: inline-block;
}
.section .img02 {
	max-width: 850px;
	margin: 60px auto 70px;
}
.section .img02:last-child {
	margin-bottom: 0;
}
.section .img02 .flex {
	display: flex;
	justify-content: space-between;
}
.section .img02 .flex > div {
	width: 49%;
}
.section .img02 p {
	font-size: 18px;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.6666;
	margin-top: 18px;
}
.section .img02 .tl {
	text-align: left;
}
.section .img03 {
	max-width: 850px;
	margin: 60px auto 70px;
}
.section .img03:last-child {
	margin-bottom: 0;
}
.section .img03 .flex {
	display: flex;
	justify-content: space-between;
	text-align: center;
	flex-wrap: wrap;
}
.section .img03 .flex img {
	display: inline-block;
}
.section .img03 .flex > div {
	width: 49%;
	margin-bottom: 45px;
}
.section .img03 .flex > div:nth-last-child(-n+2) {
	margin-bottom: 0;
}
.section .img03 .adj1 > div:first-child {
	width: 50%;
}
.section .img03 .adj1 > div:last-child {
	width: 48%;
}
.section .img03 p {
	font-size: 18px;
	text-align: center;
	margin-bottom: 0;
	line-height: 1.6666;
	margin-top: 18px;
}
.section .img03 .tl {
	text-align: left;
}

.detail_bottom {
	text-align: center;
	border-top: solid 3px #ea5404;
	border-bottom: solid 3px #ea5404;
	background: #fbe4df;
	padding: 28px 0 25px;
	position: relative;
	word-break: break-all;
}
.detail_bottom.mt {
	margin-top: 120px;
}
.detail_bottom:before {
	position: absolute;
	left: 150px;
	top: -24px;
	content: '';
	display: block;
	width: 105px;
	height: 44px;
	background: url(../img/check.svg) no-repeat left top/100% auto;
}
.detail_bottom .f_logo {
	margin-bottom: 15px;
}
.detail_bottom .f_logo img {
	display: inline-block;
}
.detail_bottom .text {
	font-weight: bold;
	font-size: 18px;
}
.detail_bottom .text span {
	margin-right: 30px;
}
.detail_bottom .text span:last-child {
	margin-right: 0;
}

@media only screen and (max-width: 1240px) {
	.detail_top .flex .left {
		padding-left: 0;
		padding-right: 2%;
	}
}
@media screen and (max-width: 767px) {
	#jirei_detail .w1200 {
		padding-top: 40px;
	}

	.detail_top {
		margin-bottom: 40px;
	}
	.detail_top .num img {
		max-width: 100px;
	}
	.detail_top .flex {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		border-top-width: 4px;
		border-bottom-width: 4px;
		text-align: center;
	}
	.detail_top .flex .left,
	.detail_top .flex .right {
		width: 100%;
	}
	.detail_top .flex .right {
		margin-bottom: 20px;
		padding: 0;
	}
	.detail_top .flex .right img {
		display: inline-block;
	}
	.detail_top .flex .left {
		padding: 0 15px 0;
	}
	.detail_top .flex .left h2 {
		margin-bottom: 20px;
	}
	.detail_top .flex .left h2.mb {
		margin-bottom: 20px;
	}
	.detail_top .flex .left h2 img {
		display: inline-block;
	}
	.detail_top .flex .left .c_name {
		font-size: 16px;
	}
	.detail_top .flex .left .name {
		font-size: 15px;
	}

	.section {
		padding: 60px 0;
	}
	.section.bg {
		padding: 40px 15px;
	}
	.section.bg:before,
	.section.bg:after {
		width: 100%;
		left: 0;
		background-size: 14px auto;
	}
	.section h3 {
		margin-bottom: 25px;
	}
	.section p {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.section .img01,
	.section .img02,
	.section .img03,
	.section .img04 {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.section .img01 p,
	.section .img02 p,
	.section .img03 p,
	.section .img04 p {
		text-align: left;
		font-size: 12px;
		margin-top: 15px;
	}
	.section .img03 {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.section .img03 img {
		width: 100%;
	}
	.section .img03 .flex {
		display: block;
	}
	.section .img03 .flex > div {
		width: 100% !important;
		margin-bottom: 20px;
	}
	.section .img03 .flex > div:nth-last-child(-n+2) {
		margin-bottom: 20px;
	}
	.section .img03 .flex > div:last-child {
		margin-bottom: 0;
	}

	.detail_bottom {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 30px;
	}
	.detail_bottom.mt {
		margin-top: 60px;
	}
	.detail_bottom:before {
		left: 50%;
		transform: translate(-50%, 0);
		width: 80px;
		top: -18px;
	}
	.detail_bottom .text {
		font-size: 14px;
		text-align: left;
	}
	.detail_bottom .text span {
		display: block;
		margin-right: 0;
	}
}


