/* ORO CASA風のシンプルかつ高級感のあるデザイン */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}


body {
	font-family: "Zen Old Mincho", serif;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #333;
	line-height: 1.5;
  letter-spacing: 0.88;
  text-align: justify;
  text-justify: inter-ideograph; /* Edge */
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Color Theme Swatches in Hex */
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-1-hex { color: #32C8D9; }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-2-hex { color: #88E8F2; }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-3-hex { color: #F2D22E; }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-4-hex { color: #B28956; }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-5-hex { color: #F2C288; }

/* Color Theme Swatches in RGBA */
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-1-rgba { color: rgba(49, 200, 216, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-2-rgba { color: rgba(135, 231, 242, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-3-rgba { color: rgba(242, 209, 46, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-4-rgba { color: rgba(191, 144, 5, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-5-rgba { color: rgba(242, 194, 135, 1); }

/* Color Theme Swatches in HSLA */
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-1-hsla { color: hsla(185, 68, 52, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-2-hsla { color: hsla(185, 80, 74, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-3-hsla { color: hsla(50, 88, 56, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-4-hsla { color: hsla(45, 94, 38, 1); }
.yellow-colorful-travel-bag-with-straw-hat-and-sunglasses-isolated-on-blue-5-hsla { color: hsla(33, 80, 74, 1); }



h1	{ font-size: 4.0rem; font-weight: 800; font-style: normal; } 
h2	{ font-size: 3.6rem; font-weight: 700; font-style: normal; } 
h3	{ font-size: 2.8rem; font-weight: 600; font-style: normal; color: #006a85; } 
h4	{ font-size: 2.0rem; font-weight: 500; font-style: normal; } 
p 	{ font-size: 1.4rem; font-weight: 400; font-style: normal; } 
ul 	{ font-size: 1.4rem; font-weight: 400; font-style: normal; } 
/* // img */
img { width: 100%; height: auto; }

.t-center { text-align: center; }
.br{ display: none; }
.d_none { display: none; }
@media screen and (max-width: 820px) {
.br { display: block; } }

.m_auto { margin-left: auto; margin-right: auto; }
.mb_ll  { margin-bottom: 100px !important; }
.mb_l   { margin-bottom: 54px; }
.pb_ll  { padding-bottom: 80px !important; }
.mt_l   { margin-top: 50px !important; }

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #006a85;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loading__animation {
	width: 100px;
	height: 100px;
	border: 5px solid #ccc;
	border-top: 5px solid #333;
	border-radius: 50%;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.header {
	padding: 10px 30px 10px;
	background-color: #fff;
	display: flex;
	justify-content: baseline;
	position: fixed;
	align-items: center;
	z-index: 10;
	width: 100%;

	z-index: 999;
}

.fixed_pt{
	padding-top: 70px;
	background-color: #fff;
}

.header__title {
	font-weight: bold;
	margin: 0;
	font-size: 2.8rem;
}

.header__title-en {
	font-size: 1.6rem;
	font-weight: normal;
	color: #666;
	letter-spacing: 1px;
	font-family: "Lora", serif;
	padding-left: 20px;
}

.nav {
	display: flex;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	color: #fff;
}

.nav__item {
	padding: 10px ;
	font-size: 1.6rem;
	border-top: 1px dotted #f1efe5;
}
.nav__item small{
	color: #B28956;
	font-size: 1.8rem;
}
.nav__item:first-child{
	border-top: 1px dotted #f1efe5;
}

.nav__link {
	text-decoration: none;
	color: #f1efe5;
	transition: color 0.3s;
}

.nav__link:hover {
	color: #bbb;
}

.nav__toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 40px;
	height: 30px;
	cursor: pointer;
	position: fixed;
	top: 15px;
	right: 30px;
	z-index: 9999;
}

.nav__toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
	transition: transform 0.3s, opacity 0.3s;
	z-index:9999;
}
.nav__list {
	display: none;
}

.nav__list--active {
	display: block;
}

/* ハンバーガーメニューのバツ（×）アニメーション */
.nav__toggle.active span:nth-child(1) {
	transform: translateY(14px) rotate(45deg);
	background-color: #fff;
	
}

.nav__toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
	transform: translateY(-14px) rotate(-45deg);
	background-color: #fff;
}

.slider {
	position: relative;
	width: 100%;
	height: 610px;
	overflow: hidden;
	border-left: 30px solid #fff;
	border-right: 30px solid #fff;
	border: 30px solid #006a85;
}

.slider__item {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.slider__dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 100px;
}

.slider__caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	font-size: 5.6rem;
	width: 100%;
}

.slider__dot {
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background-color: #333;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s;
}

.slider__dot.active {
	background-color: #B28956;
}

i.fas{
	margin-right: 10px;
}

.nav__list {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100vh;
	background-color:#fff;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	padding-top: 100px;
	padding-left: 20px;
	color: #fff;
	z-index: 999;
	background-color: #006a85;
}

.nav__list--active {
	transform: translateX(0);
}


.maskWrap{
	width: 100%;
	position: relative;
}

.maskWrap_top{
	display: block;
	position: fixed;
	top: 60px;
	width: 100%;
	height: 110px;
	background-image: url(../img/img_mask01@2x.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 10;
}

.maskWrap_bottom{
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 110px;
	background-image: url(../img/img_mask02@2x.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 10;
}


/* home */
.home ,
.rooms ,
.access ,
.contact{
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px;
}

.rooms02{
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


.home__title ,
.concept__title,
.rooms__title ,
.access ,
.contact__title{
  font-weight: bold;
  text-align: center;
  position: relative;
  color: #333;
	margin-bottom: 25px;
}

.home__subtitle ,
.concept__subtitle,
.rooms__subtitle ,
.access__subtitle {
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  color: #888;
  margin-top: 0.3em;
  letter-spacing: 1px;
	font-family: "Lora", serif;
}

.home_gridWrap{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* 装飾ライン付きバージョン */
.home__title::after,
.concept__title::after,
.rooms__title::after ,
.access__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #B28956;
  margin: 5px auto 0;
  border-radius: 2px;
}

.home__description ,
.concept__description{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 200%;
	font-size: 1.6rem;
	letter-spacing: 0.88;
	text-align: left;
}

.home__image{
	margin-bottom: 25px;
}

/* concept */
.bg_gray{
	background-color: #efefef;
}

.concept{
	max-width: 800px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px;
}

.concept__subtitle2{
	font-size: 2.8rem;
	margin-bottom: 25px;
	margin-left: auto;
	margin-right: auto;
}

.concept_gridWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "right left";
	gap: 30px;
}

.concept_gridWrap > :first-child {
  grid-area: left;
}
.concept_gridWrap > :last-child {
  grid-area: right;
}


/* rooms */
.rooms_grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
	margin-bottom: 25px;
}

.rooms__table {
  width: 100%;
  margin: 2em auto;
  border-collapse: collapse;
  color: #333;
	font-size: 1.6rem;
  overflow: hidden;
}

.rooms__table th,
.rooms__table td {
  text-align: left;
  border-bottom: 1px solid #bbb;
	padding: 20px;
}

.rooms__table th {
  width: 35%;
  font-weight: bold;
  color: #555;
}

.rooms__table tr:last-child td,
.rooms__table tr:last-child th {
  border-bottom: none;
}

.rooms__description{
	text-align: center;
	font-weight: 600;

}


.googleMap_wrap{
width: 100%;
height: 350px;
position: relative;
}

.googleMap_wrap iframe{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50% ,-50%);

}

.access__address , .access__parking{
	text-align: left;
	font-size: 1.6rem;
}


/* contact */


.contact__form {
	display: flex;
	flex-direction: column;
}

.form-group {
	margin-bottom: 1.5em;
}

label {
	display: block;
	margin-bottom: 0.4em;
	font-weight: bold;
	color: #222;
	font-size: 1.8rem;
}

.required {
	background-color: #006a85;
	color: #fff;
	font-size: 1.4rem;
	padding: 5px 10px;
	border-radius: 3px;
	margin-right: 0.5em;
	font-weight: 400;
}

.optional {
	background-color: #B28956;
	color: #fff;
	font-size: 0.75em;
	padding: 0.2em 0.6em;
	border-radius: 3px;
	margin-right: 0.5em;
}

input,
textarea {
	width: 100%;
	padding: 0.75em;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1.6rem;
	background: #fdfdfd;
}

input::placeholder,
textarea::placeholder {
	color: #aaa;
}

textarea {
	resize: vertical;
	height: 240px;
}

button[type="submit"] {
	background: #333;
	color: #fff;
	padding: 20px 40px;
	border: none;
	border-radius: 4px;
	font-size: 1.8rem;
	cursor: pointer;
	transition: background 0.3s ease;
	width: 100%;
	text-align: center;
}

button[type="submit"]:hover {
	background: #555;
}

@media (max-width: 600px) {
	.contact {
		padding: 1em;
	}
}

.section {
	padding: 60px 20px;
	text-align: center;
	background-color: #fff;
	margin: 20px;
}

.footer {
	text-align: center;
	padding: 20px 20px;
	background-color: #006a85;
	color: #fff;
;

}









