@charset "UTF-8";
/* ----------------------------------------------------------
   #GLOBAL
---------------------------------------------------------- */
.main-color {
  color: #76af1f;
}

.accent-color {
  color: #EC755B;
}

/* ==========================================================================
   1. 縦向きの波（PC TOP用 / Vertical）
   ========================================================================== */
.wave-bg {
  position: fixed;
  top: 0;
  left: 54%;
  transform: translateX(-50%);
  width: 400px;
  height: 100vh;
  z-index: -9999;
  pointer-events: none;
  /* レスポンシブ位置調整 */
}
@media screen and (min-width: 1500px) {
  .wave-bg {
    left: 52%;
  }
}
@media screen and (max-width: 1120px) {
  .wave-bg {
    left: 55%;
  }
}
@media screen and (max-width: 768px) {
  .wave-bg {
    left: 58%;
  }
}
@media screen and (max-width: 434px) {
  .wave-bg {
    left: 65%;
  }
}

/* ==========================================================================
   2. 横向きの波（下層用 / Side）
   ========================================================================== */
.wave-bg_side {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: -9999;
  pointer-events: none;
  margin-top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .wave-bg_side {
    height: 150px;
    margin-top: -30px;
  }
}

.page-service_catch {
  background-image: linear-gradient(to right, #76af1f 0%, #0ac69e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 3rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-service_catch {
    font-size: 2rem;
  }
}

.page-service_catch_center {
  background-image: linear-gradient(to right, #76af1f 0%, #0ac69e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-service_catch_center {
    font-size: 2rem;
  }
}

.page-service_lead {
  line-height: 2;
}

.page-service_cate {
  display: flex;
  gap: 5px 15px;
  padding: 20px;
  border-radius: 10px;
  border: #76af1f solid 1px;
  flex-wrap: wrap;
}
.page-service_cate p {
  font-size: 1.4rem;
  color: #76af1f;
}

.page-service_cate-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #76af1f;
  margin-bottom: 10px;
}

.slide-02 figure {
  margin: 25px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .slide-02 figure {
    margin: 15px;
    width: 150px;
    height: 150px;
  }
}

.use-case_item {
  border: #76af1f solid 1px;
  border-radius: 10px;
  padding: 40px 20px;
  display: block;
  height: 100%;
}
.use-case_item h3 {
  position: relative;
  padding-left: 35px;
  font-size: 2rem;
  font-weight: 600;
  color: #76af1f;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .use-case_item h3 {
    font-size: 1.8rem;
  }
}
.use-case_item h3::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 22px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../img/service/home_ico.svg") center/contain no-repeat;
}
.use-case_item ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.use-case_item ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.use-case_item ul li::marker {
  color: #76af1f;
}
.use-case_item ul li:last-child {
  margin-bottom: 0;
}

.use-case_trouble ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.use-case_trouble ul li {
  position: relative;
  background-color: #76af1f;
  border-radius: 20px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  padding: 35px 40px;
  display: inline-block;
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .use-case_trouble ul li {
    font-size: 1.6rem;
    padding: 20px 15px;
  }
}
.use-case_trouble ul li::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 0;
  height: 0;
  border-style: solid;
}
.use-case_trouble ul li:nth-child(odd) {
  align-self: flex-start;
}
.use-case_trouble ul li:nth-child(odd)::after {
  left: 30px;
  border-width: 15px 15px 0 5px;
  border-color: #76af1f transparent transparent transparent;
}
.use-case_trouble ul li:nth-child(even) {
  align-self: flex-end;
}
.use-case_trouble ul li:nth-child(even)::after {
  right: 30px;
  border-width: 15px 5px 0 15px;
  border-color: #76af1f transparent transparent transparent;
}

.use-case_trouble_lead {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
}

