/* CSS Document */
.equal-box {
    flex: 1 0 0;
  }
  
  .ptl_userModule{
  	position: relative;
  	z-index: 4800;
  }
  
.ptl_userModule .dropdown-menu > li > a {
	padding-top:5px;
	padding-bottom:5px;
}

.ptl_BtnSm{
	font-size: 11px !important;
}

.ptl_btnUser {
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  width: 26px; 
  height: 26px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 12px !important;
  text-decoration: none !important;
  position: relative; 
}

.ptl_btnUser2{
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  width: 36px; 
  height: 36px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 16px !important;
  text-decoration: none !important;
  position: relative; 
}

.ptl_btnUser::after,
.ptl_btnUser2::after {
  content: '\f107'; 
  font-family: 'FontAwesome'; 
  font-size: 8px;
  color: #fff;

  position: absolute;
  right: -5px;
  bottom: 0;

  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ptl_btnUser2-pickup::before {
  content: '\f111'; 
  font-family: 'FontAwesome'; 
  font-size: 7px;
  color: #fff;

  position: absolute;
  right: -5px;
  top: 0;

  width: 10px;
  height: 10px;
  background-color: #f57842;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media screen and (max-width: 480px) {

	.ptl_BtnSm2{
		font-size: 11px !important;
	}
	.ptl_btnUser2{
	  width: 26px; 
	  height: 26px;
	  font-size: 12px !important;
	}
}

.ptl_w2em{
	width:2em;
}
.ptl_w3em{
	width:3em;
}
.ptl_w4em{
	width:4em;
}

.ptl_kiyakuBOX{
	max-height: 450px;
	overflow-y: auto;
}

@media screen and (max-width: 480px) {
	.ptl_kiyakuBOX{
		max-height:none;
	}
}


span.fm_req_pt {
    color: #0099FF;
    font-size: 80%;
}

.ptl_progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap!important;
    justify-content: space-between;
	
}
.ptl_progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    color: #999999;
    font-size:12px;
	line-height: 1.4
}

@media (min-width: 760px) {
	.ptl_progressbar li {
		font-size:14px;
	}
}


.ptl_progressbar li:before {
    display: block;
    width: 21px;
    height: 21px;
    margin: 7px auto 10px auto;
    content: '';
    text-align: center;
    border-radius: 50%;
    background-color: #F5F5F5;
	border:3px solid #ddd;
}
.ptl_progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 16px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #F5F5F5;
}
.ptl_progressbar li:first-child:after {
    content: none;
}
.ptl_progressbar li.active,
.ptl_progressbar li.complete{
    color: #2196f3;
}
.ptl_progressbar li.active:before{
    background-color: #F5F5F5;
	border-color: #2196f3;
}
.ptl_progressbar li.complete:before {
    background-color: #2196f3;
	border-color: #2196f3;
}
.ptl_progressbar li.active:after,
.ptl_progressbar li.complete:after {
    background-color: #2196f3;
}

.bgPink{
	background:#FEEEFF;
}


.tbl1 {
	border:none;
	border-top:1px solid #d6d6d6;
}



.ptl_inputForm input[type="text"],
.ptl_inputForm select
{
	padding:3px 6px;
	margin-bottom: 5px;
	/*
	border-radius: 6px;
	border:1px solid #aaa;
	*/
}

.ptl_inputForm th{
	vertical-align:top;
	background:none;
}

.ptl_inputForm th,
.ptl_inputForm td
{
	padding:15px;
	border:none;
	border-bottom:1px solid #ccc;
	word-break: break-all;
}


.ptl_name-input {
  display: flex;
  gap: 2rem; 
  flex-wrap: wrap; 
}

.ptl_name-block {
  flex: 1; 
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
	.ptl_name-input {
	flex-direction: column;
	gap: 0.5rem;
	}
}


.ptl_name-block input {
  width: calc(100% - 2em);
}

.ptl_customMenu-group{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1em;
	position: relative;
}



.ptl_customMenu-group .ptl_customMenuNonDataBox{
  grid-column: 1 / -1;
  width: 100%;
}
.ptl_customMenu-group.saving::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7); /* 半透明の白 */
	z-index: 10;
	pointer-events: all; /* クリックをブロック */
}

/* アイコン用の要素を別に上乗せ */
.ptl_customMenu-group.saving::before {
	content: "\f110"; /* Font Awesome 4 の fa-spinner */
	font-family: FontAwesome;
	font-size: 2em;
	color: #666;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
	pointer-events: none; /* アイコン自体はクリック無効でOK */
	animation: spin 1s linear infinite;
}

.ptl_customMenu-group .ptl_failSavingMsg{
position: absolute;
right:0;
top:0;
font-size:10px;
display: none;
}


