


@charset "UTF-8";
/* CSS Document */

ul {
    list-style: none;
}

.lp {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: auto;
    box-shadow: 0 0 8px gray;
}
.lp img{
    max-width: 800px;
    width: 100%;
    display: block;
    
}
 
.linkarea {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}


.appointment{
    position: relative;
    
    width: 100%;
    margin: auto;
}

.button img{
    position: absolute;
    content:"";
    top: 55%;
    width: 85%;
    margin: 0 auto;
    left: 7%;
    height: auto;
     animation: cta 2s ease 0s infinite;
}

@keyframes cta {
    0% {transform: scale(1)}
    50% {transform: scale(1.1)}
    0% {transform: scale(1)}
}
 .button img:hover{
  opacity: 0.8;
}





/*  */
/* よくある質問 全体 */


.lp-faq-bg{
background-image: url(../img/lp10.jpg);
  background-size:auto;      /* ← 画像を全体表示（トリミングしない） */
  background-repeat: no-repeat;  /* ← 繰り返さない */
  background-position: center;   /* ← 中央に配置 */
  background-color: #F0F0F0;        /* ← 余白が出た時の背景色（お好みで） */
  width: 100%;
              
  
}
.lp-faq {

  max-width: 760px;
  padding: 10% 2%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}

.lp-faq__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #b50000;
}

/* アコーディオンブロック */
.c-accordion {
  border: 2px solid #b50000;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Q部分（dt） */
.c-accordion__heading {
  position: relative;
  cursor: pointer;
  padding: 18px 50px 18px 70px; /* 左に少し余裕 */
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 60px;
}

.c-accordion__heading::before {
  content: "Q";
  position: absolute;
  top: 50;
  left: 0;
  width: 50px;
  height: 100%;
  background: #b50000;
  color: #fff;
  font-weight: bold;
 
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 1.4rem;
}

/* プラス・マイナスアイコン */
.c-accordion__heading::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: bold;
  color: #b50000;
  transition: transform 0.3s ease;
}

/* 開いた状態（is-openクラス） */
.c-accordion.is-open .c-accordion__heading::after {
  content: "−";
}

/* A部分（dd） */
.c-accordion__container {
  display: none;
  position: relative;
  background: #fff;
  padding: 20px 20px 20px 60px;
  border-top: 1px solid #b50000;
  color: #333;
  line-height: 1.8;
    font-size: 1rem;
}

.c-accordion__container::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 16px;
  background: #b50000;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
    font-size: 1.2rem;
}

/* 開いた状態を表示 */
.c-accordion.is-open .c-accordion__container {
  display: block;
}

/* hover時の軽い反応 */
.c-accordion__heading:hover {
  background: #fff8f8;
}
