@charset "UTF-8";
/* PC以上 */
body {
  color: rgb(0, 0, 0);
  background-color: #fff !important;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.base-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.base-image img {
  max-width: none;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.full-bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.full-bleed .base-image {
  height: 250px;
  overflow: hidden;
}

.full-bleed .base-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.base-page-content {
  padding: 48px 16px;
  padding-top: 0;
  color: rgb(0, 0, 0);
  line-height: 1.5;
}
.base-page-content__inner {
  max-width: 900px;
  margin: 0 auto;
}
.base-page-content__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 20px;
}
.base-page-content__subtitle {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #63b263;
  text-transform: uppercase;
}
.base-page-content__betweenTitle {
  margin-top: 80px;
  font-size: 20px;
}
.base-page-content__text {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}
.base-page-content__betweenText {
  margin-top: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media (min-width: 960px) {
  .base-page-content__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 100px;
    max-width: 1500px;
    margin: auto;
    margin-bottom: 100px;
  }
  .base-page-content__title {
    margin: 0;
    font-size: 32px;
  }
  .base-page-content__text {
    margin: 0;
    line-height: 2.6;
  }
  .base-page-content__betweenTitle {
    margin-top: 100px;
    font-size: 24px;
  }
}

@keyframes contentUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ページ準備できたらアニメ開始（ヘッダーと同期） */
html.is-ready .base-page-content__title {
  animation: breadcrumbIn 2s ease-out both;
  animation-delay: 0.8s;
}
html.is-ready .base-page-content__text {
  animation: titleUp 2s cubic-bezier(0.16, 0.95, 0.2, 1) both;
  animation-delay: 0.4s;
}

.site-header {
  position: sticky;
  top: 0;
  height: 60px;
  color: rgb(0, 0, 0);
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (min-width: 960px) {
  .site-header {
    height: 80px;
  }
}
.site-header__inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 960px) {
  .site-header__inner {
    padding: 0 50px;
  }
}

.global-nav__list {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  font-size: larger;
  list-style: none;
  overflow: visible;
  gap: 0;
  align-items: stretch;
}
.global-nav__list a {
  color: rgb(0, 0, 0);
  display: inline-flex;
  align-items: center;
  height: 80px;
  padding: 0 14px;
  border-radius: 0;
}
.global-nav__list a.is-active {
  color: #63b263;
  font-weight: 700;
}
.global-nav__list a.is-active:hover {
  color: #63b263;
}
.global-nav__list a:hover {
  color: #63b263;
}
.global-nav a {
  text-decoration: none;
}
.global-nav--desktop {
  display: none;
}
@media (min-width: 960px) {
  .global-nav--desktop {
    display: block;
  }
}

