@charset "UTF-8";

/*============================
top_img
============================*/
.top_img {
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #00991a 50%, #00991a 100%);
  position: relative;
}

.top_img img {
  margin-left: auto;
  display: block;
  width: 92.3%;
  border-bottom-left-radius: 20px;
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  left: 3%;
  bottom: 140px;
  writing-mode: vertical-rl;
  z-index: 100;
  color: #fff;
}

/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -140px;
  content: "";
  height: 125px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

/* 線の背景色 */
.scroll::after {
  background-color: #006b12;
  bottom: -140px;
  content: "";
  height: 125px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media only screen and (max-width: 980px) {
  .top_img img {
    padding-top: 145.3846%;
    height: 0;
    width: 92.3%;
    background-image: url(../images/home/top_img_sp.png);
    background-size: cover;
  }

  .scroll {
    bottom: 100px;
    font-size: 13px;
    left: 1%;
  }

  /* 線のアニメーション部分 */
  .scroll::before,
  .scroll::after {
    bottom: -100px;
    height: 85px;
  }
}

/*============================
container
============================*/

.container {
  position: relative;
}

.container h2 {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  line-height: 1;
}

.container h2 .eng {
  font-size: 96px;
  font-weight: 400;

  /* グラデーション文字 */
  background: linear-gradient(to right, #00991a, #99e24b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.container h2 .ja {
  font-size: 16px;
  font-weight: 700;
  color: #00991a;
}

@media only screen and (max-width: 768px) {

  .container h2 {
    margin-bottom: 15px;
    gap: 10px;
  }

  .container h2 .eng {
    font-size: 40px;
  }

  .container h2 .ja {
    font-size: 13px;
  }
}

/*============================
#intro
============================*/

#intro {
  padding: 140px 0 200px;
  background-color: #00991a;
  color: #fff;
}

#intro .inner {
  position: relative;
}

#intro .inner::after {
  position: absolute;
  content: '';
  display: block;
  width: 480px;
  height: 490px;
  background: url(../images/home/intro/01.png)no-repeat center center;
  background-size: 100%;
  top: -80px;
  right: -50px;
  z-index: 1;
}

#intro p:nth-of-type(n+2) {
  font-size: 18px;
}

#intro p:nth-of-type(n+3) {
  font-size: 18px;
  line-height: 33px;
}

@media only screen and (max-width: 768px) {

  #intro {
    padding: 60px 0 60px;
  }

  #intro .inner::after {
    margin-top: 30px;
    content: "";
    display: block;
    position: static;
    width: 100%;
    padding-top: 101.4925%;
    height: 0;
    background: url(../images/home/intro/01_sp.png) no-repeat center center;
    background-size: contain;
  }

  #intro .catch img {
    padding-top: 30.8584%;
    display: block;
    height: 0;
    width: 100%;
    overflow: hidden;
    background: url(../images/home/intro/catch_sp.png) no-repeat center center;
    background-size: 100%;
  }

  #intro p:nth-of-type(n+2) {
    font-size: 16px;
    line-height: 1.7;
  }
}

/*============================
#service
============================*/

#service {
  counter-reset: num 0;
}

#service .box {
  padding: 60px;
  background-color: #00991a;
  border-radius: 10px;
}

#service .box .flex:first-of-type {
  margin-bottom: 30px;
  justify-content: flex-start;
  gap: 60px;
}

#service p.catch {
  margin-bottom: 0;
}

#service p {
  color: #fff;
}

#service dl {
  padding: 30px;
  width: 450px;
  display: block;
  background-color: #0a871f;
  color: #fff;
  position: relative;
  border-radius: 5px;
  z-index: 1;
}

#service dl::before {
  position: absolute;
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero)'';
  display: block;
  font-size: 64px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #00991a;
  bottom: -15px;
  right: 15px;
  font-family: "Bebas Neue", sans-serif;
  z-index: -1;
}

#service dl:nth-of-type(n+3) {
  margin-top: 20px;
}

