/* ==========================================================================
   Reset / Base
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2A4580;
  --base-content: #202020;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--base-content);
  line-height: 1.5;
}

a {
  font-family: 'Noto Sans JP', sans-serif;
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #fff;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.header-logo {
  width: 133px;
  height: auto;
}

@media (min-width: 768px) {
  .site-header {
    height: 76px;
    padding: 0.75rem 1.5rem;
  }
}

/* ==========================================================================
   Hero / Close Page
   ========================================================================== */
.hero-close {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.hero-close-inner {
  position: relative;
}

.hero-img-sp {
  width: 100%;
}

.hero-img-pc {
  display: none;
}

.hero-close-button {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.btn-ledge {
  width: 18%;
  min-width: 162px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1;
  padding: 12px 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  color: var(--primary);
  transition: background-color 0.2s;
}

.btn-ledge:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
  .hero-img-sp {
    display: none;
  }

  .hero-img-pc {
    display: block;
  }

  .hero-close-button {
    top: 80%;
    right: 50%;
    left: 20%;
    transform: translateX(-50%);
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .btn-ledge {
    font-size: 1rem;
    padding: 10px 0;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  padding: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-right {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  color: #fff;
  line-height: normal;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-nav ul {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-logo {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-right {
    align-items: flex-end;
  }
}

/* ==========================================================================
   Privacy Policy
   ========================================================================== */
.privacy-policy {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 1.5rem 0;
  word-break: break-word;
}

.privacy-policy-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.pp-section {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pp-indent {
  margin-left: 3em;
}

.pp-list {
  list-style: disc;
  margin-left: 1em;
}

.pp-list li {
  list-style: disc;
}

.pp-list-nested {
  list-style: disc;
  margin-left: 2em;
}

.pp-list-nested li {
  list-style: disc;
}

.pp-list-spaced {
  margin-bottom: 2rem;
}

.pp-bullet-item {
  position: relative;
  padding-left: 1em;
}

.pp-bullet-item::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.5rem;
}

.pp-block {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .privacy-policy {
    padding: 60px 5rem 0;
  }

  .privacy-policy-title {
    font-size: 32px;
  }

  .pp-section {
    font-size: 15px;
    margin-bottom: 2.5rem;
  }

  .pp-list-spaced {
    margin-bottom: 2.5rem;
  }

  .pp-block {
    margin-bottom: 2.5rem;
  }
}