.page-detail {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.page-detail p {
  line-height: 30px;
}
.page-detail h2 {
  position: relative;
  font-size: 3rem;
  color: #76af1f;
  margin: 60px 0 40px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-detail h2 {
    font-size: 2.6rem;
  }
}
.page-detail h2::before {
  content: "";
  position: absolute;
  background: url("../img/other/h2_deco.svg") center/contain no-repeat;
  width: 72px;
  height: 10px;
  bottom: -15px;
  left: 0;
}
.page-detail h3 {
  position: relative;
  font-size: 2.5rem;
  color: #76af1f;
  margin: 40px 0 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-detail h3 {
    font-size: 2rem;
  }
}
.page-detail h3::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, rgb(136, 194, 219) 0%, rgb(137, 193, 49) 100%);
  width: 45px;
  height: 2px;
  border-radius: 2px;
  bottom: -8px;
  left: 0;
}
.page-detail h4 {
  font-size: 1.8rem;
  color: #76af1f;
  margin: 30px 0 15px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-detail h4 {
    font-size: 1.6rem;
  }
}
.page-detail h5 {
  font-size: 1.6rem;
  color: #76af1f;
  margin: 20px 0 10px;
  font-weight: 600;
}
.page-detail ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.page-detail ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.page-detail ul li::marker {
  color: #76af1f;
}
.page-detail ul li:last-child {
  margin-bottom: 0;
}
.page-detail ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}
.page-detail ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}
.page-detail ol li::marker {
  color: #76af1f;
  font-weight: 400;
}
.page-detail ol li:last-child {
  margin-bottom: 0;
}
.page-detail a {
  text-decoration: underline;
}
.page-detail a.c-btn, .page-detail a.c-btn-2 {
  text-decoration: none;
}
.page-detail blockquote {
  position: relative;
  background: #F4FFE3;
  padding: 20px 20px 20px 40px;
}
.page-detail blockquote::before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 40px);
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: linear-gradient(to top, rgb(170, 224, 43) 0%, rgb(137, 193, 49) 100%);
}
.page-detail em {
  font-style: italic;
}
.page-detail img {
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 5px;
  object-fit: contain;
}
.page-detail .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-detail .alignleft {
  width: auto !important;
  float: left;
  margin-right: 10px;
  margin-bottom: 20px;
}
.page-detail .alignright {
  width: auto !important;
  float: right;
  margin-left: 10px;
  margin-bottom: 20px;
}
.page-detail .size-large {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.page-detail .size-medium {
  max-height: 490px;
}
.page-detail .size-thumbnail {
  max-height: 300px;
}
.page-detail .wp-caption {
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.page-detail .wp-caption img {
  margin-bottom: 5px;
}
.page-detail .wp-caption .wp-caption-text {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 0;
}

.page-detail-ttl h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #76af1f;
  padding-bottom: 15px;
  border-bottom: 1px solid #76af1f;
}
.page-detail-ttl time {
  font-size: 1.4rem;
  color: #76af1f;
  font-weight: 300;
  display: block;
  margin-top: 10px;
}

.case-detail-ttl {
  margin-bottom: 40px;
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
}
.search-container .search-form {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .search-container .search-form {
    display: block;
  }
}
.search-container .search-form .search-input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  outline: none;
}
.search-container .search-form .search-input:focus {
  border-color: #76af1f;
}
.search-container .search-form .search-btn {
  background-color: #76af1f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .search-container .search-form .search-btn {
    padding: 10px 25px;
    margin-top: 15px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.search-container .search-form .search-btn:hover {
  background-color: #EC755B;
}

.case_item {
  border: 1px solid #76af1f;
  border-radius: 20px;
  padding: 10px 10px 55px;
  position: relative;
  margin: 0 10px;
  display: block;
  height: 100%;
}
.case_item::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid #EC755B;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  bottom: 30px;
  right: 30px;
  translate: 0 -50%;
  rotate: 45deg;
  transition: 0.3s;
}
.case_item figure {
  border-radius: 10px;
  overflow: hidden;
}
.case_item figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .case_item figure img {
    aspect-ratio: 16/9;
  }
}
.case_item time {
  display: block;
  color: #76af1f;
  font-size: 1.4rem;
  font-weight: 300;
}
.case_item h5 {
  font-size: 1.8rem;
  color: #76af1f;
}
@media screen and (max-width: 768px) {
  .case_item h5 {
    font-size: 1.6rem;
  }
}
.case_item:hover {
  background: #76af1f;
  transition: 0.3s;
}
.case_item:hover img {
  transform: scale(1.1);
}
.case_item:hover h5 {
  color: #fff;
  transition: 0.3s;
}
.case_item:hover time {
  color: #fff;
  transition: 0.3s;
}
.case_item:hover::after {
  right: 25px;
  transition: 0.3s;
  border-color: #fff;
}

