@charset "utf-8";
.grecaptcha-badge { visibility: hidden; }
.recap {display: block!important; margin-top: 15px;}
/* ---- カラー */
:root {
    --color-00: #272727;
    --color-01: #091F38;
    --color-02: #05A6E2;
    --color-03: #F8217B;
    --color-04: #FFEA7B;
    --color-05: #F1FAFF;
    --color-06: #D4F8FF; 
    --color-07: #E9E9E9;
    --color-08: #E9E9E9;
    --color-09: #0A7FC1;
    --color-15: #f3f3f3;
    --color-16: #f3edfb;    
    --color-white: #fff;
    --color-black: #000;
}
.color-00 { color: var(--color-00); }
.color-01 { color: var(--color-01); }
.color-02 { color: var(--color-02); }
.color-03 { color: var(--color-03); }
.color-04 { color: var(--color-04); }
.color-05 { color: var(--color-05); }
.color-11 { color: #616161; }
.color-12 { color: #0053b2; }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.bg-color-00 { background-color: var(--color-00); }
.bg-color-01 { background-color: var(--color-01); }
.bg-color-02 { background-color: var(--color-02); }
.bg-color-03 { background-color: var(--color-03); }
.bg-color-04 { background-color: var(--color-04); }
.bg-color-05 { background-color: var(--color-05); }
.bg-color-06 { background-color: var(--color-06); }
.bg-color-07 { background-color: var(--color-07); }
.bg-color-08 { background-color: var(--color-08); }
.bg-color-09 { background-color: var(--color-09); }
.bg-color-15 { background-color: var(--color-15); }
.bg-color-16 { background-color: var(--color-16); }
.bg-color-white { background-color: var(--color-white); }
.bg-color-black { background-color: var(--color-black); }
.bg-gradation-01 {
    background: rgb(147,57,237);
    background: linear-gradient(270deg, rgba(147,57,237,1) 0%, rgba(248,33,123,1) 100%);
}
.bg-gradation-02 {
    background: rgb(5,166,226);
    background: linear-gradient(270deg, rgba(5,166,226,1) 0%, rgba(0,100,143,1) 100%);
}
.bg-gradation-03 {
  background: rgb(5,166,226);
  background: linear-gradient(180deg, rgba(5,166,226,1) 0%, rgba(0,100,143,1) 100%);
}
.bg-gradation-04 {
  background-image: linear-gradient(90deg, rgba(255, 60, 118, 1), rgba(254, 164, 31, 1));
}
/* ---- フォント */
body {
    line-height: 1;
    font-size: 16px;
    font-family: 'Noto Sans JP',
    sans-serif,"Yu Gothic",
    "游ゴシック", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
.bold { font-weight: bold; }
a {
    transition-duration: var(--duraiton-050);
    text-decoration: none;
}
.block {
  display: block;
}
.underline { text-decoration: underline; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.fs-01 { font-size: 1rem; }
.fs-02 { font-size: 1.1rem; }
.fs-03 { font-size: 1.2rem; }
.fs-04 { font-size: 1.4rem; }
.fs-05 { font-size: 1.5rem; }
.lh-01 { line-height: 1.75; }
.lh-02 { line-height: 1.5; }
/* ---- ラップ(主に固定投稿ページ用) */
:root {
    --px-1200: 1200px;
    --px-1000: 1000px;
    --per-100: 100%;
    --px-600: 600px;
}
.body-wrap { 
    width: 100%;
    max-width: var(--width-01);
    margin: 0 auto;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }
.direction-column { flex-direction: column; }
.direction-reserve { flex-direction: column-reverse; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.wid-100 { width: 100%; }
.box-2-column { width: 50%; }
.box-3-column { width: calc(100% / 3); }
.box-4-column { width: 25%; }
/* ---- マージンパッディング量(主に固定投稿ページ用) */
.mt-100-50 { margin-top: 100px; }
.mt-70-50 { margin-top: 70px; }
.mt-50-30 { margin-top: 50px; }
.mt-40-20 { margin-top: 40px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.ml-mr-10-10 { margin-left: 10px; margin-right: 10px; }
.mt-0-50 { margin-top: 0; }
.ml-30-0 { margin-left: 30px; }
.mt-0-30 { margin-top: 0; }
.ma-0a { margin: 0 auto; }
.pa-20-10 { padding: 20px; }
.pb-20-10 { padding-bottom: 20px; }
.pb-100-50 { padding-bottom: 100px; }
.pb-50-30 { padding-bottom: 50px; }
.pc-pa-30 { padding: 30px; }

/* ---- その他初期設定 */
* { box-sizing: border-box; }
img { max-width: 100%; }
:root {
    --duration-025: .25s;
    --duraiton-050: .5s;
    --duraiton-075: .75s;
    --duraiton-100: 1s;
    --duraiton-150: 1.5s;
    --duraiton-200: 2s;
}
a:hover {
    transition-duration: var(--duration-025);
    opacity: .5;
}
.sp-block { display: none; }
.pc-block { display: block; }
.wpcf7 p {
  display: inline;
}
/* ---- タイトル見出し */
.title-01 {
  font-size: 32px;
  position: relative;
  display: inline-block;
}
.title-01::before {
  content: "";
  position: absolute;
  left: -27px;
  bottom: -6px;
  background-image: url(../img/icon-ecoco.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 43px;
}
.title-04 {
  font-size: 32px;
  position: relative;
  display: inline-block;
}
.title-04::before {
  content: "";
  position: absolute;
  left: -27px;
  bottom: -6px;
  background-image: url(../img/icon-ecoco-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 43px;
}
.title-05 {
  font-size: 20px;
}
.title-06 {
  color: var(--color-white);
  padding: 5px;
  width: 100%;
  margin: 0 auto;
  font-weight: bold;
  background-color: var(--color-01);
}
/* ---- 全ページ共通パーツ */
.to-top {  }
.btn-wrap {
  display: flex;
  justify-content: center;
}
.header-inner .btn-wrap {
  flex-direction: column;
}
.header-inner .btn-wrap a + a {
  margin-top: 5px;
}
.btn-01 {
  display: flex;
  padding-left: 20px;
  align-items: center;
  position: relative;
  height: 36px;
  width: 215px;
  border-radius: 18px;
  overflow: hidden;
}
.btn-01::before {
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.btn-01 img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 4px;
  width: 28px;
}
.btn-02 {
  display: flex;
  padding-left: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 20px;
  height: 60px;
  width: 440px;
  border-radius: 30px;
  overflow: hidden;
}
.btn-02::before {
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.btn-02 img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 6px;
  width: 46px;
}
.btn-03 {
  display: flex;
  padding-left: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 20px;
  height: 60px;
  width: 440px;
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid var(--color-03);
}

.btn-03 img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 6px;
  width: 46px;
}
.btn-04 {
  display: flex;
  align-items: center;
  position: relative;
  height: 36px;
  width: 215px;
  border-radius: 18px;
  overflow: hidden;
  justify-content: center;
}
.btn-04::before {
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.btn-04 img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 4px;
  width: 28px;
}
@keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/* ---- inviewパーツ */
.ef-up { transform: translateY(80px); opacity: 0; transition-duration: var(--duraiton-150); }
.is-show-up { opacity: 1; transform: translateY(0px); transition-duration: var(--duraiton-150); }
.ef-right { transform: translateX(80px); opacity: 0; transition-duration: var(--duraiton-150); }
.ef-left { transform: translateX(-80px); opacity: 0; transition-duration: var(--duraiton-150); }
.is-show-right { opacity: 1; transform: translateX(0px); transition-duration: var(--duraiton-150); }
.is-show-left { opacity: 1; transform: translateX(0px); transition-duration: var(--duraiton-150); }
/* ---- ボタン */
.btn-01 {}
/* ---- header */
header {
  width: 100%;
  position: fixed;
  z-index: 10;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner .logo img {
  max-width: 160px;
}
.header-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-nav li + li {
  margin-left: 30px;
}
.header-nav a {
  color: var(--color-white);
  font-weight: bold;
}
#overlay-input {
  display: none;
}
/* ---- フロントページ front */
.page.container {
  padding-top: 80px;
}
.front.container,
.page.container {
  /* min-height: 100vh; */
}
.front main {  }
.front .about { }
main {
  position: relative;
  width: 100%;
  /* height: 65.48vw; */
  /* aspect-ratio: 16 / 9; */
  background-image: url(../img/fv-pc-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 50px;
}
.main-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}
.fv-content-01 {
  padding: 0 20px;
}
.fv-content-01 p {
  font-size: 36px;
  line-height: 1.5;
}
.fv-content-01 .logo {
  max-width: 480px;
}

.fv-content-01 .color-00.bold {
  margin-top: 20px;
}
.sales-catch {
  max-width: 480px;
  margin-top: 30px;
  max-width: 480px;
  width: 100%;
}

main .item-img {
  position: absolute;
  top: 100px;
  right: 50px;
  max-width: 500px;
  width: 45vw;
}

.sponsorship-wrap {
  margin: 100px auto;
}
.splide-wrap {
  padding: 50px 0;
}
.splide-wrap .splide img {
  height: 70px;

}

.cta-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 100px auto 0;  /* 51vw */
  background-color: var(--color-white);
  padding: 15px 0;
  max-width: 1000px;
  width: calc(100% - 40px);
  text-align: center;
}
.cta-wrap p {
  line-height: 1.6;
}
.cta-wrap a {
  margin-top: 10px;
}
.highlight-01 {
  color: #05A6E2;
  font-size: 24px;
  font-weight: bold;
}
.underline-01 {
  position: relative;
}
.underline-01::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--color-04);
}
#media-post ul {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#media-post ul li {
  width: 50%;
}
#media-post ul li img {
  max-width: 80%;
}
#media-post h3 {
  font-size: 1.2rem;
  margin-top: 10px;
}
#media-post ul li p {
  margin-top: 10px;
  line-height: 1.5;
}
.sec-01 .column-wrap-01 {
  max-width: var(--px-1200);
  margin: 100px auto 0;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-01 .column-wrap-01 .item {
  position: relative;
  width: 100%;
  max-width: 330px;
  min-height: 380px;
  padding: 10px;
}
.sec-01 .column-wrap-01 .item img {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -50px;
  max-width: 180px;
  width: 16vw;
}
.sec-01 .column-wrap-01 .item dl {
  margin-top: 130px;
}
.sec-01 .column-wrap-01 .item dt {
  font-size: 40px;
  line-height: 1.2;
}
.sec-01 .column-wrap-01 .item dt span {
  font-size: 30px;
}
.sec-01 .column-wrap-01 .item dd {
  line-height: 1.75;
  margin-top: 20px;
}
.sec-01 .column-wrap-01 .item dd a {
  text-decoration: underline;
  color: var(--color-02);
}

.sec-02 .column-wrap-01 {
  max-width: var(--px-1200);
  margin: 100px auto 0;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.sec-02 .column-wrap-01 .item {
  text-align: center;
  max-width: 270px;
}
.sec-02 .column-wrap-01 .item img {
  min-height: 145px;
}
.sec-02 .column-wrap-01 .item img.size-01 {
  width: auto;
  max-height: 145px;
}
.sec-02 .column-wrap-01 .item dl {
  color: var(--color-01);
  font-weight: bold;
}
.sec-02 .column-wrap-01 .item dt {
  font-size: 32px;
  color: #fff;
  padding: 3px 5px;
  background-color: var(--color-01);
  margin-top: 10px;
  line-height: 1.3;
}
.sec-02 .column-wrap-01 .item dd {
  line-height: 1.75;
  margin-top: 15px;
}
.sec-02 .column-wrap-02 {
  display: flex;
}
.sec-02 .column-wrap-02 .box-2-column {
  padding: 20px;
}
.column-wrap-02 h4.ire-01 {
  margin: 50px 0 40px;
}
.sec-02 .column-wrap-02 .box-2-column .illust {
  height: 380px;
  margin-top: 30px;
}

.sec-02 .column-wrap-02 .box-2-column li {
  background-color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  padding: 8px 0;
  margin-top: 15px;
  line-height: 1.5;
}
.sec-02 .okawari-wrap {
  border: 2px solid var(--color-01);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.sec-02 .title-06 {
  padding: 10px 0 12px;
  position: relative;
}
.sec-02 .title-06 span {
  position: relative;
}
.sec-02 .title-06 span::after {
    display: block;
    content: "";
    background-image: url(../img/arrow-02.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 4px;
    right: -30px;
    margin: auto;
    transform: rotateX(180deg);
    transition-duration: var(--duration-025);
}

.sec-02 .column-wrap-03 {
  max-width: var(--px-1200);
  margin: 20px auto 0;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.sec-02 .column-wrap-03 .item {
  max-width: 250px;
  width: 100%;
}
.sec-02 .column-wrap-03 .item + .item {
  margin-left: 10px;
}
.sec-02 .column-wrap-03 .item p a {
  text-decoration: underline;
  color: var(--color-02);
  font-weight: bold;
}
.sec-02 .column-wrap-03 .item h4 {
  color: var(--color-white);
  background-color: var(--color-02);
  text-align: center;
  font-size: 24px;
  padding: 5px 0;
}
.sec-02 .column-wrap-04 {
  max-width: var(--px-1200);
  margin: 100px auto 0;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.sec-02 .column-wrap-04 .item {
  max-width: 480px;
}
.sec-02 .column-wrap-04 .item dt {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
.sec-02 .column-wrap-04 .item + .item {
  margin-left: 20px;
}

.sec-03 .column-wrap-04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--px-1200);
  margin: 50px auto 0;
  width: calc(100% - 40px);
}
.sec-03 .column-wrap-04 .item {
  width: 48%;
  border-radius: 15px;
  overflow: hidden;
}
.sec-03 .column-wrap-04 .item img {
  width: 100%;
}
.sec-03 .column-wrap-04 .item {
  position: relative;
  margin-top: 40px;
}
.sec-03 .column-wrap-04 .item figcaption {
  position: absolute;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  padding: 8px 0;
  background-color: #091F38;
}
.sec-03 .splide__slide img {
  width: 100%;
  height: auto;
  display: block; /* 画像下部にできる謎の余白（インライン要素特有の隙間）を消す */
  object-fit: cover; /* 画像の縦横比がバラバラな場合、親要素に合わせて綺麗にトリミングさせる */
}
.sec-03 #splide4 {
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
}
.sec-03 .splide__track {
    border-radius: 20px;
  overflow: hidden;
}
.sec-03 #splide4 li .item {
  position: relative;
}
.sec-03 #splide4 li .item figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.sec-03 #splide4 li .item figcaption h4 {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.3rem;
  background-color: var(--color-01);
  padding: 10px 20px;
}
.sec-03 #splide4 li .item figcaption p {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--color-00);
  font-weight: bold;
  font-size: 1.1rem;
  background-color: var(--color-white);
  padding: 10px 20px;
}


.sec-04 {
  position: relative;
}
.sec-04::before {
  content: "";
  background-image: url(../img/ecoco-left.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.sec-04::after {
  content: "";
  background-image: url(../img/ecoco-right.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.sec-04 .item-img {
  max-width: 250px;
}
.sec-04 .btn-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec-04 .btn-wrap a + a {
  margin-top: 15px;
}
.sec-05 .column-wrap-05 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto 0;
  width: calc(100% - 40px);
}
.sec-05 .column-wrap-05 .item.box {
  width: 30%;
}
.sec-05 .column-wrap-05 .item.box dt {
  padding: 8px 0;
  font-size: 20px;
  font-weight: bold;
}
.sec-05 .column-wrap-05 .item.box dd {
  height: 360px;
  padding: 10px;
}
.sec-05 .column-wrap-05 .item.box dd img {
  height: 180px;
  max-height: 180px;
}
.sec-05 .column-wrap-05 .item.box dd p {
  line-height: 1.75;
  margin-top: 20px;
}
.sec-05 .column-wrap-05 .item.box dd p span {
  font-size: 0.75rem;
}

#merit-01 ul {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--px-1200);
  width: 100%;
  margin: 50px auto 0;
  gap: 20px;
  padding: 20px;
}
#merit-01 ul li {
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
}
#merit-01 ul li .feature-text {
  margin-left: 15px;
  line-height: 1.5;
  width: 100%;
}

#merit-01 ul li h3 {
  color: var(--color-01);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#merit-01 ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#merit-01 .img-wrap {
  height: 60px;
  width: 60px;
}

