@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ****************************************
   Common
**************************************** */
body {
  font-family: "BIZ UDPGothic", sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  position: relative;
  width: 100%;
}
.header .logo {
  position: absolute;
  display: block;
  width: 120px;
  left: 0;
  right: 0;
  top: 10px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10002;
}
.header .menu-toggle {
  position: fixed;
  right: 20px;
  top: 25px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  background: #fff;
  color: #2d9b5d;
  border-radius: 20px;
  padding: 8px 20px;
  line-height: 1em;
  font-family: "Sigmar", sans-serif;
}
.header .menu-toggle i {
  font-size: 24px;
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .header .menu-toggle i {
    margin-right: 0;
  }
  .header .menu-toggle span {
    display: none;
  }
}
.header .menu-toggle.hidden {
  display: none;
}
.header .cover {
  position: relative;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .header .cover {
    height: 300px;
  }
}
.header .cover p.caption {
  position: absolute;
  right: 10%;
  font-family: "DotGothic16", sans-serif;
  font-size: 40px;
  line-height: 40px;
  top: 300px;
}
@media screen and (max-width: 767px) {
  .header .cover p.caption {
    font-size: 24px;
    line-height: 24px;
    top: 150px;
  }
}
.header .cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #2d9b5d;
  color: white;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu .menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.mobile-menu ul {
  margin-top: 3rem;
  list-style: none;
  width: 100%;
}
.mobile-menu ul li {
  margin-bottom: 1.5rem;
}
.mobile-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}
.mobile-menu ul li a span {
  font-size: 1.2rem;
}
.mobile-menu .menu-logo {
  margin-top: auto;
  font-family: "Arial Black", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  color: white;
}

.section {
  padding: 2rem 1rem;
}
.section h2 {
  color: #2d9b5d;
  font-size: 96px;
  line-height: 1em;
  font-family: "Sigmar", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.section h2::first-letter {
  font-size: 108px;
}
.section h2 span {
  display: block;
  font-size: 32px;
  color: #2d9b5d;
}
@media screen and (max-width: 767px) {
  .section h2 {
    font-size: 50px;
  }
  .section h2::first-letter {
    font-size: 60px;
  }
  .section h2 span {
    font-size: 16px;
  }
}
.section h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  font-weight: normal;
  color: #222;
  display: inline-block;
}
.section h3:after {
  margin-top: 5px;
  display: block;
  content: " ";
  width: 100%;
  border-bottom: 3px dotted #2d9b5d;
}
.section h4 {
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: normal;
  color: #222;
  display: inline-block;
  margin-bottom: 20px;
}
.section h4:after {
  margin-top: 5px;
  display: block;
  content: " ";
  width: 100%;
  border-bottom: 3px dotted #2d9b5d;
}

.footer {
  background: #2d9b5d;
  color: #fff;
  text-align: center;
  padding: 80px 0 30px;
  font-size: 0.8rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer {
    display: flex;
    flex-direction: row-reverse;
  }
}
.footer div.copyright {
  display: block;
  flex: 1;
}
.footer ul {
  display: flex;
  flex: 1;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer ul {
    margin-bottom: 0;
  }
}
.footer ul li {
  display: block;
}
.footer ul li a {
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2d9b5d;
  color: white;
  border: none;
  border-radius: 24px;
  height: 48px;
  font-size: 1.2rem;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-family: "Sigmar", sans-serif;
  padding: 10px 20px;
  transition: background-color 0.3s, transform 0.3s;
}
.back-to-top i {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
}
.back-to-top:hover {
  background-color: rgb(33.525, 115.475, 69.285);
  transform: scale(1.05);
}

