/*
Theme Name: LP
Author: 
*/
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 700;
  src: url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProDisplay-Bold.ttf");
}

.js_ofi img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
    visibility: visible; } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(15px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    visibility: visible; }
  40%,100% {
    opacity: 1; } }
*,
*::after,
*::before {
  box-sizing: border-box; }

.container{
	overflow: hidden;
}
.slidein{
	margin: 20px auto;
	transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}
.slide_left{
	transform: translateX(calc(-50vw - 50%));
}
.slide_right{
	transform: translateX(calc(50vw + 50%));
}
.show{
	transform: translateX(0);
}


body,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary,
div,
span,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
a,
img,
label,
form,
input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img {
  border: 0;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
  max-width: 100%;
}

a {
  background: transparent;
  cursor: pointer;
  outline: 0 none;
}

html {
  display: flex;
  flex-direction: column;
  font-size: 62.5%;
}

body {
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  min-height: 100vh;
  line-height: 1.53;
}

main {
  flex: 0 0 auto;
}

.mg_tp5 {
  margin-top: 5px;
}

.mg_bt5 {
  margin-bottom: 5px;
}

.mg_tp10 {
  margin-top: 10px;
}

.mg_bt10 {
  margin-bottom: 10px;
}

.mg_tp15 {
  margin-top: 15px;
}

.mg_bt15 {
  margin-bottom: 15px;
}

.mg_tp20 {
  margin-top: 20px;
}

.mg_bt20 {
  margin-bottom: 20px;
}

.mg_tp25 {
  margin-top: 25px;
}

.mg_bt25 {
  margin-bottom: 25px;
}

.mg_tp30 {
  margin-top: 30px;
}

.mg_bt30 {
  margin-bottom: 30px;
}

.mg_tp35 {
  margin-top: 35px;
}

.mg_bt35 {
  margin-bottom: 35px;
}

.mg_tp40 {
  margin-top: 40px;
}

.mg_bt40 {
  margin-bottom: 40px;
}

.mg_tp45 {
  margin-top: 45px;
}

.mg_bt45 {
  margin-bottom: 45px;
}

.mg_tp50 {
  margin-top: 50px;
}

.mg_bt50 {
  margin-bottom: 50px;
}

:root {
  --app-height: 100%;
}

html {
  height: 100%;
}

