@charset "utf-8";
/**********************************************
** Site Name: カップルズ予約 -管理画面-
** Site URI: https://booking.couples.jp/owner/
** Description: 共通
**********************************************/

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

/*  CONTENTS:

/*============================================
1.0 - Component（接頭辞はc-）
   1.1 タイトル関連
   1.2 コンテンツ用の箱（のびる、のびない）
   1.3 アイコン関連
   1.4 タブメニュー関連
   1.5 アニメーション関連
   1.6 その他
2.0 - Project（接頭辞はp-）
   2.1 header
      01.ハンバーガーメニュー
      02.タブメニュー
      03.右下から出てくる通知
   2.2 side menu
   2.3 footer
   2.3 
   2.4 
      01. 
      02. 
   2.5 
   2.6 
   2.7 
      01.
      02.
3.0 - Utillity（接頭辞はu-）
   3.1 余白（margin/padding等）関連
   3.2 リンク関連
=============================================*/

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

/* .1.0 - Component

/*===========================================*/
/*-------------------------------------------*/
/* 1.1 タイトル関連
/*-------------------------------------------*/
.c-mainTitle{
	padding: 12px;
	font-size: 1.6rem;
	background-color: #fff;
}
.c-subTitle{
	padding: 0 24px 12px;
	font-size: 1.6rem;
}
/*-------------------------------------------*/
/* 1.2 コンテンツ用の箱
/*-------------------------------------------*/
.c-mainInner{padding: 24px 0 0.1px;}
.c-area{
	margin: 0 24px 24px 24px;
	padding: 20px 16px;
	max-width: 800px;
	background-color: #fff;
	border-radius: 5px;
	box-sizing: border-box;
}
@media screen and (max-width:768px){.c-area{width: auto;}}
.c-area.c-area__extend{max-width: 100%;}
/*-------------------------------------------*/
/* 1.3 横並び、リンク、アイコン関連
/*-------------------------------------------*/
/*　横並び　*/
.p-lineupList{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	width: 100%;
}
@media screen and (max-width:768px){.p-lineupList--center{justify-content: center;}}
/*-------------------------------------------*/
/* 1.4 タブメニュー関連
/*-------------------------------------------*/
/*-------------------------------------------*/
/* 1.5 アニメーション関連
/*-------------------------------------------*/
/*-------------------------------------------*/
/* 1.6 その他
/*-------------------------------------------*/

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

