@charset "UTF-8";
@import url(reset.css);
.fs20 {
  font-size: clamp(16px, 2vw, 20px);
}

.fs24 {
  font-size: clamp(16px, 2.4vw, 24px);
}

.fs26 {
  font-size: clamp(18px, 2.6vw, 26px);
}

.fs28 {
  font-size: clamp(18px, 2.8vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: clamp(14px, 1.8vw, 18px);
  margin: 0;
  padding: 0;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.6px;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  font-feature-settings: "palt";
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", sans-serif, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px;
}

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

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

.txt_link {
  color: #0059bd;
  text-decoration: underline;
  word-break: break-all;
}
.txt_link:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.bg__white {
  background: #fff;
}

.bg__vanilla {
  background: #FAF6E9;
}

.bg__gray {
  background: #efefef;
}

.bg__green {
  background: #188441;
}

.fc__red {
  color: #b32424;
}

.f__center {
  text-align: center;
}

.f__indent {
  text-indent: -1em;
  padding-left: 1em;
}

.space--m15 {
  margin-top: 15px;
}

.border_b1 {
  font-weight: 800;
  border-bottom: 1px solid #333;
}

.cmn__btn {
  text-align: center;
}
.cmn__btn a {
  font-size: clamp(16px, 1.8vw, 18px);
  margin-top: 30px;
  text-align: center;
  color: #fff;
  background: #0f7f39;
  display: inline-block;
  padding: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0px 5px 0px 0px #358a46;
}
@media (max-width: 768px) {
  .cmn__btn a {
    margin: 3% auto 0;
  }
}
@media (max-width: 768px) {
  .cmn__btn a {
    padding: 15px;
  }
}
@media (min-width: 769px) {
  .cmn__btn a:hover {
    transition: 0.3s;
    opacity: 1;
    background: rgb(46, 119, 61);
    transform: translateY(5px);
    box-shadow: 0px 0px 0px 0px #358a46;
  }
}
.cmn__btn a.arrow {
  position: relative;
  display: inline-block;
  padding-left: 22px;
}
.cmn__btn a.arrow:before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
}
.cmn__btn a.arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #007a33;
  position: absolute;
  top: 0;
  left: 27px;
  bottom: 0;
  margin: auto;
}

