/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* ▼ ロゴとキャッチコピーの位置＆ fade-in アニメーション */
/* ロゴ・テキストの中央配置 */
/* ==============================
   トップスライダーロゴセット
   ============================== */
/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/
/*文字サイズ*/
h1.entry-title {
font-size: 24px;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 20px;
}

h4 {
font-size: 18px;
}

p {
font-size:17px;
}

.content_title01{
	font-size: calc(1.3rem + .2vw) !important;
}
.copySection{
	padding-bottom: 0.2rem;
	padding-top: 1rem;
}
.copySection p{
	font-size: 12px !important;
}
/* ==============================
   トップスライダー ロゴセット
   ============================== */
.carousel-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  animation: fadeInLogo 1.8s ease-out forwards;
	max-width: 55% !important;
}

/* ロゴ画像 */
.carousel-logo {
  width: 100% !important;
  height: auto;
  opacity: 0.9;
	margin-bottom: 1rem;
	max-width: 200px !important;
}

/* テキスト画像 */
.carousel-logotext-img {
  display: block;
  width: 100% !important; /* サイズ調整 */
  height: auto;
  margin-top: 12px;
	max-width: 500px !important;
}

/* フェードインアニメーション */
@keyframes fadeInLogo {
  0%   { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

@media (max-width: 767px) {
  .carousel-logo { width: 50% !important; }
}
.carousel-logo-wrap {
  animation: fadeInLogo 1s ease forwards;
  animation-delay: 1s; /* ← ここで1秒遅延 */
}