@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@font-face {
  font-family: "Avenir-origin";
  src: url("../fonts/avenir-black.ttf") format("truetype");
  font-weight: 900; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: "Avenir-origin";
  src: url("../fonts/avenir-heavy.ttf") format("truetype");
  font-weight: 800; /* Regular */
  font-style: normal;
}
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.note-show {
  display: none;
}
@media (max-width: 1280px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1280px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

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

img.sp-show {
  display: none;
}
@media (max-width: 767px) {
  img.sp-show {
    display: inline;
  }
}

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

img.sp-hide {
  display: inline;
}
@media (max-width: 767px) {
  img.sp-hide {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding-left: 40px;
  padding-right: 50px;
  background-color: #fff;
  transition: all 0.3s;
  padding-top: 10px;
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1024px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .header-ul-wrapper {
    position: absolute;
  }
}
@media (min-width: 768px) {
  header {
    padding-bottom: 10px;
    transition: all 0.3s;
    transition-delay: 0.01s;
  }
  header.open {
    padding-bottom: 100px;
  }
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  align-items: center;
}
header .header-inner .logo {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
header .header-inner .logo p {
  font-size: 14px;
  margin-left: 10px;
  letter-spacing: 0.05em;
  line-height: normal;
}
@media (max-width: 767px) {
  header .header-inner .logo p {
    font-size: 12px;
  }
}
header .header-inner .logo img {
  width: 100%;
  width: 100px;
}
@media (max-width: 767px) {
  header .header-inner .logo img {
    width: 80px;
  }
}
@media (max-width: 767px) {
  header .header-inner .logo {
    position: relative;
    z-index: 101;
  }
}
@media (max-width: 767px) {
  header .header-inner .burger-wrapper {
    position: relative;
    z-index: 101;
  }
  header .header-inner .burger {
    width: 24px;
    height: 24px;
    background-color: transparent;
  }
  header .header-inner .burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: black;
    margin-bottom: 5px;
    margin-top: 5px;
    transition: all 0.3s;
  }
  header .header-inner .burger.active span {
    height: 2px;
  }
  header .header-inner .burger.active .sp1 {
    transform: rotate(45deg);
    margin-bottom: -7px;
  }
  header .header-inner .burger.active .sp2 {
    opacity: 0;
  }
  header .header-inner .burger.active .sp3 {
    width: 100%;
    margin-top: -6.5px;
    transform: rotate(-45deg);
  }
}
header .header-inner ul {
  display: flex;
  justify-content: flex-end;
}
header .header-inner ul li {
  margin-left: 20px;
  font-size: 15px;
  font-size: 14px;
  letter-spacing: 0em;
}
header .header-inner ul li a {
  font-size: 1em;
}
@media screen and (min-width: 1919px) {
  header .header-inner ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  header .header-inner ul li {
    margin-left: 10px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  header .header-inner ul li {
    margin-left: 10px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  header .header-inner ul li {
    font-size: 16px;
    margin-left: 0;
  }
}
header .header-inner ul li a, header .header-inner ul li p {
  transition: all 0.4s;
  line-height: normal;
}
@media (min-width: 768px) {
  header .header-inner ul li a:hover, header .header-inner ul li p:hover {
    color: #07E700;
  }
}
header .header-inner ul li.has-child {
  position: relative;
}
header .header-inner ul li .child {
  position: absolute;
  top: 18px;
  padding-top: 17px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  header .header-inner ul li .child {
    margin-left: 0px;
    top: 10px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  header .header-inner ul li .child a {
    font-size: 10px !important;
  }
}
header .header-inner ul li .child a {
  white-space: nowrap;
  font-size: 11px;
  margin-bottom: 9px;
  display: inline-block;
}
@media screen and (min-width: 1919px) {
  header .header-inner ul li .child a {
    font-size: 16px;
  }
}
header .header-inner ul li.has-child a {
  position: relative;
  z-index: 2;
}
header .header-inner ul li.has-child:hover p {
  color: #07E700;
}
header .header-inner ul li.has-child:hover .child {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (max-width: 767px) {
  header .header-inner ul {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    overflow: scroll;
    padding-bottom: 50px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  header .header-inner ul li {
    margin-bottom: 15px;
    font-size: 14px;
  }
  header .header-inner ul.active {
    opacity: 1;
    pointer-events: all;
  }
}

.product-single-sec .section-inner .main-col h4 {
  background-color: #0B7807 !important;
  color: white !important;
  display: inline-block;
  padding: 5px 4px;
}

.concept-fv .parallax::before {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.new-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 386px;
  height: 130px;
  padding: 10px;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .new-banner {
    display: none !important;
  }
}
.new-banner .close {
  position: absolute;
  left: -10px;
  top: -10px;
  cursor: pointer;
  z-index: 3;
}
.new-banner .close img {
  width: 20px;
  height: 20px;
}
.new-banner-inner {
  background-color: #f1f1f1;
  height: 100%;
  display: flex;
  position: relative;
}
.new-banner-inner .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  width: 100%;
}
.new-banner-inner .txt .banner-ttl {
  color: #0B7807;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-bottom: 10px;
}
.new-banner-inner .txt .banner-desc {
  font-size: 10px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}
.new-banner-inner img {
  height: 105px;
  width: auto;
  position: absolute;
  bottom: 3px;
  right: 30px;
  filter: drop-shadow(1px 1px 4px lightgray);
}

footer {
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #f8f8f8;
}
@media (max-width: 767px) {
  footer {
    padding-top: 30px;
    padding-bottom: 45px;
  }
}
footer .footer-inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  footer .footer-inner {
    max-width: 1200px;
  }
}
footer .footer-inner .flex {
  display: flex;
  justify-content: center;
}
footer .footer-inner .logo {
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 30px;
  transition: all 0.3s;
}
footer .footer-inner .logo p {
  font-size: 14px;
  margin-left: 10px;
  letter-spacing: 0.05em;
  line-height: normal;
}
@media (max-width: 767px) {
  footer .footer-inner .logo p {
    font-size: 12px;
  }
}
footer .footer-inner .logo img {
  width: 100%;
  width: 100px;
}
@media (max-width: 767px) {
  footer .footer-inner .logo img {
    width: 80px;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .logo {
    position: relative;
    z-index: 101;
  }
}
footer .footer-inner .logo:hover {
  opacity: 0.7;
  color: #2c2c2c;
}
footer .footer-inner .logo:hover p {
  color: #2c2c2c;
}
footer .footer-inner .bg-white {
  padding: 26px 20px;
  background-color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  footer .footer-inner .bg-white {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .bg-white {
    padding: 50px 20px;
  }
}
footer .footer-inner .copy {
  text-align: center;
  font-size: 10px;
  font-weight: 400;
}
footer .footer-inner a {
  transition: all 0.4s;
}
@media (min-width: 768px) {
  footer .footer-inner a:hover {
    color: #07E700;
  }
}
footer .footer-inner .menu-ul1 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul1 {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul1 > li {
    margin-bottom: 20px;
  }
}
footer .footer-inner .menu-ul1 > li > a {
  font-size: 16px;
  font-weight: 500;
  padding-left: 5px;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (min-width: 1919px) {
  footer .footer-inner .menu-ul1 > li > a {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  footer .footer-inner .menu-ul1 > li > a {
    font-size: 14px;
  }
}
footer .footer-inner .menu-ul1 > li > a::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  z-index: -1;
  top: -5px;
  background-color: #61FE5B;
  display: none;
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul1 > li > a {
    font-size: 18px;
    padding-left: 0;
  }
}
footer .footer-inner .menu-ul1 > li .child {
  padding-top: 5px;
}
footer .footer-inner .menu-ul1 > li .child li {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 0.7em;
  position: relative;
  margin-left: 0;
}
@media screen and (min-width: 1919px) {
  footer .footer-inner .menu-ul1 > li .child li {
    font-size: 18px;
  }
}
footer .footer-inner .menu-ul1 > li .child li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: black;
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul1 > li .child li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
footer .footer-inner .menu-ul2 {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul2 {
    flex-direction: column;
  }
}
footer .footer-inner .menu-ul2 li {
  margin-right: 16px;
  font-size: 16px;
  font-weight: 500;
  margin-left: 16px;
}
@media screen and (min-width: 1919px) {
  footer .footer-inner .menu-ul2 li {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .menu-ul2 li {
    font-size: 18px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer .footer-inner .menu-ul2 li a {
    margin-bottom: 10px;
    display: inline-block;
  }
}

@media (min-width: 768px) {
  footer .footer-inner .menu-ul1 li {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  footer .footer-inner .menu-ul1 li {
    margin-left: 18px;
    margin-right: 18px;
  }
}
@media (min-width: 768px) {
  footer .footer-inner .menu-ul1 .li1 {
    margin-right: -10px;
  }
  footer .footer-inner .menu-ul1 .li2 {
    position: relative;
    white-space: nowrap;
  }
  footer .footer-inner .menu-ul1 .li2 .child {
    position: absolute;
  }
  footer .footer-inner .menu-ul1 .li3 {
    margin-right: 30px;
  }
}
.fv {
  padding-top: 90px;
}
@media (max-width: 767px) {
  .fv {
    padding-top: 21.3333333333vw;
  }
}
.fv .top {
  padding-top: 76px;
  padding-bottom: 106px;
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 38px;
}
@media (max-width: 767px) {
  .fv .top {
    padding-bottom: 8vw;
  }
}
.fv .top .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .fv .top .flex {
    flex-direction: column;
    padding-left: 0;
  }
}
.fv .top .left {
  padding-right: 32px;
  margin-right: 30px;
  position: relative;
}
.fv .top .left p {
  font-size: 0.875vw;
  font-size: 12.6666px;
  font-size: 14.67px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-align: right;
  line-height: 1.3em;
  color: #0B7807;
}
@media screen and (min-width: 1919px) {
  .fv .top .left p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .fv .top .left p {
    font-size: 1.1458333333vw;
  }
}
@media (max-width: 767px) {
  .fv .top .left p {
    font-size: 2.9333333333vw;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .fv .top .left {
    padding-right: 0;
    margin-right: 0;
  }
}
.fv .top .left::after {
  content: "";
  width: 0.1041666667vw;
  height: 2.0833333333vw;
  position: absolute;
  right: 0;
  top: calc(50% - 1.0416666667vw);
  background-color: #2C2C2C;
}
@media (max-width: 767px) {
  .fv .top .left::after {
    display: none;
  }
}
.fv .top .right h1 {
  font-size: 0.9375vw;
  font-size: 12.6666px;
  font-size: 14.666px;
  letter-spacing: 0.4em;
  line-height: 1.43em;
}
@media screen and (min-width: 1919px) {
  .fv .top .right h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .fv .top .right h1 {
    padding-top: 4vw;
    font-size: 3.4666666667vw;
    text-align: center;
    line-height: 1.8em;
    padding-left: 0vw;
  }
}
.fv .bottom .swiper-wrapper {
  transition-timing-function: linear;
}
.fv .bottom .swiper-slide img {
  width: 100%;
  aspect-ratio: 724/512;
  object-fit: cover;
  height: auto;
  object-position: center;
}

.more {
  width: 160px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.88888em;
  position: relative;
  transition: all 0.4s;
}
@media screen and (min-width: 1919px) {
  .more {
    font-size: 20px;
  }
}
.more span {
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .more {
    width: auto;
  }
}
.more::before {
  content: "";
  height: 2px;
  width: 120px;
  background-color: #2C2C2C;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 1919px) {
  .more::before {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .more::before {
    width: 100px;
  }
}
.more::after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #2C2C2C;
  border-radius: 50%;
  position: absolute;
  left: 130px;
  bottom: -1.5px;
  transition: all 0.4s;
}
@media screen and (min-width: 1919px) {
  .more::after {
    left: 150px;
  }
}
@media (max-width: 767px) {
  .more::after {
    height: 5px;
    width: 5px;
    left: 90px;
    bottom: -1.5px;
  }
}
@media (min-width: 768px) {
  .more:hover {
    opacity: 0.7;
  }
}
.more.green-more {
  color: #A8FB5C;
}
.more.green-more::before, .more.green-more::after {
  background-color: #A8FB5C;
}
@media (min-width: 768px) {
  .more.green-more:hover::after {
    background-color: #A8FB5C;
  }
}

.more-wrapper {
  display: flex;
}
.more-wrapper.center {
  justify-content: center;
}

.sec2 {
  padding-top: 300px;
  padding-bottom: 300px;
  position: relative;
  overflow: hidden;
}
.sec2::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -54px;
  width: 707px;
  height: 761px;
  background-image: url("../img/object1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 767px) {
  .sec2::before {
    width: 353.5px;
    height: 380.5px;
    top: -50px;
    left: -60px;
  }
}
@media (max-width: 767px) {
  .sec2::before {
    width: 176.75px;
    height: 190.25px;
    top: -50px;
    left: -30px;
  }
}
.sec2::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 1010px;
  height: 420px;
  background-image: url(../img/object2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 767px) {
  .sec2::after {
    width: 505px;
    height: 210px;
  }
}
@media (max-width: 767px) {
  .sec2::after {
    width: 257px;
    height: 105px;
  }
}
.sec2 .section-inner {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec2 .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sec2 h2 {
  text-align: center;
  font-size: 45px;
  line-height: 1.777777em;
  letter-spacing: 0.4em;
  font-weight: bold;
  margin-bottom: 30px;
}
.sec2 h2 .green {
  color: #0B7807;
}
@media (max-width: 767px) {
  .sec2 h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5em;
    padding-left: 10px;
  }
}
.sec2 p {
  text-align: center;
  font-size: 16px;
  line-height: 2.25em;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .sec2 p {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sec2 p {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.7em;
  }
}

.sec3 {
  padding-top: 65px;
  padding-bottom: 52px;
  padding-left: 2.6041666667vw;
  background-image: url(../img/whats-bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .sec3 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.sec3 h2 {
  font-size: 6.25vw;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.111em;
  margin-bottom: 610px;
}
@media (max-width: 767px) {
  .sec3 h2 {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .sec3 h2 {
    margin-bottom: 70px;
    white-space: nowrap;
  }
}
.sec3 h2 span {
  color: white;
}
.sec3 h2 .span1 {
  position: relative;
}
.sec3 h2 .span1::before {
  content: "";
  width: 3.6458333333vw;
  height: 3.6458333333vw;
  position: absolute;
  background-color: #07E700;
}
.sec3 h2 .span2 {
  position: relative;
  z-index: 2;
  padding-left: 0.8333333333vw;
}
.sec3 h6 {
  font-size: 45px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.1111em;
  margin-bottom: 25px;
  color: #A8FB5C;
}
@media (max-width: 767px) {
  .sec3 h6 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sec3 h6 {
    font-size: 5.3333333333vw;
  }
}
.sec3 p {
  max-width: 1200px;
  color: white;
  font-size: 19px;
  font-weight: 700;
  line-height: 2.1em;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .sec3 p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sec3 p {
    font-size: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
}

.sec4 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sec4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sec4 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.sec4::before {
  content: "";
  width: 825px;
  height: 431px;
  position: absolute;
  background-image: url(../img/object3.svg);
  right: 0;
  top: -10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
@media (max-width: 767px) {
  .sec4::before {
    width: 412.5px;
    height: 215.5px;
  }
}
@media (max-width: 767px) {
  .sec4::before {
    width: 206px;
    height: 107px;
  }
}
.sec4::after {
  content: "";
  width: 660px;
  height: 330px;
  position: absolute;
  background-image: url(../img/object4.svg);
  left: 0;
  bottom: 100px;
}
@media (max-width: 767px) {
  .sec4::after {
    width: 330px;
    height: 165px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
  }
}
@media (max-width: 767px) {
  .sec4::after {
    bottom: 0;
  }
}
@media screen and (max-width: 1400px) {
  .sec4 {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .sec4 {
    padding-right: 20px;
  }
}
.sec4 .section-inner {
  position: relative;
  z-index: 2;
  display: flex;
}
.sec4 .section-inner .left {
  width: 43.49%;
}
.sec4 .section-inner .left img {
  width: 100%;
}
.sec4 .section-inner .right {
  width: 56.51%;
  padding-top: 100px;
  padding-left: 70px;
}
@media (max-width: 767px) {
  .sec4 .section-inner .right {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .sec4 .section-inner .right {
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
  }
  .sec4 .section-inner .right .img-wrapper img {
    width: 100%;
  }
}
.sec4 .section-inner .right h2 {
  font-size: 87px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .sec4 .section-inner .right h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
}
.sec4 .more span {
  letter-spacing: 0.2em;
}

.txt-content {
  max-width: 700px;
}
@media (max-width: 767px) {
  .txt-content {
    margin-top: 10.6666666667vw;
  }
}
.txt-content h3 {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.45em;
  border-bottom: 2px solid #d7d7d7;
  padding-bottom: 30px;
  margin-bottom: 25px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .txt-content h3 {
    font-size: 16px;
  }
}
.txt-content h3 .span1 {
  position: relative;
}
.txt-content h3 .span1::before {
  content: "";
  width: 39px;
  height: 39px;
  position: absolute;
  background-color: #61FE5B;
  top: -3px;
}
@media (max-width: 767px) {
  .txt-content h3 .span1::before {
    width: 20px;
    height: 20px;
    top: -5px;
  }
}
.txt-content h3 .span2 {
  position: relative;
  z-index: 2;
  padding-left: 11px;
}
@media (max-width: 767px) {
  .txt-content h3 .span2 {
    padding-left: 5px;
  }
}
.txt-content p {
  font-size: 19px;
  line-height: 2.1em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .txt-content p {
    font-size: 12px;
    line-height: 1.7em;
    margin-bottom: 25px;
  }
}

.sec-ttl-type1 {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .sec-ttl-type1 {
    margin-bottom: 20px;
  }
}
.sec-ttl-type1 h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-right: 12px;
  margin-right: 12px;
  position: relative;
}
@media screen and (min-width: 1919px) {
  .sec-ttl-type1 h2 {
    font-size: 44px;
  }
}
.sec-ttl-type1 h2 span {
  display: inline-block;
  line-height: 1em;
}
@media (max-width: 767px) {
  .sec-ttl-type1 h2 {
    font-size: 30px;
    line-height: 35px;
    padding-right: 12px;
    margin-right: 10px;
    margin-left: -10px;
  }
}
.sec-ttl-type1 h2 .span1 {
  position: relative;
}
.sec-ttl-type1 h2 .span1::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background-color: #D3FAB0;
  top: -8px;
  left: 12px;
}
@media (max-width: 767px) {
  .sec-ttl-type1 h2 .span1::before {
    width: 20px;
    height: 20px;
  }
}
.sec-ttl-type1 h2 .span2 {
  position: relative;
  z-index: 2;
  padding-left: 25px;
  color: #0B7807;
}
@media (max-width: 767px) {
  .sec-ttl-type1 h2 .span2 {
    padding-left: 10px;
  }
}
.sec-ttl-type1 h2::after {
  content: "";
  width: 3px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  background-color: #2C2C2C;
}
@media (max-width: 767px) {
  .sec-ttl-type1 h2::after {
    width: 2px;
    height: 30px;
    top: calc(50% - 15px);
  }
}
.sec-ttl-type1 h6 {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5em;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 1919px) {
  .sec-ttl-type1 h6 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sec-ttl-type1 h6 {
    font-size: 16px;
    position: relative;
    top: -2px;
  }
}

.sec5 {
  padding-top: 80px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}
.sec5 .sec-ttl-type1 h2 .span1::before {
  background-color: #61FE5B;
}
@media (max-width: 767px) {
  .sec5 {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}
.sec5::after {
  content: "";
  width: 37.65625vw;
  height: 22.3958333333vw;
  position: absolute;
  right: 0;
  top: 560px;
  background-image: url(../img/object4-5.svg);
  background-size: contain;
  background-position: right top;
  display: none;
}
@media (max-width: 767px) {
  .sec5::after {
    top: 400px;
  }
}
@media (max-width: 767px) {
  .sec5::after {
    width: 300px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}
.sec5 .section-inner {
  position: relative;
  z-index: 2;
}
.sec5 .sec5-1 {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .sec5 .sec5-1 {
    padding-left: 0;
    padding-right: 0;
  }
}
.sec5 .section-inner1 {
  max-width: 1440px;
  margin: auto;
}
.sec5 .section-inner1 .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex {
    flex-direction: column;
  }
}
.sec5 .section-inner1 .flex .card {
  width: calc(50% - 10px);
  transition: all 0.3s;
}
.sec5 .section-inner1 .flex .card:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card {
    width: 100%;
    margin-bottom: 40px;
  }
}
.sec5 .section-inner1 .flex .card .img-wrapper {
  position: relative;
}
.sec5 .section-inner1 .flex .card .img-wrapper img {
  width: 100%;
  height: auto;
}
.sec5 .section-inner1 .flex .card .img-wrapper h6 {
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: white;
  font-size: 30px;
  line-height: 1em;
  font-weight: 900;
  top: 10px;
  left: 10px;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .img-wrapper h6 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .img-wrapper h6 {
    top: 10px;
    left: 5px;
    font-size: 20px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper {
  margin-top: -20px;
  position: relative;
  z-index: 2;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper {
    padding-left: 10px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper h4 {
  font-size: 20px;
  line-height: 1.91em;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper h4 {
    margin-bottom: 5px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper h4 span {
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 700;
  background-color: #61FE5B;
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper h4 span {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper h4 {
    font-size: 16px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper p {
  font-size: 16px;
  line-height: 1.87em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper p {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper {
    padding-right: 0;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more {
  width: 120px;
  padding-left: 0 !important;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more {
    width: 99px;
  }
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more span {
    letter-spacing: 0.01em;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::before {
  width: 110px;
  height: 1px;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::before {
    width: 85px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::after {
  right: 0;
  background-color: black !important;
}
@media (max-width: 767px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::after {
    left: 94px;
  }
}
@media (min-width: 768px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more {
    padding-left: 0 !important;
  }
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::after {
    left: 120px;
    background-color: black !important;
  }
}
@media screen and (min-width: 768px) and (min-width: 1919px) {
  .sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more::after {
    left: 140px;
  }
}
.sec5 .section-inner1 .flex .card .txt-wrapper .more-wrapper .more span {
  font-weight: 800;
  letter-spacing: 0.09em;
}
.sec5 .sec5-2 {
  padding-top: 80px;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 {
    padding-top: 30px;
    padding-left: 0px;
  }
}
.sec5 .sec5-2 .ttl-wrapper {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: -50px;
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .ttl-wrapper {
    margin-left: 0px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .ttl-wrapper {
    margin-left: 0px;
  }
}
.sec5 .sec5-2 .ttl-wrapper .sec-ttl-type1 {
  margin-bottom: 0;
}
.sec5 .sec5-2 .ttl-wrapper .more-wrapper {
  margin-top: 0px;
}
.sec5 .sec5-2 .ttl-wrapper .more-wrapper .more {
  font-weight: 700;
}
.sec5 .sec5-2 .ttl-wrapper .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.sec5 .sec5-2 .ttl-wrapper .more-wrapper .more::before {
  height: 1px;
}
@media (min-width: 768px) {
  .sec5 .sec5-2 .ttl-wrapper .more-wrapper .more {
    width: 140px;
  }
  .sec5 .sec5-2 .ttl-wrapper .more-wrapper .more::before {
    width: 130px;
  }
  .sec5 .sec5-2 .ttl-wrapper .more-wrapper .more::after {
    left: 135px;
  }
}
.sec5 .sec5-2 .bg-white {
  padding-top: 65px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white {
    padding-left: 0px;
  }
  .sec5 .sec5-2 .bg-white .sp-show {
    margin-top: 20px;
  }
  .sec5 .sec5-2 .bg-white .sp-show .more-wrapper {
    justify-content: flex-end;
    margin-top: 4px;
  }
  .sec5 .sec5-2 .bg-white .sp-show .more-wrapper .more {
    font-weight: 700;
  }
  .sec5 .sec5-2 .bg-white .sp-show .more-wrapper .more span {
    letter-spacing: 0.35em;
  }
  .sec5 .sec5-2 .bg-white .sp-show .more-wrapper .more::before {
    width: 85px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card-wrapper {
    flex-direction: column;
  }
}
.sec5 .sec5-2 .bg-white .cards .card {
  padding-bottom: 5px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card {
    padding-bottom: 20px;
  }
  .sec5 .sec5-2 .bg-white .cards .card:last-child {
    padding-bottom: 0;
  }
}
.sec5 .sec5-2 .bg-white .cards .card:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .sec5 .sec5-2 .bg-white .cards .card {
    width: calc(33.33333% - 20px);
  }
}
.sec5 .sec5-2 .bg-white .cards .card .img-wrapper {
  overflow: hidden;
  margin-bottom: 5px;
}
.sec5 .sec5-2 .bg-white .cards .card .img-wrapper img {
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
  height: auto;
}
.sec5 .sec5-2 .bg-white .cards .card .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.sec5 .sec5-2 .bg-white .cards .card .wrap time {
  margin-right: 14px;
  font-weight: 900;
  font-size: 14px;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card .wrap time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card .wrap time {
    font-size: 12px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card h5 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card ul {
  display: flex;
}
.sec5 .sec5-2 .bg-white .cards .card ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.sec5 .sec5-2 .bg-white .cards .card ul li:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sec5 .sec5-2 .bg-white .cards .card ul li {
    font-size: 10px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 6px;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more {
    font-size: 12px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::after {
    left: 94px;
    bottom: -3.5px;
  }
}
.sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more::before {
    width: 105%;
  }
}
@media (min-width: 768px) {
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.sec5 .sec5-2 .bg-white .cards .card .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.sec5 .sec5-2 .bg-white .cards .card:hover .more {
  padding-left: 0;
}
@media (max-width: 767px) {
  .sec5 .sec5-2 .more-wrapper {
    margin-right: 0px;
    padding-right: 0;
  }
  .sec5 .sec5-2 .more-wrapper .more {
    width: 99px !important;
    letter-spacing: 0.01em;
  }
  .sec5 .sec5-2 .more-wrapper .more::before {
    width: 85px !important;
    bottom: -2px !important;
  }
}
.sec5 .more2 {
  width: 218px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.88888em;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec5 .more2 {
    font-size: 12px;
    width: 140px;
  }
}
.sec5 .more2 span {
  letter-spacing: 0.1em;
}
.sec5 .more2::before {
  content: "";
  height: 2px;
  width: 200px;
  background-color: #2C2C2C;
  position: absolute;
  right: 18px;
  bottom: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec5 .more2::before {
    width: 132px;
    right: 8px;
  }
}
.sec5 .more2::after {
  content: "";
  height: 9px;
  width: 9px;
  background-color: #2C2C2C;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -3.5px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec5 .more2::after {
    height: 4px;
    width: 4px;
    bottom: -0.5px;
  }
}
.sec5 .more2.green-more {
  color: #A8FB5C;
}
.sec5 .more2.green-more::before, .sec5 .more2.green-more::after {
  background-color: #A8FB5C;
}
@media (min-width: 768px) {
  .sec5 .more2.green-more:hover::after {
    background-color: #A8FB5C;
  }
}
@media (min-width: 768px) {
  .sec5 .card:hover .more {
    padding-left: 56px;
  }
  .sec5 .card:hover .more::before {
    width: 144px;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .sec5 .card:hover .more::before {
    width: 112px;
  }
}
@media (min-width: 768px) {
  .sec5 .card:hover .more::after {
    background-color: #07E700;
  }
}

.sec6 {
  position: relative;
  overflow: hidden;
  background-color: #F8F8F8;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .sec6 {
    padding-bottom: 100px;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .sec6 {
    padding-top: 0;
  }
}
.sec6::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 260px;
  background-color: #fff;
}
.sec6::after {
  content: "";
  width: 68.229%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 270px;
  background-image: url(../img/object5.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
.sec6 .section-inner {
  position: relative;
  padding-bottom: 250px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .sec6 .section-inner {
    padding-bottom: 100px;
  }
}
.sec6 .section-inner .left {
  width: 46.875%;
}
.sec6 .section-inner .left img {
  width: 100%;
}
.sec6 .section-inner .right {
  width: 53.125%;
  padding-top: 340px;
  padding-left: calc((100% - 1440px) / 2);
  position: relative;
}
@media screen and (max-width: 1480px) {
  .sec6 .section-inner .right {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .sec6 .section-inner .right {
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
  }
  .sec6 .section-inner .right .img-wrapper img {
    width: 100%;
  }
}
.sec6 .section-inner .right h2 {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 60px;
  position: absolute;
  white-space: nowrap;
  top: 160px;
}
@media (max-width: 767px) {
  .sec6 .section-inner .right h2 {
    top: 0;
    font-size: 30px;
    position: static;
    padding-bottom: 20px;
  }
}
.sec6 .section-inner .more span {
  letter-spacing: 0.2em;
}
.sec6 .section-inner2 {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.sec6 .section-inner2 .news-wrapper {
  max-width: 1000px;
  margin: auto;
}
.sec6 .section-inner2 .news-wrapper .sec-ttl-type1 {
  justify-content: center;
}
.sec6 .section-inner2 .news-wrapper ul li {
  border-bottom: 1px solid #ccc;
}
.sec6 .section-inner2 .news-wrapper ul li a {
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: center;
  position: relative;
}
.sec6 .section-inner2 .news-wrapper ul li a img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a img {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a {
    flex-direction: column;
    padding-right: 0px;
    align-items: flex-start;
    align-items: center;
  }
}
.sec6 .section-inner2 .news-wrapper ul li a time {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #0B7807;
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a time {
    font-size: 12px;
    margin-right: 0;
  }
}
.sec6 .section-inner2 .news-wrapper ul li a p {
  font-size: 16px;
  line-height: normal;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a p {
    font-size: 13px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.sec6 .section-inner2 .news-wrapper ul li a::before {
  content: "";
  height: 1px;
  width: 20px;
  position: absolute;
  right: 15px;
  top: calc(50% - 0.5px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a::before {
    top: unset;
    bottom: 20px;
    display: none;
  }
}
.sec6 .section-inner2 .news-wrapper ul li a::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: calc(50% - 3px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec6 .section-inner2 .news-wrapper ul li a::after {
    top: unset;
    bottom: 17px;
    display: none;
  }
}
@media (min-width: 768px) {
  .sec6 .section-inner2 .news-wrapper ul li a:hover::before {
    width: 15px;
    right: 10px;
  }
  .sec6 .section-inner2 .news-wrapper ul li a:hover::after {
    background-color: #07E700;
  }
}
.sec6 .section-inner3 {
  margin-top: 150px;
}
@media (max-width: 767px) {
  .sec6 .section-inner3 {
    margin-top: 50px;
  }
}

.sec7 .section-inner .sec-ttl-type1 {
  justify-content: center;
}
.sec7 .section-inner .flex {
  margin-top: 150px;
  margin-left: calc((100% - 1440px) / 2);
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 1480px) {
  .sec7 .section-inner .flex {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex {
    flex-direction: column;
    margin-right: 20px;
    margin-top: 25px;
  }
}
.sec7 .section-inner .flex > div {
  position: relative;
  z-index: 2;
}
.sec7 .section-inner .flex .left {
  width: 51.5%;
  aspect-ratio: 16/9;
}
.sec7 .section-inner .flex .left iframe {
  width: 100%;
  height: 100%;
  position: relative;
  top: -110px;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .left iframe {
    top: -50px;
  }
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .left {
    width: 100%;
  }
  .sec7 .section-inner .flex .left iframe {
    position: static;
  }
}
.sec7 .section-inner .flex .right {
  padding-left: 60px;
  padding-top: 30px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right {
    padding-left: 30px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right {
    padding-left: 20px;
  }
}
.sec7 .section-inner .flex .right p {
  font-size: 19px;
  line-height: 2.1em;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right p {
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: 15px;
  }
}
.sec7 .section-inner .flex .right ul {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right ul {
    margin-bottom: 20px;
  }
}
.sec7 .section-inner .flex .right ul li {
  line-height: 44px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right ul li {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.sec7 .section-inner .flex .right ul li span {
  font-size: 21px;
  font-weight: 800;
  display: inline-block;
  width: 44px;
  background-color: #07E700;
  text-align: center;
  color: white;
  border-radius: 50%;
  margin-right: 20px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right ul li span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex .right .more-wrapper {
    justify-content: center;
  }
}
.sec7 .section-inner .flex::before {
  content: "";
  background-color: #F8F8F8;
  position: absolute;
  height: 100%;
  width: calc(100% - 120px);
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .sec7 .section-inner .flex::before {
    width: 100%;
  }
}
.sec7 .section-inner .more span {
  letter-spacing: 0.2em;
}

.sec8 {
  padding-left: calc((100% - 1440px) / 2);
}
@media screen and (max-width: 1480px) {
  .sec8 {
    padding-left: 20px;
  }
}
.sec8 .more span {
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .sec8 {
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
  }
  .sec8 .img-wrapper img {
    width: 100%;
  }
}

.sec8 {
  position: relative;
  overflow: hidden;
  background-color: white;
  padding-top: 200px;
  padding-left: calc((100% - 1440px) / 2);
}
@media screen and (max-width: 1480px) {
  .sec8 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .sec8 {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .sec8 {
    padding-right: 20px;
    padding-top: 60px;
  }
}
.sec8::before {
  content: "";
  width: 676px;
  height: 430px;
  position: absolute;
  left: 0;
  top: 10px;
  background-image: url(../img/object6.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 767px) {
  .sec8::before {
    width: 338px;
    height: 215px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .sec8::before {
    width: 200px;
    height: 150px;
  }
}
.sec8::after {
  content: "";
  width: 1135px;
  height: 430px;
  position: absolute;
  right: 0;
  bottom: -140px;
  background-image: url(../img/object7.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 767px) {
  .sec8::after {
    width: 567.5px;
    height: 215px;
    bottom: -30px;
  }
}
@media (max-width: 767px) {
  .sec8::after {
    width: 300px;
    background-size: contain;
    background-position: left bottom;
  }
}
.sec8 .section-inner {
  position: relative;
  padding-bottom: 140px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .sec8 .section-inner {
    padding-bottom: 100px;
  }
}
.sec8 .section-inner .left {
  width: 46.875%;
  padding-top: 50px;
}
.sec8 .section-inner .left img {
  width: 100%;
}
.sec8 .section-inner .right {
  width: 53.125%;
  position: relative;
}
@media (max-width: 767px) {
  .sec8 .section-inner .right {
    width: 100%;
  }
}
.sec8 .section-inner .right h2 {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-bottom: 60px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sec8 .section-inner .right h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
}

.sec9 .section-inner {
  display: block;
  background-image: url(../img/contact-bg.webp?ver2);
  padding-top: 140px;
  padding-bottom: 110px;
  padding-left: calc((100% - 1440px) / 2);
  background-size: cover;
}
@media screen and (max-width: 1480px) {
  .sec9 .section-inner {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .sec9 .section-inner {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sec9 .section-inner {
    padding-left: 20px;
  }
}
.sec9 .section-inner h2 {
  font-size: 6.25vw;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.111em;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sec9 .section-inner h2 {
    font-size: 9.3333333333vw;
  }
}
.sec9 .section-inner h2 span {
  color: white;
}
.sec9 .section-inner h2 .span1 {
  position: relative;
}
.sec9 .section-inner h2 .span1::before {
  content: "";
  width: 3.6458333333vw;
  height: 3.6458333333vw;
  position: absolute;
  background-color: #07E700;
}
.sec9 .section-inner h2 .span2 {
  position: relative;
  z-index: 2;
  padding-left: 0.8333333333vw;
}
.sec9 .section-inner h2 .span2::before {
  content: "";
  height: 0.15625vw;
  width: 13.0208333333vw;
  position: absolute;
  background-color: #fff;
  right: -18.2291666667vw;
  top: calc(50% - 0.078125vw);
  transition: all 0.4s;
}
.sec9 .section-inner h2 .span2::before {
  content: "";
  height: 0.15625vw;
  width: 13.0208333333vw;
  position: absolute;
  background-color: #fff;
  right: -18.2291666667vw;
  top: calc(50% - 0.078125vw);
  transition: all 0.4s;
}
.sec9 .section-inner h2 .span2::after {
  content: "";
  height: 0.8854166667vw;
  width: 0.8854166667vw;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  right: -20.8333333333vw;
  top: calc(50% - 0.4427083333vw);
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .sec9 .section-inner:hover h2 {
    padding-left: 5.2083333333vw;
  }
  .sec9 .section-inner:hover h2 .span2::before {
    width: 10.4166666667vw;
    right: -13.0208333333vw;
  }
  .sec9 .section-inner:hover h2 .span2::after {
    right: -15.625vw;
    background-color: #07E700;
  }
}

.sec10 {
  padding: 14px 14px;
  background-color: #2c2c2c;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec10 {
    padding: 30px 20px;
  }
}
.sec10 .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .sec10 .section-inner {
    max-width: 1400px;
  }
}
.sec10 .section-inner ul {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .sec10 .section-inner ul {
    flex-direction: column;
  }
}
.sec10 .section-inner ul li {
  background-color: white;
  width: calc(25% - 5px);
}
.sec10 .section-inner ul li img {
  width: 100%;
}
.sec10 .section-inner ul li a {
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .sec10 .section-inner ul li a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .sec10 .section-inner ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .sec10 .section-inner ul li img {
    width: 100%;
    height: auto;
  }
}

.news-sec {
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .news-sec {
    padding-bottom: 50px;
  }
}
.news-sec::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -440px;
  width: 707px;
  height: 761px;
  background-image: url("../img/object1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  display: none;
}
@media (max-width: 767px) {
  .news-sec::before {
    width: 353.5px;
    height: 380.5px;
    top: -50px;
    left: -60px;
  }
}
@media (max-width: 767px) {
  .news-sec::before {
    width: 176.75px;
    height: 190.25px;
    top: -50px;
    left: -30px;
  }
}
.news-sec .section-inner2 {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .news-sec .section-inner2 {
    padding-top: 40px;
  }
}
.news-sec .section-inner2 .news-wrapper {
  max-width: 800px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .news-sec .section-inner2 .news-wrapper {
    max-width: 1200px;
  }
}
.news-sec .section-inner2 .news-wrapper .sec-ttl-type1 {
  justify-content: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper .sec-ttl-type1 {
    margin-bottom: 20px;
  }
}
.news-sec .section-inner2 .news-wrapper ul li {
  border-bottom: 1px solid #ccc;
}
.news-sec .section-inner2 .news-wrapper ul li a {
  display: flex;
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
  position: relative;
}
.news-sec .section-inner2 .news-wrapper ul li a img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a img {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a {
    flex-direction: column;
    padding-right: 0px;
    align-items: flex-start;
    align-items: center;
  }
}
.news-sec .section-inner2 .news-wrapper ul li a time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .news-sec .section-inner2 .news-wrapper ul li a time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a time {
    font-size: 12px;
    margin-right: 0;
  }
}
.news-sec .section-inner2 .news-wrapper ul li a p {
  font-size: 16px;
  line-height: normal;
  padding-right: 50px;
}
@media screen and (min-width: 1919px) {
  .news-sec .section-inner2 .news-wrapper ul li a p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a p {
    font-size: 12px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.news-sec .section-inner2 .news-wrapper ul li a::before {
  content: "";
  height: 1px;
  width: 14px;
  position: absolute;
  right: 7px;
  top: calc(50% - 0.5px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a::before {
    top: unset;
    bottom: 20px;
    display: none;
  }
}
.news-sec .section-inner2 .news-wrapper ul li a::after {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: calc(50% - 2px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .news-sec .section-inner2 .news-wrapper ul li a::after {
    top: unset;
    bottom: 17px;
    display: none;
  }
}
@media (min-width: 768px) {
  .news-sec .section-inner2 .news-wrapper ul li a:hover::before {
    width: 15px;
    right: 10px;
  }
  .news-sec .section-inner2 .news-wrapper ul li a:hover::after {
    background-color: #07E700;
  }
}
.news-sec .sec-ttl-type1 h2 .span1::before {
  background-color: #61FE5B;
}

.concept-sec {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 22px;
}
@media (max-width: 767px) {
  .concept-sec {
    padding-bottom: 40px;
  }
}
.concept-sec .sec-ttl-type1 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .concept-sec .sec-ttl-type1 {
    margin-bottom: 30px;
  }
}
.concept-sec .sec-ttl-type1 h2 .span1::before {
  background-color: #61FE5B;
}
.concept-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .concept-sec .section-inner {
    max-width: 1400px;
  }
}
.concept-sec .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.concept-sec .flex:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .concept-sec .flex {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .concept-sec .flex .txt {
    padding-right: 50px;
  }
}
.concept-sec .flex .txt .sec-ttl-type1 span {
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .concept-sec .flex .txt .sec-ttl-type1 {
    margin-bottom: 15px;
    margin-left: -25px;
  }
}
.concept-sec .flex .txt h3 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.48em;
  color: #2c2c2c;
  margin-bottom: 15px;
  margin-right: -20px;
}
@media screen and (min-width: 1919px) {
  .concept-sec .flex .txt h3 {
    font-size: 32px;
  }
}
.concept-sec .flex .txt h3 span {
  font-size: 1em;
  color: #0B7807;
}
@media (max-width: 767px) {
  .concept-sec .flex .txt h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.concept-sec .flex .txt p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-weight: 500;
  max-width: 650px;
}
@media screen and (min-width: 1919px) {
  .concept-sec .flex .txt p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .concept-sec .flex .txt p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .concept-sec .flex .txt p::after {
    left: 110px;
  }
}
@media (max-width: 767px) {
  .concept-sec .flex .txt .more::before {
    width: 82px;
    height: 1px;
  }
  .concept-sec .flex .txt .more::after {
    left: 90px;
  }
}
.concept-sec .flex .img {
  width: 464px;
  flex-shrink: 0;
}
@media screen and (min-width: 1919px) {
  .concept-sec .flex .img {
    width: 600px;
  }
}
.concept-sec .flex .img img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .concept-sec .flex .img {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .concept-sec .flex .img {
    width: 100%;
    margin-top: 30px;
  }
}

.sec-blog {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .sec-blog {
    padding-bottom: 50px;
    padding-top: 0px;
  }
}
.sec-blog .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .sec-blog .section-inner {
    max-width: 1400px;
  }
}
.sec-blog .section-inner .ttl-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-blog .section-inner .ttl-wrapper .sec-ttl-type1 {
  margin-bottom: 0;
}
.sec-blog .section-inner .ttl-wrapper .sec-ttl-type1 .span1::before {
  background-color: #61FE5B;
}
@media (min-width: 768px) {
  .sec-blog .section-inner .ttl-wrapper .sec-ttl-type1 {
    margin-left: -25px;
  }
}
.sec-blog .section-inner .ttl-wrapper .more-wrapper span {
  letter-spacing: 0.1em;
}
.sec-blog .section-inner .ttl-wrapper .more-wrapper .more {
  font-weight: 600;
}
.sec-blog .section-inner .ttl-wrapper .more-wrapper .more::before {
  height: 1px;
}
@media (min-width: 768px) {
  .sec-blog .section-inner .ttl-wrapper .more-wrapper .more {
    width: 140px;
  }
  .sec-blog .section-inner .ttl-wrapper .more-wrapper .more::before {
    width: 130px;
  }
  .sec-blog .section-inner .ttl-wrapper .more-wrapper .more::after {
    left: 135px;
  }
}
.sec-blog .section-inner .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sec-blog .section-inner .flex {
    flex-direction: column;
  }
}
.sec-blog .section-inner time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .sec-blog .section-inner time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .sec-blog .section-inner time {
    font-size: 12px;
    margin-right: 0;
  }
}
.sec-blog .section-inner .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.sec-blog .section-inner .wrap time {
  margin-right: 14px;
}
.sec-blog .section-inner .cat {
  display: flex;
}
.sec-blog .section-inner .cat p {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.sec-blog .section-inner .cat p:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sec-blog .section-inner .cat p {
    font-size: 10px;
  }
}
.sec-blog .section-inner h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .sec-blog .section-inner h5 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sec-blog .section-inner h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1919px) {
  .sec-blog .section-inner h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec-blog .section-inner h5 {
    font-size: 12px;
  }
}
.sec-blog .section-inner .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 6px;
  display: none;
}
@media screen and (min-width: 1919px) {
  .sec-blog .section-inner .desc {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec-blog .section-inner .desc {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sec-blog .more-wrapper {
    justify-content: flex-end;
  }
  .sec-blog .more-wrapper .more {
    width: 100px;
  }
  .sec-blog .more-wrapper .more::before {
    width: 85px;
  }
}
.sec-blog ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 13px;
}
.sec-blog ul li {
  width: calc(33% - 20px);
  margin-bottom: 76px;
}
@media (max-width: 767px) {
  .sec-blog ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec-blog ul li img {
  width: 100%;
  aspect-ratio: 357/252;
  height: auto;
  object-fit: cover;
  margin-bottom: 13px;
}
.sec-blog ul li .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-blog ul li .wrapper .en {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1919px) {
  .sec-blog ul li .wrapper .en {
    font-size: 18px;
  }
}
.sec-blog ul li .wrapper .tag p {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sec-blog ul li a {
  transition: all 0.3s;
}
.sec-blog ul li a:hover {
  opacity: 0.7;
}
.sec-blog ul li .ttl {
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 5px;
}
@media screen and (min-width: 1919px) {
  .sec-blog ul li .ttl {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec-blog ul li .ttl {
    font-size: 12px;
  }
}
.sec-blog ul li .more-wrapper {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .sec-blog ul li .more-wrapper {
    padding-right: 0;
  }
}
.sec-blog ul li .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 1919px) {
  .sec-blog ul li .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sec-blog ul li .more-wrapper .more {
    font-size: 12px;
    width: 99px;
  }
}
.sec-blog ul li .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .sec-blog ul li .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .sec-blog ul li .more-wrapper .more::after {
    left: 75px;
  }
}
.sec-blog ul li .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .sec-blog ul li .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .sec-blog ul li .more-wrapper .more::before {
    width: 85px;
    bottom: -3px;
  }
  .sec-blog ul li .more-wrapper .more::after {
    left: 93px;
    bottom: -4.5px;
  }
}
@media (min-width: 768px) {
  .sec-blog ul li .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .sec-blog ul li .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.sec-blog ul li .more-wrapper .more span {
  letter-spacing: 0.1em;
}

.sec5 .sec-ttl-type1 span {
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .sec5 .sec-ttl-type1 {
    margin-left: -25px;
    margin-bottom: 20px;
  }
}
.sec5 .section-inner1 {
  max-width: 1100px;
}
@media screen and (min-width: 1919px) {
  .sec5 .section-inner1 {
    max-width: 1400px;
  }
}

@media (max-width: 767px) {
  .sec5 .sec5-2 .jirei-more .more {
    width: 143px !important;
  }
  .sec5 .sec5-2 .jirei-more .more::before {
    width: 131px !important;
  }
  .sec5 .sec5-2 .jirei-more .more::after {
    left: 140px !important;
    bottom: -3.5px;
  }
}

@media (max-width: 767px) {
  .sec-blog .jirei-more {
    margin-top: 10px;
    padding-right: 0;
  }
  .sec-blog .jirei-more .more {
    width: 112px !important;
  }
  .sec-blog .jirei-more .more::before {
    width: 100px !important;
  }
  .sec-blog .jirei-more .more::after {
    left: 107px !important;
    bottom: -2.5px;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.new-fv-img img {
  width: 2266px;
}
@media (max-width: 767px) {
  .new-fv-img img {
    width: 1000px;
  }
}
.new-fv-img__inner {
  display: flex;
  overflow: hidden;
}
.new-fv-img .img-wrapper {
  display: flex;
  justify-content: space-between;
  animation: slide 100s linear infinite;
}
@media (max-width: 767px) {
  .new-fv-img .img-wrapper {
    animation: slide 40s linear infinite;
  }
}

.news-wrapper .more-wrapper {
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .news-wrapper .more-wrapper {
    padding-right: 0;
  }
}
.news-wrapper .more-wrapper a {
  font-weight: 600;
  width: 137px;
}

@media (max-width: 767px) {
  .sec5 .sec-ttl-type1 span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 406px) {
  .sec5 .sec-ttl-type1 span.span4 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .h6-2 {
    flex-shrink: 0;
  }
}

.new-wrap p {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: normal;
}
@media (max-width: 1024px) {
  .new-wrap p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .new-wrap p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .news-wrapper .more-wrapper {
    justify-content: flex-end;
  }
  .news-wrapper .more-wrapper .more::before {
    width: 120px;
  }
  .news-wrapper .more-wrapper .more::after {
    left: 130px;
  }
}

@media (max-width: 767px) {
  .front-page .concept-sec .more-wrapper {
    padding-right: 30px;
  }
}
.kaso-fv {
  background-image: url(../img/kaso-fv.webp);
  background-size: cover;
  background-position: right bottom;
  padding-bottom: 75px;
  padding-top: 285px;
  padding-left: 20px;
  padding-right: 20px;
}
.kaso-fv .section-inner {
  max-width: 1680px;
  margin: auto;
}
@media (max-width: 767px) {
  .kaso-fv {
    background-image: url(../img/kaso-fv-sp.webp);
    padding-top: 180px;
    padding-bottom: 50px;
  }
}
.kaso-fv h1 {
  font-size: 100px;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  line-height: 100px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .kaso-fv h1 {
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 10px;
  }
}
.kaso-fv h1 span {
  position: relative;
  display: inline-block;
}
.kaso-fv h1 span::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: -15px;
  background-color: #07E700;
  z-index: -1;
}
@media (max-width: 767px) {
  .kaso-fv h1 span::before {
    width: 30px;
    height: 30px;
    left: -15px;
    top: -10px;
  }
}
.kaso-fv h1 span::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  right: -15px;
  bottom: -15px;
  background-color: #07E700;
  z-index: -1;
}
@media (max-width: 767px) {
  .kaso-fv h1 span::after {
    width: 30px;
    height: 30px;
    right: -15px;
    bottom: 0px;
  }
}
.kaso-fv .sub {
  color: #07E700;
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-left: 20px;
}
.kaso-fv .sub span {
  position: relative;
}
.kaso-fv .sub span::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #07E700;
  position: absolute;
  left: -20px;
  top: calc(50% + 1px);
}
@media (max-width: 767px) {
  .kaso-fv .sub {
    font-size: 16px;
  }
}

.kaso-sec6 {
  background-color: #fff;
  padding-top: 56px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .kaso-sec6 {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}
.kaso-sec6::before, .kaso-sec6::after {
  display: none;
}
.kaso-sec6 .section-inner2 .news-wrapper {
  max-width: 800px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .kaso-sec6 .section-inner2 .news-wrapper {
    max-width: 1200px;
  }
}
.kaso-sec6 .section-inner2 .news-wrapper ul li {
  border-bottom: 1px solid #ccc;
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a {
  display: flex;
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
  position: relative;
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a img {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a {
    flex-direction: column;
    padding-right: 0px;
    align-items: flex-start;
    align-items: center;
  }
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a time {
    font-size: 12px;
    margin-right: 0;
  }
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a p {
  font-size: 16px;
  line-height: normal;
  padding-right: 50px;
}
@media screen and (min-width: 1919px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a p {
    font-size: 12px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a::before {
  content: "";
  height: 1px;
  width: 14px;
  position: absolute;
  right: 7px;
  top: calc(50% - 0.5px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a::before {
    top: unset;
    bottom: 20px;
    display: none;
  }
}
.kaso-sec6 .section-inner2 .news-wrapper ul li a::after {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: calc(50% - 2px);
  background-color: #2C2C2C;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a::after {
    top: unset;
    bottom: 17px;
    display: none;
  }
}
@media (min-width: 768px) {
  .kaso-sec6 .section-inner2 .news-wrapper ul li a:hover::before {
    width: 15px;
    right: 10px;
  }
  .kaso-sec6 .section-inner2 .news-wrapper ul li a:hover::after {
    background-color: #07E700;
  }
}

.content-sec {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 55px;
  position: relative;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .content-sec {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.content-sec::before {
  content: "";
  width: 100%;
  height: calc(100% - 450px);
  top: 450px;
  position: absolute;
  left: 0;
  background-color: #f8f8f8;
  z-index: -1;
  display: none;
}
@media (max-width: 767px) {
  .content-sec::before {
    top: 200px;
    height: calc(100% - 200px);
  }
}
.content-sec .section-inner {
  max-width: 940px;
  margin: auto;
}
.content-sec .section-inner .content-about {
  max-width: 940px;
  margin: auto;
}
.content-sec .section-inner .content-about time {
  font-size: 18px;
  font-weight: 900;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content-about time {
    font-size: 12px;
  }
}
.content-sec .section-inner .content-about h2 {
  border-bottom: 2px solid #d7d7d7;
}
.content-sec .section-inner .content-about h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.48em;
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1919px) {
  .content-sec .section-inner .content-about h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .content-sec .section-inner .content-about h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.content-sec .section-inner .content-about h2 span {
  position: relative;
}
.content-sec .section-inner .content-about h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .content-sec .section-inner .content-about h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .content-sec .section-inner .content-about h2 span::after {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
.content-sec .section-inner .img-wrapper {
  overflow: hidden;
  margin-bottom: 40px;
}
.content-sec .section-inner .img-wrapper img {
  height: auto;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .content-sec .section-inner .img-wrapper {
    margin-bottom: 20px;
  }
}
.content-sec .section-inner img {
  width: 100%;
}
.content-sec .section-inner .content-wrapper {
  background-color: #fff;
  padding-bottom: 130px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content-wrapper {
    padding-bottom: 30px;
  }
}
.content-sec .section-inner .content {
  max-width: 960px;
  margin: auto;
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
}
.content-sec .section-inner .content img {
  width: 100% !important;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
}
.content-sec .section-inner .content .wp-block-image {
  margin-top: 2em;
  margin-bottom: 1em;
}
.content-sec .section-inner .content .wp-block-image .aligncenter {
  width: 100%;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content {
    font-size: 12px;
  }
}
.content-sec .section-inner .content p {
  line-height: 1.87em;
  font-weight: 400;
}
.content-sec .section-inner .content h1, .content-sec .section-inner .content h2, .content-sec .section-inner .content h3, .content-sec .section-inner .content h4, .content-sec .section-inner .content h5, .content-sec .section-inner .content h6, .content-sec .section-inner .content li {
  line-height: normal;
}
.content-sec .section-inner .content h1, .content-sec .section-inner .content h2, .content-sec .section-inner .content h3, .content-sec .section-inner .content h4, .content-sec .section-inner .content h5, .content-sec .section-inner .content h6 {
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.content-sec .section-inner .content p {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content p {
    margin-bottom: 0.5em;
  }
}
.content-sec .section-inner .content h1 {
  font-size: 2.2em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h1 {
    font-size: 1.5em;
  }
}
.content-sec .section-inner .content h2 {
  font-size: 2em;
  padding-left: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h2 {
    font-size: 1.4em;
    padding-left: 5px;
  }
}
.content-sec .section-inner .content h2::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h2::before {
    width: 20px;
    height: 20px;
  }
}
.content-sec .section-inner .content h3 {
  font-size: 1.5em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h3 {
    font-size: 1.3em;
  }
}
.content-sec .section-inner .content h4 {
  font-size: 1.4em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h4 {
    font-size: 1.2em;
  }
}
.content-sec .section-inner .content h5 {
  font-size: 1.3em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h5 {
    font-size: 1.1em;
  }
}
.content-sec .section-inner .content h6 {
  font-size: 1.1em;
}
@media (max-width: 767px) {
  .content-sec .section-inner .content h6 {
    font-size: 1.05em;
  }
}
.content-sec .section-inner .content img {
  width: 100%;
  border-radius: 10px;
}
.content-sec .section-inner .content a {
  text-decoration: underline;
  transition: all 0.3s;
}
.content-sec .section-inner .content a:hover {
  opacity: 0.7;
}
.content-sec .section-inner .flex {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}
@media (max-width: 767px) {
  .content-sec .section-inner .flex {
    margin-top: 30px;
  }
}
.content-sec .section-inner .flex a {
  margin-left: 20px;
  margin-right: 20px;
  display: block;
  text-align: center;
  padding: 10px 25px;
  border: 1px solid #2c2c2c;
  font-size: 18px;
  letter-spacing: 0.35em;
  line-height: 1.88em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .content-sec .section-inner .flex a {
    transition: all 0.4s;
    position: relative;
    top: 0;
  }
  .content-sec .section-inner .flex a:hover {
    top: -3px;
  }
}
@media (max-width: 767px) {
  .content-sec .section-inner .flex a {
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }
}

.catalog-archive {
  padding-top: 100px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .catalog-archive {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.catalog-archive .section-inner {
  max-width: 1200px;
  margin: auto;
}
.catalog-archive .section-inner .row {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row {
    padding-bottom: 50px;
  }
  .catalog-archive .section-inner .row:last-child {
    padding-bottom: 0;
  }
}
.catalog-archive .section-inner .row h2 {
  padding-left: 10px;
  position: relative;
  z-index: 2;
  font-size: 30px;
  letter-spacing: 0.45em;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
}
.catalog-archive .section-inner .row h2::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: -10px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row h2 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .catalog-archive .section-inner .row h2::before {
    width: 20px;
    height: 20px;
    top: -5px;
  }
}
.catalog-archive .section-inner .row ul {
  display: flex;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul {
    flex-direction: column;
  }
}
.catalog-archive .section-inner .row ul li {
  width: calc(33.3333% - 22.6666px);
  margin-right: 34px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .catalog-archive .section-inner .row ul li {
    width: 32%;
    margin-right: 2%;
  }
}
@media (min-width: 768px) {
  .catalog-archive .section-inner .row ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.catalog-archive .section-inner .row ul li .img-wrapper {
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.19);
  margin-bottom: 15px;
}
.catalog-archive .section-inner .row ul li .img-wrapper img {
  width: 100%;
  height: auto;
}
.catalog-archive .section-inner .row ul li .txt-wrapper {
  padding-left: 10px;
}
.catalog-archive .section-inner .row ul li .txt-wrapper h4 {
  margin-bottom: 8px;
  letter-spacing: 0.19em;
  font-weight: bold;
  line-height: 1.6em;
  font-size: 25px;
}
@media screen and (max-width: 1200px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper h4 {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
.catalog-archive .section-inner .row ul li .txt-wrapper .desc {
  font-size: 16px;
  line-height: 1.87em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .desc {
    font-size: 14px;
  }
}
.catalog-archive .section-inner .row ul li .txt-wrapper p {
  line-height: normal;
  font-weight: normal;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper p {
    font-size: 12px;
  }
}
.catalog-archive .section-inner .row ul li .txt-wrapper .flex {
  display: flex;
  justify-content: space-between;
}
.catalog-archive .section-inner .row ul li .txt-wrapper .flex .col {
  width: calc(50% - 5px);
}
@media screen and (max-width: 1200px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col {
    width: 49%;
  }
}
.catalog-archive .section-inner .row ul li .txt-wrapper .flex .col p {
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col p {
    font-size: 14px;
  }
}
.catalog-archive .section-inner .row ul li .txt-wrapper .flex .col a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.8888em;
  padding: 0 12px;
  border: 1px solid black;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col a {
    transition: all 0.4s;
    position: relative;
    top: 0;
  }
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col a:hover {
    top: -2px;
  }
}
@media screen and (max-width: 1200px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .catalog-archive .section-inner .row ul li .txt-wrapper .flex .col a {
    font-size: 14px;
    line-height: 3em;
  }
}

.faq-sec {
  padding-top: 100px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .faq-sec {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.faq-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .faq-sec .section-inner {
    max-width: 1400px;
  }
}
.faq-sec .section-inner .cat-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
}
.faq-sec .section-inner .cat-wrap .all-open-close {
  cursor: pointer;
}
.faq-sec .section-inner h2 {
  padding-left: 10px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 1919px) {
  .faq-sec .section-inner h2 {
    font-size: 30px;
  }
}
.faq-sec .section-inner h2::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: -10px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .faq-sec .section-inner h2 {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .faq-sec .section-inner h2::before {
    width: 20px;
    height: 20px;
    top: -5px;
  }
}
.faq-sec .section-inner .faq-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.faq-sec .section-inner .faq-wrap .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .q {
    align-items: flex-start;
  }
}
.faq-sec .section-inner .faq-wrap .q .left {
  display: flex;
  align-items: flex-start;
}
.faq-sec .section-inner .faq-wrap .q .left .en {
  font-size: 30px;
  line-height: 1.1333em;
  display: inline-block;
  font-weight: 900;
  width: 53px;
  margin-right: 30px;
  border-right: 2px solid #2c2c2c;
  flex-shrink: 0;
}
.faq-sec .section-inner .faq-wrap .q .left p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media screen and (min-width: 1919px) {
  .faq-sec .section-inner .faq-wrap .q .left p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .q .left .en {
    font-size: 20px;
    width: 30px;
    margin-right: 10px;
  }
  .faq-sec .section-inner .faq-wrap .q .left p {
    font-size: 12px;
    line-height: 1.4em;
  }
}
.faq-sec .section-inner .faq-wrap .q .right {
  border-radius: 50%;
  background-color: #07E700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: all 0.4s;
}
.faq-sec .section-inner .faq-wrap .q .right img {
  width: 6.5px;
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .q .right img {
    width: 5px;
  }
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .q .right {
    width: 22px;
    height: 22px;
  }
}
.faq-sec .section-inner .faq-wrap .q.active .right {
  transform: rotate(90deg);
}
.faq-sec .section-inner .faq-wrap .a {
  padding-top: 60px;
  display: none;
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .a {
    padding-top: 20px;
  }
}
.faq-sec .section-inner .faq-wrap .a .a-inner {
  display: flex;
  align-items: flex-start;
}
.faq-sec .section-inner .faq-wrap .a .en {
  font-size: 30px;
  line-height: 1em;
  display: inline-block;
  font-weight: 900;
  width: 53px;
  margin-right: 30px;
  border-right: 2px solid #2c2c2c;
  color: #07E700;
  flex-shrink: 0;
}
.faq-sec .section-inner .faq-wrap .a p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-top: -5px;
}
@media screen and (min-width: 1919px) {
  .faq-sec .section-inner .faq-wrap .a p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq-sec .section-inner .faq-wrap .a .en {
    font-size: 20px;
    width: 30px;
    margin-right: 10px;
  }
  .faq-sec .section-inner .faq-wrap .a p {
    font-size: 12px;
    line-height: 1.4em;
    padding-top: 5px;
  }
}
.faq-sec .section-inner .row {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .faq-sec .section-inner .row {
    padding-bottom: 50px;
  }
}

.concept-fv {
  position: relative;
  z-index: 2;
  padding-top: 210px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .concept-fv {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .concept-fv {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.concept-fv .parallax {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
}
.concept-fv .parallax::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.concept-fv .parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-fv .wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
.concept-fv .section-inner {
  max-width: 1440px;
  margin: auto;
}
.concept-fv .section-inner h4 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.666em;
  margin-bottom: 20px;
}
.concept-fv .section-inner h2, .concept-fv .section-inner p {
  color: white;
}
.concept-fv .section-inner h2 {
  font-size: 45px;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .concept-fv .section-inner h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .concept-fv .section-inner h2 {
    font-size: 20px;
  }
}
.concept-fv .section-inner p {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.87em;
}
@media (max-width: 1024px) {
  .concept-fv .section-inner p {
    font-size: 16px;
    line-height: 2.2em;
  }
}
@media (max-width: 767px) {
  .concept-fv .section-inner p {
    font-size: 12px;
  }
}
.concept-fv .section-inner .p2 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.48em;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .concept-fv .section-inner .p2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .concept-fv .section-inner .p2 {
    font-size: 18px;
  }
}

footer, .pr {
  position: relative;
  z-index: 2;
}

.pr {
  background-color: #fff;
}

.sec h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05em;
  max-width: 1880px;
  margin: auto;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sec h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.sec h2 span {
  position: relative;
}
.sec h2 span::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .sec h2 span::before {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .sec h2 span::before {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}

.whats-sec {
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .whats-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.whats-sec .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .whats-sec .section-inner {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex-wrapper {
    padding-left: 0;
  }
}

@media screen and (min-width: 1919px) {
  .whats-sec h2, .essential-sec h2 {
    font-size: 36px;
  }
}
.whats-sec .flex, .essential-sec .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .whats-sec .flex, .essential-sec .flex {
    flex-direction: column-reverse;
  }
}
.whats-sec .flex .txt-col, .essential-sec .flex .txt-col {
  width: calc(100% - 464px);
  padding-right: 80px;
}
@media screen and (min-width: 1919px) {
  .whats-sec .flex .txt-col, .essential-sec .flex .txt-col {
    width: calc(100% - 600px);
  }
}
@media screen and (max-width: 1500px) {
  .whats-sec .flex .txt-col, .essential-sec .flex .txt-col {
    padding-left: 20px;
    padding-right: 50px;
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .whats-sec .flex .txt-col, .essential-sec .flex .txt-col {
    width: 100%;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .txt-col, .essential-sec .flex .txt-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.whats-sec .flex .txt-col h3, .essential-sec .flex .txt-col h3 {
  color: #0B7807;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 20px;
  line-height: 1.4em;
}
@media screen and (min-width: 1919px) {
  .whats-sec .flex .txt-col h3, .essential-sec .flex .txt-col h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .txt-col h3, .essential-sec .flex .txt-col h3 {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.whats-sec .flex .txt-col p, .essential-sec .flex .txt-col p {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1919px) {
  .whats-sec .flex .txt-col p, .essential-sec .flex .txt-col p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .txt-col p, .essential-sec .flex .txt-col p {
    padding-bottom: 25px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .txt-col .more-wrapper, .essential-sec .flex .txt-col .more-wrapper {
    justify-content: center;
  }
}
.whats-sec .flex .img-col, .essential-sec .flex .img-col {
  width: 464px;
  flex-shrink: 0;
}
@media screen and (min-width: 1919px) {
  .whats-sec .flex .img-col, .essential-sec .flex .img-col {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .img-col, .essential-sec .flex .img-col {
    width: 100%;
  }
}
.whats-sec .flex .img-col img, .essential-sec .flex .img-col img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
@media screen and (min-width: 1919px) {
  .whats-sec .flex .img-col img, .essential-sec .flex .img-col img {
    height: 401px;
  }
}
@media (max-width: 767px) {
  .whats-sec .flex .img-col img, .essential-sec .flex .img-col img {
    height: auto;
  }
}

.whats-sec .txt-col p {
  max-width: 637px;
}

.essential-sec {
  padding-bottom: 50px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.essential-sec .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .essential-sec .section-inner {
    max-width: 1400px;
  }
}
.essential-sec .section-inner .ttl {
  display: flex;
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .essential-sec .section-inner .ttl {
    padding-right: 0;
    justify-content: center;
  }
}
.essential-sec .section-inner .ttl h2 {
  font-size: 83px;
  font-weight: 900;
  text-align: left;
  letter-spacing: 0.05em;
  padding-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .essential-sec .section-inner .ttl h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .ttl h2 {
    font-size: 20px;
    line-height: 1.3em;
    padding-bottom: 30px;
  }
}
.essential-sec .section-inner .ttl h2 span {
  position: relative;
}
.essential-sec .section-inner .ttl h2 span::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .essential-sec .section-inner .ttl h2 span::before {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .ttl h2 span::before {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex {
    flex-direction: column;
  }
}
.essential-sec .section-inner .flex .txt-col {
  padding-right: 0;
  padding-top: 40px;
  padding-left: 80px;
}
.essential-sec .section-inner .flex .txt-col h3 {
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex .txt-col h3 {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex .txt-col h3 {
    padding-bottom: 10px;
  }
}
.essential-sec .section-inner .flex .txt-col p {
  padding-bottom: 20px;
  max-width: 730px;
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex .txt-col p {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex .txt-col p {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1500px) {
  .essential-sec .section-inner .flex .txt-col {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .essential-sec .section-inner .flex .txt-col {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.green-sec {
  position: relative;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .green-sec {
    padding-top: 5px;
  }
}
.green-sec::before {
  content: "";
  width: 33.9583333333vw;
  height: 22.3958333333vw;
  position: absolute;
  right: 0;
  top: 0px;
  background-image: url(../img/concept/object2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  display: none;
}
@media (max-width: 767px) {
  .green-sec::before {
    width: 200px;
    height: 130px;
  }
}
@media (max-width: 767px) {
  .green-sec .section-inner .flex-wrapper .flex .txt-col {
    padding-top: 0px;
  }
}
.green-sec .section-inner .flex-wrapper .flex .txt-col h3 {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .green-sec .section-inner .flex-wrapper .flex .txt-col h3 {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .concept-page .more-wrapper {
    justify-content: flex-start !important;
    padding-right: 20px;
  }
}
.concept-page a.flex {
  transition: all 0.3s;
}
.concept-page a.flex:hover {
  opacity: 0.7;
}
.concept-page p.more {
  padding-bottom: 0 !important;
}
.concept-page .more {
  font-weight: 600;
}
.concept-page .more:hover {
  opacity: 1;
}
.concept-page .more::before {
  height: 1px;
}
@media (max-width: 767px) {
  .concept-page .more::before {
    width: 82px;
  }
  .concept-page .more::after {
    left: 86px;
  }
}
@media (max-width: 767px) {
  .concept-page .sp-show-img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.energy-fv {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .energy-fv {
    padding-top: 80px;
  }
}
.energy-fv .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .energy-fv .section-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.energy-fv .txt-col {
  background-color: #fff;
  padding-top: 105px;
  padding-left: 135px;
  padding-right: 120px;
  padding-bottom: 24px;
  margin-right: -431px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .energy-fv .txt-col {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .energy-fv .txt-col {
    margin-right: 0;
    padding-top: 30px;
    padding-left: 30px;
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .energy-fv .txt-col {
    margin-top: -100px;
    padding-right: 20px;
  }
}
.energy-fv .txt-col h1 {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media (max-width: 1400px) {
  .energy-fv .txt-col h1 {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .energy-fv .txt-col h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .energy-fv .txt-col h1 {
    font-size: 30px;
  }
}
.energy-fv .txt-col h1 span {
  position: relative;
}
.energy-fv .txt-col h1 span::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .energy-fv .txt-col h1 span::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .energy-fv .txt-col h1 span::before {
    width: 30px;
    height: 30px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .energy-fv .txt-col h1 span::before {
    width: 20px;
    height: 20px;
  }
}
.energy-fv .txt-col h1 span::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  right: -15px;
  bottom: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .energy-fv .txt-col h1 span::after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .energy-fv .txt-col h1 span::after {
    width: 30px;
    height: 30px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .energy-fv .txt-col h1 span::after {
    width: 20px;
    height: 20px;
    bottom: 5px;
  }
}
.energy-fv .txt-col h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #0B7807;
  line-height: 1.666em;
  padding-left: 20px;
  position: relative;
}
.energy-fv .txt-col h2::before {
  content: "";
  width: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  height: 2px;
  background-color: #0B7807;
}
@media (max-width: 1400px) {
  .energy-fv .txt-col h2 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .energy-fv .txt-col h2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .energy-fv .txt-col h2 {
    font-size: 14px;
  }
}
.energy-fv .img-col {
  width: 81.25%;
  padding-bottom: 64px;
}
.energy-fv .img-col img {
  width: 100%;
}
@media (max-width: 1024px) {
  .energy-fv .img-col {
    width: 100%;
    padding-bottom: 0;
  }
}

.energy-sec1 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .energy-sec1 {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}
.energy-sec1::before {
  content: "";
  width: 931px;
  height: 430px;
  background-image: url(../img/natural-energy/object1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  right: 0;
  top: -270px;
  display: none;
}
@media (max-width: 1024px) {
  .energy-sec1::before {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .energy-sec1::before {
    top: -170px;
  }
}
.energy-sec1 .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .energy-sec1 .section-inner {
    max-width: 1400px;
  }
}
.energy-sec1 .section-inner .desc {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 100px;
}
@media screen and (min-width: 1919px) {
  .energy-sec1 .section-inner .desc {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .energy-sec1 .section-inner .desc {
    font-size: 14px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .energy-sec1 .section-inner .desc {
    font-size: 12px;
  }
}
.energy-sec1 .section-inner .energys {
  position: relative;
}
.energy-sec1 .section-inner .energys h4 {
  position: absolute;
  left: -25px;
  top: -20px;
  display: inline-block;
  padding: 10px 25px;
  background-color: #61FE5B;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1919px) {
  .energy-sec1 .section-inner .energys h4 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .energy-sec1 .section-inner .energys h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .energy-sec1 .section-inner .energys h4 {
    font-size: 16px;
    left: -15px;
  }
}
.energy-sec1 .section-inner .energys .inner {
  padding: 70px;
  background-color: #D7D7D7;
}
@media (max-width: 1024px) {
  .energy-sec1 .section-inner .energys .inner {
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .energy-sec1 .section-inner .energys .inner {
    padding: 40px 15px;
  }
}
.energy-sec1 .section-inner .energys .inner .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .energy-sec1 .section-inner .energys .inner .flex {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.energy-sec1 .section-inner .energys .inner img {
  width: calc(20% - 12px);
}
@media (max-width: 767px) {
  .energy-sec1 .section-inner .energys .inner img {
    width: 30%;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
  }
}

.energy-sec2 {
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  padding-bottom: 130px;
}
@media (max-width: 1024px) {
  .energy-sec2 {
    padding-top: 75px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.energy-sec2::before {
  content: "";
  background-color: #F8F8F8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 572px;
  display: none;
}
@media (max-width: 1024px) {
  .energy-sec2::before {
    height: 300px;
  }
}
.energy-sec2::after {
  content: "";
  background-image: url(../img/natural-energy/object2.svg);
  position: absolute;
  left: 0;
  top: 584px;
  width: 100%;
  height: 430px;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  display: none;
}
@media (max-width: 1024px) {
  .energy-sec2::after {
    height: 300px;
    top: 305px;
  }
}
.energy-sec2 .section-inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1919px) {
  .energy-sec2 .section-inner {
    max-width: 1400px;
  }
}
.energy-sec2 .section-inner h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .energy-sec2 .section-inner h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner h2 {
    font-size: 16px;
  }
}
.energy-sec2 .section-inner h2 span {
  position: relative;
}
.energy-sec2 .section-inner h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .energy-sec2 .section-inner h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner h2 span::after {
    width: 20px;
    height: 20px;
    left: -8px;
    top: -3px;
  }
}
.energy-sec2 .section-inner .subttl {
  font-size: 20px;
  font-weight: 700;
  color: #0B7807;
  line-height: normal;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .subttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.energy-sec2 .section-inner .desc {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (min-width: 1919px) {
  .energy-sec2 .section-inner .desc {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .energy-sec2 .section-inner .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .desc {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.energy-sec2 .section-inner .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .flex {
    flex-direction: column;
  }
}
.energy-sec2 .section-inner .flex .col {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .flex .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.energy-sec2 .section-inner .flex .col img {
  width: 100%;
  aspect-ratio: 357/252;
  height: auto;
  object-fit: cover;
}
.energy-sec2 .section-inner .flex .col h6 {
  display: inline-block;
  background-color: #61FE5B;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-left: 30px;
  margin-top: -20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .energy-sec2 .section-inner .flex .col h6 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .energy-sec2 .section-inner .flex .col h6 {
    font-size: 16px;
    padding: 10px 15px;
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .flex .col h6 {
    margin-bottom: 10px;
  }
}
.energy-sec2 .section-inner .flex .col p {
  margin-left: 15px;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .energy-sec2 .section-inner .flex .col p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .energy-sec2 .section-inner .flex .col p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .energy-sec2 .section-inner .flex .col p {
    font-size: 12px;
    margin-right: 15px;
  }
}

.energy-sec3 {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .energy-sec3 {
    padding-bottom: 50px;
  }
}
.energy-sec3 .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .energy-sec3 .section-inner {
    max-width: 1400px;
  }
}
.energy-sec3 .section-inner h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (min-width: 1919px) {
  .energy-sec3 .section-inner h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .energy-sec3 .section-inner h2 {
    font-size: 16px;
  }
}
.energy-sec3 .section-inner h2 span {
  position: relative;
}
.energy-sec3 .section-inner h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .energy-sec3 .section-inner h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .energy-sec3 .section-inner h2 span::after {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
.energy-sec3 .section-inner .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.energy-sec3 .section-inner .flex .col {
  width: calc(33.33333% - 10px);
}
.energy-sec3 .section-inner .flex .col img {
  width: 100%;
}
.energy-sec3 .section-inner p {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1919px) {
  .energy-sec3 .section-inner p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .energy-sec3 .section-inner p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .energy-sec3 .section-inner p {
    font-size: 12px;
  }
}

.essential-fv {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .essential-fv {
    padding-top: 80px;
  }
}
.essential-fv .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .essential-fv .section-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.essential-fv .txt-col {
  background-color: #fff;
  padding-top: 105px;
  padding-left: 135px;
  padding-right: 120px;
  padding-bottom: 24px;
  margin-right: -670px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .essential-fv .txt-col {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .essential-fv .txt-col {
    margin-right: 0;
    padding-top: 30px;
    padding-left: 30px;
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .essential-fv .txt-col {
    margin-top: -100px;
    padding-right: 20px;
  }
}
.essential-fv .txt-col h1 {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .essential-fv .txt-col h1 {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .essential-fv .txt-col h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .essential-fv .txt-col h1 {
    font-size: 30px;
  }
}
.essential-fv .txt-col h1 span {
  position: relative;
}
.essential-fv .txt-col h1 span::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .essential-fv .txt-col h1 span::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .essential-fv .txt-col h1 span::before {
    width: 30px;
    height: 30px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .essential-fv .txt-col h1 span::before {
    width: 20px;
    height: 20px;
  }
}
.essential-fv .txt-col h1 span::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  right: -15px;
  bottom: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .essential-fv .txt-col h1 span::after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .essential-fv .txt-col h1 span::after {
    width: 30px;
    height: 30px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .essential-fv .txt-col h1 span::after {
    width: 20px;
    height: 20px;
    bottom: 5px;
  }
}
.essential-fv .txt-col h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #0B7807;
  line-height: 1.666em;
  padding-left: 20px;
  position: relative;
}
.essential-fv .txt-col h2::before {
  content: "";
  width: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  height: 2px;
  background-color: #0B7807;
}
@media (max-width: 1400px) {
  .essential-fv .txt-col h2 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .essential-fv .txt-col h2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .essential-fv .txt-col h2 {
    font-size: 14px;
  }
}
.essential-fv .img-col {
  width: 81.25%;
  padding-bottom: 64px;
}
.essential-fv .img-col img {
  width: 100%;
}
@media (max-width: 1024px) {
  .essential-fv .img-col {
    width: 100%;
    padding-bottom: 0;
  }
}

.essential-sec1 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .essential-sec1 {
    padding-top: 10px;
    padding-bottom: 25px;
  }
}
.essential-sec1::before {
  content: "";
  width: 931px;
  height: 430px;
  background-image: url(../img/natural-energy/object1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  right: 0;
  top: -270px;
  display: none;
}
@media (max-width: 1024px) {
  .essential-sec1::before {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .essential-sec1::before {
    top: -170px;
  }
}
.essential-sec1 .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .essential-sec1 .section-inner {
    max-width: 1400px;
  }
}
.essential-sec1 .section-inner .desc {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1919px) {
  .essential-sec1 .section-inner .desc {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .essential-sec1 .section-inner .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .essential-sec1 .section-inner .desc {
    font-size: 12px;
  }
}
.essential-sec1 .section-inner .energys {
  position: relative;
}
.essential-sec1 .section-inner .energys h4 {
  position: absolute;
  left: -25px;
  top: -20px;
  display: inline-block;
  padding: 10px 25px;
  background-color: #61FE5B;
  z-index: 2;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media (max-width: 1024px) {
  .essential-sec1 .section-inner .energys h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .essential-sec1 .section-inner .energys h4 {
    font-size: 16px;
  }
}
.essential-sec1 .section-inner .energys .inner {
  padding: 70px;
  background-color: #D7D7D7;
}
@media (max-width: 1024px) {
  .essential-sec1 .section-inner .energys .inner {
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec1 .section-inner .energys .inner {
    padding: 40px 15px;
  }
}
.essential-sec1 .section-inner .energys .inner .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .essential-sec1 .section-inner .energys .inner .flex {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.essential-sec1 .section-inner .energys .inner img {
  width: calc(20% - 12px);
}
@media (max-width: 767px) {
  .essential-sec1 .section-inner .energys .inner img {
    width: 30%;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
  }
}

.essential-sec2 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.essential-sec2::before {
  content: "";
  width: 100%;
  height: 1694px;
  position: absolute;
  left: 0;
  top: 268px;
  background-image: url(../img/essential/essential-sec2-bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (max-width: 767px) {
  .essential-sec2::before {
    height: 50%;
    top: 800px;
    background-size: 100%;
    background-image: url(../img/essential/essential-sec2-bg-sp.svg);
  }
}
@media (max-width: 1024px) {
  .essential-sec2 {
    padding-top: 50px;
    background-color: #F8F8F8;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.essential-sec2 .section-inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1919px) {
  .essential-sec2 .section-inner {
    max-width: 1400px;
  }
}
.essential-sec2 .section-inner h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (min-width: 1919px) {
  .essential-sec2 .section-inner h2 {
    font-size: 30px;
  }
}
.essential-sec2 .section-inner h2.h2-2 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner h2.h2-2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner h2 {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
}
.essential-sec2 .section-inner h2 span {
  position: relative;
}
.essential-sec2 .section-inner h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner h2 span::after {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
.essential-sec2 .section-inner .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .flex {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.essential-sec2 .section-inner .flex .col {
  width: calc(33.3333% - 20px);
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .flex .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.essential-sec2 .section-inner .flex .col img {
  width: 100%;
  aspect-ratio: 600/400;
  height: auto;
  object-fit: cover;
}
.essential-sec2 .section-inner .flex .col h6 {
  display: inline-block;
  background-color: #61FE5B;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-left: 15px;
  margin-top: -20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .essential-sec2 .section-inner .flex .col h6 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .flex .col h6 {
    font-size: 16px;
    padding: 10px 15px;
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .flex .col h6 {
    margin-bottom: 10px;
  }
}
.essential-sec2 .section-inner .flex .col p {
  font-size: 16px;
  line-height: 2.06em;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .essential-sec2 .section-inner .flex .col p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .flex .col p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .flex .col p {
    font-size: 12px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.essential-sec2 .section-inner .graph-flex {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 40px;
  padding-bottom: 50px;
  margin-bottom: 110px;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .graph-flex {
    flex-direction: column;
    margin-top: 40px;
    box-shadow: 2px 2px 5px #F8F8F8;
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .graph-flex {
    padding: 20px;
  }
}
.essential-sec2 .section-inner .graph-flex .col {
  width: calc(50% - 10px);
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .graph-flex .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.essential-sec2 .section-inner .graph-flex .col h5 {
  background-color: #F8F8F8;
  padding-top: 17px;
  padding-bottom: 13px;
  padding-left: 25px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .graph-flex .col h5 {
    font-size: 16px;
    padding-top: 13px;
  }
}
@media (max-width: 767px) {
  .essential-sec2 .section-inner .graph-flex .col h5 {
    font-size: 14px;
    line-height: normal;
    padding-left: 10px;
    padding-right: 5px;
  }
}
.essential-sec2 .section-inner .graph-flex .col h5 span {
  position: relative;
  z-index: 2;
}
.essential-sec2 .section-inner .graph-flex .col h5 span::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #61FE5B;
  position: absolute;
  left: -5px;
  top: 0px;
  z-index: -1;
}
.essential-sec2 .section-inner .graph-flex .col .img-wrapper {
  display: flex;
  justify-content: center;
}
.essential-sec2 .section-inner .graph-flex .col .img-wrapper img {
  max-height: 300px;
  width: auto;
  max-width: 90%;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .graph-flex .col .img-wrapper img.img1 {
    position: relative;
    left: -30px;
  }
}
.essential-sec2 .section-inner .voice-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .voice-flex {
    flex-direction: column;
  }
}
.essential-sec2 .section-inner .voice-flex .card {
  border: 3px solid #0B7807;
  background: #FFF;
  box-shadow: 5px 5px 0px 0px #0B7807;
  padding: 25px;
  padding-left: 120px;
  position: relative;
  width: calc(50% - 30px);
  margin-bottom: 55px;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .voice-flex .card {
    height: 128px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 80px;
  }
}
.essential-sec2 .section-inner .voice-flex .card::before {
  content: "";
  width: 123.078px;
  height: 120px;
  background-image: url(../img/essential/voice.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: -30px;
  top: -30px;
  position: absolute;
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .voice-flex .card::before {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
  }
}
.essential-sec2 .section-inner .voice-flex .card p {
  font-weight: 500;
  line-height: 2em;
  font-size: 16px;
}
@media screen and (min-width: 1919px) {
  .essential-sec2 .section-inner .voice-flex .card p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .essential-sec2 .section-inner .voice-flex .card p {
    font-size: 12px;
  }
}

.essential-sec3 {
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  padding-bottom: 180px;
}
@media (max-width: 1024px) {
  .essential-sec3 {
    padding-top: 75px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.essential-sec3 .section-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.essential-sec3 .section-inner h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
@media screen and (min-width: 1919px) {
  .essential-sec3 .section-inner h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner h2 {
    font-size: 16px;
  }
}
.essential-sec3 .section-inner h2 span {
  position: relative;
}
.essential-sec3 .section-inner h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .essential-sec3 .section-inner h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner h2 span::after {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
.essential-sec3 .section-inner .subttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0B7807;
  line-height: normal;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .essential-sec3 .section-inner .subttl {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .subttl {
    font-size: 16px;
  }
}
.essential-sec3 .section-inner .desc {
  font-size: 16px;
  line-height: 2.06em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .essential-sec3 .section-inner .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .desc {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.essential-sec3 .section-inner .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .flex {
    flex-direction: column;
  }
}
.essential-sec3 .section-inner .flex .col {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .flex .col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.essential-sec3 .section-inner .flex .col img {
  width: 100%;
}
.essential-sec3 .section-inner .flex .col h6 {
  display: inline-block;
  background-color: #61FE5B;
  padding: 10px 25px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-left: 30px;
  margin-top: -20px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .essential-sec3 .section-inner .flex .col h6 {
    font-size: 16px;
    padding: 10px 15px;
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .flex .col h6 {
    margin-bottom: 10px;
  }
}
.essential-sec3 .section-inner .flex .col p {
  margin-left: 15px;
  font-size: 16px;
  line-height: 2.06em;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .essential-sec3 .section-inner .flex .col p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .essential-sec3 .section-inner .flex .col p {
    font-size: 12px;
  }
}

.essential-sec4 {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 45px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .essential-sec4 {
    padding-bottom: 50px;
    padding-top: 55px;
  }
}
.essential-sec4 .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner {
    max-width: 1400px;
  }
}
.essential-sec4 .section-inner .ttl-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .ttl-wrapper .jirei-more {
    display: none;
  }
}
.essential-sec4 .section-inner h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner h2 {
    font-size: 16px;
  }
}
.essential-sec4 .section-inner h2 span {
  position: relative;
}
.essential-sec4 .section-inner h2 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .essential-sec4 .section-inner h2 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner h2 span::after {
    width: 20px;
    height: 20px;
    left: -5px;
  }
}
.essential-sec4 .section-inner .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .flex {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.essential-sec4 .section-inner .flex .col {
  width: calc(50% - 30px);
  transition: all 0.3s;
}
.essential-sec4 .section-inner .flex .col:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .flex .col {
    width: 100%;
    margin-bottom: 50px;
  }
}
.essential-sec4 .section-inner .flex .col .img-wrapper {
  overflow: hidden;
  margin-bottom: 15px;
}
.essential-sec4 .section-inner .flex .col .img-wrapper img {
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
  height: auto;
}
.essential-sec4 .section-inner .flex .col h5 {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .flex .col h5 {
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  .essential-sec4 .section-inner .flex .col h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .flex .col h5 {
    font-size: 16px;
  }
}
.essential-sec4 .section-inner .flex .col ul {
  display: flex;
  margin-bottom: 8px;
  display: none;
}
.essential-sec4 .section-inner .flex .col ul li {
  padding: 4px 15px;
  border: 1px solid #0B7807;
  border-radius: 99px;
  font-size: 13px;
  font-weight: bold;
  color: #0B7807;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .flex .col ul li {
    font-size: 10px;
  }
}
.essential-sec4 .section-inner .flex .col p {
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.05em;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .flex .col p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .essential-sec4 .section-inner .flex .col p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .flex .col p {
    font-size: 12px;
  }
}
.essential-sec4 .section-inner .cards .card-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card-wrapper {
    flex-direction: column;
  }
}
.essential-sec4 .section-inner .cards .card {
  padding-bottom: 5px;
  transition: all 0.3s;
  margin-right: 30px;
}
.essential-sec4 .section-inner .cards .card:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card {
    padding-bottom: 20px;
  }
  .essential-sec4 .section-inner .cards .card:last-child {
    padding-bottom: 0;
  }
}
.essential-sec4 .section-inner .cards .card:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .essential-sec4 .section-inner .cards .card {
    width: calc(33.33333% - 20px);
  }
}
.essential-sec4 .section-inner .cards .card .img-wrapper {
  overflow: hidden;
  margin-bottom: 5px;
}
.essential-sec4 .section-inner .cards .card .img-wrapper img {
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
  height: auto;
}
.essential-sec4 .section-inner .cards .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .cards .card h5 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.essential-sec4 .section-inner .cards .card ul {
  display: flex;
}
.essential-sec4 .section-inner .cards .card ul li {
  border: 1px solid #07E700;
  color: #07E700;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 10px;
  line-height: 1.69em;
  margin-right: 5px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card ul li {
    margin-bottom: 6px;
  }
}
.essential-sec4 .section-inner .cards .card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 6px;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .cards .card p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.essential-sec4 .section-inner .cards .card .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more {
    font-size: 12px;
  }
}
.essential-sec4 .section-inner .cards .card .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more::after {
    left: 94px;
    bottom: -3.5px;
  }
}
.essential-sec4 .section-inner .cards .card .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more::before {
    width: 105%;
  }
}
@media (min-width: 768px) {
  .essential-sec4 .section-inner .cards .card .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .essential-sec4 .section-inner .cards .card .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.essential-sec4 .section-inner .cards .card .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.essential-sec4 .section-inner .cards .card:hover .more {
  padding-left: 0;
}
.essential-sec4 .section-inner .btn-wrapper {
  display: flex;
  justify-content: center;
}
.essential-sec4 .section-inner .btn-wrapper .btn {
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2c2c2c;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.35em;
  transition: all 0.4s;
}
.essential-sec4 .section-inner .btn-wrapper .btn:hover {
  background-color: #2c2c2c;
  color: white;
}
@media (max-width: 767px) {
  .essential-sec4 .jirei-more {
    justify-content: flex-end;
    margin-top: 4px;
  }
  .essential-sec4 .jirei-more .more {
    font-weight: 700;
  }
  .essential-sec4 .jirei-more .more span {
    letter-spacing: 0.35em;
  }
  .essential-sec4 .jirei-more .more::before {
    width: 85px;
  }
}
@media (max-width: 767px) {
  .essential-sec4 .more-wrapper {
    margin-right: 0px;
    padding-right: 0;
  }
  .essential-sec4 .more-wrapper .more {
    width: 143px !important;
    letter-spacing: 0.01em;
  }
  .essential-sec4 .more-wrapper .more::before {
    width: 85px !important;
    bottom: -2px !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .essential-sec4 .jirei-more .more {
    width: 143px !important;
  }
  .essential-sec4 .jirei-more .more::before {
    width: 131px !important;
  }
  .essential-sec4 .jirei-more .more::after {
    left: 140px !important;
    bottom: -3.5px;
  }
}

@media (max-width: 767px) {
  .essential-sec4 .btn-wrapper {
    justify-content: flex-end !important;
  }
}
.essential-sec4 .btn-wrapper .more {
  width: 143px;
}
.essential-sec4 .btn-wrapper .more span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .essential-sec4 .btn-wrapper .more span {
    letter-spacing: 0.35em;
  }
}
.essential-sec4 .btn-wrapper .more::before {
  width: 131px !important;
}
.essential-sec4 .btn-wrapper .more::after {
  left: 140px !important;
}

.kaso-fv2 {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .kaso-fv2 {
    padding-top: 150px;
  }
}
.kaso-fv2 .section-inner .sub {
  color: #0B7807;
}
.kaso-fv2 .section-inner .sub span::before {
  background-color: #0B7807;
}

.archive-sec5 {
  padding-top: 0px;
}
.archive-sec5::before, .archive-sec5::after {
  display: none;
}
@media (max-width: 1024px) {
  .archive-sec5 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .archive-sec5 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .archive-sec5 .sec5-1 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .archive-sec5 .sec5-1 {
    padding-bottom: 0;
  }
}
.archive-sec5 .card {
  margin-bottom: 60px;
}
.archive-sec5 .flex {
  padding-bottom: 0px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .archive-sec5 .flex {
    padding-bottom: 0;
  }
}
.archive-sec5 .pagination {
  margin-top: 0;
}
.archive-sec5 .pagination .num {
  border-color: #0B7807;
  color: #0B7807;
}
.archive-sec5 .pagination .current {
  background-color: #0B7807;
  border-color: #0B7807;
  color: white;
}

.product-single-sec {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  background-size: cover;
  background-position: top center;
}
@media (max-width: 767px) {
  .product-single-sec {
    padding-top: 10px;
    background-image: none;
    background-size: 100%;
    background-position: bottom center;
  }
}
.product-single-sec .section-inner {
  max-width: 1400px;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 1919px) {
  .product-single-sec .section-inner {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .product-single-sec .section-inner {
    flex-direction: column;
    align-items: unset;
  }
}
.product-single-sec .section-inner .side-col {
  width: 300px;
  position: sticky;
  top: 150px;
  z-index: 5;
  padding-bottom: 200px;
}
@media (min-width: 768px) {
  .product-single-sec .section-inner .side-col {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .side-col {
    width: auto;
    position: static;
    padding: 20px 15px;
    background-color: white;
    background-color: #f8f8f8;
    padding-bottom: 10px;
    margin-bottom: 100px;
  }
  .product-single-sec .section-inner .side-col h4 {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid;
    letter-spacing: 0.1em;
    padding-top: 10px;
  }
}
.product-single-sec .section-inner .side-col ul li {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-left: 7px;
  z-index: 2;
  line-height: 1.6666em;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .side-col ul li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.product-single-sec .section-inner .side-col ul li a {
  color: #d7d7d7;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .side-col ul li a {
    color: #2c2c2c;
  }
}
.product-single-sec .section-inner .side-col ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ebebeb;
  z-index: -1;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .side-col ul li::before {
    width: 15px;
    height: 15px;
    background-color: #61FE5B;
  }
}
.product-single-sec .section-inner .side-col ul li.li-active a {
  color: #2c2c2c;
}
.product-single-sec .section-inner .side-col ul li.li-active::before {
  background-color: #61FE5B;
}
.product-single-sec .section-inner .main-col {
  padding-bottom: 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col {
    overflow: hidden;
    width: 100%;
    padding-bottom: 70px;
  }
}
.product-single-sec .section-inner .main-col h2 {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.1111em;
  padding-left: 10px;
  padding-top: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  margin-top: 110px;
}
@media screen and (min-width: 1919px) {
  .product-single-sec .section-inner .main-col h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col h2 {
    font-size: 20px;
    margin-bottom: 0.5em;
    margin-top: 2em;
  }
}
.product-single-sec .section-inner .main-col h2::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col h2::before {
    width: 26px;
    height: 26px;
  }
}
.product-single-sec .section-inner .main-col h2:nth-child(1) {
  margin-top: 0;
}
.product-single-sec .section-inner .main-col h3 {
  margin-bottom: 15px;
  color: #0b7807;
  font-weight: bold;
  line-height: normal;
  margin-top: 15px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col h3 {
    font-size: 18px;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}
.product-single-sec .section-inner .main-col p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 1.6em;
}
@media screen and (min-width: 1919px) {
  .product-single-sec .section-inner .main-col p {
    font-size: 20px;
  }
}
.product-single-sec .section-inner .main-col p.p1 {
  max-width: 500px;
}
@media screen and (min-width: 1919px) {
  .product-single-sec .section-inner .main-col p.p1 {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col p {
    font-size: 12px;
  }
}
.product-single-sec .section-inner .main-col img, .product-single-sec .section-inner .main-col video {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col img, .product-single-sec .section-inner .main-col video {
    margin-top: 1em;
    margin-bottom: 0.25em;
  }
}
.product-single-sec .section-inner .main-col .img-product-sp1 {
  max-width: 819px;
}
.product-single-sec .section-inner .main-col .img-product-sp2 {
  max-width: 1000px;
}
.product-single-sec .section-inner .main-col iframe {
  max-width: 100%;
  max-width: 806px;
}
.product-single-sec .section-inner .main-col .illust {
  max-width: 46%;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col .illust {
    max-width: 100%;
  }
}
.product-single-sec .section-inner .main-col .dengen-h5 {
  color: #0b7807;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 10px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .product-single-sec .section-inner .main-col .dengen-h5 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col .dengen-h5 {
    white-space: normal;
    font-size: 18px;
  }
}
.product-single-sec .section-inner .main-col .siyo-swiper .swiper-slide {
  height: auto;
}
.product-single-sec .section-inner .main-col .swiper {
  background-color: #fff;
}
.product-single-sec .section-inner .main-col .swiper img {
  height: 100%;
  object-fit: cover;
}
.product-single-sec .section-inner .main-col .swiper .swiper-button-next, .product-single-sec .section-inner .main-col .swiper .swiper-button-prev {
  color: #2c2c2c;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col .swiper .swiper-button-next, .product-single-sec .section-inner .main-col .swiper .swiper-button-prev {
    transform: scale(0.7);
    margin-top: -18px;
  }
}
.product-single-sec .section-inner .main-col .swiper .swiper-pagination {
  bottom: 40px;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col .swiper .swiper-pagination {
    bottom: 20px;
  }
}
.product-single-sec .section-inner .main-col .swiper .swiper-pagination-bullet-active {
  background-color: #2c2c2c;
}
.product-single-sec .section-inner .main-col .slide {
  padding-bottom: 5px;
  width: calc(50% - 22.5px);
  transition: opacity 0.3s;
}
.product-single-sec .section-inner .main-col .slide:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .product-single-sec .section-inner .main-col .slide {
    width: 100%;
    padding-bottom: 20px;
  }
}
.product-single-sec .section-inner .main-col .slide .img-wrapper {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 0px !important;
}
.product-single-sec .section-inner .main-col .slide .img-wrapper img {
  width: 100%;
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
}
.product-single-sec .section-inner .main-col .slide h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .product-single-sec .section-inner .main-col .slide h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.product-single-sec .section-inner .main-col .slide ul {
  display: flex;
}
.product-single-sec .section-inner .main-col .slide ul li {
  border: 1px solid #07E700;
  color: #07E700;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  margin-bottom: 8px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .product-single-sec .section-inner .main-col .slide ul li {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .product-single-sec .section-inner .main-col .slide ul li {
    margin-bottom: 6px;
  }
}
.product-single-sec .section-inner .main-col .slide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .product-single-sec .section-inner .main-col .slide p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .product-single-sec .section-inner .main-col .slide p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.product-single-sec .section-inner .main-col .slide .more-wrapper {
  padding-bottom: 10px;
}
.product-single-sec .section-inner .main-col .slide .more-wrapper .more {
  overflow: unset;
}
.product-single-sec .section-inner .main-col .slide .more-wrapper .more::before {
  width: 110px;
  height: 1px;
}
.product-single-sec .section-inner .main-col .slide .more-wrapper .more::after {
  left: 120px;
}

.imgs {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .imgs.imgs1 {
    margin-left: 300px;
    margin-top: -50px;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) and (min-width: 1919px) {
  .imgs.imgs1 {
    margin-left: 420px;
  }
}
.imgs .left {
  width: 55%;
}
.imgs .left img {
  width: 100%;
}
.imgs .right {
  width: 45%;
  padding-left: 40px;
}
.imgs .right img {
  width: 100%;
}
.imgs .right p {
  margin-bottom: 0;
}
.imgs .right .img2 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .imgs {
    flex-direction: column;
    gap: 10px;
  }
  .imgs .left, .imgs .right {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .imgs img {
    width: 100% !important;
  }
}

.tokucho-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tokucho-flex {
    flex-direction: column;
  }
}
.tokucho-flex .col {
  width: 32%;
}
@media (max-width: 767px) {
  .tokucho-flex .col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tokucho-flex .col h6 {
  color: #0b7807;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .tokucho-flex .col h6 {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.tokucho-flex .col img {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 600/400;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .tokucho-flex .col img {
    margin-top: 10px !important;
  }
}
.tokucho-flex .col p {
  font-size: 14px;
  line-height: 2em;
  font-weight: 400;
}

.tokucho-flex2 {
  display: flex;
  align-items: flex-end;
  margin-bottom: 100px;
}
.tokucho-flex2 .img-wrap {
  width: 32% !important;
  margin-right: 2%;
}
.tokucho-flex2 .img-wrap h6 {
  color: #0b7807;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .tokucho-flex2 .img-wrap h6 {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.tokucho-flex2 .img-wrap p {
  font-weight: bold !important;
}
@media (max-width: 767px) {
  .tokucho-flex2 .img-wrap {
    width: 100% !important;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .tokucho-flex2 {
    flex-direction: column;
  }
  .tokucho-flex2 img {
    width: 100% !important;
  }
}

.katsuyo h5 {
  color: #0b7807;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: normal;
}
@media (max-width: 767px) {
  .katsuyo h5 {
    white-space: normal;
  }
}
.katsuyo img {
  margin-bottom: 120px !important;
}

.yoto {
  padding-bottom: 100px;
}
.yoto h5 {
  color: #0b7807;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: normal;
}
@media (max-width: 767px) {
  .yoto h5 {
    white-space: normal;
    font-size: 16px;
  }
}
.yoto .yoto-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.yoto .yoto-flex img {
  width: 49% !important;
  aspect-ratio: 600/400;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .yoto .yoto-flex {
    flex-direction: column;
  }
  .yoto .yoto-flex img {
    width: 100% !important;
  }
}
.yoto .rest {
  width: 322px;
  display: block;
  margin-bottom: 20px;
}
.yoto .h4-2 {
  margin-top: 50px;
}
.yoto .notice {
  text-align: right;
}
.yoto .nomb {
  margin-bottom: 0 !important;
}
.yoto .detail-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .yoto .detail-wrapper {
    overflow: scroll;
  }
  .yoto .detail-wrapper img {
    width: 700px !important;
    margin-top: 0 !important;
  }
}

.ncube-table-wrapper, .power-table-wrapper {
  margin-top: 50px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .ncube-table-wrapper, .power-table-wrapper {
    margin-top: 20px;
    margin-bottom: 50px;
    overflow: scroll;
  }
  .ncube-table-wrapper img, .power-table-wrapper img {
    width: 700px !important;
  }
}

.left-hide {
  position: relative;
  overflow: hidden;
}
.left-hide::before {
  content: "";
  width: 100%;
  height: 100%;
  left: -100%;
  position: absolute;
  background-color: #fff;
  z-index: 4;
}
@media (max-width: 767px) {
  .left-hide::before {
    display: none;
  }
}

.jirei-jirei {
  display: flex;
}
@media (max-width: 767px) {
  .jirei-jirei {
    flex-direction: column;
  }
}
.jirei-jirei .swiper-slide {
  padding-bottom: 60px;
  width: calc(33.33333% - 20px);
  margin-right: 30px;
}
.jirei-jirei .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .jirei-jirei .swiper-slide {
    width: 100%;
    padding-bottom: 20px;
  }
}
.jirei-jirei .swiper-slide .img-wrapper {
  overflow: hidden;
  margin-bottom: 5px;
}
.jirei-jirei .swiper-slide .img-wrapper img {
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
  height: 100%;
  margin-bottom: 0;
}
.jirei-jirei .swiper-slide time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .swiper-slide time {
    font-size: 12px;
    margin-right: 0;
  }
}
.jirei-jirei .swiper-slide .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.jirei-jirei .swiper-slide .wrap time {
  margin-right: 14px;
}
.jirei-jirei .swiper-slide h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide h5 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .jirei-jirei .swiper-slide h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.jirei-jirei .swiper-slide ul {
  display: flex;
}
.jirei-jirei .swiper-slide ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.jirei-jirei .swiper-slide ul li:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .jirei-jirei .swiper-slide ul li {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .jirei-jirei .swiper-slide ul li {
    margin-bottom: 6px;
  }
}
.jirei-jirei .swiper-slide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .jirei-jirei .swiper-slide p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.jirei-jirei .swiper-slide .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .swiper-slide .more-wrapper .more {
    font-size: 12px;
  }
}
.jirei-jirei .swiper-slide .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .swiper-slide .more-wrapper .more::after {
    left: 90px;
    bottom: -3.5px;
  }
}
.jirei-jirei .swiper-slide .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .swiper-slide .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .swiper-slide .more-wrapper .more::before {
    width: 85px;
    bottom: -3px;
  }
}
@media (min-width: 768px) {
  .jirei-jirei .swiper-slide .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .jirei-jirei .swiper-slide .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.jirei-jirei .swiper-slide .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.jirei-jirei .swiper-slide:hover .more {
  padding-left: 0;
}
.jirei-jirei .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.jirei-jirei .wrap time {
  margin-right: 14px;
  font-size: 14px;
  font-weight: 900;
}
.jirei-jirei h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .jirei-jirei h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1919px) {
  .jirei-jirei h5 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.jirei-jirei .desc p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px !important;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .jirei-jirei .desc p {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
}
.jirei-jirei ul {
  display: flex;
}
.jirei-jirei ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.jirei-jirei ul li:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .jirei-jirei ul li {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .jirei-jirei ul li {
    margin-bottom: 6px;
  }
}
@media (min-width: 768px) {
  .jirei-jirei .more-wrapper .more {
    margin-bottom: 0 !important;
    letter-spacing: 0;
  }
  .jirei-jirei .more-wrapper .more::before {
    height: 1px;
    bottom: 1px;
  }
  .jirei-jirei .more-wrapper .more::after {
    bottom: -0.5px;
  }
}
.jirei-jirei .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .more-wrapper .more {
    font-size: 12px;
    margin-bottom: 0 !important;
  }
}
.jirei-jirei .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .more-wrapper .more::after {
    left: 94px;
    bottom: -1px;
  }
}
.jirei-jirei .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .jirei-jirei .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .jirei-jirei .more-wrapper .more::before {
    width: 85px;
  }
}
@media (min-width: 768px) {
  .jirei-jirei .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .jirei-jirei .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.jirei-jirei .more-wrapper .more span {
  letter-spacing: 0.1em;
}

.product-jirei-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .product-jirei-flex {
    margin-bottom: 0px;
  }
}
.product-jirei-flex h2 {
  margin-bottom: 0;
}
.product-jirei-flex .more-wrapper {
  margin-top: 0px;
}
.product-jirei-flex .more-wrapper .more {
  font-weight: 700;
}
.product-jirei-flex .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.product-jirei-flex .more-wrapper .more::before {
  height: 1px;
}
@media (min-width: 768px) {
  .product-jirei-flex .more-wrapper .more {
    width: 140px;
  }
  .product-jirei-flex .more-wrapper .more::before {
    width: 130px;
  }
  .product-jirei-flex .more-wrapper .more::after {
    left: 135px;
  }
}

.power-wrap {
  margin-bottom: 100px;
}
.power-wrap h5 {
  color: #0b7807;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 10px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .power-wrap h5 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .power-wrap h5 {
    white-space: normal;
    font-size: 18px;
  }
}

.power-tokucho ul {
  margin-top: 30px;
  margin-bottom: 100px;
}
.power-tokucho ul li {
  margin-bottom: 20px;
}
.power-tokucho ul li h5 {
  color: #0b7807;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 1919px) {
  .power-tokucho ul li h5 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .power-tokucho ul li h5 {
    font-size: 18px;
  }
}
.power-tokucho ul li p {
  margin-bottom: 0 !important;
}

.power-katsuyo h5 {
  font-size: 20px;
}
@media screen and (min-width: 1919px) {
  .power-katsuyo h5 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .power-katsuyo h5 {
    font-size: 18px;
  }
}
.power-katsuyo .power-katsuyo-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.power-option img {
  margin-top: 30px;
}

.setti-zisseki h5 {
  color: #0b7807;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 10px;
  line-height: normal;
}
@media (max-width: 767px) {
  .setti-zisseki h5 {
    font-size: 16px;
  }
}
.setti-zisseki iframe {
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .setti-zisseki iframe {
    height: 300px;
  }
}

.power-lineup h2 {
  margin-bottom: 50px !important;
}

.product-jirei-flex .more {
  font-weight: 600;
}

.ncube-table-wrapper table {
  width: 100%;
}
@media (max-width: 767px) {
  .ncube-table-wrapper table {
    width: 700px;
  }
}
.ncube-table-wrapper table tr:first-child th {
  background-color: #E8F5EF;
}
.ncube-table-wrapper table tr:first-child td {
  background-color: #E8F5EF;
}
.ncube-table-wrapper table th, .ncube-table-wrapper table td {
  border: 1px solid #b0b0b0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
}
@media screen and (min-width: 1919px) {
  .ncube-table-wrapper table th, .ncube-table-wrapper table td {
    font-size: 20px;
  }
}
.ncube-table-wrapper table th {
  width: 24%;
  text-align: center;
}
.ncube-table-wrapper table td {
  width: 19%;
  padding: 5px 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .jirei-more {
    margin-top: 10px;
    padding-right: 10px;
  }
  .jirei-more .more {
    width: 112px !important;
  }
  .jirei-more .more::before {
    width: 100px !important;
  }
  .jirei-more .more::after {
    left: 107px !important;
    bottom: -2.5px;
  }
  .jirei-more.more-wrapper {
    justify-content: flex-end;
    margin-top: 4px;
  }
  .jirei-more.more-wrapper .more {
    font-weight: 700;
    width: 143px !important;
  }
  .jirei-more.more-wrapper .more span {
    letter-spacing: 0.35em;
  }
  .jirei-more.more-wrapper .more::before {
    width: 131px !important;
  }
  .jirei-more.more-wrapper .more::after {
    left: 140px !important;
  }
}

@media (max-width: 1024px) {
  .kaso-fv3 h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .kaso-fv3 h1 {
    font-size: 40px;
  }
}
.kaso-fv3 h1 span.en::after {
  display: none;
}
.kaso-fv3 h1 span.en2::before {
  display: none;
}

.archive-case-sec {
  padding-bottom: 90px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .archive-case-sec {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.archive-case-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .side-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.archive-case-sec .section-inner .side-col .side-col-inner {
  max-width: 375px;
  border: 3px solid #61FE5B;
  padding: 40px;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col .side-col-inner {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col .side-col-inner {
    max-width: unset;
  }
}
.archive-case-sec .section-inner .side-col h6 {
  font-size: 18px;
  letter-spacing: 0.45em;
  font-weight: 800;
  margin-bottom: 20px;
}
.archive-case-sec .section-inner .side-col h6 span {
  background-color: #61FE5B;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 78px;
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col h6 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .archive-case-sec .section-inner .side-col h6 span {
    height: 30px;
    width: 60px;
  }
}
.archive-case-sec .section-inner .side-col .cat-ul > li {
  border-top: 2px solid #d7d7d7;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col .cat-ul > li {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.archive-case-sec .section-inner .side-col .cat-ul > li p {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  font-size: 18px;
  letter-spacing: 0.45em;
}
.archive-case-sec .section-inner .side-col .cat-ul > li p img {
  transition: all 0.3s;
}
.archive-case-sec .section-inner .side-col .cat-ul > li p.active img {
  transform: rotate(-90deg);
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col .cat-ul > li p {
    font-size: 14px;
  }
  .archive-case-sec .section-inner .side-col .cat-ul > li p img {
    width: 8px;
  }
}
.archive-case-sec .section-inner .side-col .cat-ul > li .child {
  display: none;
  padding-top: 15px;
}
.archive-case-sec .section-inner .side-col .cat-ul > li .child li {
  font-size: 14px;
  line-height: 2.14em;
  letter-spacing: 0.45em;
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .side-col .cat-ul > li .child li {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col {
    width: 100%;
  }
}
.archive-case-sec .section-inner .main-col .jirei-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .jirei-wrapper {
    flex-direction: column;
  }
}
.archive-case-sec .section-inner .main-col .jirei-wrapper a {
  transition: all 0.4s;
}
.archive-case-sec .section-inner .main-col .jirei-wrapper a:hover {
  opacity: 0.7;
}
.archive-case-sec .section-inner .main-col .slide {
  padding-bottom: 60px;
  width: calc(33.33333% - 20px);
  margin-right: 30px;
}
.archive-case-sec .section-inner .main-col .slide:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide {
    width: 100%;
    padding-bottom: 20px;
  }
}
.archive-case-sec .section-inner .main-col .slide .img-wrapper {
  overflow: hidden;
  margin-bottom: 5px;
}
.archive-case-sec .section-inner .main-col .slide .img-wrapper img {
  width: 100%;
  aspect-ratio: 356/269;
  object-fit: cover;
  height: 100%;
}
.archive-case-sec .section-inner .main-col .slide time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide time {
    font-size: 12px;
    margin-right: 0;
  }
}
.archive-case-sec .section-inner .main-col .slide .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.archive-case-sec .section-inner .main-col .slide .wrap time {
  margin-right: 14px;
}
.archive-case-sec .section-inner .main-col .slide h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide h5 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.archive-case-sec .section-inner .main-col .slide .h5-2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide .h5-2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide .h5-2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide .h5-2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide .h5-2 {
    font-size: 12px;
  }
}
.archive-case-sec .section-inner .main-col .slide ul {
  display: flex;
}
.archive-case-sec .section-inner .main-col .slide ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.archive-case-sec .section-inner .main-col .slide ul li:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .archive-case-sec .section-inner .main-col .slide ul li {
    font-size: 10px;
  }
}
.archive-case-sec .section-inner .main-col .slide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px;
  font-weight: 500;
}
.archive-case-sec .section-inner .main-col .slide p.p2 {
  display: none;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .archive-case-sec .section-inner .main-col .slide p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.archive-case-sec .section-inner .main-col .slide .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more {
    font-size: 12px;
  }
}
.archive-case-sec .section-inner .main-col .slide .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more::after {
    left: 90px;
    bottom: -3.5px;
  }
}
.archive-case-sec .section-inner .main-col .slide .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more::before {
    width: 85px;
    bottom: -3px;
  }
}
@media (min-width: 768px) {
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .archive-case-sec .section-inner .main-col .slide .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.archive-case-sec .section-inner .main-col .slide .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.archive-case-sec .section-inner .main-col .slide:hover .more {
  padding-left: 0;
}
.archive-case-sec .section-inner .main-col .pagination {
  margin-top: 40px;
}
.archive-case-sec .section-inner .main-col .pagination .num {
  border-color: #0B7807;
  color: #0B7807;
}
.archive-case-sec .section-inner .main-col .pagination .dot {
  color: #0B7807;
}
.archive-case-sec .section-inner .main-col .pagination .current {
  background-color: #0B7807;
  color: white;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.category-list li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 110px;
  font-size: 13px;
  font-weight: bold;
  color: #0B7807;
  border: 1px solid #0B7807;
  border-radius: 99px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #f8f8f8;
}
.category-list li a.current {
  background-color: #0B7807;
  color: white;
}
@media (max-width: 767px) {
  .category-list li {
    margin-right: 10px;
  }
  .category-list li a {
    min-width: 70px;
  }
}

.single-case-sec {
  padding-bottom: 90px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .single-case-sec {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.single-case-sec::before {
  content: "";
  width: 100%;
  height: calc(100% - 360px);
  top: 360px;
  left: 0;
  background-color: #F8F8F8;
  position: absolute;
  display: none;
}
.single-case-sec::after {
  content: "";
  width: 637px;
  height: 430px;
  position: absolute;
  right: 0;
  bottom: 140px;
  background-image: url(../img/case/object.svg);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  display: none;
}
@media (max-width: 767px) {
  .single-case-sec::after {
    width: 250px;
  }
}
.single-case-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner {
    max-width: 1400px;
  }
}
.single-case-sec .section-inner .ttl {
  border-bottom: 2px solid #D7D7D7;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .ttl {
    margin-bottom: 15px;
  }
}
.single-case-sec .section-inner .ttl h2 {
  font-size: 36px;
  letter-spacing: 0.15em;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: 24px;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .ttl h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .ttl h2 {
    font-size: 30px;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.single-case-sec .section-inner .ttl ul {
  display: flex;
  margin-bottom: 40px;
}
.single-case-sec .section-inner .ttl ul li {
  background-color: white;
  border: 1px solid #0B7807;
  border-radius: 99px;
  margin-right: 5px;
  color: #0B7807;
  font-size: 13px;
  padding: 5px 10px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .ttl ul {
    margin-bottom: 10px;
  }
  .single-case-sec .section-inner .ttl ul li {
    font-size: 10px;
  }
}
.single-case-sec .section-inner .thumbs {
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs {
    padding-bottom: 20px;
  }
}
.single-case-sec .section-inner .thumbs .swipers {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .swipers {
    flex-direction: column;
    height: auto;
  }
}
.single-case-sec .section-inner .thumbs .left {
  width: 100%;
  height: 100%;
}
.single-case-sec .section-inner .thumbs .left .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .left {
    width: 100%;
    height: 240px;
  }
}
.single-case-sec .section-inner .thumbs .right {
  width: calc(36.7% - 15px);
  display: none;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .right {
    width: 100%;
    margin-top: 10px;
    height: 90px;
  }
}
.single-case-sec .section-inner .thumbs .right .swiper-wrapper {
  justify-content: space-between;
}
.single-case-sec .section-inner .thumbs .right .swiper-slide {
  height: calc(33.3333% - 7px);
}
.single-case-sec .section-inner .thumbs .right .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .right .swiper-slide {
    height: 100%;
  }
}
.single-case-sec .section-inner .thumbs .swiper-pagination, .single-case-sec .section-inner .thumbs .swiper-btn {
  position: static;
}
.single-case-sec .section-inner .thumbs .swiper-btn::after {
  display: none;
}
.single-case-sec .section-inner .thumbs .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .swiper-controller {
    flex-direction: column-reverse;
    padding-top: 10px;
  }
}
.single-case-sec .section-inner .thumbs .swiper-controller .swiper-btns {
  display: flex;
  margin-right: 10px;
}
.single-case-sec .section-inner .thumbs .swiper-controller .swiper-btns .swiper-btn {
  position: static;
  margin: unset;
  width: auto;
  height: 12px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .swiper-controller .swiper-btns {
    margin-right: 0;
    margin-top: 20px;
  }
}
.single-case-sec .section-inner .thumbs .swiper-pagination {
  width: auto;
  display: flex;
}
.single-case-sec .section-inner .thumbs .swiper-pagination .swiper-pagination-bullet {
  margin: unset;
  width: 70px;
  height: 2px;
  transition: all 0.3s;
  border-radius: 0;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .thumbs .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
  }
}
.single-case-sec .section-inner .thumbs .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0B7807;
}
.single-case-sec .section-inner .content {
  background-color: #fff;
  padding: 90px 60px;
  padding-bottom: 65px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content {
    padding: 30px 10px;
  }
}
.single-case-sec .section-inner .content .left {
  padding-top: 10px;
  padding-left: 40px;
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .left {
    padding-left: 20px;
  }
}
.single-case-sec .section-inner .content .left h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}
.single-case-sec .section-inner .content .left h3::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #61FE5B;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: -1;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .content .left h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .left h3 {
    font-size: 18px;
  }
  .single-case-sec .section-inner .content .left h3::before {
    width: 20px;
    height: 20px;
  }
}
.single-case-sec .section-inner .content .flex {
  width: 90%;
  margin: auto;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .single-case-sec .section-inner .content .flex {
    flex-direction: column;
    width: 100%;
  }
}
.single-case-sec .section-inner .content .about-flex {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .about-flex {
    margin-bottom: 20px;
  }
}
.single-case-sec .section-inner .content .about-flex .right {
  border-radius: 5px;
  background: #F8F8F8;
  padding: 40px 60px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 128px;
  padding-right: 55px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .about-flex .right {
    padding: 20px;
    padding-bottom: 10px;
  }
}
.single-case-sec .section-inner .content .about-flex .right ul {
  display: flex;
  flex-wrap: wrap;
}
.single-case-sec .section-inner .content .about-flex .right ul li {
  width: 50%;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.888em;
}
.single-case-sec .section-inner .content .about-flex .right ul li:nth-child(odd) {
  width: 40%;
}
.single-case-sec .section-inner .content .about-flex .right ul li:nth-child(even) {
  width: 60%;
}
.single-case-sec .section-inner .content .about-flex .right ul li h6 {
  font-weight: bold;
  color: #0B7807;
  font-size: 16px;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .content .about-flex .right ul li h6 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .about-flex .right ul li h6 {
    font-size: 12px;
  }
}
.single-case-sec .section-inner .content .about-flex .right ul li p {
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .content .about-flex .right ul li p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .about-flex .right ul li p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .about-flex .right ul li {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.single-case-sec .section-inner .content .voice-flex .right .box {
  border: 3px solid #0B7807;
  background: #FFF;
  box-shadow: 5px 5px 0px 0px #0B7807;
  padding: 32px 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex .right .box {
    padding: 20px;
    margin-bottom: 10px;
  }
}
.single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl {
    align-items: flex-start;
  }
}
.single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl img {
  margin-right: 15px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl img {
    width: 60px;
  }
}
.single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl h5 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid #D7D7D7;
  width: 100%;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex .right .box .voice-ttl h5 {
    font-size: 16px;
    padding-top: 10px;
    line-height: normal;
  }
}
.single-case-sec .section-inner .content .voice-flex .right p {
  line-height: 1.888em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex .right p {
    font-size: 12px;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper p {
  font-size: 16px;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .content .case-content-wrapper p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper p {
    font-size: 12px;
  }
}
.single-case-sec .section-inner .jirei-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin: auto;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}
.single-case-sec .section-inner .jirei-wrapper h6 {
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: bold;
  padding-left: 10px;
  padding-top: 5px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  line-height: 1em;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .jirei-wrapper h6 {
    font-size: 24px;
  }
}
.single-case-sec .section-inner .jirei-wrapper h6::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: -1;
  background-color: #61FE5B;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .jirei-wrapper {
    flex-direction: column;
    padding-top: 40px;
  }
}
.single-case-sec .section-inner .slide {
  padding-bottom: 30px;
  width: calc(50% - 15px);
  margin-right: 30px;
  transition: all 0.4s;
}
.single-case-sec .section-inner .slide:hover {
  opacity: 0.7;
}
.single-case-sec .section-inner .slide:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .slide {
    width: 100%;
    padding-bottom: 20px;
  }
}
.single-case-sec .section-inner .slide .img-wrapper {
  overflow: hidden;
  margin-bottom: 10px;
}
.single-case-sec .section-inner .slide .img-wrapper img {
  width: 100%;
  aspect-ratio: 357/252;
  object-fit: cover;
  height: auto;
}
.single-case-sec .section-inner .slide h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .slide h5 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .single-case-sec .section-inner .slide h5 {
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .slide h5 {
    font-size: 16px;
  }
}
.single-case-sec .section-inner .slide ul {
  display: flex;
  display: none;
}
.single-case-sec .section-inner .slide ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .single-case-sec .section-inner .slide ul li {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .single-case-sec .section-inner .slide ul li {
    margin-bottom: 6px;
  }
}
.single-case-sec .section-inner .slide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .single-case-sec .section-inner .slide p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .slide p {
    font-size: 12px;
  }
}
.single-case-sec .section-inner .slide .more {
  overflow: unset;
}
.single-case-sec .section-inner .slide .more::before {
  height: 1px;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .slide .jirei-more {
    justify-content: flex-end;
    margin-top: 4px;
  }
  .single-case-sec .section-inner .slide .jirei-more .more {
    font-weight: 700;
  }
  .single-case-sec .section-inner .slide .jirei-more .more span {
    letter-spacing: 0.35em;
  }
  .single-case-sec .section-inner .slide .jirei-more .more::before {
    width: 85px;
  }
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .slide .more-wrapper {
    margin-right: 0px;
    padding-right: 0;
  }
  .single-case-sec .section-inner .slide .more-wrapper .more {
    width: 143px !important;
    letter-spacing: 0.01em;
  }
  .single-case-sec .section-inner .slide .more-wrapper .more::before {
    width: 85px !important;
    bottom: -2px !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .single-case-sec .section-inner .slide .jirei-more .more {
    width: 143px !important;
  }
  .single-case-sec .section-inner .slide .jirei-more .more::before {
    width: 131px !important;
  }
  .single-case-sec .section-inner .slide .jirei-more .more::after {
    left: 140px !important;
    bottom: -3.5px;
  }
}
.single-case-sec .section-inner .btn-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .btn-wrapper {
    justify-content: flex-end;
  }
}
.single-case-sec .section-inner .btn-wrapper a {
  font-weight: 600;
}
.single-case-sec .section-inner .btn-wrapper .more {
  width: 143px;
}
.single-case-sec .section-inner .btn-wrapper .more span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .single-case-sec .section-inner .btn-wrapper .more span {
    letter-spacing: 0.35em;
  }
}
.single-case-sec .section-inner .btn-wrapper .more::before {
  width: 131px !important;
}
.single-case-sec .section-inner .btn-wrapper .more::after {
  left: 140px !important;
}

.new-single-case .case-sec {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.new-single-case .case-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .section-inner {
    max-width: 1400px;
  }
}
.new-single-case .case-sec .cat {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  margin-bottom: 8px;
  font-weight: bold;
  display: inline-flex;
}
.new-single-case .case-sec .cat:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .new-single-case .case-sec .cat {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .new-single-case .case-sec .cat {
    margin-bottom: 6px;
  }
}
.new-single-case .case-sec h2 {
  font-size: 24px;
  letter-spacing: 0.15em;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: 40px;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec h2 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.new-single-case .case-sec .flex {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .flex {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.new-single-case .case-sec .flex .img-wrap {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}
.new-single-case .case-sec .flex .img-wrap img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .flex .img-wrap {
    width: 100%;
  }
}
.new-single-case .case-sec .flex .txt-wrap {
  width: calc(60% - 20px);
  margin-left: 20px;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .flex .txt-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.new-single-case .case-sec .flex .txt-wrap h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
  position: absolute;
  left: -5px;
  top: -10px;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .flex .txt-wrap h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .flex .txt-wrap h3 {
    font-size: 18px;
    left: 0;
  }
  .new-single-case .case-sec .flex .txt-wrap h3::before {
    width: 20px;
    height: 20px;
  }
}
.new-single-case .case-sec .txt-wrap {
  border-radius: 5px;
  background: #F8F8F8;
  padding: 40px 60px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .txt-wrap {
    padding: 20px;
    padding-bottom: 10px;
  }
}
.new-single-case .case-sec .txt-wrap .left-col {
  width: 45%;
  padding-right: 10px;
}
.new-single-case .case-sec .txt-wrap .right-col {
  width: 55%;
}
.new-single-case .case-sec .txt-wrap .col .wrap {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .txt-wrap .col .wrap {
    line-height: 2em;
  }
}
.new-single-case .case-sec .txt-wrap .col h6 {
  font-weight: bold;
  color: #0B7807;
  font-size: 16px;
  line-height: 1.75em;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .txt-wrap .col h6 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .txt-wrap .col h6 {
    font-size: 12px;
    line-height: 1.88em;
  }
}
.new-single-case .case-sec .txt-wrap .col p {
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .txt-wrap .col p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .txt-wrap .col p {
    font-size: 12px;
    line-height: 1.88em;
  }
}
.new-single-case .case-sec .prev-next {
  max-width: 712px;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .prev-next {
    max-width: 1000px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .prev-next {
    margin-bottom: 20px;
  }
}
.new-single-case .case-sec .prev-next > ul {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .prev-next > ul {
    flex-direction: column;
  }
}
.new-single-case .case-sec .prev-next > ul > li {
  width: calc(50% - 10px);
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .prev-next > ul > li {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .prev-next > ul > li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.new-single-case .case-sec .prev-next > ul > li h6 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  position: relative;
  position: relative;
  z-index: 2;
}
.new-single-case .case-sec .prev-next > ul > li h6::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #61FE5B;
  position: absolute;
  left: -6px;
  top: -4px;
  z-index: -1;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .prev-next > ul > li h6 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .new-single-case .case-sec .prev-next > ul > li h6 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.new-single-case .case-sec .slide {
  transition: all 0.3s;
}
.new-single-case .case-sec .slide:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide {
    width: 100%;
    padding-bottom: 20px;
  }
}
.new-single-case .case-sec .slide .img-wrapper {
  overflow: hidden;
  margin-bottom: 5px;
}
.new-single-case .case-sec .slide .img-wrapper img {
  width: 100%;
  aspect-ratio: 356/267;
  object-fit: cover;
  height: 100%;
}
.new-single-case .case-sec .slide time {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 40px;
  line-height: 24px;
  color: #07e700;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide time {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide time {
    font-size: 12px;
    margin-right: 0;
  }
}
.new-single-case .case-sec .slide .wrap {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.new-single-case .case-sec .slide .wrap time {
  margin-right: 14px;
}
.new-single-case .case-sec .slide h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide h5 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .new-single-case .case-sec .slide h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide h5 {
    font-size: 12px;
  }
}
.new-single-case .case-sec .slide .h5-2 {
  margin-bottom: 14px;
}
@media (max-width: 1024px) {
  .new-single-case .case-sec .slide .h5-2 {
    margin-bottom: 6px;
  }
}
.new-single-case .case-sec .slide ul {
  display: flex;
}
.new-single-case .case-sec .slide ul li {
  border: 1px solid #0b7807;
  color: #0b7807;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 99px;
  font-size: 13px;
  line-height: 1.69em;
  margin-right: 5px;
  font-weight: bold;
}
.new-single-case .case-sec .slide ul li:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 1200px) {
  .new-single-case .case-sec .slide ul li {
    font-size: 10px;
  }
}
.new-single-case .case-sec .slide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px;
  font-weight: 500;
}
.new-single-case .case-sec .slide p.p2 {
  display: none;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .new-single-case .case-sec .slide p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.new-single-case .case-sec .slide .more-wrapper .more {
  width: auto;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.25em;
  pointer-events: none;
  overflow: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide .more-wrapper .more {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide .more-wrapper .more {
    font-size: 12px;
  }
}
.new-single-case .case-sec .slide .more-wrapper .more::after {
  left: 120px;
  width: 5px;
  height: 5px;
  bottom: -0.5px;
  background-color: black !important;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide .more-wrapper .more::after {
    left: 140px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide .more-wrapper .more::after {
    left: 90px;
    bottom: -3.5px;
  }
}
.new-single-case .case-sec .slide .more-wrapper .more::before {
  left: 0;
  width: 110px;
  height: 1px;
  bottom: 1px;
}
@media screen and (min-width: 1919px) {
  .new-single-case .case-sec .slide .more-wrapper .more::before {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .new-single-case .case-sec .slide .more-wrapper .more::before {
    width: 85px;
    bottom: -3px;
  }
}
@media (min-width: 768px) {
  .new-single-case .case-sec .slide .more-wrapper .more:hover {
    opacity: 0.7;
    padding-left: 0;
  }
  .new-single-case .case-sec .slide .more-wrapper .more:hover::before {
    width: 100%;
  }
}
.new-single-case .case-sec .slide .more-wrapper .more span {
  letter-spacing: 0.1em;
}
.new-single-case .case-sec .slide:hover .more {
  padding-left: 0;
}
.new-single-case .case-sec .btn-wrapper {
  display: flex;
  justify-content: center;
}
.new-single-case .case-sec .btn-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 60px;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid black;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.new-single-case .case-sec .btn-wrapper a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .new-single-case .case-sec .btn-wrapper a {
    width: 180px;
    height: 45px;
    font-size: 14px;
  }
}

.company-sec {
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .company-sec {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.company-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .company-sec .section-inner {
    max-width: 1400px;
  }
}
.company-sec .section-inner h4 {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.1111em;
  padding-left: 10px;
  padding-top: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  margin-top: 110px;
}
@media screen and (min-width: 1919px) {
  .company-sec .section-inner h4 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .company-sec .section-inner h4.katsuyo-h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .company-sec .section-inner h4 {
    font-size: 20px;
    margin-bottom: 0.5em;
    margin-top: 2em;
  }
}
.company-sec .section-inner h4::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .company-sec .section-inner h4::before {
    width: 26px;
    height: 26px;
  }
}
.company-sec .section-inner h4:nth-child(1) {
  margin-top: 0;
}
.company-sec .section-inner table {
  width: 100%;
}
@media (max-width: 767px) {
  .company-sec .section-inner tr {
    display: flex;
    flex-direction: column;
  }
}
.company-sec .section-inner tr th, .company-sec .section-inner tr td {
  padding-top: 30px;
  padding-bottom: 20px;
  line-height: 1.6em;
  border-bottom: 1px solid #B5B5B5;
}
.company-sec .section-inner tr th img, .company-sec .section-inner tr td img {
  width: 160px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .company-sec .section-inner tr th img, .company-sec .section-inner tr td img {
    width: 100px;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .company-sec .section-inner tr th, .company-sec .section-inner tr td {
    width: 100%;
  }
  .company-sec .section-inner tr th {
    border-bottom: none;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .company-sec .section-inner tr td {
    padding-top: 10px;
  }
}
.company-sec .section-inner tr th {
  font-size: 16px;
  font-weight: 500;
  width: 150px;
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
@media screen and (min-width: 1919px) {
  .company-sec .section-inner tr th {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .company-sec .section-inner tr th {
    font-size: 12px;
  }
}
.company-sec .section-inner tr th.ba {
  vertical-align: baseline;
}
.company-sec .section-inner tr td {
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  color: #2c2c2c;
}
@media screen and (min-width: 1919px) {
  .company-sec .section-inner tr td {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .company-sec .section-inner tr td {
    font-size: 12px;
  }
}
.company-sec .section-inner tr td .wrap {
  display: flex;
  align-items: center;
}
.company-sec .section-inner tr td .wrap2 {
  align-items: flex-end;
}
.company-sec .section-inner tr td .wrap2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 26px;
  font-size: 13px;
  font-weight: bold;
  color: #0B7807;
  border: 1px solid #0B7807;
  border-radius: 99px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

.green-power-fv {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .green-power-fv {
    padding-top: 80px;
  }
}
.green-power-fv .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .green-power-fv .section-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.green-power-fv .txt-col {
  background-color: #fff;
  padding-top: 105px;
  padding-left: 135px;
  padding-right: 120px;
  padding-bottom: 24px;
  margin-right: -670px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .green-power-fv .txt-col {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .green-power-fv .txt-col {
    margin-right: 0;
    padding-top: 30px;
    padding-left: 30px;
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .green-power-fv .txt-col {
    margin-top: -100px;
    padding-right: 20px;
  }
}
.green-power-fv .txt-col h1 {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 105px;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .green-power-fv .txt-col h1 {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .green-power-fv .txt-col h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .green-power-fv .txt-col h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.green-power-fv .txt-col h1 span {
  position: relative;
}
.green-power-fv .txt-col h1 span::before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  left: -15px;
  top: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .green-power-fv .txt-col h1 span::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .green-power-fv .txt-col h1 span::before {
    width: 30px;
    height: 30px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .green-power-fv .txt-col h1 span::before {
    width: 20px;
    height: 20px;
  }
}
.green-power-fv .txt-col h1 span::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  right: -15px;
  bottom: 20px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1400px) {
  .green-power-fv .txt-col h1 span::after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .green-power-fv .txt-col h1 span::after {
    width: 30px;
    height: 30px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .green-power-fv .txt-col h1 span::after {
    width: 20px;
    height: 20px;
    bottom: 5px;
  }
}
.green-power-fv .txt-col h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #0B7807;
  line-height: 1.666em;
  padding-left: 20px;
  position: relative;
}
.green-power-fv .txt-col h2::before {
  content: "";
  width: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  height: 2px;
  background-color: #0B7807;
}
@media (max-width: 1400px) {
  .green-power-fv .txt-col h2 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .green-power-fv .txt-col h2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .green-power-fv .txt-col h2 {
    font-size: 14px;
  }
}
.green-power-fv .img-col {
  width: 81.25%;
  padding-bottom: 64px;
}
.green-power-fv .img-col img {
  width: 100%;
}
@media (max-width: 1024px) {
  .green-power-fv .img-col {
    width: 100%;
    padding-bottom: 0;
  }
}

.green-about {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
  position: relative;
}
.green-about::before {
  content: "";
  width: 930px;
  height: 430px;
  position: absolute;
  right: 0;
  top: -170px;
  background-image: url(../img/green-power-park/object.webp);
  background-size: cover;
  display: none;
}
@media (max-width: 767px) {
  .green-about::before {
    width: 200px;
    height: 150px;
    top: -50px;
  }
}
@media (max-width: 767px) {
  .green-about {
    padding-bottom: 50px;
  }
}
.green-about .section-inner {
  position: relative;
  z-index: 2;
  margin: auto;
  display: flex;
  align-items: center;
  max-width: 1100px;
}
@media screen and (min-width: 1919px) {
  .green-about .section-inner {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .green-about .section-inner {
    flex-direction: column-reverse;
  }
}
.green-about .section-inner .txt {
  width: 40%;
  padding-right: 20px;
  width: calc(100% - 464px);
  padding-right: 80px;
}
@media screen and (min-width: 1919px) {
  .green-about .section-inner .txt {
    width: calc(100% - 600px);
  }
}
@media (max-width: 767px) {
  .green-about .section-inner .txt {
    padding-top: 30px;
    padding-right: 0;
    width: 100%;
    margin-top: 0px;
  }
}
.green-about .section-inner .txt p {
  font-size: 16px;
  line-height: 2.5em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 1919px) {
  .green-about .section-inner .txt p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .green-about .section-inner .txt p {
    font-size: 12px;
  }
}
.green-about .section-inner .img {
  width: 60%;
  width: 464px;
}
@media screen and (min-width: 1919px) {
  .green-about .section-inner .img {
    width: 600px;
  }
}
.green-about .section-inner .img img {
  width: 100%;
  aspect-ratio: 600/400;
  height: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .green-about .section-inner .img {
    width: 100%;
  }
}

.green-product {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .green-product {
    padding-top: 0px;
  }
}
.green-product .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .green-product .section-inner {
    max-width: 1400px;
  }
}
.green-product .section-inner ul li {
  margin-bottom: 112px;
}
.green-product .section-inner ul li h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.111em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (min-width: 1919px) {
  .green-product .section-inner ul li h6 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .green-product .section-inner ul li h6 {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
}
.green-product .section-inner ul li h6 span {
  position: relative;
}
.green-product .section-inner ul li h6 span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -15px;
  top: 0px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 1024px) {
  .green-product .section-inner ul li h6 span::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .green-product .section-inner ul li h6 span::after {
    width: 20px;
    height: 20px;
    left: -7px;
    top: -2px;
  }
}
.green-product .section-inner ul li .wrap {
  display: flex;
  align-items: center;
}
.green-product .section-inner ul li a {
  transition: all 0.3s;
}
.green-product .section-inner ul li a:hover {
  opacity: 0.7;
}
.green-product .section-inner ul li .more {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .green-product .section-inner ul li .more::before {
    width: 85px;
    height: 1px;
  }
}
@media (max-width: 767px) {
  .green-product .section-inner ul li {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.green-product .section-inner ul li .img {
  width: 33%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .green-product .section-inner ul li .img {
    width: 100%;
  }
}
.green-product .section-inner ul li .img img {
  width: 100%;
  aspect-ratio: 600/400;
  height: auto;
  object-fit: cover;
}
.green-product .section-inner ul li .txt {
  padding-left: 50px;
}
.green-product .section-inner ul li .txt img {
  width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
}
.green-product .section-inner ul li .txt h6 {
  color: #0B7807;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .green-product .section-inner ul li .txt h6 {
    font-size: 26px;
  }
}
.green-product .section-inner ul li .txt p {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.87em;
}
@media screen and (min-width: 1919px) {
  .green-product .section-inner ul li .txt p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .green-product .section-inner ul li .txt {
    padding-left: 0;
  }
  .green-product .section-inner ul li .txt h6 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
  }
  .green-product .section-inner ul li .txt p {
    font-size: 12px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #2C2C2C;
  font-weight: 500;
}

.en {
  font-family: "Avenir-origin", "Avenir", sans-serif;
}

.green {
  color: #07E700;
}

.green2 {
  color: #61FE5B;
}

a {
  color: #2C2C2C;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 140px;
  padding-right: 20px;
}
@media screen and (max-width: 1300px) {
  .breadcrumb {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    padding-left: 20px;
  }
}
.breadcrumb .section-inner {
  margin: auto;
}
.breadcrumb .section-inner ul {
  display: inline-flex;
  padding: 13px 20px;
  background-color: #f8f8f8;
}
@media (max-width: 767px) {
  .breadcrumb .section-inner ul {
    padding: 5px 10px;
    padding-bottom: 0;
  }
}
.breadcrumb .section-inner ul li {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.breadcrumb .section-inner ul li::before {
  content: "";
  width: 8px;
  height: 15px;
  background-image: url(../img/arrow-right-green.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -5.5px;
  top: calc(50% - 7px);
  top: 0;
}
@media (max-width: 767px) {
  .breadcrumb .section-inner ul li::before {
    height: 10px;
    top: calc(50% - 4.5px);
    top: 0;
  }
}
.breadcrumb .section-inner ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  flex-shrink: unset;
}
.breadcrumb .section-inner ul li:last-child::before {
  display: none;
}
.breadcrumb .section-inner ul li:last-child a {
  pointer-events: none;
}
@media (min-width: 768px) {
  .breadcrumb .section-inner ul li a {
    transition: all 0.3s;
  }
  .breadcrumb .section-inner ul li a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .breadcrumb .section-inner ul li {
    margin-bottom: 5px;
    font-size: 12px;
    padding-right: 10px;
    margin-right: 10px;
  }
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination a, .pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Avenir-origin", "Avenir", sans-serif;
  font-size: 18px;
}
@media (max-width: 767px) {
  .pagination a, .pagination span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.pagination .page-numbers {
  border-radius: 50%;
  border: 2px solid #0B7807;
  margin-left: 5px;
  margin-right: 5px;
  color: #0B7807;
}
.pagination .current {
  background-color: #0B7807;
  color: white;
}
.pagination .dot {
  color: #0B7807;
  padding-bottom: 4px;
}
.pagination .prev {
  margin-right: 65px;
  background-image: url(../img/arrow-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 8px;
  height: 44px;
  border: none;
}
@media (max-width: 767px) {
  .pagination .prev {
    height: 30px;
    margin-right: 20px;
  }
}
.pagination .next {
  margin-left: 65px;
  background-image: url(../img/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 8px;
  height: 44px;
  border: none;
}
@media (max-width: 767px) {
  .pagination .next {
    height: 30px;
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .pagination a {
    transition: all 0.3s;
    position: relative;
    top: 0;
  }
  .pagination a:hover {
    top: -2px;
  }
}

.single-case-sec .section-inner .content .voice-flex {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .voice-flex {
    margin-top: 30px;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper {
    font-size: 12px;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper p {
  line-height: 1.87em;
  font-weight: 400;
}

.single-case-sec .section-inner .content .case-content-wrapper h1, .single-case-sec .section-inner .content .case-content-wrapper h2, .single-case-sec .section-inner .content .case-content-wrapper h3, .single-case-sec .section-inner .content .case-content-wrapper h4, .single-case-sec .section-inner .content .case-content-wrapper h5, .single-case-sec .section-inner .content .case-content-wrapper h6, .single-case-sec .section-inner .content .case-content-wrapper li {
  line-height: normal;
}

.single-case-sec .section-inner .content .case-content-wrapper h1, .single-case-sec .section-inner .content .case-content-wrapper h2, .single-case-sec .section-inner .content .case-content-wrapper h3, .single-case-sec .section-inner .content .case-content-wrapper h4, .single-case-sec .section-inner .content .case-content-wrapper h5, .single-case-sec .section-inner .content .case-content-wrapper h6 {
  letter-spacing: 0.1em;
  font-weight: bold;
}

.single-case-sec .section-inner .content .case-content-wrapper h1, .single-case-sec .section-inner .content .case-content-wrapper h2, .single-case-sec .section-inner .content .case-content-wrapper h3, .single-case-sec .section-inner .content .case-content-wrapper h4, .single-case-sec .section-inner .content .case-content-wrapper h5, .single-case-sec .section-inner .content .case-content-wrapper h6, .single-case-sec .section-inner .content .case-content-wrapper p {
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h1, .single-case-sec .section-inner .content .case-content-wrapper h2, .single-case-sec .section-inner .content .case-content-wrapper h3, .single-case-sec .section-inner .content .case-content-wrapper h4, .single-case-sec .section-inner .content .case-content-wrapper h5, .single-case-sec .section-inner .content .case-content-wrapper h6, .single-case-sec .section-inner .content .case-content-wrapper p {
    margin-bottom: 0.5em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h1 {
  font-size: 2em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h1 {
    font-size: 1.5em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h2 {
  font-size: 1.875em;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h2 {
    font-size: 1.4em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h3 {
  font-size: 1.7em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h3 {
    font-size: 1.3em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h4 {
  font-size: 1.5em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h4 {
    font-size: 1.2em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h5 {
  font-size: 1.3em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h5 {
    font-size: 1.1em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper h6 {
  font-size: 1.1em;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper h6 {
    font-size: 1.05em;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper img {
  margin-top: 56px;
  margin-bottom: 70px;
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .single-case-sec .section-inner .content .case-content-wrapper img {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.single-case-sec .section-inner .content .case-content-wrapper a {
  text-decoration: underline;
  transition: all 0.3s;
}

.single-case-sec .section-inner .content .case-content-wrapper a:hover {
  opacity: 0.7;
}

.new-fv {
  margin-top: 69px;
  padding-top: 58px;
  padding-bottom: 58px;
  background-image: url(../../assets/img/n-e-fv.webp);
  background-size: cover;
  padding-left: 140px;
}
@media screen and (max-width: 1300px) {
  .new-fv {
    padding-left: 50px;
  }
}
.new-fv h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 17px;
  line-height: 1em;
}
@media (max-width: 767px) {
  .new-fv h1 {
    font-size: 24px;
  }
}
.new-fv h6 {
  font-size: 20px;
  color: white;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.333em;
}
@media (max-width: 767px) {
  .new-fv h6 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .new-fv {
    padding-left: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.new-fv.essential-new-fv {
  background-image: url(../../assets/img/e-t-i-d-fv.webp);
}
.new-fv.green-new-fv {
  background-image: url(../../assets/img/g-p-p-fv.webp);
}
.new-fv.product-new-fv {
  background-image: url(../../assets/img/product-fv.webp);
  background-position: right;
}
.new-fv.ncube-new-fv {
  background-image: url(../../assets/img/n-cube-fv.webp);
  background-position: center;
}
.new-fv.green-power-new-fv {
  background-image: url(../../assets/img/green-power-fv.webp);
  background-position: center;
}
.new-fv.case-new-fv {
  background-image: url(../../assets/img/case-fv.webp);
  background-position: center;
}
.new-fv.news-new-fv {
  background-image: url(../../assets/img/news-fv.webp);
  background-position: center right;
}
.new-fv.news-new-fv h1 {
  color: black;
}
.new-fv.news-new-fv h6 {
  color: #0B7807;
}
.new-fv p {
  margin-top: 20px;
  color: white;
  line-height: normal;
  padding-right: 15px;
}
.new-fv p.p2 {
  color: black;
}

.cat-list-wrapper {
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .cat-list-wrapper {
    max-width: 1400px;
  }
}

.sec6 .section-inner2 .news-wrapper ul li a time {
  color: #07E700;
}

.pagination .current {
  background-color: #07E700;
}

.pagination .page-numbers {
  border-color: #07E700;
  color: #07E700;
}

.pagination .current {
  color: white;
}

@media (min-width: 768px) {
  .news-sec-new {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

.lp-main {
  padding-top: 90px;
}
.lp-main .lp-fv .bg {
  width: 100%;
}
.lp-main .lp-fv .section-inner {
  max-width: 940px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.lp-main .lp-fv .section-inner h1 {
  font-weight: 500;
  color: #46AA0C;
  font-size: 24px;
  letter-spacing: 0.4em;
  line-height: 1.43em;
  margin-top: 5px;
  margin-bottom: 30px;
  font-weight: 700;
}
.lp-main .lp-fv .section-inner h1 span {
  font-size: 0.8em;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-fv .section-inner h1 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-fv .section-inner h1 {
    font-size: 3.4666666667vw;
    text-align: center;
    line-height: 1.8em;
    padding-left: 0vw;
    margin-bottom: 20px;
  }
}
.lp-main .lp-fv .section-inner h2 {
  color: #5F99C1;
  font-size: 24px;
  letter-spacing: 0.4em;
  line-height: 1.3em;
  font-weight: bold;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-fv .section-inner h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-fv .section-inner h2 {
    font-size: 14px;
    text-align: center;
    line-height: 1.8em;
  }
}
.lp-main .lp-fv .section-inner .logo {
  width: 353px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .lp-main .lp-fv .section-inner .logo {
    width: 250px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
  }
}
.lp-main .lp-sec {
  padding-top: 50px;
  padding-bottom: 0px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}
.lp-main .lp-sec .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner {
    max-width: 1400px;
  }
}
.lp-main .lp-sec .section-inner .ttl {
  text-align: center;
  color: white;
  background-color: #46AA0C;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .ttl {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .ttl {
    font-size: 16px;
  }
}
.lp-main .lp-sec .section-inner h2 {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.1111em;
  padding-left: 10px;
  padding-top: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  margin-top: 110px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner h2 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .lp-main .lp-sec .section-inner h2.katsuyo-h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner h2 {
    font-size: 20px;
    margin-bottom: 0.5em;
    margin-top: 2em;
  }
}
.lp-main .lp-sec .section-inner h2::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #D4E4A5;
  z-index: -1;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner h2::before {
    width: 26px;
    height: 26px;
  }
}
.lp-main .lp-sec .section-inner h2:nth-child(1) {
  margin-top: 0;
}
.lp-main .lp-sec .section-inner .flex {
  display: flex;
  align-items: center;
  padding-right: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex .txt .p2 {
  max-width: 90%;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex .txt .p2 {
    max-width: 100%;
  }
}
.lp-main .lp-sec .section-inner .flex .txt p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  max-width: 70%;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex .txt p {
    font-size: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex .txt p.p1 {
  max-width: 500px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex .txt p.p1 {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex .txt p {
    font-size: 12px;
    max-width: 100%;
  }
}
.lp-main .lp-sec .section-inner .flex .img1 {
  width: 459px;
}
.lp-main .lp-sec .section-inner .flex .img2 {
  width: 488px;
}
.lp-main .lp-sec .section-inner .flex .img {
  flex-shrink: 0;
}
.lp-main .lp-sec .section-inner .flex .img img {
  width: 100%;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex .img {
    width: 80%;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex2 {
    flex-direction: column;
  }
}
.lp-main .lp-sec .section-inner .flex2 .card {
  width: 32%;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex2 .card {
    width: 100%;
  }
}
.lp-main .lp-sec .section-inner .flex2 .card img {
  width: 100%;
  margin-bottom: 15px;
}
.lp-main .lp-sec .section-inner .flex2 .card h4 {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: normal;
  letter-spacing: 0.1em;
  position: relative;
  color: #474747;
  color: #46AA0C;
  margin-bottom: 10px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex2 .card h4 {
    font-size: 21px;
  }
}
.lp-main .lp-sec .section-inner .flex2 .card h4::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: -5px;
  top: -3px;
  background-color: #D4E4A5;
  z-index: -1;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex2 .card h4::before {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex2 .card h4 {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.lp-main .lp-sec .section-inner .flex2 .card p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
}
.lp-main .lp-sec .section-inner .flex2 .card p span {
  font-size: 1em;
  color: #46AA0C;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex2 .card p {
    font-size: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex2 .card p.p1 {
  max-width: 500px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex2 .card p.p1 {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex2 .card p {
    font-size: 12px;
  }
}
.lp-main .lp-sec .section-inner .flex3 {
  display: flex;
  margin-top: 50px;
  align-items: center;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex3 .img3 {
  width: 50%;
  flex-shrink: 0;
}
.lp-main .lp-sec .section-inner .flex3 .img3 img {
  width: 100%;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .img3 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 {
    flex-direction: column-reverse;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt {
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt::after {
  content: "";
  width: 363px;
  height: 322px;
  position: absolute;
  background-image: url(../../assets/img/lp/happa.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: -100px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt::after {
    display: none;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt h5 {
  color: #46AA0C;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex3 .txt h5 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt h5 {
    white-space: normal;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt .sp-show {
    margin-bottom: 20px;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt .sp-show img {
  width: 100%;
}
.lp-main .lp-sec .section-inner .flex3 .txt p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  margin-bottom: 25px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .flex3 .txt p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt p {
    font-size: 12px;
    max-width: 100%;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #46AA0C;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding-left: 26px;
  padding-right: 7px;
  padding-top: 7px;
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt a {
    display: flex;
    margin: auto;
    width: 200px;
  }
}
.lp-main .lp-sec .section-inner .flex3 .txt a span {
  font-size: 19px;
  color: #46AA0C;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt a span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .flex3 .txt a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.lp-main .lp-sec .section-inner .feature {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature {
    padding-top: 40px;
  }
}
.lp-main .lp-sec .section-inner .feature .ttl-wrap {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature .ttl-wrap {
    padding-left: 20px;
  }
}
.lp-main .lp-sec .section-inner .feature ul {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .lp-sec .section-inner .feature ul li {
  background: rgba(220, 229, 162, 0.58);
  padding: 50px 70px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li {
    padding: 20px;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner {
  background-color: #fff;
  border-radius: 26.144px;
  background: #FFF;
  box-shadow: 0 3.486px 3.486px 0 rgba(0, 0, 0, 0.25);
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner {
    flex-direction: column-reverse;
    padding: 20px;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .txt {
  padding-right: 30px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt {
    padding-right: 0;
    margin-top: 10px;
    padding-top: 0;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .li-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .li-ttl {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .li-ttl {
    white-space: normal;
    font-size: 16px;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .li-ttl span {
  color: #46AA0C;
  font-size: 60px;
  font-weight: bold;
  line-height: 1em;
  margin-right: 18px;
  position: relative;
  top: -3px;
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  padding-left: 70px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .desc {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .desc {
    font-size: 12px;
    padding-left: 0;
    max-width: 100%;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .notice {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  padding-left: 70px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .notice {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .txt .notice {
    font-size: 10px;
    max-width: 100%;
    padding-left: 0;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .img {
  width: 35%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .img {
    width: 100%;
  }
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .img img {
  width: 100%;
}
.lp-main .lp-sec .section-inner .feature ul li .li-inner .img1 {
  width: 40%;
}
@media (max-width: 767px) {
  .lp-main .lp-sec .section-inner .feature ul li .li-inner .img1 {
    width: 100%;
  }
}
.lp-main .sec-2 {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .lp-main .sec-2 {
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.lp-main .sec-4 .inner-inner {
  width: 100%;
  margin: auto;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .lp-main .sec-4 .inner-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .sec-4 .inner-inner p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  margin-bottom: 10px;
  color: #2c2c2c;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-4 .inner-inner p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-4 .inner-inner p {
    font-size: 12px;
    max-width: 100%;
  }
}
.lp-main .sec-4 .inner-inner .img-wrapper {
  margin-bottom: 30px;
}
.lp-main .sec-4 .inner-inner .img-wrapper:last-child {
  margin-bottom: 0;
}
.lp-main .sec-4 .inner-inner .img-wrapper img {
  width: 100%;
}
@media (max-width: 767px) {
  .lp-main .sec-4 .inner-inner .img-wrapper {
    overflow: scroll;
    margin-bottom: 5px;
  }
  .lp-main .sec-4 .inner-inner .img-wrapper img {
    width: 700px;
  }
}
.lp-main .sec-5 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .lp-main .sec-5 {
    padding-bottom: 0;
  }
}
.lp-main .sec-5 .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-5 .section-inner {
    max-width: 1400px;
  }
}
.lp-main .sec-5 .ttl {
  text-align: center;
  color: white;
  background-color: #46AA0C;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-5 .ttl {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-5 .ttl {
    font-size: 16px;
  }
}
.lp-main .single-case-sec {
  padding-bottom: 0px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .single-case-sec::before {
  content: "";
  width: 100%;
  height: calc(100% - 360px);
  top: 360px;
  left: 0;
  background-color: #F8F8F8;
  position: absolute;
  display: none;
}
.lp-main .single-case-sec::after {
  content: "";
  width: 637px;
  height: 430px;
  position: absolute;
  right: 0;
  bottom: 140px;
  background-image: url(../img/case/object.svg);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  display: none;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec::after {
    width: 250px;
  }
}
.lp-main .single-case-sec .section-inner2 {
  max-width: 950px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 {
    max-width: 1400px;
  }
}
.lp-main .single-case-sec .section-inner2 .ttl2 {
  border-bottom: 2px solid #D7D7D7;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .ttl2 {
    margin-bottom: 15px;
  }
}
.lp-main .single-case-sec .section-inner2 .ttl2 h2 {
  font-size: 24px;
  letter-spacing: 0.15em;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: 24px;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .ttl2 h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .ttl2 h2 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.lp-main .single-case-sec .section-inner2 .ttl2 ul {
  display: flex;
  margin-bottom: 40px;
}
.lp-main .single-case-sec .section-inner2 .ttl2 ul li {
  background-color: white;
  border: 1px solid #0B7807;
  border-radius: 99px;
  margin-right: 5px;
  color: #0B7807;
  font-size: 13px;
  padding: 5px 10px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .ttl2 ul {
    margin-bottom: 10px;
  }
  .lp-main .single-case-sec .section-inner2 .ttl2 ul li {
    font-size: 10px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs {
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs {
    padding-bottom: 20px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .swipers {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .swipers {
    flex-direction: column;
    height: auto;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .left {
  width: 100%;
  height: 100%;
}
.lp-main .single-case-sec .section-inner2 .thumbs .left .swiper-slide {
  height: 370px;
  background-color: black;
}
.lp-main .single-case-sec .section-inner2 .thumbs .left .swiper-slide img {
  height: 100%;
  width: auto;
  display: block;
  margin: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .left .swiper-slide {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .left {
    width: 100%;
    height: 240px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .right {
  width: calc(36.7% - 15px);
  display: none;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .right {
    width: 100%;
    margin-top: 10px;
    height: 90px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .right .swiper-wrapper {
  justify-content: space-between;
}
.lp-main .single-case-sec .section-inner2 .thumbs .right .swiper-slide {
  height: calc(33.3333% - 7px);
}
.lp-main .single-case-sec .section-inner2 .thumbs .right .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .right .swiper-slide {
    height: 100%;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination2, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-btn {
  position: static;
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-btn::after {
  display: none;
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller {
    flex-direction: column-reverse;
    padding-top: 10px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller .swiper-btns {
  display: flex;
  margin-right: 10px;
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller .swiper-btns .swiper-btn {
  position: static;
  margin: unset;
  width: auto;
  height: 18px;
  margin-left: 20px;
  margin-right: 20px;
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller .swiper-btns .swiper-btn.swiper-button-disabled {
  opacity: 0.35;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .swiper-controller .swiper-btns {
    margin-right: 0;
    margin-top: 20px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination2 {
  width: auto;
  display: flex;
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination .swiper-pagination-bullet, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination2 .swiper-pagination-bullet {
  margin: unset;
  width: 70px;
  height: 2px;
  transition: all 0.3s;
  border-radius: 0;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination .swiper-pagination-bullet, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination2 .swiper-pagination-bullet {
    width: 30px;
  }
}
.lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination .swiper-pagination-bullet-active, .lp-main .single-case-sec .section-inner2 .thumbs .swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #0B7807;
}
.lp-main .single-case-sec .section-inner2 .content {
  background-color: #fff;
  padding: 50px 60px;
  padding-bottom: 90px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.lp-main .single-case-sec .section-inner2 .content.content2 {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content {
    padding: 30px 0px;
    padding-bottom: 0;
  }
}
.lp-main .single-case-sec .section-inner2 .content .left {
  padding-top: 10px;
  padding-left: 40px;
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .left {
    padding-left: 20px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .left h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}
.lp-main .single-case-sec .section-inner2 .content .left h3::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #61FE5B;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: -1;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .content .left h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .left h3 {
    font-size: 18px;
  }
  .lp-main .single-case-sec .section-inner2 .content .left h3::before {
    width: 20px;
    height: 20px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .flex {
  width: 90%;
  margin: auto;
  max-width: 800px;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .content .flex {
    max-width: 1200px;
  }
}
@media (max-width: 1024px) {
  .lp-main .single-case-sec .section-inner2 .content .flex {
    flex-direction: column;
    width: 100%;
  }
}
.lp-main .single-case-sec .section-inner2 .content .about-flex {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex {
    margin-bottom: 20px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right {
  border-radius: 5px;
  background: #F8F8F8;
  padding: 40px 60px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 47px;
  padding-right: 20px;
  display: flex;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right {
    padding: 20px;
    padding-bottom: 10px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right .left-col {
  width: 40%;
  padding-right: 10px;
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right .right-col {
  width: 60%;
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right .col .wrap {
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right .col .wrap {
    line-height: 2em;
  }
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right .col h6 {
  font-weight: bold;
  color: #0B7807;
  font-size: 16px;
  line-height: 1.75em;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right .col h6 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right .col h6 {
    font-size: 12px;
    line-height: 1.88em;
  }
}
.lp-main .single-case-sec .section-inner2 .content .about-flex .right .col p {
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right .col p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .about-flex .right .col p {
    font-size: 12px;
    line-height: 1.88em;
  }
}
.lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box {
  border: 3px solid #0B7807;
  background: #FFF;
  box-shadow: 5px 5px 0px 0px #0B7807;
  padding: 32px 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box {
    padding: 20px;
    margin-bottom: 10px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl {
    align-items: flex-start;
  }
}
.lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl img {
  margin-right: 15px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl img {
    width: 60px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl h5 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid #D7D7D7;
  width: 100%;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .voice-flex .right .box .voice-ttl h5 {
    font-size: 16px;
    padding-top: 10px;
    line-height: normal;
  }
}
.lp-main .single-case-sec .section-inner2 .content .voice-flex .right p {
  line-height: 1.888em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .voice-flex .right p {
    font-size: 12px;
  }
}
.lp-main .single-case-sec .section-inner2 .content .case-content-wrapper p {
  font-size: 16px;
}
@media screen and (min-width: 1919px) {
  .lp-main .single-case-sec .section-inner2 .content .case-content-wrapper p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .single-case-sec .section-inner2 .content .case-content-wrapper p {
    font-size: 12px;
  }
}
.lp-main .sec-6 {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .lp-main .sec-6 {
    padding-bottom: 40px;
  }
}
.lp-main .sec-6 .section-inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-6 .section-inner {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-6 .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-main .sec-6 .ttl {
  text-align: center;
  color: white;
  background-color: #46AA0C;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-6 .ttl {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-6 .ttl {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.lp-main .sec-6 h2 {
  padding-left: 10px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-6 h2 {
    font-size: 30px;
  }
}
.lp-main .sec-6 h2::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: -10px;
  background-color: #61FE5B;
  z-index: -1;
}
@media (max-width: 767px) {
  .lp-main .sec-6 h2 {
    font-size: 16px;
  }
  .lp-main .sec-6 h2::before {
    width: 20px;
    height: 20px;
    top: -5px;
  }
}
.lp-main .sec-6 .cat-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
}
.lp-main .sec-6 .cat-wrap .all-open-close {
  cursor: pointer;
}
.lp-main .sec-6 .faq-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.lp-main .sec-6 .faq-wrap .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .q {
    align-items: flex-start;
  }
}
.lp-main .sec-6 .faq-wrap .q .left {
  display: flex;
  align-items: flex-start;
}
.lp-main .sec-6 .faq-wrap .q .left .en {
  font-size: 30px;
  line-height: 1.1333em;
  display: inline-block;
  font-weight: 900;
  width: 53px;
  margin-right: 30px;
  border-right: 2px solid #2c2c2c;
  flex-shrink: 0;
}
.lp-main .sec-6 .faq-wrap .q .left p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-6 .faq-wrap .q .left p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .q .left .en {
    font-size: 20px;
    width: 30px;
    margin-right: 10px;
  }
  .lp-main .sec-6 .faq-wrap .q .left p {
    font-size: 12px;
    line-height: 1.4em;
  }
}
.lp-main .sec-6 .faq-wrap .q .right {
  border-radius: 50%;
  background-color: #07E700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: all 0.4s;
}
.lp-main .sec-6 .faq-wrap .q .right img {
  width: 6.5px;
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .q .right img {
    width: 5px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .q .right {
    width: 22px;
    height: 22px;
  }
}
.lp-main .sec-6 .faq-wrap .q.active .right {
  transform: rotate(90deg);
}
.lp-main .sec-6 .faq-wrap .a {
  padding-top: 60px;
  display: none;
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .a {
    padding-top: 20px;
  }
}
.lp-main .sec-6 .faq-wrap .a .a-inner {
  display: flex;
  align-items: flex-start;
}
.lp-main .sec-6 .faq-wrap .a .en {
  font-size: 30px;
  line-height: 1em;
  display: inline-block;
  font-weight: 900;
  width: 53px;
  margin-right: 30px;
  border-right: 2px solid #2c2c2c;
  color: #07E700;
  flex-shrink: 0;
}
.lp-main .sec-6 .faq-wrap .a p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-top: -5px;
}
@media screen and (min-width: 1919px) {
  .lp-main .sec-6 .faq-wrap .a p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .sec-6 .faq-wrap .a .en {
    font-size: 20px;
    width: 30px;
    margin-right: 10px;
  }
  .lp-main .sec-6 .faq-wrap .a p {
    font-size: 12px;
    line-height: 1.4em;
    padding-top: 5px;
  }
}
.lp-main .lp-cta {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background: #E6ECC5;
}
@media (max-width: 767px) {
  .lp-main .lp-cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.lp-main .lp-cta p {
  text-align: center;
}
.lp-main .lp-cta p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
  line-height: 2.06em;
  margin-bottom: 25px;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-cta p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-cta p {
    font-size: 12px;
    max-width: 100%;
  }
}
.lp-main .lp-cta .btn-wrapper {
  display: flex;
  justify-content: center;
}
.lp-main .lp-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #46AA0C;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding-left: 26px;
  padding-right: 7px;
  padding-top: 7px;
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .lp-main .lp-cta a {
    display: flex;
    margin: auto;
    width: 200px;
  }
}
.lp-main .lp-cta a span {
  font-size: 19px;
  color: #46AA0C;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lp-main .lp-cta a span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-cta a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.lp-main .liner {
  height: 2px;
  width: 100%;
  background-color: #d7d7d7;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .lp-main .liner {
    margin-bottom: 20px;
  }
}
.lp-main .lp-fv2 {
  padding-left: 20px;
  padding-right: 20px;
}
.lp-main .lp-fv2 .section-inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-fv2 .section-inner {
    max-width: 1400px;
  }
}
.lp-main .lp-fv2 .section-inner img {
  width: 100%;
}
.lp-main .lp-fv2 .section-inner h1 {
  position: absolute;
  color: #46AA0C;
  font-weight: 700;
  font-size: 30px;
  white-space: nowrap;
  line-height: normal;
  top: 50px;
  left: 14px;
}
.lp-main .lp-fv2 .section-inner h1 span {
  color: inherit;
  font-size: 0.825em;
}
.lp-main .lp-fv2 .section-inner h1 .span2 {
  font-size: 1.025em;
}
@media screen and (min-width: 1919px) {
  .lp-main .lp-fv2 .section-inner h1 {
    top: 70px;
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .lp-main .lp-fv2 .section-inner h1 {
    font-size: 4.2666666667vw;
    top: 10.6666666667vw;
    left: 0vw;
  }
  .lp-main .lp-fv2 .section-inner h1 .span2 {
    font-size: 1.2em;
  }
}

/*# sourceMappingURL=style.css.map */
