:root {
  --base-color: rgb(189, 218, 200);
  --accent-color: rgb(120, 180, 155);
  --dark-green: rgb(12, 102, 50);
  --text-color: #333;
  --bg-color: #f9fbfa;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

main {
  padding-top: 100px;
}
header {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 32px;
  background-color: rgb(189, 218, 200);
  justify-content: flex-start; 
}

.logo {

  width: 150px;
  height: auto;
  margin: 10px;
}


.menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
:root {
  --base-color: rgb(189, 218, 200);
  --accent-color: rgb(120, 180, 155);
  --dark-green: rgb(12, 102, 50);
  --text-color: #333;
  --bg-color: #f9fbfa;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

main {
  padding-top: 100px;
}
header {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 32px;
  background-color: rgb(189, 218, 200);
  justify-content: flex-start; 
}

.logo {
  width: 150px;
  height: auto;
}

/* =====================
   メニュー（PC）
===================== */
.menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--dark-green);
  transition: width 0.3s ease;
}

.menu li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: rgba(12, 102, 50, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu.active {
    max-height: 400px;
    padding: 20px 0;
  }

  .menu li {
    margin: 14px 0;
  }

  .menu li a {
    color: #fff;
    font-size: 16px;
  }
}



@media screen and (max-width: 768px) {


  .menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: rgba(12, 102, 50, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu.active {
    max-height: 400px;
    padding: 20px 0;
  }

  .menu li {
    margin: 14px 0;
  }

  .menu li a {
    color: #fff;
    font-size: 16px;
  }
}


main{
color: rgb(6, 39, 6);
background-color: rgba(41, 168, 98, 0.801);
padding: 15px 0 10px 0;
padding-top: 100px;
padding-bottom: 100px;
align-items: center;
text-align: center;
}


main h2{
    font-size: 20px;
    margin: 50px;
}
.fade-in{
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    margin-bottom: 40px;
}
.fade-in.show{
opacity: 1;
transform: translateY(0);
}
.btn-company{
    background-color: #05573700;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #fff;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.btn-company:hover{
background-color: rgba(41, 168, 98, 0.801);
}
.notice-container {
  text-align: center; /* 中央寄せ */
  margin: 30px 0;    /* 上下の余白 */
}
.footer-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh; /* 画面全体の高さに固定 */
  background: rgba(0,0,0,0.6);
  color: #fff;
  box-sizing: border-box;
}

.footer-left {
  padding: 20px;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

/* 余ったスペースはぜんぶ地図 */
.footer-right {
  flex: 1;
}

.footer-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
