html {
  font-size: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.875rem;
  color: #000;
  background-color: #F0F0F0;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

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

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.l-header__inner {
  max-width: 1032px;
  width: 100%;
  margin-inline: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 900px) {
  .l-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.l-header__logo {
  width: 100px;
  line-height: 1px;
}
@media (max-width: 900px) {
  .l-header__logo {
    width: 80px;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 30px;
}
.l-header__nav-item {
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.5;
}
.l-header__contact {
  font-weight: normal;
  font-size: 0.75rem;
  color: #fff;
  background-color: #000;
  width: 200px;
  height: 80px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .l-header__contact {
    display: none;
  }
}

.l-inner {
  max-width: 1000px;
  width: calc(100% - 32px);
  margin-inline: auto;
}

.l-footer {
  background-color: #fff;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .l-footer__logo {
    width: 80px;
  }
}
.l-footer__copyright {
  font-size: 0.625rem;
  padding-bottom: 20px;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  .l-main {
    margin-top: 40px;
  }
}

.c-section-title {
  display: grid;
  place-content: flex-start;
  font-weight: normal;
}
.c-section-title .en {
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.c-section-title .ja {
  font-size: 0.875rem;
  margin-top: 10px;
}
.c-section-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #000;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .c-section-title::after {
    margin-top: 24px;
  }
}

.c-category {
  font-weight: normal;
  font-size: 0.75rem;
  color: #fff;
  background-color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  min-height: 20px;
  text-transform: uppercase;
}

.c-page-title {
  font-weight: normal;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.3em;
}
@media (max-width: 900px) {
  .c-page-title {
    font-size: 2rem;
  }
}

.c-page-title--ja {
  letter-spacing: normal;
}

.c-required {
  color: #FF0000;
}

.c-button {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  padding: 9px 0;
  border: 1px solid #000;
  min-width: 100px;
  display: inline-block;
}

.c-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-pagination span.page-numbers,
.c-pagination a.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
}
.c-pagination span.page-numbers.current,
.c-pagination a.page-numbers.current {
  background-color: #000;
  color: #fff;
}

.c-breadcrumb {
  margin-bottom: 30px;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__list li {
  flex-shrink: 0;
}
.c-breadcrumb__list li:not(:first-child)::before {
  content: ">";
  color: #000;
  display: inline-block;
  margin-inline: 10px;
}
.c-breadcrumb__list li:last-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 50%;
  display: inline-block;
}
.c-breadcrumb__list li a:hover {
  text-decoration: underline;
}

.c-contact-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.c-contact-button.is-active {
  opacity: 1;
  visibility: visible;
}

