@charset "utf-8";

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  margin: 0;
}

body {
  font-size: 1.6rem;
  font-family: 'Hiragino Kaku Gothic ProN、ヒラギノ角ゴ ProN、Hiragino Kaku Gothic Pro、ヒラギノ角ゴ Pro', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0 auto;
  height: 100%;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.pcOnly {
  display: block;
}

.spOnly {
  display: none;
}

.c_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
  margin-top: 65px;
}

header {
  background-color: #fff;
  padding: 16px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
}

header div {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

header div nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header div h1 {
  width: 27vw;
  max-width: 340px;
}

header div .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header div .menu li {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-left: 20px;
}

header div .menu .btn {
  background-color: #f0a134;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

header div .menu .btn a {
  display: block;
  padding: 5px 10px 4px;
}

header div .menu .btn:hover {
  opacity: .7;
}

@media screen and (max-width: 1069px) {
  header div .menu li {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 16px 20px;
  }

  header h1 .pcOnly {
    display: none;
  }

  header h1 .spOnly {
    display: block;
  }
}

main .kv {
  padding: 60px 20px 40px;
  background-color: #15456b;
}

main .kv_inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

main .kv_inner .ttl_txt {
  font-size: 4.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}

main .kv_inner .date {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background-color: #0e503c;
  display: inline-block;
  padding: 7px 43px;
  border-radius: 25px;
  margin: 16px 0 5px;
}

main .kv_inner .date+p {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: bold;
}
main .kv_inner .text_area {
  font-size: 1.8rem;
  margin: 20px auto 20px;
  padding: 10px 0;
  color: #fff;
}
main .kv_inner .text_area span {
  font-size: 1.6rem;
  font-weight: normal;
}
main .kv_inner .text_area .lead_txt {
  font-size: 2.4rem;
}
main .kv_inner .text_area .sub_txt {
  font-size: 1.6rem;
  margin-top: 20px;
  font-weight: normal;
}
main .kv_inner .text_area a {
  text-decoration: underline;
  font-weight: bold;
  transition: .3s;
}
main .kv_inner .text_area a:hover {
  text-decoration: none;
}
main .kv_inner .link_area {
  background: #008d62;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  z-index: 99;
}
main .kv_inner .link_area p {
  font-weight: normal;
}
main .kv_inner .link_area .bold {
  font-weight: bold;
}
main .kv_inner .flow_area {
  margin-bottom: 20px;
  background: #e5f3ef;
  color: #333;
}
main .kv_inner .flow_area .ttl_text {
  font-weight: bold;
  font-size: 2.4rem;
  color: #008d62;
}
main .kv_inner .flow_area a {
  text-decoration: underline;
  font-weight: bold;
}
main .kv_inner .flow_area .flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
}
main .kv_inner .flow_area .step {
  position: relative;
  width: 180px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 3px solid #008d62;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  color: #333;
}
/* 矢印 */
main .kv_inner .flow_area .step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #008d62;
}
main .kv_inner .link_area ol {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
main .kv_inner .link_area ol li {
  flex: 1;
  cursor: pointer;
  position: relative;
}
main .kv_inner .link_area ol li a {
  background-color: #fff;
  color: #008d62;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 15px 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: all .3s;
}
main .kv_inner .link_area ol li a:hover {
  color: #fff;
  background: #f0a134;
  border: 2px solid #f0a134;
}
main .kv_inner .link_area ol li.has-child ul {
  position: absolute;
  left: 0;
  top: 85px;
  z-index: 4;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
main .kv_inner .link_area ol li.has-child ul li a {
  background: #e5f3ef;
  border-radius: 0;
  border-right: 2px solid #b2ddd0;
  border-bottom: 2px solid #b2ddd0;
  border-left: 2px solid #b2ddd0;
}

/*hoverしたら表示*/
main .kv_inner .link_area ol li.has-child:hover>ul,
main .kv_inner .link_area ol li.has-child ul li:hover>ul,
main .kv_inner .link_area ol li.has-child:active>ul,
main .kv_inner .link_area ol li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

main .kv_inner .link_area ol li.has-child ul li:first-of-type a {
  border-top: 2px solid #b2ddd0;
}

main .kv_inner .link_area ol li.has-child ul li a:hover,
main .kv_inner .link_area ol li.has-child ul li a:active {
  background: #f0a134;
  border: 2px solid transparent;
}


main .wave_area {
  background: #008d62;
  position: relative;
  padding: 26px 10px 30px;
}
main .wave_area .wave_img {
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 4.3vw;
  top: -5vw;
}
main .wave_area::after {
  content: "";
  position: absolute;
  background: url(../img/kv_icon.png) center/contain no-repeat;
  width: 10.7vw;
  padding-top: 5vw;
  top: -5vw;
  right: 3vw;
}
main .wave_text {
  color: #fff;
  font-weight: bold;
  text-align: center;
}
main .wave_text a {
  text-decoration: underline;
}
main .wave_text a:hover {
  text-decoration: none;
}


main section {
  padding: 0 20px;

}

main section .wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

main h2 {
  margin: 70px 0 20px;
  font-size: 3.4rem;
  text-align: center;
  font-weight: bold;
  color: #15456b;
}

.pdf_area .pdf_img {
  max-width: 820px;
  margin: 40px auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.pdf_area .pdf_img img {
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 50%;
}
.box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px;
}

.box .box_inner {
  color: #008d62;
  text-align: center;
  font-weight: bold;
}

.nav {
  padding-top: 50px;
}
.nav nav {
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.nav nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.nav nav ul ul {
  display: block;
}

.nav nav ul li {
  position: relative;
  flex: 1;
}
.nav nav ul li a p {
  color: #D62B2B;
  font-size: 14px;
  line-height: 1.4;
  padding-top: 2px;
}

.nav nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 20px;
  border: 2px solid #008d62;
  color: #fff;
  transition: all .3s;
  width: 100%;
  height: 90px;
  vertical-align: middle;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  font-size: 1.8rem;
}

.nav nav ul li li a {
  padding: 10px 5px;
  display: block;
  height: auto;
}

.nav nav ul li a:hover {
  color: #fff;
  background: #f0a134;
  border: 2px solid #f0a134;
  border-top: none;
}

.nav nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 91px;
  z-index: 4;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  /*  transition: all .3s;*/
  transition: all 0s;
}
.nav nav li.has-child ul li {
  background: #e5f3ef;
  border-radius: 0;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}
.nav nav ul li li a:hover {
  border-radius: 0;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #008d62;
  border-radius: 0;
  border-top: none;
  border-right: 2px solid #b2ddd0;
  border-bottom: 2px solid #b2ddd0;
  border-left: 2px solid #b2ddd0;
}
nav li.has-child ul li:first-of-type a {
  border-top: 2px solid #b2ddd0;
}
nav li.has-child ul li:first-of-type a:hover {
  border-top: 2px solid #f0a134;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #f0a134;

}


@media screen and (max-width:700px) {
  .nav {
    padding-top: 40px;
    margin-top: -1px;
    background-color: #fff;
  }
  .nav nav {
    padding: 0;
  }

  .nav nav ul {
    display: block;
  }

  .nav nav li.has-child ul,
  .nav nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    margin-top: 2px;
  }

  main .kv_inner .link_area ol li.has-child ul,
  main .kv_inner .link_area ol li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    margin-top: 2px;
  }


  .nav nav ul li {
    width: 100%;
    margin-bottom: 16px;
  }
  .nav nav ul li a p {
    font-size: 1.2rem;
  }
  .nav nav ul li a {
    display: block;
    height: auto;
    padding: 10px 23px;
  }
  .nav nav ul li li a {
    padding: 14px 23px;
    font-size: 1.6rem;
  }
  .nav nav ul li a:hover {
    border-top: 2px solid #f0a134;
  }
  .nav nav li.has-child ul li {
    margin-bottom: 0;
  }
  .nav nav .has-child.link_btn::after {
    transform: rotate(45deg);
  }

  .nav nav ul li.has-child::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 32px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #008d62;
    border-right: 2px solid #008d62;
    transform: rotate(135deg);
  }
  main .kv_inner .link_area ol li.has-child ul li {
    margin-bottom: 0;
  }
  main .kv_inner .link_area ol li.has-child.link_btn::after {
    transform: rotate(45deg);
  }

  main .kv_inner .link_area ol li.has-child::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 32px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #008d62;
    border-right: 2px solid #008d62;
    transform: rotate(135deg);
  }

  .nav nav ul li.h_first::before {
    top: 38px;
  }

  .nav nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
  .nav nav ul li a:hover {
    background: #fff;
    color: #008d62;
  }
  main .kv_inner .link_area ol li.has-child.active::before {
    transform: rotate(-45deg);
  }
  main .kv_inner .link_area ol li a:hover {
    background: #fff;
    color: #008d62;
  }

}

