<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&amp;display=swap");

/* ページトップへスクロール */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  padding: 0 4.17%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}
img {
  vertical-align: bottom;
}

main {
  margin: 0 auto;
  padding: 0 5%;
}

#page-top {
  position: fixed;
  bottom: 2%;
  right: 4.17%;
}
.pagetop_arrow {
  width: 2.3dvw;
  max-width: 45px;
  min-width: 30px;
  aspect-ratio: 45 / 45;
}
.first-view {
  width: 100%;
}
.first_view {
  width: 100%;
}

.contents {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.contents img {
  width: 100%;
}

h2 {
  font-size: 48px;
  font-weight: 900;
  color: #fa4043;
}

h3 {
  margin-top: 45px;

  font-size: 32px;
  font-weight: 700;
  color: #4c4948;
  border: transparent;
}

p {
  margin-top: 45px;

  font-size: 20px;
  font-weight: 500;
  color: #4c4948;
  line-height: 2;
}

p a {
  font-weight: 700;
  color: #fa4043;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
  h3 {
    margin-top: 20px;
    font-size: 20px;
  }
  p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ---------- フッター ---------- */
footer {
  margin-top: 70px;
  text-align: center;
  padding: 30px;
  border-top: #333 1px solid;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 250px;
}
.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer-list li a {
  color: #ed6c00;
}
footer p {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  footer {
    font-size: 14px;
    padding: 10px;
  }
}
</pre></body></html>