@charset "utf-8";

/* Font Awesome
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* Bootstrap Icons
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Google Fonts
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

/* css files
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");

/* CSS Variables
---------------------------------------------------------------------------*/
:root {
	--bg-color: #ffffff;
	--bg-inverse-color: #1f2937;

	--primary-color: #1e3a5f;
	--primary-inverse-color: #ffffff;

	--light-color: #f4f6f9;
	--light-inverse-color: #333333;

	--secondary-color: #4a5d73;
	--secondary-inverse-color: #ffffff;

	--accent-color: #f59e0b;
	--accent-inverse-color: #ffffff;

	--content-space: 8.33vw;
	--headerH: 70px;

	--border-color: #d7dee8;
	--text-color: #334155;
	--text-light: #64748b;
	--shadow-soft: 0 10px 30px rgba(30, 58, 95, 0.06);
	--shadow-hover: 0 16px 40px rgba(30, 58, 95, 0.12);
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 20px;
}

@media screen and (max-width: 500px) {
	:root {
		--content-space: 10px;
	}
}

/* Keyframes
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% { left: -200px; }
	100% { left: 0px; }
}

@keyframes opa1 {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* Reset / Base
---------------------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.02em;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);
	color: var(--bg-inverse-color);
}

@media screen and (max-width: 600px) {
	body {
		font-size: 1.4rem;
		line-height: 1.8;
	}
}

figure,
dd,
nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

nav ul {
	list-style: none;
}

table {
	border-collapse: collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

video {
	max-width: 100%;
}

iframe {
	width: 100%;
}

input,
textarea,
button {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
}

section > ol,
section > ul {
	margin-left: 2rem;
}

a {
	color: inherit;
	transition: 0.3s;
}

a:hover {
	text-decoration: none;
}

/* Utilities
---------------------------------------------------------------------------*/
.flex_row { display: flex; }
.column { display: flex; flex-direction: column; }
.s_b { display: flex; justify-content: space-between; }
.center { text-align: center; }
.medium { font-weight: 400; }
.bold { font-weight: 700; }
.jp { font-family: "Noto Sans JP", sans-serif; }
.abc {
	font-family: "Cormorant Garamond", serif;
	letter-spacing: 0.08em;
}

.text14 { font-size: 1.4rem; }
.text16 { font-size: 1.6rem; font-weight: 600; }
.text16_m { font-size: 1.6rem; font-weight: 500; }
.text20 { font-size: 2rem; }
.text24 { font-size: 2.4rem; }
.text32 { font-size: 3.2rem; }
.text40 { font-size: 4rem; }
.text66 { font-size: 6.6rem; }

@media screen and (max-width: 600px) {
	.text32 { font-size: 2.4rem; }
	.text24 { font-size: 2rem; }
	.text20 { font-size: 1.8rem; }
	.text40 { font-size: 3rem; }
}

.t-h-n { line-height: 1.4; }
.l { text-align: left !important; }
.c { text-align: center !important; }
.r { text-align: right !important; }
.ws,
.wl {
	width: 95%;
	display: block;
}
.mt0 { margin-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }
.mb3rem { margin-bottom: 3rem !important; }
.mb30 { margin-bottom: 30px !important; }
.small { font-size: 0.75em; }
.large { font-size: 2em; letter-spacing: 0.1em; }
.block { display: block !important; }
.pd_30 { padding-bottom: 30px !important; }

