p {
  font-size: 16px;
  color: #333;
}
.fs-12 {
 font-size: 12px;
}
.fs-14 {
 font-size: 14px;
}
.text-center {
 text-align: center;
}
.text-gre {
  color: #41854e;
  font-weight: 700;
}
.text-or {
  color: #ff9800;
  font-weight: 700;
}
.red {
  color: #ce0000;
}
.gry {
  color: #8f8f8f;
}
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transform: translateY(-100%);
  animation: headerSlideDown 1s ease forwards;
}


@keyframes headerSlideDown {
  to { transform: translateY(0); }
}
.page-header {
  margin-top: 90px; 
}
.site-header .payment-img {
    display: block;
    height: 70px;
    margin-right: 30px;
    }
@media screen and (max-width: 768px) {
    .page-header {
    margin-top: 100px;
  }
    .site-header .payment-img {
      display: none;
    }
}

.site-header__inner {
 /* max-width: 1400px;*/
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between
}
/* ===== Logo ===== */
.site-header__logo {
  margin-right: auto;
}
.site-header__logo img {
  max-height: 70px;
}
@media (max-width: 768px) {
  .site-header__logo { 
    margin: 0 auto;
  }
 .site-header__logo img {
  max-height: 70px;
}
}
/* ===== PCナビ：横並び ===== */
.site-header__nav {
  margin-right: 30px;
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav ul > li {
  margin: 0;
}

.site-header__nav ul > li > a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
/* ===== LINE/MAIL ===== */
.site-header__cta a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
}
.site-header__cta .line-top {
  margin: auto;
}
.site-header__line a { background: #00b900; }
.site-header__mail a { background: #0e82c4; }

.site-header__cta .line-icon {
  width: 50px;
  margin: 0 auto;
}
.site-header__cta .line-sub {
  margin-top: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
/* hover */
.site-header__line a:hover,
.site-header__mail a:hover {
  opacity: 0.85;
}
/* ===== ハンバーガー ===== */
.hamburger {
  /*
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  */
  display: none !important;
}


.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1a6a99;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


/* ===== スマホメニュー（JS制御） ===== */
.sp-nav {
  display: none;
  overflow: hidden;
  background-color: #e0e7e4;
}

.sp-menu {
  padding: 100px 20px;
  list-style: none;
}
.sp-menu li {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.pc-only { display: block; }
.sp-only { display: none; }

@media (max-width: 1199px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}


/* ===== Main Hero ===== */
.main-hero {
  position: relative;
  width: 100%;
  /*min-height: calc(100svh - 100px); /* ヘッダー分を引く */
  padding-top: 100px;
  box-sizing: border-box;

  background-image: url("../img/main2200-bg.png");
  background-size: cover;
  background-position: center;
}

.main-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
 padding-bottom: 30px;
  min-height: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  .main-hero {
    height: 80svh
  }
  .main-hero__inner {
    height: 70svh;
    max-width: 1350px;
  }
}
@media (max-width: 768px) {
    .main-hero {
        height: 85svh;
        padding-top: 50px;
    }
}

/* ===== Main Hero Text ===== */
.main-hero__text {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .main-hero__text {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .main-hero__text {
    max-width: 95%;
  }
}

/***** point-column *****/
.point-column {
  margin-top: 150px;
}
.point-column .wp-block-column {
  text-align: center;
}
/******* cover-trust ******/
.cover-trust .trust-etc,
.cover-trust .option-etc {
  padding: 30px;
  gap:5px;
}

.cover-trust .trust-etc ul,
.cover-trust .option-etc ul {
  list-style: none;
  font-size: 16px;
  padding-left: unset;
}

.cover-trust .trust-etc li,
.cover-trust .option-etc li {
  list-style: none;
  padding-left: 35px;
  background-repeat: no-repeat;
  background-position: 0 4px;
  background-size: 18px auto;
}

.cover-trust .trust-etc li {
  background-image: url('/wp-content/themes/toyama-anshin-ecocute/assets/img/chack.png');
}

.cover-trust .option-etc li {
  background-image: url('/wp-content/themes/toyama-anshin-ecocute/assets/img/cyuui.png');
}

.cover-trust .has-fixed-layout {
  background: #ffffff;
  border-radius: 10px;
  border-collapse: separate; 
  overflow: hidden;
  width: 100%;
}

.cover-trust .has-fixed-layout th {
  background: #e1e2dd;
  padding: 12px;
  font-weight: bold;
}

.cover-trust .has-fixed-layout td {
  background: #ffffff;
  padding: 12px;
  border-top: 1px solid #ddd;
}
.icon-text {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.icon-text::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("https://ecocute.energy-partner.net/wp-content/uploads/futaba.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .cover-trust .trust-etc,
  .cover-trust .option-etc {
  padding: 20px 10px;
  }
  .icon-text::before {
  width: 35px;
  height: 35px;
  }
}
/********* QandA *********/
.qanda-group .vk_faq {
    display: block;
    overflow: hidden;
    border-bottom: 0;
    padding: 0 1rem;
    margin: 0 auto 1rem auto;
    width: 100%;
    position: relative;
    background-color: #f7f5ef;
    box-shadow: 1px 5px 5px #ddd;
    border-radius: 10px;
}
@media (max-width: 768px) {
  .qanda-group .vk_faq {
  padding: 0 .3rem;
  }
}
/******* page *******/
.page-header-inner {
    margin: 5rem auto;
}
.page-header {
    background-color:#e99411 ;
}
.page-header-inner h1 {
  color: #fff !important;
}
/************ 補助金page **************/

.subsidy-group {
  border-radius: 20px;
  background-color: #fdebd0;
  padding: 2.4rem ;
}
.subsidy-group .wp-block-column {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 10px 10px 0;
}
.subsidy-group .wp-block-column ul {
  list-style: none;
}
.subsidy-group .wp-block-column h5 {
  color: #e99411 !important;
}
.page-id-82 .wp-block-table {
  border-color:#fdebd0;
  border-radius:10px;
}
@media (max-width: 767px) {
   .subsidy-group {
     padding: 2.4rem 0.8rem;
    } 
  }
/************ 会社概要page ************/
.company .wp-block-table th {
  border-right: solid 1px #fff;
 }
.company .wp-block-table td {
  border-right:0;
}
.company .wp-block-table td, .company .wp-block-table th {
    border-top: 0;
    border-left: 0;
    border-bottom: solid 1px #d9d9d9;
    padding: .5em;
    width: 25%;
    height: 80px;
    vertical-align: middle;
}

.company .wp-block-group {
  border-radius: 20px;
  background-color: #fff;
  padding: 2.4rem ;
  margin-bottom: 5rem;
}
/* =========================
   Footer
========================= */

.site-footer {
  background-color: #f7f5ef;
  margin-top: 0;
  font-size: 14px;
  color: #333;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
}

.footer-col {
  flex: 1;
}
.footer-logo {
 width: 200px;
}
.footer-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-text {
  line-height: 1.7;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 30px !important;
  padding-left: 10px;
  border-left: 2px solid #68ac75;
  margin-bottom: 10px;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #68ac75;
  text-align: center;
  padding: 15px 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

.footer-sns {
  display: flex;
  gap: 20px; 
  margin-top: 15px;
}

.footer-sns img {
  width: 80px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover img {
  opacity: 0.7;
}

@media (max-width: 1199px) {
  
  .footer-inner {
    padding: 40px 80px;
  }
  .footer-bottom {
    display: none;
  }
  .footer-col-message {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 30px;
    padding: 40px;
  }
}
/* =========================
   スマホ固定ボタン
========================= */
.mobile-fixed-buttons {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-fixed-buttons {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
  }

  .mobile-fixed-buttons .fixed-caption {
    text-align: center;
    font-size: 1.2rem;
    padding: 6px 10px;
    background: #e99411;
    color: #fff;
  }

  .mobile-fixed-buttons-buttons {
    display: flex;
  }

  .mobile-fixed-buttons-buttons a {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px; 
  padding: 10px 5px;
  text-decoration: none;
  font-size: 13px; 
  font-weight: bold;
  color: #fff;
  box-sizing: border-box;
  border-top: 1px solid #eee;
}

.mobile-fixed-buttons-buttons a:first-child {
  background-color: #0e82c4;
  color: #fff;
}

.mobile-fixed-buttons-buttons a:last-child {
  background-color: #36b157;
  color: #fff;
}

  .mobile-fixed-buttons img {
    width: 30px;
    height: auto;
  }

  /* フッターに隠れないよう余白を確保 */
  body {
    padding-bottom: 120px;
  }
}

/*****feature-cover 商品ページ******/


    .feature-cover h4 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      border-left: 6px solid #41854e;
      padding-left: 0.5rem;
    }

    .feature-list {
      list-style: none;
      padding: 0;
    }

    .feature-list li {
      margin-bottom: 1.5rem;
      padding-left: 1.2rem;
      position: relative;
      list-style: none;
    }

@media (max-width: 768px) {
.feature-cover h4 {
      font-size: 1.2rem;
    }
}