.p-fv {
  width: 100%;
}
.p-fv__img {
  width: 100%;
  height: calc(100vh - 80px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-news {
  margin-top: 120px;
}
@media (max-width: 900px) {
  .p-news {
    margin-top: 80px;
  }
}
.p-news__list {
  margin-top: 60px;
  display: flex;
}
@media (max-width: 900px) {
  .p-news__list {
    margin-top: 45px;
    flex-direction: column;
  }
}
.p-news__item {
  width: 33.3333333333%;
  padding: 10px 20px;
  border-left: 1px solid #000;
}
@media (max-width: 900px) {
  .p-news__item {
    width: 100%;
    padding: 0;
    margin-top: 40px;
    border-left: none;
  }
}
.p-news__item:first-of-type {
  padding: 10px 20px 10px 0;
  border-left: none;
}
@media (max-width: 900px) {
  .p-news__item:first-of-type {
    padding: 0;
    margin-top: 0;
  }
}
.p-news__item:last-of-type {
  padding: 10px 0 10px 20px;
}
@media (max-width: 900px) {
  .p-news__item:last-of-type {
    padding: 0;
  }
}
.p-news__link {
  display: block;
}
.p-news__link:hover {
  text-decoration: underline;
}
.p-news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-news__title {
  margin-top: 16px;
}

.p-about {
  margin-top: 120px;
  display: flex;
}
@media (max-width: 900px) {
  .p-about {
    margin-top: 90px;
    flex-direction: column;
  }
}
.p-about__img {
  width: 55%;
  height: 400px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .p-about__img {
    width: 100%;
    height: 300px;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__body {
  padding: 180px 5% 0;
}
@media (max-width: 900px) {
  .p-about__body {
    padding: 30px 16px 0;
  }
}
.p-about__text {
  margin-top: 50px;
  line-height: 2.2;
}
@media (max-width: 900px) {
  .p-about__text {
    margin-top: 35px;
  }
}

.p-business {
  margin-top: 120px;
}
@media (max-width: 900px) {
  .p-business {
    margin-top: 80px;
  }
}
.p-business__content {
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .p-business__content {
    flex-direction: column;
    padding: 0;
    margin-top: 35px;
  }
}
.p-business__list {
  width: 46%;
}
@media (max-width: 900px) {
  .p-business__list {
    width: 100%;
  }
}
.p-business__list:first-of-type {
  margin-top: 100px;
}
@media (max-width: 900px) {
  .p-business__list:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.p-business__item:first-of-type {
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .p-business__item:first-of-type {
    margin-bottom: 30px;
  }
}
.p-business__title {
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.p-business__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: #000;
  margin-right: 10px;
}

.p-company {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  .p-company {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.p-company__inner {
  display: flex;
  max-width: 1032px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 900px) {
  .p-company__inner {
    flex-direction: column;
    padding: 0 16px;
  }
}
.p-company__content {
  flex: 1;
  padding: 100px 0 100px 5.8139534884%;
}
@media (max-width: 900px) {
  .p-company__content {
    padding: 40px 20px;
    background-color: #fff;
  }
}
.p-company__content::before {
  content: "";
  position: absolute;
  width: 54.9418604651%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 900px) {
  .p-company__content::before {
    display: none;
  }
}
.p-company__info {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .p-company__info {
    margin-top: 35px;
  }
}
.p-company__info dt {
  width: 23%;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .p-company__info dt {
    width: 100%;
    margin-top: 20px;
  }
}
.p-company__info dd {
  width: 77%;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .p-company__info dd {
    width: 100%;
    margin-top: 5px;
    margin-left: 1em;
  }
}
.p-company__info dt:first-of-type {
  margin-top: 0;
}
.p-company__info dd:first-of-type {
  margin-top: 0;
}
@media (max-width: 900px) {
  .p-company__info dd:first-of-type {
    margin-top: 5px;
  }
}
.p-company__list-item {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .p-company__list-item {
    margin-top: 5px;
  }
}
.p-company__list-item:first-child {
  margin-top: 0;
}
.p-company__img {
  width: 53.003875969%;
  height: 400px;
  align-self: center;
}
@media (max-width: 900px) {
  .p-company__img {
    width: 100%;
    margin-top: 20px;
  }
}
.p-company__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news-list__tabs {
  display: flex;
  border-bottom: 1px solid #000;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-news-list__tabs {
    margin-top: 40px;
  }
}
.p-news-list__tab {
  width: 240px;
  padding: 20px 0;
  color: #000;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 900px) {
  .p-news-list__tab {
    width: 50%;
  }
}
.p-news-list__tab.is-active {
  pointer-events: none;
}
.p-news-list__tab.is-active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  left: 0;
  bottom: 0;
}
.p-news-list__tab:hover {
  background-color: #ccc;
  opacity: 0.7;
}
.p-news-list__tab.is-active:hover {
  background-color: transparent;
  opacity: 1;
}
.p-news-list__content {
  display: none;
}
.p-news-list__content.is-active {
  display: block;
}
.p-news-list__item {
  border-bottom: 1px solid #ccc;
}
.p-news-list__link {
  display: inline-block;
  padding: 50px 0;
}
@media (max-width: 900px) {
  .p-news-list__link {
    padding: 40px 0;
  }
}
.p-news-list__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-news-list__title {
  margin-top: 10px;
}
.p-news-list__more {
  margin-top: 80px;
  text-align: center;
}
.p-news-list__more-button {
  padding-inline: 20px;
  transition: 0.3s;
}
.p-news-list__more-button:hover {
  opacity: 0.7;
}
.p-news-list__pagination {
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-news-list__pagination {
    margin-top: 40px;
  }
}

.p-contact__content {
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-contact__content {
    margin-top: 40px;
  }
}
.p-contact__form {
  margin-top: 60px;
}
@media (max-width: 900px) {
  .p-contact__form {
    margin-top: 40px;
  }
}
.p-contact__form-group {
  margin-top: 30px;
}
.p-contact__form-label {
  display: inline-block;
  margin-bottom: 5px;
}
.p-contact__form-input {
  display: inline-block;
  width: 100%;
  padding: 18px;
  background-color: #fff;
}
.p-contact__form-textarea {
  display: inline-block;
  width: 100%;
  min-height: 180px;
  padding: 18px;
  background-color: #fff;
  vertical-align: bottom;
}
.p-contact__form-submit {
  display: block;
  margin-inline: auto;
  color: #000;
}

.p-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1em;
}
.p-article__img {
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-article__img {
    margin-top: 40px;
  }
}
.p-article__content {
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-article__content {
    margin-top: 40px;
  }
}

.p-about-page__inner {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-about-page__inner {
    flex-direction: column;
    margin-top: 40px;
  }
}
.p-about-page__image {
  width: 55%;
}
.p-about-page__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .p-about-page__image {
    width: 100%;
  }
}
.p-about-page__content {
  flex: 1;
  margin-top: 80px;
  line-height: 1.8;
  padding: 0 5%;
}
.p-about-page__content p + p {
  margin-top: 2em;
}
@media (max-width: 900px) {
  .p-about-page__content {
    margin-top: 40px;
    padding: 0;
  }
  .p-about-page__content p + p {
    margin-top: 1.5em;
  }
}

.p-business-page__inner {
  margin-top: 80px;
}
@media (max-width: 900px) {
  .p-business-page__inner {
    margin-top: 40px;
  }
}
.p-business-page__item {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.p-business-page__item:first-of-type {
  margin-top: 0;
}
@media (max-width: 900px) {
  .p-business-page__item {
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
  }
}
.p-business-page__image {
  width: 45%;
}
.p-business-page__image img {
  width: 100%;
}
@media (max-width: 900px) {
  .p-business-page__image {
    width: 100%;
  }
}
.p-business-page__title {
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .p-business-page__title {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}
.p-business-page__text {
  flex: 1;
}
.p-business-page__text p + p {
  margin-top: 2em;
}
@media (max-width: 900px) {
  .p-business-page__text p + p {
    margin-top: 1.5em;
  }
}

.p-company-page__inner {
  margin-top: 80px;
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  .p-company-page__inner {
    margin-top: 40px;
    flex-direction: column;
  }
}
.p-company-page__info {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.p-company-page__info dt {
  width: 18%;
  padding: 20px 0;
  border-top: 1px solid #000;
  font-weight: bold;
}
.p-company-page__info dd {
  width: 82%;
  padding: 20px 0;
  border-top: 1px solid #000;
}
.p-company-page__info dt:first-of-type,
.p-company-page__info dd:first-of-type {
  border-top: none;
}
@media (max-width: 900px) {
  .p-company-page__info {
    width: 100%;
  }
  .p-company-page__info dt {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .p-company-page__info dd {
    width: 100%;
    padding: 15px 0 15px 0;
    border-top: none;
  }
}
.p-company-page__list-item {
  margin-top: 10px;
}
.p-company-page__list-item:first-of-type {
  margin-top: 0;
}
.p-company-page__map {
  width: 50%;
}
.p-company-page__map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
@media (max-width: 900px) {
  .p-company-page__map {
    width: 100%;
  }
  .p-company-page__map iframe {
    height: 300px;
  }
}