.look {
	display: inline-block;
	padding: 0 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.look .color-check,
.color-check,
.color-check a {
	color: #c02340 !important;
}

.marker {
	background: linear-gradient(transparent 70%, rgba(245, 158, 11, 0.35) 70%);
}

/* Layout
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.4s both;
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100vh;
	min-height: 100dvh;
}

body:not(.home) #container {
	grid-template-rows: 1fr;
}

main {
	overflow-x: clip;
	min-width: 0;
}

body:not(.home) main {
	margin-top: var(--headerH);
}

section {
	position: relative;
	padding: 80px var(--content-space);
	margin: 5vw 0;
}

@media screen and (max-width: 600px) {
	section {
		padding: 56px var(--content-space);
	}
}

.inner {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
}

.inner2 {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}

#link5 .inner,
#company .inner {
	width: 70%;
}

@media screen and (max-width: 600px) {
	#link5 .inner,
	#company .inner {
		width: 100%;
	}
}

/* Header
---------------------------------------------------------------------------*/
header {
	position: fixed;
	z-index: 100;
	width: 100%;
	height: var(--headerH);
	padding: 0 var(--headerH) 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	line-height: 1.5;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.site-header.is-hide {
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
}

@media screen and (max-width: 800px) {
	header {
		position: absolute;
	}
}

#logo {
	margin: 0;
	flex-shrink: 0;
}

#logo img {
	display: block;
	height: 24px;
}

.logo_text,
#footer h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 600px) {
	.logo_text,
	#footer h1 {
		font-size: 2.4rem;
	}
}

header nav ul {
	display: flex;
	gap: 1.5rem;
}

header nav ul a {
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
}

@media screen and (max-width: 800px) {
	header nav ul {
		display: none;
	}
	header nav i {
		padding-right: 0.5rem;
	}
}

/* Dropdown
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}

header nav ul ul {
	position: absolute;
	z-index: 100;
	margin-left: 1rem;
	border: 1px solid var(--primary-color);
}

header nav ul ul li:not(:last-child) {
	border-bottom: 1px solid var(--primary-color);
}

header nav ul ul a {
	padding: 0.3em 1em;
	background: #fff;
	color: #333;
}

/* Menubar
---------------------------------------------------------------------------*/
#menubar { display: none; }
#menubar ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 680px;
}
#menubar a {
	display: block;
	text-decoration: none;
}

.large-screen #menubar { display: block; }
.small-screen #menubar.display-block { display: block; }

#menubar_hdr.display-none { display: none; }
.ddmenu_parent ul { display: none; }

a.ddmenu::before {
	font-family: bootstrap-icons;
	content: "\F229";
	margin-right: 0.4em;
	display: inline-block;
	transform: scale(0.8) translateY(0.1em);
	opacity: 0.7;
}

/* Mobile menu
---------------------------------------------------------------------------*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;
	overflow: auto;
	z-index: 100;
	inset: 0;
	padding: 100px var(--content-space) 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	line-height: 1.5;
	font-size: 1.2rem;
	display: none;
}

.small-screen #menubar a {
	display: block;
	text-decoration: none;
	background: var(--primary-inverse-color);
	color: #333;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
	border-radius: 10px;
}

.small-screen #menubar ul ul a {
	background: var(--bg-color);
	color: var(--bg-inverse-color);
	border: 1px solid var(--bg-inverse-color);
	margin-left: 2rem;
}

/* Hamburger
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none;
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	width: var(--headerH);
	height: var(--headerH);
	position: fixed;
	z-index: 101;
	right: 0;
	top: 0;
}

#menubar_hdr.ham {
	background: #ff0000;
}

#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	transition: 0.3s;
	width: 35px;
	height: 2px;
	background: #fff;
	box-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

#menubar_hdr span:nth-of-type(1) { top: 24px; }
#menubar_hdr span:nth-of-type(2) { top: 34px; }
#menubar_hdr span:nth-of-type(3) { top: 44px; }

#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.small-screen #menubar_hdr {
	display: flex;
}

/* Headings
---------------------------------------------------------------------------*/
main h2,
h3,
h4 {
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
}

main h2 {
	display: inline-flex;
	flex-direction: column-reverse;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
}

main h2.c {
	display: flex;
}

main h2 .small,
main h4 span {
	font-size: 1.3rem;
	opacity: 0.65;
	letter-spacing: 0.12em;
	text-align: center;
	font-family: "Cormorant Garamond", serif;
}

