@charset "utf-8";


/*** UmaibeYAMAGATA Styles ***/



/* Common
------------------------------------------------------------- */

.bread_navi p a:last-child, .bread_navi p span:last-child {
	max-width: 25em;
}

.reader_box {
	margin-top: 0;
}

.reader_box .en {
	font-size: 1.4rem;
	color: #808080;
}


/* Genre Button
------------------------------------------------------------- */

.umaibe_genre_selector ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-auto-rows: 80px;
}

.umaibe_genre_selector ul li {
	width: 100%;
	height: 80px;
}

.umaibe_genre_selector ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 0 0 80px;
	line-height: 1.6;
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	background-position: left center;
	background-size: 80px;
	background-repeat: no-repeat;
	position: relative;
	background-color: #ccc;
}

.umaibe_genre_selector ul li a > span {
	display: inline-block;
	width: fit-content;
	white-space: nowrap;
	position: absolute;
	left: 80px;
	top: 50%;
	transform: translateY(-48%);
	z-index: 10;
}

.umaibe_genre_selector ul li a span.en {
	display: block;
	width: fit-content;
	font-size: 1.3rem;
	font-weight: 300;
	text-shadow: none;
}

.umaibe_genre_selector ul li a::after {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../img/arrow_next_white.svg);
	background-position: center right;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 5px;
	top: 50%;
	margin-top: -20px;
	opacity: 0.5;
	transition: 0.3s all;
	z-index: 1;
}

.umaibe_genre_selector ul li:hover a::after {
	width: 45px;
	height: 45px;
	margin-top: -22.5px;
	opacity: 0.9;
	animation: shake-arrow 0.3s 2 ease-in-out;
}

