@charset "UTF-8";
:root {
  --color-primary: #00aae5;
  --color-primary-dark: #008cd0;
  --color-green: #5b8f57;
  --color-yellow: #ffd400;
  --color-dark: #4c4c4c;
  --color-black: #222222;
  --color-white: #ffffff;
  --font-base: Zen Kaku Gothic New, sans-serif;
  --font-en: Afacad, sans-serif;
  --container-width: 1440px;
  --container-padding-pc: 240px;
  --container-padding-sp: 20px;
  --transition-base: 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 20px;
  will-change: transform;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .header {
    padding: 50px;
  }
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__menu-btn {
    gap: 8px;
  }
}
.header__menu-btn:hover {
  opacity: 0.85;
}

.header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 36px;
  border-radius: 9999px;
  background-color: #008cd0;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .header__menu-icon {
    width: 180px;
    height: 80px;
    gap: 8px;
  }
}
.header__menu-icon span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 768px) {
  .header__menu-icon span {
    width: 36px;
  }
}

.header__menu-text {
  font-family: "Afacad", sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #008cd0;
}
@media (min-width: 768px) {
  .header__menu-text {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

.is-menu-open .header__menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
@media (min-width: 768px) {
  .is-menu-open .header__menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
}
.is-menu-open .header__menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.is-menu-open .header__menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 768px) {
  .is-menu-open .header__menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.header__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.3);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.is-menu-open .header__overlay {
  opacity: 1;
  visibility: visible;
}

.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 300;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .header__nav {
    width: 750px;
  }
}
.is-menu-open .header__nav {
  transform: translateX(0);
}

.header__nav-inner {
  padding: 20px;
  background-color: #EDF5F8;
}
@media (min-width: 768px) {
  .header__nav-inner {
    padding: 50px 100px;
  }
}

.header__nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #EDF5F8;
  margin-inline: -20px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .header__nav-top {
    margin-bottom: 30px;
    margin-inline: 0;
    padding: 0;
    position: static;
    background: transparent;
    justify-content: flex-end;
  }
}

.header__nav-logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.header__nav-logo:hover {
  opacity: 0.8;
}
.header__nav-logo img {
  width: 100px;
  height: auto;
}
@media (min-width: 768px) {
  .header__nav-logo {
    display: none;
  }
}

.header__nav-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media (min-width: 768px) {
  .header__nav-close {
    gap: 8px;
  }
}

.header__nav-close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 36px;
  border: 2px solid #008cd0;
  border-radius: 9999px;
  background-color: transparent;
  position: relative;
}
@media (min-width: 768px) {
  .header__nav-close-icon {
    width: 180px;
    height: 80px;
  }
}
.header__nav-close-icon::before, .header__nav-close-icon::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background-color: #008cd0;
  border-radius: 2px;
  position: absolute;
}
@media (min-width: 768px) {
  .header__nav-close-icon::before, .header__nav-close-icon::after {
    width: 36px;
  }
}
.header__nav-close-icon::before {
  transform: rotate(45deg);
}
.header__nav-close-icon::after {
  transform: rotate(-45deg);
}

.header__nav-list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .header__nav-list {
    margin-bottom: 60px;
  }
}

.header__nav-item {
  border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.header__nav-item:first-child {
  border-top: 1px solid rgba(76, 76, 76, 0.2);
}
.header__nav-item a {
  display: flex;
  align-items: center;
  padding: 20px 0;
  font-size: 0.9375rem;
  color: #222222;
}
@media (min-width: 768px) {
  .header__nav-item a {
    padding: 30px 0;
    font-size: 1.125rem;
  }
}

.header__nav-item-icon {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__nav-item-icon {
    width: 120px;
    height: 90px;
    margin-right: 30px;
  }
}
.header__nav-item-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header__nav-item-text {
  flex: 1;
  font-weight: 500;
}

.header__nav-arrow {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: #00aae5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .header__nav-arrow {
    width: 30px;
    height: 30px;
  }
}
.header__nav-arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.header__nav-spot {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .header__nav-spot {
    margin-bottom: 50px;
  }
}

.header__nav-spot-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .header__nav-spot-link {
    padding: 10px 0;
    font-size: 1rem;
  }
}
.header__nav-spot-link:hover {
  opacity: 0.85;
}

.header__nav-spot-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__nav-spot-icon {
    width: 35px;
    height: 35px;
  }
}
.header__nav-spot-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header__nav-spot-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
}

.header__nav-tags {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .header__nav-tags {
    margin-bottom: 50px;
  }
}

.header__nav-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.header__nav-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header__nav-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #4c4c4c;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__nav-tag:hover {
  background-color: #00aae5;
  color: #ffffff;
}

