@media screen and (min-width: 768px) {
}
/* ===============================
home : hero
================================ */
/* ===============================
home : hero animation
================================ */
#home .hero-title,
#home .hero-text,
#home .hero-actions {
 opacity: 0;
 transform: translateX(-40px);
 animation: heroSlideIn 0.9s ease forwards;
}

#home .hero-title {
 animation-delay: 0.2s;
}

#home .hero-text {
 animation-delay: 0.5s;
}

#home .hero-actions {
 animation-delay: 0.8s;
}

@keyframes heroSlideIn {
 to {
  opacity: 1;
  transform: translateX(0);
 }
}
#home .hero {
 position: relative;
 height: 75vh;
 min-height: 600px;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: #0a1a2a;
}

#home .hero-bg {
 position: absolute;
 inset: 0;
 background:
  linear-gradient(
   to right,
   rgba(10, 26, 42, 0.85),
   rgba(10, 26, 42, 0.65),
   rgba(10, 26, 42, 0)
  ),
  url("https://www.sinopec.jp/wp-content/themes/theme-2026/assets/images/home/hero-img.jpeg")
   center / cover no-repeat;
}

#home .hero-body {
 position: relative;
 z-index: 2;
 max-width: 1100px;
}

#home .hero-title {
 color: #fff;
 font-size: 32px;
 font-weight: 700;
 line-height: 1.25;
 letter-spacing: 0.12em;
}

@media screen and (min-width: 768px) {
 #home .hero-title {
  font-size: 55px;
 }
}

@media screen and (min-width: 1200px) {
 #home .hero-title {
  font-size: 65px;
 }
}

#home .hero-text {
 margin-top: 28px;
 color: rgba(255, 255, 255, 0.9);
 font-size: 15px;
 line-height: 1.9;
 letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
 #home .hero-text {
  font-size: 18px;
 }
}

#home .hero-actions {
 margin-top: 48px;
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
}

#home .hero-btn {
 font-size: 18px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 18px 32px;
 font-weight: 700;
 letter-spacing: 0.12em;
 transition:
  background 0.3s ease,
  color 0.3s ease;
}

#home .hero-btn.primary {
 background: #e60012;
 color: #fff;
}

#home .hero-btn.primary:hover {
 background: #be0010;
}

#home .hero-btn.outline {
 border: 2px solid #fff;
 color: #fff;
}

#home .hero-btn.outline:hover {
 background: rgba(255, 255, 255, 0.1);
}

#home .hero-btn .arrow {
 width: 6px;
 height: 6px;
 border-top: 2px solid currentColor;
 border-right: 2px solid currentColor;
 transform: rotate(45deg);
}

/* ===============================
home : hero decoration
================================ */
#home .hero::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 50%;
 width: 1px;
 height: 64px;
 background: rgba(255, 255, 255, 0.3);
 transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
 #home .hero::after {
  display: none;
 }
}
/* ===============================
about sinopec02 : absolute overlap
================================ */
#about-sinopec02 {
 position: relative;
 height: 200px;
 background: transparent;
}

#about-sinopec02 .about-sinopec02-inner {
 position: absolute;
 left: 50%;
 bottom: -90%;
 transform: translateX(-50%);
 width: 100%;
 max-width: 1200px;
 background: #ffffff;
 padding: 35px;
 display: grid;
 gap: 40px;
 box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
 border: 1px solid #e5e5e5;
 z-index: 20;
}

@media screen and (min-width: 1024px) {
 #about-sinopec02 .about-sinopec02-inner {
  grid-template-columns: 0.5fr 1.2fr;
  align-items: center;
 }
}

/* left */
#about-sinopec02 .about-sinopec02-sub {
 font-size: 14px;
 font-weight: 700;
 letter-spacing: 0.3em;
 color: #e60012;
}

#about-sinopec02 .about-sinopec02-title {
 margin-top: 10px;
 font-size: 30px;
 font-weight: 900;
 line-height: 1.4;
 color: #0a1a2a;
}
#about-sinopec02 .about-sinopec02-title + .about-sinopec02-text {
 margin-top: 20px;
}
#about-sinopec02 .about-sinopec02-text {
 margin-top: 10px;
 font-size: 15px;
 line-height: 1.7;
 color: #333;
}

