@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
header {
  width: 100%;
  height: 120px;
  border-bottom: 3px solid #0E9645;
  background: rgba(248, 252, 250, 0.8);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: clamp(1.25rem, -40rem + 45.83vw, 15rem);
  padding-right: clamp(1.25rem, -40rem + 45.83vw, 15rem);
  position: fixed;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-wrapper {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
header .header-wrapper .header-logo svg {
  width: 170px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .header-logo svg {
    width: 70px;
    height: 25px;
  }
}
header .header-wrapper .header-menu-wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.375rem + 2.08vw, 1.5rem);
  padding: 0;
}
@media screen and (max-width: 1280px) {
  header .header-wrapper .header-menu-wrapper {
    display: none;
  }
}
header .header-wrapper .header-menu-wrapper svg {
  transition: 0.3s;
}
header .header-wrapper .header-menu-wrapper .header-menu {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding-bottom: 10px;
  gap: 9px;
  border-radius: 6.4px;
  background: #FFF;
  box-shadow: 2px 2px 3px 0 #8F9690;
  width: 150px;
  height: 70px;
  cursor: pointer;
  transition: 0.3s;
}
header .header-wrapper .header-menu-wrapper .header-menu p {
  color: #393939;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.625rem, 0.411rem + 0.45vw, 0.813rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.48px;
  transition: 0.3s;
  text-decoration: none;
}
header .header-wrapper .header-menu-wrapper .header-menu:hover {
  background: #078F53;
  transition: 0.3s;
}
header .header-wrapper .header-menu-wrapper .header-menu:hover p {
  color: #FFF;
  transition: 0.3s;
}
header .header-wrapper .header-menu-wrapper .header-menu:hover svg path {
  fill: #FFF;
  transition: 0.3s;
}
header .header-wrapper .header-menu-wrapper .header-menu:hover #application path {
  stroke: #FFF;
  fill: #078F53;
  transition: 0.3s;
}
header .header-wrapper .hamburger-icon {
  display: none;
}
@media screen and (max-width: 1280px) {
  header .header-wrapper .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 22px;
    gap: 5px;
    cursor: pointer;
  }
  header .header-wrapper .hamburger-icon .hamburger-line {
    width: 100%;
    height: 3px;
    background: #0E9645;
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  header .header-wrapper .hamburger-icon {
    width: 22px;
    height: 12px;
    gap: 3px;
  }
}

.hamburger-open {
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: opcity 0.3s;
}
.hamburger-open .hamburger-open-wrapper {
  display: none;
}
.hamburger-open .hamburger-open-wrapper .hamburger-open-menu {
  display: none;
}
@media screen and (max-width: 1280px) {
  .hamburger-open {
    display: flex;
    justify-content: center;
    width: 100svw;
    height: 100svh;
    top: 0;
    margin-top: 120px;
    position: fixed;
    padding-bottom: 40px;
    opacity: 0;
    transition: 0.3s;
    background: rgba(248, 252, 250, 0.8);
    z-index: 1;
  }
}
@media screen and (max-width: 1280px) and (max-width: 768px) {
  .hamburger-open {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .hamburger-open .hamburger-open-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu {
    display: flex;
    gap: 9px;
    border-radius: 6.4px;
    background: #FFF;
    box-shadow: 2px 2px 3px 0px #8F9690;
    width: 375px;
    height: 44px;
    cursor: pointer;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu svg {
    margin: auto 0 auto 24px;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu p {
    text-decoration: none;
    color: #393939;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
    margin: auto 0;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu:hover {
    background: #078F53;
    transition: 0.3s;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu:hover p {
    color: #FFF;
    transition: 0.3s;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu:hover svg path {
    fill: #FFF;
    transition: 0.3s;
  }
  .hamburger-open .hamburger-open-wrapper .hamburger-open-menu:hover #application path {
    stroke: #FFF;
    fill: #078F53;
    transition: 0.3s;
  }
}

.hamburger-open.active {
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
  z-index: 9999;
}

footer {
  width: 100%;
  bottom: 0;
  background: #3A4439;
  padding: 20px 0 20px clamp(1.25rem, -40rem + 45.83vw, 15rem);
}
footer p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  color: #FFF;
  font-size: clamp(14px, 1.25vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 36px */
  letter-spacing: 0.72px;
  margin-bottom: 10px;
}
footer p:last-child {
  margin-bottom: 0;
}
footer p span {
  display: inline-block;
}

#measure-requirements {
  width: 100%;
  padding-bottom: 180px;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #measure-requirements {
    scroll-margin-top: 80px;
  }
}
@media screen and (max-width: 1280px) {
  #measure-requirements {
    padding-bottom: 120px;
  }
}
#measure-requirements .requirements-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
}
#measure-requirements .requirements-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #measure-requirements .requirements-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #measure-requirements .requirements-block .title {
    margin-bottom: 40px;
  }
}
#measure-requirements .requirements-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#measure-requirements .requirements-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #measure-requirements .requirements-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #measure-requirements .requirements-block .title h2 {
    font-size: 22px;
  }
}
#measure-requirements .requirements-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#measure-requirements .requirements-block .content {
  width: 63.4%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #measure-requirements .requirements-block .content {
    width: 90%;
  }
}
#measure-requirements .requirements-block .content .explanation {
  margin-bottom: 60px;
}
#measure-requirements .requirements-block .content .explanation p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  #measure-requirements .requirements-block .content .explanation p {
    font-size: 16px;
  }
}
#measure-requirements .requirements-block .content .explanation p a {
  color: black;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#measure-requirements .requirements-block .content .table table {
  border-spacing: 0;
}
#measure-requirements .requirements-block .content .table table th {
  padding: 24px 70px;
  background: #299053;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  #measure-requirements .requirements-block .content .table table th {
    padding: 18px 0;
  }
}
@media screen and (max-width: 768px) {
  #measure-requirements .requirements-block .content .table table th {
    font-size: 18px;
  }
}
#measure-requirements .requirements-block .content .table table td {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #measure-requirements .requirements-block .content .table table td {
    font-size: 15px;
  }
}
#measure-requirements .requirements-block .content .table table .section {
  width: 21.1%;
}
#measure-requirements .requirements-block .content .table table .exceptional {
  width: 79%;
  border-left: 1px solid white;
}
#measure-requirements .requirements-block .content .table table .center {
  text-align: center;
}
#measure-requirements .requirements-block .content .table table .block {
  padding: 25px 23px;
  background: white;
  border-right: 1px solid #BBB;
  border-bottom: 1px solid #BBB;
}
@media screen and (max-width: 1280px) {
  #measure-requirements .requirements-block .content .table table .block {
    padding: 18px 15px;
  }
}
#measure-requirements .requirements-block .content .table table .caption {
  background: #DDF1E5;
  padding: 7px;
}
#measure-requirements .requirements-block .content .table table .under-line {
  border-bottom: 1px solid #BBB;
}

#measure-contact {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background: rgba(217, 217, 217, 0.5);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #measure-contact {
    scroll-margin-top: 80px;
  }
}
#measure-contact .contact-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
}
#measure-contact .contact-block .table {
  width: 63.2%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table {
    width: 90%;
  }
}
#measure-contact .contact-block .table .title {
  width: 100%;
  height: 112px;
  background: white;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .title {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .title {
    height: 70px;
  }
}
#measure-contact .contact-block .table .title h2 {
  color: #299053;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .title h2 {
    font-size: 25px;
  }
}
#measure-contact .contact-block .table .title .line {
  width: 40px;
  height: 3px;
  background: #299053;
}
#measure-contact .contact-block .table .element {
  width: 100%;
  padding: 54px clamp(50px, 7.9vw, 153px);
  background: rgba(211, 219, 214, 0.75);
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element {
    padding: 40px 20px;
  }
}
#measure-contact .contact-block .table .element .element-block {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block {
    gap: 20px;
  }
}
#measure-contact .contact-block .table .element .element-block .content {
  width: 100%;
  padding: 24px clamp(25px, 20vw, 40px);
  background: white;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 0;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content {
    padding: 18px 25px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content {
    padding: 18px 15px;
  }
}
#measure-contact .contact-block .table .element .element-block .content .sub-title {
  width: clamp(530px, 31vw, 596px);
  border-bottom: 1px solid #A9A9A9;
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .sub-title {
    width: min(90%, 600px);
  }
}
#measure-contact .contact-block .table .element .element-block .content .sub-title h3 {
  color: #393939;
  font-size: clamp(18px, 1vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .sub-title h3 {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .sub-title h3 {
    line-height: 130%;
  }
}
#measure-contact .contact-block .table .element .element-block .content .caption {
  display: flex;
  margin-bottom: 11px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .caption {
    margin-bottom: 8px;
  }
}
#measure-contact .contact-block .table .element .element-block .content .caption div {
  width: 18px;
  height: 3px;
  margin-top: 17px;
  margin-right: 6px;
  background: #42815D;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .caption div {
    width: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .caption div {
    width: 12px;
    margin-top: 9px;
  }
}
#measure-contact .contact-block .table .element .element-block .content .caption p {
  color: #393939;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
}
#measure-contact .contact-block .table .element .element-block .content .caption p span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .caption p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .caption p {
    line-height: 130%;
  }
}
#measure-contact .contact-block .table .element .element-block .content .phone {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .phone {
    gap: 13px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .phone {
    gap: 10px;
  }
}
#measure-contact .contact-block .table .element .element-block .content .phone span {
  color: #636363;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .phone span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .phone span {
    font-size: 20px;
  }
}
#measure-contact .contact-block .table .element .element-block .content .mail {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .mail {
    gap: 13px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .mail {
    gap: 0;
  }
  #measure-contact .contact-block .table .element .element-block .content .mail svg {
    transform: scale(0.8) translateX(-6px);
  }
}
#measure-contact .contact-block .table .element .element-block .content .mail span {
  color: #636363;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  white-space: wrap;
}
@media screen and (max-width: 1280px) {
  #measure-contact .contact-block .table .element .element-block .content .mail span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #measure-contact .contact-block .table .element .element-block .content .mail span {
    font-size: 14px;
    transform: translateX(-6px);
  }
}
#measure-contact .contact-block .table .element .element-block .content .explanation {
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}