main .co {
  text-align: center;
  padding-top: 40px;
}
main .step {
  font-weight: bold;
  background: #005792;
  color: #fff;
  letter-spacing: 0.2rem;
  border-radius: 10px 10px 0 0;
  font-size: 1.4rem;
}
main .step span {
  font-size: 2rem;
}
main .co .triangle {
  position: relative;
  padding: 40px 0;
  font-weight: bold;
  height: 100px;
}
main .co .triangle::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 50px solid #FDC36F;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  z-index: -1;
}
main .co .box {
  border: 2px solid #005792;
  border-radius: 0 0 10px 10px;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px;
}
main .co .box .ttl_txt {
  font-size: 2.4rem;
}
main .co .box a {
  display: block;
  padding: 20px;
  background: #FDB44B;
  border: 2px solid #005792;
  border-radius: 60px;
  color: #005792;
  margin: 0 auto;
  width: 60%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
main .co .box span {
  color: #D62B2B;
  font-size: 1.4rem;
}
main .co .box a:hover {
  background: #FDC26E;
  border-radius: 60px;
  box-shadow: none;
}
main .co .check_ship_anno {
  font-weight: bold;
  font-size: 1.6rem;
}
main .co .check_ship_anno a {
  text-decoration: underline;
  /*  color: #D62B2B;*/
  display: initial;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
main .co .check_ship_anno a:hover {
  text-decoration: none;
  background: none;
}
main .co .check_ship_anno span {
  font-size: 1.6rem;
}

main .apply {
  border-radius: 10px;
  padding: 30px 20px;
  background: #e5f3ef;
}
main .apply .ttl_text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
main .apply p {
  font-size: 1.6rem;
  color: #333;
}
main .apply p span {
  font-size: 1.6rem;
}
main .flex {
  justify-content: space-around;
}
main .apply .btn {
  font-size: 2rem;
  width: 46%;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}
main .apply .btn p {
  font-size: 1.4rem;
  color: #fff;
}
main .apply .btn:hover {
  background: #FDC26E;
  opacity: 1;
  box-shadow: none;
}

main #news {
  padding: 60px 0 0;
  margin-top: 60px;
}
main .news .ttl {
  font-size: 3.4rem;
  font-weight: bold;
  color: #008d62;
  text-align: center;
}
main .news .annotation {
  text-align: center;
  padding: 20px;
  background: #f9ddb6;
  border: 2px solid #ea8f0e;
  font-weight: bold;
  margin: 20px auto;
  border-radius: 10px;
}
main .news_box {
  background: #fff;
  margin-top: 34px;
  padding: 40px 20px;
  border: 2px solid #b2ddd0;
  line-height: 1.6;
  border-radius: 10px;
}
main .news .news_box dl div {
  display: flex;
}
main .news dl {
  max-width: 854px;
  margin: 0 auto;
  overflow-y: scroll;
  height: 310px;
}

main .news dl::-webkit-scrollbar-track {
  background: #b2ddd0;
  border-radius: 5px;
}

main .news dl::-webkit-scrollbar-thumb {
  background: #b2ddd0;
  border-radius: 5px;
}

main .news dl dt {
  font-weight: bold;
  padding: 12px 8px 12px;
  color: #008d62;
  border-bottom: 2px solid #008d62;
  width: 143px;
  font-size: 1.5rem;
}


main .news dl dd {
  padding: 12px 10px 12px;
  ;
  border-bottom: 2px solid #b2ddd0;
  font-size: 1.8rem;
  width: 100%;
}
main .news .news_box .small_text {
  font-size: 1.2rem;
}

main .news dl dd a:hover {
  text-decoration: underline;
}

main .news dl .old {
  padding-left: 68px;
}

main .news dl .pdf a::after {
  margin-left: 0;
}

main .news dl .pdf {
  color: #004BB1;
}

main #green_bg {
  background-color: #b2ddd0;
  background-image: url(../img/bg01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding-bottom: 70px;
}

main .flex {
  display: flex;
}


main .btn {
  background-color: #fff;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  border-radius: 40px;
  margin-top: 30px;
}

main .btn a {
  display: block;
  padding: 12px 60px;
}

main .btn:hover {
  opacity: 0.8;
}

main .pdf a::after {
  content: "";
  display: inline-block;
  background: url(../img/pdf.png) no-repeat 0 0 / 18px auto;
  width: 18px;
  height: 19px;
  margin-left: 0;
  vertical-align: middle;
}

main .docx a::after {
  content: "";
  display: inline-block;
  background: url(../img/docx.png) no-repeat 0 0 / 16px auto;
  width: 16px;
  height: 18px;
  margin-left: 2px;
  vertical-align: middle;
}

main .xlsx a::after {
  content: "";
  display: inline-block;
  background: url(../img/xlsx.png) no-repeat 0 0 / 16px auto;
  width: 16px;
  height: 18px;
  margin-left: 2px;
  vertical-align: middle;
}

main .zip a::after {
  content: "";
  display: inline-block;
  background: url(../img/zip.png) no-repeat 0 0 / 15px auto;
  width: 16px;
  height: 18px;
  margin-left: 2px;
  vertical-align: middle;
}

main .next {
  background-color: #f0a134;
}

main .off {
  background-color: #aaa;
}

main .off:hover {
  opacity: 1;
}

main .inquiry {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

main .inquiry .box {
  text-align: center;
  padding: 32px;
  border: 2px solid #008d62;
  max-width: 820px;
  margin: 0 auto;
}

main .inquiry .box .txt {
  color: #008d62;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

main .inquiry .box .big {
  font-size: 2.6rem;
  font-weight: bold;
}

main .inquiry .box .flex {
  justify-content: center;
}

main .inquiry .box .tell {
  margin: 0 0 0px;
  align-items: center;
}

main .inquiry .box .tell img {
  width: 2.0rem;
  height: 2.0rem;
}

main .inquiry .box .tell p {
  font-size: 2.0rem;
  margin-left: 6px;
}

main .inquiry .box .tell span {
  color: #4189BA;
}

main .inquiry .box .small {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

main .inquiry .box .medium {
  margin-top: 3.0rem;
  font-size: 2.0rem;
  font-weight: bold;
}

main .inquiry .box .link_area a {
  color: #005792;
}

main .inquiry .box .link_area a:hover {
  text-decoration: underline;
}

main .inquiry .faq {
  text-align: center;
}

main .inquiry .faq .txt {
  color: #006187;
  margin-bottom: 30px;
}

main .inquiry .faq .pdf_box {
  background-color: #333;
  padding: 0 0 4px;
}
main .inquiry .faq .btn {
  width: 60%;
  margin-top: 0;
}
main .inquiry .faq .btn a {
  padding: 20px 0;
}
.orange {
  color: #ea8f0e;
}
main .inquiry .text_area {
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}


#pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  z-index: 10;
  width: 50px;
}

#pagetop a:hover {
  text-decoration: none;
  opacity: 0.8;
}

#news {
  padding-top: 80px;
}

#target {
  padding-top: 20px;
  margin-top: -20px;
}