/* right */
#about-sinopec02 .about-sinopec02-cards {
 display: grid;
 gap: 24px;
}

@media screen and (min-width: 768px) {
 #about-sinopec02 .about-sinopec02-cards {
  grid-template-columns: repeat(3, 1fr);
 }
}

#about-sinopec02 .about-sinopec02-card {
 background: #f8f8f8;
 padding: 48px 32px;
 text-align: center;
 border: 1px solid #ddd;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 transition:
  transform 0.3s ease,
  box-shadow 0.3s ease,
  border-color 0.3s ease;
}

#about-sinopec02 .about-sinopec02-card:hover {
 transform: translateY(-12px);
 box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
 border-color: #8c9299;
}

#about-sinopec02 .about-sinopec02-card .icon {
 font-size: 65px;
 color: #8c9299;
 text-align: center;
}

#about-sinopec02 .about-sinopec02-card h3 {
 font-size: 18px;
 font-weight: 700;
 letter-spacing: 0.12em;
 color: #0a1a2a;
 text-align: center;
}

#about-sinopec02 .about-sinopec02-card .arrow {
 display: inline-block;
 margin-top: 18px;
 width: 6px;
 height: 6px;
 border-top: 2px solid #8c9299;
 border-right: 2px solid #8c9299;
 transform: rotate(45deg);
}

/* SP */
@media screen and (max-width: 767px) {
 #about-sinopec02 {
  height: auto;
  padding: 40px 0;
 }

 #about-sinopec02 .about-sinopec02-inner {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  padding: 50px 30px;
 }

 #about-sinopec02 .about-sinopec02-title {
  font-size: 26px;
 }
}
/* ===============================
about sinopec04
================================ */

#about-sinopec04 {
 padding: 0px 0 40px;
 background: #ffffff;
}

#about-sinopec04 .about-sinopec04-layout {
 display: grid;
 gap: 20px;
}

@media screen and (min-width: 1024px) {
 #about-sinopec04 .about-sinopec04-layout {
  grid-template-columns: 1.2fr 1fr;
 }
}

/* left */
#about-sinopec04 .about-sinopec04-left {
 display: flex;
 flex-direction: column;
}

#about-sinopec04 .about-sinopec04-left-top {
 background: #ffffff;
 padding: 30px 0px;
}

#about-sinopec04 .about-sinopec04-left-top .lead {
 font-size: 16px;
 line-height: 1.6;
 margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
 #about-sinopec04 .about-sinopec04-left-top .lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
 }
}
#about-sinopec04 .about-sinopec04-left-top .more {
 font-weight: 700;
 color: #e60012;
}

/* ===============================
about sinopec04 : left bottom background
================================ */

#about-sinopec04 .about-sinopec04-left-bottom {
 position: relative;
 background: #fd656a;
 color: #ffffff;
 padding: 60px 30px;
 overflow: hidden;
}
@media screen and (min-width: 768px) {
 #about-sinopec04 .about-sinopec04-left-bottom {
  position: relative;
  background: #fd656a;
  color: #ffffff;
  padding: 60px 30px;
  overflow: hidden;
 }
}
/* 背景画像 */
#about-sinopec04 .about-sinopec04-left-bottom::before {
 content: "";
 position: absolute;
 inset: 0;
 background-image: url("https://www.sinopec.jp/wp-content/themes/theme-2026/assets/images/home/top-about-img.png");
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 opacity: 0.1;
 z-index: 4;
}

/* 赤のオーバーレイ（色を残したい場合） */
#about-sinopec04 .about-sinopec04-left-bottom::after {
 content: "";
 position: absolute;
 inset: 0;
 background: rgba(233, 75, 75, 0.85);
 z-index: 3;
}

/* 中身を最前面に */
#about-sinopec04 .about-sinopec04-left-bottom > * {
 position: relative;
 z-index: 4;
}

#about-sinopec04 .about-sinopec04-left-bottom h3 {
 font-size: 22px;
 font-weight: 700;
 margin-bottom: 20px;
}

#about-sinopec04 .about-sinopec04-left-bottom p {
 font-size: 16px;
 line-height: 1.9;
 margin-bottom: 5px;
}
/* ===============================
about sinopec04 : right card absolute control
================================ */

