@charset "UTF-8";

/* =========================
   Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
               "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fff;
  font-weight: 400;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* =========================
   Layout width control
========================= */
header,
main {
  margin: 0 auto;
  padding: 0;
}
/* コンテナ */
.container{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
/* =========================
   Header
========================= */
header {
  padding-top: 24px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  max-width: 1000px;
}
header img {
  width: 240px;
  max-width: 100%;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,.2));
}


/* =========================
   ぱんくず
========================= */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0 16px;
  margin: 0 auto 4px;
  font-size: 12px;
  max-width: 1000px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: ">";
  margin-right: 4px;
}
.breadcrumb a {
  color: #333;
}
.breadcrumb a:hover {
  color: #00A7EB;
}

/* =========================
   Title section
========================= */
.section_title {
  background: #ffffff;
  padding: 24px 16px;
  margin-bottom: 24px;
  background: rgba(0, 167, 235, 0.2);
}
.section_title h1 {
  display: block;
  margin: 0 0 4px;
  padding: 0px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.section_title p {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
/* =========================
   Content section
========================= */
.section_content {
  margin-bottom: 24px;
}
/* リード文 */
.pp_lead {
  margin: 0 0 16px;
  padding: 0px;
  font-size: 14px;
}
/* h2 */
.section_content h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #00A7EB;
  font-weight: 700;
}

/* 本文 */
.section_content p {
  margin: 8px 0 40px;
  font-size: 14px;
}
.section_content p.mb16px{
    margin: 8px 0 16px;
}

/* 箇条書き */
.section_content ul {
  padding-left: 1.2em;
  margin: 0px 0 16px;
}

.section_content ul li {
  margin: 6px 0;
}

/* 住所・電話の強調ブロック */
.section_content p strong {
  display: inline-block;
  font-weight: 700;
}
.section_content p.txt-rigth {
    display: block;
    width: 100%;
    text-align: right;
}
/* =========================
   Footer
========================= */
footer {
  background: #00A7EB;
  color: #fff;
  padding: 24px 0 ;
}

/* フッターリンク */
footer .container ul.footer_link {
  list-style: none;
  margin: 0 0 16px 0;
  padding:0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}
.footer_link li + li::before {
  content: "｜";
  margin-right: 8px;
}
footer .container ul.footer_link a {
  color: #fff;
}

footer .container p {
  margin: 0;
  padding: 0px;
  font-size: 12px;
}
footer .container p a {
  color: #fff;
}
@media (min-width: 768px) {
    header img {
        width: 320px;
    }
}
