@charset "UTF-8";
/*====================================================================================
1. START COMMON ONLY CHILD PAGE.
====================================================================================*/
/*---------- START BODY ----------*/
body {
  position: relative;
}
body .l-main {
  position: relative;
}
body .l-main:after {
  position: fixed;
  content: "";
  width: 100%;
  height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}
body .c-main-page {
  padding-top: 3rem;
  padding-bottom: 6rem;
}
body .c-main-page__detail-page {
  padding-top: 3rem;
}
body .l-footer {
  position: relative;
}
body .l-footer__main {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36));
  backdrop-filter: blur(16px) brightness(88%);
  -webkit-backdrop-filter: blur(16px) brightness(88%);
}

@media only screen and (min-width: 768px) {
  body .c-main-page {
    padding-top: 3rem;
    padding-bottom: 12rem;
  }
  body .c-main-page__detail-page {
    padding-top: 8rem;
  }
}
/*---------- START BREADCRUMB ----------*/
.c-breadcrumb {
  position: relative;
  padding: 0 0 2rem;
  z-index: 3;
}

.c-breadcrumb__list {
  display: flex;
}

.c-breadcrumb__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3.5rem;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
}
.c-breadcrumb__item:after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  width: 0;
  height: 0;
  border: solid var(--white);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.c-breadcrumb__item:last-child {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 0;
}
.c-breadcrumb__item:last-child:after {
  content: none;
}
.c-breadcrumb__item:nth-child(2) {
  white-space: nowrap;
}

.c-breadcrumb__link {
  line-height: 1.2;
  text-decoration: none;
  color: var(--white);
}