#service dl dt {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

#service dl dd {
  line-height: 1;
  font-weight: 600;
}

#service ul.list {
  padding: 20px 25px 20px 50px;
  margin-top: 20px;
  background-color: #006b12;
  color: #fff;
  border-radius: 5px;
}

#service ul.list li::before {
  background-color: #fff;
}

#service .photo {
  margin-top: 30px;
}

#service .photo img {
  width: 296px;
}

@media only screen and (max-width: 768px) {
  #service .box {
    padding: 7% 5%;
  }

  #service .box .flex:first-of-type {
    margin-bottom: 20px;
    gap: 10px;
  }

  #service dl {
    padding: 5%;
    width: 100%;
  }

  #service dl::before {
    font-size: 48px;
    bottom: -10px;
    right: 10px;
  }

  #service dl:nth-of-type(n+2) {
    margin-top: 15px;
  }

  #service dl dt {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.7;
  }

  #service dl dd {
    line-height: 1.7;
  }

  #service ul.list {
    padding: 5% 5% 5% 12%;
    margin-top: 15px;
  }

  #service .photo {
    margin-top: 15px;
  }

  #service .photo img {
    width: 100%;
  }

  #service .photo img:nth-of-type(n+2) {
    margin-top: 15px;
  }
}

/*============================
#environment
============================*/

#environment {
  background: #006b12;
}

#environment h2 .eng {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#environment h2 .ja {
  color: #fff
}

#environment dl {
  padding: 30px 25px 30px 130px;
  width: 510px;
  height: 160px;
  background: url(../images/home/environment/01.png) no-repeat left bottom #fff;
  background-size: 100%;
  border-radius: 5px;
}

#environment dl:nth-of-type(n+3) {
  margin-top: 20px;
}

#environment dl:nth-of-type(2) {
  background-image: url(../images/home/environment/02.png);
}

#environment dl:nth-of-type(3) {
  background-image: url(../images/home/environment/03.png);
}

#environment dl:nth-of-type(4) {
  background-image: url(../images/home/environment/04.png);
}

#environment dl dt {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  padding: 0 0 15px 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #00991a;
}

@media only screen and (max-width: 768px) {
  #environment dl {
    padding: 5% 4% 5% 25%;
    width: 100%;
    height: auto;
  }

  #environment dl:nth-of-type(n+2) {
    margin-top: 15px;
  }

  #environment dl dt {
    font-size: 18px;
    line-height: 1.7;
    padding-bottom: 10px;
  }
}

/*============================
#numbers
============================*/

#numbers {
  background: linear-gradient(to bottom, #00991a, #99e24b);
}

#numbers h2 .eng {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#numbers h2 .ja {
  color: #fff
}

#numbers .box {
  position: relative;
  z-index: 1;
}

#numbers dl {
  padding: 30px 180px 30px 40px;
  width: 510px;
  height: 100%;
  background: url(../images/home/numbers/01.png) no-repeat right bottom #fff;
  background-size: 100%;
  border-radius: 5px;
}

#numbers dl:nth-of-type(2) {
  background-image: url(../images/home/numbers/02.png);
}

#numbers dl:nth-of-type(3) {
  background-image: url(../images/home/numbers/03.png);
}

#numbers dl:nth-of-type(4) {
  background-image: url(../images/home/numbers/04.png);
}

#numbers dl:nth-of-type(n+3) {
  margin-top: 20px;
}

#numbers dl dt {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #006b12;
  border-radius: 50px;
}

#numbers dl .number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

#numbers dl .number .eng {
  font-size: 96px;
  color: #00991a;
  display: inline-block;
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 768px) {

  #numbers dl {
    padding: 4% 32% 4% 5%;
    width: 100%;
    height: auto;
    background-size: 80%;
  }

  #numbers dl:nth-of-type(n+2) {
    margin-top: 15px;
  }

  #numbers dl dt {
    padding: 5px 10px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  #numbers dl .number {
    font-size: 16px;
    margin-left: 15px;
  }

  #numbers dl .number .eng {
    font-size: 64px;
  }

  #numbers dl dd:last-of-type {
    font-size: 13px;
    line-height: 1.4;
  }
}