main h2.logo-mark {
	background: url("../images/logo_mark.png") no-repeat center 0 / 200px;
	padding-top: 80px;
	display: flex;
	justify-content: center;
}
.pt0{
	padding-top: 0;
}

@media screen and (max-width: 600px) {
	main h2 {
		font-size: 2.4rem;
	}
}

/* Decorative text
---------------------------------------------------------------------------*/
.text-kazari {
	line-height: 1;
	font-size: 7vw;
	font-weight: 700;
	margin-bottom: -4vw;
	text-align: center;
	letter-spacing: 0.08em;
	background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@media screen and (max-width: 600px) {
	.text-kazari {
		font-size: 10vw;
		margin-bottom: -2vw;
	}
}

/* Hero
---------------------------------------------------------------------------*/
.fv_title {
	text-align: center;
	margin: 30px 0;
	line-height: 1.4;
	font-size: 3.2rem;
	font-weight: 700;
}

.title_litle {
	display: block;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 0.8rem;
}

.mainimg .slide .text h2 {
	line-height: 1.5;
	font-weight: 700;
	font-size: 2.8rem;
	margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
	.mainimg .slide .text h2 {
		font-size: 2.2rem;
	}
	.mainimg .slide .text h2 .title_litle {
		font-size: 1.3rem;
	}
}

/* Background helper
---------------------------------------------------------------------------*/
.bg-primary {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

.bg-secondary {
	background: var(--secondary-color);
	color: var(--secondary-inverse-color);
}

.bg-light {
	background: var(--light-color);
	color: var(--light-inverse-color);
}

.bg {
	padding-top: 5vw;
	padding-bottom: 5vw;
}

.bg + .bg {
	margin-top: calc(-1 * 5vw);
}

/* Slanted section
---------------------------------------------------------------------------*/
.border-radius1 {
	position: relative;
	clip-path: polygon(0 120px, 100% 0, 100% calc(100% - 120px), 0 100%);
	padding: 120px 0;
	border-radius: 0;
}

@media screen and (max-width: 600px) {
	.border-radius1 {
		clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
		padding: 60px 0;
	}
}

/* Scroll effect
---------------------------------------------------------------------------*/
.scrollfx-box {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	position: relative;
	height: 30rem;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.scrollfx-box::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.45);
}

.scrollfx-move {
	--fx-extra: 240px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	height: calc(100% + var(--fx-extra));
	object-fit: cover;
	will-change: transform;
	transform: translate3d(0, -50%, 0);
}

.scrollfx-box .text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 2;
	padding: 20px;
	color: #fff;
}

/* flex1 section
---------------------------------------------------------------------------*/
@media screen and (min-width: 1000px) {
	.flex1 {
		display: flex;
		gap: 4vw;
		align-self: start;
		align-items: center;
		justify-content: center;
	}
}

.flex1 {
	text-align: center;
}

/* list-grid-menu
---------------------------------------------------------------------------*/
.flex1 .list-grid-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 0 0 25rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.flex1 .list-grid-menu li {
	padding: 0.75rem 0.75rem 0.75rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	background: #fff;
	transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.flex1 .list-grid-menu a {
	display: block;
	text-decoration: none;
}

.flex1 .list-grid-menu li:has(> a):hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30, 58, 95, 0.08);
}

.flex1 .list-grid-menu i {
	display: inline-block;
	padding-right: 1.5rem;
	color: var(--accent-color);
	transform: scale(1.5);
	transform-origin: left center;
}

/* list-grid cards
---------------------------------------------------------------------------*/
.list-grid .list * {
	margin: 0;
	padding: 0;
}

.list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3vw;
}

.list-grid .list {
	display: grid;
	grid-template-rows: auto 1fr;
	position: relative;
	background: #fff;
	color: #333;
	border: 1px solid rgba(30, 58, 95, 0.12);
	border-radius: 18px;
	padding: 1.25rem;
	line-height: 1.7;
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	overflow: hidden;
}

