*{
    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: #dfeaed;
}

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

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

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

  /*スクロールバー削除*/
  /* 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;
  }


/*ヘッダー*/
header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1000;
  }
  
  .header_inner {
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ロゴ */
  .header_logo {
    width: 50%;
  }

  .header_logo img {
    width: 90%;
    display: block;
  }
  
  /* ボタン */
  .header_contact {
    display: flex;
    gap: 2.5%;
    text-align: right;
    width: 50%;
  }

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

/*CTA*/
.cta_area{
    position: relative;
    background-color: #0e1b69;
    text-align: center;
}

.cta_time {
    width: 50%;
    color: #fff337;
    margin: 0 auto;
    animation: blinkAnime 1s infinite;
}

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

.cta_top{
    width: 80%;
    display: block;
    margin: 0 auto;
}

.cta_btn_tel {
    position: absolute;
    width: 90%;
    top: 27%;
    left: 5%;
}

.cta_bottom {
    width: 90%;
    padding: 30% 0 10%
}

@media screen and (min-width: 450px){
    .cta_btn_tel {
        top: 22%;
    }
    .cta_time_num {
        font-size: 28px;
    }
}

/*サービス一覧*/
#service {
    text-align: center;
    background-color: #5bc7f6;
}

.service_ttl {
    width: 86%;
    margin: 0 auto;
    padding: 5% 0 0 3%;
}

.services {
    padding: 0 3% 11%;
    margin-top: -1%;
}

/*お客様の声*/
#review {
    background: #63c4ef;
    position: relative;
}

.review_ttl {
    width: 52%;
    margin: auto;
    display: block;
    padding: 5% 0 3%;
}

.review_area {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10%;
}

.review_wrapper {
    width: 100%;
}

.review_item {
    background: #f3f3f3;
    padding: 1%;
    box-sizing: border-box;
    height:450px;
}

.review_img {
    width: 100%;
    display: block;
}

.review_name {
    font-size: 20px;
    font-weight: bold;
    color: #17277c;
    margin-top: 5%;
}

.review_text {
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
    margin-top: 2%;
}

.review_text span {
    color: #e60012;
}

/* 矢印 */
.arrow_left,
.arrow_right {
    width: 10%;
    position: absolute;
    top: 30%;
    z-index: 10;
    cursor: pointer;
}

.arrow_left {
    left: -4%;
}

.arrow_right {
    right: -4%;
}

/* ドット */
.review_wrapper .slick-dots {
    bottom: -7%;
}

.slick-dots li {
    margin: 0 auto;
}

.review_wrapper .slick-dots li button:before {
    font-size: 8px;
    color: #fff;
    opacity: 1;
}

.review_wrapper .slick-dots li.slick-active button:before {
    color: #17277c;
}

/* slick余計な矢印消す */
.review_wrapper .slick-prev,
.review_wrapper .slick-next {
    display: none !important;
}

@media screen and (min-width: 450px){
    .review_name {
        font-size: 26px;
    }
    .review_text {
        font-size: 22px;
    }
    .review_item {
        height: 700px;
    }
}

/*選ばれる理由*/
#reason {
    text-align: center;
    background-image: url(../img/reasons_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10% 0 12%;
}

.reason_ttl {
    width: 70%;
    margin: 0 auto 6%;
}

.reasons {
    width: 94%;
}


/*依頼までの3ステップ*/
#steps {
    background-image: url(../img/steps_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
}

.steps {
    width: 94%;
    padding: 2% 0 12% 3%;
}


/*対象エリア*/
#map {
    background-image: url(../img/map_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
}

.map_ttl {
    width: 48%;
    margin: 0 auto;
    padding: 10% 0 3%;
}

