*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    scroll-behavior: smooth;
}

html {
    background-color: #d3d3d3;
}

img {
    width: 100%;
    vertical-align: bottom;
}

body {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
}

button {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 0;
    font: inherit;
}


/*ヘッダー*/
header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1000;
  }
  
  .header_inner {
    margin: 0 auto;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ロゴ */
  .header_logo img {
    height: 30px;
    width: auto;
    display: block;
  }
  
  /* ボタン */
  .header_contact {
    text-align: right;
  }

  .header_contact img {
    width: 80%;
    transition: opacity .3s ease;
  }
  
  .header_contact a:hover img {
    opacity: 0.8;
  }

/*CTA*/
.cta_area{
    position: relative;
}

.cta_time {
    position: absolute;
    width: 50%;
    top: 10%;
    left: 25%;
    color: #fff337;
}

.cta_time_num{
    color: #fff337;
    font-weight: bold;
    font-size: 23px;
    text-align: center;
}

.cta_btn_tel {
    position: absolute;
    width: 80%;
    top: 26%;
    left: 10%;
}

.cta_btn_mail {
    position: absolute;
    width: 80%;
    top: 48%;
    left: 10%;
}

/*ロゴスクロール*/
.slider_parent {
    position: relative;
    overflow: hidden;
  }
  .slider_parent .slider {
    display: flex;
  }
  .text_scroll {
    animation: scroll 40s linear infinite;
  }
  .text_scroll_reverse {
    animation: scroll 40s linear infinite;
    animation-direction: reverse !important; 
  }
  .logos {
    flex-shrink: 0;
  }
  .slider_parent ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .slider_parent ul li {
    display: inline-block;
  }
  .slider_parent ul {
    padding: 0;
    margin: 0;
    display: flex;
  }
  .slider_parent ul li > a img {
    transition: 0.4s;
  }
  .slider_parent ul li > a img {
    max-width: 100% !important;
    
  }
  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  #maker {
    padding-bottom: 3%;
  }

  .maker_ttl {
    padding-bottom: 2%;
  }

/*動画*/
#movie {
    position: relative;
}
.movie_area {
    position: absolute;
    width: 90%;
    top: 48%;
    left: 5%;
    transform: translateY(-50%);
}

.movie_area iframe {
    width: 98%;
    height: 150px;
    margin: 0 1%;
}

@media screen and (min-width: 430px){
  .movie_area iframe {
    height: 200px;
  }
}

/*口コミ*/
#voice {
  padding-bottom: 5%;
}

.voice_wrapper{
    width: 100%;
    margin: 0 auto;
    padding: 5%;
    display: grid;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
  }
  
  .voice_showmore{
    width: 60%;
    margin: 0 auto;
  }
  
  .voice_morebtn{
    appearance: none;
    -webkit-appearance: none;
  
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
  
    cursor: pointer;
    line-height: 0;
    font: inherit;
  }

  .voice_wrapper.is-collapsed{
    max-height: 540px;
  }
  
  .voice_wrapper.is-collapsed::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
  
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.85) 60%,
      #fff 100%
    );
  
    pointer-events: none;
  }

  /*よくある質問*/
  .faq{
    width: 100%;
    background-image: url(../img/qa_bg.jpg);
    background-size: 400px auto;
    background-repeat: repeat;
  }

  .faq_ttl {
    width: 90%;
    margin: 4% 6% 3%;
  }
  
  .faq_list{
    width: 95%;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    padding-bottom: 10%;
  }
  
  .faq_item{
    overflow: hidden;
    border: 2px solid #0b4fd6; /* 青枠 */
    background: #fff;
  }
  
  /* Q：青帯 */
  .faq_q{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: linear-gradient(
      -90deg,
      #0b3bb5 0%,
      #1b57d9 60%,
      #2c6df2 100%
    );
    color: #fff;
  
    width: 100%;
    padding: 14px 14px;
    margin: 0;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  
    cursor: pointer;
    text-align: left;
    font: inherit;
  }
  
  .faq_q_left{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }
  
  .faq_q_icon{
    width: 38px;
    height: auto;
    flex: 0 0 38px;
    display: block;
  }
  
  .faq_q_text{
    font-weight: 900;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: .02em;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* 右端の▼ */
  .faq_arrow{
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #fff;  /* ▼ */
    flex: 0 0 auto;
    transition: transform .2s ease;
  }
  
  /* open時：▼を上向き */
  .faq_q[aria-expanded="true"] .faq_arrow{
    transform: rotate(180deg);
  }
  
  /* A：白地 + 上に区切り線 */
  .faq_a{
    overflow: hidden;
  }
  
  .faq_a_inner{
    padding: 3%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .faq_a_icon{
    width: 38px;
    height: auto;
    flex: 0 0 38px;
    display: block;
  }
  
  .faq_a_inner p{
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
  }

  /*お問い合わせフォーム*/
  #contact {
    background-image: url(../img/contact_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5% 5%;
}

  .contact_ttl {
    width: 90%;
    margin: 5% 5% 10%;
  }

/* 共通 */
.form_item {
    margin-bottom: 5%;
}

.form_item label {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.req {
    background: #ffffff;
    color: #ff0000;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 4px;
}

/* テキスト系 */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding:  2% 2%;
    margin-top: 1%;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    font-size: 16px!important;
    color: #444;
}

textarea {
    height: 100px;
}

/* フォーカス時の変化防止 + 入力後の文字色 */
input:focus,
textarea:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    outline: none;
    border: none;
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: #c7c7c7;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #62595a !important;
}

/*プライバシーポリシー*/
.privacy {
    text-align: center;
}

.privacy p {
    color: #ffffff;
}

.privacy_box{
    width: 100%;
    margin: 0 auto;
    height: 100px;
    overflow-y: scroll;
    border-radius: 4px;
    font-size: 15px;
    text-align: left;
    line-height: 1.2;
    padding: 3%;
    background-color: #ffffff;
}

.privacy_box p {
    color: #62595a;
}

/* 同意チェック */
.agree {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 25px;
    padding-top: 3%;
    color: #ffffff;
}

.agree input {
    margin-right: 8px;
 
}

/* 送信ボタン */
.submit-btn {
    width: 90%;
    margin: 0 auto 5%;
    display: block;
}

/*フッター*/
footer {
    background-color: #4d4d4d;
    padding: 6% 0;
    text-align: center;
}

footer p,
footer a  {
    color: #fff;
    font-size: 13px;
}

/*追従*/
.floating{
    position: fixed;
    width: 90%;
    padding-bottom: 5%;
    margin: 0 5%;
    height: auto;
    bottom: 0;
    left: 0px;
    z-index: 9999;
  
    /* 初期非表示 */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  
    transition:
      opacity .3s ease,
      transform .3s ease;
  }
  
  .floating.is-show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: block !important;
    visibility: visible !important;
  }

  @media screen and (min-width: 767px){
    .floating,
    .floating.is-show {
      display: none!important;
    }
  }
  
  