/*============================
.gallery__wrap
============================*/

.gallery__wrap {
  margin-top: 60px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

@-webkit-keyframes text_scroll {
  0% {
    background-position: left 0 center;
  }

  100% {
    background-position: left -100000px center;
  }
}

.gallery__list {
  display: flex;
  list-style: none;
}

.gallery__list--left {
  animation: infinity-scroll-left 40s infinite linear both;
}

.gallery__item > img {
  height: 250px;
  width: 330px;
  margin-right: 20px;
  border-radius: 5px;
}

/*
右から左へ
----------------------------*/

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-99.9%);
  }
}

@media only screen and (max-width: 768px) {

  .gallery__wrap {
    margin-top: 30px;
  }

  .gallery__item > img {
    height: auto;
    width: 180px;
    margin-right: 10px;
  }
}

/*============================
#interview
============================*/

#interview h2 {
  margin-bottom: 10px;
}

#interview .text {
  width: 490px;
}

#interview .inner > .flex > img {
  width: 510px;
}

#interview .qa {
  margin-top: 60px;
  counter-reset: num 0;
  align-items: stretch;
}

#interview .qa dl {
  width: 500px;
  background-color: #f7f7f7;
  border-radius: 5px;
  position: relative;
}

#interview .qa dl:last-of-type {
  width: 100%;
}

#interview .qa dl::before {
  position: absolute;
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) '';
  display: block;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  bottom: -15px;
  right: 20px;
  font-family: "Bebas Neue", sans-serif;
}

#interview .qa dl:nth-of-type(n+3) {
  margin-top: 40px;
}

#interview .qa dl dt {
  padding: 20px;
  background-color: #00991a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 5px 5px 0 0;
}

#interview .qa dl dd {
  padding: 30px;
  position: relative;
  z-index: 10;
}

#interview .qa dl dd p .name {
  display: inline-block;
  padding: 5px 20px;
  margin-bottom: 10px;
  background-color: #006b12;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50px;
}

#interview .qa dl dd p:nth-of-type(n+2) {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #00991a;
}

#interview .qa dl:last-of-type dd p:nth-of-type(n+2) {
  margin-top: 0;
  padding-top: 15px;
  border: none;
}

@media only screen and (max-width: 768px) {

  #interview h2 {
    margin-bottom: 15px;
  }

  #interview .text {
    width: 100%;
  }

  #interview .text .catch img {
    padding-top: 39.5454%;
    display: block;
    height: 0;
    width: 100%;
    overflow: hidden;
    background: url(../images/home/interview/catch_sp.png) no-repeat center center;
    background-size: 100%;
  }

  #interview .inner > .flex > img {
    width: 100%;
    margin-top: 20px;
  }

  #interview .qa {
    margin-top: 30px;
  }

  #interview .qa dl {
    width: 100%;
  }

  #interview .qa dl::before {
    font-size: 48px;
    right: 10px;
    bottom: -10px;
  }

  #interview .qa dl:nth-of-type(n+2) {
    margin-top: 20px;
  }

  #interview .qa dl dt {
    padding: 15px 5%;
    font-size: 16px;
    line-height: 1.4;
  }

  #interview .qa dl dd {
    padding: 5%;
  }

  #interview .qa dl dd p .name {
    padding: 5px 10px;
    font-size: 13px;
  }

  #interview .qa dl dd p:nth-of-type(n+2) {
    padding-top: 15px;
    margin-top: 15px;
  }

  #interview .inner > .qa.flex > img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/*============================
#message
============================*/

#message {
  background: url(../images/home/message/bg.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}

#message h2 .eng {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#message h2 .ja {
  color: #fff
}