@keyframes headerSlideIn {
  from {
    opacity: 1;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 初期は隠す（クラス付くまで） */
.site-header {
  opacity: 0;
  transform: translateY(-80px);
}

/* ページ準備できたら1回だけ再生 */
html.is-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  animation: headerSlideIn 0.8s ease-out both;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  color: rgb(0, 0, 0);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2001;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #000;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 2002;
  padding-top: 56px;
}

.nav-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer__list a {
  display: flex;
  align-items: center;
  padding: 18px 18px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-drawer__list li:last-child a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@media (hover: hover) {
  .nav-drawer__list a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}
/* open時 */
body.is-nav-open {
  overflow: hidden;
}
body.is-nav-open .nav-overlay {
  opacity: 1;
}
body.is-nav-open .nav-drawer {
  transform: translateX(0);
}

.site-footer {
  color: rgb(0, 0, 0);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.site-footer a {
  color: rgb(0, 0, 0);
}
.site-footer__inner {
  padding: 28px 16px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
@media (min-width: 960px) {
  .site-footer__inner {
    height: 350px;
    margin: 0;
    padding-left: 100px;
    font-size: 20px;
  }
}
.site-footer__top {
  display: grid;
}
.site-footer__logo {
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.site-footer__copy {
  opacity: 0.85;
}
@media (min-width: 860px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .site-footer .footer-nav {
    grid-column: 1/-1;
  }
}

.site-footer__top {
  display: block;
}
@media (min-width: 960px) {
  .site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
}
.site-footer__top .footer-banner2 {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (min-width: 960px) {
  .site-footer__top .footer-banner2 {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
  }
}
.site-footer__top .footer-banner__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  background: transparent;
  color: rgb(0, 0, 0);
  transition: background-color 0.22s ease, color 0.22s ease;
}
@media (min-width: 960px) {
  .site-footer__top .footer-banner__link {
    height: 250px;
    padding-left: 80px;
    font-size: 32px;
  }
}
.site-footer__top .arrow-button {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #63b263;
  position: relative;
  flex: 0 0 auto;
}
.site-footer__top .arrow-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-62%, -50%) rotate(45deg);
  transition: transform 0.28s cubic-bezier(0.2, 1.1, 0.2, 1), border-color 0.18s ease;
  will-change: transform;
}
@media (hover: hover) {
  .site-footer__top .footer-banner__link:hover,
  .site-footer__top .footer-banner__link:focus-visible {
    background: #63b263;
    color: #fff;
    outline: none;
  }
  .site-footer__top .footer-banner__link:hover .arrow-button,
  .site-footer__top .footer-banner__link:focus-visible .arrow-button {
    background: #fff;
  }
  .site-footer__top .footer-banner__link:hover .arrow-button::before,
  .site-footer__top .footer-banner__link:focus-visible .arrow-button::before {
    border-top-color: #63b263;
    border-right-color: #63b263;
    animation: footerArrowOnce 1.4s ease-in-out;
  }
  .site-footer__top .footer-banner__link:active .arrow-button {
    transform: scale(0.9);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
}
@keyframes footerArrowOnce {
  0% {
    opacity: 1;
    transform: translate(-62%, -50%) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translate(-20%, -50%) rotate(45deg);
  }
  60% {
    opacity: 0;
    transform: translate(20%, -50%) rotate(45deg);
  }
  61% {
    opacity: 0;
    transform: translate(-95%, -50%) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-62%, -50%) rotate(45deg);
  }
}

.footer-info {
  display: grid;
  gap: 6px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  .footer-info {
    gap: 18px;
    font-size: 16px;
  }
}
.footer-info__address {
  font-style: normal;
  line-height: 1.6;
}
.footer-info__tel a {
  text-decoration: none;
  color: #63b263;
}

.footer-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.footer-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 6px 16px;
  margin: 0;
  list-style: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 960px) {
  .footer-nav__list {
    padding: 15px 100px;
    gap: 30px;
  }
}
.footer-nav__list::-webkit-scrollbar {
  display: none;
}
.footer-nav__list > li {
  flex: 0 0 auto;
}
.footer-nav__list a {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 0px;
  border-radius: 10px;
  text-decoration: none;
}
.footer-nav__list a:hover {
  color: #63b263;
}
.footer-nav a {
  text-decoration: none;
}

.site-footer__bottom {
  color: aliceblue;
  background-color: #63b263;
  height: 50px;
  justify-content: center;
}
.site-footer__bottom small {
  font-size: 14px;
}

.toTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: #fff;
  color: #63b263;
  border: solid 1px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}
.toTop.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 960px) {
  .toTop {
    display: none;
  }
}
.toTop:focus {
  outline: none;
}

.page-titlebar {
  padding: 30px 16px;
  color: rgb(0, 0, 0);
}
.page-titlebar__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-titlebar__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
}
.page-titlebar__subtitle {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #63b263;
}
@media (min-width: 960px) {
  .page-titlebar__inner {
    padding: 0 100px;
    max-width: 1500px;
    margin: auto;
  }
  .page-titlebar__title {
    font-size: 46px;
  }
  .page-titlebar__subtitle {
    font-size: 20px;
  }
}

.home .page-titlebar {
  margin-top: 30px;
  margin-bottom: 30px;
}

.home .page-titlebar__title {
  color: rgb(0, 0, 0);
  font-size: 25px;
}

