*, *::after, *::before {
	box-sizing: border-box;
}
html, body {
	width: 100%;
	overflow-x: hidden;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	color: #141417;
}
.menu__link {
	font-family: "Century Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
h2 {
	font-family: "Century Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
a {
	text-decoration: none;
	color: #fff;
	outline: none;
	-moz-transition: .2s ease-in-out;
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
a:hover, a:focus {
	color: #2d2d30;
}
.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}
/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}
.icon--inline {
	display: inline-block;
	width: 1em;
	height: 100%;
	margin: 0 0.25em 0 0;
}
/* Header */
.codrops-header {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	pointer-events: none;
	background-color: #fff;
}
.codrops-header__title {
	font-size: 1.5em;
	margin: 0;
	padding: 0 1em;
}
/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: 0.85em;
	border: 2px solid;
}
.codrops-links::after {
	content: '';
	height: 100%;
	width: 2px;
	background: currentColor;
	position: absolute;
	left: 50%;
	margin-left: -1px;
	top: 0;
}
.codrops-icon {
	pointer-events: visible;
	display: inline-block;
	padding: 0.6em;
}
/* Buttons */
.btn {
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	color: inherit;
}
.btn:focus {
	outline: none;
}
.btn--trigger {
	margin: 1em;
	display: block;
	white-space: nowrap;
}
.btn--default, .btn--trigger::before {
	font-weight: bold;
	border: 2px solid;
	text-align: center;
	text-indent: 0;
	display: inline-block;
	line-height: 1.7;
}
.btn--trigger::before {
	content: 'Press';
	width: 4em;
	height: 2em;
	margin: 0 0.75em;
}
.btn--trigger:active::before {
	content: 'Ouch!';
}
.btn--default {
	padding: 0 1em;
	margin: 2vh 0 0;
}
.btn--tool {
	display: block;
	margin: 1em 0;
	font-size: 1.3em;
	color: #8a7c78;
}
.btn--menu {
	position: absolute;
	top: 3vw;
	left: 3vw;
	color: #000;
	pointer-events: visible;
}
.btn--close {
	position: absolute;
	top: 3vw;
	left: 3vw;
	font-size: 0.75em;
	z-index: 100;
}
/* Menu */
.menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 320px;
	z-index: 100;
}
.menu_js .menu {
	pointer-events: none;
}
.menu_js .menu--open {
	pointer-events: visible;
}
.menu__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	list-style-type: none;
	padding: 3em;
	margin: 0;
	background: #000;
	overflow: hidden;
}
.menu__item {
	padding: 1em 0.15em;
}
.menu_js .menu__item {
	transform: translate3d(-13em, 0, 0);
	transition: transform 0s 0.4s;
}
.btn--close {
	opacity: 0;
}
.menu--open .menu__item, .menu--open .btn--close {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.4s 0.135s, transform 0.4s 0.135s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menu--open .menu__item:nth-child(2) {
	transition-delay: 0.165s;
}
.menu--open .menu__item:nth-child(3) {
	transition-delay: 0.195s;
}
.menu--open .menu__item:nth-child(4) {
	transition-delay: 0.225s;
}
.menu .menu__link {
	font-size: 2vw;
	color: #fff;
	font-weight: 400;
}
.menu .menu__link:hover, .menu .menu__link:focus {
	outline: none;
	color: #ccc;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.menu {
		width: 100%;
		text-align: center;
	}
}
/* Contents */

.contents {
	background: #fff;
	color: #333;
}
.contents a {
	color: #c5c149;
}
.contents a:hover, .container a:focus {
	color: #fcf652;
}
@media screen and (max-width: 56.250em) {
.btn--tool {
	font-size: 3vw;
}
.media__toolbar {
	padding: 3.5vw;
}
}