.header__nav-search {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .header__nav-search {
    margin-bottom: 50px;
  }
}

.header__nav-search-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(76, 76, 76, 0.3);
  border-radius: 4px;
  overflow: hidden;
  padding: 0 16px;
  height: 50px;
  background-color: #fff;
}

.header__nav-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: #4c4c4c;
}
.header__nav-search-input::placeholder {
  color: rgba(76, 76, 76, 0.5);
}

.header__nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #4c4c4c;
}

.header__nav-companies {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .header__nav-companies {
    margin-bottom: 50px;
  }
}

.header__nav-company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .header__nav-company-logos {
    gap: 24px;
  }
}
.header__nav-company-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .header__nav-company-logos img {
    height: 52px;
  }
}

.header__nav-company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2.5em;
}

.header__nav-company-item {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #222222;
}
@media (min-width: 768px) {
  .header__nav-company-item {
    font-size: 1.125rem;
  }
}
.header__nav-company-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__nav-company-item a:hover {
  color: #00aae5;
}

.footer {
  background-color: #00aae5;
  padding: 20px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 20px 240px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer__inner {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.footer__policy {
  text-decoration: underline;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.footer__policy:hover {
  opacity: 0.7;
}

.footer__copyright {
  color: #ffffff;
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 1920px;
    padding-right: clamp(40px, calc((100vw - 1440px) / 2 + 40px), 240px);
    padding-left: clamp(40px, calc((100vw - 1440px) / 2 + 40px), 240px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  height: 36px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn {
    height: 49px;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }
}
.btn:hover {
  opacity: 0.75;
}
.btn--primary {
  background-color: transparent;
  color: #222222;
  border: 1px solid #4c4c4c;
}
.btn--outline {
  background-color: transparent;
  color: #00aae5;
  border: 1px solid #00aae5;
}
.btn--outline:hover {
  background-color: #00aae5;
  color: #ffffff;
  opacity: 1;
}
.btn--arrow::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffd400;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%23222222' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35% 55%;
}
@media (min-width: 768px) {
  .btn--arrow::after {
    width: 18px;
    height: 18px;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.btn-wrap {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .btn-wrap {
    margin-top: 32px;
  }
}
.btn-wrap--row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.site-logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  display: block;
  line-height: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .site-logo {
    top: 30px;
    left: 30px;
  }
}
.site-logo:hover {
  opacity: 0.8;
}
.site-logo img {
  width: 90px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .site-logo img {
    width: 160px;
  }
}

.breadcrumb {
  padding: 24px 20px;
  font-size: 0.75rem;
  color: #4c4c4c;
}
@media (min-width: 768px) {
  .breadcrumb {
    padding: 32px 40px;
    font-size: 0.875rem;
  }
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  max-width: 1440px;
  margin-inline: auto;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item a {
  color: #00aae5;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__item span {
  color: #4c4c4c;
  letter-spacing: 0.04em;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.error-404 {
  padding: 80px 0 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 140px 0 100px;
  }
}
.error-404 .container {
  max-width: 720px;
}

.error-404__code {
  font-family: "Afacad", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #00aae5;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 10rem;
    margin-bottom: 20px;
  }
}

.error-404__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

.error-404__text {
  font-size: 0.875rem;
  color: #4c4c4c;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .error-404__text {
    font-size: 1rem;
    margin-bottom: 48px;
  }
}

.error-404__form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(76, 76, 76, 0.3);
  border-radius: 4px;
  overflow: hidden;
  padding: 0 16px;
  height: 50px;
  background-color: #ffffff;
  max-width: 500px;
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .error-404__form {
    height: 56px;
    margin-bottom: 48px;
  }
}

.error-404__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: #4c4c4c;
  background: transparent;
}
.error-404__input::placeholder {
  color: rgba(76, 76, 76, 0.5);
}
@media (min-width: 768px) {
  .error-404__input {
    font-size: 1rem;
  }
}

.error-404__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #4c4c4c;
}
.error-404__btn img {
  max-width: 100%;
  height: auto;
}

.error-404__nav {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .error-404__nav {
    margin-bottom: 48px;
  }
}

.error-404__nav-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .error-404__nav-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
}

.error-404__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .error-404__nav-list {
    gap: 12px 16px;
  }
}
.error-404__nav-list a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #00aae5;
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: #00aae5;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.error-404__nav-list a:hover {
  background-color: #00aae5;
  color: #ffffff;
  opacity: 1;
}
@media (min-width: 768px) {
  .error-404__nav-list a {
    font-size: 0.9375rem;
    padding: 8px 18px;
  }
}

.error-404__actions {
  display: flex;
  justify-content: center;
}

.sp {
  display: inline-block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */