@charset “utf-8”;

main {
	width: 100%;
}

/*NAV AREA*/
.nav_content address {
	margin: 20px 0;
	color: #FFF;
}

/*KEY AREA*/
.sec-top-key {
	/*width: 100%;
	height: 745px;*/
	/*background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url("../img/bg_img.svg") repeat-x #FFFFFF top center ;*/
	/*background: url("../img/cafe/top-img-002.jpeg") top center no-repeat #ffffff;*/
	/*position: relative;*/
}
.key-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.key-text {
	/*position: absolute;
	top: 200px;
	right: 25%;
	text-align: center;
	color: #ffffff;
	font-weight: bold;*/
	display: none;
}
@media screen and (max-width: 480px) {
	
}

/*ABOUT AREA*/
.about-img {
	/*background: url("../img/cafe/top-img-001.png") top right no-repeat #ffffff;*/
}

/*MENU AREA*/

.menu-tab {
	display: flex;
    justify-content: center;
    flex-wrap: nowrap;
	list-style: none;
	margin-bottom: 50px;
}
.menu-tab li {
	padding: 10px;
	margin-left: 50px;
	position: relative;
}
.menu-tab li::before {
	background: #356E89;
    content: '';
    width: 50px;
    height: 2px;
    position: absolute;
    left: 30%;
    bottom: 0;
    margin: 0 auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.menu-tab li:hover::before {
	transform-origin: left top;
    transform: scale(1, 1);
}
.menu-tab li::after {
	height: 30px;
    left: -17px;
    content: "";
    width: 1px;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%) skewX(-30deg);
    -ms-transform: translateY(-50%) skewX(-30deg);
    -webkit-transform: translateY(-50%) skewX(-30deg);
    transform: translateY(-50%) skewX(-30deg);
    background-color: #000;
}
.menu-tab li:first-child::after {
    content: none;
}

.menu-scroll-area .menu-scene {
	text-align: center;
	margin-bottom: 50px;
}
.menu-scroll-area .menu-text {
	text-align: center;
}
/*.menu-img {
	margin: 50px auto;
    text-align: center;
    display: block;
}*/
.menu-img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0;
}
.menu-img img {
	width: 30%;
	margin-bottom: 15px;
}
.menu-list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin: 50px 0;
}
.menu-list img {
	width: 48%;
}
/*エリアの表示非表示と形状*/
.m-area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}
/*areaにis-activeというクラスがついた時の形状*/
.m-area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media screen and (max-width: 480px) {
	.menu-tab {
		display: inline;
		text-align: center;
		
	}
	.menu-tab li {
		margin: 0 0 15px;
		padding: 0 0 5px;
	}
	.menu-tab li::after {
		content: none;
	}
	.menu-tab li::before {
		width: 15%;
		left: 42%;
	}
	.menu-img {
		width: 100%;
	}
	
}


/*RENTAL ROOM AREA*/