#message .name {
  text-align: right;
  padding-top: 30px;
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #message {
    background-image: url(../images/home/message/bg_sp.jpg);
  }

  #message .name {
    padding-top: 20px;
    font-size: 18px;
  }
}

/*============================
#recruit
============================*/

#recruit {
  background-color: #00991a;
}

#recruit .inner {
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 10px;
}

#recruit .info-box:last-of-type dl:first-of-type dd span.star {
  display: block;
  padding: 10px 15px 10px 40px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
  position: relative;
}

#recruit .info-box:last-of-type dl:first-of-type dd span.star::before {
  content: '\f073';
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  color: #24d8ff;
  position: absolute;
  top: 15px;
  left: 15px;
}

@media only screen and (max-width: 768px) {
  #recruit .inner {
    padding: 8% 5%;
  }
}

/*============================
#flow
============================*/

#flow div.flex {
  align-items: stretch;
}

#flow .box {
  width: 245px;
  background-color: #f7f7f7;
  border-radius: 5px;
  position: relative;
}

#flow .box::after {
  position: absolute;
  content: '\f0da';
  font-size: 14px;
  font-weight: 900;
  color: #013516;
  top: 50%;
  right: -13px;
}

#flow .box:last-of-type::after {
  display: none;
}

#flow .box dt {
  padding: 15px 5px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  background-color: #006b12;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

#flow .box dd {
  padding: 30px 20px;
}

#flow .box dd p {
  margin-top: 25px;
  font-size: 15px;
  line-height: 24px;
}

#flow .box:first-of-type .link {
  width: 205px;
  margin-top: 20px;
}

#flow .box:first-of-type .link a {
  margin: 0;
  width: 100%;
  padding: 12px 10px 10px 10px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  background-color: #00991a;
  color: #fff;
}

#flow .box:first-of-type .link a i {
  font-size: 16px;
}

#flow .box:first-of-type .link a::before,
#flow .box:first-of-type .link a::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  #flow .box {
    width: 100%;
  }

  #flow .box:nth-of-type(n+2) {
    margin-top: 40px;
  }

  #flow .box::after {
    position: absolute;
    content: '\f0d7';
    font-size: 14px;
    font-weight: 900;
    top: auto;
    bottom: -30px;
    right: 50%;
  }

  #flow .box img {
    width: 60%;
    margin: auto;
  }

  #flow .box dd {
    padding: 8% 5%;
  }

  #flow .box dd p {
    margin-top: 15px;
  }

  #flow .box:first-of-type .link {
    width: 100%;
    margin-top: 10px;
    padding-top: 0;
  }

  #flow .box:first-of-type .link a {
    margin: 0;
    width: 100%;
    padding: 12px 10px 10px 10px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    border-radius: 50px;
    background-color: #00991a;
    color: #fff;
  }

}

/*============================
#faq
============================*/

#faq {
  background: #f7f7f7;
}

/* qaContainer */
.qaContainer {
  width: 100%;
}

.qaContainer .box {
  position: relative;
  background: #fff;
  border: 1px solid #00991a;
  border-radius: 28px;
}

.qaContainer .box:nth-of-type(n + 2) {
  margin-top: 20px;
}

.qaContainer .box:has(.toggle:checked) {
  border-radius: 28px;
}

.qaContainer .box::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 26px;
  z-index: 10;
  color: #00991a;
  font-size: 28px;
  font-weight: 400;
  line-height: 55px;
  font-family: "Bebas Neue", sans-serif;
}

.qaContainer .toggle {
  display: none;
}

