<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
body {
  color: #555; /* RGB */
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2.3;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
.dp-none {
  display: none;
}
.inner {
  max-width: 1080px;
  margin: 0 auto;
}
.red {
  color: #cc3300;
}
.blue {
  color: #01239c;
}
.sp {
  display: none;
}
.header .inner {
  display: flex;
  justify-content: space-between;
}
.header .inner h1 {
  width: 25%;
  position: relative;
}
.header .inner h1 .tel {
  color: #fff;
  position: absolute;
  display: block;
  text-align: center;
  font-size: 2rem;
  top: 60%;
  width: 100%;
}
.top-nav {
  text-align: center;
  padding: 86px 0 0 0;
  width: 70%;
}
.top-nav ul {
  display: flex;
  justify-content: space-between;
}
.top-nav ul li a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.top-nav ul li a:hover {
  color: #01239c;
}
.top-nav ul li a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #01239c;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.top-nav ul li a:hover::after {
  transform: scale(1, 1);
}
.nav-sub {
  font-size: 1.2rem;
  display: block;
  color: #cc3300;
}
.header {
  margin-bottom: 72px;
}
h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.76;
  padding-bottom: 5px;
  border-bottom: 2px solid #01239c;
  display: inline-block;
  margin-bottom: 100px;
}
h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 60px;
}
.note {
  font-size: 1.4rem;
  line-height: 2;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.note span {
  display: block;
  width: 58px;
  padding: 2px 5px 2px 6px;
  border: solid 1px #01239c;
  border-radius: 6px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.button {
  padding: 14px 50px;
  width: 270px;
  border: 1px solid #cc3300;
  display: inline-block;
  transition: 0.3s ease-in-out;
  text-align: center;
}
.button:after {
  content: "";
  background: url("../img/common/arrow.svg") no-repeat;
  width: 19px;
  height: 9px;
  margin-left: 10px;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.button:hover {
  background: #cc3300;
  color: #fff;
}
.button:hover:after {
  content: "";
  background: url("../img/common/arrow-wh.svg") no-repeat;
  width: 19px;
  height: 9px;
  margin-left: 10px;
  display: inline-block;
}
.emphasize {
  font-size: 1.8rem;
  font-weight: 700;
}
.emphasize-sub {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer {
  background-color: #cc3300;
  text-align: center;
  color: #fff;
}
.footer .inner {
  padding: 60px 0 30px;
}
.footer-nav {
}
.footer-nav ul {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 60px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.footer-logo {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.copy-light {
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
#back-top {
  display: inline-block;
}
#back-top a {
  position: fixed;
  right: 0;
  bottom: 0;
  transition: 0.5s;
  width: 100px;
}
#back-top a:hover {
  opacity: 0.75;
}
.drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0.06em;
  }
  .sp {
    display: block;
  }
  .top-nav {
    display: none;
  }
  .header .inner {
    display: block;
  }
  .header .inner h1 {
    width: 180px;
    margin: 0 0 0 auto;
  }
  .header .inner h1 .tel {
    top: 100px;
    font-size: 1.6rem;
  }
  .footer-nav ul {
    display: block;
    width: 100%;
  }
  .footer-logo {
    width: 40%;
  }
  #back-top a {
    width: 80px;
  }
  .drawer {
    display: block;
  }
  .drawer-hamburger {
    padding-top: 20px;
    padding-left: 15px;
  }
  .drawer-hamburger-icon,
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    background-color: #49383a;
  }
  .drawer-nav {
    background: #cc3300;
    width: 80%;
    padding: 100px 20px;
  }
  .drawer--left .drawer-nav {
    left: -100rem;
  }
  .drawer--left.drawer-open .drawer-hamburger {
    left: 0;
  }
  .nav-sub {
    color: #fff;
  }
  .drawer-nav ul li {
    margin-bottom: 40px;
  }
  .drawer-nav ul li a {
    font-weight: 500;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
      "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
/*タブレット用*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tb {
    display: none;
  }
  .header .inner {
    padding: 0 20px;
  }
  .top-nav {
    width: 80%;
    padding-right: 15px;
  }
  .top-nav a {
    font-size: 1.4rem;
  }
  .header .inner h1 {
    width: 20%;
  }
  .header .inner h1 .tel {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
</pre></body></html>