/* html */
html {
  scroll-behavior: smooth;
}

/* body */
body {
  color: #444444;
  background-image: url('images/oceanview.png');
  background-attachment: fixed;
}

/* hyperlink */
a:link {
  color: #448844;
}
a:visited {
  color: #88AA88;
}
a:hover {
  color: #CCCCCC;
}
a:active {
  color: #FFAAAA;
}

h1 {
  font-size:6pt;
  font-weight: normal;
}

/* header footer */
#header {
  z-index: 4;
  text-align: center;
  /* background-color: #FFFFFF; */
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
}

#header2 {
  z-index: 4;
  text-align: center;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

footer {
  z-index: 3;
  text-align: center;
  background-color: #FFFFFF;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

/* header logo and switch link */
#hdimglang {
  display: flex;
  justify-content: center;
  position: relative;
}

/* switch language */
#swtlang {
  position: absolute;
  right: 0;
  font-weight: bold;
  padding-top: 10px;
  padding-right: 10px;
}
/* navi link display */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  width: 20%;
}
nav ul li.rooms {
  width: 40%;
  padding: 5px;
  margin: 10px;
}
nav ul li.tambuli {
  background-color: #DDFFDD;
  border: 3px outset #FFDDEE;
}
nav ul li.eight {
  background-color: #FFDDFF;
  border: 3px outset #EEFFDD;
}

/* slide show */
.slide-container {
  z-index: 2;
  background-color: #FFFFFF;
  position: absolute;
  top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 360px;
  overflow: hidden;
  flex-direction: row;
}
.slide-wrapper {
  display: flex;
  flex-direction: row;
  animation: slide-flow 20s infinite linear 1s both;
}
.slide{
  width: 480px;
  object-fit: cover;
  border: 1px solid #ddd;
}
@keyframes slide-flow {
     0% {transform: translateY(0);}
 100% {transform: translateX(-150%);}
}

#main {
  z-index: 1;
  position: relative;
  display: block;
  margin: auto;
  text-align: left;
  top: 450px;
  width: 80%;
  padding-bottom: 30px;
}

#main2 {
  z-index: 1;
  position: relative;
  display: block;
  margin: auto;
  text-align: left;
  /* top: 100px; */
  width: 80%;
  padding-bottom: 30px;
}

#c8, #d3, #inq, .grey {
  width: 100%;
}

#banner {
  width: 80%;
}

.ceo {
  float: right;
}

.figcap {
  font-size: 8pt;
}

.room {
  font-size: 18pt;
  font-weight: bold;
}

.pricefont {
  font-size: 14pt;
  font-weight: bold;
}

.priceboard {
  margin: 50px;
  padding: 5px 20px 5px 20px;
  background-color: #EEEEEE;
  border: 5px outset #FFCCCC;
  outline: 5px solid #FFFFCC;
  box-shadow: 0 0 0 18px #DDDDFF;
  border-radius: 6px;
  /* font: bold 1rem sans-serif; */
  outline-offset: 5px;

}
.varies {
  color: #FF8888;
}

.process {
  font-size: 14pt;
  font-weight: bold;
}

.proctit {
  font-weight: bold;
  font-style: italic;
}

.tbl {
	border-collapse: collapse;
  text-align: left;
  margin: 100px auto;
	width: 70%;
}

.tbl td, .tbl th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px 20px;
}

/*テーブル内の左側*/
.tbl th {
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #E2E2E3;	/*背景色*/
}

/*テーブル１行目に入った見出し部分*/
.tbl th.midashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
.tbl td {
	padding: 10px;
	background-color: #FFFFFF;	/*背景色*/
}

/* ゴミ
<figure class="scale"><img src="images/10.jpg" alt="The room in Tower C, 8th floor" id="c8" /></figure>
.scale img:hover {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
}
    ゴミ */
