/* ==========================================================================
   Footer
   Mobile-first + CSS Nesting
   ========================================================================== */
.as-footer {
	background: #efefef;
}


/* --------------------------------------------------------------------------
   Upper Section
   -------------------------------------------------------------------------- */

.as-footer__upper {
	display: flex;
	flex-direction: column;
	padding: 40px 20px;
	background: #efefef;
	align-items: start;
	width: 100%;

	@media (min-width: 769px) {
		display: grid;
		place-items: center;
		grid-template-columns: 1fr 1fr;
		max-width: calc((480px + 160px) * 2);
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	& > div {
		@media (min-width: 769px) {
			width: 100%;
			height: 100%;
			padding: 40px 80px;
		}
	}
	& > div:nth-of-type(2) {
		margin-top: 40px;
		border-top: 1px solid #CCC;
		padding-top: 40px;
		width: 100%;
		@media (min-width: 769px) {
			margin-top: 0;
			border-left: 1px solid #CCC;
			border-top: none;
			width: auto;
		}
	}
}

/* --------------------------------------------------------------------------
   Booking
   -------------------------------------------------------------------------- */

.as-footer__booking {
	height: 100%;
	width: 100%;
}

.as-footer__booking-heading {
	font-family: "Ten Mincho", serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin: 0 0 24px;
}

.as-footer__booking-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	border-radius: 80px;
	background: #00053b;
	color: #fff;
	font-family: "Ten Mincho", serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: opacity 0.2s ease;

	@media (min-width: 769px) {
		max-width: 480px;
		width: 100%;
		height: 80px;
	}
}

@media (hover: hover) {
	.as-footer__booking-btn:hover {
		opacity: var(--as-hover-opacity);
		color: #fff;
	}
}

.as-footer__booking-tel {
	font-family: "Shippori Mincho", serif;
	margin-top: 12px;
	display: block;
	@media (min-width: 769px) {
		margin-top: 24px;
		font-size: 14px;
	}

	a {
		font-size: 13px;
		color: #333;
		text-decoration: none;
		span {
			font-size: 23px;
		}
	}
}

/* --------------------------------------------------------------------------
   Upper Divider & HR
   -------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------
   Connect
   -------------------------------------------------------------------------- */

.as-footer__connect {
	text-align: left;
}

.as-footer__connect-heading {
	font-family: "Ten Mincho", serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin: 0 0 24px;

	@media (min-width: 769px) {
		font-size: 18px;
	}
}

.as-footer__connect-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	@media (min-width: 769px) {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 28px 54px;
	}
}

/* --------------------------------------------------------------------------
   SNS
   -------------------------------------------------------------------------- */

.as-footer__connect-sub-heading {
	font-family: "Ten Mincho", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	color: #333;
}

.as-footer__sns-links {
	display: flex;
	gap: 16px;
	justify-content: start;
	@media (min-width: 769px) {
		gap: 20px;
		justify-content: flex-start;
	}
}

.as-footer__sns-links img {
	width: 48px;
	height: 48px;
}

/* --------------------------------------------------------------------------
   Newsletter
   -------------------------------------------------------------------------- */

.as-footer__newsletter {
	max-width: 309px;
}

.as-footer__newsletter-heading {
	font-family: "Ten Mincho", serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	color: #333;
}

.as-footer__newsletter-desc {
	font-family: "Shippori Mincho", serif;
	font-size: 12px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 16px;
	max-width: 400px;
}

/* --------------------------------------------------------------------------
   Newsletter — Gravity Forms Override
   -------------------------------------------------------------------------- */

.as-footer__newsletter .gform_wrapper {
	margin: 0;
	padding: 0;
	position: relative;
}

.as-footer__newsletter .gform_wrapper .gform_body {
	margin: 0;
}

.as-footer__newsletter .gform_wrapper .gform_fields {
	display: flex !important;
	gap: 0 !important;
}

.as-footer__newsletter .gform_wrapper .gfield {
	flex: auto;
}
.as-footer__newsletter .gform_wrapper .gfield.newsletter_email {
	width: stretch;
}

.as-footer__newsletter .gform_wrapper input[type="email"],
.as-footer__newsletter .gform_wrapper input[type="text"] {
	font-family: "Ten Mincho", serif;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 1.2px;
	color: #646464;
	border: none;
	border-radius: 0;
	padding: 12px 72px 12px 12px;
	background: #fff;
	height: 40px;
	width: 100%;
	box-sizing: border-box;
}

.as-footer__newsletter .gform_wrapper .gform_footer,
.as-footer__newsletter .gform_wrapper .gform_page_footer {
	position: absolute;
	right: 0;
	top: 0;
	margin: 0;
	padding: 0;
}

.as-footer__newsletter .gform_wrapper input[type="submit"] {
	font-family: "Ten Mincho", serif;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 1.2px;
	background: #00053b;
	border: none;
	border-radius: 0;
	color: #fff;
	width: 60px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__newsletter .gform_wrapper input[type="submit"]:hover {
		opacity: var(--as-hover-opacity);
	}
}