/* .2.0 - Project

/*===========================================*/
/*-------------------------------------------*/
/* 2.1 header
/*-------------------------------------------*/
.p-header{
	position: fixed;
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 65px;
	font-size: 1.3rem;
	color: #fff;
	background-color: #002349;
	z-index: 10;
}
.p-header__logo{
	display: flex;
	padding: 0 12px;
	align-items: center;
	column-gap: 20px;
	overflow: hidden;
}
.p-header__logoImg{
	display: block;
	width: 134px;
}
.p-header__logoName{
	padding-left: 20px;
	background: url("../img/icon_person_w.svg") 2px 1px / 15px auto no-repeat;
	vertical-align: bottom;
}
.p-header__logoContent{
	max-width: calc(100% - 144px);
	flex: 1;
}
.p-header__logoTitle{
	text-overflow: ellipsis; 
	white-space: nowrap;
	overflow: hidden;
}
.p-header__logoDetail{
	font-size: 1.5rem;
	font-weight: bold;
	text-overflow: ellipsis; 
	white-space: nowrap;
	overflow: hidden; 
}
.p-header__navList{
	display: flex;
	align-items: center;	
	column-gap: 20px;
}
@media screen and (max-width:768px){.p-header__logoContent{display: none;}}
.p-header__navItem:nth-child(2){padding-right: 12px;}
.p-header__navItem:nth-child(3){
	display: none;
	padding: 0;
	text-align: center;
	background-color: #000;
}
@media screen and (max-width:768px){ 
.p-header__navItem:nth-child(2){padding-right: 0;}
.p-header__navItem:nth-child(3){display: block;}
}
.p-header__id{
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.p-header__id:hover{
	transition: all 0.3s;
    opacity: 0.8;
}
.p-header__panel.show{
	opacity: 1;
	pointer-events: auto;
}
.p-header__panel{
	position: absolute;
	top: 80px;
	right: 10px;
	width: 266px;
	padding: 16px;
	color: #333;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.34);
	z-index: 40;
	opacity: 0;
	transition: 0.2s ease;
	pointer-events: none;	
}
.p-header__panelContent{
	padding: 10px 16px;
	text-align: center;
	background-color: #f4f4f4;
	box-sizing: border-box;
}
.p-header__panelItem{margin-top: 6px;}
.p-header__panelLink{
	display: block;
	padding: 6px 0 6px 30px;
	color: #333;
}
.p-header__panelLink.p-header__panelLink--set{background: url("../img/icon_person.svg") 4px center / 19px auto no-repeat;}
.p-header__panelLink.p-header__panelLink--logout{background: url("../img/icon_logout.svg") 7px center / 17px auto no-repeat;}
.p-header__panelLink:hover{
	color: #333;
	background-color: #E8F1FE;
	border-radius: 3px;
}
/*-------------------------------------------*/
/* 2.1 01.ハンバーガーメニュー
/*-------------------------------------------*/
.p-header__hamburger{
	position: relative;
	padding: 16px;
	height: 65px;
	background-color: #000;
	cursor: pointer;
	z-index: 20;
}
.p-header__hamburgerParts{
	margin: 6px 0;
	width: 28px;
	height: 2px;
	background: #fff;
	transition: all 0.2s ease;
}
.p-mainNav__overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: all 0.3s;
	z-index: 50;
	pointer-events: none;
}
.p-mainNav__overlay.show{
	opacity: 1;
	pointer-events: auto;
}
.p-mainNav__close{
    display: none;
    position: relative;
    width: 0;
    height: 0;
	background: none;
	border: none;
    z-index: 60;
}
.p-mainNav__close::before,.p-mainNav__close::after{
    content: "";
    position: absolute;
    top: -40px;
    right: 178px;
    width: 5px;
    height: 30px;
    background: #fff;
} 
.p-mainNav__close::before{transform: translate(-50%,-50%) rotate(45deg);} 
.p-mainNav__close::after{transform: translate(-50%,-50%) rotate(-45deg);}
@keyframes fadeIn{from{opacity: 0;}to{opacity: 1;}}
.p-mainNav__close.show{
	display: block;
	animation: fadeIn 0.5s ease forwards;
	pointer-events: auto;
}
/*-------------------------------------------*/
/* 2.1 02.タブメニュー
/*-------------------------------------------*/
.p-header__announce{
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.p-header__announce:hover{
	transition: all 0.3s;
    opacity: 0.8;
}
.p-header__account.show{
	opacity: 1;
	pointer-events: auto;
}
.p-header__account{
	position: absolute;
	top: 80px;
	right: 10px;
	width: 300px;
	color: #333;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.34);
	z-index: 30;
	opacity: 0;
	transition: 0.2s ease;
	pointer-events: none;	
}
.p-tabAccount{width: 100%;}
.p-tabAccount__parts[type="radio"]{display: none;}
.p-tabAccount__name{
	display: inline-block;
	margin-top: 16px;
	padding: 10px 24px;
	cursor: pointer;
	margin-right: -4px;
	border-bottom: 4px solid #fff;
}
.p-tabAccount__name:hover{
	border-bottom: 4px solid #ccc;
    transition: all 0.3s;
    opacity: 0.8;
}
.p-tabAccount__content{
	position: relative;
	display: none;
	padding: 16px 16px;
	max-height: 80vh;
	min-height: 60vh;
	border-top: 1px solid #ccc;
	overflow-y: scroll;
	overflow-x: hidden;
}
#is_info:checked ~ #is_infoContent,#is_notice:checked ~ #is_noticeContent{display: block;}
#is_info:checked + .p-tabAccount__name,#is_notice:checked + .p-tabAccount__name{
	font-weight: bold;
	background: #fff;
	border-bottom: 4px solid #002349;
}
.p-tabAccount__infoLink{
    position: relative;
	display: block;
	margin-bottom: 10px;
	padding: 10px 30px 8px 14px;
	width: 100%;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}
