@charset 'utf-8';

a {
	color: #006fcf;
}

a.underline {
	text-decoration: underline;
}

p {
	margin-bottom: 1em;
}

hr {
	height: 6px;
	background-color: #ececea;
	border: 0px;
}

.help-block {
	font-size: 13px;
	line-height: 20px;
}

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

#container {
	width: 1200px;
	margin: 90px auto;
}

div.block {
	margin: 45px auto;
	width: 1020px;
}

div.block-margin {
	margin: 45px auto;
}

.btn {
	display: inline-block;
	color: #fff;
	padding: 1rem 1rem;
	min-width: 300px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	background-color: rgba(0, 0, 0, 1);
	text-align: center;
	line-height: 1;
	font-size: 20px;
	border-radius: 5px;
}

.btn:hover {
	background-color: rgba(0, 0, 0, 0.6);
	transition: background-color 0.3s ease;
}

.brs {
	display: none;
}

@media screen and (max-width:660px) {
	#container {
		width: 100%;
		margin: 30px 0;
	}

	div.block {
		margin: 45px auto;
		width: calc(100% - 20px);
	}

	.w100s {
		width: 100% !important;
	}

	.brs {
		display: block;
	}

	header, footer, .footer-inner {
		width: 100%;
	}

	.footer-nav li {
		float: none;
	}
}

/*================================================*/

#container h1 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 30px;
	line-height: 48px;
}

#container .lead {
	width: 900px;
	margin: 0 auto 50px;
	text-align: center;
}

#container .lead .lead-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 22px;

}

@media screen and (max-width:660px) {
	#container h1 {
		margin-bottom: 30px;
		font-size: 20px;
		line-height: 32px;
	}

	#container .lead {
		width: 100%;
		margin: 0 auto 20px;
	}

	#container .lead .lead-title {
		margin-bottom: 20px;
		font-size: 18px;
	}
}

/*================================================*/

#container h2 {
	text-align: center;
	margin-bottom: 45px;
	font-size: 30px;
	font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", sans-serif;
	line-height: 40px;
}

#container h2 span {
	font-size: 20px;
	display: block;
	line-height: 30px;
	margin-top: 5px;
}

#container ul.box-contents {
	width: 980px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

#container ul.box-contents li {
	width: 320px;
	height: 320px;
	position: relative;
	margin-right: 10px;
	margin-bottom: 8px;
}

#container ul.box-contents li:nth-of-type(3n) {
	margin-right: 0px;
}

#container ul.box-contents li span.arrow-w {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 34px;
	height: 34px;
	background: url(//pocket-concierge.jp/lp/img/assets/arrow_w.png) no-repeat;
	background-size: contain;
	z-index: 20;
}

#container ul.box-contents li a {
	display: block;
	width: 100%;
	height: 100%;
}

#container ul.box-contents li span.thumbnail {
	position: absolute;
	width: 100%;
	height: 100%;
}

#container ul.box-contents li span.thumbnail img {
	width: 100%;
	height: auto;
}

#container ul.box-contents li div.text {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.4s;
	-webkit-transition: background-color 0.4s;
}

#container ul.box-contents li div.text div {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#container ul.box-contents li div.text div span.contents-category {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	font-size: 28px;
	/*background-color: rgba(0, 0, 0, 0.3);
	padding-top: 10px;
	padding-bottom: 10px; */
	text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
}

#container ul.box-contents li div.text div span.contents-description {
	display: none;
}

#container ul.box-contents li:hover div.text div span.contents-category {
	background-color: rgba(0, 0, 0, 0.0);
}

#container ul.box-contents li:hover div.text {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 50px 20px;
	transition: background-color 0.4s;
	-webkit-transition: background-color 0.4s;
	/*
	animation-name: fadeIn;
	animation-duration: 0.4s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: 1;
	*/
}

@keyframes fadeIn {
	0% {background-color: rgba(0, 0, 0, 0);}
	100% {background-color: rgba(0, 0, 0, 0.6);}
}

#container ul.box-contents li:hover div.text div span.contents-category {
	position: static;
	display: block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	width: 100%;
	margin-bottom: 40px;
}

#container ul.box-contents li:hover div.text div span.contents-description {
	display: block;
	color: #fff;
	text-align: center;
}