.company_philosophy_img {
  max-width: 260px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.company_philosophy_txt {
  text-align: center;
}
@media screen and (max-width: 434px) {
  .company_philosophy_txt {
    text-align: left;
  }
}

.company_harachan-man_img img {
  border-radius: 20px;
}

.page-company_catch_center {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #76af1f;
}
@media screen and (max-width: 768px) {
  .page-company_catch_center {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 434px) {
  .page-company_catch_center {
    text-align: left;
  }
}

.partner-company-link {
  display: block;
  transition: 0.3s;
  padding: 20px 40px 20px 15px;
  border-radius: 10px;
  border: solid 1px #76af1f;
  height: 100%;
  position: relative;
}
.partner-company-link:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 1px;
  height: 12px;
  background-color: #76af1f;
  transform: translateY(-100%) rotate(-30deg);
  transform-origin: bottom;
}
.partner-company-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 1px;
  height: 12px;
  background-color: #76af1f;
  transform: translateY(0) rotate(30deg);
  transform-origin: top;
}
.partner-company-link:hover {
  background: #76af1f;
}
.partner-company-link:hover:after {
  background-color: #fff;
}
.partner-company-link:hover:before {
  background-color: #fff;
}
.partner-company-link:hover h5 {
  color: #fff;
}
.partner-company-link:hover p {
  color: #fff;
}
.partner-company-link h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #76af1f;
  margin-bottom: 10px;
}
.partner-company-link p {
  font-size: 1.4rem;
  font-weight: 300;
  color: #666;
}

.company_info_img img {
  border-radius: 10px;
}

.greeting-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  line-height: 30px;
}

.greeting_img {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.greeting_img img {
  border-radius: 10px;
}

.greeting_ttl {
  font-size: 2.5rem;
  color: #76af1f;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .greeting_ttl {
    font-size: 2rem;
  }
}

.greeting_name {
  text-align: right;
  font-size: 2rem;
  font-weight: 400;
}
.greeting_name span {
  font-size: 1.6rem;
  font-weight: 300;
  display: inline-block;
}

.contact_inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.contact_info {
  border: #76af1f solid 1px;
  border-radius: 10px;
  padding: 30px 20px;
}
.contact_info h4 {
  font-weight: 600;
  color: #76af1f;
  margin-bottom: 10px;
}

.lpf-copy {
  color: #76af1f;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lpf-copy {
    font-size: 1.8rem;
  }
}

.lpf-main-copy {
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  padding: 20px;
  background: #76af1f;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .lpf-main-copy {
    font-size: 1.6rem;
    text-align: left;
  }
}

.lpf-task-item {
  border: solid 1px #76af1f;
  border-radius: 20px;
  padding: 50px 15px;
}
.lpf-task-item h5 {
  color: #76af1f;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lpf-task-item h5 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .lpf-task-item {
    padding: 30px 15px;
  }
}

.lpf-resolution img {
  border-radius: 20px;
}
.lpf-resolution a {
  text-decoration: underline;
}
.lpf-resolution h5 {
  color: #76af1f;
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .lpf-resolution h5 {
    font-size: 1.8rem;
  }
}

