/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 18 2025 | 09:41:49 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2023 | 07:23:25 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 21 2023 | 09:30:49 */
@charset "UTF-8";

/*--------------------------------------------------
**************************************************
  スマホ用
**************************************************
--------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	/*--- 基本 ---*/
	*{
		min-height: 0;
		min-width: 0;
	}

	body {
		position: relative;
		font-size: 16px;
	}

	img{
		max-width: 100%;
		height: auto;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: pixelated;
	}
	
	.wrapper{
		max-width: unset;
		width: 95%;
	}
	
	.pcOnly {
		display:none !important; /* スマホでは非表示 */
	}
	
	/*--- リンク系（アンカー） ---*/
	a[href^="tel:"] {
		pointer-events: auto;
	}
	
	/*--- ヘッダー ---*/
	.header_common{
		position: relative;
		z-index: 20;
		width: 100vw;
		height: 80px;
	}
	
	.header_common > .flex{
		position: relative;
		width: 92%;
	}

	.header_common h1{
		width: 55%;
	}
	
	.header_common .header_logo{
		width: 100%;
		vertical-align: bottom;
	}

	.header_common .header_logo .site_name{
		font-size: 7.3vw;
	}
	
	.header_common .search_type_links{
		display: none;
	}
	
	.header_common .header_links{
		margin-right: 40px;
	}
	
	.header_common .header_links .header_links__list .favorite-count,
	.header_common .header_links .header_links__list .history-count{
		bottom: 15px;
	}
	
	/*--- ハンバーガーメニュー ---*/
	#hamburger{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		cursor: pointer;
		width: 20px;
		height: 13px;
		margin: 0;
		padding: 0;
		background-color: unset;
		border: unset;
	}
	
	#hamburger span{
		position: absolute;
		left: 0;
		display: inline-block;
		width: 20px;
		height: 2px;
		background-color: #454545;
		/*transition: all .4s;*/
	}
	
	#hamburger span:nth-of-type(1){
		top: 0;
	}
	
	#hamburger span:nth-of-type(2){
		top: 5.5px;
	}
	
	#hamburger span:nth-of-type(3){
		top: 11px;
	}
	/*
	#hamburger.active{
		background-color: unset;
	}
	
	#hamburger.active span:nth-of-type(1){
		top: 5px;
		transform: rotate(-40deg);
	}
	
	#hamburger.active span:nth-of-type(2){
		opacity: 0;
	}
	
	#hamburger.active span:nth-of-type(3){
		top: 5px;
		transform: rotate(40deg);
	}
	*/
	#hamburger_close{
		position: relative;
		left: 90%;
		display: block;
		width: 20px;
		height: 20px;
		margin: 20px 0 0 0;
		background-color: unset;
	}

	#hamburger_close:hover{
		background-color: unset;
	}
	
	#hamburger_close span{
		position: absolute;
		left: 0;
		display: inline-block;
		width: 20px;
		height: 2px;
		background-color: #454545;
		transition: all .4s;
	}
	
	#hamburger_close span:nth-of-type(1){
		transform: rotate(-45deg);
	}
	
	#hamburger_close span:nth-of-type(2){
		transform: rotate(45deg);
	}
	
	/*--- グローバルナビゲーション ---*/
	.gnavi{
		transform: translateY(-150%);
		transition: all .4s;
		position: absolute;
		top: 80px;
		left: 0;
		z-index: 10;
		width: 100vw;
		/* background: linear-gradient(129deg, #9CE2AF 0%, #9AE7F7 100%); */
		background-color: #e8fdf4;
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.gnavi.active{
		transform: translateY(0);
	}

	.gnavi .wrapper{
		width: 90%;
		padding-bottom: 50px;
	}

	.gnavi .search_type{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 2%;
		margin: 50px 0 0;
	}

	.gnavi .search_type a{
		position: relative;
		display: block;
		width: 49%;
		padding: 20px;
		border-radius: 10px;
		font-size: 3.6vw;
		color: #fff;
	}

	.gnavi .search_type .menu_rabbit{
		background-color: #00a491;
	}

	.gnavi .search_type .menu_rabbit::before{
		content: "";
		position: absolute;
		top: -38px;
		right: 15px;
		display: block;
		width: 25px;
		height: 43px;
		background-image: url(/app/uploads/sites/910/2023/07/sp_rabbit_2x.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		transform-origin: center bottom;
		animation: yurayura 2s linear infinite;
	}

	.gnavi .search_type .menu_turtle{
		background-color: #6fb3a6;
	}

	.gnavi .search_type .menu_turtle::before{
		content: "";
		position: absolute;
		top: -26px;
		right: 12px;
		z-index: 1;
		display: block;
		width: 42px;
		height: 30px;
		background-image: url(/app/uploads/sites/910/2023/07/sp_turtle_2x.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		transform-origin: center bottom;
		animation: yurayura 2s linear infinite;
	}

	.gnavi .search_type a:hover{
		text-decoration: none;
	}

	.gnavi .menu_list{
		margin: 20px 0 0 0;
	}

	.gnavi .menu_list > li{
		border-bottom: #00a491 1px solid;
	}

	.gnavi .menu_list a,
	.gnavi .menu_list > li > span{
		position: relative;
		color: #333;
	}

	.gnavi .menu_list a:hover{
		text-decoration: none;
	}

	.gnavi .menu_list > li > a,
	.gnavi .menu_list > li > span{
		display: block;
		width: 100%;
		padding: 15px 15px 15px 40px;
		font-size: 16px;
		font-weight: 700;
	}

	.gnavi .menu_list > li.station > a{
		background: url(/app/uploads/sites/910/2023/06/train.png) no-repeat 10px center;
		background-size: 17px;
	}

	.gnavi .menu_list > li.instrument > a{
		background: url(/app/uploads/sites/910/2023/06/instrument.png) no-repeat 8px center;
		background-size: 22px;
	}

	.gnavi .menu_list > li.map > a{
		background: url(/app/uploads/sites/910/2023/06/map.png) no-repeat 7px center;
		background-size: 20px;
	}

	.gnavi .menu_list > li.area > a{
		background: url(/app/uploads/sites/910/2023/06/area.png) no-repeat 9px center;
		background-size: 14px;
	}

	.gnavi .menu_list > li.obsession > span{
		background: url(/app/uploads/sites/910/2023/07/kodawari_2x.png) no-repeat 7px center;
		background-size: 20px;
	}

	.gnavi .menu_list > li.inner_list > span::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%) rotate(135deg);
		display: block;
		width: 8px;
		height: 8px;
		border-top: #00a491 1px solid;
		border-right: #00a491 1px solid;
	}

	.gnavi .menu_list > li.inner_list.open > span::after{
		transform: translateY(-10%) rotate(315deg);
	}

	.gnavi .menu_list > li > div{
		display: none;
	}

	.gnavi .menu_list > li > div > ul{
		display: flex;
		flex-wrap: wrap;
		gap: 10px 2%;
		margin: 5px 0 20px;
	}

	.gnavi .menu_list > li > div > ul > li{
		width: 49%;
	}

	.gnavi .menu_list > li > div > ul > li > a{
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 60px;
		padding: 0 20px 0 45px;
		border: #c8c8c8 1px solid;
		border-radius: 10px;
		line-height: 1.3;
		font-size: 14px;
		font-weight: bold;
	}

	.gnavi .menu_list > li > div > ul > li.twentfoyur > a{
		background: #fff url(/app/uploads/sites/910/2025/07/icon_24hours.png) no-repeat 10px center;
		background-size: 32px;
	}
	
	.gnavi .menu_list > li > div > ul > li.piano > a{
		background: #fff url(/app/uploads/sites/910/2023/07/piano_2x.png) no-repeat 10px center;
		background-size: 32px;
	}

	.gnavi .menu_list > li > div > ul > li.string > a{
		background: #fff url(/app/uploads/sites/910/2023/07/gengakki_2x.png) no-repeat 10px center;
		background-size: 32px;
	}

	.gnavi .menu_list > li > div > ul > li.new > a{
		background: #fff url(/app/uploads/sites/910/2023/07/star_2x.png) no-repeat 10px center;
		background-size: 30px;
	}

	.gnavi .menu_list > li > div > ul > li.wind > a{
		background: #fff url(/app/uploads/sites/910/2023/07/kangakki_2x.png) no-repeat 10px center;
		background-size: 28px;
	}

	.gnavi .menu_list > li > div > ul > li.vocal > a{
		background: #fff url(/app/uploads/sites/910/2023/07/voice_2x.png) no-repeat 10px center;
		background-size: 30px;
	}

	.gnavi .menu_list > li > div > ul > li.pet > a{
		background: #fff url(/app/uploads/sites/910/2023/07/pet_2x.png) no-repeat 10px center;
		background-size: 28px;
	}

	.gnavi .menu_list > li > div > ul > li.dtm > a{
		background: #fff url(/app/uploads/sites/910/2023/07/dtm_2x.png) no-repeat 10px center;
		background-size: 24px;
	}

	.gnavi .menu_list > li > div > ul > li.soundproof > a{
		background: #fff url(/app/uploads/sites/910/2023/07/bouon_2x.png) no-repeat 10px center;
		background-size: 28px;
	}

	.gnavi .menu_list > li > div > ul > li.year2000 > a{
		background: #fff url(/app/uploads/sites/910/2023/07/since2000_2x.png) no-repeat 7px center;
		background-size: 34px;
	}
	
	.gnavi .menu_list > li > div > ul > li.navi_couple > a{
		background: #fff url(/app/uploads/sites/910/2024/09/couple.png) no-repeat 7px center;
		background-size: 30px;
	}
	
	.gnavi .menu_list > li > div > ul > li.navi_price10 > a{
		background: #fff url(/app/uploads/sites/910/2024/09/price_10.png) no-repeat 7px center;
		background-size: 30px;
	}

	.gnavi .menu_list > li > div > ul > li > a::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%) rotate(45deg);
		display: block;
		width: 7px;
		height: 7px;
		border-top: #969696 1px solid;
		border-right: #969696 1px solid;
	}

	.gnavi .contact_btn{
		display: block;
		width: 100%;
		margin: 20px 0 0;
		padding: 13px 0;
		background-color: #00a491;
		border-radius: 10px;
		text-align: center;
	}

	.gnavi .contact_btn span{
		padding: 0 0 0 30px;
		background: url(/app/uploads/sites/910/2023/04/mail_2x.png) no-repeat left center;
		background-size: 22px;
		font-size: 16px;
		font-weight: 700;
		color: #fff;
	}

	.gnavi .contact_arrow{
		margin-top: 20px;
	}

	.gnavi .contact_arrow a{
		position: relative;
		font-size: 13px;
		font-weight: 500;
		color: #333;
	}

	.gnavi .contact_arrow a::before{
		content: "";
		position: absolute;
		top: 50%;
		right: -10px;
		transform: translateY(-50%) rotate(45deg);
		display: block;
		width: 8px;
		height: 8px;
		border-top: #00a491 1px solid;
		border-right: #00a491 1px solid;
	}

	.gnavi .contact_arrow a:hover{
		text-decoration: none;
	}

	/*--- パンくず ---*/
	#page .es-header-breadcrumb{
		order: 0;
		margin-left: auto;
		margin-right: auto;
	}

	#page .es-header-breadcrumb .es-container{
		border: none;
	}

	#page .es-header-breadcrumb .breadcrumb-list{
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		overflow: auto;
	}

	#page .es-header-breadcrumb .breadcrumb-list a{
		text-decoration: none;
	}

	/*--- 見出し ---*/
	.heading_type_01{
		font-size: 20px !important;
	}

	.heading_type_02{
		font-size: 24px;
	}

	/*--- ABOUT ROOM CAFE（フッター） ---*/
	.footer_about{
		min-height: unset;
		padding: 40px 0 0;
		background: url(/app/uploads/sites/910/2023/06/bg_about_rooom_cafe_sp.png) no-repeat center top;
		background-size: 100%;
	}

	.footer_about .sub_heading{
		margin-top: 10px;
		font-size: 12px;
	}

	.footer_about .submenu{
		flex-direction: column;
		gap: 10px 0;
		margin-top: 25px;
	}

	.footer_about .submenu a{
		width: 80%;
		margin: 0 auto;
		padding: 14px 20px;
		background-color: rgba(246, 246, 246, 0.85);
		border: #00a491 1px solid;
		text-align: left;
		font-size: 12px;
	}

	.footer_about .submenu a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		width: 17px;
		height: 17px;
		margin: 0;
		background-size: 17px;
	}

	.footer_about .submenu a:hover{
		border: #00a491 2px solid;
	}

	.footer_about .submenu a span{
		font-size: 14px;
		font-weight: bold;
	}

	.footer_about .ft_search{
		width: 90%;
		margin-top: 30px;
		padding: 20px;
		border-radius: 20px;
	}

	.footer_about .ft_search .heading_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer_about .ft_search .heading{
		text-align: left;
		font-size: 22px;
		white-space: nowrap;
	}

	.footer_about .ft_search .count{
		line-height: 1.2;
		text-align: right;
	}

	.footer_about .ft_search .count .num{
		margin: 0 3px;
		font-size: 20px;
		font-weight: 700;
	}

	.footer_about .ft_search .types{
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 15px;
	}

	.footer_about .ft_search .types > li{
		width: 46%;
		border-radius: 20px;
	}

	.footer_about .ft_search .types > li a{
		padding: 10px 0;
		border-radius: 20px;
		font-size: 12px;
	}

	.footer_about .ft_search .types > li a::before{
		height: 50px;
	}

	.footer_about .ft_search .types > li:nth-child(1) a::before{
		width: 35px;
		background-size: 100%;
	}
	
	.footer_about .ft_search .types > li:nth-child(2) a::before{
		width: 45px;
		background-size: 100%;
	}
	
	.footer_about .ft_search .types > li:nth-child(3) a::before{
		width: 40px;
		background-size: 100%;
	}
	
	.footer_about .ft_search .types > li:nth-child(4) a::before{
		width: 25px;
		background-size: 100%;
	}

	.footer_about .ft_search .types > li a::after{
		width: 20px;
		height: 20px;
		margin-top: 5px;
		background-size: 20px;
	}

	.footer_about .ft_search .types > li a span{
		font-size: 16px;
	}

	/*--- クレジットカード（フッター） ---*/
	.footer_card{
		margin: 70px 0 0 0;
	}

	.footer_card .main_catch{
		font-size: 16px;
	}

	.footer_card .sub_catch{
		margin-top: 8px;
		font-size: 12px;
	}

	.footer_card .card_brand{
		column-gap: 10px;
		width: 87%;
		margin: 15px auto 0;
		padding: 20px;
	}

	/*--- SNS（フッター） ---*/
	.footer_sns{
		margin-top: 40px;
	}
	.footer_sns .sub_heading{
		margin-top: 10px;
	}

	/*--- お問い合わせ（フッター） ---*/
	.footer_contact{
		margin-top: 0px;
		padding: 40px 0;
	}

	.footer_contact .catch{
		font-size: 15px;
	}

	.footer_contact .contact_btn{
		width: 80%;
	}
	
	/*--- フッター ---*/
	footer{
		margin-bottom: 16vw;
	}

	footer .site_info_group{
		padding: 40px 0;
	}
	
	footer .flex{
		display: block;
		width: 90%;
	}
	
	footer .company{
		width: 100%;
		margin: 0;
	}
	
	footer .footer_site_name{
		display: block;
		text-align: center;
		font-size: 24px;
	}
	
	footer .footer_company_name,
	footer .footer_company_address,
	footer .footer_company_walk,
	footer .footer_company_tel.Roboto-R{
		text-align: center;
	}
	
	footer .footer_company_name{
		font-size: 14px;
	}
	
	footer .footer_company_address{
		margin-top: 10px;
		font-size: 14px;
		font-weight: 500;
	}

	footer .footer_company_walk{
		font-size: 14px;
	}

	footer .footer_company_tel.Roboto-R{
		margin-top: 10px;
		font-size: 14px;
		font-weight: 400;
	}
	
	footer .footer_company_tel.spOnly{
		display: block;
		width: 90%;
		margin: 15px auto;
		padding: 15px;
		background-color: #efef82;
		border-radius: 30px;
		text-align: center;
	}

	footer .footer_company_tel.spOnly span{
		padding-left: 30px;
		background: url(/app/uploads/sites/910/2023/06/tel.png) no-repeat left center;
		background-size: 20px;
		font-size: 18px;
		font-weight: 500;
		color: #333;
	}

	footer .nav{
		flex-direction: column;
		column-gap: 20px;
	}
	
	footer .nav > ul{
		position: relative;
		padding: 25px 0;
	}
	
	footer .nav > ul:nth-child(1){
		order: 1;
	}

	footer .nav > ul:nth-child(2){
		order: 0;
	}

	footer .nav > ul:nth-child(3){
		order: 2;
		padding-bottom: 0;
	}

	footer .nav > ul:nth-child(1):before,
	footer .nav > ul:nth-child(2):before{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		display: block;
		width: 100%;
		height: 1px;
		background-color: #d9d4d4;
	}

	footer .nav > ul:nth-child(1),
	footer .nav > ul:nth-child(2) li ul,
	footer .nav > ul:nth-child(3){
		display: flex;
		flex-wrap: wrap;
	}
	
	footer .nav > ul:nth-child(1) > li,
	footer .nav > ul:nth-child(3) > li{
		width: calc(50% - 1rem);
		margin-left: 1rem;
	}

	footer .nav > ul:nth-child(2) li ul{
		margin-top: 10px;
	}
	
	footer .nav > ul:nth-child(2) li ul li{
		width: 50%;
	}

	footer .nav > ul li > ul{
		margin-left: 0;
	}

	footer .nav > ul li > ul li:first-child{
		margin-top: 0;
	}

	footer .nav > ul li a{
		font-weight: 500;
	}

	footer .nav > ul:nth-child(2) > li > a{
		font-size: 14px;
		font-weight: 700;
		color: #00a491;
	}
	
	#copyright{
		padding: 14px 0;
	}

	/* その他（フッター固定） */
	.spOnly.fixed_bottom{
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 5;
		display: flex;
		justify-content: center;
		column-gap: 4%;
		width: 100%;
		padding: 20px 2% 0;
		background-color: rgba(255, 255, 255, 0.8);
	}

	.spOnly.fixed_bottom > a{
		position: relative;
		display: block;
		width: 48%;
		padding: 5px 5px 8px 37px;
		box-shadow: 2px 3px 1px rgba(0, 0, 0, 0.1);
		border-radius: 10px 10px 0 0;
		line-height: 1;
	}

	.spOnly.fixed_bottom .tel{
		background: #00a491 url(/app/uploads/sites/910/2023/07/sp_tel_2x.png) no-repeat 13px 60%;
		background-size: 20px;
	}

	.spOnly.fixed_bottom .rabbit::before{
		content: "";
		position: absolute;
		top: -34px;
		right: 11px;
		display: block;
		width: 22px;
		height: 38px;
		background-image: url(/app/uploads/sites/910/2023/07/sp_rabbit_2x.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		transform-origin: center bottom;
		animation: yurayura 2s linear infinite;
	}

	.spOnly.fixed_bottom .mail{
		background: #6fb3a6 url(/app/uploads/sites/910/2023/07/sp_mail_2x.png) no-repeat 10px 60%;
		background-size: 20px;
	}

	.spOnly.fixed_bottom .turtle::before{
		content: "";
		position: absolute;
		top: -19px;
		right: 12px;
		z-index: 1;
		display: block;
		width: 30px;
		height: 22px;
		background-image: url(/app/uploads/sites/910/2023/07/sp_turtle_2x.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
		transform-origin: center bottom;
		animation: yurayura 2s linear infinite;
	}

	.spOnly.fixed_bottom .contact_text{
		font-size: 12px;
		font-weight: 500;
		color: #fff;
	}

	.spOnly.fixed_bottom .contact_text .small{
		font-size: 2.5vw;
	}

	.spOnly.fixed_bottom .time{
		position: absolute;
		top: -15px;
		left: 11px;
		padding: 4px 8px;
		background-color: #e8fdf4;
		border-radius: 12px;
		font-size: 2.5vw;
		font-weight: 700;
		color: #555;
	}
	
	.spOnly.fixed_bottom .time::before{
		content: "";
		position: absolute;
		left: 50%;
		bottom: -4px;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		border-style: solid;
		border-color: #e8fdf4 transparent transparent transparent;
		border-width: 5px 5px 0 5px;
	}
	
	.special_list_box a h3.wrap{
		font-size: 12px;
	}
}