@media screen and (max-width:660px) {
	#container h2 {
		margin-bottom: 20px;
		font-size: 25px;
		line-height: 35px;
	}

	#container h2 span {
		font-size: 18px;
		line-height: 28px;
	}

	#container ul.box-contents {
		width: 100%;
		display: block;
	}

	#container ul.box-contents li {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 8px;
	}

	#container ul.box-contents li:nth-of-type(3n) {
		margin: 0 auto 8px;
	}

	#container ul.box-contents li div.text div span.contents-description {
		display: block;
	}

	#container ul.box-contents li div.text {
		background-color: rgba(0, 0, 0, 0.4);
		padding: 50px 20px;
	}

	#container ul.box-contents li div.text div span.contents-category {
		position: static;
		display: block;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
		width: 100%;
		margin-bottom: 40px;
	}

	#container ul.box-contents li div.text div span.contents-description {
		display: block;
		color: #fff;
		text-align: center;
	}
}

/*================================================*/

#container ul.box-contents.six li {
	width: 160px;
	height: 160px;
	position: relative;
	margin-right: 4px;
	margin-bottom: 8px;
}

#container ul.box-contents.six li:nth-of-type(3n) {
	margin-right: 4px;
}

#container ul.box-contents.six li:nth-of-type(6n) {
	margin-right: 0px;
}

#container ul.box-contents.six li span.arrow-w {
	right: 5px;
	bottom: 5px;
	width: 17px;
	height: 17px;
}

#container ul.box-contents.six li div.text div span.contents-category {
	font-size: 16px;
}

#container ul.box-contents.six li:hover div.text {
	padding: 20px 10px 10px;
}

#container ul.box-contents.six li:hover div.text div span.contents-category {
	margin-bottom: 10px;
}

#container ul.box-contents.six li:hover div.text div span.contents-description {
	font-size: 12px;
	line-height: 20px;
}

@media screen and (max-width:660px) {
	#container ul.box-contents.six {
		width: 320px;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	#container ul.box-contents.six li {
		width: 150px;
		height: 150px;
		display: inline-block;
	}

	#container ul.box-contents.six li:nth-of-type(odd) {
		margin: 0 3px 10px;
	}

	#container ul.box-contents.six li:nth-of-type(even) {
		margin: 0 3px 10px;
	}

	#container ul.box-contents.six li div.text {
		padding: 20px 10px 10px;
	}

	#container ul.box-contents.six li div.text div span.contents-category {
		margin-bottom: 10px;
	}

	#container ul.box-contents.six li div.text div span.contents-description {
		font-size: 12px;
		line-height: 20px;
	}
}

/*================================================*/

#container .about {
}

#container .about img.logo {
	width: 370px;
	height: auto;
	display: block;
	margin: 0 auto 50px;
}

#container .about .about-description {
	margin-bottom: 50px;
}

#container .about .btn-wrap {
	text-align: center;
	margin-bottom: 50px;
	width: 100%;
}

#container .about .share-title {
	font-size: 21px;
}

#container .about ul.share-contents {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

#container ul.share-contents li {
	width: 75px;
	height: 75px;
	margin: 0px 25px 20px;
}

#container ul.share-contents li img {
	width: 100%;
	height: auto;
}

@media screen and (max-width:660px) {
	#container .about ul.share-contents {
		width: 80%;
	}

	#container .about img.logo {
		max-width: 95%;
	}

	#container .about .share-title {
		font-size: 18px;
	}

}

/*================================================*/

.feature div.block {
	width: 100%;
}

.feature div.block .hero {
	position: relative;
	margin-bottom: 50px;
}

.feature div.block .hero img {
	width: 100%;
}

.feature div.block .hero div {
	position: absolute;
	left: 0;
	bottom: 80px;
	width: 480px;
	height: 250px;
	background-color: #000;
	padding: 20px 20px;
	color: #fff;
	text-align: center;
}

.feature div.block .hero div p.hero-title {
	font-size: 20px;
}

@media screen and (max-width:660px) {
	.feature div.block {
		margin: 45px auto;
		width: calc(100% - 20px);
	}

	.feature div.block .hero {
		position: static;
		margin-bottom: 30px;
	}

	.feature div.block .hero img {
		width: 100%;
	}

	.feature div.block .hero div {
		position: static;
		width: 100%;
		height: auto;
		padding: 30px 20px 10px;
	}

	.feature div.block .hero div p.hero-title {
		font-size: 18px;
	}
}

/*================================================*/

div.table {
	margin: 0 auto;
	display: table;
	width: 100%;
}