html,
body {
  min-width: 320px;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.53;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 25px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-input-placeholder {

  /* Edge */
  color: #ddd;
  font-size: 1.5rem;
}

::placeholder {
  color: #ddd;
  font-size: 1.5rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

img {
  vertical-align: middle;
}

main {
  margin: 0 auto;
  max-width: 550px;
  overflow: hidden;
}

header {
  margin: 0 auto;
  max-width: 550px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.top_fv {
  background: url(../img/bg-gradient.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.top_fv.is-animated {
  animation: fadeIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.top_fv_feature img {
  width: 100%;
}

.top_fv_maru {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px 50px;
}

.top_fv_maru li {
  animation-name: fadeUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.top_fv_maru li:nth-child(1) {
  animation-delay: 0.4s;
}

.top_fv_maru li:nth-child(2) {
  animation-delay: 0.6s;
}

.top_fv_maru li:nth-child(3) {
  animation-delay: 0.8s;
}

.lp_block {
  padding-top: 10px;
  padding-bottom: 10px;
}

.lp_inner {
  margin: 0 0 15px;
  max-width: 550px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  width: 100%;
}

.cmn_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 23px;
  text-align: center;
  padding-top: 20px;
}

.cmn_ttl span {
    color: #0a8240;
    display: block;
    font-family: sans-serif;
    font-size: 4rem;
    padding-bottom: 5px;
}

.cmn_ttl.fadeIn {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
}

.cmn_feature {
  margin-bottom: 15px;
  text-align: center;
}

.cmn_txt {
  display: block;
  line-height: 28px;
  text-align: justify; 
  padding-top: 5px;
}

.cmn_txt:not(:last-child) {
  margin-bottom: 24px; 
}


/*
.cmn_feature {
  text-align: center; }
*/

.cmn_feature.fadeIn {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
}

.mess_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 6px; 
  text-align: center;
  color: #0a8240;
}


.mess_subttl {
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  margin-top: 0px;
  margin-bottom: 20px;
}


.message_txt {
  display: block;
}

.lp_job {
  background: #7bd468;
  color: #fff;
}

.lp_job .cmn_feature {
  margin-bottom: 0;
}

.lp_benefit {
  padding-bottom: 15px;
}

.lp_benefit .benefit_box:last-child {
  padding-bottom: 0;
}

.benefit_box {
  padding: 0 0 5px;
}

.benefit_thumb {
  margin-bottom: 0px;
}

.benefit_ttl {
  font-size: 2.1rem;
  font-weight: 700;
  padding: 0 10px 10px;
  text-align: center;
  color: #0a8240;
}
.benefit_ttl span {
  font-size: 1.8rem;
  font-weight: 600;
}


.benefit_txt {
  line-height: 1.6;
  text-align:justify;
}

.recruit_tbl {
  table-layout: fixed;
  margin: 40px 0 0 0;
  width: 100%;
}

.recruit_tbl th,
.recruit_tbl td {
  border-top: 1px solid #e4ede1;
  padding-bottom: 16px;
  padding-top: 16px;
  text-align: justify
}

.recruit_tbl th {
  color: #0a8240;
  vertical-align: middle;
  text-align: left;
  width: 80px;
}

.txtcenter {
  letter-spacing: 7px;
}

footer {
  background: #fff;
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
}

.ft_copy {
  background: #d6d6d6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 5px 0;
  text-align: center;
}

.cmn_ctv {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  left: 0;
  margin: 0 auto;
  max-width: 550px;
  padding: 15px 8px;
  right: 0;
  position: relative;
  width: 100%;
}

.cmn_ctv.fixscroll {
  position: fixed;
}

.cmn_ctv li a {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
}

.cmn_ttl.fadeIn {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
}

.lp_business {
   background: #0a8240;
   color: #fff;
}

.cmn_ttl span {
    color: #0a8240;
    display: block;
    font-family: Impact;
    font-size: 5.5rem;
	line-height: 60px;
　　font-weight: bold;
    color: #0a8240;
/*  -webkit-text-stroke: 1px #0a8240;*/
}

.lp_business .cmn_ttl span{
    color: #fff; 
	color: #fff;
/*  -webkit-text-stroke: 1px #fff;*/
}
.box2 li {
   list-style: none;
   text-indent: -1em;
   padding-left: 1em;
}

.business_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 5px 0 5px 0;
  text-align: left;
}
.lp_faq {
  background: #edf4ed;
}
  .lp_faq .lp_inner {
    padding-left: 10px;
    padding-right: 10px; }

.faq_wrap {
  background: #edf4ed;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 1px; }

.faq_box {
  padding-bottom: 20px; }

.faq_q {
  color: #0a8240;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 10px 15px 15px 15px; 
  list-style: none;
   text-indent: -1em;
}

.faq_a {
  line-height: 1.6; 
  text-align:justify;
}

.faq_a_strong {
  padding-bottom: 15px; }

.faq_ttl{
  font-size: 2.3rem;
  font-weight: 700;
  padding: 0 0 10px 0;
  color: #0a8240;
  line-height: 27px;
  text-align:justify;
}
.faq_name{
  font-size: 2.1rem;
/*  padding: 0 20px 10px;*/
  color: #000;
}
.hr1 {
  border-top: 1px solid #000;
  border-color:#0a8240;
/*  margin: 0 20px;*/
}


@media only screen and (max-width:767px) {
  .ft_copy {
    padding-bottom: 80px;
  }

  .cmn_ctv {
    position: fixed !important;
  }

  .cmn_ctv.fixscroll {
    position: fixed;
  }

}

@media screen and (min-width:568px) and (max-width:767px) {
  .ft_copy {
    padding-bottom: 100px;
  }

}