/* 親を基準にする */
#about-sinopec04 .about-sinopec04-right {
 position: relative;
}

/* 共通：絶対配置 */
#about-sinopec04 .about-sinopec04-card {
 width: 100%;
}
@media screen and (min-width: 768px) {
 #about-sinopec04 .about-sinopec04-card {
  position: absolute;
  width: 85%;
 }
}
/* 左カード（環境と社会） */
#about-sinopec04 .about-sinopec04-card:not(.contact) {
 top: -15%;
 left: 5%;
}

/* 右カード（お問い合わせ） */
#about-sinopec04 .about-sinopec04-card.contact {
 top: -6%;
 width: 100%;
 right: 0;
}
@media screen and (min-width: 768px) {
 #about-sinopec04 .about-sinopec04-card.contact {
  top: -6%;
  width: 40%;
  right: 0;
 }
}
/* 高さ調整用（必要なら） */
#about-sinopec04 .about-sinopec04-right {
 min-height: 420px;
}

/* right */
#about-sinopec04 .about-sinopec04-right {
 display: flex;
 flex-direction: column;
 gap: 30px;
 align-items: start;
}
@media screen and (min-width: 768px) {
 #about-sinopec04 .about-sinopec04-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
 }
}
#about-sinopec04 .about-sinopec04-card {
 background: #ffffff;
 display: flex;
 flex-direction: column;
 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

#about-sinopec04 .about-sinopec04-card .image img {
 width: 100%;
 height: auto;
 display: block;
}

#about-sinopec04 .about-sinopec04-card .body {
 padding: 28px;
 border-top: 1px solid #eee;
}

#about-sinopec04 .about-sinopec04-card h4 {
 font-size: 22px;
 font-weight: 700;
 margin-bottom: 8px;
}

#about-sinopec04 .about-sinopec04-card .sub {
 color: #e60012;
 font-weight: 700;
 margin-bottom: 14px;
}

#about-sinopec04 .about-sinopec04-card .desc {
 font-size: 14px;
 line-height: 1.8;
 margin-bottom: 5px;
}

/* contact */
#about-sinopec04 .about-sinopec04-card.contact {
 justify-content: center;
 text-align: center;
}

/* ===============================
about sinopec
================================ */
#about-sinopec {
 padding: 60px 0;
 background: #f2f4f6;
}

#about-sinopec .about-sinopec-head {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 margin-bottom: 60px;
}

#about-sinopec .about-sinopec-head .en {
 font-size: 16px;
 font-weight: 700;
 letter-spacing: 0.3em;
 color: #e60012;
}

#about-sinopec .about-sinopec-head h2 {
 margin-top: 15px;
 font-size: 35px;
 font-weight: 700;
 color: #0a1a2a;
 text-align: center;
}

#about-sinopec .about-sinopec-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 32px;
}

#about-sinopec .about-sinopec-card {
 background: #fff;
 padding: 50px 40px;
 border: 1px solid #e5e5e5;
 text-align: center;
 transition: border-color 0.3s ease;
}

#about-sinopec .about-sinopec-card:hover {
 border-color: #e60012;
}

#about-sinopec .about-sinopec-card .icon {
 margin-bottom: 32px;
 opacity: 0.6;
 transition: opacity 0.3s ease;
}

#about-sinopec .about-sinopec-card:hover .icon {
 opacity: 1;
}

#about-sinopec .about-sinopec-card h3 {
 font-size: 30px;
 font-weight: 700;
 color: #0a1a2a;
 text-align: center;
}

#about-sinopec .about-sinopec-card p {
 font-size: 18px;
 color: #333;
 line-height: 1.8;
 text-align: center;
}
/* ===============================
about sinopec : icons (Font Awesome)
================================ */
#about-sinopec .about-sinopec-card .icon {
 display: block;
 margin: 0 auto 32px;
 font-size: 52px;
 color: #ff5a60;
 text-align: center;
 opacity: 0.6;
 transition: opacity 0.3s ease;
}

#about-sinopec .about-sinopec-card:hover .icon {
 opacity: 1;
}

/* ===============================
SP
================================ */
@media screen and (max-width: 767px) {
 #about-sinopec {
  padding: 80px 0;
 }

 #about-sinopec .about-sinopec-grid {
  grid-template-columns: 1fr;
 }
}