.lpf-strong-item {
  border: solid 1px #76af1f;
  border-radius: 20px;
  padding: 40px 15px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .lpf-strong-item {
    padding: 20px 15px;
  }
}
.lpf-strong-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.lpf-strong-item h5 {
  color: #EC755B;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lpf-strong-item h5 {
    font-size: 1.6rem;
  }
}
.lpf-strong-item p {
  font-size: 1.4rem;
}

.lpf-support-item {
  border: solid 1px #76af1f;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .lpf-support-item {
    padding: 20px 15px;
  }
}
.lpf-support-item h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #76af1f;
}
@media screen and (max-width: 768px) {
  .lpf-support-item h4 {
    font-size: 1.8rem;
  }
}
.lpf-support-item small {
  font-size: 1.4rem;
  font-weight: 300;
}
.lpf-support-item h5 {
  font-weight: 600;
  font-size: 1.6rem;
}

.lpf-model li {
  border: solid 1px #76af1f;
  border-radius: 20px;
}
.lpf-model h3 {
  font-size: 2.5rem;
  background: #76af1f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lpf-model h3 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.lpf-model-item-01 li {
  padding: 30px 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .lpf-model-item-01 li {
    gap: 15px;
  }
}
.lpf-model-item-01 li span {
  font-size: 4rem;
  font-weight: 300;
  color: #76af1f;
}
@media screen and (max-width: 768px) {
  .lpf-model-item-01 li span {
    font-size: 3rem;
  }
}
.lpf-model-item-01 li h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #76af1f;
}
@media screen and (max-width: 768px) {
  .lpf-model-item-01 li h5 {
    font-size: 1.6rem;
  }
}

.lpf-model-item-02 li {
  padding: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .lpf-model-item-02 li {
    padding: 20px 15px;
  }
}
.lpf-model-item-02 li h5 {
  font-size: 2rem;
  text-align: center;
  color: #76af1f;
}

.lpf-voice-item {
  border: solid 1px #76af1f;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .lpf-voice-item {
    padding: 30px 15px;
  }
}
.lpf-voice-item h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #76af1f;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .lpf-voice-item h4 {
    font-size: 1.8rem;
  }
}
.lpf-voice-item span {
  background: #76af1f;
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  display: inline-block;
}

.lpf-flow {
  list-style: none;
  padding: 0;
}
.lpf-flow li {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .lpf-flow li {
    gap: 20px;
    padding-bottom: 40px;
  }
}
.lpf-flow li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #76af1f;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lpf-flow li::before {
    left: 25px;
  }
}
.lpf-flow li:last-child {
  padding-bottom: 0;
}
.lpf-flow li:last-child::before {
  content: none;
}
.lpf-flow li:last-child span {
  background: #76af1f;
  color: #fff;
}
.lpf-flow li span {
  display: block;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: solid 1px #76af1f;
  text-align: center;
  line-height: 64px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #76af1f;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .lpf-flow li span {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1rem;
  }
}
.lpf-flow li div {
  flex: 1;
}
.lpf-flow li div h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #76af1f;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .lpf-flow li div h4 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.lpf-flow li div p {
  line-height: 1.6;
}

.lpf-attention {
  padding: 40px 30px;
  border: solid 1px #EC755B;
  border-radius: 20px;
}
.lpf-attention h3 {
  color: #EC755B;
  font-weight: 300;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .lpf-attention h3 {
    font-size: 1.8rem;
  }
}

.lpf-contact {
  border: solid 1px #76af1f;
  border-radius: 20px;
  padding: 40px 30px;
  color: #76af1f;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .lpf-contact {
    padding: 30px 15px;
  }
}
.lpf-contact h3 {
  font-size: 3rem;
  font-weight: 600;
}

.lpf-nationwide {
  text-align: center;
}
.lpf-nationwide h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #76af1f;
}
.lpf-nationwide p {
  font-size: 1.5rem;
}
.lpf-nationwide p small {
  font-size: 1.2rem;
  display: block;
}
.lpf-nationwide figure {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lpf-nationwide {
    text-align: left;
  }
}/*# sourceMappingURL=user.css.map */