@charset "utf-8";
.addeventbuttonlist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  padding-right: 12px;
  display: flex;
  justify-content: flex-end;
}
.buttonlistbox {
  height: 32px;
  margin-bottom: 12px;
  position: relative;
}
.buttonlistbox.none {
  display: none;
}
.buttonlistbox:not(:first-child) {
  margin-left: 5px;
}
.addeventbuttonlist .eventbutton {
  font-size: 12px;
  border: 1px solid;
  border-bottom: 3px solid;
  border-radius: 5px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0.9));
  background-color: #fff;
  padding: 5px 8px;
  transition: background-color 0.3s;
}
.addeventbuttonlist .eventbutton:active {
  border-bottom-width: 1px;
  outline: none;
  transform: translateY(2px);
  transition: border-bottom-width 0.1s, transform 0.1s;
}
.addeventbuttonlist .eventbutton.photomovie {
  border-color: #313131;
  color: #313131;
}
.addeventbuttonlist .eventbutton.photomovie:hover,
.addeventbuttonlist .eventbutton.photomovie:focus {
  background-color: #313131;
}
.addeventbuttonlist .eventbutton.panorama {
  border-color: #6183c2;
  color: #6183c2;
}
.addeventbuttonlist .eventbutton.panorama:hover,
.addeventbuttonlist .eventbutton.panorama:focus {
  background-color: #6183c2;
}
.addeventbuttonlist .eventbutton.vrpanorama {
  border-color: #6183c2;
  color: #6183c2;
}
.addeventbuttonlist .eventbutton.vrpanorama:hover,
.addeventbuttonlist .eventbutton.vrpanorama:focus {
  background-color: #6183c2;
}
.addeventbuttonlist .eventbutton.comment {
  border-color: #cc002f;
  color: #cc002f;
}
.addeventbuttonlist .eventbutton.comment:hover,
.addeventbuttonlist .eventbutton.comment:focus {
  background-color: #cc002f;
}
.tipbox {
	position: absolute;
	top: 0;
  right: 0;
  left: auto;
	text-align: left;
	width: 372px;
	z-index: 1;
	display: none;
	opacity: 0;
	transition: top 0.3s, opacity 0.3s;
}
.tipdecoration{
	position: absolute;
	right: 0;
	left: 75%;
	top: calc(100% - 10px);
	content: "";
	display: block;
	background: #cc0033;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	margin: auto;
	cursor: default;
	z-index: 1;
}
.tiptitle {
  display: flex;
  position: relative;
  border-radius: 5px 5px 0 0;
  background: #cc0033;
  padding: 5px 10px;
  cursor: default;
  z-index: 2;
}
.tiptitle p {
  color: #fff;
  font-size: 12px;
  padding-right: 33px;
}
.tipbox span {
  display: block;
}
.tiptitle::after {
  content: "";
  display: block;
  position: absolute;
  top: -17px;
  right: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: url(/static/20250626-164204021/images/tip_icon_001.png) no-repeat center
      center,
    #fff;
  border: 3px solid #cc0033;
}
.tipcomment .tiptitle::after {
  background: url(/static/20250626-164204021/images/tip_icon_002.png) no-repeat center
      center,
    #fff;
}
.tiplistbox {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  border-right: 1px solid #cc0033;
  border-left: 1px solid #cc0033;
  background: #fff;
  overflow: hidden;
  overflow-y: auto;
  z-index: 2;
  cursor: default;
}
.tiplistbox .tiplist:not(:first-child) {
  border-top: 1px solid #cc0033;
}
.tiplist {
  padding: 5px 10px;
  cursor: pointer;
}
.tiplist:hover,
.tiplist:focus {
  background: #fffff1;
}
.linkbox {
  text-align: right;
  margin-top: 5px;
}
.linkbox.vrpanoramabox {
  position: relative;
}
.vricon {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 17px;
  border: 1px solid #938953;
  border-radius: 5px;
  color: #938953;
  text-align: center;
  font-size: 11px;
  line-height: 17px;
}
.listlink {
  text-decoration: none;
  color: #0633ac;
  background: #e6eaf4;
  border-radius: 3px;
  font-size: 11px;
  padding: 2px 6px;
  display: inline-block;
  margin-right: 0;
}
.listlink::after {
  content: "";
  display: inline-block;
  width: 6.5px;
  height: 6.5px;
  border-top: 1px solid #0633ac;
  border-right: 1px solid #0633ac;
  transform: rotate(45deg);
  margin-bottom: 1px;
}
.listlink:hover {
  color: #0633ac;
}
.listlink:focus {
  outline: none;
}
.buttonbox {
  position: relative;
  border: 1px solid #cc0033;
  border-top: none;
  border-radius: 0 0 5px 5px;
  background: #fff;
  padding: 7px 0 6px 0;
  text-align: center;
  cursor: default;
  z-index: 2;
}
.buttonbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c9c9c9;
}
.close-button {
  position: relative;
  left: 118px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0.9));
  background-color: #fff;
  font-size: 12px;
  color: #313131;
  padding: 1% 10%;
  box-shadow: 0 0 0 1px #b4b4b4;
  transition: background-color 0.3s;
}
.close-button:hover,
.close-button:focus{
	background-color: #898989;
}
.commentbox{
	display: flex;
  margin-top: 5px;
}
.commentbox img{
	width: 60px;
	height: 60px;
	flex: 0 0 auto;
	margin-right: 5px;
	border-radius: 45px;
}
.comment-right{
	width: 100%;
	position: relative;
}
.tiplist p{
	color: #000;
	font-size: 10px;
	line-height: normal;
}
.tiplist p.tiplist-companyname {
	font-size: 12px;
}
.tiplist p span{
	display: block;
	user-select: auto;
}
.tiplist a{
	text-decoration:none;
}
.comment-right p{
	line-height: 14px;
  background-color: #eee;
  padding: 4px;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.comment-right p span{
	display: inline;
	user-select: none;
}
.tiplistbox:focus{
	outline: none;
}
