@charset "utf-8";
/* CSS Document */
:root {
--main-color: #ff6600;
}
	html {
  scroll-padding-top: 80px; /* ヘッダーの高さ分を設定 */
}	
body {
    font-family: 'Noto Sans JP', sans-serif;
}
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar a {
    color: black;
}
.navbar a:hover {
    color: var(--main-color);
}
.hero {
    background: url('../pics/furusato_hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero h1 {
    position: relative;
    z-index: 1;
}
.section-title {
    border-left: 5px solid var(--main-color);
    padding-left: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}
.business-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.btn-main {
    background: var(--main-color);
    color: white;
}
.btn-main:hover {
    background: #e65c00;
}
/* 202502  */
a.navbar-brand {
    width: 260px;
}
.hero {
    padding-top: 220px;
}
.space {
    padding-top: 80px;
}
.google-maps {
position: relative;
padding-bottom: 30%;
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height:100% !important;
}
nav ul {
    list-style: none;
    padding: 0;
  }
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
  }	
#privacy-policy {
    margin-top: 80px;
}
.simple_square_btn5 {
    display: block;
    position: relative;
    width: 240px;
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #795548;
}
@media only screen and (max-width: 768px) {
.google-maps {
    padding-bottom: 50%;	
	}
}
	