.back-to-top.show {
  display: flex;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

/* --- PC表示 (768px以上) --- */
@media screen and (min-width: 768px) {
  .header .menu {
    display: block !important;
  }
  .header .menu ul {
    display: flex;
    gap: 2rem;
  }
  .header .menu ul li {
    margin: 0;
  }
  .section {
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
}
/* ****************************************
   Service
**************************************** */
.service {
  background: #fff;
}
.service .service-list {
  margin-top: 2rem;
}
.service .service-item {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .service .service-item {
    flex-direction: column !important;
    padding: 0 20px;
  }
}
.service .service-item:nth-of-type(2n + 1) {
  flex-direction: row;
}
.service .service-item .service-icon {
  flex: 1;
  width: 50%;
  display: block;
  height: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .service .service-item .service-icon {
    width: 80%;
  }
}
.service .service-item .service-detail {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .service .service-item .service-detail {
    margin-bottom: 50px;
    width: 100%;
  }
}
.service .service-item .service-detail p {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

/* ****************************************
   Company
**************************************** */
.company {
  background: #fafafa;
}
.company .company-info {
  margin-top: 2rem;
}
.company .company-info dl {
  margin-bottom: 20px;
}
.company .company-info dl dt {
  font-size: 20px;
  margin-bottom: 0.5rem;
  font-weight: normal;
  color: #222;
  display: inline-block;
}
.company .company-info dl dt:after {
  margin-top: 5px;
  display: block;
  content: " ";
  width: 100%;
  border-bottom: 3px dotted #2d9b5d;
}
.company .company-info dl dd {
  margin: 0;
  font-size: 16px;
  color: #555;
}
.company .company-info dl dd span {
  display: block;
  font-size: 10px;
}
.company .company-info dl dd ul {
  list-style: disc;
  padding-left: 1.2rem;
}
.company .company-info dl dd ul li {
  margin-bottom: 0.3rem;
}

/* ****************************************
   Access
**************************************** */
.access {
  background: #fff;
}
.access .access-info {
  margin-top: 2rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .access .access-info {
    margin-bottom: 0;
  }
}
.access .access-info .address {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.access .access-info .map-container {
  width: 100%;
}
.access .access-info .map-container iframe {
  max-width: 100%;
}
.access .access-info .map-container .map-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  color: #666;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .access .access-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto 0;
    gap: 3rem;
  }
  .access .access-info .address {
    flex: 1;
  }
  .access .access-info .map-container {
    flex: 1;
    height: 450px;
  }
}
/* ****************************************
   Contact
**************************************** */
.contact {
  background: #f5f5f5;
  position: relative;
}
.contact .contact-illust {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contact .contact-content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.contact .contact-content .section-title {
  z-index: 1;
  position: relative;
  color: #fff;
}
.contact .contact-content .section-title span {
  color: #fff;
}
.contact .contact-content .contact-button {
  display: flex;
  align-items: center;
  background-color: #2d9b5d;
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s;
  border: 1px solid #fff;
}
.contact .contact-content .contact-button:hover {
  background-color: rgb(33.525, 115.475, 69.285);
}
.contact .contact-content .contact-button span {
  font-size: 24px;
}
.contact .contact-content .contact-button i {
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  text-align: center;
  background: #fff;
  color: #2d9b5d;
  margin-left: 15px;
}

/* ****************************************
   News
**************************************** */
.news {
  background: #fff;
}
.news .news-list {
  margin-top: 2rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news .news-item {
  padding: 0 1rem 30px;
  display: block;
  margin-bottom: 30px;
  border-bottom: 2px dotted #2d9b5d;
}
@media screen and (min-width: 768px) {
  .news .news-item {
    display: flex;
  }
}
.news .news-item:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.news .news-item time {
  color: #333;
  flex: 1;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .news .news-item time {
    font-weight: bold;
    font-size: 16px;
  }
}
.news .news-item .news-detail {
  flex: 3;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .news .news-item .news-detail {
    margin-top: 0;
  }
}
.news .news-item .news-detail .news-title {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}
.news .news-item .news-detail .news-detail {
  margin-top: 10px;
  line-height: 2rem;
}

@media screen and (min-width: 768px) {
  .contact .contact-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 4rem;
  }
  .contact .contact-content .section-title span {
    margin-top: -10px;
  }
  .contact .contact-content .contact-button {
    text-align: left;
  }
  .news .news-list {
    margin: 2rem auto 0;
  }
}
/* ****************************************
   Contact form
**************************************** */
.contact_form form p.buttons {
  display: flex;
  margin: 30px 0;
  justify-content: center;
}
.contact_form form p.buttons input[type=submit] {
  display: inline-block;
  border: 1px solid #303030;
  padding: 10px 20px;
  font-size: 16px;
}
.contact_form form dl {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid #d0d0d0;
}
.contact_form form dl dt,
.contact_form form dl dd {
  display: block;
  width: 100%;
}
.contact_form form dl dt {
  padding: 10px 10px 0;
}
.contact_form form dl dt span {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 5px;
  background: #f00;
  color: #fff;
  margin-right: 5px;
  display: inline-block;
}
.contact_form form dl dd {
  padding: 10px 10px;
}
.contact_form form dl dd input[type=text],
.contact_form form dl dd textarea {
  font-size: 16px;
  width: 100%;
  padding: 5px;
  border: 1px solid #d0d0d0;
}
.contact_form form dl dd textarea {
  height: 10rem;
}

@media screen and (min-width: 768px) {
  section.contact_form form dl {
    display: flex;
  }
  section.contact_form form dl dt,
  section.contact_form form dl dd {
    padding: 30px 10px;
    width: auto;
  }
  section.contact_form form dl dt {
    flex: 1;
  }
  section.contact_form form dl dd {
    flex: 3;
  }
}/*# sourceMappingURL=main.css.map */