#application {
  padding-top: 20px;
  margin-top: -20px;
}

#inquiry {
  padding-top: 20px;
  margin-top: -20px;
}

footer {
  background-color: #15456b;
  color: #fff;
  padding: 30px 0 20px;
  margin-top: 50px;
}
footer .wrapper {
  max-width: 968px;
  margin: 0 auto;
}
footer .ttl_txt {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
footer .footer_text {
  display: flex;
  align-items: center;
  max-width: 540px;
  margin: 20px auto;
}
footer .footer_text img {
  width: 100px;
  margin-left: 30px;
}
footer .link {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .link li {
  position: relative;
  font-size: 1.2rem;
  padding-right: 14px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
footer .link li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 7px;
  border: #fff solid;
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg) translateY(-65%);
}



.inquiry a {
  color: #005792;
  text-decoration: underline;
}

.inquiry a:hover {
  text-decoration: none;
}


@media screen and (max-width: 700px) {
  body {
    font-size: 1.4rem;
  }

  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }

  header {
    padding: 14px 18px;
  }

  header div h1 {
    width: 66.5vw;
    margin-right: auto !important;
    background: transparent !important;
    padding: 0 !important;
  }

  header div h1 img {
    vertical-align: middle;
  }

  header div nav {
    align-items: center;
    justify-content: flex-end;
  }

  header .humbtn {
    top: 16px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 99;
  }

  header .btn-line {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #008d62;
    transition: .2s;
  }

  header .btn-line::before,
  header .btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #008d62;
    transition: .5s;
    display: block;
  }

  header .btn-line::before {
    transform: translateY(-12px);
  }

  header .btn-line::after {
    transform: translateY(12px);
  }

  header .btn-line.open {
    background-color: transparent;
  }

  header .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    background-color: #fff;
    transition: .2s;
  }

  header .btn-line.open::before {
    transform: rotate(45deg);
  }

  header .btn-line.open::after {
    transform: rotate(-45deg);
  }

  header div .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: -100%;
    width: 100%;
    height: auto;
    background-color: #218d62;
    color: #fff;
    transition: .3s;
    z-index: 10;
    padding-top: 68px !important;
  }

  header .menu.open {
    right: 0;
    top: 0;
    position: absolute;
  }

  header div .menu li {
    width: 100%;
    height: 100%;
    margin-left: 0;
    font-size: 2rem;
    border-bottom: 1px solid rgb(248 249 250 / 45%);
    color: #fff;
  }

  header div .menu li:first-of-type {
    border-top: 1px solid rgb(248 249 250 / 45%);
  }

  header div .menu li a {
    padding: 14px 10px;
    display: block;
  }

  header div .menu .btn {
    display: block;
    margin-left: 0;
    border-radius: 0;
  }

  header div .menu .btn:last-of-type {
    margin-left: 0;
  }

  header div .menu .btn a {
    padding: 10px 0;
  }

  main {
    margin-top: 52px;
  }
  main .kv {
    padding: 30px 15px 40px;
    background-size: cover;
  }

  main .kv_inner .ttl_txt {
    font-size: 2.3rem;
    position: relative;
  }

  main .kv_inner .date {
    font-size: 1.4rem;
    padding: 6px 10px;
    display: block;
    margin: 14px 0 0;
  }

  main .kv_inner .date+p {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  main .kv_inner .text_area {
    font-size: 1.4rem;
    margin: 20px auto;
    text-align: left;
    padding: 0;
  }
  main .kv_inner .text_area .lead_txt {
    font-size: 1.6rem;
    text-align: center;
  }
  main .kv_inner .link_area ol {
    flex-direction: column;
  }
  main .kv_inner .link_area ol li a {
    padding: 14px 5px;
    font-size: 1.6rem;
  }
  main .kv_inner .text_area .sub_txt {
    font-size: 1.3rem;
    margin-top: 14px;
  }
  main .wave_area .wave_img {
    padding-top: 3vw;
    top: -5vw;
  }
  main .wave_area {
    padding: 16px 15px 14px;
    word-break: break-all;
  }
  main .wave_area::after {
    width: 14.7vw;
    padding-top: 8vw;
    top: -7vw;
    right: 3vw;
  }

  main section {
    padding: 0 15px 0;
  }

  main section .wrapper {
    max-width: auto;
  }

  main h2 {
    padding-top: 40px;
    font-size: 2.4rem;
    margin: 0;
  }

  main .box {
    margin-top: 10px;
    border-radius: 10px;
    padding: 20px 14px;
  }

  .box .box_inner {
    font-size: 1.6rem;
    padding: 5px 0;
  }

  .pdf_area .pdf_img {
    margin: 20px auto 0;
    gap: 10px;
  }
  .pdf_area .pdf_img img {
    width: 48%;
  }

  .nav nav ul li.has-child::before {
    display: none;
  }
  /*
  .nav nav ul li {
    box-shadow: none;
  }
  main .nav nav ul .pulldown {
    display: none;
  }
*/
  main .nav nav .has-child {
    position: relative;
  }
  main .nav nav .has-child::after {
    border-right: solid 2px #008d62;
    border-top: solid 2px #008d62;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    right: 25px;
    top: 20px;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 10px;
  }
  main .nav nav .has-child.active::after {
    top: 25px;
    transform: rotate(-45deg);
  }

  main .kv_inner .link_area ol li.has-child::before {
    display: none;
  }
  main .kv_inner .link_area ol li {
    box-shadow: none;
  }
  main .kv_inner .link_area ol li .pulldown {
    display: none;
  }
  main .kv_inner .link_area ol li.has-child {
    position: relative;
  }
  main .kv_inner .link_area ol li.has-child::after {
    border-right: solid 2px #008d62;
    border-top: solid 2px #008d62;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 25px;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 10px;
  }
  main .kv_inner .link_area ol li.has-child.active::after {
    top: 25px;
    transform: rotate(-45deg);
  }
  main .kv_inner .flow_area .ttl_text {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  main .kv_inner .flow_area .flow {
    flex-direction: column;
    gap: 30px;
  }
  main .kv_inner .flow_area .step {
    width: 100%;
    height: auto;
    border: 2px solid #008d62;
    padding: 8px 10px;
  }
  main .kv_inner .flow_area .step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -25px;
    transform: translateX(50%);
    border: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #008d62;
  }
  main .kv_inner .text_area span {
    font-size: 1.4rem;
  }


  main .co {
    padding-top: 20px;
  }
  main .co .triangle {
    z-index: 1;
    padding: 20px 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .co .triangle::before {
    z-index: -1;
    top: 1px;
  }
  main .co .triangle_t::before {
    top: 12px;
  }
  main .co .box {
    margin-top: 0;
    padding: 14px;
    font-size: 1.4rem;
  }
  main .co .box a {
    width: 100%;
    margin-bottom: 10px;
  }
  main .co .box .ttl_txt {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  main .co .box .check_ship_anno {
    font-size: 1.4rem;
  }
  main .co .box .check_ship_anno span {
    font-size: 1.4rem;
  }
  main .apply {
    padding: 20px 14px;
  }
  main .apply p {
    font-size: 1.4rem;
  }
  main .apply .ttl_text {
    font-size: 1.6rem;
  }
  main .apply p span {
    font-size: 1.4rem;
  }
  main .apply .flex {
    display: block;
  }
  main .apply .btn {
    width: 100%;
    font-size: 1.8rem;
    margin-top: 14px;
  }
  main .apply .btn .small {
    font-size: 1.3rem;
  }

  main .news {
    padding: 60px 20px 40px;
  }
  main .news .ttl {
    font-size: 2.4rem;
  }
  main .news dl {
    height: 360px;
  }
  main .news .news_box dl div {
    display: block;
  }

  main .news_box {
    padding: 14px;
    margin-top: 20px;
  }
  main .news dl dt {
    font-size: 1.2rem;
    width: 100%;
    border-bottom: none;
    padding: 8px 0 0;
  }

  main .news dl dd {
    font-size: 1.4rem;
    width: 95%;
    padding: 0px 0px 3px;
    border-bottom: 1px solid #b2ddd0;
  }

  main .news dl .old {
    padding-left: 0;
  }
  main .news .annotation {
    padding: 14px;
  }
  main .news .annotation.mt {
    margin-top: 10px;
  }
  main .news .small_text {
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
    line-height: 1.5;
  }

  main #green_bg {
    padding-bottom: 40px;
    margin-top: 40px;
  }

  main .pdf a::after {
    content: "";
    display: inline-block;
    background: url(../img/pdf.png) no-repeat 0 0 / 14px auto;
    width: 14px;
    height: 15px;
    margin-left: 0;
    vertical-align: middle;
  }

  main .docx a::after {
    content: "";
    display: inline-block;
    background: url(../img/docx.png) no-repeat 0 0 / 12px auto;
    width: 12px;
    height: 14px;
    margin-left: 2px;
    vertical-align: middle;
  }

  main .xlsx a::after {
    content: "";
    display: inline-block;
    background: url(../img/docx.png) no-repeat 0 0 / 12px auto;
    width: 12px;
    height: 14px;
    margin-left: 2px;
    vertical-align: middle;
  }

  main .btn {
    margin-top: 20px;
    width: 86%;
  }

  main .btn a {
    display: block;
    padding: 12px 0;
  }

  main .next a::after {
    background: url(../img/icon02.png) no-repeat 0 0 / 10px auto;
    ;
    width: 10px;
    height: 15px;
    margin-left: 10px;
  }

  main .next {
    background-color: #FDB44B;
  }

  main .inquiry .box {
    padding: 20px;
    margin-top: 10px;
  }

  main .inquiry .box .txt {
    font-size: 1.4rem;
  }

  main .inquiry .box .big {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  main .inquiry .box .flex {
    margin: 0;
    display: block;
  }

  main .inquiry .box .tell {
    display: flex;
  }

  main .inquiry .box .tell img {
    width: 1.6rem;
    height: 1.6rem;
  }

  main .inquiry .box .tell p {
    font-size: 1.6rem;
  }

  main .inquiry .box .medium {
    margin-top: 3.0rem;
    font-size: 1.6rem;
    font-weight: bold;
  }

  main .inquiry .box .small {
    margin: 4px 0 10px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  main .inquiry .box .phone {
    text-align: left;
    margin-top: 10px;
  }

  main .inquiry .box .link_area {
    margin-top: 4px;
    font-size: 1.2rem;
  }

  main .faq h2 {
    font-size: 2.2rem;
  }
  main .faq .btn a {
    padding: 20px 0;
  }
  main .inquiry .faq .btn {
    width: 90%;
    margin-top: 10px;
  }

  main .chart h2 {
    margin-bottom: 10px;
  }

  #pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 10;
    width: 50px;
  }

  main #news {
    padding-top: 40px;
    margin-top: 40px;
  }

  #target {
    padding-top: 0;
    margin-top: 0;
  }

  #application {
    padding-top: 0;
    margin-top: 0;
  }

  #inquiry {
    padding-top: 0;
    margin-top: 0;
  }

  footer {
    padding: 20px 0 40px;
    margin-top: 40px;
  }

  footer .wrapper {
    padding: 0 20px;
  }
  footer .ttl_txt {
    font-size: 1.8rem;
  }
  footer .footer_text img {
    width: 78px;
    margin-left: 12px;
  }
  footer .link {
    gap: 10px;
  }

  .check_ship_anno {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 400px) {
  main .simulation h2 {
    font-size: 2.2rem;
  }
}

