@charset "UTF-8";

/* ===== 基本設定 ===== */
html {
  font-size: 100%;
  height: 100%;
}

body {
  color: #050507;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
}

main {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: #000000;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

/* ===== ヘッダー ===== */
#header {
  padding: 20px 0;
}

.tell-img {
  width: 7%;
}

.logo {
  width: 20%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-sales {
  font-weight: 400;
  line-height: 1.6;
  margin: 0 2em 0 0;
}

.tell {
  text-align: center;
  margin: 0 2em 0 0;
}

.phone-number a {
  color: #ff8e24;
  font-size: 2em;
  font-weight: 800;
}

.plan-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.plan-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-list {
  display: flex;
  align-items: center;
}

.menu-list li {
  margin: 1em 0;
}

.menu-list a {
  color: #ff8e24;
  font-weight: 500;
  margin: 0 1em;
}

/* ===== トップセクション ===== */
#top {
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-img {
  margin-bottom: 20px;
}

#top p {
  font-size: 1.5em;
  line-height: 1.6;
  margin: 0;
}

#top span {
  font-size: 2em;
  font-weight: 700;
  color: #ff8e24;
}

.project {
  margin: 5em auto;
}

/* ===== スライダー ===== */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 2em auto;
  max-width: 1200px;
}

.slider-container {
  width: 50vw;
  height: 30vw;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider {
  width: 500%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  width: 20%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  background: rgba(255, 142, 36, 0.8);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: #ff8e24;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ff8e24;
  background: rgba(255, 142, 36, 0.2);
  color: #ff8e24;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #ff8e24;
  color: white;
}

/* ===== グリッドセクション ===== */
.grid-img {
  width: 60%;
  margin: 0 auto 2em;
  display: block;
}

.grid-title {
  background: linear-gradient(135deg, #ff7b00 0%, #f77c50 50%, #ff1a00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin: 1em 0;
}

/* ===== 比較表 ===== */
.comparison-table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.company-header,
.feature-header {
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  color: white;
  font-weight: 700;
  font-size: 1.1em;
  width: 15%;
  height: 10%;
}

.company-name {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 1.1em;
}

.our-company {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
}

.our-company .company-name {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  font-weight: 700;
}

.good {
  color: #28a745;
  font-size: 1.5em;
  font-weight: 700;
}

.average {
  color: #ffc107;
  font-size: 1.5em;
  font-weight: 700;
}

.poor {
  color: #dc3545;
  font-size: 1.5em;
  font-weight: 700;
}

/* ===== ミニコンタクト ===== */
.mini-contact {
  max-width: 1200px;
  margin: 5em auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}

.my-profile h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #ff6b35;
}

.my-profile p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1em;
}

.access {
  text-align: center;
}

.access-btn {
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 142, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.access-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 142, 36, 0.4);
  background: linear-gradient(135deg, #ff6b35 0%, #e74c3c 100%);
}

.access-btn:active {
  transform: translateY(-1px);
}

.access-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.access-btn:hover::before {
  left: 100%;
}

.access-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  text-decoration: none;
  gap: 10px;
}

.access-img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* ===== コンテナセクション ===== */
.bg {
  display: flex;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.container p {
  font-size: 1.8em;
  margin: 0 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid #ff6b35;
  position: relative;
}

.container h2 {
  margin: 40px 0 0 0;
  font-size: 2.2em;
  line-height: 1.4;
}

.container span {
  font-size: 1.2em;
  color: #ff6b35;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== ブロックセクション ===== */
.block01,
.block02,
.block03 {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 3em auto;
  width: 80%;
  padding: 30px;
  background: #ffffff;
  border: 2px solid #ff8e24;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(255, 142, 36, 0.15);
  position: relative;
  overflow: hidden;
  gap: 30px;
}

.block01::before,
.block02::before,
.block03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8e24 0%, #ff6b35 50%, #e74c3c 100%);
}

.block-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 40px;
  min-width: 200px;
}

