/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
@media (max-width: 1280px) {
  html {
    scroll-padding-top: 111px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  color: #333333;
}
body.not-scroll {
  overflow: hidden;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #205914;
  outline-offset: 2px;
}

button {
  cursor: pointer;
}

img {
  vertical-align: bottom;
}

main {
  margin-top: 100px;
}
@media (max-width: 1280px) {
  main {
    margin-top: 96px;
  }
}

.w-200 {
  width: 200px;
}

.mt-13 {
  margin-top: 13px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-44 {
  margin-bottom: 44px;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

main > section {
  padding: 80px 20px;
}
@media (max-width: 768px) {
  main > section {
    padding: 40px 20px;
  }
}
main > section .inner {
  max-width: 1000px;
  margin-inline: auto;
}

h2 {
  text-align: center;
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 21px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #d4aa47, #a2843d);
}
h2.title-white {
  color: #fff;
}
h2.title-blue {
  color: #295399;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid #295399;
  background-color: #fff;
  padding: 10px 30px;
  color: #295399;
  font-weight: bold;
}
.btn-blue::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../img/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.btn-blue.js-btn-more::after {
  transform: rotate(90deg);
}
.btn-blue.open::after {
  transform: rotate(270deg);
}

.btn-grn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid #205914;
  background-color: #fff;
  padding: 10px 30px;
  color: #205914;
  font-weight: bold;
}
.btn-grn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../img/arrow-grn.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.status-item {
  width: fit-content;
  margin: 0 auto 24px;
  padding: 6px 20px;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .status-item {
    font-size: 1.6rem;
  }
}
.status-item.start-koubo {
  background-color: #47C1D4;
  color: #fff;
}
.status-item.start-kouhu {
  background-color: #9356C0;
  color: #fff;
}
.status-item.end {
  background-color: #666666;
  color: #fff;
}

.footer-bottom {
  padding: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-bottom nav ul {
  display: flex;
  gap: 20px 80px;
}
.footer-bottom nav ul li {
  font-size: 1.4rem;
  position: relative;
}
.footer-bottom nav ul li::before {
  content: "-";
  margin-right: 0.5em;
}
.footer-bottom .copyright {
  font-size: 1.4rem;
}

.bread-crumb ul {
  display: flex;
  gap: 10px 16px;
  padding: 20px 20px 32px;
}
@media (max-width: 768px) {
  .bread-crumb ul {
    gap: 10px 8px;
    padding: 10px 10px 20px;
  }
}
.bread-crumb ul li:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 10px;
  display: inline-block;
  background-image: url(../img/arrow-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 13px;
}
@media (max-width: 768px) {
  .bread-crumb ul li:not(:last-child)::after {
    margin-left: 8px;
  }
}
.bread-crumb ul li a {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .bread-crumb ul li a {
    font-size: 1.2rem;
  }
}
.bread-crumb ul li a[href] {
  text-decoration: underline;
}
.bread-crumb ul li a[href]:hover {
  text-decoration: none;
}

.news .news-list {
  display: none;
  background-color: #fff;
  padding: 40px 30px 40px;
}
.news .news-list.open {
  display: block;
  max-height: 340px;
}
.news .news-list ul {
  max-width: 800px;
  margin-inline: auto;
}
.news .news-list ul li {
  display: flex;
  gap: 10px 35px;
  border-bottom: 1px solid #cccccc;
  padding-block-end: 20px;
}
@media (max-width: 768px) {
  .news .news-list ul li {
    flex-direction: column;
    gap: 10px 16px;
  }
}
.news .news-list ul li + li {
  padding-block-start: 20px;
}
.news .news-list ul li:last-child {
  border-bottom: none;
}
.news .news-list ul li .date {
  width: 130px;
  font-weight: bold;
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 2;
}
@media (max-width: 768px) {
  .news .news-list ul li .date {
    width: 100%;
    line-height: 1;
  }
}
.news .news-list ul li .news-text {
  flex-grow: 1;
  line-height: 2;
  font-size: 1.8rem;
}
.news .news-list ul li .news-text a {
  text-decoration: underline;
}
.news .news-list ul li .news-text strong {
  font-weight: bold;
}
.news .news-list ul li .news-text .caution {
  color: #cd0000;
}
.news .news-list ul li .text-small {
  font-size: 1.4rem;
  line-height: 1.5;
}
.news.top {
  background: linear-gradient(180deg, #274B86 0%, #3B5E9A 30.91%);
}
.news.top .news-list {
  margin-top: 55px;
}

.accordion-btn {
  width: 100%;
  background-color: #205914;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 16px 22px;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .accordion-btn {
    font-size: 2rem;
  }
}
.accordion-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  background-image: url(../img/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion-btn.open::after {
  background-image: url(../img/minus.svg);
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
  }
}

.title-underline {
  font-size: 2.4rem;
  font-weight: bold;
  padding-block: 10px;
  border-bottom: 3px solid #cccccc;
  position: relative;
  margin-bottom: 24px;
}
.title-underline::after {
  content: "";
  width: 130px;
  height: 3px;
  background: #205914;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.not-found-section {
  padding-block: 160px;
}
@media (max-width: 768px) {
  .not-found-section {
    padding-block: 100px;
  }
}

.not-found-title {
  text-align: center;
  position: relative;
  font-size: 6.4rem;
  font-weight: bold;
  padding-bottom: 21px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .not-found-title {
    font-size: 3.6rem;
  }
}
.not-found-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #d4aa47, #a2843d);
}

.not-found-text {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .not-found-text {
    font-size: 2.4rem;
  }
}

.not-found-link {
  margin-top: 100px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  .not-found-link {
    margin-top: 60px;
  }
}
.not-found-link a {
  text-decoration: underline;
}
.not-found-link a:hover {
  opacity: 0.7;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (max-width: 992px) {
  .header {
    display: block;
  }
}
.header.top {
  background-color: #f5f8fd;
}
.header .logo {
  display: flex;
  align-items: center;
  padding: 35px 20px;
}
@media (max-width: 992px) {
  .header .logo {
    padding: 28px 20px;
    border-bottom: 1px solid #cccccc;
  }
}
@media (max-width: 576px) {
  .header .logo {
    width: calc(100% - 50px);
    max-width: 300px;
    flex-wrap: wrap;
    gap: 10px 0;
    border-bottom: none;
    padding-block: 18px;
  }
}
.header .logo img {
  width: 100%;
  max-width: 260px;
}
.header .logo span {
  background-color: #E2E8DE;
  font-weight: bold;
  padding: 1px 18px;
  border-radius: 100px;
  margin-left: 13px;
  word-break: keep-all;
}
@media (max-width: 576px) {
  .header .logo span {
    margin-left: auto;
    font-size: 1.4rem;
  }
}
.header .main-menu {
  align-self: flex-end;
  padding-block: 6px;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .header .main-menu {
    padding-right: 70px;
  }
}
@media (max-width: 992px) {
  .header .main-menu {
    padding-block: 0;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .header .main-menu {
    border-top: 1px solid #cccccc;
  }
}
.header .main-menu > ul {
  display: flex;
}
.header .main-menu > ul > li {
  width: 200px;
  border-left: 1px solid #cccccc;
  text-align: center;
  padding-inline: 6px;
}
@media (max-width: 992px) {
  .header .main-menu > ul > li {
    padding-inline: 0;
    width: 50%;
  }
}
.header .main-menu > ul > li > a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  padding-block: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.header .main-menu > ul > li > a::before {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #205914;
  position: absolute;
  top: 0;
  left: 0;
  transform: translatex(100%) scale(0);
  transition: all 1s;
  z-index: -1;
}
.header .main-menu > ul > li > a:hover {
  color: #fff;
}
.header .main-menu > ul > li > a:hover::before {
  transform: translatex(0) scale(2);
}
.header .main-menu > ul > li.current > a {
  background-color: #205914;
  color: #fff;
}
.header .main-menu > ul > li.top > a::before {
  background-color: #295399;
}
.header .main-menu .mega-menu-open .mega-menu {
  background-color: rgba(255, 255, 255, 0.94);
  text-align: left;
  padding: 44px 46px 44px;
  position: fixed;
  top: 103px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1280px) {
  .header .main-menu .mega-menu-open .mega-menu {
    display: none;
  }
}
.header .main-menu .mega-menu-open .mega-menu.open {
  opacity: 1;
  visibility: visible;
}
.header .main-menu .mega-menu-open .mega-menu .mega-menu-close {
  position: absolute;
  top: 20px;
  right: 10px;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list {
  display: flex;
  gap: 32px;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-item {
  width: 210px;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-item-title {
  font-size: 1.8rem;
  color: #205914;
  font-weight: bold;
  padding-bottom: 9px;
  border-bottom: 3px solid #cccccc;
  margin-bottom: 10px;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-sub-list li:not(:last-child) {
  margin-bottom: 8px;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-sub-list li a {
  display: block;
  transition: all 0.2s ease-in-out;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-sub-list li a:hover:not([tabindex="-1"]) {
  color: #205914;
  font-weight: bold;
}
.header .main-menu .mega-menu-open .mega-menu .mega-list .mega-sub-list li a[tabindex="-1"] {
  color: #cccccc;
}
.header .main-menu .mega-menu-open .mega-menu.top .mega-item-title {
  color: #295399;
}
.header .main-menu .mega-menu-open .mega-menu.top .mega-item .mega-sub-list li a:hover:not([tabindex="-1"]) {
  color: #295399;
}
.header .contact {
  display: block;
  text-align: center;
}
@media (max-width: 1280px) {
  .header .contact {
    display: none;
  }
}
.header .contact > p {
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #f1f1f1;
  padding-block: 5px;
}
.header .contact .contact-list {
  display: flex;
  gap: 5px;
}
.header .contact .contact-list li {
  padding-block: 5px 10px;
}
.header .contact .contact-list li a {
  display: block;
}
.header .contact .contact-list li a p {
  background-color: #c6dcb7;
  color: #205914;
  font-weight: 500;
  padding: 2px 4px;
  margin-bottom: 5px;
  font-size: 1.2rem;
  white-space: nowrap;
}
.header .contact .contact-list li a p.top {
  background-color: #295399;
  color: #fff;
}
.header .contact .contact-list li a img {
  vertical-align: baseline;
  width: 15px;
  height: 15px;
}
.header .contact .contact-list li a span {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin-inline-end: 10px;
}
.header .contact.top > p {
  background-color: #f1f1f1;
}
.header .menu-btn {
  display: none;
  position: absolute;
  top: 26px;
  right: 20px;
  width: 30px;
  height: 26px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .header .menu-btn {
    top: 18px;
  }
}
.header .menu-btn.top span {
  background-color: #295399;
}
.header .menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #205914;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.header .menu-btn span:nth-child(1) {
  top: 0;
}
.header .menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .menu-btn span:nth-child(3) {
  bottom: 0;
}
.header .menu-btn.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
}
.header .menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.header .menu-btn.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-225deg);
}
@media (max-width: 1280px) {
  .header .menu-btn {
    display: inline-block;
  }
}
.header .main-menu-sp {
  display: none;
  position: fixed;
  top: 123px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 50px 20px;
  height: calc(100vh - 88px);
  overflow-y: auto;
  z-index: 10;
}
.header .main-menu-sp.open {
  display: block;
}
@media (max-width: 1280px) {
  .header .main-menu-sp {
    top: 96px;
  }
}
@media (max-width: 992px) {
  .header .main-menu-sp {
    top: 123px;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp {
    top: 93px;
    padding-block: 20px;
  }
}
.header .main-menu-sp > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .header .main-menu-sp > ul {
    gap: 10px;
  }
}
.header .main-menu-sp > ul > li {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  .header .main-menu-sp > ul > li {
    width: 100%;
  }
}
.header .main-menu-sp > ul > li > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #205914;
  color: #fff;
  padding: 20px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .header .main-menu-sp > ul > li > p {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp > ul > li > p {
    font-size: 2rem;
    padding-block: 10px;
  }
}
.header .main-menu-sp > ul > li > p > button {
  display: none;
}
@media (max-width: 768px) {
  .header .main-menu-sp > ul > li > p > button {
    display: block;
    width: 32px;
    height: 32px;
  }
  .header .main-menu-sp > ul > li > p > button::before {
    content: "";
    display: block;
    background-image: url("../img/plus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
}
.header .main-menu-sp > ul > li > p > button svg {
  width: 100%;
  height: 100%;
}
.header .main-menu-sp > ul > li > p.open > button::before {
  background-image: url("../img/minus.svg");
}
.header .main-menu-sp > ul > li .sub-menu {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .header .main-menu-sp > ul > li .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .header .main-menu-sp > ul > li .sub-menu.open {
    max-height: 500px;
  }
}
.header .main-menu-sp > ul > li .sub-menu li {
  border-bottom: 1px solid #cccccc;
}
.header .main-menu-sp > ul > li .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  font-size: 2rem;
  font-weight: medium;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header .main-menu-sp > ul > li .sub-menu li a {
    font-size: 2.4rem;
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp > ul > li .sub-menu li a {
    font-size: 1.6rem;
    padding: 13px;
  }
}
.header .main-menu-sp > ul > li .sub-menu li a:hover {
  color: #205914;
  font-weight: bold;
}
.header .main-menu-sp > ul > li .sub-menu li a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/chevron_forward.svg);
  background-size: contain;
  width: 8px;
  height: 12px;
}
.header .main-menu-sp > ul > li .sub-menu li a[tabindex="-1"] {
  color: #cccccc;
}
.header .main-menu-sp > ul > li .sub-menu li a[tabindex="-1"]::after {
  display: none;
}
@media (max-width: 576px) {
  .header .main-menu-sp.top {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
.header .main-menu-sp.top > ul > li > p {
  background-color: #295399;
}
.header .main-menu-sp.top > ul > li .sub-menu li a::after {
  background-image: url(../img/chevron_forward_blue.svg);
}
.header .main-menu-sp.top > ul > li .sub-menu li a:hover {
  color: #295399;
}
.header .main-menu-sp.top .menu-contact-sp h2 {
  color: #295399;
}
.header .main-menu-sp.top .menu-contact-sp > ul li a {
  background-color: #295399;
}
.header .main-menu-sp .menu-contact-sp {
  margin-top: 94px;
}
@media (max-width: 576px) {
  .header .main-menu-sp .menu-contact-sp {
    margin-top: 50px;
  }
}
.header .main-menu-sp .menu-contact-sp h2 {
  font-size: 2.8rem;
  padding-bottom: 21px;
  color: #205914;
}
@media (max-width: 768px) {
  .header .main-menu-sp .menu-contact-sp h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp .menu-contact-sp h2 {
    font-size: 2.4rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.header .main-menu-sp .menu-contact-sp > p {
  text-align: center;
}
.header .main-menu-sp .menu-contact-sp > p span {
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .header .main-menu-sp .menu-contact-sp > p span {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp .menu-contact-sp > p span {
    font-size: 1.8rem;
  }
}
.header .main-menu-sp .menu-contact-sp > p span.not-bold {
  font-weight: normal;
}
.header .main-menu-sp .menu-contact-sp > ul {
  margin-top: 20px;
}
.header .main-menu-sp .menu-contact-sp > ul li:not(:last-child) {
  margin-bottom: 8px;
}
.header .main-menu-sp .menu-contact-sp > ul li a {
  display: block;
  background-color: #205914;
  color: #fff;
  font-weight: bold;
  padding: 13px;
  text-align: center;
}
.header .main-menu-sp .menu-contact-sp > ul li a p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .header .main-menu-sp .menu-contact-sp > ul li a p {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp .menu-contact-sp > ul li a p {
    font-size: 1.8rem;
  }
}
.header .main-menu-sp .menu-contact-sp > ul li a span {
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .header .main-menu-sp .menu-contact-sp > ul li a span {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .header .main-menu-sp .menu-contact-sp > ul li a span {
    font-size: 2.8rem;
  }
}
.header .main-menu-sp .menu-contact-sp > ul li a img {
  width: 28px;
  vertical-align: baseline;
  margin-right: 8px;
}
.header .main-menu-sp .footer-links {
  padding-block: 89px 34px;
}
@media (max-width: 576px) {
  .header .main-menu-sp .footer-links {
    padding: 20px;
  }
}
.header .main-menu-sp .footer-links ul {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}
@media (max-width: 576px) {
  .header .main-menu-sp .footer-links ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.header .main-menu-sp .footer-links ul li {
  width: calc(25% - 16px);
}
@media (max-width: 576px) {
  .header .main-menu-sp .footer-links ul li {
    width: calc(50% - 10px);
  }
}
.header .main-menu-sp .footer-bottom {
  border-top: 1px solid #cccccc;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-bottom: 0;
}
@media (max-width: 576px) {
  .header .main-menu-sp .footer-bottom nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.main-visual {
  display: flex;
  align-items: center;
  background-color: #DBE9D2;
  background-image: url(../img/kv-each-biz.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom right;
  padding: 40px 5% 40px;
  aspect-ratio: 1440/310;
}
@media (max-width: 768px) {
  .main-visual {
    padding: 40px 30px;
  }
}
.main-visual .public-req {
  background-color: #fff;
  width: fit-content;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #205914;
  margin-bottom: 8px;
  margin-right: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main-visual .public-req {
    font-size: 2rem;
    padding: 0 20px;
  }
}
.main-visual .text-box {
  width: 100%;
}
.main-visual .text-box h1 {
  max-width: 543px;
}
@media (max-width: 768px) {
  .main-visual .text-box h1 {
    max-width: 400px;
    width: 90%;
  }
}
.main-visual .text-box h1 img {
  width: 100%;
}
.main-visual .text-box p {
  margin-top: 8px;
}
.main-visual .text-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #205914;
}
@media (max-width: 768px) {
  .main-visual .text-category {
    font-size: 2.4rem;
  }
}
.main-visual .text-category span {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .main-visual .text-category span {
    font-size: 1.4rem;
  }
}
.main-visual .main-visual-title {
  font-size: 4rem;
  font-weight: bold;
  color: #205914;
}
@media (max-width: 768px) {
  .main-visual .main-visual-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 576px) {
  .main-visual .main-visual-title {
    font-size: 2.8rem;
  }
}
.main-visual.top {
  background-color: #fff;
  background-image: url(../img/bg-mv.png);
  background-size: cover;
  background-position: top right;
  aspect-ratio: 1440/530;
  padding: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .main-visual.top {
    background-image: url(../img/bg-mv-sp.png);
    background-size: 100%;
    aspect-ratio: 750/450;
  }
}
@media (max-width: 576px) {
  .main-visual.top {
    padding-top: 60px;
  }
}
.main-visual.top .text-box {
  width: 60%;
  max-width: 543px;
  padding: 30px 30px;
}
@media (max-width: 768px) {
  .main-visual.top .text-box {
    width: 70%;
    min-width: 300px;
    padding: 30px 0;
  }
}
@media (max-width: 576px) {
  .main-visual.top .text-box h1 {
    width: 77%;
  }
}
.main-visual.r6h-top {
  background-color: #C6DCB7;
  background-image: url(../img/key-top.png);
  aspect-ratio: 1440/494;
}
@media (max-width: 768px) {
  .main-visual.r6h-top {
    background-image: url(../img/key-top-sp.png);
    aspect-ratio: 750/830;
    align-items: flex-start;
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .main-visual.r6h-top {
    padding-top: 45px;
    padding-inline: 20px;
    padding-bottom: 140px;
  }
}
@media (max-width: 576px) {
  .main-visual.r6h-top .text-box > p {
    font-size: 1.6rem;
  }
}
.main-visual.r6h-top .public-req {
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .main-visual.r6h-top .public-req {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .main-visual.r6h-top .public-req {
    font-size: 2rem;
  }
}
.main-visual.r6h-top .main-visual-title {
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  .main-visual.r6h-top .main-visual-title {
    font-size: 3.6rem;
  }
}

.implementation-year section {
  margin-top: 72px;
}
@media (max-width: 768px) {
  .implementation-year section {
    margin-top: 40px;
  }
}
.implementation-year section h3 {
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.implementation-year section.current > div {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .implementation-year section.current > div {
    flex-direction: column;
    gap: 16px;
  }
}
.implementation-year section.current > div .current-item {
  width: 50%;
  border: 3px solid #295399;
  padding: 12px 12px 12px;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(72, 72, 72, 0.2);
}
@media (max-width: 768px) {
  .implementation-year section.current > div .current-item {
    width: 100%;
  }
}
.implementation-year section.current > div .current-item .apply-status {
  margin-bottom: 10px;
}
.implementation-year section.current > div .current-item .apply-status a {
  display: block;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.implementation-year section.current > div .current-item .apply-status a:hover {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.implementation-year section.current > div .current-item h4 {
  background-color: #E9F1F9;
  border-radius: 10px;
}
.implementation-year section.current > div .current-item h4 a {
  display: block;
  padding: 33px 40px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.implementation-year section.current > div .current-item h4 a:hover {
  background-color: #C6E3F7;
  border-radius: 10px;
}
.implementation-year section.current > div .current-item h4 a span {
  color: #295399;
  font-weight: bold;
}
.implementation-year section.current > div .current-item h4 a span:first-child {
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .implementation-year section.current > div .current-item h4 a span:first-child {
    font-size: 2.4rem;
  }
}
.implementation-year section.current > div .current-item h4 a span:last-child {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .implementation-year section.current > div .current-item h4 a span:last-child {
    font-size: 1.6rem;
  }
}
.implementation-year section.current > div .current-item h4 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow-blue-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.implementation-year h3 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .implementation-year h3 {
    font-size: 2rem;
  }
}

.download-docs {
  font-weight: bold;
  text-decoration: underline;
}

.past-year .past-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  margin-bottom: 16px;
  max-height: 250px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 768px) {
  .past-year .past-list {
    flex-direction: column;
  }
}
.past-year .past-list::after {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgb(255, 255, 255));
  position: absolute;
  bottom: 0;
  left: 0;
}
.past-year .past-list.open {
  max-height: 2000px;
}
.past-year .past-list.open::after {
  opacity: 0;
  visibility: hidden;
}
.past-year .past-list li {
  width: calc(50% - 5px);
  border: 1px solid #DEDEDE;
  padding: 32px 32px;
}
@media (max-width: 768px) {
  .past-year .past-list li {
    width: 100%;
  }
}
.past-year .past-list li .past-status {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.past-year .past-list li .past-title {
  position: relative;
}
.past-year .past-list li .past-title a {
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
  color: #295399;
  transition: all 0.3s ease-in-out;
  padding-right: 30px;
}
.past-year .past-list li .past-title a:hover {
  opacity: 0.7;
}
.past-year .past-list li .past-title::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: baseline;
}
.past-year .past-list li .report-page a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.past-year .past-list li .report-page a:hover {
  opacity: 0.7;
}

.footer-top {
  background: linear-gradient(180deg, #274B86 0%, #3B5E9A 30.91%);
  padding: 53px 20px;
}
.footer-top .footer-top-inner {
  display: flex;
  justify-content: space-around;
  position: relative;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer-top .footer-top-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner::after {
    display: none;
  }
}
.footer-top .footer-top-inner > div {
  width: 50%;
  max-width: 326px;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner > div {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.footer-top .footer-top-inner > div h2 {
  font-size: 3.2rem;
  color: #fff;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner > div h2 {
    font-size: 2.4rem;
  }
}

.purpose .inner > p {
  line-height: 2.6;
}
.purpose .caution {
  background: #ffeaea;
  padding: 32px 24px;
  margin: 32px 0;
  text-align: left;
}
.purpose .caution .caution-badge {
  width: fit-content;
  margin-inline: auto;
  background: #fff;
  color: #333;
  font-weight: bold;
  border-radius: 24px;
  padding: 8px 24px;
  margin-bottom: 19px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
}
.purpose .caution .caution-title {
  color: #e53935;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 19px;
  text-align: center;
}
.purpose .caution .caution-body {
  color: #333;
  line-height: 1.8;
}

.notice {
  background-color: #f1f1f1;
}

.business-type {
  background: #eef5ea;
}
.business-type .business-type-lead {
  max-width: 772px;
  margin-inline: auto;
  margin-bottom: 10px;
  line-height: 2.6;
  letter-spacing: 0.1em;
}
.business-type .business-block {
  background: #fff;
  margin-bottom: 10px;
  padding: 40px 24px 220px;
}
@media (max-width: 768px) {
  .business-type .business-block {
    padding: 40px 24px 330px;
  }
}
.business-type .business-block.open {
  max-height: 2300px;
  padding: 40px 24px;
}
.business-type .business-type-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 768px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .business-type .business-type-btns {
    flex-direction: column;
    gap: 10px;
  }
}
.business-type .business-type-btns .type-btn {
  flex: 1 1 45%;
  background: #fff;
  border: 1px solid #205914;
  padding: 18px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #205914;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 10px 0 rgba(32, 89, 20, 0.2);
}
.business-type .business-type-btns .type-btn:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/arrow-grn.svg") no-repeat center/contain;
  margin-left: 8px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.business-type .business-type-btns .type-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #205914;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.business-type .business-type-btns .type-btn:hover {
  color: #fff;
}
.business-type .business-type-btns .type-btn:hover::before {
  width: 150%;
  height: 200%;
  right: -20%;
  z-index: -1;
}
.business-type .business-type-btns .type-btn:hover::after {
  background-image: url("../img/arrow-grn-revert.svg");
}
.business-type .business-type-btns .type-btn[tabindex="-1"] {
  border: 1px solid #cccccc;
  color: #cccccc;
  cursor: not-allowed;
  pointer-events: none;
}
.business-type .business-type-btns .type-btn[tabindex="-1"]::after {
  background-image: url("../img/arrow-disable.svg");
}
.business-type .business-schedule {
  margin-bottom: 40px;
  max-width: 800px;
  margin-inline: auto;
  letter-spacing: 0.1em;
}
.business-type .business-schedule h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .business-type .business-schedule h3 {
    font-size: 2.4rem;
  }
}
.business-type .business-schedule h3 + p {
  line-height: 2.6;
  margin-bottom: 32px;
}
.business-type .business-schedule table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .business-type .business-schedule table tr {
    display: flex;
    flex-direction: column;
  }
}
.business-type .business-schedule table tr.current {
  border: 2px solid #205914;
  animation: shine 2s alternate infinite;
  position: relative;
}
.business-type .business-schedule table th, .business-type .business-schedule table td {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 40px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .business-type .business-schedule table th, .business-type .business-schedule table td {
    padding: 10px 20px;
    width: 100%;
    border-bottom: none;
  }
}
.business-type .business-schedule table th {
  background: #eef5ea;
  width: 35%;
  font-weight: bold;
}
@media (max-width: 768px) {
  .business-type .business-schedule table th {
    width: 100%;
  }
}
.business-type .business-schedule table td {
  background: #fff;
}
@media (max-width: 768px) {
  .business-type .business-schedule table td {
    border-top: none;
  }
}
.business-type .business-schedule table tr:first-child th, .business-type .business-schedule table tr:first-child td {
  border-top: none;
}
@media (max-width: 768px) {
  .business-type .business-schedule table tr:first-child th {
    border-top: 1px solid #e0e0e0;
  }
}
.business-type .business-schedule table tr:last-child th, .business-type .business-schedule table tr:last-child td {
  border-bottom: none;
}
.business-type .business-schedule .business-notes {
  margin-top: 32px;
  list-style: disc;
  padding-left: 1.5em;
}
.business-type .business-schedule .business-notes li {
  line-height: 2;
}
.business-type .business-briefing {
  max-width: 800px;
  margin-inline: auto;
  padding-block: 40px;
}
.business-type .business-briefing h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .business-type .business-briefing h3 {
    font-size: 2.4rem;
  }
}
.business-type .business-briefing h3 + p {
  line-height: 2.6;
}
.business-type .business-briefing .briefing-detail {
  margin-bottom: 8px;
  padding-block: 20px;
}
.business-type .business-briefing .briefing-detail .briefing-title {
  font-size: 2.4rem;
  font-weight: bold;
  padding-block: 10px;
  border-bottom: 3px solid #cccccc;
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .business-type .business-briefing .briefing-detail .briefing-title {
    font-size: 2rem;
  }
}
.business-type .business-briefing .briefing-detail .briefing-title::after {
  content: "";
  width: 130px;
  height: 3px;
  background: #205914;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.business-type .business-briefing .briefing-date {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .business-type .business-briefing .briefing-date {
    font-size: 1.8rem;
  }
}
.business-type .business-briefing .briefing-end {
  color: #cd0000;
  font-weight: bold;
}
.business-type .business-briefing .briefing-note {
  line-height: 2;
}
.business-type .business-briefing .briefing-note-list {
  list-style: disc;
  padding-left: 1.5em;
}
.business-type .business-briefing .briefing-note-list li {
  line-height: 2;
}

.business-movie .movie-box {
  max-width: 800px;
  margin: 70px auto 0;
  display: none;
}
.business-movie .movie-box.current {
  display: block;
}
.business-movie .movie-box img {
  width: 100%;
  height: auto;
}
.business-movie .movie-box video {
  width: 100%;
  height: auto;
}
.business-movie .tab-movie {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.business-movie .tab-movie .movie-switch {
  flex: 1 1 calc(25% - 10px);
  text-align: center;
  padding: 10px 10px 40px;
  background: #608159;
  background-image: url(../img/btn-movie.png);
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
  aspect-ratio: 186/90;
}
@media (max-width: 768px) {
  .business-movie .tab-movie .movie-switch {
    flex: 1 1 calc(50% - 10px);
  }
}
.business-movie .tab-movie .movie-switch.current, .business-movie .tab-movie .movie-switch:hover {
  background-color: #205914;
  color: #fff;
}

@keyframes shine {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 89, 20, 0);
  }
  100% {
    box-shadow: 0 0 10px 3px rgba(32, 89, 20, 0.8);
  }
}
.download-step {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-inline: 20px;
  margin-block: 45px 80px;
}
@media (max-width: 768px) {
  .download-step {
    margin-block: 10px 40px;
  }
}
.download-step .step-item {
  display: flex;
  width: 240px;
  position: relative;
}
.download-step .step-item::before {
  content: "";
  width: calc(100% + 10px);
  height: 4px;
  background-color: #cccccc;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.download-step .step-item a {
  width: 100%;
  border: 1px solid #205914;
  border-radius: 5px;
  color: #205914;
  font-weight: bold;
  padding: 23px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .download-step .step-item a {
    padding: 10px;
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .download-step .step-item a {
    padding: 10px 4px;
    font-size: 1.1rem;
  }
}
.download-step .step-item a[tabindex="-1"] {
  border-color: #cccccc;
  color: #cccccc;
}
.download-step .step-item a[tabindex="-1"]::after {
  background-color: #cccccc;
}
.download-step .step-item a[tabindex="-1"]:hover {
  border-color: #cccccc;
  color: #cccccc;
}
.download-step .step-item a:hover {
  color: rgba(32, 89, 20, 0.7);
  border-color: rgba(32, 89, 20, 0.7);
}
.download-step .step-item a::after {
  content: "";
  width: 19px;
  height: 19px;
  background-color: #205914;
  border-radius: 50%;
  position: absolute;
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.download-step .step-item.current::after {
  content: "";
  width: calc(100% + 10px);
  height: 4px;
  background-color: #205914;
  position: absolute;
  bottom: -32px;
  left: -5px;
  transform: translateX(-50%);
}
.download-step .step-item.current:first-child::after {
  width: 50%;
  transform: translateX(0);
}
.download-step .step-item.current a {
  background-color: #205914;
  border-color: #205914;
  color: #fff;
}
.download-step .step-item.current a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 15.5px 0 15.5px;
  border-color: #205914 transparent transparent transparent;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.download-step .step-item.current a::after {
  background-color: #205914;
  box-shadow: 0 0 14px 4px rgba(132, 220, 162, 0.71);
  animation: circle-shine 2s alternate infinite;
}
.download-step .step-item.past::after {
  content: "";
  width: calc(100% + 10px);
  height: 4px;
  background-color: #205914;
  position: absolute;
  bottom: -32px;
  left: -5px;
  transform: translateX(-50%);
}
.download-step .step-item.past:first-child::after {
  width: 50%;
  transform: translateX(0);
}

.guidelines {
  background-color: #fafafa;
}
.guidelines.bg-white {
  background-color: #fff;
}
.guidelines .guideline-text {
  margin-block: 32px 24px;
}
.guidelines .guidline-list-box {
  background-color: #fff;
  padding: 30px 32px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box {
    padding: 16px;
  }
}
.guidelines .guidline-list-box .guidline-list li {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li {
    padding: 16px 0;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-tag {
  width: auto;
  min-width: 120px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-right: 32px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-tag {
    min-width: 100px;
    margin-right: 0;
    font-size: 1.4rem;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-tag.align-self-start {
  align-self: flex-start;
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-tag.common span {
  background-color: #cccccc;
  color: #000;
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-tag span {
  display: inline-block;
  width: 100%;
  background-color: #205914;
  color: #fff;
  padding: 7px 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-content {
  display: flex;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-content {
    flex-direction: column;
    gap: 8px;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-title {
    font-size: 1.6rem;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-desc {
  line-height: 1.8;
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link {
  align-self: center;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px;
  width: 168px;
  flex-shrink: 0;
  margin-left: 15px;
  box-shadow: 0 2px 10px 0 rgba(72, 72, 72, 0.2);
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-link {
    width: 110px;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 2px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-link a {
    font-size: 1.4rem;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href$=".pdf"]:hover {
  background-color: #fddcdc;
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/pdf.svg") no-repeat center/contain;
  margin-left: 19px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href$=".pdf"]::after {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".xls"]:hover {
  background-color: rgba(183, 236, 186, 0.55);
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".xls"]::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/excel.svg") no-repeat center/contain;
  margin-left: 19px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".xls"]::after {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".doc"]:hover {
  background-color: rgba(183, 201, 236, 0.55);
}
.guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".doc"]::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/word.svg") no-repeat center/contain;
  margin-left: 19px;
}
@media (max-width: 768px) {
  .guidelines .guidline-list-box .guidline-list li .guidline-list-link a[href*=".doc"]::after {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
}
.guidelines .guideline-materials {
  margin-bottom: 40px;
}

@keyframes circle-shine {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 89, 20, 0);
  }
  100% {
    box-shadow: 0 0 14px 4px rgba(132, 220, 162, 0.71);
  }
}
@media (max-width: 768px) {
  .faq-box {
    padding-inline: 20px;
  }
}
.faq-box dl dt, .faq-box dl dd {
  display: flex;
  align-items: center;
  position: relative;
}
.faq-box dl dt span, .faq-box dl dd span {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  margin-right: 27px;
}
@media (max-width: 768px) {
  .faq-box dl dt span, .faq-box dl dd span {
    font-size: 3rem;
    margin-right: 16px;
  }
}
.faq-box dl dt ul, .faq-box dl dd ul {
  padding-left: 24px;
  list-style: disc;
}
.faq-box dl dt a, .faq-box dl dd a {
  text-decoration: underline;
}
.faq-box dl dt a:hover, .faq-box dl dd a:hover {
  opacity: 0.6;
}
.faq-box dl dt {
  background-color: #f1f1f1;
  cursor: pointer;
  position: relative;
  padding: 24px 100px 24px 32px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .faq-box dl dt {
    padding: 16px 60px 16px 16px;
  }
}
.faq-box dl dt span {
  color: #205914;
}
.faq-box dl dt::after {
  content: "";
  width: 34px;
  height: 34px;
  background-image: url("../img/plus-grn.svg");
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq-box dl dt::after {
    right: 16px;
  }
}
.faq-box dl dt.open::after {
  background-image: url("../img/minus-grn.svg");
}
.faq-box dl dd {
  background-color: #fff;
  margin-bottom: 10px;
  padding-block: 0;
  padding-inline: 32px 100px;
  transition: all 0.3s linear;
}
@media (max-width: 768px) {
  .faq-box dl dd {
    padding-inline: 16px 16px;
  }
}
.faq-box dl dd.open {
  padding: 24px 100px 24px 32px;
  max-height: 1000px;
}
@media (max-width: 768px) {
  .faq-box dl dd.open {
    padding: 16px 30px 16px 16px;
  }
}

.faq-tab-box {
  display: flex;
  max-width: 1000px;
  margin-inline: auto;
  border-bottom: 4px solid #205914;
}
.faq-tab-box .faq-tab-btn {
  width: calc(50% - 10px);
  font-weight: bold;
  line-height: 1.3;
  padding: 24px 20px;
  margin: 0 10px;
  background-color: #f1f1f1;
  text-align: center;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s linear;
}
@media (max-width: 768px) {
  .faq-tab-box .faq-tab-btn {
    padding: 16px 10px;
  }
}
.faq-tab-box .faq-tab-btn.current {
  background-color: #205914;
  color: #fff;
}

.faq-wrapper {
  max-width: 1000px;
  margin-inline: auto;
  display: none;
}
.faq-wrapper.current {
  display: block;
}
.faq-wrapper section {
  padding-block: 80px 20px;
}
@media (max-width: 768px) {
  .faq-wrapper section {
    padding-block: 40px 20px;
  }
}
.faq-wrapper section:last-child {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .faq-wrapper section:last-child {
    padding-bottom: 40px;
  }
}

.faq-anchor {
  background-color: #fafafa;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 65px;
}
@media (max-width: 768px) {
  .faq-anchor {
    padding: 20px 20px;
  }
}
.faq-anchor a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(33.333% - 6.666px);
  border: 1px solid #205914;
  border-radius: 5px;
  background-color: #fff;
  padding: 15px 27px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 992px) {
  .faq-anchor a {
    width: calc(50% - 5px);
    padding: 10px 15px;
  }
}
@media (max-width: 576px) {
  .faq-anchor a {
    width: 100%;
  }
}
.faq-anchor a div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.faq-anchor a::after {
  content: "";
  width: 12px;
  height: 7px;
  background-image: url("../img/chevron_down.svg");
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
.faq-anchor a:hover::after {
  transform: translateY(-50%) rotate(360deg);
}
.faq-anchor.another a {
  background-color: #DBE9D2;
}
.faq-anchor.clm-4 {
  padding: 40px 30px;
}
.faq-anchor.clm-4 a {
  width: calc(25% - 7.5px);
  padding: 10px 15px;
}
@media (max-width: 992px) {
  .faq-anchor.clm-4 a {
    width: calc(50% - 5px);
    padding: 10px 15px;
  }
}
@media (max-width: 576px) {
  .faq-anchor.clm-4 a {
    width: 100%;
  }
}
.faq-anchor.clm-4 a:nth-of-type(3) {
  margin-right: 20px;
}
@media (max-width: 992px) {
  .faq-anchor.clm-4 a:nth-of-type(3) {
    margin-right: 0;
  }
}

.footer-cta {
  background: #eef5ea url("../img/footer_kv.svg") no-repeat center/cover;
  padding: 40px 20px 60px 20px;
  min-height: 400px;
  position: relative;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.footer-cta .footer-cta-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.footer-cta .footer-cta-box > p {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 21px;
}
.footer-cta .footer-cta-title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-title {
    font-size: 2.4rem;
  }
}
.footer-cta .footer-cta-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f7b500;
  margin: 24px auto 0 auto;
  border-radius: 2px;
}
.footer-cta .footer-cta-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 0;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-cta .footer-cta-phones .footer-cta-phone {
  flex: 1 1 300px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones .footer-cta-phone {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 500px;
    padding: 0;
  }
}
.footer-cta .footer-cta-phones .footer-cta-phone:not(:last-child) {
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones .footer-cta-phone:not(:last-child) {
    border-right: none;
  }
}
.footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-label {
  width: 100%;
  background: #217a2b;
  color: #fff;
  font-weight: bold;
  border-radius: 24px;
  padding: 6px 18px;
  margin-bottom: 12px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-label {
    font-size: 1.6rem;
  }
}
.footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-number {
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-number {
    font-size: 2.4rem;
  }
}
.footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-number img {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .footer-cta .footer-cta-phones .footer-cta-phone .footer-cta-number img {
    width: 20px;
    height: 20px;
  }
}
.footer-cta .footer-cta-desc {
  color: #333;
  font-weight: bold;
}
.footer-cta .footer-cta-info {
  color: #333;
  text-align: center;
}

.footer-links {
  padding: 56px 20px;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 46px;
}

.js-accordion-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}
.js-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.js-accordion-content.open {
  max-height: 2000px;
}
.js-accordion-content.open:is(.news-list) {
  overflow-y: scroll;
}

.news-list,
.business-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0;
}
.news-list.open,
.business-block.open {
  max-height: 2000px;
}

/*# sourceMappingURL=main.css.map */