/* --------------------------------------------------------------------------
   Lower Section
   -------------------------------------------------------------------------- */

.as-footer__lower {
	padding: 40px 20px 24px;
	background: #00053b;
	color: #fff;
	@media (min-width: 769px) {
		padding: 60px 80px 32px;
	}
	& > div {
		@media (min-width: 769px) {
			display: flex;
			flex-direction: row;
			width: 100%;
		}
	}
	a {
		color: #fff;
		@media (hover: hover) {
			&:hover {
				color: #fff;
			}
		}
	}


}

/* --------------------------------------------------------------------------
   Info
   -------------------------------------------------------------------------- */
.as-footer__info {
	margin-bottom: 60px;
	@media (min-width: 769px) {
		margin-right: 120px;
		margin-bottom: 0;
	}
}

.as-footer__info-logo {
	margin-bottom: 40px;
}

.as-footer__info-logo img {
	height: 60px;
	width: auto;
}

.as-footer__info-address {
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 4px;
}

.as-footer__info-map {
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.2s ease;
	display: inline-block;
	margin-bottom: 16px;
}

@media (hover: hover) {
	.as-footer__info-map:hover {
		opacity: var(--as-hover-opacity);
	}
}

.as-footer__info-contact {
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	line-height: 1.8;
	dl {
		display: grid;
		grid-template-columns: 50px auto;
		dt {
			font-weight: 400;
			text-transform: capitalize;
		}
		dd {
			margin: 0;
		}
	}
}

.as-footer__info-contact a {
	text-decoration: none;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__info-contact a:hover {
		opacity: var(--as-hover-opacity);
	}
}

/* --------------------------------------------------------------------------
   Nav Group
   -------------------------------------------------------------------------- */

.as-footer__nav-group {
	display: block;
	@media (min-width: 769px) {
		display: flex;
		flex-direction: row;
		gap: 60px;
	}
}

/* --------------------------------------------------------------------------
   Main Nav
   -------------------------------------------------------------------------- */

.as-footer__main-nav {
	margin-bottom: 40px;
}

.as-footer__main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	li {
		&:not(:first-child) {
			margin-top: 28px;
		}
	}
}

.as-footer__main-nav a {
	font-family: "Shippori Mincho", serif;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__main-nav a:hover {
		opacity: var(--as-hover-opacity);
	}
}

/* --------------------------------------------------------------------------
   Lower Social
   -------------------------------------------------------------------------- */

.as-footer__lower-social {
	display: flex;
	gap: 12px;
	margin-top: 40px;
}

.as-footer__lower-social a {
	display: block;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__lower-social a:hover {
		opacity: var(--as-hover-opacity);
	}
}

.as-footer__lower-social img {
	display: block;
	width: 30px;
	height: 30px;
}

/* --------------------------------------------------------------------------
   Sub Nav
   -------------------------------------------------------------------------- */

.as-footer__sub-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;

	@media (min-width: 769px) {
		display: flex;
		flex-direction: column;
	}
}

.as-footer__sub-nav a {
	font-family: "Shippori Mincho", serif;
	font-size: 12px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__sub-nav a:hover {
		opacity: var(--as-hover-opacity);
	}
}


/* --------------------------------------------------------------------------
   Brands
   -------------------------------------------------------------------------- */

.as-footer__brands {
	text-align: center;
	border-top: 1px solid #35385F;
	margin-top: 60px;
	padding-top: 60px;
	@media (min-width: 769px) {
		height: 100%;
		margin-top: 0;
		padding-top: 0;
		margin-left: 80px;
		padding-left: 80px;
		border-top: none;
		border-left: 1px solid #35385F;
	}
}

.as-footer__brands-heading {
	font-family: "Venetian301-DmBTRegular", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin: 0 0 48px;
}

.as-footer__brands-list {
	& > a:not(:first-child) {
		margin-top: 45px;
	}
}

.as-footer__brands-list a {
	display: block;
	transition: opacity 0.2s ease;
}

@media (hover: hover) {
	.as-footer__brands-list a:hover {
		opacity: var(--as-hover-opacity);
	}
}

.as-footer__brands-list img {
	height: auto;
	width: 150px;
}

/* --------------------------------------------------------------------------
   Copyright
   -------------------------------------------------------------------------- */

.as-footer__copyright {
	font-family: "Shippori Mincho", serif;
	font-size: 12px;
	margin: 60px 0 0;
	text-align: center;

	@media (min-width: 769px) {
		grid-column: 1 / -1;
		margin: 120px 0 0;
		text-align: right;
	}
}

/* --------------------------------------------------------------------------
   Japanese page heading overrides
   Counters html[lang="ja"] h2 { font-size: 20px!important; } in style.css
   -------------------------------------------------------------------------- */

html[lang="ja"] .as-footer__booking-heading {
	font-size: 16px !important;
}

html[lang="ja"] .as-footer__connect-heading {
	font-size: 16px !important;
}

@media (min-width: 769px) {
	html[lang="ja"] .as-footer__connect-heading {
		font-size: 18px !important;
	}
}

html[lang="ja"] .as-footer__brands-heading {
	font-size: 14px !important;
}
