@charset "UTF-8";


/* ******************************************
	General
****************************************** */
#page_title h1::before {
  background-image: url(../images/common/ico-home.svg);
}





/* ******************************************
	shopguide
****************************************** */
#shopguide {
  position: relative;
}

/*タブ切り替え全体のスタイル*/
#shopguide .tabs {
  margin: 0 auto;
}
#shopguide .tab_item {
  width: calc(100%/4);
  font-size: 24px;
  text-align: center;
  color: #313332;
  float: left;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  transition: all 0.2s ease;
}
#shopguide .tab_item::before {
	content: '';
	width: 23px;
	height: 23px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
  padding-right: 23px;
  margin-right: 5px;
}
#shopguide .tab_item.fashion::before {
	background-image: url(../images/common/ico-fashion.svg);
}
#shopguide .tab_item.food::before {
	background-image: url(../images/common/ico-food.svg);
}
#shopguide .tab_item.interior::before {
	background-image: url(../images/common/ico-interior.svg);
}
#shopguide .tab_item.service::before {
	padding-right: 40px;
	background-image: url(../images/common/ico-service.svg);
}

#shopguide .tab_item:hover {
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 60px 0 0;
  clear: both;
  overflow: hidden;
  border-top: 1px solid #b88f63;
}

/*選択されているタブのコンテンツのみを表示*/
#radioA:checked ~ #content_fashion,
#radioB:checked ~ #content_food,
#radioC:checked ~ #content_interior,
#radioD:checked ~ #content_service {
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input + .tab_item {
  color: #313332;
  border-bottom: 5px solid #fff;
}
.tabs input:checked + .tab_item {
  border-bottom: 5px solid #b88f63;
}

@media screen and (max-width:1024px) {
  #shopguide .tab_item {
    font-size: 18px;
  }
}
@media screen and (max-width:768px) {
  #shopguide .tab_item {
    width: calc(100%/2);
    padding-top: 10px;
    margin-top: 2px;
    background-color: #fcfaf8;
  }
  .tabs input + .tab_item {
    border-bottom: 5px solid #fcfaf8;
  }
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:400px) {
  #shopguide .tab_item {
    width: 100%;
  }
}




#shopguide .tab_content ul {
	padding: 0;
	margin: 0;
	list-style: none;

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#shopguide .tab_content ul li {
	width: calc(30% - 2px);
	margin-right: 5%;
	margin-bottom: 30px;
}
#shopguide .tab_content ul li:nth-child(3n) {
	margin-right: 0;
}
#shopguide .tab_content ul li a {
}
#shopguide .tab_content ul li h3 {
  color: #313332;
  text-align: left;
  font-size: 21px;
}
#shopguide .tab_content ul li picture {
	border: 2px solid #dedede;
	border-radius: 15px;
  background-color: #fff;
	aspect-ratio: 6/4;
  margin-bottom: 8px;
}
#shopguide .tab_content ul li picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 15px;
}
#shopguide .tab_content ul li p {
	text-align: left;
	margin-top: 5px;
}

@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
	#shopguide .tab_content ul li {
		width: 48%;
		margin-right: 2%;
    margin-bottom: 10px;
	}
	#shopguide .tab_content ul li:nth-child(3n) {
		margin-right: 2%;
	}
	#shopguide .tab_content ul li:nth-child(2n) {
		margin-right: 0;
	}
  #shopguide .tab_content ul li h3 {
    font-size: 18px;
  }
}
@media screen and (max-width:400px) {
	#shopguide .tab_content ul li {
		width: calc(100% - 4px);
		margin-right: 0;
	}
}





/* ******************************************
	shopguide_post
****************************************** */
#shopguide_post {
  position: relative;
}
#shopguide_post .shop_info {}
#shopguide_post .shop_info picture {
  width: 280px;
	border: 2px solid #dedede;
	border-radius: 15px;
	aspect-ratio: 6/4;
  margin: 0;
}
#shopguide_post .shop_info picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 15px;
}