.list-grid .list:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: rgba(30, 58, 95, 0.24);
}

.list-grid .list figure {
	margin-bottom: 0.75rem;
	border-radius: 12px;
	overflow: hidden;
}

.list-grid .list figure img {
	display: block;
	width: 100%;
	height: auto;
}

.list-grid h4 {
	text-align: center;
	margin-bottom: 0.75rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.4;
}

.list-grid h4 span {
	display: block;
	opacity: 1;
}

.list-grid p {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #555;
}

.list-grid ol,
.list-grid ul {
	margin-left: 1.2rem;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #555;
}

.list-grid .list .btn a {
	display: block;
	text-decoration: none;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	text-align: center;
	padding: 0.8rem 1rem;
	margin-top: 1rem;
	border-radius: 999px;
	font-weight: 600;
	transition: background 0.3s ease, transform 0.3s ease;
}

.list-grid .list .btn a:hover {
	background: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
}

#link4 .list-grid .list {
	background: #fff;
	border: 1px solid rgba(30, 58, 95, 0.1);
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.05);
}

#link4 .list-grid .list:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(30, 58, 95, 0.1);
}

#link4 .list-grid .list .text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

#link4 .list-grid h4 {
	font-size: 1.7rem;
	margin-bottom: 0.5rem;
}

@media screen and (max-width: 900px) {
	.list-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 600px) {
	.list-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	#link4 .list-grid {
		display: flex;
		flex-direction: column;
		max-width: 320px;
		margin: 0 auto;
		justify-content: center;
	}

	#link4 .list-grid .list {
		width: 100%;
		padding: 1rem;
		border-radius: 16px;
	}

	.list-grid h4 {
		font-size: 1.6rem;
	}

	.list-grid p,
	.list-grid ol,
	.list-grid ul {
		font-size: 1.35rem;
	}
}

/* list-normal
---------------------------------------------------------------------------*/
.list-normal * {
	margin: 0;
	padding: 0;
}

.list-normal .list {
	display: flex;
	gap: 2rem;
	background: var(--bg-color);
	color: var(--bg-inverse-color);
	padding: 3vw;
	margin-bottom: 5vw;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	position: relative;
	box-shadow: var(--shadow-soft);
}

.list-normal .text {
	flex: 1;
	padding: 0 30px;
}

.list-normal .num {
	position: absolute;
	right: 0;
	top: -7vw;
	color: #d9e1ec;
	opacity: 0.9;
	font-size: 8vw;
	font-family: "Noto Sans JP";
	font-weight: 700;
	line-height: 1;
}

.list-normal figure {
	width: 30%;
	margin-bottom: 1rem;
	border-radius: 16px;
	overflow: hidden;
}

.list-normal h4 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

@media screen and (max-width: 600px) {
	.list-normal .list {
		flex-direction: column;
		padding: 2rem;
	}
	.list-normal .text {
		padding: 0;
	}
	.list-normal figure {
		width: 100%;
	}
}

/* sticky section
---------------------------------------------------------------------------*/
.sticky1 ol,
.sticky1 ul {
	margin-left: 1.8rem;
}

.sticky1 li {
	margin-bottom: 1rem;
}

.sticky1 h2 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	position: relative;
	margin: 6rem 0 3rem 0;
	padding: 0 2rem;
	font-size: 2.4rem;
	box-shadow: 0.8rem 0.8rem rgba(0, 0, 0, 0.08);
	border-radius: 10px;
}

.sticky1 h2 .num {
	position: absolute;
	left: 0;
	top: -40px;
	color: var(--primary-color);
	font-size: 2rem;
	font-family: "Noto Sans JP";
	font-weight: 700;
}

.sticky1 h3 {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.5;
}