#application-destination {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 249px;
  padding-bottom: 69px;
  background: rgba(217, 217, 217, 0.5);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  #application-destination {
    padding-top: 150px;
  }
}
#application-destination .contact-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
}
#application-destination .contact-block .table {
  width: 63.2%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table {
    width: 90%;
  }
}
#application-destination .contact-block .table .title {
  width: 100%;
  height: 112px;
  background: #299053;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .title {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .title {
    height: 70px;
  }
}
#application-destination .contact-block .table .title h2 {
  color: white;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .title h2 {
    font-size: 25px;
  }
}
#application-destination .contact-block .table .title .line {
  width: 40px;
  height: 3px;
  background: white;
}
#application-destination .contact-block .table .element {
  width: 100%;
  background: white;
  padding: 59px 0;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element {
    padding: 40px 20px;
  }
}
#application-destination .contact-block .table .element .element-block {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
}
#application-destination .contact-block .table .element .element-block .text-block {
  width: clamp(600px, 48vw, 910px);
  margin-bottom: 42px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .text-block {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .text-block {
    width: 90%;
  }
}
#application-destination .contact-block .table .element .element-block .text-block p {
  color: #393939;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .text-block p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .text-block p {
    font-size: 14px;
  }
}
#application-destination .contact-block .table .element .element-block .address-block {
  width: 85%;
  display: flex;
  height: fit-content;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .address-block {
    width: 100%;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .address-block {
    flex-direction: column;
    gap: 20px;
  }
}
#application-destination .contact-block .table .element .element-block .address-block .report-block {
  display: flex;
  width: calc(50% - 12px);
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 3px;
  border: 1px solid #D6D6D6;
  box-shadow: 0 2px 7px 0 rgba(170, 170, 170, 0.15);
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block {
    width: 100%;
  }
}
#application-destination .contact-block .table .element .element-block .address-block .report-block .address-content {
  height: 100%;
  margin: 24px 40px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block .address-content {
    margin: 24px 20px;
  }
}
#application-destination .contact-block .table .element .element-block .address-block .report-block .address-content h3 {
  color: #393939;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block .address-content h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block .address-content h3 {
    font-size: 16px;
  }
}
#application-destination .contact-block .table .element .element-block .address-block .report-block .address-content .line {
  width: 100%;
  height: 1px;
  background: #A9A9A9;
  margin-bottom: 12px;
}
#application-destination .contact-block .table .element .element-block .address-block .report-block .address-content span {
  color: #636363;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1280px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block .address-content span {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  #application-destination .contact-block .table .element .element-block .address-block .report-block .address-content span {
    font-size: 20px;
  }
}
#application-destination .contact-block .table .element .element-block .address-block .report-block .address-content p {
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.56px;
}

.page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}

.first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first-view {
    margin-top: 60px;
  }
}
.first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}

.contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
}
.contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
.contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
.contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
.contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}
.contents .contents-wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 1280px) {
  .contents .contents-wrapper {
    max-width: 95%;
  }
}