.block-text01,
.block-text02 {
  padding: 15px 25px;
  font-weight: 700;
  text-align: center;
  font-size: 1.1em;
}

.block-text01 {
  background: #ff6b35;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.block-text02 {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.main-text-01 {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.main-text-02 {
  font-size: 1.5em;
  font-weight: 700;
  color: #20c997;
  margin: 0;
}

.block-image {
  flex-shrink: 0;
  width: 250px;
}

.block-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== メインコンテンツセクション ===== */
#three-content {
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 50%, #e74c3c 100%);
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
  margin-top: 10em;
  width: 100%;
    margin-bottom: 0;
}

#three-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
}

#three-content .wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 50px;
}

#three-content .inner {
  text-align: center;
}

#three-content .content-title {
  font-size: 3.5em;
  font-weight: 700;
  color: white;
  margin: 0 0 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#three-content .content-title .filter {
  background: rgba(32, 201, 151, 0.8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  filter: blur(1px);
  opacity: 0.7;
  position: relative;
}

#three-content .content-title .rial {
  background: #20c997;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#three-content .sub-title {
  font-size: 1.8em;
  font-weight: 400;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#three-content .sub-title span {
  font-weight: 700;
  color: #fff3cd;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== コンテンツボックス ===== */
.content-flex {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.content-box01,
.content-box02,
.content-box03 {
  display: flex;
  flex-direction: column;
  background: white;
  border: 2px solid #ff8e24;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(255, 142, 36, 0.15);
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 350px;
  min-height: 400px;
}

.content-box01::before,
.content-box02::before,
.content-box03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8e24 0%, #ff6b35 50%, #e74c3c 100%);
}

.box-title {
  text-align: center;
  margin-bottom: 20px;
}

.box-title h4 {
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 0;
  font-size: 1.1em;
  font-weight: 700;
}

.box-img {
  text-align: center;
  margin-bottom: 20px;
}

.box-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.box-subtitle {
  font-size: 1.3em;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 15px 0;
}

.box-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin: 0;
}