@media screen and (min-width: 900px) {
	.sticky1 {
		display: flex;
		align-items: flex-start;
		gap: 4rem;
		position: relative;
		clip-path: inset(0);
		min-height: 70vh;
	}

	.sticky1 .title {
		width: 30%;
		position: sticky;
		top: 0;
		z-index: 1;
		height: auto;
	}

	.sticky1 .title::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-size: cover;
		background-position: center;
		z-index: -1;
		border-radius: 20px;
	}

	.sticky1 .title.sticky-bg1::before { background-image: url("../images/sticky-bg1.jpg"); }
	.sticky1 .title.sticky-bg2::before { background-image: url("../images/sticky-bg2.jpg"); }
	.sticky1 .title.sticky-bg3::before { background-image: url("../images/sticky-bg3.jpg"); }
	.sticky1 .title.sticky-bg4::before { background-image: url("../images/sticky-bg4.jpg"); }

	.sticky1 .text {
		flex: 1;
	}
}

/* Steps
---------------------------------------------------------------------------*/
ul.step {
	margin: 20px 0 !important;
	padding: 0 !important;
	list-style: none;
}

ul.step li {
	border: 2px solid var(--primary-color);
	padding: 1rem;
	margin-bottom: 2rem;
	position: relative;
	border-radius: 12px;
	background: #fff;
}

ul.step li::after {
	content: "▼";
	transform: scaleX(2);
	position: absolute;
	left: 50%;
	bottom: -2rem;
	color: var(--primary-color);
	opacity: 0.3;
}

ul.step li:last-child::after {
	content: "";
}

/* Slide thumbnail
---------------------------------------------------------------------------*/
.slide-thumbnail * {
	margin: 0;
	padding: 0;
}

.slide-thumbnail {
	overflow-x: hidden;
	padding-bottom: 50px;
	position: relative;
}

.slide-thumbnail .img > div {
	flex: 0 0 23%;
	max-width: 23%;
	margin: 0 1%;
	padding: 1rem;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 16px;
}

@media screen and (max-width: 800px) {
	.slide-thumbnail .img > div {
		flex: 0 0 48%;
		max-width: 48%;
	}
}

.slide-thumbnail h4 {
	line-height: 1.5;
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
}

.slide-thumbnail .img {
	display: flex;
}

.slide-thumbnail figure {
	background: #eee;
	text-align: center;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	overflow: hidden;
}

.slide-thumbnail figure img {
	width: 40%;
}

.slide-thumbnail p {
	font-size: 1.3rem;
	line-height: 1.5;
}

.slide-thumbnail .name {
	font-size: 1.2rem;
	text-align: right;
}

.slide-thumbnail .slide-indicators {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}