.umaibe_genre_selector ul li.umaibe_genre_japanese a {
	background-color: #d44735;
	background-image: url(../img/icon_umaibe_japanesefoods.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_western a {
	background-color: #f5880c;
	background-image: url(../img/icon_umaibe_westernfood.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_chinese a {
	background-color: #a0b303;
	background-image: url(../img/icon_umaibe_chinesefoods.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_meat a {
	background-color: #d65592;
	background-image: url(../img/icon_umaibe_meat.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_izakaya a {
	background-color: #b151bd;
	background-image: url(../img/icon_umaibe_izakaya.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_soba a {
	background-color: #9e7149;
	background-image: url(../img/icon_umaibe_soba.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_cafe a {
	background-color: #57c398;
	background-image: url(../img/icon_umaibe_cafe.svg);
}

.umaibe_genre_selector ul li.umaibe_genre_pub a {
	background-color: #5e6dd1;
	background-image: url(../img/icon_umaibe_pub.svg);
}



/* Details Search
------------------------------------------------------------- */

.detail_search_cont dl dt span.en {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 400;
	color: #808080;
	padding-right: 1.2em;
	line-height: 1.2;
}

.detail_search_cont dl dd label span.en {
	font-size: 1.3rem;
	color: #808080;
	margin-left: 0.3em;
}

.detail_search_cont dl dd .detail_genre_selector label {
	display: block;
}

.detail_search_cont dl dd .detail_genre_selector label span.en {
	display: block;
	margin-left: 0;
	white-space: nowrap;
}

label.check_style::before {
	top: 0;
	margin-top: 1px;
}

label.check_style::after {
	top: 0;
	margin-top: 0;
}



/* Result Index
------------------------------------------------------------- */

.umaibe_result_box {
	width: 100%;
	padding: 0;
	line-height: 1.8;
}


/* Explanatory Notes */

.search_umaibe_exnote {
	width: fit-content;
	margin: 0 0 40px auto;
	padding: 20px;
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto;
	gap: 15px 20px;
	justify-content: flex-end;
	background-color: #f2f2f2;
}

p.umaibe_exnote_icon {
	line-height: 26px;
	height: 26px;
	margin: 0 0 ;
	position: relative;
}

.search_umaibe_exnote > p.umaibe_exnote_icon {
	line-height: 26px;
	height: 26px;
	white-space: nowrap;
}

p.umaibe_exnote_icon span {
	font-size: 1.4rem;
	padding-left: 0.3em;
}

p.umaibe_exnote_icon span.en {
	font-size: 1.2rem;
	color: #808080;
}

p.umaibe_exnote_icon::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 2px;
	vertical-align: middle;
}

p.umaibe_exnote_icon::after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 1px;
}

p.umaibe_exnote_icon.morning::before {
	background-color: #47a8d1;
}

p.umaibe_exnote_icon.morning::after {
	background-image: url(../img/icon_umaibe_morning.svg);
}

p.umaibe_exnote_icon.lunch::before {
	background-color: #72bd5b;
}

p.umaibe_exnote_icon.lunch::after {
	background-image: url(../img/icon_umaibe_lunch.svg);
}

p.umaibe_exnote_icon.dinner::before {
	background-color: #f5880c;
}

p.umaibe_exnote_icon.dinner::after {
	background-image: url(../img/icon_umaibe_dinner.svg);
}

p.umaibe_exnote_icon.night::before {
	background-color: #5e6dd1;
}

p.umaibe_exnote_icon.night::after {
	background-image: url(../img/icon_umaibe_night.svg);
}

p.umaibe_exnote_icon.banqet::before {
	background-color: #b151bd;
}

p.umaibe_exnote_icon.banqet::after {
	background-image: url(../img/icon_umaibe_banquet.svg);
}


/* Result List */

.umaibe_result_list {
	padding: 0;
	margin: 0 0 60px 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-template-rows: auto;
	gap: 40px 30px;
	width: 100%;
}

.umaibe_result_list > div {
	position: relative;
	overflow: hidden;
}

.umaibe_genre_tabs {
	margin: 0 -10px 0 auto;
	padding: 8px 16px 0 10px;
	height: 45px;
	width: fit-content;
	font-size: 0;
	background-color: #e5e5e5;
	transform: skew(-15deg);
	transition: 0.3s background-color;
}

.umaibe_result_list > div:hover .umaibe_genre_tabs {
	background-color: #efd9dd;
}

.umaibe_genre_tabs > p.umaibe_genre_icon {
	display: inline-block;
	height: 35px;
	width: 35px;
	margin-left: 1px;
	line-height: 35px;
	font-size: 0;
	transform: skew(15deg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
}

p.umaibe_genre_icon.a0110 {
	background-image: url(../img/icon_umaibe_japanesefoods.svg);
}

p.umaibe_genre_icon.a0120 {
	background-image: url(../img/icon_umaibe_westernfood.svg);
}

p.umaibe_genre_icon.a0130 {
	background-image: url(../img/icon_umaibe_chinesefoods.svg);
}

p.umaibe_genre_icon.a0140 {
	background-image: url(../img/icon_umaibe_meat.svg);
}

p.umaibe_genre_icon.a0150 {
	background-image: url(../img/icon_umaibe_izakaya.svg);
}

p.umaibe_genre_icon.a0160 {
	background-image: url(../img/icon_umaibe_soba.svg);
}

p.umaibe_genre_icon.a0170 {
	background-image: url(../img/icon_umaibe_cafe.svg);
}

p.umaibe_genre_icon.a0180 {
	background-image: url(../img/icon_umaibe_pub.svg);
}

.umaibe_result_cont {
	width: 100%;
	height: calc(100% - 60px);
	padding: 0 0 60px 0;
	border: 8px solid #e5e5e5;
	position: relative;
	transition: 0.3s border-color;
}

.umaibe_result_list > div:hover .umaibe_result_cont {
	border-color: #efd9dd;
}

.umaibe_result_cont p.en {
	padding-top: 3px;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.3;
	color: #808080;
}

.umaibe_result_img {
	width: 100%;
	overflow: hidden;
	margin-bottom: 3px;
}

.umaibe_result_img img {
	width: 100%;
	aspect-ratio: 37/20;
	object-fit: cover;
}

.umaibe_result_title {
	margin: 0 15px;
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
}

.umaibe_result_title p {
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 700;
}

.umaibe_result_cont .umaibe_result_title p.en {
	font-size: 1.4rem;
}

.umaibe_result_phone, .umaibe_result_address, .umaibe_result_accsess {
	margin: 0 15px;
	padding: 9px 0 9px 35px;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
}

.umaibe_result_accsess {
	border-bottom: 0;
}

.umaibe_result_phone p {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.umaibe_result_phone p a {
	text-decoration: none !important;
	color: #151515 !important;
	pointer-events: none !important;
}

.umaibe_result_address p, .umaibe_result_accsess p {
	font-size: 1.5rem;
}

.umaibe_result_phone::before, .umaibe_result_address::before, .umaibe_result_accsess::before {
	content: "";
	width: 26px;
	height: 26px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 11px;
}

.umaibe_result_phone::before {
	background-image: url(../img/icon_umaibe_phone.svg);
}

.umaibe_result_address::before {
	background-image: url(../img/icon_umaibe_address.svg);
}

.umaibe_result_accsess::before {
	background-image: url(../img/icon_umaibe_access.svg);
}

.umaibe_result_time {
	display: flex;
	width: fit-content;
	font-size: 0;
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.umaibe_result_time > p.umaibe_exnote_icon {
	margin-right: 8px;
}

.umaibe_result_time > p.umaibe_exnote_icon::after {
	top: 0;
}

.umaibe_result_btn {
	width: 100px;
	height: 70px;
	font-size: 0;
	position: absolute;
	right: -1px;
	bottom: -1px;
}

.umaibe_result_btn::after {
	content: "";
	width: 70px;
	height: 70px;
	background-color: #e5e5e5;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	transition: 0.3s background-color;
}

.umaibe_result_list > div:hover .umaibe_result_btn::after {
	background-color: #efd9dd;
}

.umaibe_result_btn a {
	display: inline-block;
	width: 70px;
	height: 70px;
	background-image: url(../img/arrow_next_gray.svg);
	background-position: center right;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 10px;
	bottom: -5px;
	z-index: 10;
	transition: 0.3s all;
}

.umaibe_result_list > div:hover .umaibe_result_btn a {
	animation: shake-arrow 0.3s 2 ease-in-out;
}


/* Details
------------------------------------------------------------- */

.umaibe_detail_box {
	width: 100%;
	padding: 40px 20px;
	line-height: 2;
}

.umaibe_detail_box > .btn_center {
	margin: 40px auto;
}


/* Details Title */

.umaibe_detail_title {
	margin-bottom: 40px;
	position: relative;
}

.umaibe_detail_title > div {
	width: 100%;
	padding-bottom: 10px;
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: 50px auto;
	border-bottom: 8px solid #d5d5d5;
	gap: 8px;
	position: relative;
}

.umaibe_detail_title .umaibe_genre_tabs {
	height: 50px;
	background-color: transparent;
	transform: skewX(0);
	padding: 0;
	margin: 0 0 -5px auto;
	white-space: nowrap;
	grid-row: 1;
	grid-column: 1 / -1;
}

.umaibe_detail_title .umaibe_genre_tabs p {
	transform: skewX(0);
}

.umaibe_detail_title .umaibe_genre_tabs p a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 50px;
}

.umaibe_detail_title .shop_logo {
	width: 80px;
	height: 80px;
	align-self: center;
	border: 1px solid #d5d5d5;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.umaibe_detail_title .shop_logo:empty {
	width: 0;
	border: 0;
}

.umaibe_detail_title > div:has(.shop_logo:empty) {
	grid-template-columns: 1px 1fr;
}

.umaibe_detail_title .shop_logo a::before {
	display: none !important;
}

.umaibe_detail_title .shop_logo img {
	width: 100%;
	height: auto;
}

.umaibe_detail_title h2 {
	padding: 0 0 0 4px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	align-content: center;
}

.umaibe_detail_title h2 span.en {
	display: block;
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: 400;
	color: #808080;
}

.umaibe_detail_title .umaibe_cate_link {
	text-align: right;
	font-size: 1.4rem;
	line-height: 1.6;
	padding-top: 10px;
}

.umaibe_detail_title .umaibe_cate_link a {
	display: inline-block;
	white-space: nowrap;
	margin: 0;
}

.umaibe_detail_title .umaibe_cate_link a::after {
	content: "|";
	color: #808080;
	margin: 0 0.5em;
}

.umaibe_detail_title .umaibe_cate_link a:last-child:after {
	display: none;
}


/* Details Reader */

.umaibe_detail_reader {
	background-color: #f0f0f0;
	padding: 30px;
	margin-bottom: 40px;
}

.umaibe_detail_reader p {
	font-size: 1.6rem;
	line-height: 1.8;
}

.umaibe_detail_reader p.en {
	margin-top: 8px;
	font-size: 1.4rem;
	color: #808080;
}


/* Umaibe Coupon */

.umaibe_coupon_box {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 40px auto;
	border: 8px solid #dd4c36;
	border-radius: 20px;
	overflow: hidden;
}

.umaibe_coupon_box h3 {
	height: 60px;
	padding-top: 32px;
	text-align: center;
	background-color: #dd4c36;
	color: #fff;
	font-size: 0;
	background-image: url(../img/umaibe_coupon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 280px;
}

.umaibe_coupon_box h3 span.en {
	display: block;
	font-size: 1.3rem;
}

.umaibe_coupon_box > p {
	padding: 20px 20px 8px 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	color: #dd4c36;
}

.umaibe_coupon_box > p.en {
	padding: 0 20px 20px 20px;
	font-size: 1.6rem;
	font-weight: 400;
	color: #e36c5a;
}

.umaibe_coupon_box .umaibe_coupon_footer {
	padding: 10px 10px 5px 10px;
	background-color: #dd4c36;
	color: #fff;
	text-align: center;
	font-weight: 500;
	line-height: 1.4;
}

.umaibe_coupon_box .umaibe_coupon_footer p.en {
	font-weight: 400;
	font-size: 1.3rem;
}


/* Details Content */

.umaibe_detail_cont {
	position: relative;
}

.umaibe_detail_cont .umaibe_photo {
	margin: 0 auto 40px auto;
	max-width: 480px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
}

.umaibe_detail_cont .umaibe_photo > div {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.umaibe_detail_cont .umaibe_photo img {
	width: 100%;
}

.umaibe_detail_cont .umaibe_photo > div:nth-child(n+4) {
	width: calc(50% - 5px);
	
}

.umaibe_detail_cont .umaibe_photo > div:nth-child(n+4) img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.umaibe_cont_list {
	margin-bottom: 20px;
}

.umaibe_cont_list > h3 {
	font-size: 2rem;
	font-weight: 700;
}

.umaibe_cont_list > h3 span.en {
	font-size: 1.6rem;
	font-weight: 400;
	color: #808080;
	margin-left: 0.3em;
}

.umaibe_cont_list > dl {
	margin: 0;
	padding: 0;
	line-height: 1.8;
	font-size: 1.6rem;
	border-bottom: 1px solid #d5d5d5;
}

.umaibe_cont_list > dl > div {
	border-top: 1px solid #d5d5d5;
}

.umaibe_cont_list > dl dt {
	margin: 0;
	padding: 10px 0 5px 0;
	font-weight: 600;
	width: 100%;
}

.umaibe_cont_list > dl dt span.en {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 400;
	color: #808080;
	white-space: nowrap;
	margin-left: 0.3em;
}

.umaibe_cont_list > dl dd {
	margin: 0;
	padding: 0 0 10px 15px;
}

.umaibe_cont_list > dl dd p.en {
	font-size: 1.4rem;
	color: #808080;
}

.umaibe_cont_list > dl dd .phone_num {
	display: block;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.umaibe_cont_list > dl dd .phone_num::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(../img/icon_umaibe_phone.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 0.2em;
	vertical-align: -0.15em;
}

.umaibe_cont_list > dl dd ul.budget_list {
	margin: 0;
	padding: 8px 0 0 0;
	list-style-type: none;
	list-style-position: outside;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
	gap: 8px;
}

.umaibe_cont_list > dl dd ul.budget_list li {
	width: 100%;
	margin: 0;
	padding: 9px;
	line-height: 1;
	background-color: #f2f2f2;
	position: relative;
	white-space: nowrap;
}

.umaibe_cont_list > dl dd ul.budget_list li p:first-child {
	padding: 0 0 5px 36px;
	font-size: 1.4rem;
	line-height: 1.2;
	position: relative;
}

.umaibe_cont_list > dl dd ul.budget_list li p:first-child::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 0;
}

.umaibe_cont_list > dl dd ul.budget_list li p:first-child::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

li.budget_morning p:first-child::before {
	background-color: #47a8d1;
}

li.budget_morning p:first-child::after {
	background-image: url(../img/icon_umaibe_morning.svg);
}

li.budget_lunch p:first-child::before {
	background-color: #72bd5b;
}

li.budget_lunch p:first-child::after {
	background-image: url(../img/icon_umaibe_lunch.svg);
}

li.budget_dinner p:first-child::before {
	background-color: #f5880c;
}

li.budget_dinner p:first-child::after {
	background-image: url(../img/icon_umaibe_dinner.svg);
}

li.budget_night p:first-child::before {
	background-color: #5e6dd1;
}

li.budget_night p:first-child::after {
	background-image: url(../img/icon_umaibe_night.svg);
}

li.budget_banquet p:first-child::before {
	background-color: #b151bd;
}

li.budget_banquet p:first-child::after {
	background-image: url(../img/icon_umaibe_banquet.svg);
}

.umaibe_cont_list > dl dd ul.budget_list li p:first-child span.en {
	display: block;
	font-size: 1.2rem;
	color: #808080;
}

.umaibe_cont_list > dl dd ul.budget_list li p:last-child {
	font-size: 1.6rem;
	padding-top: 5px;
}

.umaibe_cont_list > dl dd .link_website {
	word-break: break-all;
}

.umaibe_cont_list > dl dd .link_website a::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/icon_extlink_blue.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 0.2em;
	vertical-align: -0.1em;
}

.umaibe_cont_list > dl dd .link_sns {
	line-height: 30px;
	padding-bottom: 5px;
}

.umaibe_cont_list > dl dd .link_sns a {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 8px;
	font-size: 0;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.umaibe_cont_list > dl dd .link_sns a.sns_insta {
	background-image: url(../img/logo_sns_instagram.svg);
}

.umaibe_cont_list > dl dd .link_sns a.sns_x {
	background-image: url(../img/logo_sns_x.svg);
}

.umaibe_cont_list > dl dd .link_sns a.sns_facebook {
	background-image: url(../img/logo_sns_facebook.svg);
}

.umaibe_cont_list > dl dd .link_sns a.sns_line {
	background-image: url(../img/logo_sns_line.svg);
}

.umaibe_cont_list > dl dd .link_sns a.sns_tiktok {
	background-image: url(../img/logo_sns_tiktok.svg);
}

.umaibe_cont_list > dl dd iframe {
	width: 100%;
	height: 300px;
	margin-top: 8px;
	border: 5px solid #fff;
	box-shadow: 0 0 0 1px #d5d5d5;
}



/* for SmallSize
--------------------------------------------------------------------------------- */
@media print, screen and (min-width:420px) {


	/* Result Index
	------------------------------------------------------------- */

	/* Result List */

	.umaibe_result_list {
		grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	}

	.umaibe_genre_tabs {
		height: 52px;
	}

	.umaibe_genre_tabs > p.umaibe_genre_icon {
		height: 42px;
		width: 42px;
		margin-left: 2px;
		line-height: 42px;
	}


}



/* for SmallSize
--------------------------------------------------------------------------------- */
@media print, screen and (min-width:480px) {

}



/* for MiddleSize(540-787)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:540px) {

	/* Details Search
	------------------------------------------------------------- */

	.detail_search_cont dl dd .detail_genre_selector label span.en {
		display: inline-block;
		margin-left: 0.3em;
	}


	/* Details
	------------------------------------------------------------- */

	/* Umaibe Coupon */

	.umaibe_coupon_box h3 {
		background-size: 340px;
	}



}





/* for MiddleSize(650-787)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:640px) {

	/* Result Index
	------------------------------------------------------------- */

	/* Explanatory Notes */

	.search_umaibe_exnote {
		grid-template-columns: auto auto auto;
	}


}





/* for MiddleSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:788px) {

	/* Common
	------------------------------------------------------------- */

	.reader_box {
		text-align: center;
	}


	/* Details Search
	------------------------------------------------------------- */

	.detail_search_cont dl dt span.en {
		display: block;
	}

	.detail_search_cont dl dd .city_yamagata_selector > label {
		padding-top: 4px;
	}

	.detail_search_cont dl dd .city_yamagata_selector > label span.en {
		display: block;
		white-space: nowrap;
		margin-left: 0;
	}

	.detail_search_cont dl dd .city_yamagata_selector > label::before {
		top: 5px;
		margin-top: 0;
	}

	.detail_search_cont dl dd .city_yamagata_selector > label::after {
		top: 4px;
		margin-top: 0;
	}

	.detail_search_cont dl dd .city_yamagata_selector > div {
		width: calc(100% - 5em);
	}




	/* Result Index
	------------------------------------------------------------- */

	/* Result List */

	.umaibe_result_list {
		padding: 0;
	}



	/* Details
	------------------------------------------------------------- */

	.umaibe_detail_box {
		padding: 40px 40px;
	}

	/* Details Title */

	.umaibe_detail_title > div {
		grid-template-columns: 80px 1fr auto;
		grid-template-rows: auto;
	}

	.umaibe_detail_title .umaibe_genre_tabs {
		grid-row: 1;
		grid-column: 3;
		justify-self: end;
		align-self: end;
}

	.umaibe_detail_title h2 {
		font-size: 2.4rem;
		padding-left: 12px;
	}

	.umaibe_detail_title h2 span.en {
		font-size: 1.6rem;
	}



	/* Details Content */

	.umaibe_cont_list > h3 {
		font-size: 2.4rem;
	}

	.umaibe_cont_list > h3 span.en {
		font-size: 1.8rem;
	}

	.umaibe_cont_list > dl > div {
		display: grid;
		grid-template-columns: 9em 1fr;
	}

	.umaibe_cont_list > dl dt {
		width: 7.5em;
		padding: 10px 0;
	}

	.umaibe_cont_list > dl dt span.en {
		display: block;
		margin: 0;
	}

	.umaibe_cont_list > dl dd {
		padding: 10px 0;
	}

	.umaibe_cont_list > dl dd .phone_num {
		line-height: 2.4;
	}

	.umaibe_cont_list > dl dd .link_website {
		line-height: 3.2;
	}

	.umaibe_cont_list > dl dd .link_sns {
		line-height: 46px;
		padding-top: 10px;
		padding-bottom: 0;
	}


}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:880px) {

	/* Result Index
	------------------------------------------------------------- */

	/* Result List */
/*
	.umaibe_result_list {
		grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	}

	.umaibe_genre_tabs {
		height: 56px;
	}

	.umaibe_genre_tabs > p.umaibe_genre_icon {
		height: 46px;
		width: 46px;
		line-height: 46px;
	}
*/

}


/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:980px) {


	.bread_navi p a:last-child, .bread_navi p span:last-child {
		max-width: none;
	}


	/* Genre Button
	------------------------------------------------------------- */

	.umaibe_genre_selector ul {
		grid-template-columns: repeat(auto-fit, minmax(294px, 1fr));
		gap: 8px;
	}

	.umaibe_genre_selector ul li.umaibe_genre_pub a > span {
		letter-spacing: -0.07em;
	}

	.umaibe_genre_selector ul li.umaibe_genre_pub a > span span.en {
		font-size: 1.25rem;
		letter-spacing: -0.01em;
	}


	/* Details Search
	------------------------------------------------------------- */

	.detail_search_cont dl dd .detail_genre_selector {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(30em, 1fr));
		gap: 0 30px;
	}

	.detail_search_cont dl dd .detail_genre_selector label {
		white-space: nowrap;
	}


	/* Result Index
	------------------------------------------------------------- */

	.umaibe_result_box {
		max-width: 1280px;
		margin: 0 auto;
	}


	/* Explanatory Notes */

	.search_umaibe_exnote {
		grid-template-columns: repeat(5, auto);
		padding-bottom: 8px;
	}


	/* Details
	------------------------------------------------------------- */

	.umaibe_detail_box {
		max-width: 1280px;
		margin: 0 auto;
	}


	/* Details Title */

	.umaibe_detail_title h2 {
		font-size: 2.8rem;
	}

	.umaibe_detail_title h2 span.en {
		font-size: 1.8rem;
	}


	/* Details Content */

	.umaibe_detail_cont {
		display: grid;
		grid-template-columns: 280px 1fr;
		gap: 40px;
	}



}




/* for ExtraLargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1080px) {


}




/* for ExtraLargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1280px) {

	/* Details Search
	------------------------------------------------------------- */

	.detail_search_cont dl dd .city_yamagata_selector > label span.en {
		display: inline-block;
		margin-left: 0.3em;
	}

	.detail_search_cont dl dd .city_yamagata_selector > div {
		width: calc(100% - 13em);
		margin-left: 0.5em;
	}


	/* Details
	------------------------------------------------------------- */

	/* Details Content */

	.umaibe_detail_cont {
		grid-template-columns: 340px 1fr;
	}







}






/*** Print Styles ***/

@media print {

	/* Result Index
	------------------------------------------------------------- */

	/* Result List */

	.umaibe_result_list {
		padding: 0;
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 20px 20px;
	}

	.umaibe_result_list > div {
		break-inside: avoid !important;
	}

	.umaibe_genre_tabs {
		height: 45px;
	}

	.umaibe_genre_tabs > p.umaibe_genre_icon {
		height: 35px;
		width: 35px;
		margin-left: 1px;
		line-height: 35px;
	}


	.umaibe_btn {
		display: none;
	}


	/* Details
	------------------------------------------------------------- */

	/* Details Content */

	.umaibe_detail_cont {
		display: block;
		break-inside: auto;
	}


}