@charset "utf-8";
/* CSS Document */




/*--====== パンくずリスト ======--*/
/* パンくず全体 */
#pan_box {
  text-align: right; /* 全体を右寄せ */
	background: #01c0ef;
}

.topic-path {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 15px;
  left: 2.2%;
  z-index:999;
}

.topic-path li {
  font-size: 60%;
  letter-spacing: 2px;
  font-weight: bold;
}

.topic-path li a,
.topic-path li.visited {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

/* 通常のリンクボタン */
.topic-path li a {
  color: #333;
}

.topic-path li a:hover {
  background: #ffe680;
  border-color: #f0c040;
}

/* visited風デザイン（固定） */
.topic-path li.visited {
  background: #ffe680;
  color: #555;
  border-color: #f0c040;
}

.topic-path li:not(:last-child)::after {
  content: '➔'; /* 矢印 */
  color: gold;
  margin: 0 0px 0px 8px;
  font-size: 15px;
}
/*--====== ここまでパンくずリスト ======--*/




.mainvisual{
	width: 100%;
	height: 574px;
	background:url(../img/web_sns-koukoku/mainvisual.jpg) center top no-repeat;
	position: relative;
}
h1.main_title{
	z-index: 100;
	text-align: center;
	color: #FFF;
	font-size: 280%;
	letter-spacing: 5px;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 2px 2px #000;
	position: relative;
	top: 260px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}
span.ss_title{
	font-size:77%;
}





main {
	background: #01c0ef;
	padding-bottom: 180px;
}

article.container {
  width: 80%;
  height: auto;
  max-width: 1200px; 
  margin: 0 auto;
  background: #FFF;
  border-radius: 30px;
  position: relative;
  top: 50px;
  padding-bottom: 110px;
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }
}
	

h2.title_01{
	text-align: center;
	color: #444;
	letter-spacing: 2px;
	font-size: 200%;
	font-weight: normal;
	padding-top: 70px;
	padding-bottom: 20px;
}
.photo_01 img {
  max-width: 85%;
  height: auto;
  display: block;   
  margin: 0 auto;   
}


p.text_01{
	text-align: justify;
	letter-spacing: 2px;
	line-height: 1.6;
	font-size: 110%;
	color: #535353;
	width: 85%;
	margin:0 auto;
	padding-top: 5px;
	padding-bottom: 30px;
}


.ad-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ad-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #f5f5f5; /* ポップな水色 */
  padding: 2rem;
  border-radius: 1.5rem;
}

/* 画像 */
.ad-section .photo_02 img {
  width: 99%;
  max-width: 680px;
  border-radius: 1rem;
}
.ad-text {
  max-width: 90%;
  margin: 0 auto 2rem;
  text-align: left;
}

.ad-text h3 {
  font-size: 1.5rem;
  color: #2196f3;
  margin-bottom: 0.8rem;
}

/* SNSアイコンの横並び */
.sns-icons {
  display: flex;
  gap: 1rem; /* アイコン間の隙間 */
  margin-bottom: 1rem;
}

.sns-icons img {
  width: 36px;  /* アイコンサイズ */
  height: 36px;
  transition: transform 0.3s ease;
}

.sns-icons img:hover {
  transform: scale(1.2); /* ホバーで少し拡大 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .ad-section {
    flex-direction: column;
    text-align: center;
  }
  .ad-section .photo_02 img {
    max-width: 100%;
  }
  .ad-text {
    margin-top: 1rem;
  }
}




.ad-price {
  width: 95%;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 1rem;
}

.ad-price h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #2196f3;
  margin-bottom: 1rem;
}

.price {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  overflow: hidden;
  border-radius: 0.8rem;
}

.price thead {
  background: #2196f3;
  color: #fff;
}

.price th, .price td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.price tbody tr:nth-child(even) {
  background: #f0f8ff;
}

.price tbody tr:hover {
  background: #e3f2fd;
  transition: background 0.3s ease;
}

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .price, .price thead, .price tbody, .price th, .price td, .price tr {
    display: block;
    width: 100%;
  }

  .price thead {
    display: none; /* スマホではヘッダー非表示 */
  }

  .price tr {
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    padding: 1rem;
  }

  .price td {
    text-align: left;
    padding: 0.5rem 0;
    border: none;
  }

  .price td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    color: #2196f3;
    margin-bottom: 0.3rem;
  }
}



.ad-flow {
  width: 95%;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #f9fcff;
  border-radius: 1rem;
}

.ad-flow h3 {
  font-size: 160%;
  margin: 1.5rem 0 1rem;
  color: #06F;
  border-left: 5px solid #F60;
  padding-left: 0.6rem;
}

/* 運用の流れ */
.flow-list {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flow-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #2196f3;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.6rem;
}

/* メリットのリスト */
.check {
  list-style: none;
  padding: 0;
  margin: 0 20px;
}

.check li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* CTAボックス */
.cta-box {
  margin-top: 2rem;
  padding: 2.5rem 2.5rem 4rem 2.5rem;
  text-align: center;
  background: #F60;
  color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 7px double #f9fcff;
}

.cta-box h3 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  color: #FFF;
}

.cta-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cta-box .btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  background: #fff;
  color: #2196f3;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-box .btn:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .flow-list li {
    padding: 1rem;
  }
  .flow-list li::before {
    left: -0.5rem;
    top: -0.5rem;
    transform: none;
  }
}