div.table div.img {
	display: table-cell;
}

div.table div.img img {
	width: 100%;
	height: auto;
}

div.table div.text {
	display: table-cell;
	vertical-align: middle;
	padding-top: 20px;
	padding-bottom: 20px;
}

div.table div.text > div {
	width: 80%;
	margin: 0 auto;
}

div.table div.text .article-title {
	font-size: 28px;
	line-height: 38px;
}


@media screen and (max-width:660px) {
	div.table {
		display: block;
	}

	div.table div.img {
		width: 100%;
		display: block;
	}

	div.table div.text {
		display: block;
		padding: 30px 30px;
	}

	div.table div.text > div {
		width: 100%;
	}

	div.table div.text .article-title {
		font-size: 24px;
		line-height: 34px;
	}
}

/*================================================*/

.feature .article-type01,
.feature .article-type02 {
	margin-bottom: 50px;
}

.feature .article-type03 {
	margin-bottom: 30px;
}

.feature .article-type01 div.img {
	width: 520px;
	background-color: #eceded;
}

.feature .article-type01 div.text {
	background-color: #eceded;
}

.feature .article-type03 .btn-wrap {
	text-align: right;
}

@media screen and (max-width:660px) {
	.feature .article-type01,
	.feature .article-type02,
	.feature .article-type03 {
		margin-bottom: 30px;
	}

	.feature .article-type01 div.img {
		width: 100%;
	}

	.feature .article-type03 .btn-wrap {
		text-align: center;
	}
}

/*================================================*/

.feature .article-type02 div.img {
	width: 595px;
}

.feature .article-type02 div.text {
	text-align: left;
}

.feature .article-type02 h3 {
	font-size: 28px;
	line-height: 38px;
	text-align: center;
	margin-bottom: 30px;
}

.feature .article-type02 h3 span {
	display: block;
	font-size: 22px;
	padding: 10px 5px;
	border-top: 6px solid #000;
	border-bottom: 3px solid #000;
	margin-top: 10px;
}

.feature .article-type02 div.text i {
	margin-right: 10px;
}

@media screen and (max-width:660px) {
	.feature .article-type02 div.img {
		width: 100%;
	}

	.feature .article-type02 div.text {
		text-align: left;
		padding-left: 10px;
		padding-right: 10px;
	}

	.feature .article-type02 h3 {
		font-size: 24px;
		line-height: 34px;
		margin-bottom: 20px;
	}

	.feature .article-type02 h3 span {
		font-size: 18px;
	}

	.feature .btn-wrap {
		text-align: center;
	}
}

/*================================================*/

.feature .article-type03 div.img {
	width: 385px;
	background-color: #eceded;
}

.feature .article-type03 div.text {
	background-color: #eceded;
	text-align: center;
}

.feature .article-type03 div.text .article-title {
	margin-bottom: 10px;
}

.feature .article-type03 div.text.extend {
	display: block;
	background-color: #eceded;
	text-align: left;
	padding: 40px 80px;
}

@media screen and (max-width:660px) {
	.feature .article-type03 div.img {
		width: 100%;
	}

	.feature .article-type03 div.text.extend {
		display: block;
		background-color: #eceded;
		text-align: left;
		padding: 0px 30px 30px;
	}
}

/*================================================*/

.takeout#container {
	margin-top: 0px;
}

#container .hero2 {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 50px;
}

#container .hero2 img {
	width: 100%;
	height: auto;
}

#container .hero2 h1 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: #fff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 40px;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px 0;
	margin-bottom: 0px;
}

#container .hero2 h1 span {
	display: block;
	font-size: 26px;
}

.term {
	background-color: #f5f5f0;
	text-align: center;
	padding: 30px 20px;
	margin-bottom: 50px;
}

.term .term-title {
	font-size: 20px;
}

.term div.text {
	text-align: left;
}

.term div.table div.text > div {
	width: 90%;
}

.term div.img {
	width: 550px;
}

@media screen and (max-width:660px) {
	#container .hero2 {
		position: static;
		margin-bottom: 30px;
	}

	#container .hero2 h1 {
		position: static;
		width: 100%;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		font-size: 20px;
		background-color: rgba(0, 0, 0, 1.0);
		padding: 20px;
		margin-bottom: 0px;
	}

	#container .hero2 h1 span {
		font-size: 18px;
	}

	.term {
		padding: 30px 10px 10px;
		margin-bottom: 30px;
	}

	.term .term-title {
		font-size: 20px;
	}

	.term div.text {
		text-align: left;
		padding: 10px 10px 0;
	}

	.term div.table div.text > div {
		width: 100%;
	}

	.term div.img {
		width: 100%;
	}
}