/* 回転アニメーション */
@keyframes spin {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to   { transform: translate(-50%, -50%) rotate(360deg); }
}


.ptl_customMenu-group a:not(.btn){
	border-radius: 8px;
	padding: 0.8em 1.2em;
	text-decoration: none!important;
	color:#333;
	animation-duration: 2s;
	transition: all 0.3s ease-out;
	font-size: min(16px, 1.4vw);
	line-height: 1.2;
}


@media screen and (max-width: 900px) {
	.ptl_customMenu-group{
		grid-template-columns: repeat(4, 1fr);
	}
	.ptl_customMenu-group a{
		font-size: min(14.08px, 1.6vw);

	}
}

@media screen and (max-width: 768px) {
	.ptl_customMenu-group{
		grid-template-columns: repeat(3, 1fr);
	}
	.ptl_customMenu-group a{
		font-size: min(14.08px, 2vw);
	}
}

@media screen and (max-width: 480px) {
	.ptl_customMenu-group{
		grid-template-columns: repeat(2, 1fr);
	}
	.ptl_customMenu-group a{
		font-size: min(16.08px, 3.4vw);
		padding: 0;
		/*display: flex;
		align-items: center;*/
	}
}



.ptl_customMenu-group a img{
	filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.2))
}

.ptl_customMenu-group a:not(.btn):hover {
	background: #fff;
}

.ptl_customMenu-group a:hover img{
  animation: bounce 0.6s ease;
}


.ptl_cmFlg01::after{
	position: absolute;
	top:-0.8em;
	left:50%;
	transform: translateX(-50%);
	font-size:min(10px, 0.9vw);
	line-height: 1.0;
	background:#ff0000;
	padding:3px;
	color:#fff;
	content:"NEW";
}
.ptl_cmFlg02::after{
	position: absolute;
	top:-0.8em;
	left:50%;
	transform: translateX(-50%);
	font-size:min(10px, 0.9vw);
	line-height: 1.0;
	background:#005be7;
	padding:3px;
	color:#fff;
	content:"UP!!";
}
.ptl_cmFlg03::after{
	position: absolute;
	top:-0.8em;
	left:50%;
	transform: translateX(-50%);
	font-size:min(10px, 0.9vw);
	line-height: 1.0;
	background:#007365;
	padding:3px;
	color:#fff;
	content:"INFO";
}
.ptl_cmFlg04::after{
	position: absolute;
	top:-0.8em;
	left:50%;
	transform: translateX(-50%);
	font-size:min(10px, 0.9vw);
	line-height: 1.0;
	background:#ff17a6;
	padding:3px;
	color:#fff;
	content:"専用";
}
.ptl_cmFlg05::after{
	position: absolute;
	top:-0.8em;
	left:50%;
	transform: translateX(-50%) scaleX(0.8);
	font-size:min(9px, 0.9vw);
	line-height: 1.0;
	background:#666666;
	padding:3px;
	color:#fff;
	content:"キャンペーン";
	white-space: nowrap;
}



@media screen and (max-width: 900px) {
	.ptl_cmFlg01::after,
	.ptl_cmFlg02::after,
	.ptl_cmFlg03::after,
	.ptl_cmFlg04::after,
	.ptl_cmFlg05::after{
		font-size:min(10px, 1.2vw);
	}
}
@media screen and (max-width: 768px) {
	.ptl_cmFlg01::after,
	.ptl_cmFlg02::after,
	.ptl_cmFlg03::after,
	.ptl_cmFlg04::after,
	.ptl_cmFlg05::after{
		font-size:min(10px, 1.6vw);
	}
}
@media screen and (max-width: 480px) {
	.ptl_cmFlg01::after,
	.ptl_cmFlg02::after,
	.ptl_cmFlg03::after,
	.ptl_cmFlg04::after,
	.ptl_cmFlg05::after{
		font-size:min(10px, 2.5vw);
	}
	
	
	.ptl_customMenu-groupBig a img{
		max-width: 80px;
	}
	
}





.ptl_btn-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 30%));
  gap: 0.5em 2.66%;
  box-sizing: border-box;
  justify-content: center;
}

@media (max-width: 760px) {
	.ptl_btn-group {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	 }
}



.ptl_btn-group2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 48%));
  gap: 0.5em 4%;
  box-sizing: border-box;
  justify-content: center;
}

@media (max-width: 480px) {
	.ptl_btn-group2 {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
	  gap: 0.5em 4%;
	  box-sizing: border-box;
	  justify-content: center;
	}
}



.ptl_radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
  box-sizing: border-box;
}

.ptl_radio-group100 {
  grid-template-columns:  1fr;;
  width: 100%;
}