#shopguide_post .shop_info .shopinfo_title {
  width: calc(100% - 350px);
}
#shopguide_post .shop_info .shopinfo_title h2 {
  border-bottom: 2px solid #b88f63;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: left;
}
#shopguide_post .shop_info .shopinfo_title h2 span {
  display: block;
  font-size: 24px;
  font-weight: normal;
  color: #313332;
  line-height: 1.2em;
}
#shopguide_post .shop_info .shopinfo_title h2 span::before {
	content: '';
	width: 23px;
	height: 23px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 23px;
	margin-right: 5px;
}
#shopguide_post .shop_info .shopinfo_title h2 .fashion::before {
	background-image: url(../images/common/ico-fashion.svg);
}
#shopguide_post .shop_info .shopinfo_title h2 .food::before {
	background-image: url(../images/common/ico-food.svg);
}
#shopguide_post .shop_info .shopinfo_title h2 .interior::before {
	background-image: url(../images/common/ico-interior.svg);
}
#shopguide_post .shop_info .shopinfo_title h2 .service::before {
	padding-right: 40px;
	background-image: url(../images/common/ico-service.svg);
}

#shopguide_post .shop_info .shopinfo_title .shopinfo_category h3 {
  color: #313332;
  font-size: 18px;
}
#shopguide_post .shop_info .shopinfo_title .shopinfo_category ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 60%;
  max-width: 270px;

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#shopguide_post .shop_info .shopinfo_title .shopinfo_category ul li {
  padding: 0;
  margin: 0;
  margin-left: 2%;
  width: 18%;
}
#shopguide_post .shop_info .shopinfo_title .shopinfo_category ul li img {
  width: 100%;
}

#shopguide_post .shop_text {
  padding: 70px 0;
}
#shopguide_post .shop_text p {
  text-align: left;
}

#shopguide_post .shop_outline {
  padding-bottom: 70px;
}

#shopguide_post .shop_outline .shop_photo {
  width: 45%;
}
#shopguide_post .shop_outline .shop_photo ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#shopguide_post .shop_outline .shop_photo ul.single_m li {
	aspect-ratio: 6/4;
}
#shopguide_post .shop_outline .shop_photo ul.single_m li img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#shopguide_post .shop_outline dl {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: left;
}
#shopguide_post .shop_outline dl dt {
  padding: 25px 0;
  margin: 0;
  width: 130px;
  position: absolute;
}
#shopguide_post .shop_outline dl dd {
  padding: 25px 0;
  padding-left: 180px;
  margin: 0;
  position: relative;
  border-bottom: 1px solid #a7a7a7;
}
#shopguide_post .shop_outline dl dd.double {
  min-height: 55px;
}

#shopguide_post .shop_campaign {
  background-color: #f9f5f1;
  position: relative;
  padding: 70px;
  text-align: left;
}
#shopguide_post .shop_campaign h3 {
  display: inline-block;
  background-color: #b88f63;
  color: #fff;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 21px;
  padding: 12px;
  line-height: 1.1em;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  #shopguide_post .shop_info picture {
    width: 180px;
  }
  #shopguide_post .shop_info .shopinfo_title {
    width: calc(100% - 230px);
  }
  #shopguide_post .shop_outline .shop_photo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  #shopguide_post .shop_outline dl {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #shopguide_post .shop_info picture {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 35px;
  }
  #shopguide_post .shop_info .shopinfo_title {
    width: 100%;
  }
  #shopguide_post .shop_campaign {
    padding: 70px 25px;
  }
  #shopguide_post .shop_campaign h3 {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 450px) {
  #shopguide_post .shop_outline dl {
    border-top: 1px solid #a7a7a7;
  }
  #shopguide_post .shop_outline dl dt {
    padding: 18px;
    width: calc(100% - 36px);
    position: relative;
    background-color: #fcfaf8;
  }
  #shopguide_post .shop_outline dl dt br {
    display: none;
  }
  #shopguide_post .shop_outline dl dd {
    width: calc(100% - 36px);
    padding: 18px;
  }
}


