






.footer {
  width: 100%;
  background-color: #f7f7f7;
  color: #333;
  padding: 40px 20px 25px;
  box-sizing: border-box;
  text-align: center;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ロゴ */
.footer__logo img {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* リンク */
.footer__links {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 0.6;
}

/* コピーライト */
.footer__copy {
  font-size: 0.85rem;
  color: #777;
  margin-top: 25px;
  text-align: center;
  width: 100%;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    gap: 15px;
  }
  .footer__links {
    gap: 15px;
  }

.footer__links a {
  color: #333;
  font-size: 0.9rem;
}
	.footer__copy {
    font-size: 0.8rem;
  }
.footer__logo img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

}





	
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* アスペクト比16:9 */
  height: 0;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}







/* スライダーの基本スタイル */
.slider-container {
width: 100%;
overflow: hidden;
position: relative;
background-color: #FFF;
padding: 0px 0;
}

.slider-wrapper {
display: flex;
width: 200%; /* 2倍の幅を確保してループ */
animation: slide 10s linear infinite; /* 一定速度で無限ループ */
}

.slider-wrapper img {
width: auto;
height: 250px; /* 画像の高さを統一 */
margin: 0 10px;
}

@keyframes slide {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); } /* 半分の幅だけスライド */
}


@media screen and (max-width: 767px) {
.slider-wrapper {
animation: slide 6s linear infinite; /* 一定速度で無限ループ */
}
	
.slider-wrapper img {
width: auto;
height: 180px; /* 画像の高さを統一 */
margin: 0 10px;
}

}











/* CTAセクション */
.cta-section {
    text-align: center;
    padding: 50px 50px;
    background: #00a0c6;
    position: relative;
}

.cta-label {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 8px 16px;
    font-size: 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

/* 下矢印 */
.cta-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff9800;
    margin: -10px auto 15px;
}

/* タイトル */
.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #FFF;
    margin-bottom: 10px;
}

.cta-subtext {
    font-size: 16px;
    color: #FFF;
    margin-bottom: 15px;
	color: #FFF;
}
.cta-subtext2 {
    font-size: 16px;
color: #FF0;
    margin-bottom: 15px;
font-weight: 700;
}
 
/* CTAボックス */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    width: 30%;
    max-width: 30%;
}

.cta-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1d3a8a;
    margin-bottom: 15px;
}

.cta-icon {
    font-size: 40px;
    color: #1d3a8a;
    margin-bottom: 10px;
}

/* LINEのアイコンカラー */
.cta-icon.line {
    color: #06c755;
}

/* 電話 */
.cta-phone {
    font-size: 1.7rem;
    font-weight: bold;
}

.cta-phone a {
    text-decoration: none;
    color: #333;
	color: #FF0000 !important;
}

.cta-time {
    font-size: 14px;
    color: #666;
}

/* CTAボタン */
.cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px; /* 角丸を大きく */
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
	box-sizing: border-box;
}

/* LINEボタン */
.cta-btn.line {
    background: #06c755;
    color: white;
}

/* お問い合わせボタン */
.cta-btn.form {
    background: #1d3a8a;
    color: white;
}

.cta-btn i {
    margin-left: 8px;
}


/* スマホ対応 */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    .cta-title {
        font-size: 21px;
    }
	
	.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: #00a0c6;
    position: relative;
}
	
.cta-label {
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}


	
.cta-box {
    background: white;
    padding: 20px;
	box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    width: 100%;
    max-width: 100%;
}
	
}





.ctaprice-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.ctaprice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 90%;
}

.ctaprice-label {
  background-color: #0066cc;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  white-space: nowrap;
}

.ctaprice-text {
  font-size: 22px;
  color: #222;
  text-align: center;
}

.ctaprice-text strong {
  color: #0066cc;
  font-size: 30px;
  font-weight: 700;
}

.ctaprice-text small {
  font-size: 13px;
  color: #555;
}

@media screen and (max-width: 767px) {
  .ctaprice-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .ctaprice-text {
    font-size: 18px;
  }
  .ctaprice-text strong {
    font-size: 26px;
  }
  .ctaprice-text small {
    font-size: 11px;
  }
}