.qaContainer .Label {
  display: block;
  padding: 18px 40px 18px 60px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.qaContainer .Label::before {
  content: "\2b";
  position: absolute;
  top: 0;
  right: 20px;
  color: #00991a;
  font-size: 17px;
  font-weight: 900;
  line-height: 55px;
  font-family: "Font Awesome 6 Free";
}

.qaContainer .answer {
  height: 0;
  overflow: hidden;
}

.qaContainer .toggle:checked + .Label + .answer {
  height: auto;
}

.qaContainer .answer .text {
  padding: 0 20px 20px 60px;
  font-size: 15px;
}

.qaContainer .answer .text p {
  padding: 7px 10px;
  background: #f7f7f7;
  border-radius: 5px;
}

.qaContainer .toggle:checked + .Label::before {
  content: "\f068";
}

@media only screen and (max-width: 768px) {

  .qaContainer .box:before {
    top: 0;
    left: 15px;
    font-size: 22px;
    line-height: 41px;
  }

  .qaContainer .box:nth-of-type(n + 2) {
    margin-top: 10px;
  }

  .qaContainer .Label {
    padding: 10px 40px;
    display: block;
    font-size: 15px;
    line-height: 1.4;
  }

  .qaContainer .Label::before {
    font-size: 13px;
    top: 0;
    right: 15px;
    line-height: 41px;
  }

  .qaContainer .answer .text {
    padding: 0 10px 10px 10px;
    font-size: 14px;
  }

  .qaContainer .answer .text p {
    padding: 10px 13px;
    border-radius: 20px;
  }
}

/*============================
#company
============================*/

#company {
  background: url(../images/home/company/bg.jpg) no-repeat center center;
  background-size: cover;
}

#company .inner {
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 10px;
}

#company .inner > div.flex {
  align-items: flex-start;
}

#company table.info {
  width: 450px;
}

#company table.info td {
  width: 320px;
}

#company .link {
  justify-content: flex-end;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  #company {
    background-image: url(../images/home/company/bg_sp.jpg);
  }

  #company .inner {
    padding: 8% 5%;
  }

  #company table.info {
    width: 100%;
  }

  #company table.info:nth-of-type(2) th,
  #company table.info:nth-of-type(2) td {
    padding: 12px 0;
  }

  #company .link {
    margin-top: 20px;
    justify-content: center;
  }
}

/*============================
#entry
============================*/

#entry .inner > .flex {
  align-items: flex-start;
}

#entry .text {
  width: 500px;
}

#entry .inner > .flex > img {
  width: 470px;
}

/*
form
============================*/
#form-container {
  padding: 60px;
  margin-top: 40px;
  background-color: #00991a;
  border-radius: 10px;
}

form {
  margin: 0px;
  text-align: left;
}

fieldset {
  padding: 0px;
  border: none;
}

input[type=text],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* shadow none */
}

input,
textarea {
  line-height: 130%;
  padding: 10px;
  font-weight: normal;
  border: none;
  background-color: #fff;
  border-radius: 5px;
}

:placeholder-shown {
  color: #565656;
}

::-webkit-input-placeholder {
  color: #c3c3c3;
}

:-moz-placeholder {
  color: #c3c3c3;
}

::-moz-placeholder {
  color: #c3c3c3;
}

:-ms-input-placeholder {
  color: #c3c3c3;
}

label.error {
  font-size: 12px;
  color: #d63023;
  display: inline-block;
  line-height: 1.2;
  padding-top: 6px;
}

.required {
  background: #d63023;
  color: #fff;
  font-size: 10px;
  padding: 6px;
  line-height: 1;
  margin-left: 10px;
  display: inline-block;
  border-radius: 2px;
}

@media only screen and (max-width: 768px) {

  #entry .text {
    width: 100%;
  }

  #entry .inner > .flex > img {
    margin-top: 20px;
    width: 100%;
  }

  input,
  textarea,
  select {
    line-height: 90%;
  }
}

/*============================
entry
============================*/

.formTable {
  width: 100%;
  font-size: 15px;
}

.formTable tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formTable tr:last-of-type {
  align-items: flex-start;
}

.formTable tr:nth-of-type(n+2) {
  margin-top: 20px;
}

.formTable th {
  width: 160px;
  vertical-align: middle;
  color: #fff;
}


.formTable th .min-info {
  color: #fff;
}

.formTable th .min {
  color: #fff;
}

.formTable td {
  width: 700px;
}