/*pdfページ*/
.pulldown {
  font-size: 1.5rem;
}

.p_area .wrapper h2 {
  margin: 50px auto 10px;
}
.p_area table {
  width: 100%;
}
.p_area table th {
  background: #008d62;
  border: solid 1px #008d62;
  text-align: center;
  padding: 5px;
  color: #fff;
}
.p_area table td {
  border: 1px solid #008d62;
  vertical-align: middle;
  padding: 10px;
}
.p_area table .pdf,
.p_area table .docx,
.p_area table .xlsx,
.p_area table .zip {
  text-align: center;
  color: #008d62;
  text-decoration: underline;
}
.p_area table .pdf:hover,
.p_area table .docx:hover,
.p_area table .xlsx:hover {
  text-decoration: none;
}
.p_area table span {
  color: #D62B2B;
  font-weight: bold;
}
#back_button {
  max-width: 820px;
  margin: 30px auto;
  width: 30%;
}
#back_button a {
  background-color: #f0a134;
  color: #fff;
  border-radius: 40px;
  padding: 20px 60px;
  display: block;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .p_area .wrapper h2 {
    margin: 0 auto 10px;
  }
  .p_area table td {
    padding: 10px 7px;
  }
  #back_button {
    width: 80%;
    margin: 24px auto 0;
  }
}