.map_contents {
    width: 90%;
    padding-bottom: 12%;
}

  /*よくある質問*/
  #faq{
    background-color: #5bc7f6;
    text-align: center;
  }

  .faq_ttl {
    width: 40%;
    padding: 5% 0 3% 6%;
  }
  
  .faq_list{
    width: 95%;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    padding-bottom: 12%;
    text-align: left;
  }
  
  .faq_item{
    overflow: hidden;
    background: #fff;
  }
  
  /* Q：青帯 */
  .faq_q{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
   background-color: #0e1b69;
    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: 16px;
    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;
  }

  @media screen and (min-width: 767px){
    .faq_q_text {
        font-size: 22px;
    }
    .faq_a_inner p {
        font-size: 18px;
    }
  }

  /*お問い合わせフォーム*/
#contact {
   background-color: #ff7800;
   padding: 5% 5% 10%;
}

.contact_ttl {
    width: 60%;
    margin: 0 20%;
    padding: 6% 0 4%;
}

.form {
    background-color: #fff;
    padding: 5%;
}

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

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

.req {
    background: #d91717;
    color: #ffffff;
    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: solid 2px #b6b6b6;
    border-radius: 8px;
    background: #ffffff;
    font-size: 18px!important;
    color: #444;
}

textarea {
    height: 100px;
}

/* フォーカス時の変化防止 + 入力後の文字色 */
input:focus,
textarea:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    outline: 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;
}

/*プライバシーポリシー*/
.suc {
    height: 150px;
    overflow-y: scroll;
    border-color: #d6d6d6;
    border-style: solid;
    border-width: 1px;
    padding: 3% 4% 5%;
    font-size: 12px;
    font-weight: lighter;
    background-color: #fff;
    margin-bottom: 6%;
    color: #696969;
}

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

@media screen and (min-width: 767px){
    .suc {
        font-size: 16px;
    }
    .submit-btn {
        width: 50%;
    }
}


/*フッター*/
#footer {
    background: #17257d;
    padding: 5% 0;
    text-align: center;
}

#footer a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}


/*追従*/
.floating{
    position: fixed;
    margin: 0 2%;
    padding-bottom: 8%;
    height: auto;
    bottom: 0;
    left: 0px;
    z-index: 9999;
    display: flex;
  
    /* 初期非表示 */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  
    transition:
      opacity .3s ease,
      transform .3s ease;
  }

  .floating img {
    width: 49%;
  }
  
  .floating.is-show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex !important;
    visibility: visible !important;
  }

  @media screen and (min-width: 767px){
    .floating{
        right: 0;
        left: 60%;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        padding-bottom: 2%;
        text-align: right;
    }
}
  
  
/*アニメーション*/
.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;
  }

  .blink {
    animation: blinkAnime 1s infinite;
}

@keyframes blinkAnime {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

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


/*確認画面*/
.reserve_wrapper {
  background-color: #ff7800;
  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:#ff4800;
      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: #797979;
      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: #ff4800;
      border: none;
      border-radius: 14px;
      font-size: 18px;
      color: #ffffff;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 0 #712500;
  }
  
  .submit-btn .submit_arrow {
      margin-left: 5%;
      font-size: 20px;
      color: #fff;
  }
  
  .submit-btn:active {
      transform: translateY(3px);
  }

  .back_btn {
      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;
  }

  .back_btn a{
      text-decoration: none;
      color: #fff;
  }


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

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

  .finish_back {
      margin-top: 5%;
  }

  /*運営者情報*/
#profile {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    flex: none;
}
#profile h2 {
  font-size: 23px;
  text-align: center;
  font-weight: bold;
  padding-bottom: calc(30 / 1920 * 100vw);
}
#profile table , #profile td, #profile th {
  border: 1px solid #c3c3c3;
  border-collapse: collapse;
}
#profile td, #profile th {
padding: 3%;
font-size: 14px;
line-height: 1.5;
}
#profile table{
  width: 90%;
  margin: 0 auto;
}
#profile th {
  background: #e9e9e9;
  width: 30%;
text-align: left;
vertical-align: middle;
}
#profile td{
text-align: center;
}
@media screen and (max-width: 650px) {
  #profile {
    padding-bottom: calc(90 / 650 * 100vw);
    padding-top: calc(60 / 650 * 100vw);
  }
  #profile h2 {
    padding-bottom: calc(30 / 650 * 100vw);
  }
}

