body{
  margin:0;
  font-family: sans-serif;
  background:#0f0f0f;
  color:#fff;
}

/* ----------------------------------------------
Site__Wrapper
---------------------------------------------- */
#Site__Wrapper{
    width: 100%;
    /* height: 100vh; */
    height: auto;
    min-height: 100vh;
    overflow-x: hidden; /* 横スクロールバーが出るのを禁止する */
}

.header{
  height: 72px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;

  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transform: translateY(0);
}

/* 中身 */
.header-inner{
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding:0 24px;
}

/* ロゴ */
.logo{
    width: 120px;
    height: auto;
}

/* ナビ */
nav a{
  color: #ccc !important;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover{
  color: #fff !important;
}

/* Hero */
.hero{
  height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(#000,#1a1a1a);
}

.hero h1{
  font-size:36px;
}

.hero p{
  color:#aaa;
  margin:20px 0;
}

/* CTA */
.cta-big{
  display:inline-block;
  padding:16px 30px;
  background:linear-gradient(90deg,#ff7a18,#ff3c3c);
  border-radius:10px;
  color:#fff;
  font-weight:bold;
  margin-top:20px;
}

.cta{
  display:inline-block;
  margin-top:10px;
  color:#ff4d4d;
}

/* Top Item */
.top-item{
  padding:80px 5%;
  text-align:center;
}

.item-box{
  display:flex;
  gap:30px;
  align-items:center;
  justify-content:center;
  margin-top:40px;
}

.item-box img{
  width:250px;
}

.item-info{
  max-width:400px;
  text-align:left;
}

.c1,
.c2{
  padding: 80px 5%;
  text-align: center;
}

.c1 h2,
.c2 h2{
  font-size: 30px;
  margin-bottom: 10px;
}

.c1 p,
.c2 p{
  display: inline-block;
  text-align: left;
  line-height: 1.3;
  margin-bottom: 10px;
}

table{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.item-bold{
  font-weight: bold;
}

table img{
  width: 80px;
}

.rank1bg{
  background-color: #190002;
}

/* Compare */
.compare{
  padding:80px 5%;
  text-align: center;
}



td,th{
  padding:10px;
  border-bottom:1px solid #333;
  text-align: left;
}

.tranking{
    text-align: center;
}

.cranking{
    width: 25%;
    white-space: nowrap;
    line-height: 1.5;
}
.rank1{
  background:#1a0000;
}

/* CTA */
.cta-section{
  padding:100px 20px;
  text-align:center;
}