.plan-customization .customization-description {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px auto 50px;
}

.plan-customization .customization-examples h3 {
  color: var(--color-01);
  font-size: 2rem;
  text-align: center;
}

.plan-customization .customization-examples .example-item img {
  height: 150px;
}
.plan-customization .customization-examples .example-list {
  display: flex;
  justify-content: space-around;
  width: var(--px-1000);
  margin: 50px auto;
}
.plan-customization .customization-examples .example-list .example-text {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
}

.product-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: var(--px-1200);
  margin: 100px auto 50px;
}
.product-image-wrapper {
  flex: 1;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 20px;
}
.badge-orange {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #ff6b35;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}
.badge-orange.green {
  background-color: #1da60e;
}
.dummy-image-box {
  width: 100%;
  background-color: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 8px;
}

.product-details {
  flex: 1.2;
}
.tag-blue {
  display: inline-block;
  background-color: #e6f0fa;
  color: var(--color-09);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.product-title {
  font-size: 2.2rem;
  color: var(--color-01);
  margin-bottom: 5px;
}
.product-subtitle {
  font-weight: bold;
  color: var(--color-09);
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.product-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* オレンジ色のハイライトボックス */
.highlight-box {
  background-color: #fff8f0;
  border: 1px solid #ffcc99;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.highlight-box.battery {
  background-color: #d1ffd7;
  border: 1px solid #37d351;
}
.highlight-title {
  color: #cc5500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.highlight-box.battery .highlight-title {
  color: #1da60e;
}
.highlight-box p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* 4つの機能グリッド */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.product-container .cation-01 {
  color: var(--color-03);
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.5;
}
.feature-item {
  background-color: #f0f7ff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item .icon {
  font-size: 1.5rem;
}
.feature-item div {
  display: flex;
  flex-direction: column;
}
.feature-item div strong {
  margin-bottom: 10px;
}
.feature-item strong {
  font-size: 1rem;
  color: var(--color-01);
}
.feature-item span {
  font-size: 0.8rem;
  color: #666;
}

/* ============================
   下部：手順ステップセクション
============================ */

.product-section + .product-section {
  border-top: 1px solid var(--color-01);
}
.steps-section {
  background-color: var(--color-09); /* 濃いブルー */
  color: #ffffff;
  padding: 60px 0;
}
.steps-section .container {
  max-width: var(--px-1200);
  margin: 0 auto;
  padding: 0 20px;
}
.steps-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5rem;
}
.step-list {
  display: flex;
  gap: 20px;
  list-style: none;
  position: relative;
}

/* 背景の横線（ステップをつなぐ線） */
.step-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.step-item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 2; /* 線より手前に配置 */
  -webkit-backdrop-filter: blur(3px); /* Safari向け */
  backdrop-filter: blur(3px);
}
.step-number {
  background-color: #ffffff;
  color: #0056b3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}
.step-name {
  font-size: 1rem;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}


.sec-06 .plan-wrap-01 {
  display: flex;
  justify-content: space-between;
  max-width: var(--px-1000);
  margin: 50px auto 0;
  width: calc(100% - 20px);
}

.sec-06 .plan-wrap-01 .item-img {
  width: 230px;
}
.sec-06 .plan-wrap-01 figcaption {
  font-size: 20px;
  font-weight: bold;
}
.sec-06 .plan-wrap-01 .item-02 {
  width: 65%;
}
.sec-06 .plan-wrap-01 .item-02 .captions {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
}
.sec-06 .plan-wrap-01 .item-02 li,
.form-wrap-01 li  {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
}
.sec-06 .plan-wrap-01 .item-02 li + li,
.form-wrap-01 li + li {
  border-top: 1px solid #bfbfbf;
}
.sec-06 .plan-wrap-01 .item-02 .icon-01,
.form-wrap-01 li .icon-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  height: 30px;
  padding: 0 15px;
  min-width: 95px;
}
.sec-06 .plan-wrap-01 .item-02 .icon-02,
.form-wrap-01 li .icon-02 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 15px;
}
.sec-06 .plan-wrap-01 .item-02 .icon-01 + .icon-02,
.form-wrap-01 li .icon-01 + .icon-02 {
  margin-left: 10px;
}
.sec-06 .plan-wrap-01 .item-02 .icon-01 .item-img-02 {
  width: 50px;
}
.bg-color-10 { background-color: #95AFBE; }
.bg-color-11 { background-color: #69C8CE; }
.bg-color-12 { background-color: #3DBEB6; }
.bg-color-13 { background-color: #056BE2; }
.bg-color-14 { background-color: #0E588D; }

.sec-07 {
  background-color: #F2F2F2;
}
.sec-07 .faq-wrap {
  max-width: var(--px-1000);
  margin: 50px auto 0;
  width: calc(100% - 20px);
}
.sec-07 dt,.sec-07 dd {
  position: relative;
  padding: 15px 0;
  font-size: 18px;
  padding-left: 60px;
  padding-right: 50px;
  line-height: 1.5;
}
.sec-07 dl {
  border-radius: 10px;
  overflow: hidden;
}
.sec-07 dl + dl {
  margin-top: 20px;
}
.sec-07 dd {
  border-top: 1px solid #ccc;
  display: none;
}
.sec-07 dt::before {
  content: "";
  background-image: url(../img/q.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 10px;
  left: 10px;
  margin: auto;
}
.sec-07 dt::after {
  content: "";
  background-image: url(../img/arrow-01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 20px;
  right: 20px;
  margin: auto;
  transform: rotateX(180deg);
  transition-duration: var(--duration-025);
}

.sec-07 .open dt::after {
  transform: rotateX(0deg);
  transition-duration: var(--duration-025);

}
.sec-07 dd::before {
  content: "";
  background-image: url(../img/a.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 10px;
  left: 10px;
  margin: auto;
}

.sec-08 .form-wrap {
  width: 800px;
  margin: 70px auto 0;
  padding: 20px;
  position: relative;
}

.sec-08 .form-wrap .item-img {
  max-width: 250px;
}

.sec-08 .form-wrap::before {
  content: "";
  background-image: url(../img/ecoco-form-01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 145px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  margin: auto;
}

.sec-08 .form-wrap::after {
  content: "";
  background-image: url(../img/support.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 145px;
  height: 100%;
  position: absolute;
  top: 10px;
  right : 10px;
  margin: auto;
}


/* ---- 固定ページ */
.form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ecoco-form-pic {
  max-width: 230px;
}

.ecoco-care .image-wrap {
  margin: 50px auto;
  text-align: center;
}
.ecoco-care .image-wrap img {
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
}

.logo-form-pic {
  max-width: 400px;
}
.form-wrap {
  padding-bottom: 100px;
}
.form-wrap h1 {
  font-size: 24px;
}

.form-wrap-01 {
  background-color: var(--color-white);
  max-width: var(--px-1000);
  padding: 50px;
  margin: 50px auto 0px;
  color: var(--color-00);
}
input[type="number"] {
  border: var(--color-00) solid 2px;
  border-radius: 8px;
}
.form-wrap-01 dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-wrap-01 dl + dl {
  margin-top: 30px;
}
.form-wrap-01 dl dt {
  font-size: 20px;
  font-weight: bold;
}
.form-wrap-01 .must {
  background-color: #FF6838;
  color: var(--color-white);
  border-radius: 5px;
  padding: 4px 10px;
  margin-left: 20px;
  font-size: 0.85rem;
}
.yubin-wrap {
  margin-right: 300px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  border: var(--color-00) solid 2px;
  border-radius: 8px;
  width: 500px;
  font-size: 20px;
  font-weight: bold;
}
input[type="text"].yubin-01 {
  min-width: 100px;
  width: 200px;
}
textarea {
  min-height: 400px;
}

.submit-01 {
  background: rgb(147,57,237);
  background: linear-gradient(270deg, rgba(147,57,237,1) 0%, rgba(248,33,123,1) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 10px 100px;
  border-radius: 20px;
  margin-top: 100px;
  border: none;
  font-size: 20px;
}

.submit-02 {
  background-image: linear-gradient(90deg, rgba(255, 60, 118, 1), rgba(254, 164, 31, 1));
  color: var(--color-white);
  text-align: center;
  padding: 10px 100px;
  border-radius: 20px;
  margin-top: 100px;
  border: none;
  font-size: 20px;
}

input::placeholder {
	color: #ccc;
}
.fixed-cta {
  display: none;
  text-align: center;
  position: fixed;
  z-index: 9;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
}
.fixed-cta a + a {
  margin-left: 30px;
}
.fixed-cta .item-img {
  width: 200px;
}

.fixed-cta p {
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ---- 投稿ページ */
.page-content article {
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.75;
}
.page-wrap {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.page-wrap.privacy dl + dl {
  margin-top: 40px;
}

.page-wrap.privacy {
  font-size: 0.9rem;
}

.page-wrap h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.page-wrap.privacy ul {
  margin: 10px 0;
  list-style: disc;
  padding-left: 1.2rem;
}
.page-wrap.tokusho dl + dl {
  margin-top: 15px;
  border-top: 1px solid var(--color-00);
}
.page-wrap.tokusho dl {
  padding: 15px 15px 0;
  display: flex;
}
.page-wrap.tokusho dl dt {
  font-weight: bold;
  min-width: 220px;
}
.page-wrap.tokusho dl dd {
  margin-left: 20px;
}

/* ---- 記事ループページ */

/* ---- footer */

.footer-wrap {
  text-align: center;
}
.footer-wrap .logo {
  margin-top: 60px;
  display: inline-block;
}
.footer-wrap .logo img {
  width: 160px;
}
.footer-nav {
  margin: 60px auto;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav li {
  margin-left: 30px;
}
.footer-nav a {
  color: var(--color-white);
  font-weight: bold;
}
.copyright {
  font-size: 0.85rem;
  padding: 0.15rem 0;
}

.footer-sub-menu {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-sub-menu li + li {
  margin-left: 30px;
}


@media screen and ( max-width:999px ){
/* ---- マージンパッディング量(主に固定投稿ページ用) */
    .mt-100-50 { margin-top: 50px; }
    .mt-70-50 { margin-top: 50px; }
    .mt-50-30 { margin-top: 30px; }
    .mt-40-20 { margin-top: 20px; }
    .ml-30-0 { margin-left: 0px; }
    .mt-0-50 { margin-top: 50px; }
    .mt-0-30 { margin-top: 30px; }
    .pa-20-10 { padding: 10px; }
    .pb-20-10 { padding-bottom: 10px; }
    .pb-100-50 { padding-bottom: 50px; }
    .pb-50-30 { padding-bottom: 30px; }
    .pc-pa-30 { padding: 0px; }
    .text-left-sp { text-align: left; }
/* ---- その他初期設定 */
    .sp-block { display: block; }
    .pc-block { display: none; }
    .sp-direction-column { flex-direction: column; }
    .sp-direction-reserve { flex-direction: column-reverse; }
/* ---- タイトル見出し */
    .title-01 { font-size: 24px; line-height: 1.5;}
    .plan-customization .title-01::before {
      bottom: 14px;
    }
    h2.title-01 { margin-top: 75px!important; }
    .title-04 { font-size: 24px; }
/* ---- ボタン */
  .btn-01 {
    z-index: 101;
    width: 100%;
    min-width: 122px;
    justify-content: center;
    padding-left: 0;
  }
  .btn-02 {
    width: 100%;
    padding-right: 36px;
  }
  .btn-03 {
    width: 100%;
    padding-right: 36px;
  }
  .btn-04 {
    z-index: 101;
    width: 100%;
    min-width: 122px;
  }
  .btn-01 img,.btn-04 img {
    display: none;
  }
  .btn-01,.btn-04 {
    font-size: 15px;
    height: 24px;
  }
/* ---- header */
  .site-title {
    position: relative;
    z-index: 111;
  }
  .header-inner {
    height: 65px;
  }
  .header-inner .btn-wrap {
    margin-right: 40px;
  }
  .right-box {
    position: absolute;
    left: 0;
    height: 0;
    top: 60px;
    width: 100%;
  }
  .header-nav-wrap {
    position: relative;
    overflow: scroll;
    z-index: 10;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-01);
    transform: translateY(-150vh);
    transition-duration: var(--duration-025);
    padding-bottom: 150px;
  }

  .header-nav-wrap.show {
    transform: translateY(0vh);
    transition-duration: var(--duration-025);
  }
  .header-nav ul {
    flex-direction: column;
  }
  .header-nav li {
    margin-top: 2rem;
  }
  .header-nav li + li {
    margin-left: 0;
  }
  .header-nav a {
    display: inline-block;
    font-size: 1.4rem;
    padding: 0.5rem;
  }

  #overlay-button {
    z-index: 101;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
  }
  #overlay-button span {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }
  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 10px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #fff;
  }
  
  input[type=checkbox] {
    display: none; 
    
  }
  
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible; 
  }
  
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
    
    
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  #overlay {

    height: 100vh;
    width: 100vw;
    background: #ec6451;
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }
  #overlay.active {
  
  }
  .header-nav-wrap .cta-wrap {
    bottom: unset;
    margin-top: 15px;
  }

/* ---- フロントページ */
  main {
    min-height: 100vh;
    height: 100%;
    padding-top: 70px;
  }
  .main-inner {
    max-width: 100%;
  }
  .cta-wrap {
    padding: 15px;
    position: relative;
    bottom: 20px;
    top: unset;
  }
  .fv-content-01 {
    position: relative;
    left: 0px;
    top: 0px;
    padding: 0 20px;
  }
  .sales-catch {
    width: 100%;
    max-width: calc(100% - 0px);
  }
  .fv-content-01 p {
    font-size: 24px;
  }
  .fv-content-01 .logo {
    max-width: 100%;
    max-width: calc(100% - 20px);
  }
  main .item-img {
    position: relative;
    width: 80vw;
    max-width: 100%;
    top: 0px;
    right: 0;
    left: 0;
    margin: 0 10vw;
  }
  .sec-01 .column-wrap-01 {
    flex-direction: column;
  }
  .sec-01 .column-wrap-01 .item {
    max-width: 700px;
  }
  .sec-01 .column-wrap-01 .item + .item {
    margin-top: 100px;
  }
  .sec-01 .column-wrap-01 .item img {
    width: 80%;
    max-width: 300px;
  }
  .sec-01 .column-wrap-01 .item dl {
    margin-top: 240px;
  }
  .sec-02 .column-wrap-01 {
    flex-wrap: wrap;
  }
  .sec-02 .column-wrap-01 .item {
    width: 45%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .sec-02 .column-wrap-01 .item dt {
    font-size: 24px;
  }
  .sec-02 .column-wrap-02 {
    flex-direction: column;
  }
  .sec-02 .column-wrap-02 .box-2-column {
    width: 100%;
  }
  .sec-02 .column-wrap-03 {
    flex-wrap: wrap;
  }
  .sec-02 .column-wrap-03 .item {
    width: 45%;
    margin-top: 30px;
  }
  .sec-02 .catch-01 {
    padding: 0 20px;
    font-size: 20px;
  }
  .sec-02 .okawari-wrap {
    margin: 0 10px 30px;
  }
  .catch-02 {
    padding: 0 20px;
  }
  .sec-02 .column-wrap-04 .item dt {
    font-size: 1rem;
    text-align: left;
  }
  .sec-02 .column-wrap-04 {
    margin-top: 50px;
  }
  .sec-02 .column-wrap-03 .item + .item {
    margin-left: 0;
  }

  .sec-03 .column-wrap-04 {
    margin-top: 0px;
  }

  .sec-03 .column-wrap-04 .item {
    width: 100%;
  }
  #merit-01 ul li {
    width: 100%;
  }
  .sec-04::after,
  .sec-04::before {
    content: none;
  }
  .btn-wrap {
    padding: 0 20px;
  }
  .sec-05 .column-wrap-05 {
    flex-direction: column;
    margin-top: 20px;
  }
  .sec-05 .column-wrap-05 .item.box {
    width: 100%;
    margin-top: 30px;
  }
  .plan-customization {
    padding: 0 20px;
  }
  .plan-customization .customization-examples .example-list {
    width: 100%;
    flex-direction: column;
  }
  .plan-customization .customization-examples .example-list .example-item {
    text-align: center;
  }
  .plan-customization .customization-examples .example-list .example-item +  .example-item {
    margin-top: 50px;
  }
  /* --- 上部：製品紹介セクション --- */
  .product-container {
    flex-direction: column; /* 左右2カラムから縦積みに変更 */
    gap: 30px;
  }
  
  .product-image-wrapper, 
  .product-details {
    width: 100%; /* 横幅いっぱいに広げる */
    padding: 0 20px;
  }

  .direction-reserve-01 {
    display: flex;
    flex-direction: column-reverse;
  }
  .product-container {
    margin: 50px auto;
  }

  .product-title {
    font-size: 1.8rem; /* スマホ向けに少し文字サイズを調整 */
  }

  .feature-grid {
    grid-template-columns: 1fr; /* 2カラムから1カラム（縦1列）に変更 */
    /* ※スマホでも2列にしたい場合は `repeat(2, 1fr)` のままにし、文字サイズを少し小さく調整してください */
  }

  /* --- 下部：手順ステップセクション --- */
  .step-list {
    flex-direction: column; /* 4カラムから縦積みに変更 */
    gap: 20px;
  }

  /* PC用の背景の横線（ステップをつなぐ線）を消す */
  .step-list::before {
    display: none;
  }

  /* 縦積み時、ステップボックス内に少しゆとりを持たせる */
  .step-item {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .sec-06 .plan-wrap-01 {
    flex-direction: column;
  }
  .sec-06 .plan-wrap-01 .item-02 {
    margin-top: 30px;
    padding: 0px;
    width: 100%;
  }
  .sec-06 .plan-wrap-01 .item-02 .captions,
  .sec-06 .plan-wrap-01 .item-02 li {
    font-size: 16px;
  }
  .sec-06 .plan-wrap-01 .item-02 .icon-01 {
    font-size: 13px;
    min-width: 60px;
    height: 24px;
  }
  .sec-06 .plan-wrap-01 .item-02 .icon-02 {
    height: 24px;
    padding: 0 5px;
    font-size: 13px;
    min-width: 60px;
  }
  .sec-06 .plan-wrap-01 .item-02 li p {
    max-width: 110px;
    line-height: 1.5;
  }
  .sec-08 .btn-wrap {
    padding: 0;
  }
  .sec-08 .form-wrap {
    width: calc(100% - 40px);
  }
  .sec-08 .form-wrap::before {
    width: 75px;
    top: 28px;
  }
  .sec-08 .form-wrap::after {
    width: 75px;
    top: 28px;
  }
  .ecoco-care .image-wrap img {
    width: 100%;
  }
/* ---- 固定ページ */
.form-wrap-01 {
  max-width: 100%;
  padding: 20px;
}
.form-wrap-01 dl {
  flex-direction: column;
  align-items: flex-start;
}
.form-wrap-01 dl dt {
  margin-bottom: 20px;
}
.form-wrap-01 dl dd {
  width: 100%;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
  min-width: auto;
  width: 100%;
}
.wpcf7-spinner {
  display: none;
}
.submit-01 {
  width: 100%;
  padding: 20px 0;
  border-radius: 40px;
  margin-top: 20px;
}
.form-wrap-01 li {
  flex-direction: column;
  min-height: 160px;
}
.form-wrap-01 dl dd {
  margin-right: 0;
}
.logo-form-pic {
  max-width: 100%;
  width: 80%;
  margin: 0 auto;
}
.ecoco-form-pic {
  width: 80%;
}
/* ---- 投稿ページ */
.page-wrap {
  padding: 0;
}
.page-wrap.tokusho dl {
  flex-direction: column;
  padding: 15px 0 0;
}
.page-wrap.tokusho dl dt {
  font-size: 1.1rem;
}
.page-wrap.tokusho dl dd {
  margin-left: 0;
  margin-top: 10px;
}

/* ---- 記事ループページ */

/* ---- footer */

  .footer-nav {
    margin: 30px auto;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-nav ul li {
    width: 50%;
    margin-left: 0;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .fixed-cta p {
    padding: 0 20px;
  }
}/* max-width:999px ここまで */