﻿@charset "UTF-8";

/* ブログ用ボタンリンク */
.btn-center {
  margin: 5vw auto !important;
  text-align: center;
}

.btn-consult {
  box-shadow: 0px 4px 5px #ccc;
  background: #fdfdfd;
  border: 2px solid #333;
  border-radius: 60px;
  color: #333;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 10px;
  text-decoration: none;
  width: 96%;
  max-width: 420px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.btn-consult:hover {
  background: #e67e22;
  border-color: #e67e22;
  color: #fff;
  transform: scale(1.03);
}

/* ブログ用要約コンテンツ */
.summary-box {
  padding: 1.25rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  margin: 2vw auto;
}

.summary-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #333;
  margin: 0 0 1rem !important
}

.summary-list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 2rem;
}

.summary-list li {
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.summary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-list li:first-child {
  padding-top: 0;
}

.summary-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #185FA5;
  margin-top: 8px;
}

.summary-list li strong {
  font-weight: 600;
}


@media screen and (max-width: 668px) {

  /* SP */
  .js-fixed {
    display: none;
  }

  /* TOP専用バナー */
  .fixed-btn-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #111;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9997;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .fixed-btn-sp a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fixed-btn-sp a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .fixed-btn-sp.is-hidden {
    opacity: 0;
    visibility: hidden;
  }

  /* SP */
}

@media screen and (min-width: 669px) {
  /* PC */

  .js-fixed {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .js-fixed.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .fixed-btn-sp {
    display: none;
  }

  /* TOP専用バナー */
  .fixed-bnr {
    position: fixed;
    right: 30px;
    bottom: 20px;
    width: 345px;
    border-radius: 1.6rem;
    padding: 10px 20px;
    background-color: #1F1F1F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    z-index: 9997;
  }

  .fixed-bnr .img {
    width: 50%;
  }

  .fixed-bnr .img img {
    width: 100%;
    border-radius: 10px;
  }

  .fixed-bnr .cnt {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fixed-bnr .cnt div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .fixed-bnr .cnt .text {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
  }

  .fixed-bnr .c-btn.-icon {
    width: 100%;
  }

  .fixed-bnr .c-btn__inn {
    padding: 0.6rem;
    transition: 0.3s opacity;
    border-radius: 1rem;
    background: #515151;
    display: flex;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2.2rem;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
  }

  /* PC */
}