/*================================================*/

dl.hidden {
	border: 6px solid #ececea;
	margin-bottom: 50px;
}

dl.hidden dt {
	padding: 10px 20px 10px 45px;
	font-size: 20px;
	font-weight: normal;
	background-image: url(//pocket-concierge.jp/lp/img/assets/down.png);
	background-repeat: no-repeat;
	background-size: 16px 11px;
	background-position: 15px center;
	cursor: pointer;
}

dl.hidden dt.open {
	background-image: url(//pocket-concierge.jp/lp/img/assets/up.png);
}

dl.hidden dd {
	border-top: 6px solid #ececea;
	padding: 20px 20px;
	text-align: center;
	display: none;
}

dl.hidden dd img {
	display: block;
	max-width: 583px;
	margin: 0 auto;
	margin-bottom: 10px;
}

@media screen and (max-width:660px) {
	dl.hidden {
		width: calc(100% - 20px);
		margin-right: auto;
		margin-left: auto;
	}

	dl.hidden dt {
		margin-left: auto;
		margin-right: auto;
		padding: 10px 20px 10px 45px;
		font-size: 16px;
	}

	dl.hidden dd {
		padding: 20px 10px;
	}

	dl.hidden dd img {
		display: block;
		max-width: 98%;
	}

}

/*================================================*/

.search h4 {
	border-left: 10px solid #000;
	line-height: 65px;
	font-size: 24px;
	padding-left: 20px;
	margin-bottom: 20px;
}

.search ul.row {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.search ul.row li {
	padding: 10px 30px;
	font-size: 18px;
	margin: 0 10px 10px 0;
	min-width: 120px;
	text-align: center;
	opacity: 1.0;
	transition: background-color 0.2s ease, opacity 0.3s ease;
	cursor: pointer;
}

.search ul.row li:hover {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.search ul.row li.p {
	background-color: #723218;
	border: #723218 2px solid;
	color: #fff;
}

.search ul.row li.p.active {
	/*background-color: #8f8681;*/
	background-color: #77655e;
}

.search ul.row li.a {
	color: #000;
	border: 2px solid #ececea;
	background-color: #fff;
}

.search ul.row li.a.active {
	background-color: #8f8681;
	color: #fff;
}

@media screen and (max-width:660px) {
	.search h4 {
		line-height: 30px;
		font-size: 18px;
		padding: 10px 0 10px 20px;
		margin-bottom: 20px;
	}

	.search ul.row {
		display: flex;
		margin-bottom: 10px;
		justify-content: start;
		flex-wrap: wrap;
	}

	.search ul.row li {
		padding: 10px 20px;
		font-size: 16px;
		margin: 0px 2.5% 5px;
		min-width: 45%;
		text-align: center;
		opacity: 1.0;
		transition: opacity 0.3s ease;
		cursor: pointer;
	}
}

/*================================================*/

.result {
	margin-bottom: 50px;
	display: none;
}

.result p.title {
	text-align: center;
	font-size: 28px;
	border-bottom: 3px solid #000;
	padding-bottom: 15px;
}

.result ul {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.result ul li {
	width: 335px;
	height: 335px;
	position: relative;
	margin-bottom: 8px;
	margin-right: 47.5px;
}

.result ul li:nth-of-type(3n) {
	margin-right: 0px;
}

.result ul li span.arrow-b {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 34px;
	height: 34px;
	background: url(//pocket-concierge.jp/lp/img/assets/arrow_b.png) no-repeat;
	background-size: contain;
	z-index: 20;
}

.result ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

.result ul li span.thumbnail {
	position: absolute;
	width: 100%;
	height: 100%;
}

.result ul li span.thumbnail img {
	width: 100%;
	height: auto;
}

.result ul li div.text {
	position: absolute;
	width: 100%;
	height: 40%;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.4s;
	-webkit-transition: background-color 0.4s;
	font-size: 14px;
	line-height: 22px;
	padding: 10px 15px;
	color: #000;
	background-color: rgba(255, 255, 255, 0.9);
}

.result ul li div.text div {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.result ul li div.flag {
	position: absolute;
	top: 5px;
	left: 0px;
	background: url(//pocket-concierge.jp/lp/img/assets/flag_r.png) top left no-repeat;
	background-size: contain;
	display: inline-block;
	width: 64px;
	height: 47px;
	color: #fff;
	text-align: center;
	line-height: 47px;
	font-size: 23px;
	font-weight:bold;
	font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", sans-serif;
	z-index: 20;
}

.result ul li div.flag_r {
	background-image: url(//pocket-concierge.jp/lp/img/assets/flag_r.png);
}

.result ul li div.flag_b {
	background-image: url(//pocket-concierge.jp/lp/img/assets/flag_b.png);
}

.result ul li div.flag_g {
	background-image: url(//pocket-concierge.jp/lp/img/assets/flag_g.png);
}

.result ul li div.new {
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(//pocket-concierge.jp/lp/img/assets/new_r.png) top left no-repeat;
	background-size: contain;
	display: inline-block;
	width: 102.5px;
	height: 31.5px;
	color: #fff;
	text-align: center;
	line-height: 31.5px;
	font-size: 20px;
	font-weight:bold;
	font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", sans-serif;
}

.result ul li div.new_r {
	background-image: url(//pocket-concierge.jp/lp/img/assets/new_r.png);
}

.result ul li div.new_b {
	background-image: url(//pocket-concierge.jp/lp/img/assets/new_b.png);
}

.result ul li div.new_g {
	background-image: url(//pocket-concierge.jp/lp/img/assets/new_g.png);
}

.result ul li div.title {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #414a52;
	display: inline-block;
	height: 38px;
	line-height: 38px;
	color: #fff;
	font-size: 20px;
	padding: 0 10px;
	z-index: 20;
}

.result ul li div.title_full {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #414a52;
	display: block;
	width: 100%;
	height: 38px;
	line-height: 38px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	z-index: 20;
}

@media screen and (max-width:660px) {
	.result {
		margin-bottom: 30px;
	}

	.result p.title {
		font-size: 25px;
		width: calc(100% - 20px);
		margin-left: auto;
		margin-right: auto;
	}

	.result ul {
		width: 100%;
		display: block;
	}

	.result ul li {
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	.result ul li:nth-of-type(3n) {
		margin-right: auto;
		margin-left: auto;
	}
}

/*================================================*/

.pickup .images {
	background-color: #000;
	padding: 50px 10px;
	color: #fff;
}

.pickup .images .img {
	display: block;
	margin: 0 auto;
}

.pickup .images .img img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.pickup .images p.title {
	font-size: 20px;
	margin-bottom: 5px;
	line-height: 30px;
}

.pickup .images p {
	font-size: 14px;
	line-height: 20px;
}

.pickup .images .pickup_l {
	text-align: center;
	margin-bottom: 30px;
}

.pickup .images .pickup_l .img {
	width: 1015px;
}

.pickup .images .pickup_m {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	text-align: center;
	margin-bottom: 30px;
}

.pickup .images .pickup_m .img {
	width: 350px;
}

.pickup .images .pickup_s {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	text-align: left;
	margin-bottom: 30px;
}

.pickup .images .pickup_s .img {
	width: 50%;
	display: table;
}

.pickup .images .pickup_s .img img {
	width: 190px;
	display: table-cell;
}

.pickup .images .pickup_s .img p {
	width: auto;
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	padding: 0 10px;
}

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

	.pickup .images {
		padding: 20px 10px;
	}

	.pickup .images .img {
		width: 100%;
	}

	.pickup .images p.title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 10px;
	}

	.pickup .images p {
		font-size: 13px;
		line-height: 20px;
	}

	.pickup .images .pickup_l {
		text-align: center;
		margin-bottom: 30px;
	}

	.pickup .images .pickup_l .img {
		width: 100%;
	}

	.pickup .images .pickup_m {
		display: block;
		margin-bottom: 30px;
	}

	.pickup .images .pickup_m .img {
		width: 100%;
		margin-bottom: 20px;
	}

	.pickup .images .pickup_s .img {
		width: 100%;
		margin-bottom: 10px;
	}

	.pickup .images .pickup_s .img:last-of-type {
		margin-bottom: 0px;
	}

	.pickup .images .pickup_s .img img {
		width: 140px;
	}

	.pickup .images .pickup_s .img p {
		padding: 0 5px;
	}

}
