@charset "UTF-8";
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #fff;
  background: #00afcc;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  background: rgb(0, 157.5, 183.6);
}

.u-sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.u-center {
  margin-inline: auto;
}

.pc {
  display: inline-block;
}
@media (max-width: 599px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 599px) {
  .sp {
    display: inline-block;
  }
}

.bg-grey {
  background-color: var(--color-background);
}

/* Text size */
.u-text-large {
  font-size: 1.15em;
}

.u-text-small {
  font-size: 0.85em;
}

/* Text Style */
.u-fw-400 {
  font-weight: normal;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-800,
.u-fw-bold {
  font-weight: bold;
}

.u-underline {
  text-decoration: underline;
}

.u-text-delete {
  text-decoration: line-through;
}

/* Line-height */
.u-lheight-large {
  line-height: 2;
}

/* Align */
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

@media (max-width: 599px) {
  .align-center-sp {
    text-align: center;
  }
  .align-left-sp {
    text-align: left;
  }
  .align-right-sp {
    text-align: right;
  }
}
/* Break */
.pc {
  display: inline;
}
@media (max-width: 599px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media (max-width: 1023px) {
  .tb {
    display: inline;
  }
}

.sp {
  display: none;
}
@media (max-width: 599px) {
  .sp {
    display: inline;
  }
}

/* Margin */
.mb8 {
  margin-bottom: 8px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb56 {
  margin-bottom: 56px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb120 {
  margin-bottom: 120px;
}

@media (max-width: 599px) {
  .s_mb8 {
    margin-bottom: 8px;
  }
  .s_mb16 {
    margin-bottom: 16px;
  }
  .s_mb24 {
    margin-bottom: 24px;
  }
  .s_mb32 {
    margin-bottom: 32px;
  }
  .s_mb40 {
    margin-bottom: 40px;
  }
  .s_mb48 {
    margin-bottom: 48px;
  }
  .s_mb56 {
    margin-bottom: 56px;
  }
  .s_mb64 {
    margin-bottom: 64px;
  }
  .s_mb120 {
    margin-bottom: 120px;
  }
}
/* Padding */
.pd0 {
  padding: 0;
}

/* Color */
.bg-white {
  background-color: #ffffff;
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

/* Image */
.image-round {
  border-radius: 8px;
}

.thumb-1-1,
.thumb-4-3,
.thumb-16-9 {
  width: 100%;
  position: relative;
}

.thumb-1-1::before,
.thumb-4-3::before,
.thumb-16-9::before {
  display: block;
  content: "";
}

.thumb-1-1::before {
  padding-top: 100%;
}

.thumb-4-3::before {
  padding-top: 67%;
}

.thumb-16-9::before {
  padding-top: 53%;
}

.thumb-1-1 img,
.thumb-4-3 img,
.thumb-16-9 img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**/
@media (max-width: 1023px) {
  .u-wrap-side {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 1023px) {
  .u-wrap-side-narrow {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.u-shadow {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

/* display */
.d-inline-block {
  display: inline-block;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  font-size: 24px;
}
@media (max-width: 599px) {
  .hero {
    max-height: 100vh;
    height: 100dvh;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 0, transparent 60%, #333 100%); /* 徐々に透明にする */
  z-index: 1;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 3vw;
  width: 100%;
  color: #fff;
}
@media (max-width: 599px) {
  .hero .hero-content {
    bottom: 16px;
  }
}
.hero .hero-content .hero__copy {
  max-width: 90%;
  margin-inline: auto;
  font-size: 64px;
  mix-blend-mode: difference;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0.4em;
}
@media (max-width: 1023px) {
  .hero .hero-content .hero__copy {
    font-size: 40px;
  }
}
@media (max-width: 599px) {
  .hero .hero-content .hero__copy {
    font-size: 24px;
    max-width: calc(100% - 32px);
  }
}
.hero .hero-content .hero__copy span {
  font-size: 0.95em;
}
.hero .hero-content .hero__desc {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: left;
  max-width: 90%;
  margin-inline: auto;
}
@media (max-width: 1023px) {
  .hero .hero-content .hero__desc {
    padding-right: 60px;
  }
}
@media (max-width: 599px) {
  .hero .hero-content .hero__desc {
    font-size: 11px;
    max-width: calc(100% - 32px);
    padding-right: 60px;
  }
}
.hero .scroll_line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 300px;
  z-index: 10;
}
@media (max-width: 599px) {
  .hero .scroll_line {
    width: 60px;
  }
}
.hero .scroll_line-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .hero .scroll_line-text {
    font-size: 12px;
  }
}
.hero .scroll_line-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}
.hero .scroll_line-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* intro */
.idx_intro {
  padding-block: 120px;
}
@media (max-width: 599px) {
  .idx_intro {
    padding-block: 64px;
  }
}
.idx_intro .headline01 {
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 599px) {
  .idx_intro .headline01 {
    margin-bottom: 32px;
  }
}
.idx_intro .headline01 .en {
  color: var(--brand);
  text-align: center;
}
.idx_intro .headline01 .ja {
  line-height: 1.4;
  text-align: center;
}
.idx_intro .intro_header {
  --over-size: 8vw;
  width: calc(100% + var(--over-size) * 2);
  max-width: unset;
  aspect-ratio: 16/5;
  object-fit: cover;
  margin-bottom: 64px;
  margin-inline: calc(var(--over-size) * -1);
}
@media (max-width: 1023px) {
  .idx_intro .intro_header {
    --over-size: 3vw;
  }
}
@media (max-width: 599px) {
  .idx_intro .intro_header {
    --over-size: 5vw;
    margin-bottom: 32px;
    aspect-ratio: 16/8;
  }
}
.idx_intro .explain {
  margin-bottom: 64px;
}
.idx_intro .explain p {
  line-height: 1.75;
  text-align: center;
}
.idx_intro .explain p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media (max-width: 1023px) {
  .idx_intro .explain p {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .idx_intro .explain p {
    text-align: justify;
  }
}
.idx_intro .feature {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 599px) {
  .idx_intro .feature {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.idx_intro .feature .feature__image {
  margin-bottom: 32px;
}
.idx_intro .feature .feature__image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (max-width: 599px) {
  .idx_intro .feature .feature__image img {
    max-width: 100vw;
    height: 100%;
  }
}
.idx_intro .feature .feature__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  overflow: hidden;
}
.idx_intro .feature .feature__inner .headline {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .idx_intro .feature .feature__inner .headline {
    font-size: 20px;
  }
}
.idx_intro .feature .feature__inner p {
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
.idx_intro .feature .feature__inner p:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 1023px) {
  .idx_intro .feature .feature__inner p {
    font-size: 14px;
  }
}

/* service */
.idx_service {
  padding-block: 128px;
  background-color: #333;
  color: #fff;
}
@media (max-width: 599px) {
  .idx_service {
    padding-block: 64px;
  }
}
.idx_service .headline01 {
  margin-bottom: 168px;
}
@media (max-width: 1023px) {
  .idx_service .headline01 {
    margin-bottom: 64px;
  }
}
.idx_service .headline01 .en {
  color: #00e5ff;
}
.idx_service .service__detail {
  display: grid;
  grid-template-columns: auto 60%;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .idx_service .service__detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.idx_service .service__detail .service__image {
  order: 2;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .idx_service .service__detail .service__image {
    order: 1;
  }
}
.idx_service .service__detail .service__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.idx_service .service__detail .service__text {
  order: 1;
}
@media (max-width: 1023px) {
  .idx_service .service__detail .service__text {
    order: 2;
  }
}
.idx_service .service__detail .service__text .service__title {
  font-size: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .idx_service .service__detail .service__text .service__title {
    font-size: 22px;
  }
}
.idx_service .service__detail .service__text p {
  font-size: 16px;
  line-height: 1.75;
}
.idx_service .service__detail .service__text p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media (max-width: 1023px) {
  .idx_service .service__detail .service__text p {
    font-size: 14px;
  }
}
.idx_service .service__price {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-white);
  padding-inline: 24px;
  margin-bottom: 128px;
  color: #333;
}
.idx_service .service__price.last-price {
  margin-bottom: 64px;
}
@media (max-width: 599px) {
  .idx_service .service__price {
    margin-bottom: 64px;
  }
}
.idx_service .service__price .service__price_head {
  width: 100%;
  border-bottom: 1px solid var(--brand);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--brand);
  padding-block: 20px 16px;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_head {
    font-size: 16px;
  }
}
.idx_service .service__price .service__price_body {
  display: grid;
  padding-block: 32px;
}
.idx_service .service__price .service__price_body .price_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 16px;
  color: #333;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body .price_item {
    padding: 24px 16px;
  }
}
.idx_service .service__price .service__price_body .price_item:not(:last-of-type) {
  border-style: solid;
  border-color: var(--brand);
  border-width: 0 1px 0 0;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body .price_item:not(:last-of-type) {
    border-width: 0 0 1px 0;
  }
}
.idx_service .service__price .service__price_body .price_item .plan_name {
  font-size: 18px;
  font-weight: bold;
  color: var(--brand);
  text-align: center;
  align-self: center;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body .price_item .plan_name {
    font-size: 16px;
  }
}
.idx_service .service__price .service__price_body .price_item .price {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .idx_service .service__price .service__price_body .price_item .price {
    font-size: 24px;
  }
}
.idx_service .service__price .service__price_body .price_item .explain {
  font-size: 12px;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body .price_item .explain {
    font-size: 12px;
  }
}
.idx_service .service__price .service__price_body.col-1 {
  grid-template-columns: 1fr;
  text-align: center;
}
.idx_service .service__price .service__price_body.col-1 .price_item {
  padding-block: unset;
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body.col-1 .price_item {
    padding: 24px 16px;
  }
}
.idx_service .service__price .service__price_body.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.idx_service .service__price .service__price_body.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 599px) {
  .idx_service .service__price .service__price_body {
    grid-template-columns: 1fr !important;
    padding-block: unset;
  }
}

/* works */
.works {
  padding-block: 128px;
}
@media (max-width: 599px) {
  .works {
    padding-block: 64px;
  }
}
.works .headline01 {
  margin-bottom: 128px;
}
@media (max-width: 599px) {
  .works .headline01 {
    margin-bottom: 64px;
  }
}
.works .work__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 24px;
}
@media (max-width: 1023px) {
  .works .work__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .works .work__container {
    grid-template-columns: 1fr;
  }
}
.works .work__container .work-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  cursor: pointer;
}
.works .work__container .work-item .thumb {
  position: relative;
  overflow: hidden;
}
.works .work__container .work-item .thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.works .work__container .work-item .thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.works .work__container .work-item .thumb:hover img {
  transform: scale(1.05);
}
.works .work__container .work-item .thumb:hover .play-icon {
  background: rgba(0, 0, 0, 0.6);
}
.works .work__container .work-item h3 {
  font-size: 1.125rem;
  margin-top: 12px;
  font-weight: 600;
  text-align: left;
  word-break: break-all;
}
.works .work__container .work-item .cats {
  margin-top: 4px;
  font-size: 0.875rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.works .work__container .work-item .cats span::before {
  content: "#";
  padding-right: 4px;
}
.works .work__container .work-item .cats a {
  color: inherit;
  text-decoration: none;
  margin-right: 8px;
}
.works .work__container .work-item .cats a:hover {
  text-decoration: underline;
}
.works .work__container .work-item .modal-data {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal .modal-inner {
  background: #fff;
  border-radius: 8px;
  max-width: 960px;
  width: 90%;
  height: max-content;
  max-height: 90vh;
  overflow-y: auto;
  padding: 120px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}
@media (max-width: 599px) {
  .modal .modal-inner {
    padding: 64px 24px;
  }
}
.modal .modal-inner .video__name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media (max-width: 599px) {
  .modal .modal-inner .video__name {
    font-size: 18px;
  }
}
.modal .modal-inner iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.modal .modal-inner video,
.modal .modal-inner img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.modal .modal-inner p {
  margin-bottom: 12px;
  line-height: 1.6;
}
.modal .modal-inner .video__thumb {
  position: relative;
  margin-bottom: 48px;
}
.modal .modal-inner .video__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.modal .modal-inner .video__thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.modal .modal-inner .video__category {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 40px;
}
.modal .modal-inner .video__category span::before {
  content: "#";
  padding-right: 4px;
}
.modal .modal-inner .video__explain {
  font-size: 16px;
}
@media (max-width: 1023px) {
  .modal .modal-inner .video__explain {
    font-size: 12px;
  }
}
.modal .modal-inner .close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  border-radius: 50%;
  background-color: var(--brand);
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #fff;
}
.modal .modal-inner .close::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f00d";
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* company */
.company {
  background-color: #f5f5f7;
  padding-block: 128px;
}
@media (max-width: 599px) {
  .company {
    padding-block: 64px;
  }
}
.company .headline01 {
  margin-bottom: 128px;
}
@media (max-width: 599px) {
  .company .headline01 {
    margin-bottom: 64px;
  }
}
.company .company-exterior {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-bottom: 64px;
  font-size: 14px;
}
@media (max-width: 599px) {
  .company .company-exterior {
    gap: 16px;
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.company .company-exterior img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 8px;
}
@media (max-width: 599px) {
  .company .company-exterior img {
    aspect-ratio: 4/3;
  }
}
.company .company_outline {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 0;
  border-top: 1px solid #ccc;
  margin-bottom: 64px;
}
@media (max-width: 599px) {
  .company .company_outline {
    grid-template-columns: 1fr;
  }
}
.company .company_outline dt,
.company .company_outline dd {
  font-size: 14px;
  font-weight: 500;
  padding: 16px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 599px) {
  .company .company_outline dt {
    border-bottom: unset;
    font-weight: bold;
    padding-bottom: 0;
  }
}
.company .company_outline dd {
  font-size: 14px;
}
@media (max-width: 599px) {
  .company .company_outline dd {
    padding-top: 8px;
  }
}
.company .company_outline dd.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 599px) {
  .company .company_outline dd.col-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.company .company_outline dd .category {
  font-size: 16px;
  color: var(--brand);
}
@media (max-width: 599px) {
  .company .company_outline dd .category {
    font-size: 14px;
  }
}
.company .company_outline dd ul {
  margin: 0;
  padding: 0;
}
.company .company_outline dd ul li {
  margin-left: 2em;
}
.company .staff__title {
  font-size: 32px;
  margin-bottom: 1em;
}
@media (max-width: 599px) {
  .company .staff__title {
    font-size: 20px;
  }
}
.company .staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}
@media (max-width: 1023px) {
  .company .staff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.company .staff__detail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  text-align: center;
  gap: 0;
}
@media (max-width: 1023px) {
  .company .staff__detail {
    width: 100%;
  }
}
.company .staff__detail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 8px;
}
.company .staff__detail .position {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
@media (max-width: 599px) {
  .company .staff__detail .position {
    flex-direction: column;
    font-size: 11px;
  }
}
.company .staff__detail .position li {
  list-style: none;
}
.company .staff__detail .position li:not(:last-of-type)::after {
  content: "／";
}
@media (max-width: 599px) {
  .company .staff__detail .position li::after {
    display: none;
  }
}
.company .staff__detail .name {
  font-weight: bold;
}
@media (max-width: 599px) {
  .company .staff__detail .name {
    font-size: 14px;
  }
}
.company .client_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 599px) {
  .company .client_list {
    grid-template-columns: 1fr;
  }
}

/* contact */
.contact {
  padding-block: 128px;
}
@media (max-width: 599px) {
  .contact {
    padding-block: 64px;
  }
}
.contact .headline01 {
  margin-bottom: 128px;
}
@media (max-width: 599px) {
  .contact .headline01 {
    margin-bottom: 64px;
  }
}
.contact .contact_form {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 45px 32px;
}
@media (max-width: 599px) {
  .contact .contact_form {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact .contact_form dt {
  padding-block: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5em;
  font-weight: 700;
  gap: 8px;
}
.contact .contact_form dt::before {
  position: absolute;
  top: 8px;
  left: 0;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f105";
}
@media (max-width: 599px) {
  .contact .contact_form dt {
    font-size: 14px;
    padding-block: 8px 0px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.contact .contact_form dt .must {
  display: inline-block;
  border: 1px solid var(--brand);
  padding: 4px 16px;
  font-size: 10px;
  line-height: 1;
  border-radius: 8px;
  background-color: var(--brand);
  color: #fff;
}
.contact .contact_form dd {
  padding-block: 8px;
}
@media (max-width: 599px) {
  .contact .contact_form dd {
    padding-block: 8px 16px;
  }
}
.contact .contact_form input[type=text],
.contact .contact_form input[type=email],
.contact .contact_form input[type=tel],
.contact .contact_form textarea {
  width: 100%;
  font-size: 16px;
  padding: 16px 16px;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
}
.contact .contact_form textarea {
  min-height: 120px;
}
.contact .form__submit {
  position: relative;
  display: inline-block;
  margin-inline: auto;
  margin-top: 40px;
}
@media (max-width: 599px) {
  .contact .form__submit {
    margin-top: 24px;
  }
}
.contact .form__submit::after {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f1d8";
  color: #fff;
}
.contact .form__submit .btn {
  position: relative;
  border: none;
  background-color: #333;
  color: #fff;
  padding: 16px 40px 16px 64px;
  border-radius: calc(infinity * 1px);
}
.contact .form__submit .btn:hover {
  cursor: pointer;
  background-color: var(--brand);
}

/* card */
.card-wrapper {
  --max-inline-size: 1130px;
  --column-min-size: 20rem;
  --gap: max(16px, 2.5%);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--column-min-size), 100%), 1fr));
  gap: var(--gap);
}

.card {
  --gutter: 1lh;
  --font-size: clamp(0.75rem, 0.705rem + 0.23vi, 0.875rem);
  --color-background: #fcfcfc;
  --color-background-active: color-mix(
    in srgb,
    var(--color-background),
    black 5%
  );
  --color-active: #1ca4b4;
  --shadow: 0 4px 10px rgb(0 0 0 / 20%);
  --duration: 0.3s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: var(--gutter);
  padding: var(--gutter);
  font-size: var(--font-size);
  background-color: var(--color-background);
  transition: background-color var(--duration), box-shadow var(--duration);
}
.card:focus-within {
  background-color: var(--color-background-active);
  box-shadow: var(--shadow);
}
@media (scripting: enabled) {
  .card[data-href] {
    cursor: pointer;
  }
}
@media (any-hover: hover) {
  .card:hover {
    background-color: var(--color-background-active);
    box-shadow: var(--shadow);
  }
}

.title {
  font-size: 1em;
}

.title a {
  display: -webkit-box;
  block-size: min(100%, 3lh);
  overflow: clip;
  text-overflow: ellipsis;
  -webkit-box-orient: block-axis;
  -webkit-line-clamp: 3;
  transition: color var(--duration);
}
.title a:where(.card:has(.article-link:focus-visible) *) {
  color: var(--color-active);
}
@media (any-hover: hover) {
  .title a:where(.card:has(.article-link:hover) *,
  .card:not([data-link-hovered]):hover *) {
    color: var(--color-active);
  }
}

.category {
  grid-row: 2/3;
}

.category a {
  --color-decoration: color-mix(in srgb, currentcolor 20%, white);
  display: inline-block;
  padding-block: 0.1em;
  padding-inline: 1em;
  border: 1px solid var(--color-decoration);
  border-radius: calc(infinity * 1px);
  transition: background-color var(--duration), color var(--duration);
}
.category a:focus-visible {
  color: var(--color-active);
  background-color: var(--color-decoration);
}
@media (any-hover: hover) {
  .category a:hover {
    color: var(--color-active);
    background-color: var(--color-decoration);
  }
}

.thumbnail {
  display: block;
  grid-row: 1/2;
  min-inline-size: 0;
  aspect-ratio: 16/9;
  margin-block-start: calc(var(--gutter) * -1);
  margin-inline: calc(var(--gutter) * -1);
  contain: strict;
}
.thumbnail:where(.card:has(.article-link:focus-visible) *) {
  outline: auto;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale var(--duration);
}
.thumbnail img:where(.card:has(.article-link:focus-visible) *) {
  scale: 1.1;
}
@media (any-hover: hover) {
  .thumbnail img:where(.card:has(.article-link:hover) *,
  .card:not([data-link-hovered]):hover *) {
    scale: 1.1;
  }
}

.thumbnail-text {
  --color-text: var(--color-white);
  --color-background: color-mix(in srgb, var(--color-active) 80%, transparent);
  --shadow: 2px 2px 2px color-mix(in srgb, currentcolor 30%, transparent);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Open Sans", var(--font-sans);
  font-size: 2.5em;
  color: var(--color-text);
  text-shadow: var(--shadow);
  background-color: var(--color-background);
  opacity: 0;
  writing-mode: initial;
  transition: opacity var(--duration), scale var(--duration);
}
.thumbnail-text:where(.card:has(.article-link:focus-visible) *) {
  opacity: 1;
  scale: 1.05;
}
@media (any-hover: hover) {
  .thumbnail-text:where(.card:has(.article-link:hover) *,
  .card:not([data-link-hovered]):hover *) {
    opacity: 1;
    scale: 1.05;
  }
}

.visually-hidden {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  padding: 0 !important;
  margin: 0 !important;
  contain: strict !important;
  pointer-events: none !important;
  visibility: visible !important;
  border: none !important;
  opacity: 0 !important;
}