@charset "UTF-8";
@view-transition {
  navigation: auto;
}
html {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color-scheme: light;
  font-synthesis: none;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: "transparent";
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
  line-height: 2;
  font-weight: bold;
}

button {
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  background-color: inherit;
  border: none;
  outline: none;
}

p,
a {
  letter-spacing: normal;
}

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

picture {
  display: block;
}

img {
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: 100%;
}

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

.button {
  display: inline-block;
  padding: 24px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
  min-width: 240px;
}
.button:hover {
  opacity: 0.8;
}
.button .button_text {
  display: block;
}

.button--outline {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
.button--outline:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.button--text {
  background-color: transparent;
  color: #000;
  padding: 12px 0;
  border-radius: 0;
  min-width: auto;
  border: none;
}
.button--text .button_text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.button--text .button_text::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s ease;
}
.button--text:hover {
  opacity: 1;
}
.button--text:hover .button_text::after {
  transform: translateX(4px);
}

.button--on-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.button--on-white:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
  border-color: #fff;
}

.button--small {
  padding: 14px 20px;
  font-size: 12px;
  border-radius: 14px;
  min-width: 160px;
}

.button--large {
  padding: 28px 40px;
  font-size: 16px;
  border-radius: 24px;
  min-width: 300px;
}

.section_header {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 960px) {
  .section_header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.heading_title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  padding-left: 48px;
  margin: 0;
  line-height: normal;
  align-self: flex-end;
}
@media (max-width: 960px) {
  .heading_title {
    font-size: 40px;
    padding-left: 0;
    align-self: flex-start;
  }
}

.heading_subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: normal;
  padding-bottom: 12px;
}
@media (max-width: 960px) {
  .heading_subtitle {
    font-size: 18px;
  }
}

.section_header--dark .heading_title,
.section_header--dark .heading_subtitle {
  color: #000;
}

.section_header--center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_header--center .heading_title {
  color: #000;
  align-self: center;
  padding-left: 0;
}
@media (max-width: 960px) {
  .section_header--center .heading_title {
    align-self: center;
  }
}
.section_header--center .heading_subtitle {
  color: #000;
  align-self: center;
  padding-bottom: 0;
}
@media (max-width: 960px) {
  .section_header--center {
    align-items: center;
  }
}

.column_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}

.column_heading_title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: normal;
  align-self: flex-start;
}
@media (max-width: 960px) {
  .column_heading_title {
    font-size: 40px;
  }
}

.column_heading_subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  letter-spacing: normal;
  align-self: flex-start;
}
@media (max-width: 960px) {
  .column_heading_subtitle {
    font-size: 18px;
  }
}

.title {
  font-family: "Lexend Giga", sans-serif;
  font-size: 65px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 960px) {
  .title {
    font-size: 42px;
  }
}

.subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 61px;
}
@media (max-width: 960px) {
  .subtitle {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .title--contact-sp {
    font-size: 48px;
  }
}

@media (max-width: 960px) {
  .subtitle--contact-sp {
    font-size: 16px;
  }
}

.header-margin {
  margin-top: 160px;
}
@media (max-width: 960px) {
  .header-margin {
    margin-top: 77px;
  }
}

.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.section-divider__wave {
  width: 100%;
  height: auto;
  display: block;
}
.section-divider__character {
  position: absolute;
  bottom: 40px;
  right: 10%;
  width: 80px;
  height: 80px;
  z-index: 2;
}
.section-divider__character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.category-tag--outline {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.category-tag--white {
  background-color: #fff;
  color: #000;
}
.category-tag--small {
  padding: 2px 8px;
  font-size: 10px;
}
.category-tag--large {
  padding: 6px 16px;
  font-size: 14px;
}

.more-link {
  display: block;
  max-width: 100px;
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: normal;
  transition: opacity 0.3s ease;
  background: transparent;
}
.more-link:hover {
  opacity: 0.8;
}
.more-link--white {
  border-color: #fff;
  color: #fff;
}
.more-link--white:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

.more-link-container--right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.more-link-container--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 269px);
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
}
@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.news-item {
  box-sizing: border-box;
  max-width: 269px;
  background: #fff;
  padding: 16px;
  transition: transform 0.3s ease;
}
.news-item:hover {
  transform: translateY(-8px);
}

.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-image {
  max-width: 248px;
  width: 100%;
  height: 351px;
  overflow: hidden;
  background: #f0f0f0;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  display: block;
  padding: 12px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1.8px;
}

.news-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  column-gap: 30px;
  row-gap: 30px;
  justify-content: center;
}
@media (max-width: 960px) {
  .report-grid {
    grid-template-columns: repeat(2, 200px);
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 640px) {
  .report-grid {
    grid-template-columns: 200px;
  }
}

.report-item {
  max-width: 200px;
  background: #fff;
  padding: 16px;
  transition: transform 0.3s ease;
}
.report-item:hover {
  transform: translateY(-24px);
}

.report-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.report-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .report-image {
    height: 200px;
  }
}

.report-date {
  display: block;
  padding: 12px 0 8px;
  font-size: 14px;
  color: #666;
}

.report-title {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}