.home .page-titlebar__subtitle {
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 960px) {
  .home .page-titlebar {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0;
  }
  .home .page-titlebar__inner {
    max-width: 1700px;
    padding-left: 100px;
  }
  .home .page-titlebar__title {
    font-size: 46px;
    padding: 0;
  }
  .home .page-titlebar__subtitle {
    font-size: 20px;
  }
}
.breadcrumb {
  margin-bottom: 30px;
  font-size: 18px;
  color: rgb(0, 0, 0);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item:not(:first-child)::before {
  content: "〉";
  margin-right: 8px;
  opacity: 0.6;
}
.breadcrumb__link {
  color: rgb(0, 0, 0);
}
.breadcrumb__home {
  font-size: 14px;
  line-height: 1;
}
.breadcrumb__current {
  opacity: 0.8;
}
@media (min-width: 960px) {
  .breadcrumb__list {
    padding: 0 50px;
    max-width: 1600px;
    margin: auto;
  }
}

.breadcrumb__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -2px;
}

.breadcrumb__current {
  color: #63b263;
}

@keyframes breadcrumbIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes titleUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtitleUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 初期状態：is-ready まで“控えめに隠す” */
.page-titlebar .breadcrumb,
.page-titlebar .page-titlebar__title,
.page-titlebar .page-titlebar__subtitle {
  opacity: 0;
}

/* ページ準備できたらアニメ開始（ヘッダーと同期） */
html.is-ready .page-titlebar .breadcrumb {
  animation: breadcrumbIn 2s ease-out both;
  animation-delay: 0.8s;
}
html.is-ready .page-titlebar .page-titlebar__title {
  animation: titleUp 2s cubic-bezier(0.16, 0.95, 0.2, 1) both;
  animation-delay: 0.4s;
}
html.is-ready .page-titlebar .page-titlebar__subtitle {
  animation: subtitleUp 2s cubic-bezier(0.16, 0.95, 0.2, 1) both;
  animation-delay: 0.8s;
}

.home-top_image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.home-top_image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-page-content {
  padding: 48px 16px;
  color: rgb(0, 0, 0);
}
.home-page-content__inner {
  max-width: 900px;
  margin: 0 auto;
}
.home-page-content__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}
.home-page-content__subtitle {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #63b263;
}
.home-page-content__text {
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 960px) {
  .home-page-content__title {
    margin: 0;
    font-size: 46px;
  }
  .home-page-content__subtitle {
    font-size: 20px;
  }
  .home-page-content__text {
    line-height: 2.6;
  }
}
.full-bleed .base-image.crime-page {
  height: 100% !important;
  max-height: 500px;
}
.full-bleed .base-image.crime-page img {
  max-width: 100%;
  width: fit-content;
  object-fit: cover;
  object-position: 50% 50%;
}

.base-image.crime-page {
  height: 100% !important;
  max-height: 500px;
}

.base-image.crime-page img {
  max-width: 100%;
  width: fit-content;
  object-fit: cover;
  object-position: 50% 50%;
}

.crime-page {
  height: 100% !important;
}

.crime-page img {
  max-width: 100%;
  width: fit-content;
  object-fit: cover;
  object-position: 50% 50%;
}

.accent {
  font-size: large;
  font-weight: 600;
}

.crime-grid {
  display: grid;
  gap: 32px 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
@media (max-width: 768px) {
  .crime-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.crime-card {
  width: 100%;
  max-width: 420px;
}

.crime-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-position: 50% 50%;
}

.crime-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: 50% 50%;
  background: #fff;
}

.crime-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.question-page-content {
  padding: 48px 16px;
  padding-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: rgb(0, 0, 0);
}
.question-page-content__questionTitle {
  margin-top: 80px;
  font-size: 20px;
  line-height: 1.2;
  color: #63b263;
}
.question-page-content__questionText {
  letter-spacing: 0.08em;
  line-height: 2;
  padding-left: 10px;
  margin: 0;
}
.question-page-content__A {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.maintenance-page {
  max-width: 500px;
  margin: 24px auto;
}

.maintenance-page img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-page-content {
  padding: 48px 16px;
  padding-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: rgb(0, 0, 0);
}
.contact-page-content__Title {
  margin-top: 20px;
  font-size: 20px;
}
.contact-page-content__Text {
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0;
  font-size: 20px;
}
.contact-page-content__tel {
  margin-left: 15px;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
}

.contact-kv {
  display: inline-grid;
  grid-template-columns: max-content 1em max-content;
  row-gap: 8px;
  column-gap: 0.4em;
  align-items: baseline;
}
.contact-kv .tel-value {
  text-decoration: none;
  color: #63b263;
}
