﻿:root {
  --oil30-main: #F44336;
  --oil30-text: #333333;
  --oil30-bg: #fafafa;
}
body {
  margin: 0;
  padding: 0;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--oil30-text);
  background-color: #ffffff;
  line-height: 1.7;
}

.oil30-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px;
}

.oil30-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.oil30-breadcrumb a {
  color: var(--oil30-text);
  text-decoration: none;
}

.oil30-breadcrumb a:hover {
  text-decoration: underline;
}

/* ヒーローエリア */
.oil30-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  background: var(--oil30-bg);
  border-radius: 8px;
  margin-bottom: 50px;
}

.oil30-hero-text {
  flex: 1 1 320px;
}

.oil30-hero-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 8px;
  text-align:center;
}

.oil30-hero-title span {
  color: var(--oil30-main);
}

.oil30-hero-underline {
  width: 80px;
  height: 3px;
  background: var(--oil30-main);
  margin: 0 auto 15px;
}

.oil30-hero-lead {
  /*font-size: 0.98rem;*/
  margin-bottom: 12px;
}

.oil30-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.oil30-badge {
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--oil30-main);
  color: var(--oil30-main);
  background: #fff;
}
.oil30-hero-sub {
  font-size: 0.86rem;
  color: #666;
}

.oil30-hero-image {
  flex: 0 1 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oil30-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* 見出し */
.oil30-section {
  margin-bottom: 100px;
}
@media only screen and (max-width:480px){
	.oil30-section{
	margin-bottom:42px;
}
}

.oil30-section h2 {
  font-size: 1.2rem;
	margin: 0 0 12px;
    padding: 5px 5px 5px 10px;
    border-left: 4px solid var(--oil30-main);
    background-color: #FFEBEE;}

.oil30-section p {
  margin: 0 0 8px;
}

/* 動画エリア */
.oil30-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.oil30-video-card {
  flex: 1 1 320px;
}

.oil30-video-title {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.oil30-video-note {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 6px;
}

.oil30-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.oil30-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 特長・用途 */
.oil30-feature-grid,
.oil30-use-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.oil30-feature-card,
.oil30-use-card {
  flex: 1 1 240px;
  background: var(--oil30-bg);
  border-radius: 8px;
  padding: 12px 12px 10px;
  border: 1px solid #e0e0e0;
}

.oil30-feature-head,
.oil30-use-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.oil30-feature-icon,
.oil30-use-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--oil30-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.oil30-feature-title,
.oil30-use-title {
  font-size: 0.95rem;
  font-weight: bold;
}

.oil30-feature-text,
.oil30-use-text {
  font-size: 0.86rem;
}

/* 実験ボックス */
.oil30-experiment-box {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff7f5;
  padding: 12px;
  font-size: 0.9rem;
  margin-top:2em;
}

.oil30-experiment-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  border-radius: 999px;
  background: var(--oil30-main);
  color: #fff;
}

/* 仕様・価格表 */
.oil30-table-wrap {
  overflow-x: auto;
}

.oil30-table {
  /*width: 100%;*/
  border-collapse: collapse;
  /*font-size: 0.9rem;*/
}

.oil30-table th,
.oil30-table td {
  border: 1px solid #ddd;
  padding: 6px 8px;
}

.oil30-table th {
  background: #f5f5f5;
  white-space: nowrap;
}

.oil30-table caption {
  text-align: left;
  padding-bottom: 4px;
  font-weight: bold;
}

/* CTAボタン */
.oil30-cta-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.oil30-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--oil30-main);
}

.oil30-btn-primary {
  background: var(--oil30-main);
  color: #fff;
}

.oil30-btn-outline {
  background: #fff;
  color: var(--oil30-main);
}

.oil30-btn:hover {
  opacity: 0.9;
}

/* 注意書き */
.oil30-note-list {
  padding-left: 1.2em;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .oil30-hero {
    padding: 12px;
    flex-direction: column-reverse;
  }
  .br-mobile{
	display:none;
}
}
@media (min-width: 769px) {
  .br-mobile{
	display:none;
}
}

.auto-style3 {
	background-color: #FFF9C4;
}
.auto-style4 {
	color: #FFFF00;
	background-color: #F44336;
	padding:.2em .5em;
}

.auto-style5 {
	font-size: 20px;
}

.auto-style6 {
	color: #FFFFFF;
	background-color: #00A6D9;
	padding:6px;
	font-weight:600;
}
@media only screen and (min-width:590px){
.oil30-div{
  display:flex;
}
.oil30-div2 p {
    margin-left: 10px;
}
}
.oil30-div img {
    display: block;
    margin: 0 auto;
}
.auto-style7 {
	color: #FFFFFF;
	background-color: #0075BA;
	padding: 6px;
	font-weight: 600;
}
.auto-style8 {
	color: #FFFFFF;
	background-color: #FABD00;
	padding: 6px;
	font-weight: 600;
}
.auto-style9 {
	color: #304FFE;
	background-color: #C5CAE9;
	padding: 6px;
	font-weight: 600;
}
.oil30-div {
    margin-top: 1em;
}
/*特徴セクション*/
/* ==================================== */
/* 共通設定 */
/* ==================================== */
.feature-section {
    padding: 20px 20px 80px 20px;
    background-color: #fff;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
}