.breadcrumb {
  background: #e5f3ef;
}
.breadcrumb ol {
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.breadcrumb ol li {
  font-size: 1.4rem;
  position: relative;
  padding-right: 30px;
  color: #333;
}
.breadcrumb ol li:not(:last-of-type)::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  top: 53%;
  right: 14px;
  border: #333 solid;
  border-width: 1.2px 1.2px 0 0;
  transform: rotate(45deg) translateY(-65%);
}
.breadcrumb ol li a {
  color: #008d62;
}

/* privacy */
.privacy_content .date {
  text-align: right;
  font-size: 1.4rem;
}
.privacy_content .title_text {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.privacy_content a,
.terms_content a {
  color: #008d62;
  text-decoration: underline;
}
.privacy_content a:hover {
  text-decoration: none;
}
.privacy_content h3,
.terms_content h3 {
  font-size: 1.9rem;
  font-weight: bold;
  margin-top: 30px;
}
.privacy_content .list {
  margin-left: 3.4em;
}
.privacy_content .list>li {
  list-style-type: none;
  counter-increment: cnt;
}
.privacy_content .list>li::before {
  content: "（ " counter(cnt) " ）";
  display: inline-block;
  margin-left: -3.4em;
  width: 3.4em;
}
.privacy_content .disc li {
  padding-left: 1em;
}
.privacy_content .disc>li::before {
  content: "・";
  display: inline-block;
  margin-left: -1em;
  width: 1em;
}
.privacy_content .decimal {
  list-style: decimal;
}
.privacy_content .decimal li {
  padding-left: 0.3em;
  margin-left: 2.4em;
}
.privacy_content .box {
  background: #e5f3ef;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 10px;
}
.privacy_content .box .box_ttl {
  font-size: 1.8rem;
}

@media screen and (max-width: 700px) {
  .privacy_content .date {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  .privacy_content .title_text {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .privacy_content h3,
  .terms_content h3 {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .privacy_content .list {
    margin-left: 2.8em;
  }
  .privacy_content .box {
    padding: 10px;
    margin: 10px 0;
  }
}

/* terms */
.terms_content .round li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.terms_content .list {
  margin-left: 1.6em;
  list-style: decimal;
}
.terms_content .terms_text {
  margin-top: 50px;
}
.terms_content .terms_text .right {
  text-align: right;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .terms_content .terms_text .right {
    margin-bottom: 10px;
  }
}

/* site */
.site_content h2 {
  margin: 50px 0 20px;
}
.site_content .site_wrapper {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
}
.site_content .site_wrapper p {
  display: inline-block;
  text-align: left;
  margin-bottom: 40px;
}
.site_content .site_wrapper ul {
  display: inline-block;
  padding: 20px;
  border-top: 2px solid #008d62;
  margin-top: 12px;
}
.site_content .site_wrapper ul li {
  text-align: left;
}
@media screen and (max-width: 700px) {
  .site_content h2 {
    margin: 0;
  }
  .site_content .site_wrapper {
    margin: 10px 0 0;
  }
  .site_content .site_wrapper p {
    margin-bottom: 30px;
  }
  .site_content .site_wrapper ul {
    padding: 12px 10px 0;
  }
}

/* howto */
.howto .box {
  border: 2px solid #008d62;
}
.howto dl dt {
  background: #e5f3ef;
  padding: 0px 5px 0px 10px;
  color: #008d62;
  font-size: 1.8rem;
}
.howto dl dd {
  margin: 8px auto 14px;
}
.howto .nav {
  padding-top: 30px;
}
.howto .howto_box {
  flex: 0 0 calc((100% - 40px) / 3);
}
.howto .howto_box ul li {
  background: #e5f3ef;
  border-radius: 0;
}
.howto .howto_box ul li a {
  border-top: none;
  border-right: 2px solid #b2ddd0;
  border-bottom: 2px solid #b2ddd0;
  border-left: 2px solid #b2ddd0;
  color: #008d62;
  border-radius: 0;
}
.howto .howto_box ul li:first-of-type a {
  border-top: 2px solid #b2ddd0;
}
.howto .nav nav>ul {
  flex-wrap: wrap;
}
.howto .nav nav ul li a.title {
  pointer-events: none;
  flex-direction: column;
  min-height: 50px;
  height: auto;
  padding: 10px;
  background: #008d62;
  color: #fff;
  border-radius: 0;
}
.howto .nav nav ul li a.title span {
  font-size: 1.3rem;
  margin-top: 2px;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 700px) {
  main .nav nav .howto_box a.title::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 10px;
  }
  .nav nav li.howto_box ul,
  .nav nav li.howto_box ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    margin-top: 2px;
  }
  .howto .howto_box ul li {
    margin-bottom: 0;
  }
  .howto .nav nav ul li a.title {
    pointer-events: auto;
    position: relative;
  }
  .howto .howto_box ul li a {
    padding: 14px 23px;
    font-size: 1.6rem;
  }
  main .nav nav .howto_box.active a.title::after {
    transform: rotate(-45deg);
  }
}