
#main a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

#main a.nolink {
  pointer-events: none;
  transition: none;
}

#main .main-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 84px rgba(0, 0, 0, 0.25);
}

#main .main-content p {
  font-family: "Noto Serif JP", "Noto Serif CJK JP", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 25px;
  color: #271B00;
}

@media screen and (max-width: 768px) {
  #main .main-content p {
    font-size: 16px;
  }
}

#main .left-content,
#main .right-content {
  background: url(/cp/feature/midorinohasha/img/bg_header.jpg);
  width: calc(50% - 300px);
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 2;
}

#main .left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
}

#main .right-content {
  display: block;
  right: 0;
}

#main .left-content .left-content_logo {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 92px;
}

@media screen and (max-width: 767px) {
  #main .left-content,
  #main .right-content {
    z-index: 3;
  }
  #main .left-content .left-content_logo {
    position: absolute;
    top: 16px;
    left: 16px;
  }
  #main .left-content .left-content_logo.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

#main .right-content .right_img {
  text-align: center;
  padding-top: 60px;
}

#main .right-content .nav {
  width: 60%;
  margin: -30px auto 0 auto;
}

#main .right-content dl {
  background: #fff;
  padding: 25px;
  margin-bottom: 16px;
}

#main .right-content dl dt {
  color: #006B0A;
  font-size: 26px;
  font-weight: 600;
  line-height: 47.528px;
  border-bottom: 1px solid #006B0A;
  margin-bottom: 7px;
}

#main .right-content dl dd {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 7px;
  margin-bottom: 7px;
  line-height: 1.4;
  padding-right: 16px;
}

#main .right-content dl dd a {
  color: #006B0A;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

#main .right-content dl dd a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #006B0A;
  border-right: 2px solid #006B0A;
  transform: rotate(135deg);
  position: absolute;
  right: -14%;
  top: 30%;
}

#main .right-content dl dd:last-child {
  padding-bottom: 7px;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  #main .right-content .nav {
    display: none;
  }
}

/* =========================
  ハンバーガーメニュー
========================= */
#main #hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 74px;
  height: 74px;
  z-index: 1002;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#main #hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}

#main #overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#main #overlay.show {
  opacity: 1;
  visibility: visible;
}

#main #nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: url(/cp/feature/midorinohasha/img/menu_bg.png);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

#main #nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 上部 */
#main .nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

#main .nav-header .logo {
  width: 37%;
}

/* 閉じる */
#main .close-btn {
  width: 64px;
  height: 66px;
  border: none;
  background: none;
  cursor: pointer;
}

/* メニュー */
#main .nav-menu {
  padding: 0 20px 20px;
}

#main .nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width:767px) {
  #main .nav-menu ul {
  height: 433px;
  overflow-y: scroll;
}
}



#main .nav-menu li {
  font-size: 18px;
}

/* 下部 */
#main .nav-footer {
  padding: 0 0 40px;
  text-align: center;
}

#main .close-bottom {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 20%;
}

/* PC */
@media screen and (min-width: 769px) {

  #main #hamburger {
    display: none;
  }

  #main #overlay {
    display: none;
  }

  #main #nav {
    position: fixed;
    top: 50px;
    left: auto;
    right: calc(50% - 700px);
    width: 320px;
    height: 100vh;
    border-radius: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    background: none;
  }
  #main .nav-header,
  #main .nav-footer {
    display: none;
  }

  #main {
    width: 700px;
    margin: auto;

  }
}

/* スクロール禁止 */
#main .no-scroll {
  overflow: hidden;
}

/* ダミー */
/* main {
  padding: 20px;
}
.section {
  height: 800px;
  background: #eee;
  margin-bottom: 20px;
} */

/* =========================
  フッター
========================= */

#main .footer-wrapper {
  background: url(/cp/feature/midorinohasha/img/bg_footer.jpg) no-repeat right center;
  margin: auto;
  padding: 42px 24px 294px;
  background-size: cover;
}

#main .footer-wrapper footer .inner {
  width: 100%;
}

#main .footer-wrapper footer .inner p {
  text-align: center;
  font-size: 24px;
}

#main .footer-wrapper footer .inner p a {
  display: inline;
  color: #000;
}

#main .footer-wrapper p {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
#main .footer-wrapper .cp {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  #main .footer-wrapper {
    padding: 32px 24px 210px;
  }
  #main .footer-wrapper footer .inner img {
    width: 76px;
  }
  #main .footer-wrapper footer .inner p {
    font-size: 14px;
  }
  #main .footer-wrapper .cp {
    margin-top: 16px;
  }
}