.p-tabAccount__infoLink:hover{
	color: #333;
	background-color: #E8F1FE;
}
.p-tabAccount__infoLink::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}
.p-tabAccount__infoTitle{font-weight: bold;}
.p-tabAccount__infoName{
	display: block;
	margin: 3px 0;
    text-decoration: underline;
    color: #2990df;
}
.p-tabAccount__infoName:hover{
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.8;
}
.p-tabAccount__noticeItem{
	margin-bottom: 10px;
	padding: 10px 14px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}
.p-tabAccount__noticeItem.p-tabAccount__noticeItem--no{
	padding: 24px 0;
	text-align: center;
}
.p-tabAccount__noticeTitle{
	margin-bottom: 4px;
	padding-left: 22px;
	font-weight: bold;
}
.p-tabAccount__noticeTitle--notice{padding-left: 0;}
.p-tabAccount__noticeTitle--success{
	color: #009E67;
	background: url("../img/icon_success.svg") 0 center / 17px auto no-repeat;
}
.p-tabAccount__noticeTitle--fail{
	color: #A90000;
	background: url("../img/icon_fail.svg") 0 center / 17px auto no-repeat;
}
.p-tabAccount__noticeTitle--caution{
	color: #DE570D;
	background: url("../img/icon_caution.svg") 0 center / 17px auto no-repeat;
}
.p-tabAccount__delete{
	margin: 0 0 -16px -16px;
	padding: 12px 28px 12px 0;
	width: 300px;
	text-align: right;
	background-color: #F4F6F9;
	border-radius: 0 0 5px 5px;
	box-sizing: border-box;
}
/*-------------------------------------------*/
/* 2.1 03.右下から出てくる通知
/*-------------------------------------------*/
.p-popupNotice{
	position: fixed;
	/*right: 300px;*//*確認用*/
	right: 20px;
	bottom: 20px;
	z-index: 1000;
}
.p-popupNotice__content{
	position: relative;
	padding: 24px;
	width: 340px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.34);
}
.p-popupNotice__close{
    position: absolute;
    top: 12px;
    right: 12px;
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.p-popupNotice__close::before, .p-popupNotice__close::after{
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 1px;
    height: 25px;
    background: #333;
}
.p-popupNotice__close::before{transform: translate(-50%,-50%) rotate(45deg);}
.p-popupNotice__close::after{transform: translate(-50%,-50%) rotate(-45deg);}
.p-popupNotice__title{
	margin-bottom: 12px;
	padding-left: 26px;
	font-weight: bold;
}
.p-popupNotice__title--notice{padding-left: 0;}
.p-popupNotice__title--success{
	color: #009E67;
	background: url("../img/icon_success.svg") 0 center / 20px auto no-repeat;
}
.p-popupNotice__title--fail{
	color: #A90000;
	background: url("../img/icon_fail.svg") 0 center / 20px auto no-repeat;
}
.p-popupNotice__title--caution{
	color: #DE570D;
	background: url("../img/icon_caution.svg") 0 center / 20px auto no-repeat;
}
@media screen and (max-width:768px){.p-popupNotice{display: none;}}
/*-------------------------------------------*/ 
/* 2.2 side menu
/*-------------------------------------------*/
.p-mainNav{
	height: 100%;
	background-color: #fff;
	border-right: 1px solid #ccc;
	overflow-y: auto;
	z-index: 500;
}
@media screen and (max-width:768px){
.p-mainNav{
position: fixed;
top: 0;
right: 0;
width: 200px;
height: 100vh;
text-align: left;
color: #333;
background-color: #fff;
box-shadow: -2px 0 10px rgba(0,0,0,0.2);
transform: translateX(100%);
opacity: 0;
transition: all 0.3s;
overflow-y: auto;
z-index: 500;
pointer-events: none;
}
.p-mainNav.show{
transform: translateX(0);
opacity: 1;
pointer-events: auto;
}
}
.p-mainNav__inner{
	margin: 16px 12px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #c9c9c9;
}
.p-mainNav__reserve{margin: 16px 12px;}
.p-mainNav__menu{
	margin-bottom: 4px;
	font-weight: bold;
}
.p-mainNav__item{margin-top: 2px;}
.p-mainNav__link{
	display: block;
	padding: 8px 6px 6px 36px;
	line-height: 1.3;
	color: #333;
	border: 1px solid #fff;
	border-radius: 3px;
	box-sizing: border-box;
}
.p-mainNav__link--hotelinfo{background: url("../img/icon_hotelinfo.svg") 10px center / 9.7px auto no-repeat;}
.p-mainNav__link--library{background: url("../img/icon_library.svg") 9px center / 13.8px auto no-repeat;}
.p-mainNav__link--gallery{background: url("../img/icon_gallery.svg") 7px center / 16px auto no-repeat;}
.p-mainNav__link--price{background: url("../img/icon_price.svg") 8px center / 16.3px auto no-repeat;}
.p-mainNav__link--equipment{background: url("../img/icon_equipment.svg") 9px center / 13.3px auto no-repeat;}
.p-mainNav__link--coupon{background: url("../img/icon_coupon.svg") 9px center / 14.3px auto no-repeat;}
.p-mainNav__link--reservation{background: url("../img/icon_reservation.svg") 8px center / 15.4px auto no-repeat;}
.p-mainNav__link--sns{background: url("../img/icon_sns.svg") 9px center / 14.8px auto no-repeat;}
.p-mainNav__link--reviews{background: url("../img/icon_reviews.svg") 9px center / 14.3px auto no-repeat;}
.p-mainNav__link--request{background: url("../img/icon_request.svg") 8px center / 15px auto no-repeat;}
.p-mainNav__link--manual{background: url("../img/icon_manual.svg") 8px 12px / 16px auto no-repeat;}
.p-mainNav__link--regulations{background: url("../img/icon_regulations.svg") 9px center / 16px auto no-repeat;}
.p-mainNav__link--hotelswitch{background: url("../img/icon_switch.svg") 10px center / 18px auto no-repeat;}
.p-mainNav__link--admin{
    position: relative;
    padding-left: 36px;
}
.p-mainNav__link--admin::before{
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #EB5400;
}
.p-mainNav__link:hover{background-color: #E8F1FE; border: 1px solid #fff; color: #333; border-radius: 3px; opacity: 1;}
.p-mainNav__linkOn{background-color: #E8F1FE; border: 1px solid #7AB3E2;}
.p-mainNav__link--admin:hover{background-color: #fff4d2; border: 1px solid #fff;}
.p-mainNav__link--adminOn{background-color: #fff4d2; border: 1px solid #FFD181;}

.p-mainNav__reserveLink,
.p-mainNav__reserveLink:hover{
	display: block;
	padding: 14px 6px;
	text-align: center;
	text-wrap: pretty;
	color: #fff;
	background-color: #379C68;
	border-radius: 3px;
}
.p-mainNav__reserveLink::after{
	content: "";
	display: inline-block;
	margin-left: 8px;
	width: 13px;
	height: 13px;
	background: url("../img/icon_newwindow_light.svg") 0 0 / 12px auto no-repeat;
	vertical-align: middle;
}
/*===========================================*/

/* .3.0 - Utillity（接頭辞はu-）

/*===========================================*/
/*-------------------------------------------*/
/* 3.1 余白（margin/padding等）関連
/*-------------------------------------------*/
.u-mt4{margin-top: 4px;}
.u-mt8{margin-top: 8px;}
.u-mt12{margin-top: 12px;}
.u-mt16{margin-top: 16px;}
.u-mt20{margin-top: 20px;}
.u-mt24{margin-top: 24px;}
.u-mb20{margin-bottom: 20px;}
.u-ml16{margin-left: 16px;}
.u-pb20{padding-bottom: 20px;}

.u-w50{width: 50px !important;}
.u-w60{width: 60px !important;}
.u-w70{width: 70px !important;}
.u-w150{width: 150px !important;}
.u-wfull{width: 100% !important;}

.u-pointer{cursor: pointer;}

@media screen and (max-width:768px){
.u-w50__sp{width: 50px !important;}
.u-wfull__sp{width: 100% !important;}
}
/*-------------------------------------------*/
/* 3.2 リンク関連
/*-------------------------------------------*/
.c-link-base{text-decoration: underline;color: #0476D3;}
.c-link-base:hover{text-decoration: none;}