.header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
@media (max-width: 768px) {
  .header {
    border-bottom: 5px solid #007a33;
  }
}
.header .wrap {
  max-width: 90%;
  padding: 0;
}
.header__top {
  width: 100%;
  position: relative;
}
.header__top .logo {
  text-align: center;
}
.header__top .logo img {
  margin: 0 auto;
  max-height: 60px;
}
@media (max-width: 768px) {
  .header__top .logo img {
    width: 90px;
    max-height: auto;
  }
}
.header__top .login {
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 0;
  margin: auto 0 auto auto;
}
@media (max-width: 768px) {
  .header__top .login {
    display: none;
  }
}
.header__top .login a {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100vh;
  color: #fff;
  background: #0f7f39;
  display: inline-block;
  padding: 0.5vw 2vw;
  box-shadow: 0px 5px 0px 0px #358a46;
}
.header__top .login a:hover {
  transition: 0.3s;
  opacity: 1;
  background: rgb(46, 119, 61);
  transform: translateY(5px);
  box-shadow: 0px 0px 0px 0px #358a46;
}
.header__top .login a img {
  width: 1.4vw;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.menu {
  background: #188441;
}
.menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2vw;
}
.menu ul li {
  position: relative;
}
.menu ul li:before {
  content: "";
  position: absolute;
  right: -20px;
  height: 100%;
  background: #2a7f4b;
  width: 2px;
}
.menu ul li:last-child:before {
  content: none;
}
.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(12px, 1.6vw, 18px);
}
.menu ul li a .dli-chevron-down {
  margin: -5px 0 0 10px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.menu ul li a:hover {
  color: #fff;
  opacity: 0.6;
  transition: 0.3s;
}
.menu ul li a:hover .dli-chevron-down {
  color: #fff;
}

.footer {
  color: #fff;
}
.footer .wrap {
  max-width: 90%;
}
.footer .pagetop a {
  position: fixed;
  right: 40px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #0f7f39;
  border-radius: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .footer .pagetop a {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 30px;
    line-height: 40px;
  }
}
.footer .pagetop a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.footer .logo {
  max-width: 190px;
  margin: 0 auto 20px;
}
.footer__nav {
  text-align: right;
  background: #ddd;
}
@media (max-width: 768px) {
  .footer__nav {
    text-align: center;
  }
}
.footer__nav a {
  color: #333;
  font-size: clamp(11px, 1.3vw, 13px);
}
.footer__nav a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.footer__contents {
  padding: 50px 0 20px;
  text-align: center;
  background: #2b7f4c;
}

.mv {
  color: #333;
  text-align: center;
  padding: 5% 0 10%;
  background: url(../images/mv_bg2.jpg) no-repeat center bottom/cover;
}
.mv h1 {
  font-size: clamp(26px, 6.2vw, 62px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .mv h1 {
    font-size: clamp(22px, 2.8vw, 32px);
  }
}

.title {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  border-bottom: 2px solid #188441;
  margin-bottom: 30px;
}
.title__en {
  color: #fff;
  display: inline-block;
  padding: 15px 20px;
  background: #188441;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media (max-width: 768px) {
  .title__en {
    padding: 5px 10px;
  }
}
.title__en:before {
  position: absolute;
  content: "";
  right: -19px;
  top: 0px;
  border: none;
  border-left: solid 20px #188441;
  border-top: solid 45px transparent;
  z-index: 1;
}
@media (max-width: 768px) {
  .title__en:before {
    border-left: solid 20px #188441;
    border-top: solid 23px transparent;
  }
}
.title__jp {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  display: block;
  margin-left: 20px;
  line-height: 1;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .title__jp {
    font-size: clamp(16px, 1.8vw, 18px);
  }
}
@media (max-width: 768px) {
  .title__jp {
    padding-bottom: 5px;
  }
}

.summary {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .summary {
    padding-bottom: 12%;
  }
}
.summary__title {
  text-align: center;
  color: #fff;
  background: #0f7f39;
  padding: 30px 0;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .summary__title {
    padding: 3% 0;
    margin-bottom: 9%;
  }
}
.summary__title .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.summary__title h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary__cont {
    padding: 0 10px;
  }
}
.summary__cont .wrap {
  padding: 50px 60px;
}
@media (max-width: 768px) {
  .summary__cont .wrap {
    padding: 20px 15px;
  }
}
.summary__cont .about {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .summary__cont .about {
    margin-bottom: 9%;
  }
}
.summary__cont .purpose {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .summary__cont .purpose {
    margin-bottom: 9%;
  }
}
.summary__cont .flow {
  padding: 40px 0;
  margin-bottom: 90px;
}
@media (max-width: 943px) {
  .summary__cont .flow {
    padding: 4% 0;
    margin-bottom: 9%;
  }
}
.summary__cont .flow .flow__list {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  padding: 60px 50px;
  background: #e3ebe4;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__list {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0;
    padding: 20px 15px;
  }
}
@media (max-width: 480px) {
  .summary__cont .flow li:nth-of-type(7), .summary__cont .flow li:nth-of-type(9) {
    padding-left: 35px;
  }
}
.summary__cont .flow .flow__item {
  background: #fff;
  border: 4px solid #188441;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__item {
    flex: 1 1 100%;
    position: relative;
  }
}
.summary__cont .flow .flow__item:nth-of-type(2) {
  width: 30%;
}
.summary__cont .flow .flow__item__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__item__arrow {
    transform: rotate(90deg);
    height: 30px;
  }
}
.summary__cont .flow .flow__item__arrow .arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 29px 0;
  border-radius: 9999px;
  background-color: #188441;
  vertical-align: middle;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__item__arrow .arrow {
    width: 20px;
  }
}
.summary__cont .flow .flow__item__arrow .arrow::before,
.summary__cont .flow .flow__item__arrow .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 15px;
  height: 3px;
  border-radius: 9999px;
  background-color: #188441;
  transform-origin: calc(100% - 2px) 50%;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__item__arrow .arrow::before,
  .summary__cont .flow .flow__item__arrow .arrow::after {
    top: calc(50% - 1px);
    transform-origin: calc(100% - 1px) 50%;
  }
}
.summary__cont .flow .flow__item__arrow .arrow::before {
  transform: rotate(45deg);
}
.summary__cont .flow .flow__item__arrow .arrow::after {
  transform: rotate(-45deg);
}
.summary__cont .flow .flow__item__second {
  width: 30%;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__item__second {
    width: 100%;
  }
}
.summary__cont .flow .flow__item__second .flow__title {
  writing-mode: initial;
}
.summary__cont .flow .flow__step {
  background: #188441;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  font-size: clamp(18px, 2.8vw, 28px);
  width: 100%;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__step {
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    padding: 20px;
  }
}
.summary__cont .flow .flow__title {
  font-weight: bold;
  margin: 20px 0;
  font-size: clamp(16px, 2.4vw, 24px);
  color: #188441;
  writing-mode: vertical-rl;
}
@media (max-width: 943px) {
  .summary__cont .flow .flow__title {
    writing-mode: initial;
    margin: 15px 0;
  }
}
.summary__cont .flow .flow__options {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.summary__cont .flow .flow__options .flow__option {
  width: 90%;
  margin: 0 auto 10px;
  background: #f0f0f0;
  padding: 15px;
}
.summary__cont .flow .flow__options .flow__option .flow__option__title {
  font-weight: bold;
}
.summary__cont .flow .flow__options .flow__option .flow__btn {
  margin-top: 8px;
  display: inline-block;
  background: #fcd548;
  color: #333;
  padding: 5px 15px;
  text-decoration: underline;
  font-weight: bold;
  border-radius: 100vh;
  font-size: 14px;
}
.summary__cont .flow .flow__options .flow__option .flow__btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.application {
  background: #fff;
}
.application__title {
  text-align: center;
  color: #fff;
  background: #0f7f39;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .application__title {
    padding: 3% 20px;
  }
}
.application__title .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.application__title h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
}
.application__cont {
  padding: 120px 20px;
}
@media (max-width: 768px) {
  .application__cont {
    padding: 12% 15px 10%;
  }
}
.application__cont .wrap {
  padding: 50px 60px;
}
@media (max-width: 768px) {
  .application__cont .wrap {
    padding: 20px 15px;
  }
}
.application__cont dl {
  position: relative;
}
.application__cont dl:nth-of-type(2) {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .application__cont dl:nth-of-type(2) {
    margin-top: 9%;
  }
}
.application__cont dl dd:nth-of-type(2) {
  padding-top: 0;
}
.application__cont dl dd .bg__gray {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 480px) {
  .application__cont dl dd .bg__gray {
    text-align: left;
  }
}
.application__cont dl dd .bg__gray:nth-of-type(2) {
  margin-bottom: 0;
}
.application__cont dl dd .btn__box {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .application__cont dl dd .btn__box {
    margin-top: 3%;
  }
}
.application__cont dl dd .btn__box__title {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  padding: 30px 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .application__cont dl dd .btn__box__title {
    padding: 3% 20px;
  }
}
.application__cont dl dd .btn__box__cont {
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .application__cont dl dd .btn__box__cont {
    padding: 20px 20px;
  }
}
.application__cont dl dd .btn__box__cont .cmn__btn {
  margin-bottom: 15px;
}
.application__cont dl dd .btn__box__cont .cmn__btn a {
  margin-top: 0;
}
.application__cont dl dd .btn__box__cont p.fc__red {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .application__cont dl dd .btn__box__cont p.fc__red {
    margin-top: 10px;
  }
}
.application__cont dl dd .dd__txt {
  font-size: clamp(16px, 2.4vw, 24px);
  margin-bottom: 30px;
}
.application__cont dl dd .dd__txt--02 {
  font-size: clamp(16px, 2.4vw, 24px);
  margin-top: 30px;
}
.application .box__txt__left {
  text-align: left;
  margin: 40px auto 0;
}

