@charset "UTF-8";

/* =========================================================
   Hero
========================================================= */

.minazuki-hero {
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.hero-bgimg {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bgimg img {
  width: 100%;
  height: auto;
}

.hero-inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 55px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 30;
}

.hero-title {
  margin: 0 0 8px;
  color: #496b3b;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.4;
}

.hero-lead {
  margin-bottom: 20px;
  color: #496b3b;
  font-size: 18px;
  letter-spacing: .12em;
}

.hero-text {
  color: #555;
  font-size: 14px;
  letter-spacing: .08em;
}


/* =========================================================
   Contents
========================================================= */

.contents-wrap {
  /*
  width: min(100% - 40px, 1040px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 55px;
  */
  margin: 0 auto;
  padding: 65px 0 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}


/* =========================================================
   Side Menu
========================================================= */

.side-menu {
  align-self: start;
  border: 1px solid #d9ddd0;
  width: calc(100% - 680px - 49px)
}

.side-menu h2 {
  margin: 0;
  padding: 13px 18px;

  color: #fff;
  background: #aab68b;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: .08em;
}

.side-menu li {
  border-top: 1px solid #e1e1e1;
}

.side-menu li:first-child {
  border-top: 0;
}

.side-menu li a {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  font-size: 14px;
  transition: .3s;
  text-decoration: none;
}

.side-menu li a span {
  color: #60714e;
  font-size: 23px;
  line-height: 1;
}

.side-menu li a:hover {
  background: #f2f5eb;
}

.side-menu li.current a,
#minazuki li.nv-minazuki a,
#links li.nv-links a {
  background: #eef2e3;
  color: #526a42;
  font-weight: bold;
}

#minazuki li.nv-minazuki a span,
#links li.nv-links a span {
  font-weight: normal;
}



/* =========================================================
   Main Content
========================================================= */

.page-title {
  margin: 0 0 15px;
  padding: 0 0 10px 18px;

  position: relative;

  color: #496b3b;

  border-bottom: 1px solid #71855c;

  font-size: 24px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
}

.page-title::before {
  content: "";

  position: absolute;
  left: 0;
  top: 3px;

  width: 3px;
  height: calc(100% - 10px);

  background: #5f7a4d;
}

#main h2 {
  margin: 30px 0 10px;
  color: #557048;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}

#main h2:first-child {
  margin: 0 0 10px;
}

#main ul {
  font-size: 14px;
}


/* =========================================================
   Information List
========================================================= */

.info-list {
  width: 100%;
}

.info-item {
  /*
  display: grid;
  grid-template-columns: 32px 185px minmax(0, 1fr);
  */
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

/*
.info-number {
  color: #557048;

  font-size: 15px;
  font-weight: bold;
}
*/

.info-item h3 {
  margin: 0;
  color: #557048;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  width: 13em;
}

.info-item h3 span {
  display: block;
  font-size: 12px;
  margin: -5px 0 0 1.5em;
}

.info-text {
  min-width: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
  width: calc(100% - 13em);
}

.info-text p {
  margin: 0;
}

.info-text.other p + p {
  margin-top: 2px;
}

.info-img {
  margin-top: 30px;
}

.info-img p {
  margin: 10px;
  text-align: center;
}


/* =========================================================
   Responsive
========================================================= */

@media screen and (max-width: 900px) {

  .hero-bgimg img {
    width: auto;
    height: 100%;
  }
}


@media screen and (max-width: 640px) {

  body {
    font-size: 14px;
  }

  /* Hero */

  .minazuki-hero {
    min-height: 230px;
  }

  .hero-inner {
    width: calc(100% - 30px);
    padding: 45px 15px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-text {
    font-size: 13px;
    letter-spacing: .04em;
  }


  /* Contents */

  .contents-wrap {
    width: calc(100% - 30px);

    padding: 40px 0 50px;

    display: block;
  }

  .side-menu {
    margin-bottom: 40px;
    width: 100%;
  }

  .side-menu h2 {
    padding: 11px 15px;
  }

  /* Main */

  .page-title {
    font-size: 21px;
  }

  .info-item {
    grid-template-columns: 28px 1fr;
    padding: 15px 0;
    display: block;
  }

  .info-item h3 {
    font-size: 14px;
    width: 100%;
  }

  .info-item h3 span {
    display: inline-block;
    margin: 0;
  }

  .info-text {
    grid-column: 2;
    margin-top: 4px;
    font-size: 13px;
    width: 100%;
  }
}