section.sec-top-rentalroom {
	background-color: #EDEDED;
}
.rental-info dl {
	display: flex;
	margin-bottom: 10px;
}
.rental-info dt {
	padding: 10px;
    background-color: #ccc;
    border-radius: 3px;
    margin-right: 10px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rental-info dd {
	padding: 10px;
    background-color: #fefaf0;
    border-radius: 3px;
    width: 200px;
}
.tr-link-btn {
	display: flex;
    justify-content: center;
    margin: 50px 0;
}
.tr-link-btn a {
	width: 70%;
    height: 60px;
    background: #356E89;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
	color: #FFF;
    font-size: 1.1rem;
    font-weight: bold;
}
@media screen and (max-width: 480px) {
	.tr-link-btn a {
		width: 100%;
	}
	
}
/*YOUTUBE AREA*/
section.sec-top-youtube {
	display: flex;
    justify-content: center;
}
section.sec-top-youtube iframe {
	width: 560px;
	height: 315px;
}
@media screen and (max-width: 480px) {
	section.sec-top-youtube iframe {
	width: 90%;
    object-fit: contain;
    height: 208px;
}	
}

/*INSTAGRAM AREA*/
.ig_media {
	display: flex;
    justify-content: center;
}

/*PAGE TOP BTN*/
.page-top {
    position: fixed;
    right: 70px;
    bottom: 40px;
    z-index: 9;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.page-top.show {
      opacity: 1;
      pointer-events: visible;
      visibility: visible; 
}
.page-top.absolute {
      top: -94px;
      position: absolute;
      bottom: inherit; 
}
.page-top a {
      width: 44px;
      height: 54px;
      display: block;
}

/*ACCESS AREA*/
section.sec-top-access {
	background-color: #356E89;
}
.access-contents {
	display: flex;
	justify-content: space-between;
}
.access-text {
	width: 50%;
}
.access-text ul {
	list-style: none;
    padding: 30px 0;
    border-bottom: 1px dotted #ccc;
}
.access-text li {
	color: #FFF;
}
.access-text li.nos {
	font-size: 1.2rem;
    margin-bottom: 11px;
}
.access-text li span {
	color: #ccc;
    font-size: 0.8rem;
    padding-right: 10px;
    display: inline-block;
    width: 75px;
    text-align: right;
}
.access-text li.tr-link {
    text-align: right;
}
.access-text li.tr-link a {
	width: 180px;
    text-decoration: none;
    text-align: left;
    display: inline-block;
    padding: 10px 0px 20px;
    position: relative;
    color: #FFF;
}
.access-text li.tr-link a::after {
	content: "";
    position: absolute;
    left: 0px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #FFF #FFF transparent;
    -moz-transform: skewX(47deg);
    -ms-transform: skewX(47deg);
    -webkit-transform: skewX(47deg);
    transform: skewX(47deg);
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    bottom: 10px;
    padding: 5.5px 80px;
    -moz-transition: padding-right 0.3s;
    -o-transition: padding-right 0.3s;
    -webkit-transition: padding-right 0.3s;
    transition: padding-right 0.3s;
}
.map {
	width: 40%;
    height: 400px;
    background: #FFF;
}
@media screen and (max-width: 480px) {
	.access-contents {
		/*display: inline;*/
		flex-direction: column-reverse;
	}
	.access-text {
		width: 100%;
	}
	.map {
		width: 100%;
	}
}


/*TANOM ROOM*/
main.rentalroom {
	background-color: #F2972C;
}
main.rentalroom .sec-contents {
	padding-top: 30px;
}
.sec-room-top .sec-title {
	width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}
.sec-room-top .sec-title p {
	width: 100%;
}
.rental-text {
	margin-right: 100px;
}
.rental-text p {
	margin-bottom: 15px;
}
.rental-img img {
	width: 100%;
}
.room-img {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-bottom: 30px;
}
.room-img img {
	width: calc(100% / 3);
}
.rental-info .info-cont {
	background: #fefaf0;
    padding: 70px;
    list-style: none;
    border-radius: 3px;
	margin-bottom: 30px;
}
.info-cont ul {
	list-style: none;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
	.sec-room-top .sec-title {
		width: 90%;
	}
	.rental-info .info-cont {
		padding: 30px;
}
}

/*RULES*/
.rules-textarea {
	text-align: center;
}
textarea.rules-text { 
	width: 100%;
    min-height: 500px;
    overflow: auto;
    padding: 5%;
}

/*AGREE*/
.agree-check {
	text-align: center;
	margin: 30px 0;
}
.for-qr {
	width: 80%;
    height: 60px;
    background: #633A11;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto;
}
.pointer-events-none {
	opacity: 0.5;
}

/*PRIVACY POLICY*/
div.rules-textarea,
ul.pp-list,
div.toku-list {
	background: #fefaf0;
    padding: 70px;
    list-style: none;
    border-radius: 3px;
}
ul.pp-list li {
	margin-bottom: 30px;
}
div.rules-textarea h3,
ul.pp-list h3,
div.toku-list h3 {
	text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    border-bottom: 1px solid #F2972C;
    padding: 0 0 30px;
}
ul.pp-list li span.pp-title {
	display: block;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 23px;
    position: relative;
    letter-spacing: 2px;
}
ul.pp-list li span.pp-title::before {
	background-color: #F2972C;
    border-radius: 2px;
    bottom: -9px;
    content: "";
    display: inline-block;
    height: 3px;
    left: 3%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 45px;
}
ul.pp-list li ul {
    margin-top: 10px;
    margin-left: 30px;
}
ul.pp-list li ul li {
	margin-bottom: 5px;
}


/*TOKUSYOUHOU*/
.toku-list dl {
	display: flex;
	margin-bottom: 10px;
}
.toku-list dt {
	padding: 10px;
    background-color: #F2972C;
    border-radius: 3px;
    margin-right: 10px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toku-list dd {
	padding: 10px;
}


@media screen and (max-width: 480px) {
	.for-qr {
		width: 90%;
	}
	div.rules-textarea,
	ul.pp-list,
	div.toku-list {
		padding: 30px;
	}
	ul.pp-list li span.pp-title::before {
		left: 6%;
	}
	.toku-list dl {
		display: inline;
		margin-bottom: 20px;
	}
	.toku-list dt {
		width: 100%;
	}
}


/*RESERVATION PAGE*/
.qr-area {
	width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    border: 1px solid;
}
.qr-area img {
	width: 200px;
}
.qr-area p {
	margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
	.qr-area {
		width: 90%;
	}
}