@charset "UTF-8";
@media screen and (min-width: 640px) {
    .wrapper {
        width: 700px;
        padding: 0 0 0 0;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 0 39px 0 #cbcbcb;
        position: relative;
    }
}

/* 初期設定 ------------------------------------------------------ */

body{
    margin: 0;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.abs {
    position: absolute;
}
.rel {
    position: relative;
}
.mt10 {
    margin-top: 10px;
}
.mt0 {
    margin-top: 0px;
}
.mb0 {
    margin-bottom: 0;
}
.fcr {
    color: #ff0000;
}
.fco {
    color: #ff5e10;
}
.fcy {
    color: #ffce1a;
}
.fcb {
    color: #2896dc;
}
.fss {
    font-size: 12px;
    font-size: smaller;
}
.fsm {
    font-size: clamp(19px, 1.8vw, 30px);
}
.fsl {
    font-size: 21px;
}
.fsll {
    font-size: 23px;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.mark {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#ffff00 0%) repeat scroll 0 0;
}
#wrapper{
    margin: auto;
}
img,video {
    width: 100%;
    vertical-align: middle;
}
.anno {
    font-size: 10px;
    color: gray;
    text-align: right;
    margin-top: -10px;
}

@media only screen and (min-width: 767px){
    .sp {
        display: none!important;
    }
    .pc {
        display: block;
    }
}
@media only screen and (max-width: 766px){
    .sp {
        display: block;
    }
    .pc {
        display: none!important;
    }
}

p {
    font-size: clamp(14px, 1.2vw, 24px);
    color: #363636;
}

a {
    text-decoration: none;
}

img.pics {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ヘッダー ------------------------------------------------------ */
.header {
    padding: 2% 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.h_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.h_left img {
    width: 90%;
}

.h_right p {
    margin: 0 0 0 10px;
    width: 35%;
}


/* CTAエリア ------------------------------------------------------ */

/* 基本レイアウト */
.cta-area {
  text-align: center;
  margin: 8% 0 10%;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.cta-sub {
  font-size: 16px;
  color: #333;
  margin: 0 0 10px;
}

/* 10分 の強調とアニメ */
.highlight {
  color: #ff6c00;
  display: inline-block;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 1s infinite;
}

@media only screen and (min-width: 767px){
    .cta-title {
        font-size: 2.5rem;
    }
    .cta-sub {
        font-size: 1.5rem;
    }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 90%;
  margin: 0 auto;
}

/* ラッパーに角丸・影をつける */
.btn-wrapper {
    display: inline-block;
    border-radius: 5px; /* 画像の角丸に合わせる */
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* アニメーションと影はラッパーに適用 */
.tel-btn .btn-wrapper {
    animation: button-bounce-tel 2.5s infinite;
    animation-delay: 0.3s;
}

.mail-btn .btn-wrapper {
    animation: button-bounce-mail 2.5s infinite;
    animation-delay: 0.3s;
}

.tel-btn .btn-wrapper img,
.mail-btn .btn-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* 押し込み風のアニメーション */
@keyframes button-bounce-tel {
  0%   { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
  10%  { transform: translateY(5px); box-shadow: none; }
  20%  { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
  30%  { transform: translateY(5px); box-shadow: none; }
  40%  { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
  70%  { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
  80%  { transform: translateY(5px); box-shadow: none; }
  90%  { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
  100% { transform: translateY(0); box-shadow: 0 5px 0 #b84b00; }
}

@keyframes button-bounce-mail {
  0%   { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
  10%  { transform: translateY(5px); box-shadow: none; }
  20%  { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
  30%  { transform: translateY(5px); box-shadow: none; }
  40%  { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
  70%  { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
  80%  { transform: translateY(5px); box-shadow: none; }
  90%  { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
  100% { transform: translateY(0); box-shadow: 0 5px 0 #005bbb; }
}


/* お客様の声 ------------------------------------------------------ */
.uservoice {
    text-align: center;
    padding: 0 0 8%;
}

.voice_area {
    background-color: #e0f2ff;
}

.voice_ttl {
    margin-bottom: -20%;
}

.voice_inner {
    width: 100%;
}

.voice ul {
    padding: 0 5%;
    margin: 0 auto;
}

.slick-slide img {
    width: 95%;
    height: auto;
    margin: 0 auto;
}

.slick-dots {
    position: absolute;
    bottom: -4% !important;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: #e0f2ff;
}

/* 矢印 */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  border: none !important;
  z-index: 10;
  width: 30px !important; 
  height: 30px !important;
}

.slick-prev {
  left: 2% !important; 
}

.slick-next {
  right: 2% !important;
}

.slick-prev img,
.slick-next img {
  width: 100%;
  height: auto;
}

.slick-prev:before,
.slick-next:before {
  content: none !important;
}

.slick-dotted.slick-slider {
    margin: 0 auto;
    padding: 0 3%;
}

/* よくある質問 ------------------------------------------------------ */
.faq_area {
    padding: 2% 5% 6%;
    background-color: #e0f2ff;
}

.faq_ttl h2 {
    margin: 6% 5%;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}
  
.faq-icon {
    width: 30px;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 4px;
}
  
.faq-content {
    flex: 1;
}
  
/* Q吹き出し */
.faq-question-box {
    background-color: #007bcd;
    color: #fff;
    border-radius: 10px;
    position: relative;
    padding: 16px 40px 16px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
}
.faq-question-box::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 14px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #007bcd;
}
  
.toggle-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
  
/* 横線 */
.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
  
/* 横棒 */
.toggle-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
  
/* 縦棒 */
.toggle-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
  
/* 開いているときは縦棒を透明にして「−」に */
.faq-question-box.active .toggle-icon::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
}
  
  
.faq-answer-box {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    position: relative;
    margin-bottom: 4%;
}

.faq-question-box,
.faq-answer-text {
  width: 100%;
  box-sizing: border-box;
}
  
  
/* Aの吹き出し部分（Qと構造を揃える） */
.faq-answer {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.faq-answer-text {
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    position: relative;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

/* Aの三角矢印（Qと同様） */
.faq-answer-text::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
}

/* 開閉アニメーションの外枠 */
.faq-answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;
}

.faq-answer-box.open {
  max-height: 1000px;
}
  


/* お問い合わせフォーム ------------------------------------------------------ */

.anke{
    background: #e3e3e3;
  }
  .anke h2{
      width: 700px;
      margin: 0 auto;
      padding: 50px 0 30px;
  }
  .form_content{
      max-width: 990px;
      margin: 0 auto;
      padding: 0 20px 100px;
      background: #e7e7e7;
  }
  .form_ttl{
      padding: 30px 22%;
      border-radius: 30px 30px 0 0;
  }
  .form_content .container{
      background-color: #fff;
      padding: 40px 30px;
  }
  .arrow{
      max-width: 600px;
      width: 100%;
      margin: 10px auto 20px;
  }
  
  .slide-next.question_btn_next:disabled {
    background: #ccc;
      box-shadow: 0px 9px 0px 0px rgba(185, 185, 185, 1);
  }
  button.slide-next.question_btn_next {
        display: block;
      text-align: center;
      margin: auto;
      background: linear-gradient(to bottom, #56b2fb, #2484d1);
      box-shadow: 0px 9px 0px 0px #003078;
      font-weight: bold;
      width: 220px;
      height: 50px;
      color: #fff;
      font-size: 20px;
      border-radius: 10px;
      border: none;
      margin-top: 2%;
  }
   .q3_input {
      height: 35px;
      width: 95%;
      font-size: 18px;
      margin: 10px auto 15px;
  }
  label span.must {
      margin-left: 10px;
      color: #fff;
      background: #e80000;
      padding: 4px 4px 4px;
      font-size: 11px;
      margin-bottom: 3px;
      margin-right: 2px;
      border-radius: 3px;
  }
  label b{
      border-left: 10px solid #363636;
      padding: 3px 0 3px 7px;
  }
  .q_text{
      padding: 0 10px;
  }
  .q_text01>div {
      margin: 20px 10px 35px;
  }
  .postcode1,.postcode2{
      height: 35px;
      max-width: 170px;
      width: 100%;
      font-size: 18px;
      margin: 10px auto 20px;
  }
  .prefecture{
      height: 35px;
      max-width: 400px;
      width: 95%;
      font-size: 18px;
      margin: 10px 10px 20px;
  }
  .city{
      height: 35px;
      max-width: 450px;
      width: 100%;
      font-size: 18px;
      margin: 10px 10px 20px;
  }
  
  .address{
      height: 35px;
      max-width: 500px;
      width: 100%;
      font-size: 18px;
      margin: 10px 10px 20px;
  }
  .q_text02>div {
      margin: 20px 10px 35px;
  }
  
  .tel1{
      height: 35px;
      max-width: 100px;
      width: 100%;
      font-size: 18px;
      margin: 10px auto 20px;
  }
  .tel2{
      height: 35px;
      max-width: 180px;
      width: 100%;
      font-size: 18px;
      margin: 10px auto 20px;
  }
  .request{
      height: 45px;
      width: 95%;
      font-size: 16px;
      margin: 10px auto 20px;
  }
  .date input ,.date select{
      height: 45px;
      max-width: 230px;
      width: 100%;
      font-size: 18px;
      margin: 10px 5px 20px;
  }
  .naiyou{
      height: 75px;
      width: 95%;
      font-size: 18px;
      margin: 10px auto 20px;
  }
  .q_text03>div {
      margin: 20px 10px 0;
  }
  input.submitBtn.question_btn_next {
      display: block;
      text-align: center;
      margin: auto;
      background: linear-gradient(to bottom, #5d97ec, #1e68d6);
      box-shadow: 0px 9px 0px 0px #003078;
      font-weight: bold;
      max-width: 500px;
      width: 100%;
      height: 70px;
      color: #fff;
      font-size: 20px;
      border-radius: 5px;
      border: none;
      margin-bottom: 25px;
      line-height: 1.3;
  }
  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    }
  input.submitBtn.question_btn_next:disabled {
      background: #ccc;
      box-shadow: 0px 9px 0px 0px rgba(185, 185, 185, 1);
  }
  .slick-disabled {
      opacity: 0;
  }
  
  @media screen and (max-width:740px) {
    .anke h2{
        width: 100%;
        padding: 50px 20px 30px;
    }
      .form_content {
      padding: 0px 10px 50px;
  }
      .form_content .container {
        padding: 20px 10px;
  }
      .tel1 {
      max-width: 70px;
      font-size: 13px;
  }
      .tel2 {
      max-width: 75px;
      font-size: 13px;
  }
      .postcode1, .postcode2 {
      width: 75px;
  }
      .prefecture {
      max-width: 400px;
      width: 95%;
      font-size: 16px;
      margin: 10px 0px 20px;
  }
      .city {
      max-width: 450px;
      width: 95%;
      font-size: 16px;
      margin: 10px 0px 20px;
  }
      .q_text03>div {
      margin: 20px 10px 0;
  }
      button.slide-next.question_btn_next {
      margin-bottom: 10%;
  }
      span.form_s {
      font-size: 16px;
  }	
      .date input {
      width: 200px;
      margin: 10px 5px 0;
      font-size: 16px;
  }
      .date select{
      width: 230px;
      margin: 10px 5px 0;
      font-size: 16px;
  }
      .naiyou {
      font-size: 15px;
  }
      .form_ttl {
        padding: 0 1%;
  }
      .q_text01>div {
      margin: 20px 10px 35px;
  }
      .q_text02>div {
      margin: 20px 10px 35px;
  }
  }
  .err{
      color: #e80000;
      background: rgb(255, 237, 237);
      font-weight: bold;
      margin: 0 0 10px;
      padding: 0 10px;
      font-size: 12px;
  }
  .min {
      font-size: 0.7rem;
      margin-bottom: 5px;
      font-weight: normal;
  }


/* 追従 ------------------------------------------------------ */
.follow {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none; /* ← 非表示時はクリック不可 */
    width: 100%;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9); /* 90%不透明 */
    padding: 0 0 10px 0;
}
.follow_top {
    display: flex;
    justify-content: center;
}
.follow_model {
    width: 22%;
    position: relative;
}
.follow_model img{
    width: 100%;
    position: absolute;
    top: -13%;
    left: -12%;
    z-index: -1;
}
.follow_bottom {
    padding: 0 5%;
    max-width: 650px;
    margin: 0 auto;
}
#Realtime03 {
    margin: 4% 2% 3% 0;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    font-size: 25px;
}
.follow.show {
    display: block;
    opacity: 1;
    pointer-events: auto; /* ← 表示中のみクリック可能に */
}

/* フッター ------------------------------------------------------ */

footer {
    text-align: center;
    font-size: 16px;
    background-color: #666666;
    padding: 7% 0 ;
}

footer p, footer a {
    color: #fff;
    line-height: 1.7;
    text-decoration: none;
}

.footer_txt p {
    margin: 0 0 2%;
}