.main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
}
.main .flowchart {
  background: #F8F8F8;
  width: 100%;
  margin: 0 auto;
  max-width: 1923px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main .flowchart .flow-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 80%;
}
.main .flowchart .flow-text p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.904rem + 0.38vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
}
.main .flowchart .flow-text .text-small {
  font-size: clamp(0.75rem, 0.678rem + 0.29vw, 0.938rem);
  font-weight: 500;
  letter-spacing: 0.45px;
}
.main .flowchart #procedure-flow {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .main .flowchart #procedure-flow {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .main .flowchart #procedure-flow {
    display: none;
  }
}
.main .flowchart #procedure-flow-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .main .flowchart #procedure-flow-sp {
    display: block;
    width: min(300px, 70%);
  }
}
.main .flowchart #procedure-flow-tb {
  display: none;
}
@media screen and (max-width: 1280px) {
  .main .flowchart #procedure-flow-tb {
    display: block;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .main .flowchart #procedure-flow-tb {
    display: none;
  }
}
.main .procedure-caution {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  background: #F8F8F8;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .main .procedure-caution {
    scroll-margin-top: 10px;
  }
}
.main .procedure-caution .caution-wrapper {
  width: 1440px;
  max-width: 90%;
  display: flex;
  padding: clamp(0.625rem, 0.288rem + 1.35vw, 1.5rem) clamp(0.625rem, -0.096rem + 2.88vw, 2.5rem) clamp(2.5rem, 1.779rem + 2.88vw, 4.375rem) clamp(0.625rem, -0.096rem + 2.88vw, 2.5rem);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FFE6B0;
}
.main .procedure-caution .caution-wrapper .caution-title {
  display: flex;
  gap: 12px;
}
.main .procedure-caution .caution-wrapper .caution-title .caution-icon {
  width: clamp(1.563rem, 1.37rem + 0.77vw, 2.063rem);
  height: clamp(1.563rem, 1.37rem + 0.77vw, 2.063rem);
  color: #FFF;
  text-align: center;
  font-family: "DNP ShueiMGoStd";
  font-size: clamp(1.063rem, 0.894rem + 0.67vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.724px;
  border-radius: 23.341px;
  background: #FF5C5C;
  margin: auto 0;
}
.main .procedure-caution .caution-wrapper .caution-title p {
  margin: auto 0;
  color: #4B4B4B;
  font-family: "Noto Sans JP";
  font-size: clamp(0.938rem, 0.481rem + 1.83vw, 2.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.02px;
}
.main .procedure-caution .caution-wrapper .caution-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #FFF;
  padding: clamp(0.625rem, -0.144rem + 3.08vw, 2.625rem) clamp(0.625rem, -0.721rem + 5.38vw, 4.125rem);
}
.main .procedure-caution .caution-wrapper .caution-text li {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.688rem, 0.471rem + 0.87vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 38px */
  letter-spacing: 1px;
  list-style: none;
}
.main .procedure-caution .caution-wrapper .caution-text li span {
  font-size: clamp(0.625rem, 0.481rem + 0.58vw, 1rem);
  letter-spacing: 0.8px;
}
.main .procedure-caution .caution-wrapper .caution-text .thin-text {
  color: var(--, #393939);
  font-family: "Noto Sans JP";
  font-size: clamp(0.688rem, 0.471rem + 0.87vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.6px;
}
.main .procedure-caution .caution-wrapper .caution-text .thin-text span {
  font-size: clamp(0.625rem, 0.481rem + 0.58vw, 1rem);
  letter-spacing: 0.48px;
}
.main .about-exceptional-case {
  padding-top: 80px;
  background: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .main .about-exceptional-case {
    scroll-margin-top: 0;
  }
}
.main .about-exceptional-case .exceptional-case-wrapper {
  width: 1440px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-title {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.913rem + 1.35vw, 2.125rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  text-align: center;
}
.main .about-exceptional-case .exceptional-case-wrapper .under-line {
  width: 40px;
  height: 3px;
  border-radius: 6px;
  background: #838383;
  margin-top: 16px;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-text {
  margin: 40px 0 40px 0;
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.558rem + 0.77vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 36px */
  letter-spacing: 0.6px;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table-title {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.938rem, 0.721rem + 0.87vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: 0.72px;
  align-self: flex-start;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table th {
  text-align: center;
  padding: 10px;
  background: #299053;
  color: #FFF;
  border-right: 1px solid #FFF;
  text-align: center;
  font-family: "Inter";
  font-size: clamp(0.938rem, 0.721rem + 0.87vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table td {
  text-align: center;
  padding: 10px;
  border: 1px solid #BBB;
  background: #FFF;
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.668rem + 0.58vw, 1.188rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table td span {
  color: #E62525;
  font-weight: 700;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table tr > :first-child {
  width: clamp(6.25rem, 3.846rem + 9.62vw, 12.5rem);
  border-bottom: 1px solid #BBB;
  background: #DDF1E5;
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.644rem + 0.67vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.main .about-exceptional-case .exceptional-case-wrapper .case-table tr .small {
  font-size: clamp(0.813rem, 0.716rem + 0.38vw, 1.063rem);
}
.main .exceptional-case-application {
  padding-top: 20px;
  padding-bottom: 110px;
  margin-bottom: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F8F8F8;
  scroll-margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .main .exceptional-case-application {
    scroll-margin-top: 0;
    margin-bottom: 200px;
  }
}
.main .exceptional-case-application .case-application-wrapper {
  width: 1440px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main .exceptional-case-application .case-application-wrapper .application-title {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.913rem + 1.35vw, 2.125rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  text-align: center;
}
.main .exceptional-case-application .case-application-wrapper .under-line {
  width: 40px;
  height: 3px;
  border-radius: 6px;
  background: #838383;
  margin-top: 16px;
}
.main .exceptional-case-application .case-application-wrapper .application-texts {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.main .exceptional-case-application .case-application-wrapper .application-texts .content-text {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.692rem + 0.48vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.54px;
}
.main .exceptional-case-application .case-application-wrapper .application-texts .content-text span {
  font-size: clamp(0.938rem, 0.817rem + 0.48vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.6px;
}
.main .exceptional-case-application .case-application-wrapper .application-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.main .exceptional-case-application .case-application-wrapper .application-buttons .page-button {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(0.625rem, 0.385rem + 0.96vw, 1.25rem) clamp(0.813rem, 0.043rem + 3.08vw, 2.813rem);
  gap: 10px;
  border-radius: 6px;
  background: #078F53;
  box-shadow: 0 4px 8px 0 rgba(133, 128, 128, 0.25);
  cursor: pointer;
}
.main .exceptional-case-application .case-application-wrapper .application-buttons .page-button p {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(0.938rem, 0.769rem + 0.67vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main .exceptional-case-application .case-application-wrapper .application-buttons .page-button .icon-background {
  background: #FFF;
  border-radius: 50%;
  width: clamp(1.563rem, 1.202rem + 1.44vw, 2.5rem);
  height: clamp(1.563rem, 1.202rem + 1.44vw, 2.5rem);
}
.main .exceptional-case-application .case-application-wrapper .application-buttons .page-button .icon-background svg {
  width: clamp(0.813rem, 0.644rem + 0.67vw, 1.25rem);
  height: clamp(0.813rem, 0.644rem + 0.67vw, 1.25rem);
  margin: clamp(0.375rem, 0.279rem + 0.38vw, 0.625rem);
}

#general-measure {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#general-measure .page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}
#general-measure .first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #general-measure .first-view {
    margin-top: 60px;
  }
}
#general-measure .first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}
#general-measure .main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
}
#general-measure .contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
  margin-bottom: 60px;
}
#general-measure .contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  #general-measure .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
#general-measure .contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
#general-measure .contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #general-measure .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
#general-measure .contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
#general-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
#general-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
#general-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
#general-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}
#general-measure .contents .contents-wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 1280px) {
  #general-measure .contents .contents-wrapper {
    max-width: 95%;
  }
}
#general-measure #general-flow {
  width: 100%;
  margin-bottom: 60px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow {
    scroll-margin-top: 80px;
  }
}
#general-measure #general-flow .flow-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block {
    padding-bottom: 27px;
  }
}
#general-measure #general-flow .flow-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .title {
    margin-bottom: 40px;
  }
}
#general-measure #general-flow .flow-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#general-measure #general-flow .flow-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .title h2 {
    font-size: 22px;
  }
}
#general-measure #general-flow .flow-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#general-measure #general-flow .flow-block .flow-content {
  display: block;
  width: min(60vw, 1150px);
  margin-left: 13%;
  gap: 0;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content {
    width: 75vw;
    margin-left: 4vw;
  }
}
#general-measure #general-flow .flow-block .flow-content .application {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application {
    padding-bottom: 40px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .line {
  position: absolute;
  top: 0;
  left: 1px;
  transform: translateX(-0.8vw);
  width: 0.8vw;
  height: 100%;
  background: #299053;
}
#general-measure #general-flow .flow-block .flow-content .application .line .frame {
  position: relative;
  width: 100%;
  height: 100%;
}
#general-measure #general-flow .flow-block .flow-content .application .line .frame svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% - 1px));
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .line .frame svg {
    transform: translateX(-50%) translateY(calc(100% - 15px)) scale(0.5);
  }
}
#general-measure #general-flow .flow-block .flow-content .application .sub-title {
  width: min(32.4vw, 622px);
  height: clamp(50px, 5.2vw, 100px);
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #299053;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .sub-title {
    width: 200px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .sub-title h3 {
  color: #FFF;
  font-size: min(2vw, 40px);
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .sub-title h3 {
    font-size: 25px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step {
  position: relative;
  width: min(32.4vw, 622px);
  height: 50px;
  display: flex;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step {
    width: 260px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step .point {
  position: absolute;
  display: block;
  z-index: 3;
  top: 0;
  left: -30px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .point {
    left: -25px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .point {
    display: none;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step .num {
  width: min(16.2vw, 311px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #299053;
  border-radius: 0 99px 99px 0;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .num {
    width: 175px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .num {
    width: 110px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step .num span {
  color: #FFFFFF;
  text-align: center;
  font-size: min(1.3vw, 25px);
  font-weight: 700;
  line-height: 180%; /* 45px */
  letter-spacing: 0.75px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .num span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .num span {
    font-size: 14px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step .deadline {
  width: calc(16.2vw + 30px);
  max-width: 343px;
  height: 100%;
  margin-left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6FB88E;
  border-radius: 0 99px 99px 0;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .deadline {
    width: 205px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .deadline {
    width: 180px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .step .deadline span {
  transform: translateX(15px);
  color: #FFF;
  text-align: center;
  font-size: min(23px, 1.2vw);
  font-weight: 700;
  line-height: 180%; /* 41.4px */
  letter-spacing: 0.69px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .deadline span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .step .deadline span {
    font-size: 14px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation {
  position: relative;
  width: 100%;
  padding: 66px 2vw 35px;
  margin-top: -25px;
  margin-bottom: 50px;
  background: rgba(211, 219, 214, 0.75);
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation {
    padding: 50px 2vw 25px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container {
  position: relative;
  width: 100%;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp {
  display: flex;
  align-items: center;
  gap: 1.45vw;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp {
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
    gap: 10px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption {
  width: min(270px, 14.5vw);
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption {
    width: 100%;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block {
  width: fit-content;
  padding: 8px min(28px, 1.46vw);
  background: white;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
  color: #078F53;
  font-size: min(1.2vw, 23px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.69px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
    font-size: 15px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp p {
  color: #000;
  font-size: min(0.93vw, 20px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp p {
    font-size: 14px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .container-exp p span {
  color: #EA0707;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .link {
  width: 100%;
  display: flex;
  justify-content: end;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .link a {
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  cursor: pointer;
  border-bottom: 1px solid #424C98;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .container .link a span {
  color: #424C98;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .first {
  padding-bottom: 30px;
  border-bottom: 1px solid #42815D;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .second {
  margin-top: 30px;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-title {
  position: absolute;
  top: -20px;
  right: -1.5vw;
  width: clamp(50px, 11.7vw, 225px);
  height: clamp(40px, 5.2vw, 100px);
  transform: translateX(100%) translateY(-100%);
  background: #299053;
  display: flex;
  align-items: center;
  justify-content: center;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-title p {
  color: #FFF;
  font-size: clamp(18px, 1.23vw, 23px);
  font-weight: 700;
  line-height: 180%; /* 41.4px */
  letter-spacing: 0.69px;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-title p {
    font-size: 14px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-pre {
  position: absolute;
  top: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 400px;
  transform: translateX(100%);
  border: 5px solid #DC0001;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-pre {
    border: 3px solid #DC0001;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-pre {
    border: 2px solid #DC0001;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-pre span {
  color: #DC0001;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-pre span {
    font-size: 15px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-tax {
  position: absolute;
  bottom: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 150px;
  transform: translateX(calc(100% + 2vw)) translateY(100%);
  border: 5px solid #0027B2;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-tax {
    border: 2px solid #0027B2;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .request-tax span {
  color: #0027B2;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .request-tax span {
    font-size: 15px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit {
  position: absolute;
  top: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 400px;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.9vw, 18px);
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit span {
  color: #DC0001;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit span {
    font-size: 15px;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  background: #FFF;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .pre {
  border: 5px solid #DC0001;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .pre {
    border: 3px solid #DC0001;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .pre {
    border: 2px solid #DC0001;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .tax {
  border: 5px solid #0027B2;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .tax {
    border: 2px solid #0027B2;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-submit .tax span {
  color: #0027B2;
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-tax {
  position: absolute;
  bottom: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 230px;
  transform: translateX(100%);
  border: 5px solid #0027B2;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-tax {
    border: 2px solid #0027B2;
  }
}
#general-measure #general-flow .flow-block .flow-content .application .explanation .after-tax span {
  color: #0027B2;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #general-measure #general-flow .flow-block .flow-content .application .explanation .after-tax span {
    font-size: 15px;
  }
}
#general-measure #general-flow .flow-block .flow-content .after .line {
  background: #12532C;
}
#general-measure #general-flow .flow-block .flow-content .after .sub-title {
  background: #12532C;
}
#general-measure #general-flow .flow-block .flow-content .after .step .num {
  background: #12532C;
}
#general-measure #general-flow .flow-block .flow-content .after .explanation .container .link {
  width: initial;
  margin-left: auto;
}

#exceptional-measure {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#exceptional-measure .page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}
#exceptional-measure .first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #exceptional-measure .first-view {
    margin-top: 60px;
  }
}
#exceptional-measure .first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}
#exceptional-measure .main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
}
#exceptional-measure .contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
  margin-bottom: 60px;
}
#exceptional-measure .contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  #exceptional-measure .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
#exceptional-measure .contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
#exceptional-measure .contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #exceptional-measure .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
#exceptional-measure .contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
#exceptional-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
#exceptional-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
#exceptional-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
#exceptional-measure .contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}
#exceptional-measure .contents .contents-wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure .contents .contents-wrapper {
    max-width: 95%;
  }
}
#exceptional-measure #exceptional-flow {
  width: 100%;
  margin-bottom: 60px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow {
    scroll-margin-top: 80px;
  }
}
#exceptional-measure #exceptional-flow .flow-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block {
    padding-bottom: 27px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .title {
    margin-bottom: 40px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#exceptional-measure #exceptional-flow .flow-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .title h2 {
    font-size: 22px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content {
  display: block;
  width: min(60vw, 1150px);
  margin-left: 13%;
  gap: 0;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content {
    width: 75vw;
    margin-left: 4vw;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application {
    padding-bottom: 40px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .line {
  position: absolute;
  top: 0;
  left: 1px;
  transform: translateX(-0.8vw);
  width: 0.8vw;
  height: 100%;
  background: #299053;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .line .frame {
  position: relative;
  width: 100%;
  height: 100%;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .line .frame svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% - 1px));
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .line .frame svg {
    transform: translateX(-50%) translateY(calc(100% - 15px)) scale(0.5);
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .sub-title {
  width: min(32.4vw, 622px);
  height: clamp(50px, 5.2vw, 100px);
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #299053;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .sub-title {
    width: 200px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .sub-title h3 {
  color: #FFF;
  font-size: min(2vw, 40px);
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .sub-title h3 {
    font-size: 25px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step {
  position: relative;
  width: min(32.4vw, 622px);
  height: 50px;
  display: flex;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step {
    width: 260px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .point {
  position: absolute;
  display: block;
  z-index: 3;
  top: 0;
  left: -30px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .point {
    left: -25px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .point {
    display: none;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num {
  width: min(16.2vw, 311px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #299053;
  border-radius: 0 99px 99px 0;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num {
    width: 175px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num {
    width: 110px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num span {
  color: #FFFFFF;
  text-align: center;
  font-size: min(1.3vw, 25px);
  font-weight: 700;
  line-height: 180%; /* 45px */
  letter-spacing: 0.75px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .num span {
    font-size: 14px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline {
  width: calc(16.2vw + 30px);
  max-width: 343px;
  height: 100%;
  margin-left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6FB88E;
  border-radius: 0 99px 99px 0;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline {
    width: 205px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline {
    width: 180px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline span {
  transform: translateX(15px);
  color: #FFF;
  text-align: center;
  font-size: min(23px, 1.2vw);
  font-weight: 700;
  line-height: 180%; /* 41.4px */
  letter-spacing: 0.69px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .step .deadline span {
    font-size: 14px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation {
  position: relative;
  width: 100%;
  padding: 66px 2vw 35px;
  margin-top: -25px;
  margin-bottom: 50px;
  background: rgba(211, 219, 214, 0.75);
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation {
    padding: 50px 2vw 25px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container {
  position: relative;
  width: 100%;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp {
  display: flex;
  align-items: center;
  gap: 1.45vw;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp {
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
    gap: 10px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption {
  width: min(270px, 14.5vw);
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption {
    width: 100%;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block {
  width: fit-content;
  padding: 8px min(28px, 1.46vw);
  background: white;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
  color: #078F53;
  font-size: min(1.2vw, 23px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.69px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp .caption .caption-block span {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp p {
  color: #000;
  font-size: min(0.93vw, 20px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp p {
    font-size: 14px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .container-exp p span {
  color: #EA0707;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .margin-b {
  margin-bottom: 15px;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .link {
  width: 100%;
  display: flex;
  justify-content: end;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .link a {
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  cursor: pointer;
  border-bottom: 1px solid #424C98;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .container .link a span {
  color: #424C98;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .first {
  padding-bottom: 30px;
  border-bottom: 1px solid #42815D;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .second {
  margin-top: 30px;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-title {
  position: absolute;
  top: -20px;
  right: -1.5vw;
  width: clamp(50px, 11.7vw, 225px);
  height: clamp(40px, 5.2vw, 100px);
  transform: translateX(100%) translateY(-100%);
  background: #299053;
  display: flex;
  align-items: center;
  justify-content: center;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-title p {
  color: #FFF;
  font-size: clamp(18px, 1.23vw, 23px);
  font-weight: 700;
  line-height: 180%; /* 41.4px */
  letter-spacing: 0.69px;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-title p {
    font-size: 14px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-pre {
  position: absolute;
  top: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 400px;
  transform: translateX(100%);
  border: 5px solid #DC0001;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-pre {
    border: 3px solid #DC0001;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-pre {
    border: 2px solid #DC0001;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-pre span {
  color: #DC0001;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-pre span {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-tax {
  position: absolute;
  bottom: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 150px;
  transform: translateX(calc(100% + 2vw)) translateY(100%);
  border: 5px solid #0027B2;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-tax {
    border: 2px solid #0027B2;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-tax span {
  color: #0027B2;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .request-tax span {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit {
  position: absolute;
  top: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 20px;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit span {
  color: #DC0001;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit span {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #FFF;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .pre {
  border: 5px solid #DC0001;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .pre {
    border: 3px solid #DC0001;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .pre {
    border: 2px solid #DC0001;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .tax {
  border: 5px solid #0027B2;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .tax {
    border: 2px solid #0027B2;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-submit .tax span {
  color: #0027B2;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-tax {
  position: absolute;
  bottom: 0;
  right: -1.5vw;
  width: min(225px, 11.7vw);
  height: 230px;
  transform: translateX(100%);
  border: 5px solid #0027B2;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-tax {
    border: 3px solid #0027B2;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-tax {
    border: 2px solid #0027B2;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-tax span {
  color: #0027B2;
  font-size: clamp(20px, 1.56vw, 30px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-flow .flow-block .flow-content .application .explanation .after-tax span {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .after .line {
  background: #12532C;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .after .sub-title {
  background: #12532C;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .after .step .num {
  background: #12532C;
}
#exceptional-measure #exceptional-flow .flow-block .flow-content .after .explanation .container .link {
  width: initial;
  margin-left: auto;
}
#exceptional-measure #exceptional-plan {
  width: 100%;
  margin-bottom: 60px;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan {
    scroll-margin-top: 80px;
  }
}
#exceptional-measure #exceptional-plan .plan-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
}
#exceptional-measure #exceptional-plan .plan-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .title {
    margin-bottom: 40px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#exceptional-measure #exceptional-plan .plan-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .title h2 {
    font-size: 22px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#exceptional-measure #exceptional-plan .plan-block .content {
  width: 63.4%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content {
    width: 90%;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .title {
  width: 396px;
  height: 55px;
  border-radius: 30px;
  background: #299053;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .title {
    width: 280px;
    height: 45px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .title {
    width: 250px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .title h3 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  text-align: center;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 41.4px */
  letter-spacing: 0.69px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .title h3 {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .title h3 {
    font-size: 17px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .period {
  margin-bottom: 94px;
}
#exceptional-measure #exceptional-plan .plan-block .content .period p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .period p {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .period p {
    font-size: 15px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .period p span {
  font-weight: 700;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .attention {
  margin-bottom: 55px;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .attention p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .attention p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .attention p {
    font-size: 14px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .report .attention p a {
  cursor: pointer;
  color: #000;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .attention .asterisk {
  margin-bottom: 40px;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content {
  width: 100%;
  padding: 24px 40px;
  background: white;
  border-radius: 3px;
  border: 1px solid #D6D6D6;
  box-shadow: 0 2px 7px 0 rgba(170, 170, 170, 0.15);
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content {
    padding: 12px 20px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #078F53;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 19px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 {
    font-size: 16px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 .label {
  font-size: 30px;
}
@media screen and (max-width: 1280px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 .label {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 .label {
    font-size: 20px;
  }
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content h4 .text {
  line-height: 1.5;
  letter-spacing: 0.8px;
}
#exceptional-measure #exceptional-plan .plan-block .content .report .document .document-content p {
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.56px;
}

#annual-report {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#annual-report .page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}
#annual-report .first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #annual-report .first-view {
    margin-top: 60px;
  }
}
#annual-report .first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}
#annual-report .main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#annual-report .main .contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
  margin-bottom: 60px;
}
#annual-report .main .contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  #annual-report .main .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
#annual-report .main .contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
#annual-report .main .contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #annual-report .main .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
#annual-report .main .contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
#annual-report .main .contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
#annual-report .main .contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
#annual-report .main .contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
#annual-report .main .contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}
#annual-report .main .contents .contents-wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main .contents .contents-wrapper {
    max-width: 95%;
  }
}
#annual-report .main #report-schedule {
  width: 100%;
  margin-bottom: 60px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule {
    scroll-margin-top: 80px;
  }
}
#annual-report .main #report-schedule .schedule-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block {
    padding-bottom: 27px;
  }
}
#annual-report .main #report-schedule .schedule-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .title {
    margin-bottom: 40px;
  }
}
#annual-report .main #report-schedule .schedule-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#annual-report .main #report-schedule .schedule-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .title h2 {
    font-size: 22px;
  }
}
#annual-report .main #report-schedule .schedule-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#annual-report .main #report-schedule .schedule-block .schedule-content {
  width: clamp(720px, 63.4%, 1220px);
  margin: 0 auto;
  padding: 30px 0;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content {
    width: 100%;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm {
  width: clamp(680px, 45vw, 856px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm {
    width: 90%;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .sub-title {
  width: 100%;
  height: 37px;
  border-radius: 20px;
  background: #898989;
  display: flex;
  align-items: center;
  justify-content: center;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .sub-title h3 {
  color: #FFF;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.95px;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-date {
  width: 100%;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-date .schedule-category {
  width: fit-content;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-date .schedule-category h4 {
  color: #393939;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-date img {
  width: 100%;
  object-fit: cover;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-exp p {
  color: #393939;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-exp p {
    font-size: 14px;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-exp p span {
  font-weight: 700;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step {
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step {
    flex-direction: column;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step .reference-step-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step .reference-step-block .schedule-category {
  width: fit-content;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step .reference-step-block .schedule-category h4 {
  color: #393939;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step .reference-step-block .caption p {
  color: #393939;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-step .reference-step-block .caption p {
    font-size: 14px;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table {
  border-collapse: collapse;
  width: 100%;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table th {
  white-space: nowrap;
  height: 40px;
  background-color: #007b33;
  border-right: 1px solid #FFF;
  color: white;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table th {
    padding: 2px;
    font-size: 14px;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table th:last-child {
  border-right: 0 solid #FFF;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table td {
  text-align: center;
  height: 40px;
  background: white;
  border-right: 1px solid #BBB;
  border-bottom: 1px solid #BBB;
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table td {
    font-size: 14px;
  }
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table .right {
  border-right: 0 solid #BBB;
}
#annual-report .main #report-schedule .schedule-block .schedule-content .schedule-elm .reference-table .bottom {
  border-bottom: 0 solid #BBBBBB;
}
#annual-report .main #report-document {
  width: 100%;
  font-style: normal;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-document {
    scroll-margin-top: 80px;
  }
}
#annual-report .main #report-document a {
  cursor: pointer;
}
#annual-report .main #report-document .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-document .title {
    margin-bottom: 40px;
  }
}
#annual-report .main #report-document .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#annual-report .main #report-document .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-document .title h2 {
    font-size: 22px;
  }
}
#annual-report .main #report-document .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#annual-report .main #report-document .document-block {
  width: 100%;
  max-width: 1923px;
  margin: 0 auto;
  padding-bottom: 110px;
}
#annual-report .main #report-document .document-block .document-content {
  width: clamp(720px, 63.4%, 1220px);
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content {
    width: 90%;
  }
}
#annual-report .main #report-document .document-block .document-content .text-block {
  margin-bottom: 40px;
}
#annual-report .main #report-document .document-block .document-content .text-block p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}
#annual-report .main #report-document .document-block .document-content .text-block p a {
  font-size: 14px;
  color: #000;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#annual-report .main #report-document .document-block .document-content .text-block a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 135%;
}
#annual-report .main #report-document .document-block .document-content .tax_table {
  position: relative;
  margin: 50px auto 60px;
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox] {
  display: none;
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox]:checked ~ label {
  bottom: 0;
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox]:checked ~ label::before {
  content: "元に戻す";
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox]:checked ~ label::after {
  transform: rotate(180deg);
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox]:checked ~ .tax_table_container {
  height: auto;
  padding: 0 0 120px;
  transition: 0.5s;
}
#annual-report .main #report-document .document-block .document-content .tax_table input[type=checkbox]:checked ~ .tax_table_container::before {
  display: none;
}
#annual-report .main #report-document .document-block .document-content .tax_table label {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: 60px;
  margin: 0 auto;
  width: 380px;
  height: 90px;
  padding: 0 50px;
  color: #078F53;
  text-align: center;
  border: 1px solid #078F53;
  border-radius: 6px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px 0 rgba(133, 128, 128, 0.25);
  cursor: pointer;
  z-index: 1;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table label {
    padding: 0;
    width: 220px;
    height: 70px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table label::before {
  content: "提出書類の続きを見る";
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table label::before {
    font-size: 14px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table label::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url("images/application/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table label::after {
    width: 24px;
    height: 24px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table_container {
  position: relative;
  height: 800px;
  overflow: hidden;
}
#annual-report .main #report-document .document-block .document-content .tax_table_container::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(177deg, rgba(217, 217, 217, 0) -7.99%, #CED3D0 94.7%);
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures {
  width: 100%;
  border-collapse: collapse;
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures th[scope=col] {
  width: 50%;
  background: #299053;
  border: 1px solid white;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.72px;
  padding: 10px;
  height: 30px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures th[scope=col] {
    font-size: 16px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td {
  background: white;
  border: 1px solid #BBB;
  padding: 24px 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  letter-spacing: 0.48px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td {
    font-size: 14px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td a {
    font-size: 14px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td small {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
  color: #299053;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td small {
    font-size: 12px;
  }
}
#annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td strong {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .tax_table_container .taxes_measures td strong {
    font-size: 14px;
  }
}
#annual-report .main #report-document .document-block .document-content .document-exp p {
  color: #393939;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1280px) {
  #annual-report .main #report-document .document-block .document-content .document-exp p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #annual-report .main #report-document .document-block .document-content .document-exp p {
    font-size: 14px;
  }
}
#annual-report .main #report-document .document-block .document-content .document-exp p a {
  color: #393939;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#annual-report .main #report-document .document-block .document-content .document-exp .space {
  margin-bottom: 20px;
}

.main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
}
.main .contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
}
.main .contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .main .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
.main .contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
.main .contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
.main .contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
.main .contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
.main .contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
.main .contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
.main .contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}
.main .contents .contents-wrapper {
  max-width: 1000px;
}
@media screen and (max-width: 1280px) {
  .main .contents .contents-wrapper {
    max-width: 95%;
  }
}
.main .reference-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1923px;
  scroll-margin-top: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  .main .reference-container {
    padding: 30px 5% 0;
  }
}
.main .reference-container #reference {
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .main .reference-container #reference {
    scroll-margin-top: 80px;
  }
}
.main .reference-container .reference {
  width: 64%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference {
    width: 90%;
  }
}
.main .reference-container .reference .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0 0 40px;
}
.main .reference-container .reference .title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  border-radius: 6px;
  background: #838383;
}
.main .reference-container .reference .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1.02px;
  color: #299053;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference .title h2 {
    font-size: 20px;
  }
}
.main .reference-container .reference_container {
  width: 100%;
  padding: 30px 180px;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference_container {
    padding: 10px;
  }
}
.main .reference-container .reference_container li .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  border-radius: 20px;
  background: #898989;
  margin: 0 0 20px;
}
.main .reference-container .reference_container li .header p {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.95px;
  color: white;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference_container li .header p {
    font-size: 16px;
  }
}
.main .reference-container .reference_container li img {
  width: 100%;
  object-fit: cover;
  margin: 0 0 25px;
}
.main .reference-container .reference_container li .caption {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.main .reference-container .reference_container li .caption li {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.main .reference-container .reference_container li .caption li .deadline {
  width: fit-content;
  background: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .reference-container .reference_container li .caption li .deadline p {
  font-weight: 500;
}
.main .reference-container .reference_container li .caption li p {
  color: #393939;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference_container li .caption li p {
    font-size: 13px;
  }
}
.main .reference-container .reference .annotation {
  color: #393939;
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 180%;
  font-weight: 400;
}
.main .reference-container .reference .annotation span {
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .main .reference-container .reference .annotation {
    font-size: 14px;
  }
}
.main .submit-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1923px;
  scroll-margin-top: 60px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container {
    padding: 30px 5% 0;
  }
}
.main .submit-container #submit {
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .main .submit-container #submit {
    scroll-margin-top: 80px;
  }
}
.main .submit-container .submit {
  width: 64%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit {
    width: 90%;
  }
}
.main .submit-container .submit .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0 0 40px;
}
.main .submit-container .submit .title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  border-radius: 6px;
  background: #838383;
}
.main .submit-container .submit .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1.02px;
  color: #299053;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .title h2 {
    font-size: 20px;
  }
}
.main .submit-container .submit .intro {
  width: 100%;
  margin: 0 0 40px;
}
.main .submit-container .submit .intro li:nth-of-type(1) {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.36px;
  margin: 0 0 20px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .intro li:nth-of-type(1) {
    font-size: 14px;
  }
}
.main .submit-container .submit .intro li:nth-of-type(2) {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .intro li:nth-of-type(2) {
    font-size: 14px;
  }
}
.main .submit-container .submit .intro li:nth-of-type(2) p {
  margin: 0 0 0 20px;
}
.main .submit-container .submit .intro li:nth-of-type(2) p a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .intro li:nth-of-type(2) p a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .main .submit-container .submit .special_measures {
    padding-bottom: 50px;
  }
}
.main .submit-container .submit .special_measures h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.72px;
  margin: 0 0 12px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures h2 {
    font-size: 18px;
  }
}
.main .submit-container .submit .special_measures .formats {
  width: 100%;
  max-width: 1200px;
  border-collapse: collapse;
  border: 1px solid #F8F8F8;
}
.main .submit-container .submit .special_measures .formats th[scope=col] {
  background: #299053;
  border: 1px solid white;
  color: white;
  font-size: 22px;
  font-weight: 400;
  width: calc((100% - 190px) / 2);
  height: 72px;
  padding: 10px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .formats th[scope=col] {
    font-size: 16px;
    width: calc((100% - 80px) / 2);
  }
}
.main .submit-container .submit .special_measures .formats th[scope=row] {
  background: #DDF1E5;
  border: 1px solid #BBB;
  color: #393939;
  font-size: 22px;
  font-weight: 400;
  width: 190px;
  height: 120px;
  padding: 10px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .formats th[scope=row] {
    font-size: 16px;
    width: 80px;
  }
}
.main .submit-container .submit .special_measures .formats td {
  color: #393939;
  border: 1px solid #BBB;
  font-size: 19px;
  padding: 10px;
}
.main .submit-container .submit .special_measures .formats td a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 19px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .formats td {
    font-size: 14px;
  }
  .main .submit-container .submit .special_measures .formats td a {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .shareholder {
  width: fit-content;
  margin: 50px auto 0;
}
.main .submit-container .submit .special_measures .shareholder a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  letter-spacing: 0.48px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .shareholder a {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .tax {
  position: relative;
  margin: 50px auto 60px;
}
.main .submit-container .submit .special_measures .tax input[type=checkbox] {
  display: none;
}
.main .submit-container .submit .special_measures .tax input[type=checkbox]:checked ~ label {
  bottom: 0;
}
.main .submit-container .submit .special_measures .tax input[type=checkbox]:checked ~ label::before {
  content: "元に戻す";
}
.main .submit-container .submit .special_measures .tax input[type=checkbox]:checked ~ label::after {
  transform: rotate(180deg);
}
.main .submit-container .submit .special_measures .tax input[type=checkbox]:checked ~ .tax_container {
  height: auto;
  padding: 0 0 120px;
  transition: 0.5s;
}
.main .submit-container .submit .special_measures .tax input[type=checkbox]:checked ~ .tax_container::before {
  display: none;
}
.main .submit-container .submit .special_measures .tax label {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: 60px;
  margin: 0 auto;
  width: 380px;
  height: 90px;
  padding: 0 50px;
  color: #078F53;
  text-align: center;
  border: 1px solid #078F53;
  border-radius: 6px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px 0 rgba(133, 128, 128, 0.25);
  cursor: pointer;
  z-index: 1;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax label {
    padding: 0;
    width: 220px;
    height: 70px;
  }
}
.main .submit-container .submit .special_measures .tax label::before {
  content: "提出書類の続きを見る";
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax label::before {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .tax label::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url("images/application/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax label::after {
    width: 24px;
    height: 24px;
  }
}
.main .submit-container .submit .special_measures .tax_container {
  position: relative;
  height: 800px;
  overflow: hidden;
}
.main .submit-container .submit .special_measures .tax_container::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(177deg, rgba(217, 217, 217, 0) -7.99%, #CED3D0 94.7%);
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures {
  width: 100%;
  border-collapse: collapse;
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures th[scope=col] {
  width: 50%;
  background: #299053;
  border: 1px solid white;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.72px;
  padding: 10px;
  height: 30px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax_container .taxes_measures th[scope=col] {
    font-size: 16px;
  }
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures td {
  background: white;
  border: 1px solid #BBB;
  padding: 24px 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  letter-spacing: 0.48px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax_container .taxes_measures td {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures td a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  letter-spacing: 0.48px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax_container .taxes_measures td a {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures td small {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
  color: #299053;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 135%;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax_container .taxes_measures td small {
    font-size: 12px;
  }
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures td strong {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .tax_container .taxes_measures td strong {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .tax_container .taxes_measures td span {
  margin: 0 0 0 16px;
}
.main .submit-container .submit .special_measures .annotation li {
  margin: 0 0 30px;
}
.main .submit-container .submit .special_measures .annotation li:last-of-type {
  margin: 0;
}
.main .submit-container .submit .special_measures .annotation li p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .annotation li p {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .annotation li p small {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 135%;
}
.main .submit-container .submit .special_measures .annotation li p span {
  margin: 0 0 0 18px;
}
.main .submit-container .submit .special_measures .annotation li p a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .annotation li p a {
    font-size: 14px;
  }
}
.main .submit-container .submit .special_measures .sample {
  width: 100%;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .main .submit-container .submit .special_measures .sample {
    overflow-x: scroll;
  }
  .main .submit-container .submit .special_measures .sample::-webkit-scrollbar {
    height: min(0.9vw, 1.35vh, 10px);
  }
  .main .submit-container .submit .special_measures .sample::-webkit-scrollbar-track {
    background: #BBB;
    border-radius: 5px;
  }
  .main .submit-container .submit .special_measures .sample::-webkit-scrollbar-thumb {
    background: #299053;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .main .submit-container .submit .special_measures .sample::-webkit-scrollbar-thumb:hover {
    background: #FFF;
  }
}
.main .submit-container .submit .special_measures .sample .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 30px;
  background: #299053;
  margin: 0 0 10px;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .sample .header {
    height: 45px;
  }
}
.main .submit-container .submit .special_measures .sample .header p {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.95px;
  line-height: 180%;
  color: white;
}
@media screen and (max-width: 1280px) {
  .main .submit-container .submit .special_measures .sample .header p {
    font-size: 13px;
  }
}
.main .submit-container .submit .special_measures .sample object {
  width: 100%;
}
.main .submit-container .submit .special_measures .sample object img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .main .submit-container .submit .special_measures .sample object img {
    width: initial;
    max-width: 800px;
    margin-bottom: 0;
  }
}

.page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}

.first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first-view {
    margin-top: 60px;
  }
}
.first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}

.page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}

.first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first-view {
    margin-top: 60px;
  }
}
.first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}

.contents {
  display: flex;
  justify-content: center;
  background: #F8F8F8;
}
.contents .contents-wrapper {
  width: 1440px;
  max-width: 95%;
  margin-top: 110px;
  display: flex;
  padding: 18px clamp(0.625rem, -0.072rem + 2.79vw, 2.438rem);
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .contents .contents-wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }
}
.contents .contents-wrapper .contents-title {
  width: 10%;
  padding-right: 2%;
  border-right: 1px solid #393939;
}
.contents .contents-wrapper .contents-title p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contents .contents-wrapper .contents-title {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #393939;
    padding-right: 0;
  }
}
.contents .contents-wrapper .contents-menu-wrapper {
  display: flex;
  margin: auto 0 auto 3%;
  flex-wrap: wrap;
  row-gap: 20px;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu {
  display: flex;
  margin: auto 0;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.635rem + 0.96vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-left: 12px;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu svg {
  width: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  height: clamp(1.25rem, 1.01rem + 0.96vw, 1.875rem);
  margin: auto 0 auto clamp(0.313rem, -0.12rem + 1.73vw, 1.438rem);
  cursor: pointer;
}
.contents .contents-wrapper .contents-menu-wrapper .contents-menu .var {
  width: 1px;
  height: 16px;
  background: #636363;
  margin: auto 0 auto 12px;
}

.contact-info {
  padding-top: 69px;
  background: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 69px;
  padding-bottom: 110px;
  margin-bottom: 300px;
}
@media screen and (max-width: 1280px) {
  .contact-info {
    margin-bottom: 200px;
  }
}
.contact-info .contact-info-wrapper {
  width: min(1216px, 90%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 120px;
}
.contact-info .contact-info-wrapper .contact-title {
  width: 100%;
  height: 88px;
  background: #078F53;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px 10px 0 0;
  padding-top: 20px;
}
.contact-info .contact-info-wrapper .contact-title p {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.438rem, 1.11rem + 1.31vw, 2.125rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 10px;
}
.contact-info .contact-info-wrapper .contact-title div {
  width: 40px;
  height: 3px;
  flex-shrink: 0;
  background: #FFF;
  padding: 0;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper {
  width: 100%;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 52px;
  border-radius: 0 0 10px 10px;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper #contact-first {
  margin-top: 42px;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu {
  width: min(910px, 90%);
  display: flex;
  padding: clamp(0.625rem, 0.224rem + 1.65vw, 1.5rem) clamp(0.625rem, -0.235rem + 3.53vw, 2.5rem);
  margin-top: 32px;
  flex-direction: column;
  gap: 10px;
  border-radius: 3px;
  border: 1px solid #D6D6D6;
  background: #FFF;
  box-shadow: 0 2px 7px 0 rgba(170, 170, 170, 0.15);
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-info-menu-title {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.938rem, 0.789rem + 0.6vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 0.8px;
  border-bottom: 1px solid #A9A9A9;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper .contact-var {
  position: absolute;
  width: clamp(0.625rem, 0.082rem + 2.17vw, 1.125rem);
  height: 3px;
  background: #42815D;
  flex-shrink: 0;
  top: clamp(0.75rem, 0.571rem + 0.71vw, 1.125rem);
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper .contact-name {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.664rem + 0.6vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
  margin-left: clamp(0.813rem, 0.065rem + 2.99vw, 1.5rem);
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper #tokyo-bst-info br {
  display: none;
}
@media (max-width: 540px) {
  .contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper #tokyo-bst-info br {
    display: block;
  }
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper #neo-career-info br {
  display: none;
}
@media (max-width: 895px) {
  .contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .contact-name-wrapper #neo-career-info br {
    display: block;
  }
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu svg {
  width: 24px;
  flex-shrink: 0;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper .phone-number {
  display: flex;
  align-items: center;
  gap: clamp(0.313rem, -0.435rem + 2.99vw, 1rem);
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper .phone-number span {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #636363;
  font-size: clamp(1.25rem, 0.952rem + 1.19vw, 1.875rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper .contact-text-small {
  color: #828282;
  font-size: clamp(0.75rem, 0.69rem + 0.24vw, 0.875rem);
  font-weight: 500;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper .mail-address {
  display: flex;
  align-items: center;
  gap: clamp(0.313rem, -0.435rem + 2.99vw, 1rem);
  margin-top: 16px;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu .number-wrapper .mail-address span {
  color: #636363;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.497rem + 1.29vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  word-break: break-word;
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu #about-bst br {
  display: none;
}
@media (max-width: 630px) {
  .contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu #about-bst br {
    display: block;
  }
}
.contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu #plan br {
  display: none;
}
@media (max-width: 450px) {
  .contact-info .contact-info-wrapper .contact-info-menu-wrapper .contact-info-menu #plan br {
    display: block;
  }
}
.contact-info .contact-info-wrapper .contact-application-text {
  width: min(900px, 90%);
  margin-top: 42px;
}
.contact-info .contact-info-wrapper .contact-application-text p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.664rem + 0.6vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
}
.contact-info .contact-info-wrapper .link {
  color: #424C98;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.664rem + 0.6vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.72px;
}
.contact-info .contact-info-wrapper .link a {
  color: #424C98;
  font-family: "Noto Sans JP";
  font-size: clamp(0.813rem, 0.664rem + 0.6vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 0.72px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.contact-info .contact-application-menu-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(1024px, 90%);
}
@media screen and (max-width: 768px) {
  .contact-info .contact-application-menu-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.contact-info .contact-application-menu-wrapper #application-info-menu, .contact-info .contact-application-menu-wrapper #application-info-menu2 {
  width: min(910px, 100%);
}

.page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}

.first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first-view {
    margin-top: 60px;
  }
}
.first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}

.other-procedure {
  width: 100%;
  padding: 110px 38px;
  margin: 0 auto 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F8F8F8;
  position: relative;
  max-width: 1923px;
}
.other-procedure::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #F8F8F8;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .other-procedure {
    padding: 55px 35px;
    margin: 0 auto 200px;
  }
}
@media screen and (max-width: 768px) {
  .other-procedure {
    padding: 30px 0;
  }
}
.other-procedure .other-procedure-wrapper {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .other-procedure .other-procedure-wrapper {
    width: 90%;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.other-procedure .other-procedure-wrapper .case-wrapper .case-wrapper .open-details {
  background: #F8F8F8;
}
.other-procedure .other-procedure-wrapper .case-wrapper .headline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 30px 115.5px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .headline {
    padding: 0 0 30px 20px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .headline svg {
  width: 25px;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s;
}
.other-procedure .other-procedure-wrapper .case-wrapper .headline svg.active {
  transform: rotate(90deg);
}
.other-procedure .other-procedure-wrapper .case-wrapper .headline p {
  color: #299053;
  font-family: "Noto Sans JP";
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .headline p {
    font-size: 24px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper #cancel {
  gap: 30px;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details {
  width: 100%;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  border-radius: 10px;
  background: #FFF;
  padding: 0 108.5px 0 115.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  max-height: 0;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 36px */
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts p {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts p span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts p span {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .top-texts a {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 150%;
  letter-spacing: 0.54px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case p {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 36px */
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case p {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-head {
  width: 100%;
  height: 55px;
  border-radius: 30px;
  background: #299053;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-head {
    padding: 10px 15px;
    height: auto;
    border-radius: 40px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-head p {
  color: white;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.95px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-head p {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-text {
  display: flex;
  flex-direction: column;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-text a {
  color: #393939;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-text a {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-documents {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 36px */
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-documents {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-documents span {
  font-weight: 700;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .previous-case-documents #under-line {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case img {
  width: 100%;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper .previous-case .image-wrapper img {
  width: 70%;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm {
  align-items: flex-start;
  gap: 40px;
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p {
  color: #393939;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 20px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p a, .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p a, .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm p span {
    font-size: 14px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm img {
  width: 70%;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details .open-details-wrapper.norm img {
    width: 100%;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .open-details.open {
  max-height: fit-content;
  opacity: 1;
  margin-bottom: 60px;
  padding: 55px 108.5px 55px 115.5px;
}
@media screen and (max-width: 1280px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .open-details.open {
    padding: 35px 20px;
  }
}
.other-procedure .other-procedure-wrapper .case-wrapper .case-wrapper .open-details.open {
  max-height: fit-content;
  opacity: 1;
  margin-bottom: 60px;
  padding: 10px 108.5px 55px 115.5px;
}
@media screen and (max-width: 1280px) {
  .other-procedure .other-procedure-wrapper .case-wrapper .case-wrapper .open-details.open {
    padding: 0px 20px 30px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.section_title {
  color: #299053;
  font-family: "Noto Sans JP", serif;
  font-size: min(34px, 1.77vw);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: min(1.02px, 0.053vw);
  padding-bottom: 8px;
  margin: 0 auto;
}
.section_title::after {
  content: "";
  width: 40px;
  height: 3px;
  display: inline-block;
  border-radius: 6px;
  background-color: #838383;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 54px);
}

#top {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#top a {
  cursor: pointer;
}
#top .page-fv {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -9999;
}
#top #first-view {
  width: 100%;
  height: clamp(12.5rem, 7.692rem + 19.23vw, 25rem);
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1920px;
  height: unset;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #top #first-view {
    margin-top: 60px;
  }
}
#top #first-view h1 {
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.563rem, 0.721rem + 3.37vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  text-align: center;
}
#top #first-view .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 75.67%;
  flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top #first-view .content {
    width: 97.5%;
    margin: 0 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 500px) {
  #top #first-view .content {
    justify-content: start;
    padding: 20px 0;
  }
}
#top #first-view .content .title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(57px, 2.97vw);
  margin-bottom: clamp(1px, 1vw, 20px);
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title {
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  #top #first-view .content .title {
    z-index: 2;
  }
}
#top #first-view .content .title h2 {
  padding: min(7px, 0.3645vw) min(14px, 0.73vw) min(6px, 0.3125vw);
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: clamp(20px, 1.875vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  letter-spacing: 1.8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px 0 rgba(152, 152, 152, 0.25);
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title h2 {
    width: fit-content;
    white-space: wrap;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4px 2.8px 1.2px;
    font-size: 16px;
  }
  #top #first-view .content .title h2 span {
    display: inline-block;
  }
}
#top #first-view .content .title h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(29.32px, 1.527vw);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title h1 {
    gap: 6px;
  }
}
#top #first-view .content .title h1 span {
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: clamp(25px, 2.4vw, 46px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.3px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px 0 rgba(152, 152, 152, 0.25);
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title h1 span {
    font-size: 18px;
  }
}
#top #first-view .content .title h1 span:nth-child(1) {
  padding: min(5px, 0.26vw) min(16px, 0.83vw) min(7px, 0.364vw) min(23px, 1.198vw);
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title h1 span:nth-child(1) {
    padding: 1px 3.2px 1.4px 4.6px;
  }
}
#top #first-view .content .title h1 span:nth-child(2) {
  padding: min(6px, 0.3125vw) min(16px, 0.83vw) min(2px, 0.104vw) min(14px, 0.73vw);
}
@media screen and (max-width: 768px) {
  #top #first-view .content .title h1 span:nth-child(2) {
    padding: 1.2px 3.2px 0.4px 2.8px;
  }
}
#top #first-view .content .components {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  #top #first-view .content .components {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
#top #first-view .content .components img.illustration {
  width: min(449px, 23.4375vw);
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  #top #first-view .content .components img.illustration {
    width: 140px;
  }
}
#top #first-view .content .components .update_date {
  width: fit-content;
  display: inline-block;
  margin: min(20px, 1.04vw) 7px min(15px, 0.78vw) auto;
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: min(18px, 0.9375vw);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 1.08px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  #top #first-view .content .components .update_date {
    font-size: 12px;
  }
}
#top .main {
  position: relative;
  z-index: 2;
  background: #F8F8F8;
  width: 100%;
  padding-top: 50px;
}
#top .main #tax_explanation {
  display: flex;
  width: 100%;
  max-width: 1923px;
  margin: 0 auto 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background: #F8F8F8;
}
#top .main #tax_explanation .massage {
  width: 63.18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .massage {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage {
    width: 90%;
  }
}
#top .main #tax_explanation .massage .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .massage .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage .title {
    margin-bottom: 40px;
  }
}
#top .main #tax_explanation .massage .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#top .main #tax_explanation .massage .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .massage .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage .title h2 {
    font-size: 22px;
  }
}
#top .main #tax_explanation .massage .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#top .main #tax_explanation .massage .explanation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
#top .main #tax_explanation .massage .explanation .caption {
  color: #34744E;
  font-size: clamp(18px, 1.146vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 44px */
  letter-spacing: min(0.66px, 0.034375vw);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage .explanation .caption {
    font-size: 16px;
  }
}
#top .main #tax_explanation .massage .explanation .caption span {
  letter-spacing: min(-3.74px, -0.1948vw);
}
#top .main #tax_explanation .massage .explanation .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#top .main #tax_explanation .massage .explanation .content p {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #393939;
  font-size: clamp(16px, 1.04vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: min(1px, 0.052vw);
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage .explanation .content p {
    font-size: 14px;
  }
}
#top .main #tax_explanation .massage .explanation .content p.supplement {
  font-size: 16px;
  line-height: 190%; /* 30.4px */
  letter-spacing: min(0.8px, 0.04vw);
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .massage .explanation .content p.supplement {
    font-size: 14px;
  }
}
#top .main #tax_explanation .massage .explanation .content p.supplement span {
  font-weight: 350;
}
#top .main #tax_explanation .graph {
  width: min(980.5px, 51vw);
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .graph {
    width: 650px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .graph {
    width: 90%;
  }
}
#top .main #tax_explanation .graph img {
  width: 100%;
  object-fit: cover;
}
#top .main #tax_explanation .caution {
  width: 75.26%;
  max-width: 1445px;
  display: flex;
  padding: 40px 40px 43px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FFE6B0;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .caution {
    padding: 20px 30px 43px;
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .caution {
    padding: 10px 20px 20px 20px;
    width: 90%;
  }
}
#top .main #tax_explanation .caution .title {
  color: #4B4B4B;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: min(1.02px, 0.053vw);
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .caution .title {
    font-size: 20px;
  }
}
#top .main #tax_explanation .caution .title::before {
  content: "";
  display: inline-block;
  width: min(33px, 1.718vw);
  aspect-ratio: 1/1;
  background: url("images/exclamation_mark.png") center/contain no-repeat;
}
#top .main #tax_explanation .caution .explanation {
  padding: 26px clamp(20px, 4.5vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
  align-self: stretch;
  border-radius: 4px;
  background: #FFF;
}
#top .main #tax_explanation .caution .explanation .caption {
  color: #605A5A;
  text-align: center;
  font-size: clamp(18px, 1.146vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: min(0.66px, 0.034375vw);
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .caution .explanation .caption {
    font-size: 16px;
  }
}
#top .main #tax_explanation .caution .explanation .caption::after {
  content: "";
  width: min(683.5px, 35.6vw);
  height: 1px;
  display: inline-block;
  background: #A69C9C;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 35px);
}
#top .main #tax_explanation .caution .explanation .content p {
  align-self: stretch;
  color: #393939;
  font-size: clamp(16px, 1.04vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 38px */
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .caution .explanation .content p {
    font-size: 14px;
  }
}
#top .main #tax_explanation .caution .explanation .content p em {
  color: #E72727;
  font-weight: 700;
  font-style: initial;
}
#top .main #tax_explanation .caution .explanation .content p.supplement {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 400;
  line-height: 188%; /* 30.08px */
  letter-spacing: min(0.8px, 0.04vw);
}
#top .main #tax_explanation .link {
  width: 63.125%;
  max-width: 1212px;
  display: grid;
  grid-auto-columns: auto;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .link {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link {
    width: 90%;
  }
}
#top .main #tax_explanation .link .box-link {
  grid-area: 2/1/3/2;
  display: flex;
  height: 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 2px solid #078F53;
  background: #FFF;
  box-shadow: 2px 2px 3px 0px #AAB3AB;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .link .box-link {
    padding: 8px 0;
  }
}
#top .main #tax_explanation .link .box-link .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .link .box-link .container {
    width: 90%;
    justify-content: center;
    flex-direction: initial;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link .box-link .container {
    gap: 15px;
  }
}
#top .main #tax_explanation .link .box-link .container .sentence {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #078F53;
  font-size: clamp(20px, 1.25vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: min(0.48px, 0.025vw);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link .box-link .container .sentence {
    font-size: 16px;
    gap: clamp(0px, (100vw - 390px) * 0.03125, 15px);
  }
}
#top .main #tax_explanation .link .box-link .container .sentence::after {
  content: "";
  display: inline-block;
  width: clamp(30px, 2.1875vw, 42px);
  aspect-ratio: 1/1;
  background: url("images/allow_white.png") center/contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link .box-link .container .sentence::after {
    width: 25px;
  }
}
#top .main #tax_explanation .link .box-link .container svg {
  display: flex;
  width: min(70px, 3.646vw);
  aspect-ratio: 1/1;
  padding: 0 3.087px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link .box-link .container svg {
    width: 30px;
  }
}
#top .main #tax_explanation .link #to_procedure_flow {
  grid-area: 1/1/2/3;
  height: 150px;
  padding: 8px 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .link #to_procedure_flow {
    padding: 8px 0;
  }
}
#top .main #tax_explanation .link #to_procedure_flow .container {
  width: 64%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  #top .main #tax_explanation .link #to_procedure_flow .container {
    width: 90%;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #tax_explanation .link #to_procedure_flow .container {
    gap: 15px;
  }
}
#top .main #tax_explanation .link #to_procedure {
  grid-area: 2/1/3/2;
  padding: 20px 51px;
}
#top .main #tax_explanation .link #to_annual_report {
  grid-area: 2/2/3/3;
  padding: 20px 59px;
}
#top .main #tax_explanation .link .box-link:hover {
  background: #078F53;
  transition: 0.3s;
}
#top .main #tax_explanation .link .box-link:hover .sentence {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
  transition: 0.3s;
}
#top .main #tax_explanation .link .box-link:hover .sentence::after {
  content: "";
  display: inline-block;
  width: clamp(30px, 2.1875vw, 42px);
  aspect-ratio: 1/1;
  background: url("images/allow_green.png") center/contain no-repeat;
  transition: 0.3s;
}
#top .main #tax_explanation .link .box-link:hover svg path {
  fill: #FFF;
  transition: 0.3s;
}
#top .main #tax_explanation .link .box-link:hover #application path {
  stroke: #FFF;
  fill: #078F53;
  transition: 0.3s;
}
#top .main #order_procedure_explanation {
  width: 100%;
  background: #F1F7F0;
}
#top .main #order_procedure_explanation .order-block {
  margin: 0 auto;
  padding: 54px 0;
  width: 60%;
  max-width: 1123px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block {
    width: 90%;
  }
}
#top .main #order_procedure_explanation .order-block .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block .title {
    margin-bottom: 40px;
  }
}
#top .main #order_procedure_explanation .order-block .title h2 {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #299053;
  font-size: clamp(25px, 1.77vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.02px;
  margin-bottom: 8px;
  text-align: center;
}
#top .main #order_procedure_explanation .order-block .title h2 span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .title h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block .title h2 {
    font-size: 22px;
  }
}
#top .main #order_procedure_explanation .order-block .title .line {
  width: 40px;
  height: 3px;
  background: #838383;
}
#top .main #order_procedure_explanation .order-block .procedure_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
#top .main #order_procedure_explanation .order-block .procedure_list .item {
  display: flex;
  width: 48%;
  max-width: 500px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  border-bottom: 0.8px solid #86948C;
  margin-bottom: 44px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block .procedure_list .item {
    width: clamp(300px, 60vw, 500px);
    margin: 0 auto 20px;
    padding-bottom: 10px;
    gap: 10px;
  }
}
#top .main #order_procedure_explanation .order-block .procedure_list .item .name {
  color: #42815D;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: min(0.6px, 0.03125vw);
  display: flex;
  height: 40px;
  padding: 3px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .procedure_list .item .name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block .procedure_list .item .name {
    font-size: 16px;
    height: 35px;
  }
}
#top .main #order_procedure_explanation .order-block .procedure_list .item .profile {
  color: #393939;
  font-family: "Noto Sans JP";
  font-size: clamp(18px, 1.04vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 34px */
  letter-spacing: min(0.6px, 0.03125vw);
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .procedure_list .item .profile {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #top .main #order_procedure_explanation .order-block .procedure_list .item .profile {
    font-size: 14px;
  }
}
#top .main #order_procedure_explanation .order-block .to_order_procedure {
  display: flex;
  width: min(380px, 19.8vw);
  height: 90px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #078F53;
  box-shadow: 0 4px 8px 0 rgba(133, 128, 128, 0.25);
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .to_order_procedure {
    width: 250px;
  }
}
#top .main #order_procedure_explanation .order-block .to_order_procedure span {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: min(22px, 1.146vw);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .to_order_procedure span {
    font-size: 18px;
  }
}
#top .main #order_procedure_explanation .order-block .to_order_procedure span::after {
  content: "";
  display: inline-block;
  width: min(42px, 2.1875vw);
  aspect-ratio: 1/1;
  background: url("images/allow_green.png") center/contain no-repeat;
}
@media screen and (max-width: 1280px) {
  #top .main #order_procedure_explanation .order-block .to_order_procedure span::after {
    width: 25px;
  }
}

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