input#zip {
  width: 200px !important;
}

.formTable td p:first-child {
  padding-top: 0;
}

.formTable input,
.formTable textarea {
  width: 100%;
}

.formTable textarea {
  height: 238px;
}

form .formBtn {
  padding-top: 20px;
}

form .link {
  width: 100%;
  margin: auto;
  padding-top: 20px;
  -js-display: flex;
  display: flex;
  justify-content: space-evenly;
}

form .link input {
  background-color: #006b12;
  position: relative;
}

form .link input:hover {
  opacity: 1;
  background-color: #004a1d;
}

form .formBtn li {
  position: relative;
}

/* privacy */
#privacy {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

#privacy a {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid #006b12;
  color: #fff;
}


@media only screen and (max-width: 768px) {
  #form-container {
    padding: 5% 5% 8% 5%;
    margin-top: 20px;
  }

  .formTable {
    width: 100%;
    margin-top: 20px;
  }

  .formTable tr:first-child {
    border-top: none;
  }

  .formTable tr {
    display: block;
  }

  .formTable tr:last-child {
    border: none;
  }

  .formTable th {
    width: 100%;
    padding: 0;
    vertical-align: inherit;
    background: none;
    display: block;
    padding-bottom: 8px;
    position: relative;
  }

  .formTable th:before {
    content: "■ ";
    color: #fff;
  }

  .formTable td {
    padding: 0;
    width: 100%;
    display: block;
  }

  input#zip {
    width: 200px !important;
  }

  .formTable td p:first-child {
    padding-top: 0;
  }

  .formTable input,
  .formTable textarea {
    width: 100%;
  }

  .formBtn li {
    width: 100%;
  }

  .formBtn li input {
    font-weight: bold;
    width: 100%;
  }

  #privacy-text {
    margin-top: 10px;
  }

  /* privacy */
  #privacy {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*============================
confirm
============================*/

#confirm #entry,
#complete #entry {
  padding-top: 150px;
}

#confirm .inner > .flex,
#complete .inner > .flex {
  align-items: center;
}

#confirm form {
  margin-top: 20px;
}

#confirm #entry .inner > p {
  margin-bottom: 30px;
  text-align: left;
}

#confirm form {
  padding: 60px;
  background-color: #00991a;
  border-radius: 10px;
}

#confirm form tr:nth-of-type(n+2) {
  margin-top: 20px;
}

#confirm form tr td {
  line-height: 130%;
  padding: 10px;
  background-color: #fff;
}

#confirm .link {
  padding-top: 60px;
}

.formBtn .btn01::before {
  border-color: #006b12;
}

#confirm .formBtn li.editBtn input {
  color: inherit;
  background: #fff;
  border: 1px solid #006b12;
  background-size: 7px auto;
}

#confirm .formBtn li.editBtn input:hover {
  border-color: #151c48;
}

.add_custom_confirm li {
  list-style-type: none;
}

@media only screen and (max-width: 768px) {

  #confirm #entry,
  #complete #entry {
    padding-top: 100px;
  }

  #confirm #entry .inner > p {
    margin-bottom: 20px;
  }

  #confirm form {
    padding: 30px 10px;
  }

  #confirm .notice {
    line-height: 1.6;
    padding-top: 4px;
  }

  #confirm .formTable tr {
    padding: 12px 0;
  }

  #confirm .formTable tr:first-of-type {
    padding-top: 0;
  }

  #confirm form tr:nth-of-type(n+2) {
    margin-top: 0;
  }

  #confirm .link {
    padding-top: 30px;
    display: block;
  }

  #confirm .link input:hover {
    background-color: #006b12;
  }

  #confirm .submitBtn {
    margin-top: 20px;
  }
}

/*============================
complete
============================*/

#complete .link {
  justify-content: end;
  margin-top: 40px;
}

#complete .link a::before {
  display: none;
}

@media only screen and (max-width: 768px) {
  #complete .link a::after {
    right: -43px;
  }
}