.feature-content {
    max-width: 800px; /* コンテンツ幅を少し絞って読みやすく */
    margin: 0 auto;
}

/* ==================================== */
/* 1. H2 見出し (前回と同じ) */
/* ==================================== */
.h2-shock-pop {
    position: relative;
    display: block; /* 中央寄せのためブロック要素に */
    width: fit-content;
    margin: 0 auto 60px;
    padding: 20px 40px;
    background: #F44336; /* メインカラー */
    border-radius: 50px; /* 丸みを強くしてポップに */
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.3);
    text-align: center;
    color: #ffffff;
}

.h2-shock-pop .main-text {
    display: block;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
}

.h2-shock-pop .sub-text {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-top: 8px;
    opacity: 0.9;
}

/* ==================================== */
/* 2. メリットリスト (修正：縦積み・大型化) */
/* ==================================== */
.feature-subheader {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #F44336;
    margin-bottom: 30px;
    background: linear-gradient(transparent 70%, #ffcdd2 70%); /* マーカー風の下線 */
    display: inline-block;
    padding: 0 10px;
}
/* 中央揃え用ラッパー */
.feature-content > h3 { 
    display: table; 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 40px;
}


.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px; /* 下のブロックとの余白 */
    display: flex;
    flex-direction: column; /* ★縦積みに変更 */
    gap: 20px; /* リスト間の余白 */
}

.benefit-list li {
    display: flex;
    align-items: center; /* 垂直方向中央揃え */
    background-color: #fff;
    border: 2px solid #F44336; /* ポップな赤枠 */
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 4px 4px 0px rgba(244, 67, 54, 0.2); /* 影をずらしてポップ感を演出 */
    transition: transform 0.2s;
}

.benefit-list li:hover {
    transform: translateY(-3px); /* ホバー時に少し浮く */
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F44336;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0; /* アイコンが潰れないように */
}

.benefit-list .text {
    font-size: 20px; /* ★文字サイズを大きく */
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.benefit-list .highlight {
    color: #D32F2F; /* 少し濃い赤で強調 */
    text-decoration: underline;
    text-decoration-color: #FFCDD2;
    text-decoration-thickness: 4px;
}

/* ==================================== */
/* 3. 実績ブロック (前回好評につき維持) */
/* ==================================== */
.achievement-block {
    background-color: #333;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: center;
}

.achievement-header {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.achievement-detail {
    font-size: 15px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.result-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.result-value {
    font-size: 40px; /* 実績数字を大きく */
    font-weight: 900;
    color: #F44336;
    line-height: 1;
}

.unit {
    font-size: 20px;
    font-weight: bold;
    margin-left: 2px;
}

.result-divider {
    width: 2px;
    height: 60px;
    background-color: #ddd;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .benefit-list li {
        padding: 15px;
    }
    .benefit-list .text {
        font-size: 16px;
    }
    .result-box {
        flex-direction: column;
        gap: 20px;
    }
    .result-divider {
        width: 80%;
        height: 1px;
    }
}
/* ==================================== */
/* CTAセクション (コンバージョンエリア) */
/* ==================================== */
.cta-section {
    background-color: #ffebee; /* メインカラーのごく薄い色を背景に */
    padding: 80px 20px;
    text-align: center;
    border-top: 5px solid #F44336; /* 上部に境界線 */
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

/* マイクロコピー（吹き出し風） */
.cta-micro-copy {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}
/* 吹き出しの三角 */
.cta-micro-copy::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 6px solid #333;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

/* ヘッダー */
.cta-headline {
    font-size: 28px;
    font-weight: 900;
    color: #F44336;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* ==================================== */
/* メインのCTAボタン */
/* ==================================== */
.cta-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: linear-gradient(to bottom, #F44336, #d32f2f); /* 立体感のある赤 */
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 0 #b71c1c, 0 15px 20px rgba(0,0,0,0.2); /* 厚みのあるボタン */
    transition: transform 0.1s, box-shadow 0.1s;
    overflow: hidden; /* 光るエフェクトのはみ出し防止 */
    
    /* 脈動アニメーションの適用 */
    animation: pulse 2s infinite;
}

/* ホバー時の挙動（押した感じ） */
.cta-button:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #b71c1c, 0 5px 10px rgba(0,0,0,0.2);
}

.cta-button:active {
    transform: translateY(5px);
    box-shadow: none;
}

.button-icon {
    font-size: 1.2em;
}

/* 注釈 */
.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

/* ==================================== */
/* アニメーション定義 */
/* ==================================== */

/* 1. ドキドキする動き (Pulse) */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 2. キラッと光るエフェクト (Shine) */
.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; } /* 素早く通り過ぎる */
    100% { left: 200%; }
}

/* スマホ対応 */
@media (max-width: 600px) {
    .cta-headline {
        font-size: 22px;
    }
    .cta-button {
        font-size: 20px;
        width: 90%;
    }
    .feature-section{
	padding:20px 0;
}
}
.auto-style10 {
	text-align: center;
	font-size: 24px;
	color: #FF0000;
}
.auto-style11 {
	font-size: 14px;
}
.auto-style12 {
	text-align: right;
}

