@charset "UTF-8";
@charset "UTF-8";
@charset "UTF-8";

 :root { --color-primary: #266c40; --color-secondary: #fffcc8; --color-accent: #ff8521; --color-highlight: #fff100; --color-text: #333; --color-white: #fff;
--color-purple: #5f256f;
--color-brown: #603B1B;
--color-red: #e84d4b;
--color-gold: #989121;
--color-yellow: #fff100;
--color-bark: #B67E7F;
--color-blend: #CA9D7B;
--color-cattle: #777481;
--color-pig: #E58B9E;
--color-chicken: #D3424C;
--color-footer: #266c40; --font-gothic: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
--font-mincho: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "MS PMincho", serif;
--font-base:"Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
--font-xs: 0.666em;
--font-s: 0.777em;
--font-m: 1.333em;
--font-l: 2.222em;
--font-xl: 3.333em;
} html {
font-size: 62.5%;
}
body {
font-family: var(--font-base);
font-size: 1.8rem;
line-height: 1.65;
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
word-break: break-all;
line-break: strict;
word-wrap: break-word;
overflow-wrap: break-word;
}
@media (768px <= width <= 1199px) {
body {
overflow-x: hidden;
}
}
@media (width < 768px) {
body {
font-size: 1.6rem;
line-height: 1.4;
}
}
a, a img {
transition: all .3s;
} @media (hover: hover) and (pointer: fine) { a:hover,
.pagetop a:hover {
opacity: 0.7;
}
} @media (hover: none) or (pointer: coarse) {
a:hover,
.pagetop a:hover {
opacity: 1;
}
}
img {
display: block;
}
h1, h2, h3 {
letter-spacing: -0.05em;
line-height: 1.4;
}
h2 {
margin: 0;
padding: 0;
text-align: center;
}
h3 {
margin: 0;
padding: 0;
}
.cl-gold {
color: var(--color-gold);
}
.cl-yellow {
color: var(--color-yellow);
} .delay-time02 { animation-delay: 0.2s; }
.delay-time04 { animation-delay: 0.4s; }
.delay-time06 { animation-delay: 0.6s; }
.delay-time08 { animation-delay: 0.8s; } .fadeIn { animation-name: fadeInAnime; animation-duration: 1s; animation-fill-mode: forwards; opacity: 0; }
.fadeUp { animation-name: fadeUpAnime; animation-duration: 1s; animation-fill-mode: forwards; opacity: 0; }
.fadeDown { animation-name: fadeDownAnime; animation-duration: 1s; animation-fill-mode: forwards; opacity: 0; }
.fadeLeft { animation-name: fadeLeftAnime; animation-duration: 1s; animation-fill-mode: forwards; opacity: 0; }
.fadeRight { animation-name: fadeRightAnime; animation-duration: 1s; animation-fill-mode: forwards; opacity: 0; }
.flipLeft { animation-name: flipLeftAnime; animation-duration: 1s; animation-fill-mode: forwards; perspective-origin: left center; opacity: 0; }
.flipLeftTop { animation-name: flipLeftTopAnime; animation-duration: 1.5s; animation-fill-mode: forwards; opacity: 0; }
.blur { animation-name: blurAnime; animation-duration: 1s; animation-fill-mode: forwards; }
.zoomIn { animation-name: zoomInAnime; animation-duration: 1s; animation-fill-mode: forwards; } @keyframes fadeInAnime {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeUpAnime {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDownAnime {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeftAnime {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRightAnime {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes flipLeftAnime {
from { transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg); opacity: 0; }
to { transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg); opacity: 1; }
}
@keyframes flipLeftTopAnime {
from { transform: translate(-20px, 80px) rotate(-15deg); opacity: 0; }
to { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}
@keyframes blurAnime {
from { filter: blur(10px); transform: scale(1.02); opacity: 0; }
to { filter: blur(0); transform: scale(1); opacity: 1; }
}
@keyframes zoomInAnime {
from { transform: scale(0.9); opacity: 0; }
to { transform: scale(1); opacity: 1; }
} .fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.flipLeftTopTrigger,
.flipLeftTrigger,
.blurTrigger,
.zoomInTrigger {
opacity: 0;
}
.floating {
animation: floatingAnime 3s linear infinite;
transform-origin: center;
}
@keyframes floatingAnime {
25% { transform: translateY(-8px); }
75% { transform: translateY(8px); }
} .m0a { margin: 0 auto; }
.posr { position: relative; }
.imgr { display: block; max-width: 100%; height: auto; } .fwb { font-weight: bold !important; }
.underline { text-decoration: underline; }
.font-xs { font-size: var(--font-xs); }
.font-s { font-size: var(--font-s); }
.font-m { font-size: var(--font-m); }
.font-l { font-size: var(--font-l); }
.font-xl { font-size: var(--font-xl); }
.ta-c { text-align: center !important; }
.ta-l { text-align: left !important; }
.ta-r { text-align: right !important; }
.font-min { font-family: "Yu Mincho", YuMincho, "MS Mincho", serif; }
.font-go { font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "YuGothic M", sans-serif; }
.indent { text-indent: -1em; padding-left: 1em; }
.shadow { text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff; } .note {
position: relative;
font-size: 0.777em;
padding-left: 1em;
}
.note:before {
position: absolute;
content: "※";
top: 0;
left: 0;
font-size: 1em;
line-height: 1.554em;
} .mt-0{margin-top: 0;} .mt-5{margin-top: 5px;} .mt-10{margin-top: 10px;} .mt-15{margin-top: 15px;}
.mt-20{margin-top: 20px;} .mt-30{margin-top: 30px;} .mt-45{margin-top: 45px;} .mt-60{margin-top: 60px;}
.mt-75{margin-top: 75px;} .mt-90{margin-top: 90px;} .mt-120{margin-top: 120px;}
.mb-0{margin-bottom: 0;} .mb-5{margin-bottom: 5px;} .mb-10{margin-bottom: 10px;} .mb-15{margin-bottom: 15px;}
.mb-20{margin-bottom: 20px;} .mb-30{margin-bottom: 30px;} .mb-45{margin-bottom: 45px;} .mb-60{margin-bottom: 60px;}
.mb-75{margin-bottom: 75px;} .mb-90{margin-bottom: 90px;} .mb-120{margin-bottom: 120px;}
.pt-0{padding-top: 0;} .pt-5{padding-top: 5px;} .pt-10{padding-top: 10px;} .pt-15{padding-top: 15px;}
.pt-20{padding-top: 20px;} .pt-30{padding-top: 30px;} .pt-45{padding-top: 45px;} .pt-60{padding-top: 60px;}
.pt-75{padding-top: 75px;} .pt-90{padding-top: 90px;} .pt-120{padding-top: 120px;}
.pb-0{padding-bottom: 0;} .pb-5{padding-bottom: 5px;} .pb-10{padding-bottom: 10px;} .pb-15{padding-bottom: 15px;}
.pb-20{padding-bottom: 20px;} .pb-30{padding-bottom: 30px;} .pb-45{padding-bottom: 45px;} .pb-60{padding-bottom: 60px;}
.pb-75{padding-bottom: 75px;} .pb-90{padding-bottom: 90px;} .pb-120{padding-bottom: 120px;}
.pl-0{padding-left: 0;} .pl-15{padding-left: 15px;} .pr-0{padding-right: 0;} .pr-15{padding-right: 15px;}
.ph-0{padding-left: 0; padding-right: 0;} .ph-15{padding-left: 15px; padding-right: 15px;}
@media (width < 768px) {
.spmt-0{margin-top: 0;} .spmt-5{margin-top: 5px;} .spmt-10{margin-top: 10px;}
.spmt-15{margin-top: 15px;} .spmt-20{margin-top: 20px;} .spmt-30{margin-top: 30px;}
.spmt-45{margin-top: 45px;} .spmt-60{margin-top: 60px;}
.spmb-0{margin-bottom: 0;} .spmb-5{margin-bottom: 5px;} .spmb-10{margin-bottom: 10px;}
.spmb-15{margin-bottom: 15px;} .spmb-20{margin-bottom: 20px;} .spmb-30{margin-bottom: 30px;}
.spmb-45{margin-bottom: 45px;} .spmb-60{margin-bottom: 60px;}
.sppt-0{padding-top: 0;} .sppt-5{padding-top: 5px;} .sppt-10{padding-top: 10px;}
.sppt-15{padding-top: 15px;} .sppt-20{padding-top: 20px;} .sppt-30{padding-top: 30px;}
.sppt-45{padding-top: 45px;} .sppt-60{padding-top: 60px;}
.sppb-0{padding-bottom: 0;} .sppb-5{padding-bottom: 5px;} .sppb-10{padding-bottom: 10px;}
.sppb-15{padding-bottom: 15px;} .sppb-20{padding-bottom: 20px;} .sppb-30{padding-bottom: 30px;}
.sppb-45{padding-bottom: 45px;} .sppb-60{padding-bottom: 60px;}
.sppl-0 { padding-left: 0; }
.sppr-0 { padding-right: 0; }
.spph-0 { padding-left: 0; padding-right: 0; }
}  @media (width >= 1200px) {
.container {
width: 1200px;
margin: 0 auto;
position: relative;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
}
.p-none { display: none; }
.pt-none { display: none; }
.ps-none { display: none; }
.t-none { display: block; }
.ts-none { display: block; }
.s-none { display: block; }
}
@media (768px <= width <= 1199px) { .container {
width: 100%;
margin: 0 auto;
position: relative;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
} .p-none { display: block; }
.pt-none { display: none; }
.ps-none { display: block; }
.t-none { display: none; }
.ts-none { display: none; }
.s-none { display: block; }
}
@media (width < 768px) { .container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;
} .p-none { display: block; }
.pt-none { display: block; }
.ps-none { display: none; }
.t-none { display: block; }
.ts-none { display: none; }
.s-none { display: none; }
}  .btn {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
display: block;
background: #25ad38;
margin: 0 auto;
border: 3px solid #25ad38;
border-radius: 5px;
color: #fff;
font-weight: bold;
font-size: 190%;
padding: 10px 0;
transition: all 0.2s ease;
cursor: pointer;
box-shadow: 0px 4px 0px #197827;
text-align: center;
position: relative;
width: 100%;
}
.btn:hover {
background: #45ba55;
border-color: #45ba55;
box-shadow: 0px 4px 0px #236251;
} .pagetop {
position: fixed;
bottom: 15px;
right: 15px;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-out;
}
.pagetop a {
position: relative;
display: block;
width: 50px;
height: 50px;
background-color: var(--color-accent);
border-radius: 50%;
opacity: 1;
}
.pagetop a:before {
position: absolute;
content: "";
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 12px solid #fff;
top: 50%;
right: 50%;
transform: translateX(50%) translateY(-60%);
} .btm-fix {
position: fixed;
left: 0;
bottom: 0;
background: rgba(0,0,0,.8);
width: 100%;
padding: 5px 0;
z-index: 998;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-out;
}
.btm-fix a {
width: 50%;
min-width: 400px;
}  .flex-grid {
--grid-gap: 30px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: stretch;
gap: var(--grid-gap);
width: 100%;
}
.flex-grid > * {
flex: 0 0 auto;
box-sizing: border-box;
word-break: break-all;
}
.flex-grid.col-2 > * { width: calc(50% - var(--grid-gap) / 2); }
.flex-grid.col-3 > * { width: calc((100% - var(--grid-gap) * 2) / 3); }
.flex-grid.col-4 > * { width: calc((100% - var(--grid-gap) * 3) / 4); }
@media (768px <= width <= 1199px) {
.flex-grid.col-4 > * { width: calc((100% - var(--grid-gap)) / 2); }
}
@media (width < 768px) {
.flex-grid.col-2 > *,
.flex-grid.col-3 > *,
.flex-grid.col-4 > * { width: 100%; }
} .white-box {
padding: 50px;
background-color: #fff;
margin-bottom: 30px;
}
.white-box:last-of-type {
margin-bottom: 0;
}
@media (768px <= width <= 1199px) {
.white-box {
padding: 30px;
margin-bottom: 15px;
}
}
@media (width < 768px) {
.white-box {
padding: 15px;
margin-bottom: 15px;
}
} .check-list li {
position: relative;
padding-left: 1em;
margin-bottom: 3px;
}
.check-list li:before {
position: absolute;
content: "\f14a";
font-family: "Font Awesome 6 Free";
font-weight: normal;
top: 0;
left: 0;
color: var(--color-purple);
}
.list-border {
border-bottom: 1px dotted var(--color-purple);
}
.list-border-stop {
border-bottom: 2px dotted var(--color-purple);
display: inline-block;
}
 :root { --font-base: 'Noto Sans JP', 'Noto Sans', sans-serif;
--font-special: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', YuMincho, 'MS PMincho', serif;
} section {
padding: 75px 0;
}
footer {
padding: 40px 0;
} body {
background-color: var(--color-white);
font-family: var(--font-base);
position: relative;
}
.text-highlight {
color: var(--color-highlight);
}
.text-highlight-purple {
color: var(--color-purple);
font-family: var(--font-special);
font-size: 1.2em;
}
.text-highlight-green {
color: var(--color-primary);
}
.text-highlight-red {
color: var(--color-red);
}  .sb-head {
display: inline-block;
padding: 10px 40px 10px 40px;
font-size: 2.4rem;
border-radius: 50px;
position: relative;
color: #fff;
font-weight: 500;
background: var(--color-primary);
margin-bottom: 15px;
}
.sb-head::after {
position: absolute;
content: "";
display: block;
top: 100%;
left: 50%;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: var(--color-primary);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.main-head {
display: block;
font-size: 3.2rem;
font-weight: 500;
color: var(--color-text);
text-align: center;
margin-bottom: 30px;
} .btn-cta {
background-color: var(--color-accent);
border-color: var(--color-accent);
box-shadow: 0px 4px 0px #c96615;
font-size: 2.4rem;
padding: 15px 30px;
border-radius: 20px;
display: inline-block;
width: 100%;
max-width: 400px;
}
.btn-cta:hover {
background-color: #ff9d47;
border-color: #ff9d47;
box-shadow: 0px 4px 0px #c96615;
opacity: 1; }
.cta-button-area {
text-align: center;
}
.cta-note {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
font-size: 2.4rem;
font-weight: bold;
color: var(--color-text);
text-shadow: 0 0 5px var(--color-white);
}
.cta-note img {
width: 30px;
height: 30px;
}
.cta-cl-brown {
color: var(--color-brown);
}
.btn-icon {
width: 30px;
height: 30px;
vertical-align: middle;
margin-right: 15px;
display: inline-block;
} .main-bg {
position: fixed;
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/bg.webp) center center/cover no-repeat;
top: 0;
left: 0;
z-index: -1;
width: 100vw;
height: 100%;
} .mv {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/mv-bg.webp) center center/cover no-repeat;
color: var(--color-white);
clip-path: ellipse(90% 100% at 50% 0%);
}
.mv-head {
padding-bottom: 60px;
}
.logo-container {
max-width: 450px;
margin: 0 auto 30px;
padding: 5px;
background-color: rgba(255,255,255,0.5);
border-radius: 10px;
} .sec01 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sec01-bg.webp) center center/cover no-repeat;
margin-top: -175px;
}
.sec01-txt {
color: #fff;
max-width: 800px;
margin: 0 auto;
padding: 200px 0 300px;
} .sec02 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sec02-bg.webp) center center/cover no-repeat;
}
.sec02 .concerns-header .sb-head {
background: var(--color-purple);
}
.sec02 .concerns-header .sb-head::after {
border-top-color: var(--color-purple);
}
.sec02-img {
width: 150px;
}
.concerns-header {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
}
.check-list {
background-color: #ded4e0;
padding: 45px;
border-radius: 8px;
}
.check-list li {
font-size: 2rem;
font-weight: 500;
padding: 10px 0 10px 2em;
position: relative;
}
.check-list li::before {
font-size: 1.5em;
}
.arrow-down {
width: 100%;
max-width: 300px;
height: 75px;
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/arrow.svg) center center/contain no-repeat;
margin: 30px auto;
}
.solution-box {
background-color: var(--color-secondary);
border-radius: 10px;
padding: 40px;
max-width: 1000px;
margin: 0 auto;
}
.solution-lead {
background-color: var(--color-primary);
color: var(--color-white);
padding: 10px 30px;
border-radius: 30px;
display: inline-block;
font-size: 2.4rem;
font-weight: 500;
margin-bottom: -45px;
position: relative;
left: 50%;
transform: translateX(-50%);
z-index: 1;
}
.solution-body {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}
.solution-logo {
width: 45%;
}
.solution-text {
font-size: 5rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
} .sec03 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sec03-bg.webp) center center/cover no-repeat;
clip-path: ellipse(90% 100% at 50% 0%);
}
.sec03 .sb-head {
background: #fff;
color: var(--color-text);
}
.sec03 .sb-head::after {
border-top-color: #fff;
}
.sec03 .main-head {
color: #fff;
}
.card {
background-color: var(--color-secondary);
border-radius: 8px;
padding: 30px;
text-align: center;
}
.card-title {
color: var(--color-primary);
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 20px;
}
.card-text {
text-align: left;
font-size: 1.6rem;
margin-top: 20px;
} .sec04 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sec04-bg.webp) center center/cover no-repeat;
}
.sec04 .sb-head {
background: var(--color-accent);
margin-bottom: 45px;
}
.sec04 .sb-head::after {
border-top-color: var(--color-accent);
}
.sec04-ttl {
display: flex;
align-items: flex-end;
}
.title-logo {
width: 100%;
max-width: 200px;
height: auto;
}
.feature-card {
position: relative;
text-align: center;
}
.feature-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--color-white);
font-size: 3.6rem;
font-weight: 500;
line-height: 1.4;
width: 100%;
}
.feature-title .number {
font-size: 1.5em;
font-family: 'DIN Condensed', sans-serif;
color: var(--color-highlight);
} .sec05 .sb-head {
background: var(--color-highlight);
color: var(--color-text);
}
.sec05 .sb-head::after {
border-top-color: var(--color-highlight);
}
.product-card {
background-color: var(--color-secondary);
border-radius: 8px;
padding: 30px;
}
.product-title {
font-size: 3.2rem;
font-weight: 700;
text-align: center;
margin-bottom: 20px;
}
.product-title.-flower {
color: var(--color-red);
}
.product-title.-vegetable {
color: var(--color-primary);
}
.product-title.-bark {
color: var(--color-bark);
}
.product-title.-blend {
color: var(--color-blend);
}
.product-title.-cattle {
color: var(--color-cattle);
}
.product-title.-pig {
color: var(--color-pig);
}
.product-title.-chicken {
color: var(--color-chicken);
}
.product-text {
font-size: 1.7rem;
line-height: 1.8;
margin-top: 20px;
}
.benefits-summary {
text-align: center;
margin-top: 60px;
}
.benefits-text {
font-size: 4.8rem;
font-weight: 700;
line-height: 1.6;
} .sec06 {
padding: 0 0 75px;
}
.testimonial-list {
display: flex;
flex-direction: column;
gap: 30px;
}
.testimonial-item {
display: flex;
gap: 30px;
background-color: #e5f1e9;
border-radius: 8px;
padding: 30px;
}
.testimonial-img {
flex: 0 0 45%;
}
.testimonial-body {
flex: 1;
}
.farm-name {
font-size: 2.4rem;
font-weight: 500;
margin-bottom: 20px;
background: var(--color-highlight);
padding: 10px 20px;
border-radius: 8px;
color: var(--color-text);
}
.result-text {
font-size: 2.6rem;
font-weight: 500;
line-height: 1.4;
margin-bottom: 20px;
display: block;
}
.testimonial-desc {
font-size: 1.6rem;
} .sec07 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sec07-bg.webp) center center/cover no-repeat;
clip-path: ellipse(90% 100% at 50% 0%);
}
.appeal-text {
color: var(--color-white);
font-size: 2.4rem;
font-weight: 500;
line-height: 1.8;
text-align: center;
max-width: 800px;
margin: 0 auto;
} footer { color: var(--color-white);
font-size: 1.6rem;
background-color: var(--color-footer);
text-align: center;
}

