@charset "utf-8";
/* CSS Works */
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.mv-page__item {
  width: min(50%, 64rem);
  padding: 0 5rem;
  margin: 0;
}
.mv-title {
  text-align: left;
}
.mv-title__jp h2 {
  margin-bottom: 2rem;
  color: #00bec8;
  font-size: clamp(4.8rem, 7vw, 13rem);
  font-weight: 900;
  text-wrap: auto;
  line-height: 1;
  white-space: nowrap;
}
.mv-title__en {
  margin-bottom: 2rem;
  color: #000000;
  font-size: clamp(3.2rem, 5vw, 9rem);
  font-family: "Braah One", sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.mv-title__text {
  position: relative;
}
.mv-title__text h3 {
  display: block;
  background-color: #fff;
  padding: 0 1rem;
  color: #000;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700;
  white-space: nowrap;
}
.mv-title__text::before, .mv-title__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: #000;
}
.mv-title__text::before {
  left: 0;
}
.mv-title__text::after {
  right: 0;
}
.mv-page__image {
  width: 94.2rem;
  height: 100%;
  border-radius: 34.8rem 0 0 34.8rem;
  overflow: hidden;
}
.mv-page__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .mv-page {
    padding-top: 13.5rem;
  }
  .mv-page__item {
    padding: 7rem 2.5rem;
  }
  .mv-title__text::before, .mv-title__text::after {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .mv-page__item {
    width: 100%;
  }
  .mv-title {
    text-align: center;
  }
  .mv-title__text::before, .mv-title__text::after {
    width: 30%;
  }
  .mv-page__image {
    display: none;
  }
}
/* Breadcrumbs
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {
  .breadcrumbs.page {
    padding-top: 13.5rem;
  }
  .breadcrumbs ul {
    flex-wrap: wrap;
  }
}
/* Section - Headline
----------------------------------------------------------------------------------------------------*/
.sec-headline {
  width: min(97%, 120rem);
  margin: 10rem auto;
}
.sec-headline__copy {
  margin-bottom: 7rem;
  font-size: clamp(3.4rem, 6vw, 9.4rem);
  font-weight: 900;
}
.sec-headline__text {
  color: #5a5a5a;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .sec-headline {
    margin: 10rem auto 7rem;
  }
  .sec-headline__copy {
    margin-bottom: 5rem;
    text-align: center;
  }
}
/* Section - Works
----------------------------------------------------------------------------------------------------*/
.sec-works {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(97%, 120rem);
  margin: 10rem auto;
}
.sec-works__list {
  width: calc(100% / 3 - 2rem);
  margin-bottom: 12rem;
}
.sec-works__list img {
  border: 1px solid #c8c8c8;
}
.sec-works__list dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sec-works__list dt {
  display: flex;
  align-items: center;
  height: 6.5rem;
  width: 20%;
  border-bottom: 1px solid #c8c8c8;
  font-size: 1.8rem;
}
.sec-works__list dd {
  display: flex;
  align-items: center;
  height: 6.5rem;
  width: 80%;
  border-bottom: 1px solid #c8c8c8;
  font-size: 2rem;
  font-weight: 500;
}
.sec-works__btn {
  text-align: center;
}
.sec-works__btn a {
  border-bottom: 0.5rem solid #000000;
  font-size: 2.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.sec-works__btn a:hover {
  color: #00bec8;
  border-bottom: 0.5rem solid #00bec8;
}
@media screen and (max-width: 1023px) {
  .sec-works {
    flex-wrap: wrap;
  }
  .sec-works__list {
    width: calc(100% / 2 - 2rem);
  }
  .sec-works__list dt {
    height: 5rem;
    font-size: 1.6rem;
  }
  .sec-works__list dd {
    height: 5rem;
    font-size: 1.8rem;
  }
  .sec-works__btn a {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-works {
    flex-direction: column;
  }
  .sec-works__list {
    width: 100%;
    margin-bottom: 6.5rem;
  }
  .sec-works__list dl {
    margin-bottom: 2rem;
  }
}
/* Footer Copy
----------------------------------------------------------------------------------------------------*/
.footer-copy {
  background-color: #00bec8;
}
/* Detail Page
----------------------------------------------------------------------------------------------------*/
.sec-detail {
  display: flex;
  justify-content: space-between;
  width: min(97%, 89rem);
  margin: 8rem auto 9rem;
}
.sec-detail__image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
  width: calc(100% / 2 - 1.9rem);
}
/*掲載画像が1点のみ　クラスを追加する*/
.sec-detail__image-one {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: unset;
}
.sec-detail__image div:nth-child(1) {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
}
.sec-detail__image div:nth-child(2) {
  grid-row-start: 3;
}
.sec-detail__image div:nth-child(3) {
  grid-row-start: 3;
}
.sec-detail__image img {
  border: 1px solid #c8c8c8;
}
.sec-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% / 2 - 1.9rem);
}
.sec-detail__info__text dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sec-detail__info__text dt {
  display: flex;
  align-items: center;
  height: 6.5rem;
  width: 20%;
  border-bottom: 1px solid #c8c8c8;
  font-size: 1.8rem;
}
.sec-detail__info__text dd {
  display: flex;
  align-items: center;
  height: 6.5rem;
  width: 80%;
  border-bottom: 1px solid #c8c8c8;
  font-size: 2rem;
  font-weight: 500;
}
.sec-detail__info__text p {
  color: #5a5a5a;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
}
.sec-detail__info__btn {
  margin-bottom: 1.5rem;
}
.sec-detail__info__btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem; /* テキストとアイコンの間隔 */
  padding-bottom: 0.2rem; /* 下線との距離を調整 */
  border-bottom: 0.5rem solid #000;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.sec-detail__info__btn a:hover {
  opacity: 0.5;
}
.sec-detail__info__btn a .icon {
  width: 2rem;
  height: auto;
}
.sec-listlink {
  padding-bottom: 6rem;
  text-align: center;
}
.sec-listlink a {
  padding: 1rem 4rem;
  border: 0.5rem solid #000000;
  border-radius: 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.sec-listlink a:hover {
  color: #00bec8;
  border: 0.5rem solid #00bec8;
}
@media screen and (max-width: 1023px) {
  .sec-detail {
    flex-direction: column;
    margin: 5rem auto;
  }
  .sec-detail__image {
    width: 100%;
  }
  .sec-detail__info {
    flex-direction: column;
    width: 100%;
  }
  .sec-detail__info__text dt {
    height: 5rem;
    font-size: 1.6rem;
  }
  .sec-detail__info__text dd {
    height: 5rem;
    font-size: 1.8rem;
  }
  .sec-detail__info__text p {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .sec-detail__info__btn {
    margin-bottom: 1.5rem;
  }
  .sec-detail__info__btn a {
    font-size: 1.8rem;
  }
  .sec-detail__info__btn a .icon {
    width: 1.8rem;
  }
  .sec-listlink {
    padding-bottom: 5rem;
  }
  .sec-listlink a {
    font-size: 2.2rem;
  }
}