/*アニメーション*/
.kira {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.kira::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
  
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
  
    transform: skewX(-20deg);
    pointer-events: none;
    animation: kirakira 2.2s infinite;
  }

@keyframes kirakira {
    0% { left: -120%; }
    50% { left: 130%; }
    100% { left: 130%; }
}


/*プライバシーポリシーページ*/
#policy {
    width: 90%;
    margin: 0 auto;
    padding: 6% 0;
}

#policy h1 {
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 20px;
}

#policy p {
    font-size: 15px;
    line-height: 1.25;
}

/*確認画面*/
.reserve_wrapper {
  background-image: url(../img/contact_bg.jpg);
  padding: 7% 0;
  }

  .reserve_box {
      margin: 5%;
      background-color: #fff;
      padding: 5%;
      border-radius: 20px;
  }

  .reserve_top {
      font-size: 12px;
      padding-top: 3%;
  }

  .reserve_box h1 {
      font-weight: bold;
      text-align: center;
      line-height: 1;
  }

  .reserve_box h1 span {
      color:#db0405;
      font-size: 26px;
  }

  .reserve_box p {
      line-height: 1.3;
  }

  .reserve_box form {
      padding-top: 5%;
  }

  .confirm-item {
      line-height: 1.3;
      padding-bottom: 3%;
  }

  .confirm-item h3 {
      background-color: #db0405;
      color: #fff;
      padding: 0 1%;
      border-radius: 2px;
      margin-bottom: 1%;
  }

  .reserve_box .submit-btn {
      width: 85%;
      margin: 0 auto 5%;
      padding: 3% 5% 3% 10%;
      background-color: #fff127;
      border: none;
      border-radius: 14px;
      font-size: 18px;
      color: #db0405;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 0 #c4b708;
  }
  
  .submit-btn .submit_arrow {
      margin-left: 5%;
      font-size: 20px;
      color: #fff;
  }
  
  .submit-btn:active {
      transform: translateY(3px);
      box-shadow: 0 3px 0 #e84590;
  }

.back_btn button{
      width: 85%;
      margin: 0 auto 5%;
      padding: 3% 5% 3% 10%;
      background-color: #808080;
      border: none;
      border-radius: 14px;
      font-size: 18px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 0 #4e4e4e;
      text-decoration: none;
  }

/*サンクスページ*/
  .taC {
      text-align: center;
  }

  .reserve_wrapper .txt_box {
      font-size: 13px;
      padding-top: 5%;
  }

  .finish_back {
      width: 85%;
      margin: 5% auto;
      padding: 3% 5% 3% 10%;
      background-color: #808080;
      border: none;
      border-radius: 14px;
      font-size: 18px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 0 #4e4e4e;
      text-decoration: none;
  }
  
  .finish_back a{
     text-decoration: none;
     color: #fff;
  }

/*住所の自動検出を無効か*/
  .mask-address::before {
      content: attr(data-text);
  }

  /*スクロールバー削除*/
  /* Chrome / Edge / Safari */
/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}