@media (min-width: 768px) and (max-width: 1199px) {  section { padding: 60px 0; }
footer { padding: 15px 0; } .mv {
clip-path: ellipse(140% 100% at 50% 0%);
} .sec03 {
clip-path: ellipse(140% 100% at 50% 0%);
}
.card {
padding: 15px;
} .feature-title {
font-size: 2.4rem;
}
}@media screen and (max-width: 767px) { section {
padding: 40px 0;
}
.mv {
padding: 40px 0;
}
.cta, .cta2 {
padding: 30px 0;
}
footer {
padding: 30px 0 40px;
}  .sb-head {
display: inline-block;
padding: 10px 40px 10px 40px;
font-size: 1.8rem;
border-radius: 50px;
position: relative;
color: #fff;
font-weight: 500;
background: var(--color-primary);
margin-bottom: 15px;
}
.main-head {
display: block;
font-size: 2.4rem;
font-weight: 500;
color: var(--color-text);
text-align: center;
margin-bottom: 30px;
}
.btn-cta {
font-size: 1.8rem;
padding: 15px 0;
}
.cta-note {
font-size: 1.8rem;
} .mv {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sp-mv-bg.webp) center center/cover no-repeat;
clip-path: ellipse(140% 100% at 50% 0%);
} .sec01 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sp-sec01-bg.webp) center center/cover no-repeat;
margin-top: -175px;
} .concerns-header img {
width: 80px;
}
.check-list {
background-color: #ded4e0;
padding: 15px;
border-radius: 8px;
}
.solution-box {
padding: 15px;
}
.solution-lead {
margin-bottom: -25px;
font-size: 1.8rem;
}
.sec02 .flex-grid {
--grid-gap: 15px;
}
.solution-body {
flex-direction: column;
gap: 15px;
}
.solution-logo {
width: 80%;
}
.solution-text {
font-size: 3rem;
} .sec03 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sp-sec03-bg.webp) center center/cover no-repeat;
clip-path: ellipse(240% 100% at 50% 0%);
}
.card {
padding: 20px;
}
.card-title {
font-size: 2rem;
} .sec04 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sp-sec04-bg.webp) center center/cover no-repeat;
}
.sec04-ttl {
font-size: 1.8rem;
}
.title-logo {
max-width: 130px;
}
.feature-card {
margin-bottom: 20px;
}
.feature-card:last-child {
margin-bottom: 0;
}
.feature-title {
font-size: 3rem;
} .product-title {
font-size: 2rem;
}
.benefits-text {
font-size: 2.4rem;
}
.product-card {
padding: 15px;
}
.benefits-text {
font-size: 3.6rem;
} .testimonial-item {
flex-direction: column;
padding: 20px;
}
.testimonial-img {
flex: 0 0 auto;
width: 100%;
}
.farm-name {
font-size: 2.2rem;
}
.result-text {
font-size: 2.4rem;
} .sec07 {
background: url(//ecolo.life/wp-content/themes/ys-theme6-child-hamburger/lp/img/sp-sec07-bg.webp) center center/cover no-repeat;
clip-path: ellipse(240% 100% at 50% 0%);
}
.appeal-text {
font-size: 2rem;
}
}