/* ===============================
products
================================ */
#products {
 padding: 60px 0 60px;
 background: #f8f8f8;
}

#products .products-head {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 40px;
 flex-direction: column;
}
@media screen and (min-width: 768px) {
 #products .products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-direction: row;
 }
}
#products .products-head .en {
 font-size: 16px;
 font-weight: 700;
 letter-spacing: 0.3em;
 color: #e60012;
 text-align: center;
}

#products .products-head h2 {
 margin-top: 15px;
 font-size: 35px;
 font-weight: 700;
 text-align: center;
}

#products .products-head .lead {
 max-width: 520px;
 font-size: 18px;
 line-height: 1.9;
 color: #333;
}

#products .products-grid {
 margin-top: 80px;
 display: grid;
 border-top: 1px solid #e5e5e5;
 border-left: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
 #products .products-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
 }
}
#products .product-panel {
 padding: 40px 30px;
 border-right: 1px solid #e5e5e5;
 border-bottom: 1px solid #e5e5e5;
 transition: background 0.3s ease;
 background: #fff;
}
@media screen and (min-width: 768px) {
 #products .product-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.3s ease;
  background: #fff;
 }
}

#products .product-panel .num {
 display: block;
 font-size: 25px;
 font-weight: 700;
 color: #ff5a60;
}

#products .product-panel h3 {
 margin-top: 20px;
 font-size: 20px;
 font-weight: 700;
}

#products .product-panel .brand {
 margin-top: 8px;
 font-weight: 700;
 color: #ff5a60;
}

#products .product-panel .desc {
 margin-top: 15px;
 font-size: 16px;
}

#products .product-panel ul {
 margin-top: 32px;
}

#products .product-panel li {
 font-size: 16px;
 padding-left: 14px;
 position: relative;
}

#products .product-panel li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 50%;
 width: 4px;
 height: 4px;
 background: #999;
 transform: translateY(-50%);
}

#products .product-panel a {
 display: inline-block;
 margin-top: 40px;
 font-weight: 700;
 color: #0a1a2a;
 font-size: 18px;
}

#products .product-panel a:hover {
 color: #e60012;
}
#products .products-top-btn {
 display: flex;
 justify-content: center;
 margin-top: 50px;
}
/* ===============================
products : description toggle
================================ */
#products .product-panel .desc-more {
 display: none;
}

#products .product-panel.is-open .desc-more {
 display: block;
}

#products .product-panel .desc-toggle {
 margin-top: 15px;
 font-size: 16px;
 font-weight: 700;
 background: none;
 border: none;
 color: #e60012;
 cursor: pointer;
 padding: 0;
}

#products .product-panel .desc-toggle:hover {
 text-decoration: underline;
}
/* ===============================
strengths
================================ */
#strengths {
 padding: 250px 0 20px;
 background: #303945;
 color: #fff;
}

#strengths .strengths-head {
 display: flex;
 flex-direction: column;
 align-items: center;
}
@media screen and (min-width: 768px) {
 #strengths .strengths-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
 }
}

#strengths .strengths-head .en {
 font-size: 20px;
 font-weight: 700;
 letter-spacing: 0.3em;
 color: #fd656a;
}
@media screen and (min-width: 768px) {
 #strengths .strengths-head .en {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fd656a;
 }
}
#strengths .strengths-head h2 {
 margin-top: 16px;
 font-size: 35px;
 font-weight: 700;
 text-align: center;
}
@media screen and (min-width: 768px) {
 #strengths .strengths-head h2 {
  margin-top: 16px;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
 }
}
#strengths .strengths-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 64px;
}

#strengths .strengths-item .line {
 display: block;
 width: 80px;
 height: 2px;
 background: rgba(255, 255, 255, 0.4);
 margin-bottom: 32px;
}

#strengths .strengths-item h3 {
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
 #strengths .strengths-item h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 24px;
 }
}
#strengths .strengths-item p {
 font-size: 16px;
 line-height: 1.9;
 color: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 768px) {
 #strengths .strengths-item p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
 }
}
/* ===============================
SP
================================ */
@media screen and (max-width: 767px) {
 #strengths {
  padding: 40px 0;
 }

 #strengths .strengths-grid {
  grid-template-columns: 1fr;
  gap: 48px;
 }
}