@media screen and (max-width: 50em) {
.codrops-header__title,  .codrops-header__tagline {
	width: 100%;
	padding: 0 0;
}
.contents {
	font-size: 1em;
	margin: 0.5em 1em 0.25em 0;
}
.content--full {
	min-height: 0;
}
.content__title {
	font-size: 2em;
}
.content__title--medium {
	font-size: 1.75em;
}
.content__title--small {
	font-size: 1.15em;
}
.content__title--half {
	width: 100%;
}
.content__title--right {
	padding: 0 5vw;
}
.content__title--left {
	margin-left: 0;
}
.flexy--row {
	flex-direction: column;
}
.form__title,  .form__section {
	font-size: 0.85em;
}
.triggers {
	width: 100%;
	border: 0;
	padding: 0;
	font-size: 0.85em;
}
.modal {
	font-size: 0.85em;
}
.menu .menu__link {
	font-size: 2em;
}
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}
.top-visual {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.col-left {
	width: 50%;
	float: left;
	background-color: #fff;
	height: 100vh;
}
.col-left h1 {
	width: 100%;
	text-align: center;
	padding: 40vh 0 0;
}
.col-left h1 img {
	width: 40%;
}
.col-left h1 p {
	width: 70%;
	font-family: "Century Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	margin: 0 auto;
	padding: 1em 0;
	font-size: .5em;
	font-weight: 600;
	line-height: 1.5em;
	color: #000;
}
.col-right {
	width: 50%;
	float: right;
	height: 100vh;
	background: url(http://hotel-rosablanca.com/loop/loop_img.jpg) center top;
	background-size: cover;
}
.concept {
	width: 100%;
	text-align: center;
	padding: 6em 0;
	background-color: #000;
	color: #fff;
	letter-spacing: 5px;
	line-height: 2em;
}
.concept h2 {
	font-size: 3em;
	line-height: 2em;
}
.concept p {
	width: 50%;
	margin: 0 auto;
	font-size: 1em;
	line-height: 2em;
}
.concept-banner {
	width: 100%;
}
.concept-banner img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.top-visual {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.col-left {
		width: 100%;
		float: none;
		background-color: #fff;
		height: 100%;
	}
	.col-left h1 {
		padding: 25% 0;
	}
	.col-right {
		width: 100%;
		float: none;
		height: 100%;
		padding-top: 75%;
	}
	.concept {
		padding: 4em 0;
	}
	.concept h2 {
		font-size: 2em;
	}
	.concept p {
		width: 90%;
		margin: 0 auto;
		font-size: .75em;
		line-height: 2em;
	}
}
/**********************
シェフのプロフィール
**********************/
.profile_bg {
	width: 100%;
	height: 100%;
	background-color: #fafafa;
}
.profile {
	width: 100%;
	text-align: center;
	padding: 6em 0;
	color: #000;
	letter-spacing: 5px;
}
.profile h2 {
	font-size: 3em;
	line-height: 2em;
}
.chef_image_l {
	width: 70%;
	margin: 0 auto 8em;
	text-align: left;
	position: relative;
}
.chef_image_r {
	width: 70%;
	margin: 0 auto 8em;
	text-align: right;
	position: relative;
}
.chef_image_l img, .chef_image_r img {
	width: 55%;
}
.image_profile_l,.image_profile_r {
	width: 55%;
	padding: 3em 2em;
	background-color: #fff;
	box-shadow: 0px 0px 20px -6px rgba(0,0,0,.6);
	font-size: 1em;
	text-align: left;
}
.image_profile_l h3,.image_profile_r h3 {
	font-size: 1.25em;
	padding-bottom: 1em;
}
.image_profile_l p,.image_profile_r p {
	font-size: 1em;
	padding: .5em 0;
}
.image_profile_l {
	position: absolute;
	bottom: 10vh;
	left: 0;
}
.image_profile_r {
	position: absolute;
	bottom: 10vh;
	right: 0;
}
.image_profile_r span {
	font-weight: 600;
}
@media screen and (max-width: 768px) {
	.profile {
		padding: 4em 0;
	}
	.chef_image_l {
		width: 98%;
		text-align: center;
	}
	.chef_image_r {
		width: 98%;
		text-align: center;
	}
	.chef_image_l img, .chef_image_r img {
		width: 90%;
	}
	.image_profile_l,.image_profile_r {
		width: 98%;
		margin: 0 auto;
	}
	.image_profile_l {
		position: static;
	}
	.image_profile_r {
		position: static;
	}
	.profile h2 {
		font-size: 2em;
		line-height: 2em;
	}
}

/**********************
アクアテラス・ミルマンダ
**********************/
.aquaterrace {
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding: 6em 0;
	color: #000;
	letter-spacing: 5px;
}
.aquaterrace h2 {
	font-size: 3em;
	line-height: 2em;
}
.aquaterrace-banner {
	width: 100%;
}
.aquaterrace-banner img {
	width: 100%;
}
.milmanda {
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding: 6em 0;
	color: #000;
	letter-spacing: 5px;
}
.milmanda h2 {
	font-size: 3em;
	line-height: 2em;
}
.milmanda-banner {
	width: 100%;
}
.milmanda-banner img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.aquaterrace {
		width: 100%;
		padding: 4em 0;
	}
	.aquaterrace h2 {
		font-size: 2em;
		line-height: 2em;
	}
	.milmanda h2 {
		font-size: 2em;
	}
	.milmanda {
		padding: 4em 0;
	}
}
/**********************
コンタクト
**********************/
.contact {
	width: 100%;
	text-align: center;
	padding: 6em 0;
	background-color: #000;
	color: #fff;
	letter-spacing: 5px;
}
.contact a {
	color: #fff;
	text-decoration: none;
}
.contact h2 {
	font-size: 3em;
	line-height: 2em;
}
.contact-area {
	width: 80%;
	margin: 0 auto;
}
.contact-left {
	width: 60%;
	float: left;
	padding-right: 3em;
}
#loop_map {
	width: 100%;
	height: 43vh;
}
.contact-right {
	width: 40%;
	float: right;
	text-align: left;
}
.contact-text li {
	padding: .5em 0;
}
.contact-text span {
	font-weight: 600;
}
.tel_number {
	color: #fff !important;
	text-decoration: none !important;
}
@media screen and (max-width: 768px) {
	.contact {
		padding: 4em 0;
	}
	.contact-area {
		width: 90%;
		margin: 0 auto;
	}
	.contact-left {
		width: 100%;
		float: none;
		padding-right: 0;
		padding-top: 2em;
	}
	.contact-right {
		width: 100%;
		float: none;
		padding-top: 2em;
		text-align: center;
	}
	.contact h2 {
		font-size: 1.5em;
	}
	.contact-text li {
		font-size: .75em;
	}
}
/**********************
トップへ戻る
**********************/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: #fff;
    text-decoration: none;
    width: 100px;
    padding: 1em;
    text-align: center;
    display: block;
    border-radius: 5px;
	box-shadow: 0px 0px 20px -6px rgba(0,0,0,.6);
}
#page-top a:hover {
    text-decoration: none;
	background: #fff;
}
#page-top a:visited {
	color: #fff;
}
@media screen and (max-width: 768px) {
	#page-top a {
		width: 60px;
	}
}
footer {
	width: 100%;
	background-color: #fff;
	padding: 6em 0;
	text-align: center;
	font-size: 1em;
}
footer a {
	color: #000;
	text-decoration: none;
}