/* ===== テキストエリア ===== */
.content-text-area {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.text-area-title01 {
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.text-area-title01 span {
  font-weight: 700;
  color: #20c997;
  font-size: 1.2em;
}

/* ===== グラフセクション ===== */
.pie-chart-section {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.charts-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.chart-item {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.chart-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #333;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 円グラフ */
.pie-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pie-chart {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #ff8e24 0deg 287.28deg,
    #888888 287.28deg 360deg
  );
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.pie-chart:hover {
  transform: scale(1.05);
}

.pie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pie-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.pie-total {
  font-size: 1.5em;
  font-weight: 800;
  color: #ff8e24;
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: inline-block;
}

.legend-color.hp-exists {
  background: #ff8e24;
}

.legend-color.hp-none {
  background: #888888;
}

/* 棒グラフ */
.bar-chart-container {
  max-width: 500px;
  margin: 0 auto;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-label {
  font-size: 1em;
  font-weight: 600;
  color: #333;
  text-align: left;
  padding-left: 5px;
}

.bar-wrapper {
  width: 100%;
  height: 40px;
  background: #f0f0f0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bar {
  height: 100%;
  background: linear-gradient(135deg, #ff8e24 0%, #ff6b35 100%);
  border-radius: 20px;
  position: relative;
  transition: width 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
}

.bar[data-percentage="49.8"] { width: 49.8%; }
.bar[data-percentage="35.3"] { width: 35.3%; }
.bar[data-percentage="33.4"] { width: 33.4%; }
.bar[data-percentage="32.6"] { width: 32.6%; }

.bar-percentage {
  font-size: 0.9em;
  font-weight: 700;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== マーケティングセクション ===== */
.wrapper {
  margin: 0 9em;
  margin-bottom: 50px;
}

.marketing {
  width: 100%;
  margin: 7em auto 0;
  text-align: center;
}

.marketing p {
  font-size: 1.5em;
  font-weight: 400;
}

.marketing span {
  color: #20c997;
  font-size: 1.7em;
  font-weight: 700;
  text-shadow: 
    1px 1px 2px rgba(0, 0, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.2),
    3px 3px 6px rgba(0, 0, 0, 0.1);
}

/* ===== フッター ===== */
#footer {
  background: #2c3e50 !important;
  color: white !important;
  padding: 60px 20px 20px !important;
  width: 100% !important;
  min-height: 300px !important;
  box-sizing: border-box !important;
  position: relative !important;
  clear: both !important;
  display: block !important;
  visibility: visible !important;
  margin-top: 0 !important;
  z-index: 999 !important;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}

.footer-content p {
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0 0 15px 0;
  color: #ecf0f1;
}

.contact {
  margin: 20px 0;
  color: #bdc3c7;
  font-size: 1.1em;
}

.sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.sns li a {
  color: #ff8e24;
  font-size: 1.2em;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 15px;
  border: 2px solid #ff8e24;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.sns li a:hover {
  background: #ff8e24;
  color: white;
}

.copyright {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.copyright p {
  font-size: 0.9em;
  color: #95a5a6;
  margin: 0;
}

/* ===== レスポンシブ対応 ===== */

/* 1200px以下 */
@media (max-width: 1200px) {
  .charts-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .chart-item {
    min-width: auto;
    width: 100%;
    max-width: 600px;
  }
}

/* 1024px以下 */
@media (max-width: 1024px) {
  .header-top {
    flex-direction: column;
    gap: 20px;
  }
  
  .company-sales {
    margin: 0;
    text-align: center;
  }
  
  .tell {
    margin: 0;
  }
  
  .phone-number a {
    font-size: 1.5em;
  }
  
  .menu-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #top p {
    font-size: 1.2em;
  }
  
  #top span {
    font-size: 1.5em;
  }
  
  .slider-container {
    width: 80vw;
    height: 45vw;
  }
  
  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .dot {
    width: 35px;
    height: 35px;
  }
  
  .grid {
    width: 90%;
    padding: 30px 15px;
  }
  
  .grid-title {
    font-size: 2.5em;
  }
  
  .grid-img {
    width: 80%;
  }
  
  .comparison-table {
    width: 100%;
    font-size: 0.9em;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 5px;
  }
  
  .mini-contact {
    width: 90%;
    padding: 30px 15px;
  }
  
  .profile {
    flex-direction: column;
    text-align: center;
  }
  
  .my-profile h3 {
    font-size: 1.3em;
  }
  
  .access-btn {
    padding: 12px 30px;
  }
  
  .access-btn a {
    font-size: 1.1em;
  }
  
  .container {
    padding: 30px 15px;
  }
  
  .container p {
    font-size: 1.5em;
    font-weight: 500;
  }
  
  .container h2 {
    font-size: 1.8em;
  }
  
  .block01,
  .block02,
  .block03 {
    flex-direction: column;
    width: 90%;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .block-title {
    flex-direction: row;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 20px;
    min-width: auto;
  }
  
  .block-text01,
  .block-text02 {
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 10px;
  }
  
  .main-text {
    text-align: center;
  }
  
  .main-text-01 {
    font-size: 1.2em;
    color: #ff8e24;
  }
  
  .main-text-02 {
    font-size: 1.3em;
    color: #20c997;
  }
  
  .block-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  #three-content {
    padding: 60px 0;
  }
  
  #three-content .wrapper {
    padding: 0 15px;
  }
  
  #three-content .content-title {
    font-size: 2.5em;
  }
  
  #three-content .sub-title {
    font-size: 1.5em;
  }
  
  #three-content .sub-title span {
    font-size: 1.2em;
  }
  
  .content-flex {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .content-box01,
  .content-box02,
  .content-box03 {
    max-width: none;
    padding: 25px;
  }
  
  .box-title h4 {
    font-size: 1em;
    padding: 8px 16px;
    width: 30%;
    margin: 0 auto;
  }
  
  .box-img img {
    height: 100%;
  }
  
  .box-subtitle {
    font-size: 1.2em;
  }
  
  .box-text {
    font-size: 0.9em;
    font-weight: 500;
  }
  
  .content-text-area {
    padding: 0 15px;
  }
  
  .text-area-title01 {
    font-size: 2em;
    white-space: normal;
  }
  
  .text-area-title01 span {
    font-size: 1.1em;
  }
  
  .pie-chart-section {
    margin: 60px 2em 0;
    padding: 30px 15px;
  }
  
  .charts-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .chart-item {
    min-width: auto;
    width: 100%;
  }
  
  .chart-title {
    font-size: 1.5em;
  }
  
  .pie-chart-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .pie-chart {
    width: 280px;
    height: 280px;
  }
  
  .pie-center {
    width: 100px;
    height: 100px;
  }
  
  .pie-title {
    font-size: 1em;
  }
  
  .pie-total {
    font-size: 1.3em;
  }
  
  .legend-item {
    font-size: 1em;
  }
  
  .bar-chart-container {
    max-width: 400px;
  }
  
  .bar-label {
    font-size: 0.9em;
  }
  
  .bar-wrapper {
    height: 35px;
  }
  
  .bar-percentage {
    font-size: 0.8em;
  }
  
  .wrapper {
    margin: 0 2em;
  }
  
  .marketing {
    margin: 5em auto;
  }
  
  .marketing p {
    font-size: 1.3em;
  }
  
  .marketing span {
    font-size: 1.5em;
  }
  #footer {
    height: 83vh;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  
  .company-sales {
    font-size: 0.9em;
    text-align: center;
    margin: 0;
  }
  
  .phone-number a {
    font-size: 1.8em;
  }
  
  .plan-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .menu-list a {
    margin: 0 0.5em;
    font-size: 0.9em;
  }
  
  #top {
    padding: 30px 15px;
  }
  
  #top p {
    font-size: 1.1em;
  }
  
  #top span {
    font-size: 1.4em;
  }
  
  .slider-container {
    width: 90vw;
    height: 50vw;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .dot {
    width: 30px;
    height: 30px;
    font-size: 0.8em;
  }
  
  .grid {
    width: 95%;
    padding: 25px 15px;
    margin: 3em auto;
  }
  
  .grid-title {
    font-size: 2em;
    margin: 0 0 1.5em 0;
  }
  
  .grid-img {
    width: 90%;
  }
  
  .comparison-table {
    width: 100%;
    font-size: 0.8em;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 4px;
  }
  
  .company-header,
  .feature-header {
    font-size: 0.9em;
  }
  
  .company-name {
    font-size: 1em;
  }
  
  .good,
  .average,
  .poor {
    font-size: 1.2em;
  }
  
  .mini-contact {
    width: 95%;
    padding: 25px 15px;
    margin: 3em auto;
  }
  
  .profile {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .my-profile h3 {
    font-size: 1.2em;
  }
  
  .my-profile p {
    font-size: 0.9em;
  }
  
  .access-btn {
    padding: 12px 25px;
  }
  
  .access-btn a {
    font-size: 1em;
  }
  
  .access-img {
    width: 20px;
    height: 20px;
  }
  
  .container {
    padding: 25px 15px;
  }
  
  .container p {
    font-size: 1.3em;
  }
  
  .container h2 {
    font-size: 1.5em;
  }
  
  .container span {
    font-size: 1.1em;
  }
  
  .block01,
  .block02,
  .block03 {
    flex-direction: column;
    width: 95%;
    padding: 20px 15px;
    gap: 20px;
    margin: 2em auto;
  }
  
  .block-title {
    gap: 15px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .block-text01,
  .block-text02 {
    padding: 10px 15px;
    font-size: 0.9em;
    margin: 0;
    min-height: 45px;
  }
  
  .main-text {
    text-align: center;
  }
  
  .main-text-01 {
    font-size: 1.1em;
  }
  
  .main-text-02 {
    font-size: 1.2em;
    color: #20c997;
  }
  
  .block-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  #three-content {
    padding: 50px 0;
    margin-top: 5em;
  }
  
  #three-content .wrapper {
    padding: 0 15px;
  }
  
  #three-content .content-title {
    font-size: 2em;
    line-height: 1.2;
  }
  
  #three-content .content-title .filter {
    filter: blur(2px);
    opacity: 0.6;
  }
  
  #three-content .sub-title {
    font-size: 1.3em;
  }
  
  #three-content .sub-title span {
    font-size: 1.1em;
  }
  
  .content-flex {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .content-box01,
  .content-box02,
  .content-box03 {
    max-width: none;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    min-height: 350px;
  }
  
  .box-title h4 {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  
  .box-img img {
    height: 100%;
  }
  
  .box-subtitle {
    font-size: 1.1em;
  }
  
  .box-text {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .content-text-area {
    padding: 0 15px;
    margin: 40px auto 0;
  }
  
  .text-area-title01 {
    font-size: 1.5em;
    white-space: normal;
    line-height: 1.3;
  }
  
  .text-area-title01 span {
    font-size: 1em;
  }
  
  .pie-chart-section {
    margin: 5em auto;
    padding: 25px 15px;
    width: 95%;
    max-width: none;
  }
  
  .charts-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .chart-item {
    min-width: auto;
    width: 100%;
  }
  
  .chart-title {
    font-size: 1.3em;
    margin-bottom: 20px;
  }
  
  .pie-chart-container {
    flex-direction: column;
    gap: 25px;
  }
  
  .pie-chart {
    width: 250px;
    height: 250px;
    min-width: 250px;
    min-height: 250px;
  }
  
  .pie-center {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
  }
  
  .pie-title {
    font-size: 0.9em;
  }
  
  .pie-total {
    font-size: 1.2em;
  }
  
  .legend-item {
    font-size: 0.9em;
    gap: 10px;
    min-height: 25px;
  }
  
  .legend-color {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }
  
  .bar-chart-container {
    max-width: 350px;
    min-width: 300px;
  }
  
  .bar-label {
    font-size: 0.8em;
  }
  
  .bar-wrapper {
    height: 30px;
    min-height: 30px;
  }
  
  .bar-percentage {
    font-size: 0.75em;
    padding-right: 10px;
  }
  
  .wrapper {
    margin: 0 1em;
  }
  
  .marketing {
    margin: 3em auto;
  }
  
  .marketing p {
    font-size: 1.2em;
  }
  
  .marketing span {
    font-size: 1.3em;
    display: block;
    margin-top: 10px;
  }
  
  #footer {
    height: 75vh;
}
}

/* 480px以下 */
@media (max-width: 480px) {
  .slider-container {
    width: 95vw;
    height: 55vw;
  }

  .slider-wrapper {
    gap: 0;
  }
  
  .grid-title {
    font-size: 1.8em;
  }
  
  #three-content .content-title {
    font-size: 1.7em;
  }
  
  .text-area-title01 {
    font-size: 1.3em;
  }
  
  .chart-title {
    font-size: 1.1em;
  }
  
  .pie-chart {
    width: 220px;
    height: 220px;
  }
  
  .bar-chart-container {
    max-width: 300px;
  }
  
  .phone-number a {
    font-size: 1.5em;
  }
  
  .comparison-table {
    font-size: 0.7em;
  }
  
#footer {
    height: 75vh;
}
}

@media (max-width: 480px) {
  #footer {
    height: 50vh;
  }
}