/* ============================================================
   Top Page Styles
   ============================================================ */

/* ============================================================
   Section Common
   ============================================================ */
.section {
	padding: 100px 0;
}

.section__title {
	position: relative;
	font-size: 60px;
	line-height: 1;
	width: fit-content;
	margin: 0 auto 80px;
}

.section__title::before {
	content: attr(data-en);
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(224, 66, 114, 0.2);
	font-size: 70px;
	font-style: italic;
	width: 100vw;
	text-align: center;
}

.section__title::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
	margin-top: 15px;
}

.section__desc {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 80px;
	line-height: 1.2;
}

.section__desc .font-mincho {
	font-size: 2.5vw;
	color: var(--color-accent-light);
	margin: 0 10px;
}

/* ============================================================
   Main Visual
   ============================================================ */
.mv {
	position: relative;
	background: var(--color-bg);
	height: 78vh;
}

/* Search Box Wrap */
.mv__search-wrap {
	position: absolute;
	top: 50%;
	left: 5vw;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(188, 188, 188, 0.75);
	padding: 30px;
	border-radius: 20px;
	max-width: 35vw;
	min-width: 450px;
}

.mv__heading {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	color: var(--color-white);
	margin-bottom: 5px;
}

.mv__subheading {
	font-size: 16px;
	display: block;
	margin: 0.5rem 0 4rem;
}

.mv__catchcopy {
	font-family: var(--font-mincho);
	font-size: max(3.1vw, 38px);
}

/* Search Box */
.search-box {
	background: rgba(255, 255, 255, 0.75);
	border-radius: 12px;
	padding: 24px 28px 28px;
}

.search-box__title {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 20px;
}

.search-box__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.search-box__input,
.search-box__select {
	width: 100%;
	padding: 14px 16px;
	font-size: 1.4rem;
	background: var(--color-white);
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
}

.search-box__input::placeholder {
	color: #999;
}

.search-box__input:focus,
.search-box__select:focus {
	border-color: var(--color-primary);
}

.search-box__input--date {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 18px;
	padding-right: 44px;
}

.search-box__select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 40px;
}

.search-box__btn {
	width: 100%;
	padding: 14px;
	font-size: 1.5rem;
	font-weight: bold;
	background: var(--color-accent);
	color: var(--color-white);
	border: 2px solid var(--color-accent);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	margin-top: 4px;
}

.search-box__btn:hover {
	background: var(--color-white);
	color: var(--color-accent);
}

/* MV Slider */
.mv__slider {
	width: 100%;
	height: 100%;
}

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

.mv__slider .slick-list,
.mv__slider .slick-track {
	height: 100% !important;
}