.application .box__txt__left ul {
  padding-left: 1.5em;
}

.application .box__txt__left ul li {
  list-style-type: disc;
}

.application .postal .fc__red {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .application .postal .fc__red {
    margin-top: 10px;
  }
}

.faq .wrap {
  max-width: 1340px;
}
.faq__flex {
  display: flex;
  border: 2px solid #ddd;
}
@media (max-width: 768px) {
  .faq__flex {
    display: block;
  }
}
.faq__flex__title {
  width: 30%;
  text-align: center;
  padding: 50px;
  background: #188441;
}
@media (max-width: 768px) {
  .faq__flex__title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 20px;
  }
}
.faq__flex__title img {
  width: 120px;
  margin: 0 auto 15px;
}
@media (max-width: 768px) {
  .faq__flex__title img {
    width: 7vw;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.faq__flex__title h2 {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
}
.faq__flex__txt {
  width: 70%;
  padding: 50px;
  background: #fff;
}
@media (max-width: 768px) {
  .faq__flex__txt {
    width: 100%;
    padding: 30px 20px;
  }
}
.faq__flex__txt .cmn__btn {
  text-align: left;
}
@media (max-width: 768px) {
  .faq__flex__txt .cmn__btn {
    text-align: center;
  }
}

.contact {
  padding: 50px 0 160px;
}
@media (max-width: 768px) {
  .contact {
    padding: 5% 0 16%;
  }
}
.contact .wrap {
  max-width: 1340px;
}
.contact__inner {
  background: #fff;
  border: 2px solid #ddd;
}
.contact__title {
  text-align: center;
  background: #188441;
  padding: 20px;
}
@media (max-width: 768px) {
  .contact__title {
    padding: 2%;
  }
}
.contact__title h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.contact__title p {
  background: #fff;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .contact__title p {
    padding: 15px;
    text-align: left;
  }
}
.contact__box {
  text-align: center;
  padding: 50px 50px 60px;
}
@media (max-width: 768px) {
  .contact__box {
    padding: 5% 20px 6%;
  }
}
@media (max-width: 480px) {
  .contact__box {
    padding: 5% 20px 6%;
  }
}
.contact__box__title {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .contact__box__title {
    margin-bottom: 25px;
  }
}
.contact__box__title span {
  color: #188441;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}
.contact__box__tel img {
  width: 3vw;
  max-width: 27px;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .contact__box__tel img {
    width: 2.4vw;
    max-width: 16px;
  }
}
@media (max-width: 480px) {
  .contact__box__tel img {
    width: 3vw;
    max-width: initial;
  }
}
.contact__box__tel a {
  font-size: clamp(26px, 6.2vw, 62px);
  font-weight: 700;
}
.contact__box p {
  font-size: clamp(18px, 2.6vw, 26px);
}
@media (min-width: 751px) {
  .contact a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: #333;
  }
}

.worker {
  background: #fff;
  /*accordion*/
  /*accordion-end*/
}
.worker__title {
  text-align: center;
  color: #fff;
  background: #0f7f39;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .worker__title {
    padding: 3% 20px;
  }
}
.worker__title .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.worker__title h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
}
.worker__navi {
  background: #ddd;
}
.worker__navi .wrap {
  padding: 20px 0;
}
.worker__navi ul {
  display: flex;
  border-left: 1px solid #919191;
  border-right: 1px solid #919191;
}
@media (max-width: 768px) {
  .worker__navi ul {
    border: none;
  }
}
.worker__navi ul li {
  width: 25%;
  text-align: center;
  background: #ddd;
  border-right: 1px solid #919191;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .worker__navi ul li {
    width: 100%;
  }
}
.worker__navi ul li:last-child {
  border-right: none;
}
.worker__navi ul li a {
  width: 100%;
  display: block;
  font-size: clamp(16px, 1.8vw, 18px);
  padding: 20px 15px 30px 15px;
  display: block;
  font-weight: 700;
}
@media (max-width: 768px) {
  .worker__navi ul li a {
    padding: 2% 2% 30px 2%;
  }
}
@media (max-width: 480px) {
  .worker__navi ul li a {
    font-size: 13px;
  }
}
.worker__navi ul li a div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
}
.worker__navi ul li a .arrow {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.worker__navi ul li a .arrow::before,
.worker__navi ul li a .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 2px;
  height: 14px;
  border-radius: 9999px;
  background-color: #333;
  transform-origin: 50% calc(100% - 1px);
}
.worker__navi ul li a .arrow::before {
  transform: rotate(45deg);
}
.worker__navi ul li a .arrow::after {
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .worker__navi ul li a:hover {
    color: #fff;
    opacity: 1;
    transition: 0.3s;
  }
  .worker__navi ul li a:hover .arrow::before,
  .worker__navi ul li a:hover .arrow::after {
    background: #fff;
  }
}
@media (min-width: 769px) {
  .worker__navi ul li.track a:hover {
    background: #083d77;
  }
}
@media (min-width: 769px) {
  .worker__navi ul li.bus1 a:hover {
    background: #ebad00;
  }
}
@media (min-width: 769px) {
  .worker__navi ul li.bus2 a:hover {
    background: #219ebc;
  }
}
@media (min-width: 769px) {
  .worker__navi ul li.taxi a:hover {
    background-color: #bc4749;
  }
}
.worker__box {
  padding: 50px 0;
  background: #edf2fb;
}
@media (max-width: 768px) {
  .worker__box {
    padding: 5% 0;
  }
}
.worker__box__title {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  padding: 20px 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .worker__box__title {
    padding: 15px 20px;
  }
}
.worker__box.track h3 {
  color: #fff;
  background: #083d77;
}
.worker__box__inner {
  padding: 60px 50px;
}
@media (max-width: 768px) {
  .worker__box__inner {
    padding: 6% 15px;
  }
}
.worker__box__inner__note {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .worker__box__inner__note {
    margin-bottom: 5%;
  }
}
.worker__box__inner h4 .heading-21 {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 700;
  display: block;
  position: relative;
  padding: 0.5em 0.7em 0.4em;
  border-bottom: 3px solid #083d77;
  color: #083d77;
  margin-bottom: 50px;
}
.worker__box__inner h4 .heading-21:before, .worker__box__inner h4 .heading-21:after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.worker__box__inner h4 .heading-21:before {
  background-color: #083d77;
}
.worker__box__inner h4 .heading-21:after {
  bottom: -11px;
  background-color: #fff;
}
.worker__box__inner .flowchart__img {
  padding: 0 100px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .worker__box__inner .flowchart__img {
    margin-bottom: 9%;
    padding: 0 4%;
  }
}
@media (max-width: 480px) {
  .worker__box__inner .flowchart__img {
    padding: 0 0;
  }
}
.worker__box__inner .requirements__txt ol {
  padding-left: 20px;
}
@media (max-width: 480px) {
  .worker__box__inner .requirements__txt ol {
    padding-left: 24px;
  }
}
.worker__box__inner .requirements__txt ol li {
  margin-bottom: 30px;
  line-height: 1.8;
}
.worker__box__inner .requirements__txt ol li ul {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .worker__box__inner .requirements__txt ol li ul {
    padding-left: 20px;
  }
}
.worker__box__inner .requirements__txt ol li ul li {
  margin-top: 20px;
  list-style-type: katakana;
}
.worker__box__inner .requirements__txt ol > li {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  list-style-type: decimal;
}
.worker__box__inner .document__txt ul {
  padding-left: 20px;
}
.worker__box__inner .document__txt ul li {
  list-style-type: disc;
  margin-bottom: 20px;
}
.worker__box__inner .document__txt ul li span {
  font-size: clamp(12px, 1.4vw, 14px);
  display: block;
  margin: 20px 0 30px;
}
.worker__box__inner .document__txt ul li:last-child {
  margin-bottom: 0;
}
.worker__box__inner .document__txt ul li .fc__red {
  margin: 0;
}
.worker__box__inner .document__table + .document__table {
  margin-top: 50px;
}
.worker__box__inner .document__table th,
.worker__box__inner .document__table td {
  padding: 20px 20px;
  border: 1px solid #ddd;
}
@media (max-width: 768px) {
  .worker__box__inner .document__table th,
  .worker__box__inner .document__table td {
    padding: 10px 15px;
  }
}
.worker__box__inner .document__table th {
  text-align: center;
  color: #FFF;
}
.track .worker__box__inner .document__table th {
  background: #083d77;
}
.bus1 .worker__box__inner .document__table th {
  background: #ffaa1c;
}
.bus2 .worker__box__inner .document__table th {
  background: #219ebc;
}
.taxi .worker__box__inner .document__table th {
  background: #bc4749;
}
.worker__box.bus1 {
  background: #ffeedd;
}
.worker__box.bus1 h3 {
  color: #333333;
  background: #ffaa1c;
}
.worker__box.bus1 .worker__box__inner h4 .heading-21 {
  border-bottom: 3px solid #c76b00;
  color: #c76b00;
}
.worker__box.bus1 .worker__box__inner h4 .heading-21:before {
  background-color: #c76b00;
}
.worker__box.taxi {
  background: #fff0f3;
}
.worker__box.taxi h3 {
  color: #fff;
  background: #bc4749;
}
.worker__box.taxi .worker__box__inner h4 .heading-21 {
  border-bottom: 3px solid #bc4749;
  color: #bc4749;
}
.worker__box.taxi .worker__box__inner h4 .heading-21:before {
  background-color: #bc4749;
}
.worker__box.bus2 {
  background: #edf6f9;
}
.worker__box.bus2 h3 {
  color: #fff;
  background: #219ebc;
}
.worker__box.bus2 .worker__box__inner h4 .heading-21 {
  border-bottom: 3px solid #219ebc;
  color: #219ebc;
}
.worker__box.bus2 .worker__box__inner h4 .heading-21:before {
  background-color: #219ebc;
}
@media (max-width: 768px) {
  .worker .accordion {
    position: relative;
    margin-bottom: 90px;
  }
  .worker .accordion-btn {
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    left: 0;
    margin: auto;
    padding: 5px 25px;
    position: absolute;
    right: 0;
    text-align: center;
    transition: all 0.2s;
    width: fit-content;
    z-index: 1;
  }
  .worker .accordion-btn::after {
    content: "▼ 続きを読む";
  }
  .worker .accordion-text {
    overflow: hidden;
    position: relative;
  }
  .worker .accordion-text.is-hide {
    height: 200px;
  }
  .worker .accordion-text::before {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    bottom: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
  }
  .worker .accordion-btn.is-show {
    bottom: -3em;
  }
  .worker .accordion-btn.is-show::after {
    content: "▲ 要件を縮める";
  }
  .worker .accordion-btn.is-show + .accordion-text::before {
    display: none;
  }
  .worker .track .accordion-btn {
    background-color: #083d77;
    border: 1px solid #083d77;
  }
  .worker .bus1 .accordion-btn {
    background-color: #ebad00;
    border: 1px solid #ebad00;
  }
  .worker .bus2 .accordion-btn {
    background-color: #219ebc;
    border: 1px solid #219ebc;
  }
  .worker .taxi .accordion-btn {
    background-color: #bc4749;
    border: 1px solid #bc4749;
  }
}