.slide-thumbnail .indicator {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.slide-thumbnail .indicator.active {
	background: var(--accent-color);
}

/* 2 columns
---------------------------------------------------------------------------*/
@media screen and (min-width: 800px) {
	.c2 {
		display: flex;
		justify-content: space-between;
		gap: 5vw;
	}
	.c2 .text {
		flex: 1;
	}
}

/* FAQ
---------------------------------------------------------------------------*/
.openclose {
	width: 100%;
	display: flex;
	align-items: center;
	border-radius: 8px;
	margin-bottom: 1rem;
	background: #fff;
	color: #333;
	border: 1px solid var(--border-color);
	padding: 1.2rem 1.4rem;
	cursor: pointer;
}

.openclose::before {
	font-family: bootstrap-icons;
	content: "\F4FE";
	font-weight: bold;
	margin-right: 1rem;
	flex-shrink: 0;
	background: var(--primary-color);
	color: #fff;
	width: 1.8rem;
	line-height: 1.8rem;
	text-align: center;
	border-radius: 50%;
	transform: scale(1.1);
}

.openclose.active::before {
	content: "\F2EA";
	background: var(--accent-color);
	color: #fff;
}

.openclose + * {
	padding: 0 1rem 1.2rem 3rem;
}

.sub_box {
	width: 100%;
}

/* News
---------------------------------------------------------------------------*/
@media screen and (min-width: 700px) {
	.new {
		display: grid;
		gap: 1rem;
		grid-template-columns: auto 1fr;
	}
}

/* Buttons
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;
	text-decoration: none;
	width: fit-content;
	margin: 0 auto;
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	padding: 0.8rem 3rem;
	border-radius: 100px;
	letter-spacing: 0.1em;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	font-size: 1.6rem;
	font-weight: 700;
}

.btn1 a:hover {
	background: var(--primary-color);
	color: #fff;
	box-shadow: none;
	transform: translateY(-2px);
}

/* Forms
---------------------------------------------------------------------------*/
.form-note {
	margin-bottom: 24px;
	line-height: 1.8;
}

.form-row {
	margin-bottom: 20px;
}

.form-row label {
	display: block;
	font-weight: 500;
	line-height: 1.8;
}

.required {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #fff;
	background: var(--accent-color);
	border-radius: 999px;
	vertical-align: middle;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
	width: 100%;
	margin-top: 8px;
	padding: 14px 16px;
	border: 1px solid #ccd5e1;
	border-radius: 10px;
	background: #fff;
	font-size: 1.6rem;
	line-height: 1.6;
}

.form-row textarea {
	min-height: 180px;
	resize: vertical;
}

.form-submit {
	margin-top: 32px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.form-submit input[type="submit"],
input[type="submit"],
button {
	display: inline-block;
	min-width: 220px;
	padding: 14px 24px;
	border: none;
	border-radius: 999px;
	background: var(--accent-color);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
}

.form-submit input[type="submit"]:hover,
input[type="submit"]:hover,
button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

#contact .wpcf7-spinner {
	display: none;
}

/* Tables
---------------------------------------------------------------------------*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	border-top: 1px solid #ccc;
	margin-bottom: 2rem;
	font-size: 1.5rem;
	text-align: left;
}

.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--bg-inverse-color);
	color: var(--bg-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

.ta1 tr {
	border-bottom: 1px solid #ccc;
}

.ta1 td,
.ta1 th {
	word-break: break-all;
	background: var(--bg-color);
	color: var(--bg-inverse-color);
	text-align: left;
	padding: 10px;
}

.ta1 th {
	width: 25%;
	text-align: left;
	white-space: nowrap;
	font-weight: 700;
	color: var(--primary-color);
}

@media screen and (max-width: 600px) {
	.ta1 {
		width: 100%;
		table-layout: fixed;
	}
	.ta1 th {
		width: 120px;
	}
}

/* Footer
---------------------------------------------------------------------------*/
footer * {
	margin: 0 auto;
	padding: 0;
}

footer ul {
	list-style: none;
}

footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: var(--content-space);
	position: relative;
}

footer .footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 30px;
}

footer .logo {
	font-size: 1.5rem;
}

footer .logo img {
	width: 300px;
	margin-bottom: 1rem;
}

footer .footer2 {
	flex: 1;
}

@media screen and (min-width: 700px) {
	footer {
		display: flex;
		gap: 2rem;
	}

	footer .footer1 {
		margin-bottom: 0;
		text-align: left;
	}
}

#footer {
	padding-top: 40px;
	min-height: 200px;
}

#footer .inner {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	justify-content: flex-start;
	align-items: flex-start;
}

footer small {
	display: flex;
	text-align: center;
	margin: 0 auto;
}

/* Map
---------------------------------------------------------------------------*/
.iframe-box1 {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.iframe-box1 iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* Icons
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
}

.icons i {
	font-size: 40px;
}

/* Copyright notice
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;
	display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}

/* Page top
---------------------------------------------------------------------------*/
.pagetop-show {
	display: block;
}

.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;
	right: 20px;
	bottom: 50px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(30, 58, 95, 0.7);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Misc
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}