@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,700,600,400|Sorts+Mill+Goudy:400");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@import url("https://px.animaapp.com/685a01f0a1ec653bf2599aa9.685a01f1a1ec653bf2599aac.IzdddmW.hcp.png");
:root {
	--black: #000000;
	--licorice: #111111;
	--white: #ffffff;
	--black-haze: #f7f7f7;
	--font-base: "Noto Sans JP", sans-serif;
	--font-display: "Sorts Mill Goudy", serif;
	--bg-clear: rgba( 255, 255, 255, 0.85 );
}
*, *::before, *::after {
	box-sizing: border-box;
}
a{
	text-decoration: none;
	color: #8C573C;
}
body {
	font-family: var(--font-base);
	font-weight: 400;
	background: var(--white);
	color: var(--black);
	line-height: 1.6;
  font-size: 16px;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.g-icons{
	position: relative;
	padding-left: 25px !important;
}
.g-icons:before{
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
	width: 20px;
	height: 20px;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	color: #828282;
	vertical-align: middle;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

main > section {
	padding: 80px 5%;
}
.section-header {
	text-align: center;
	margin-bottom: 40px;
}
.section-title {
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-family: var(--font-base);
	font-weight: 800;
	margin-bottom: 8px;
}
.section-subtitle {
	font-size: 14px;
	color: #555;
}
.btn{
	margin-top: 20px;
	text-align: center;
}
.btn a{
	display: inline-block;
	background: var(--black);
	color: var(--white) !important;
	padding: 10px 30px;
	border-radius: 50px;
	text-decoration: none;
}

.more-link {
	font-weight: 300;
	font-size: 1rem;
	color: #000;
}
.screen a {
	display: contents;
	text-decoration: none;
}
.valign-text-middle {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hidden, .hidden * {
	pointer-events: none;
	visibility: hidden;
}
* {
	box-sizing: border-box;
}
.rectangle-5 {
	height: 120px;
	position: relative;
	width: 120px;
}
.weuiarrow-outlined {
	height: 48px;
	position: relative;
	width: 24px;
}

/*************************************************************************************/
/* ===== Header Styles ===== */
.header {
    /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
	height: 80px;
    z-index: 1000;
	position: relative;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header_logo img{
	max-height: 70px;
	width: auto;
}


/* ===== Hamburger Menu ===== */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--black);
    font-size: var(--font-size-m);
    transition: background-color 0.3s ease;
}

.mobile-nav-list a:hover {
    background-color: #f5f5f5;
}


/* ===== Footer ===== */
.footer {
    background-color: #f5f5f5;
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer_access_title {
    margin-bottom: 20px;
}

.footer_access_map {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    margin-bottom: 20px;
}
.footer_access_map iframe{
	width: 100%;
	height: 100%;
}


.footer_nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
	list-style: none;
}
.footer_nav a{
	color: #000;
	text-decoration: none;
}
.footer_nav_item-9 {
    padding: 10px 0;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