.amount {
  background: #fff;
}
.amount__title {
  text-align: center;
  color: #fff;
  background: #0f7f39;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .amount__title {
    padding: 3% 20px;
  }
}
.amount__title .wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.amount__title h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
}
.amount__cont {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .amount__cont {
    padding: 12% 0;
  }
}
.amount__cont .wrap {
  padding: 50px 60px;
}
@media (max-width: 768px) {
  .amount__cont .wrap {
    padding: 20px 15px;
  }
}
.amount__cont p {
  text-align: center;
}
@media (max-width: 768px) {
  .amount__cont p {
    text-align: left;
  }
}
.amount__cont table {
  margin-top: 30px;
}
.amount__cont table th, .amount__cont table td {
  padding: 20px 20px;
  border: 1px solid #ddd;
}
@media (max-width: 768px) {
  .amount__cont table th, .amount__cont table td {
    padding: 10px 15px;
  }
}
.amount__cont table th {
  text-align: center;
  font-weight: 600;
  background: #e3ebe4;
}
@media (max-width: 480px) {
  .amount__cont table td {
    padding: 10px 10px;
  }
}
.amount__cont table td:nth-of-type(1) span {
  color: #007a33;
  font-weight: 600;
  text-align: right;
  display: block;
}
@media (max-width: 768px) {
  .amount__cont table td:nth-of-type(1) span {
    padding-top: 10px;
  }
}
@media (max-width: 480px) {
  .amount__cont table td:nth-of-type(1) span {
    text-align: left;
  }
}
.amount__cont table td:nth-of-type(1) span.black {
  color: #333;
}
.amount__cont table td:nth-of-type(2) {
  text-align: center;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .amount__cont table td:nth-of-type(2) {
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .amount__cont table td:nth-of-type(2) {
    min-width: 100px;
  }
}
.amount__cont table td:nth-of-type(2) .sml-text {
  padding-right: 4%;
  font-size: clamp(12px, 1.4vw, 14px);
}
@media (max-width: 768px) {
  .amount__cont table td:nth-of-type(2) .sml-text {
    padding-right: 0;
    display: block;
  }
}

.drawer-toggle {
  background: #FFF;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 38px;
  height: 33px;
  padding: 4px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.drawer-toggle span {
  display: block;
  height: 3px;
  background: #188441;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .drawer-toggle {
    display: flex;
  }
}
/*.drawer-toggle.is-open span {
  background: #fff;
}*/
.drawer-toggle.is-open span:nth-of-type(1) {
  transform: translate(0, 12px) rotate(45deg);
}
.drawer-toggle.is-open span:nth-of-type(2) {
  display: none;
}
.drawer-toggle.is-open span:nth-of-type(3) {
  transform: translate(0, -10px) rotate(-45deg);
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: linear-gradient(-133deg, #188441, #147038);
  color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 20px 0;
}
.drawer-menu ul {
  list-style: none;
  margin: 0;
}
.drawer-menu ul li {
  border-bottom: 1px solid #fff;
}
.drawer-menu ul li a {
  display: block;
  color: #fff;
  padding: 15px 20px 15px 0;
  text-decoration: none;
  font-weight: bold;
}
.drawer-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.drawer-menu ul li a .arrow {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-top: 29px;
  border-radius: 9999px;
  background-color: #fff;
  margin-right: 10px;
}
.drawer-menu ul li a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}
.drawer-menu .login {
  margin-top: 50px;
  text-align: center;
}
.drawer-menu .login a {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 3px;
  color: #333;
  background: #fff;
  display: inline-block;
  padding: 10px 2vw;
  box-shadow: 0px 5px 0px 0px #ddd;
  font-weight: 600;
}
.drawer-menu .login a span {
  position: relative;
}
.drawer-menu .login a span img {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.drawer-menu.is-open {
  right: 0;
}

.news {
  padding: 50px 0 60px;
}
@media (max-width: 768px) {
  .news {
    padding: 5% 0 6%;
  }
}
.news__list {
  max-width: 860px;
  margin: 0 auto;
  border: 5px solid #0f7f39;
  background: #fff;
}
.news__list h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 20px 0;
  background-color: #0f7f39;
  color: #fff;
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 600;
}
.news__list ul {
  margin: 0;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .news__list ul {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .news__list ul {
    padding: 30px 15px;
  }
}
.news__list ul li {
  padding: 10px 10px 10px 20px;
  border-bottom: 2px solid #efefef;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: baseline;
}
@media (max-width: 768px) {
  .news__list ul li {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .news__list ul li {
    margin-bottom: 10px;
  }
}
.news__list ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 11px;
}
@media (max-width: 768px) {
  .news__list ul li:before {
    top: 9px;
  }
}
.news__list ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.news__list ul li span {
  width: 20%;
  font-size: clamp(12px, 1.4vw, 14px);
  padding-right: 20px;
}
@media (max-width: 768px) {
  .news__list ul li span {
    font-size: clamp(14px, 1.6vw, 16px);
    display: block;
    width: 100%;
  }
}