.ptl_radio-label {
  display: flex;
  align-items: center;
  gap: 0.2em;
  cursor: pointer;
  padding: 0.2em 0.4em;
  border: 1px solid #ccc;
  /* border-radius: 6px; */
  transition: background-color 0.3s, border-color 0.3s;
  box-sizing: border-box;
}



.ptl_radio-label:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

.ptl_radio-label input[type="radio"],
.ptl_radio-label input[type="checkbox"]
{
  accent-color: #007bff;
}

.ptl_inputForm input:disabled {
	background: #eee;
}

.ptl_form_btn{
	width:max(25%,150px);
	margin: 0 5px;
}
@media (max-width: 760px) {
	.ptl_form_btn{
		width:max(40%,150px);
		margin: 0 5px;
	}
}

.ptl_customMenu{
	background: #fff;
 	position: absolute;
	width: 100%;
	max-height:190px;
	overflow: auto;
}


.ptl_inputForm input[type=text] {
  transition: 0.3s ease;
}
.ptl_inputForm input[type=text]:focus {
  box-shadow: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff, 0 0 0 2px #00bfff;
}

.remodal .BtnSave,
.remodal .BtnCancel{
	min-width:25%;
}


@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}


.sortable-ghost {
  opacity: 0.4;
  border: 2px dashed #aaa;
}
.sortable-chosen {
  background-color: #fdf7e3;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.ptl_badge_circle{
  display: inline-flex;
  justify-content: center;    /* 横方向中央 */
  align-items: center;        /* 縦方向中央 */
  background-color: #d9534f;     /* 背景色 */
  color: white;              /* 文字色 */
  border-radius: 50%;        /* 丸くする */
  padding: 0.4em 0.6em;      /* サイズ調整 */
  font-size: 0.6rem;        /* フォントサイズ */
  font-weight: bold;         /* 太字 */
  text-align: center;
  line-height: 1;
  min-width: 2em;            /* 最小幅で丸く */
  aspect-ratio: 1 / 1;       /* 完全な円にする */
}

.navPagingKen.ptl_pageingKen li span.act,
.navPagingKen.ptl_pageingKen li a.act{
	background: rgba(0,91,172,1.00);
	color:#fff!important;
}

.navPagingKen li a,.navPagingKen li span.act{
	width:auto;
	padding: 8px 20px 6px
}

.navPagingKen li a.disabled,.navPagingKen li a.act.disabled{
	pointer-events: none;
	cursor: not-allowed;
    opacity: 0.4;
}