@media only screen and (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
/*---------- START TITLE PAGE ----------*/
.c-ttlpage {
  position: relative;
  height: 20rem;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.5rem;
  padding-bottom: 4rem;
  color: #fff;
  z-index: 2;
}
.c-ttlpage span {
  display: block;
  width: 100%;
}
.c-ttlpage .txt-jp {
  font-size: 2.6rem;
}
.c-ttlpage .txt-en {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@media only screen and (max-width: 767px) {
  .c-ttlpage {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-ttlpage {
    padding-bottom: 8rem;
    height: 40rem;
  }
  .c-ttlpage .txt-jp {
    font-size: 4rem;
    font-weight: 900;
  }
  .c-ttlpage .txt-en {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}
/*---------- PADDING SECTION ----------*/
/*====================================================================================
2. START PAGE achievement
====================================================================================*/
.p-achievement .l-main:after {
  background: url("../achievement/images/p-bg.webp") no-repeat top center;
}

/*---------- START c-list-card ----------*/
.c-list-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}

.c-list-card__item {
  width: calc((100% - 1rem) / 2);
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1rem;
}

.c-list-card__img {
  padding-bottom: 1rem;
}

.c-list-card__title {
  font-weight: 500;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.c-list-card__title--no-border {
  border-bottom: none;
  padding-bottom: 0 !important;
}

.c-list-card__detail {
  font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
  .c-list-card {
    gap: 2.5rem;
  }
  .c-list-card__item {
    width: calc((100% - 5rem) / 3);
    padding: 2rem;
    border-radius: 0.8rem;
  }
  .c-list-card__img {
    padding-bottom: 2rem;
  }
  .c-list-card__title {
    font-size: 2.1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .c-list-card__detail {
    font-size: 1.4rem;
  }
}
/*---------- START pagination ----------*/
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 1rem;
  margin-top: 4rem;
}
.pagination .page, .pagination .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 3rem;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.2s;
}
.pagination .page:hover, .pagination .page.active {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
}
.pagination .nav:hover, .pagination .nav.active {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
}
.pagination .page {
  background: var(--white);
}
.pagination .dots {
  padding: 0 5px;
  font-size: 18px;
  color: var(--white);
}
.pagination .page-count {
  width: 100%;
  text-align: center;
}
.pagination .page-count span {
  display: inline-block;
  border: 1px solid var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 8rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
}

@media only screen and (min-width: 768px) {
  .pagination {
    margin-top: 8rem;
  }
}
/*====================================================================================
3. START PAGE achievement detail
====================================================================================*/
.c-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--gray-light);
  border-radius: 1rem;
  padding: 2rem 1rem;
  gap: 2rem;
}

.c-detail__left {
  width: 100%;
}

.c-detail__right {
  width: 100%;
  font-size: 1.4rem;
}

.c-detail__img {
  margin-top: 2rem;
}

.c-detail__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-detail__tag li {
  background: var(--black);
  color: var(--white);
  min-width: 9rem;
  max-width: 100%;
  border-radius: 3rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .c-detail {
    padding: 4rem 2rem;
  }
  .c-detail__left {
    width: 40%;
  }
  .c-detail__right {
    width: 55%;
  }
  .c-detail__img {
    margin-top: 3rem;
  }
}
.c-table01 {
  width: 100%;
  margin: 2rem 0;
}
.c-table01 th, .c-table01 td {
  border: 1px solid var(--black);
  background: var(--white);
  padding: 0.5rem 2rem;
  text-align: left;
}
.c-table01 th {
  width: 40%;
}
.c-table01 td {
  width: 60%;
}

@media only screen and (min-width: 768px) {
  .c-table01 {
    margin: 3rem 0;
  }
}
/*====================================================================================
4. START PAGE company
====================================================================================*/
.p-company .l-main:after {
  background: url("../company/images/p-bg.webp") no-repeat top center;
}

.p-company__message {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.p-company__message-txt {
  width: 100%;
  font-size: 1.4rem;
}

.p-company__message-img {
  width: 100%;
}
.p-company__message-img img {
  width: 100%;
}

.p-company__philosophy {
  font-size: 1.4rem;
  text-align: center;
  color: var(--white);
}

.p-company__profile {
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.p-company__profile-infor {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.p-company__profile-txt {
  width: 100%;
}

.p-company__profile-img {
  width: 26rem;
  margin: auto;
}
.p-company__profile-img img {
  width: 100%;
}

.p-company__access-map {
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  height: 25rem;
  overflow: hidden;
}
.p-company__access-map iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .p-company__profile-infor {
    flex-direction: column-reverse;
  }
  .p-company__message-img {
    aspect-ratio: 2/3;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) {
  .p-company__message {
    padding: 4rem;
  }
  .p-company__message-txt {
    width: 50%;
  }
  .p-company__message-img {
    width: 45%;
  }
  .p-company__profile {
    padding: 4rem;
  }
  .p-company__profile-txt {
    width: calc(100% - 31rem);
  }
  .p-company__profile-img {
    margin: 0;
  }
  .p-company__access-map {
    height: 45rem;
  }
  .p-company__message-img {
    aspect-ratio: 2/3;
    overflow: hidden;
  }
}
.c-table02 {
  width: 100%;
  margin: 2rem 0;
}
.c-table02 th, .c-table02 td {
  border-bottom: 1px solid var(--black);
  background: var(--white);
  padding: 1rem 0;
  text-align: left;
  font-size: 1.4rem;
  vertical-align: top;
}
.c-table02 th {
  width: 28%;
}
.c-table02 td {
  width: 72%;
}

@media only screen and (max-width: 767px) {
  .c-table02 th, .c-table02 td {
    display: block;
    width: 100%;
  }
  .c-table02 th {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .c-table02 {
    margin: 3rem 0;
  }
}
/*====================================================================================
5. START PAGE about
====================================================================================*/
.p-about .l-main:after {
  background: url("../about/images/p-bg.webp") no-repeat top center;
}

.p-about__aim {
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

@media only screen and (min-width: 768px) {
  .p-about__aim {
    padding: 4rem;
  }
}
.c-faq__item {
  background: #fff;
  margin-bottom: 1.5rem;
}
.c-faq__item:last-child {
  margin-bottom: 0;
}

.c-faq__q {
  position: relative;
  width: 100%;
  cursor: pointer;
  padding: 1rem;
}
.c-faq__q:after, .c-faq__q:before {
  position: absolute;
  content: "";
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: #000;
}
.c-faq__q:after {
  transform: rotate(-90deg);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.c-faq__q.active:after {
  transform: rotate(0);
}

.c-faq__a {
  position: relative;
  display: none;
  padding-left: 3.5rem;
  padding-bottom: 1rem;
}
.c-faq__a:after {
  position: absolute;
  content: "A";
  font-weight: bold;
  font-size: 2.2rem;
  font-family: var(--font-Noto-en);
  line-height: 1;
  top: 0;
  left: 1rem;
}

.c-faq__title {
  position: relative;
  padding: 0 2.5rem;
  font-weight: bold;
}
.c-faq__title:after {
  position: absolute;
  content: "Q";
  font-weight: bold;
  font-size: 2.2rem;
  font-family: var(--font-Noto-en);
  line-height: 1;
  top: 0.2rem;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .c-faq__q {
    padding: 1.5rem;
  }
  .c-faq__q:after, .c-faq__q:before {
    width: 12px;
    right: 1.5rem;
  }
  .c-faq__a {
    padding-left: 4.5rem;
    padding-bottom: 1.5rem;
  }
  .c-faq__a:after {
    font-size: 2.2rem;
    top: 0.5rem;
    left: 1.5rem;
  }
}
/*====================================================================================
5. START PAGE news
====================================================================================*/
.p-news .l-main:after {
  background: url("../news/images/p-bg.webp") no-repeat top center;
}

@media only screen and (min-width: 768px) {
  .p-news__list {
    margin-bottom: 5rem;
  }
  .p-news__list__item {
    padding: 3rem;
  }
}
.c-list-news {
  margin-bottom: 3rem;
}

.c-list-news__item {
  width: 100%;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
}

.c-list-news__head {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.c-list-news__date {
  font-weight: bold;
  font-size: 1.4rem;
}

.c-list-news__title {
  font-size: 1.6rem;
}

.c-list-news__img {
  width: 100%;
  margin: 1rem auto 0;
}

.c-list-news__body {
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .c-list-news__item {
    padding: 3rem;
    margin-bottom: 5rem;
  }
  .c-list-news__head {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .c-list-news__title {
    font-size: 2rem;
  }
  .c-list-news__img {
    width: 75%;
    margin: 2rem auto 0;
  }
}
/*====================================================================================
6. START PAGE contact
====================================================================================*/
.p-contact .l-main:after {
  background: url("../contact/images/p-bg.webp") no-repeat top center;
}
.p-contact .c-title01__txt-larger {
  font-size: 2.4rem;
}
.p-contact .form-contact {
  background: #fff;
  padding: 25px 15px;
}
@media only screen and (min-width: 768px) {
  .p-contact .form-contact {
    padding: 5rem 6rem;
  }
  .p-contact .c-title01__txt-larger {
    font-size: 4.5rem;
  }
}

.contact-pp__desc {
  color: #fff;
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact-pp__desc a {
  color: #fff;
}
.contact-pp__desc02 {
  padding-left: 1.5em;
}
.contact-pp__row {
  margin-bottom: 3rem;
}
.contact-pp__inner {
  padding: 25px 15px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .contact-pp__inner {
    padding: 50px 60px 50px 60px;
  }
}

.list-decimal > li {
  list-style: decimal;
  margin-left: 1em;
}

.list-mark-disc > li {
  position: relative;
  padding-left: 1em;
}
.list-mark-disc > li:before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

.text-indent {
  display: block;
  padding-left: 1em !important;
  text-indent: -1em !important;
}
.text-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.list-indent02 li {
  padding-left: 2em;
  text-indent: -2em;
}