/* Slide content */
.mv__slide-content {
	width: 50vw;
	position: absolute;
	top: 55%;
	right: 5vw;
	padding: 15px 30px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

.mv__slide-place {
	display: none;
	align-items: center;
	gap: 5px;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.mv__slide-title {
	font-size: 1.2vw;
	color: var(--color-white);
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 1.5;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.mv__slide-title .font-mincho {
	font-size: 2.5vw;
	font-weight: bold;
}

.mv__slide-btn {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 15px;
	margin-left: auto;
	padding: 7px 10px;
	border-bottom: 2px solid var(--color-white);
	color: var(--color-white);
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

/* Slider dots */
.mv__slider .slick-dots {
	width: 240px;
	bottom: 3% !important;
	right: 30vw;
	transform: translateX(50%);
}

.mv__slider .slick-dots li {
	width: 70px;
}

.mv__slider .slick-dots li button {
	width: 100%;
}

.mv__slider .slick-dots li button::before {
	content: '';
	width: 100%;
	height: 5px;
	background: #ccc;
	opacity: 0.8;
}

.mv__slider .slick-dots li.slick-active button::before {
	background: var(--color-white);
	opacity: 1;
}

/* Slider arrows */
.mv__slider .slick-arrow {
	width: 1.5vw;
	height: auto;
	position: absolute;
	bottom: 5%;
	z-index: 1;
}

.mv__slider .slick-prev {
	right: calc(30.5vw + 120px);
}

.mv__slider .slick-next {
	right: calc(28vw - 120px);
}

/* ============================================================
   Theme Section
   ============================================================ */
.theme {
	padding: 100px 0;
}

.theme__list {
	padding: 0 30px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 30px;
	margin-bottom: 80px;
}

.theme__item {
	width: calc((100% - 60px) / 3);
	position: relative;
}

.theme__item::after {
	content: '';
	width: 40%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.theme__item:nth-child(1)::after { background: #cfe4ed; }
.theme__item:nth-child(2)::after { background: #fdefcd; }
.theme__item:nth-child(3)::after { background: #d4ebd0; }

.theme__item a {
	display: block;
}

.theme__comment {
	padding: 20px 0 10px;
	font-size: 18px;
	font-weight: bold;
	color: #4b4b4b;
}

.theme__image {
	width: 85%;
	position: relative;
}

.theme__image img {
	width: 100%;
	height: auto;
	display: block;
}

.theme__name {
	font-family: var(--font-mincho);
	font-size: 2vw;
	padding: 10px;
	background: var(--color-white);
	position: absolute;
	top: 20%;
	right: 0;
	transform: translate(20%, -50%);
	line-height: 1;
}

.theme__tags {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translate(-5%, -20%);
}

.theme__tag {
	font-size: 18px;
	font-weight: 500;
	padding: 2px 15px;
	background: var(--color-white);
	width: fit-content;
	margin-bottom: 10px;
}

.theme__tag:last-child {
	margin-bottom: 0;
}

/* Keywords */
.theme__keywords {
	text-align: center;
}

.theme__keywords-title {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	margin-bottom: 20px;
}

.theme__keywords-title h4 {
	font-size: 25px;
	font-weight: 500;
}

.theme__keywords-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.theme__keyword {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	padding: 5px 15px;
	border: 2px solid #828282;
	box-sizing: border-box;
	border-radius: 25px;
	color: #828282;
	text-align: center;
	transition: border-color 0.2s, color 0.2s;
}

.theme__keyword:hover {
	border-color: var(--color-accent-light);
	color: var(--color-accent-light);
	opacity: 0.7;
}

/* ============================================================
   Recommend Section
   ============================================================ */
.recommend {
	background: #cfe4ed;
	padding: 100px 0;
}

.recommend__slider {
	position: relative;
}

.recommend__slider .slick-list {
	overflow: visible !important;
}

.recommend__slide {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}

.recommend__slide-image {
	position: relative;
	width: calc((100% - 15px) / 2);
	flex-shrink: 0;
}

.recommend__slide-content {
	position: relative;
	width: calc((100% - 15px) / 2);
	flex-shrink: 0;
}

/* Inner slider */
.recommend__inner-slider {
	position: relative;
	margin: 0;
}

.recommend__inner-slider .slick-list {
	overflow: hidden !important;
}

.recommend__inner-slide {
	position: relative;
	margin: 0;
}

.recommend__inner-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.recommend__place {
	position: absolute;
	bottom: 5%;
	right: 0;
	padding: 0 20px;
	background: rgba(255, 255, 255, 0.7);
}

.recommend__place p {
	font-size: 20px;
	line-height: 1.3;
}

/* Thumbnail */
.recommend__thumbnail {
	position: absolute;
	top: 5%;
	left: 0;
	z-index: 1;
}

.recommend__thumbnail-title {
	width: fit-content;
	font-size: 30px;
	padding: 5px;
	background: var(--color-white);
	margin-bottom: 10px;
	line-height: 1.3;
}

/* Country title with flag */
.recommend__country-title {
	position: relative;
	width: fit-content;
	margin-bottom: 20px;
}

.recommend__country-title h2 {
	font-family: "Meiryo", sans-serif;
	font-size: 3vw;
	z-index: 5;
	line-height: 1;
}

.recommend__flag {
	position: absolute !important;
	top: -30%;
	right: -20%;
	width: 5vw !important;
	max-width: 80px;
	height: auto !important;
	z-index: -1;
	object-fit: contain;
}

/* Ema decoration */
.recommend__ema {
	position: absolute !important;
	top: -3%;
	right: 0;
	z-index: -1;
}

.recommend__ema img {
	width: 6vw !important;
	max-width: 100px;
	height: auto !important;
}

/* Letter */
.recommend__letter {
	position: relative;
	padding: 30px;
	background: #fff9da;
	margin-bottom: 15px;
}

.recommend__letter::before {
	content: '';
	background: url(../images/top/letter-tape.png) center / cover;
	width: 150px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.recommend__letter p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.recommend__letter .highlight {
	color: #dc143c;
}

/* Detail box */
.recommend__detail {
	padding: 20px;
	background: var(--color-white);
}

.recommend__detail-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.2;
}

.recommend__labels {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	column-gap: 25px;
	margin-bottom: 10px;
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.recommend__label {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}

.recommend__label img {
	width: 20px;
	height: auto;
}

.recommend__label span {
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}

.recommend__price {
	font-size: 30px;
	font-weight: bold;
	color: var(--color-accent);
	line-height: 1.2;
	margin-bottom: 10px;
}

.recommend__price span {
	font-size: 16px;
}

.recommend__hashtags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.recommend__hashtag {
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}

/* Slider dots */
.recommend__slider .slick-dots {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	column-gap: 30px;
	bottom: -5%;
}

.recommend__slider .slick-dots li.slick-active button::before {
	background: var(--color-white);
	opacity: 1;
}

.recommend__slider .slick-dots li button::before {
	font-size: 18px;
	opacity: 1;
	border: 2px solid var(--color-white);
	border-radius: 50%;
	color: transparent;
}

/* Slider arrows */
.recommend__slider .slick-arrow {
	width: 2vw;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
	cursor: pointer;
}

.recommend__slider .slick-prev {
	left: -5%;
}

.recommend__slider .slick-next {
	right: -5%;
}

/* Inner slider dots */
.recommend__inner-slider .slick-dots {
	display: block;
	width: fit-content;
	bottom: 1%;
	left: 1%;
}

.recommend__inner-slider .slick-dots li {
	display: block;
	margin-bottom: 5px;
}

/* ============================================================
   Area Section
   ============================================================ */
.area {
	padding: 100px 0;
}

.area__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.area__item {
	width: calc((100% - 40px) / 3);
	position: relative;
}

.area__image {
	width: 100%;
	height: auto;
	display: block;
	-webkit-mask-image: url(../images/top/area_black.png);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url(../images/top/area_black.png);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.area__overlay {
	display: flex;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 8%;
	left: 5%;
	z-index: 2;
	text-shadow: 1px 1px 4px #000;
}

.area__name {
	font-size: 30px;
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.2;
}

.area__name-en {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-white);
}

/* ============================================================
   Feature Section
   ============================================================ */
.feature {
	background: #fff9da;
	padding: 100px 0;
}

.feature__list {
	display: flex;
	gap: 26px;
	margin-bottom: 50px;
}

.feature__item {
	width: calc((100% - 52px) / 3);
	position: relative;
}

.feature__item img {
	width: 100%;
	margin-bottom: 5px;
}

.feature__category {
	position: absolute;
	top: 5%;
	left: 5%;
	padding: 5px 10px;
	border: 1px solid var(--color-white);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.feature__content {
	padding: 0 20px;
}

.feature__date {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.feature__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

/* More button */
.btn-more {
	display: flex;
	justify-content: flex-end;
}

.btn-more a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 25px;
	background: var(--color-accent);
	color: var(--color-white);
	font-weight: 500;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.btn-more a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #eee;
	transition: width 0.3s;
	z-index: -1;
}

.btn-more a:hover {
	color: #313131;
	opacity: 1;
}

.btn-more a:hover::before {
	width: 100%;
}

.btn-more a:hover svg path {
	stroke: #313131;
}

/* ============================================================
   About Section
   ============================================================ */
.about {
	text-align: center;
	position: relative;
	padding: 100px 0;
}

.about__content {
	padding: 100px 0 200px;
}

.about__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 50px;
}

.about__heading .font-mincho {
	font-size: 40px;
	color: var(--color-accent-light);
}

.about__text {
	margin-bottom: 50px;
}

.about__text p {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

/* Background decorations */
.about__bg {
	position: absolute;
	opacity: 0.5;
	z-index: -1;
}

.about__bg--1 { top: 14%; left: 33%; width: 12vw; }
.about__bg--2 { top: 10%; left: 60%; width: 7vw; }
.about__bg--3 { top: 30%; left: 55%; width: 30vw; }
.about__bg--4 { top: 35%; left: 15%; width: 10vw; }
.about__bg--5 { top: 50%; left: 25%; width: 20vw; }
.about__bg--6 { top: 78%; right: 16%; width: 5vw; }

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
	background: var(--color-bg);
	padding: 100px 0;
}

.contact__box {
	position: relative;
	padding: 6rem 8rem 5rem 27rem;
}

.contact__box::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--color-white);
	border: 2px solid #000;
	border-radius: 15px;
	z-index: -1;
}

.contact__box::after {
	content: '';
	position: absolute;
	bottom: -9%;
	right: -3%;
	width: 100%;
	height: 100%;
	background: #d4ebd0;
	border: 2px solid #000;
	border-radius: 15px;
	z-index: -2;
}

.contact__title {
	font-family: var(--font-mincho);
	font-size: 55px;
	line-height: 1.5;
}

.contact__subtitle {
	text-align: right;
	font-size: 18px;
	font-weight: 500;
}

.contact__btn-wrap {
	background: url(https://www.tabione.com/assets/images/new_top/sumaho.png);
	border-radius: 10px;
	margin: 20px 0 5px;
}

.contact__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 30px;
	background: rgba(221, 83, 85, 0.6);
	color: var(--color-white);
	font-weight: bold;
	font-size: 20px;
	border-radius: 10px;
}

.contact__hours {
	text-align: center;
}

.contact__image {
	position: absolute;
}

.contact__image--1 {
	top: 0;
	left: 0;
	width: 15vw;
	transform: translate(0%, 30%) rotate(5deg);
}

.contact__image--2 {
	bottom: 0;
	left: 0;
	width: 15vw;
	transform: translate(-5%, -15%) rotate(-5deg);
}

/* ============================================================
   Responsive (Mobile)
   ============================================================ */
@media screen and (max-width: 768px) {
	/* Section */
	.section {
		padding: 50px 0;
	}

	.section__title {
		font-size: 40px;
		line-height: 0.5;
		margin-bottom: 50px;
	}

	.section__title::before {
		top: -20px;
		font-size: 40px;
	}

	.section__desc {
		font-size: 18px;
		margin-bottom: 50px;
	}

	.section__desc .font-mincho {
		font-size: 35px;
	}

	/* MV */
	.mv {
		height: 80vh;
	}

	.mv__search-wrap {
		top: 5vw;
		transform: none;
		padding: 0;
		max-width: 90vw;
		min-width: auto;
		background: none;
	}

	.mv__heading {
		text-shadow: 1px 1px 4px #333;
	}

	.mv__subheading {
		font-size: 3.6vw;
	}

	.mv__catchcopy {
		font-size: 9.3vw;
		color: var(--color-white);
		text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
	}

	.search-box {
		max-width: 100%;
		padding: 20px;
		border-radius: 16px;
		position: absolute;
		top: 70vh;
		border: 1px solid #ccc;
	}

	.search-box__title {
		font-size: 1.6rem;
		margin-bottom: 24px;
	}

	.search-box__form {
		gap: 16px;
	}

	.search-box__input,
	.search-box__select {
		padding: 16px 18px;
		font-size: 1.5rem;
		border-radius: 6px;
	}

	.search-box__btn {
		padding: 16px;
		font-size: 1.6rem;
		border-radius: 6px;
		margin-top: 8px;
	}

	.mv__slide-content {
		width: 80vw;
		top: 50%;
		right: 0;
		padding: 20px;
		background: rgba(251, 106, 106, 0.7);
		border-radius: 0;
	}

	.mv__slide-title {
		font-size: 16px;
		text-shadow: none;
	}

	.mv__slide-title .font-mincho {
		font-size: 18px;
	}

	.mv__slide-btn {
		padding: 5px 10px;
		border-bottom-width: 1px;
		font-size: 14px;
		text-shadow: none;
	}

	.mv__slider .slick-dots {
		bottom: 10% !important;
		right: 50%;
		transform: translateX(50%);
	}

	.mv__slider .slick-dots li {
		width: 50px;
	}

	.mv__slider .slick-dots li button::before {
		height: 3px;
	}

	.mv__slider .slick-arrow {
		width: 5vw;
		bottom: 13%;
	}

	.mv__slider .slick-prev {
		left: 15%;
		right: auto;
	}

	.mv__slider .slick-next {
		right: 15%;
	}

	/* Theme */
	.theme {
		margin-top: 350px;
	}

	.theme__list {
		display: block;
		padding: 0 15px;
		margin-bottom: 50px;
	}

	.theme__item {
		width: 100%;
		margin-bottom: 20px;
	}

	.theme__comment {
		padding: 0;
		font-size: 14px;
	}

	.theme__name {
		font-size: 25px;
		padding: 10px 20px;
		top: 15%;
	}

	.theme__tag {
		font-size: 14px;
	}

	.theme__keywords-list {
		justify-content: flex-start;
		gap: 5px 10px;
	}

	.theme__keyword {
		font-size: 15px;
		padding: 5px 6px;
		border-width: 1px;
		border-radius: 20px;
	}

	/* Recommend */
	.recommend__slide {
		display: block !important;
		flex-direction: column !important;
	}

	.recommend__slide-image,
	.recommend__slide-content {
		width: 100%;
		margin-bottom: 20px;
	}

	.recommend__slide-image img,
	.recommend__inner-slide img {
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}

	.recommend__thumbnail-title {
		font-size: 22px;
	}

	.recommend__country-title h2 {
		font-size: 11vw;
	}

	.recommend__flag {
		width: 15vw !important;
		max-width: 60px;
	}

	.recommend__ema {
		display: none;
	}

	.recommend__letter {
		display: none;
	}

	.recommend__detail {
		padding: 20px 15px;
	}

	.recommend__detail-title {
		font-size: 16px;
	}

	.recommend__labels {
		flex-wrap: wrap;
		gap: 15px;
	}

	.recommend__label {
		gap: 5px;
	}

	.recommend__label span {
		font-size: 14px;
	}

	.recommend__price {
		font-size: 25px;
	}

	/* Area */
	.area__list {
		gap: 10px;
	}

	.area__item {
		width: 100%;
	}

	.area__name {
		font-size: 25px;
	}

	.area__name-en {
		font-size: 14px;
	}

	/* Feature */
	.feature__list {
		display: block;
		margin-bottom: 30px;
	}

	.feature__item {
		width: 100%;
		margin-bottom: 25px;
	}

	.btn-more a {
		font-size: 14px;
		padding: 5px 25px;
	}

	/* About */
	.about__content {
		padding: 0;
	}

	.about__heading {
		font-size: 18px;
	}

	.about__heading .font-mincho {
		font-size: 35px;
	}

	.about__text {
		margin-bottom: 30px;
	}

	.about__text p {
		font-size: 16px;
		margin-bottom: 0;
	}

	.about__bg {
		opacity: 0.3;
	}

	.about__bg--1 { top: 10%; left: -25%; width: 50vw; }
	.about__bg--2 { top: 12%; left: 55%; width: 15vw; }
	.about__bg--3 { top: 27%; left: 70%; width: 25vw; }
	.about__bg--4 { top: 35%; left: 15%; width: 35vw; }
	.about__bg--5 { top: 60%; left: 5%; width: 15vw; }
	.about__bg--6 { top: 55%; right: 0%; width: 50vw; }

	/* Contact */
	.contact__box {
		padding: 20px;
	}

	.contact__box::after {
		bottom: -3%;
		right: -2%;
	}

	.contact__title {
		font-size: 25px;
		text-align: center;
	}

	.contact__subtitle {
		font-size: 16px;
	}

	.contact__btn {
		padding: 20px;
	}

	.contact__hours {
		font-size: 16px;
	}
}