.navPagingKen li:first-child a,
.navPagingKen li:first-child span{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.navPagingKen li:last-child a,
.navPagingKen li:last-child span{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}


.navPagingKen {
	padding-left:0;
}


.ptl_facFavSelector{
	font-size:14px;
  border: 1px solid #ccc; 
  border-radius: 4px;  
}


.topNewLineup{
	background:#F2F2F2;
	
}
.topNewLineup a,
.topFacilityLineup a{
	text-decoration:none;
}
.nLUtit{
	font-size:14.88px;
	position: relative;
	height: 44px;
	overflow: hidden;
	line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 最大2行まで表示 */
  text-overflow: ellipsis;
}



@media screen and (max-width: 480px) {
	.nLUtit{
		font-size:14.88px;
		position: relative;
		height: 66px;
		overflow: hidden;
		line-height: 22px;
	}
}

.ptl_boxNewMark{
	position: absolute;
	top:-15px;
	left:3px;
}

.topFacilityLineup a .ptl_faciG,
.topFacilityLineup a:hover .ptl_faciG
{
	color: #fff;
}

.topFacilityLineup .newImageTip{
  aspect-ratio: 278 / 111; 
  width: 100%; 
}

.topFacilityLineup .newImageTip img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.bg-maintenance {
  background-color: #6c757d; /* グレー */
}

.bg-update {
  background-color: #0d6efd; /* ブルー */
}

.bg-exhibition {
  background-color: #6f42c1; /* パープル */
}

.bg-seminar {
  background-color: #6610f2; /* インディゴ */
}

.bg-event {
  background-color: #fd7e14; /* オレンジ */
}

.bg-survey {
  background-color: #20c997; /* シアン */
}

.bg-product {
  background-color: #198754; /* グリーン */
}

.bg-press-release {
  background-color: #084298; /* ネイビーブルー */
}

.bg-important {
  background-color: #dc3545; /* レッド */
}

.bg-other {
  background-color: #adb5bd; /* ライトグレー */
}

.ptl_cateTip{
	display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
  padding: 5px 10px;
  line-height: 1;
  font-size: 13px;
  color: #fff;
   border-radius: 9999px; /* または 50px や 50% でもOK */
   min-width: 9em;
   text-align: center;
}

.ptl_newsbox a{
	text-decoration: none;
}

.ptl_newsbox a:hover{
	text-decoration: underline;

}
.ptl_newsbox li{
transition: all 0.3s ease;
}
.ptl_newsbox li:not(.nonLink):hover {
	background: rgb(249, 249, 249);
}


.ptl_newsDate{
	width:9ch;
}


.ctv_siboBtn{
	flex:1 0 calc(33% - 5px);
	max-width: calc(33% - 5px);
	display: flex;
	justify-content: left;
	align-items: center;	
	padding: 0.2em 5px 0.1em;
	line-height: 1.3;
	color:#474747!important;
	text-decoration: none!important;
	border:2px solid #bbbbbb;
	background: #fff;
	border-radius: 5px;
	height:3em;
}

a.ctv_siboBtn.disabled{
	pointer-events: none;
	opacity: 0.3;
}

@media screen and (max-width: 760px) {
	a.ctv_siboBtn{
		flex:1 0 calc(50% - 5px)!important;
		max-width: calc(50% - 5px)!important;
	}
}

a.ctv_siboBtn.ctv_siboBtn14{
	max-width: calc(14.28% - 5px);
}

a.ctv_siboBtn.ctv_siboBtn20{
	max-width: calc(20% - 5px);
}
a.ctv_siboBtn.ctv_siboBtn25{
	max-width: calc(25% - 5px);
}
a.ctv_siboBtn.ctv_siboBtn33{
	max-width: calc(33% - 5px);
}
a.ctv_siboBtn.ctv_siboBtn50{
	max-width: calc(50% - 5px);
}

a.ctv_siboBtn .g2Box{
	overflow:hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
a.ctv_siboBtn::before{
    font-family: FontAwesome;
    content: "\f10c";
	margin-right: 5px;
	color: #999;
}
a.ctv_siboBtn:hover{
	border:2px solid #2196f3;
	background: #eee;
}

a.ctv_siboBtn.act{
	border:2px solid #2196f3;
	background: #fff;
	color:#2196f3!important;
	font-weight: bold;
	pointer-events:none;
	cursor: default;
}
a.ctv_siboBtn.act::before{
    font-family: FontAwesome;
    content: "\f058";
	margin-right: 5px;
	color: #2196f3;
}


.ptl_data{
	transition: all 0.3s ease;
	border:1px solid #eee;
	background:#fff;
	border-radius: 5px;
}

.ptl_data:hover{
	background:#f3f3f3;
}

.ptl_data_none{
	border:2px dashed #eee;
	background: #fff;
}

.kr5t{
border-radius: 5px 5px 0 0;
}
.kr5b{
border-radius:  0 0 5px 5px;
}

.bbNone{
	border-bottom:none;
}
.btNone{
	border-top:none;
}

.ptl_toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.ptl_toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ptl_toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.ptl_toggle-slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.ptl_toggle-switch input:checked + .ptl_toggle-slider {
  background-color: #2196f3;
}

.ptl_toggle-switch input:checked + .ptl_toggle-slider::before {
  transform: translateX(16px);
}

.toggle-row li:hover{
	cursor: pointer;
}


.ptl_pMenuAlert{
    position: sticky;
    bottom: 0;
    background: #eee;
}

.ptl_pMenuBtnBox{
    position: sticky;
    bottom: 0;
}


.ptl_boxShadowInset{
box-shadow: inset 0 0 10px rgba(255, 150, 50, 0.4);
}

.curPointer:hover{
	cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.curPointer:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

.ptl_searchBox{
	position: relative;
}

.ptl_searchBox .ptl_radio-label {
  padding: 0.4em 0.4em;
	background:#fff;
}

.ptl_searchBox  .ptl_radio-group{
	gap:0.5em;
}

.ptl_searchBtnBox{
	position: sticky;
	bottom:0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


.ptl_sort-header th.sortable {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.ptl_sort-header th.sortable i.fa {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.ptl_sort-header th.sortable.active i.fa {
  opacity: 1;
}

.sort-header th.active i.fa {
  opacity: 1;
}


.ptl_moni_grid-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 常に3列 */
    border-left: 1px solid #ccc;
  }

  .ptl_moni_grid-cell {
    padding: 12px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

.ptl_moni_grid-cell:nth-child(n+4){
    border-top: none;
  }

  .ptl_moni_grid-title {
    margin-bottom: 6px;
  }

  .ptl_moni_grid-value {
    font-size: 2em;
  }

  @media (max-width: 480px) {
    .ptl_moni_grid-table {
      grid-template-columns: 1fr;
    }

	.ptl_moni_grid-cell:nth-child(n+2){
		border-top: none;
	  }
  }


.ptl_top_bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 領域をカバーしつつ縦横比を維持 */
  z-index: 0;
}

.ptl_logoLux{
	width: min(500px, 75%);
	height: auto;
	
}