html {
  line-height: 1;
}

body {
  color: #333333;
  font-family: "Noto Serif JP", "Caveat", "Noto Sans JP", serif;
}

.section {
  padding-top: 128px;
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 96px;
  }
}
.section--blue {
  background-color: #F9FDFF;
}
.section--gray {
  background-color: #F5F5F5;
}
.section__head {
  position: relative;
  z-index: 3;
  margin-bottom: 64px;
  color: #00405D;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .section__head {
    margin-bottom: 48px;
    font-size: 36px;
  }
}
.section__head::before {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #D2ECFA;
  font-family: "Caveat", serif;
  font-size: 96px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .section__head::before {
    top: -48px;
    font-size: 72px;
  }
}

.contents-area {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contents-area {
    width: 100%;
  }
}
.contents-area--normal {
  max-width: 952px;
}
.contents-area--narrow {
  max-width: 624px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 4px;
  padding: 16px;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.btn .icon {
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .btn .icon {
    width: 24px;
    margin-right: 2px;
  }
}
.btn--rounded {
  padding: 24px 36px;
  border-radius: 9999px;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .btn--rounded {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.btn__text {
  display: block;
  margin-bottom: 2px;
}
.btn--blue {
  background-color: #009FE8;
  color: #FFF;
}
.btn--dark {
  background-color: #00405D;
  color: #FFF;
}
.btn .icon {
  margin-right: 0.25em;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 80px;
  padding: 0 80px;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 3px;
}
@media screen and (max-width: 1024px) {
  .header {
    display: none;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 180px;
  height: 40px;
}
.header-nav {
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.header-menu {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.header-mobile {
  display: none;
  flex-flow: column;
  justify-content: space-between;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  padding: 8px 6px 6px;
  border-radius: 2px;
  background-color: #00405D;
}
@media screen and (max-width: 1024px) {
  .header-mobile {
    display: flex;
  }
}
.header-mobile-icon {
  display: flex;
  flex-flow: column;
  row-gap: 8px;
}
.header-mobile__border {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.header-mobile__border:nth-child(2) {
  width: 80%;
}
.header-mobile__text {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: 9px;
}

.header-mobile.is-active .header-mobile__border {
  position: relative;
  width: 80%;
}
.header-mobile.is-active .header-mobile__border:nth-child(1) {
  top: 6px;
  left: 3px;
  transform: rotate(45deg);
}
.header-mobile.is-active .header-mobile__border:nth-child(2) {
  top: -3px;
  left: 3px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .header.header-lower {
    display: block;
    padding: 0 16px;
    height: 72px;
  }
}
.header.header-lower .header__logo {
  width: 180px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .header.header-lower .header-nav {
    display: none;
  }
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  height: 100vh;
  background-color: #00405D;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.is-active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-inner {
  padding: 16px;
}
.mobile-menu__logo {
  height: 40px;
  margin-bottom: 48px;
}
.mobile-menu-nav {
  padding: 0 16px;
  margin-bottom: 48px;
}
.mobile-menu-menu {
  display: flex;
  flex-flow: column;
  row-gap: 16px;
  color: #FFF;
}
.mobile-menu__list {
  padding-bottom: 8px;
  border-bottom: #F0F0F0 1px solid;
  font-size: 16px;
  font-weight: 400;
}
.mobile-menu .contact-block {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding-left: 16px;
}

.hero {
  width: 100%;
  height: calc(100vh - 80px);
  padding: 0;
  margin-top: 80px;
  background: url("../img/main-visual.jpg") center center no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .hero {
    height: 100dvh;
    margin-top: 0;
    padding: 32px;
    background: url("../img/main-visual_sp.jpg") top right no-repeat;
  }
}
.hero-contents {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-catch {
  position: absolute;
  top: 80px;
  left: 80px;
  display: flex;
  flex-flow: column;
  row-gap: 8px;
}
@media screen and (max-width: 1024px) {
  .hero-catch {
    flex-flow: row-reverse;
    -moz-column-gap: 16px;
         column-gap: 16px;
    top: initial;
    left: initial;
  }
}
.hero-catch__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px 10px 8px;
  background-color: #00405D;
  font-size: 3.3vw;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .hero-catch__text {
    width: initial;
    padding: 0;
    background-color: initial;
    font-size: 8.14vw;
    letter-spacing: 0.25em;
    line-height: 1;
    writing-mode: vertical-rl;
  }
}
.hero .company-name {
  position: absolute;
  bottom: 80px;
  right: 80px;
  font-size: 3.3vw;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .hero .company-name {
    right: 0px;
    bottom: 0px;
    font-size: 24px;
  }
}
.hero .company-name__small {
  display: block;
  margin-bottom: 16px;
  font-size: 2.2vw;
}
@media screen and (max-width: 1024px) {
  .hero .company-name__small {
    margin-bottom: 8px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .service {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.service .section__head::before {
  content: "Service";
}
.service-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 296px;
  height: 296px;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .service-tile {
    width: calc(50% - 4px);
    height: initial;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.service-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: darken;
}
.service-flex {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .service-flex {
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 8px;
  }
}
.service-1 {
  background: url("../img/service1.jpg") center center no-repeat;
  background-size: cover;
}
.service-2 {
  background: url("../img/service2.jpg") center center no-repeat;
  background-size: cover;
}
.service-3 {
  background: url("../img/service3.jpg") center center no-repeat;
  background-size: cover;
}
.service-4 {
  background: url("../img/service4.jpg") center center no-repeat;
  background-size: cover;
}
.service-5 {
  background: url("../img/service5.jpg") center center no-repeat;
  background-size: cover;
}
.service-6 {
  background: url("../img/service6.jpg") center center no-repeat;
  background-size: cover;
}
.service-7 {
  background: url("../img/service7.jpg") center center no-repeat;
  background-size: cover;
}
.service-8 {
  background: url("../img/service8.jpg") center center no-repeat;
  background-size: cover;
}
.service__title {
  z-index: 1;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .service__title {
    font-size: 14px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 1024px) {
  .works {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.works .section__head::before {
  content: "Works";
}
.works-new {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 32px;
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .works-new {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.works-new::before, .works-new::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .works-new::before, .works-new::after {
    width: 28.4vw;
  }
}
.works-new::before {
  position: absolute;
  top: 50%;
  right: 168px;
  transform: translateY(-50%);
  background-image: linear-gradient(#D2ECFA, #7DCCF3, #009FE8);
}
@media screen and (max-width: 1024px) {
  .works-new::before {
    right: 32.5vw;
  }
}
.works-new::after {
  position: absolute;
  top: 50%;
  left: 168px;
  transform: translateY(-50%);
  background-image: linear-gradient(#009FE8, #7DCCF3, #D2ECFA);
}
@media screen and (max-width: 1024px) {
  .works-new::after {
    left: 32.5vw;
  }
}
.works-flex {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 48px;
  margin-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  .works-flex {
    flex-flow: column;
    row-gap: 24px;
    width: 100%;
    margin-bottom: 64px;
  }
}
.works-card {
  width: 404.6666666667px;
}
@media screen and (max-width: 1024px) {
  .works-card {
    width: 100%;
  }
}
.works-frame {
  overflow: hidden;
  margin-bottom: 8px;
}
.works__img {
  display: block;
  width: 100%;
  opacity: 1;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .works__img:hover {
    opacity: 0.85;
    cursor: pointer;
    transform: scale(1.1);
  }
}
.works__content {
  margin-bottom: 8px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .works__content {
    font-size: 14px;
  }
}
.works__place {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .works__place {
    font-size: 16px;
  }
}

.works-detail-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.works-detail-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .works-detail-overlay {
    padding: 16px;
  }
}

.works-detail {
  position: relative;
  max-width: 952px;
  padding: 32px;
  border-radius: 12px;
  background-color: #FFF;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}
.works-detail.is-active {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .works-detail {
    top: 0;
    left: 0;
    width: 100vw;
    padding: 16px;
  }
}
.works-detail .icon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.works-detail .icon-close:hover {
  cursor: pointer;
  opacity: 0.85;
}
@media screen and (max-width: 1024px) {
  .works-detail .icon-close {
    width: 24px;
  }
}
.works-detail-head {
  margin-bottom: 32px;
}
.works-detail-body {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .works-detail-body {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.works-detail-before, .works-detail-after {
  width: calc(50% - 8px);
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1024px) {
  .works-detail-before, .works-detail-after {
    width: calc(50% - 4px);
  }
}
.works-detail__place {
  margin-bottom: 8px;
  font-size: 12px;
}
.works-detail__case {
  font-size: 16px;
  font-weight: 600;
}
.works-detail__text {
  margin-bottom: 8px;
  font-size: 14px;
}
.works-detail__img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  padding-bottom: 128px;
}
@media screen and (max-width: 1024px) {
  .news {
    padding-bottom: 96px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.news .section__head {
  bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .news .section__head {
    bottom: 0;
    text-align: left;
  }
}
.news .section__head::before {
  content: "News";
}
@media screen and (max-width: 1024px) {
  .news .section__head::before {
    left: 0;
    transform: initial;
  }
}
.news .btn {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .news .btn {
    margin: 0 auto;
  }
}
.news-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .news-flex {
    flex-flow: column;
    margin-bottom: 64px;
  }
}
.news-text-column {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.news-overview-column {
  display: flex;
  flex-flow: column;
  row-gap: 32px;
}
@media screen and (max-width: 1024px) {
  .news-overview-column {
    row-gap: 24px;
  }
}
.news-overview {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  width: 624px;
  padding-bottom: 16px;
  border-bottom: #F0F0F0 1px solid;
}
@media screen and (max-width: 1024px) {
  .news-overview {
    flex-flow: column;
    width: 100%;
    padding-bottom: 12px;
  }
}
.news__date {
  padding-top: 2px;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .news__date {
    margin-bottom: 8px;
  }
}
.news-text-block {
  width: 540px;
}
@media screen and (max-width: 1024px) {
  .news-text-block {
    width: 100%;
  }
}
.news__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .news__title {
    margin-bottom: 6px;
  }
}
.news__post {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .news__post {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1024px) {
  .about {
    padding-top: 0;
    padding-bottom: 32px;
    background-color: #FFF;
  }
}
.about .contents-area {
  width: 100%;
}
.about__img {
  width: 788px;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .about__img {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 0px;
  }
}
.about-text-block {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .about-text-block {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.about-overview {
  display: flex;
  align-items: flex-start;
  margin-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  .about-overview {
    display: block;
    margin-bottom: 48px;
  }
}
.about-overview__head {
  margin-left: 48px;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .about-overview__head {
    margin-left: 24px;
    font-size: 24px;
    line-height: 36px;
  }
}
.about-overview__text {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .about-overview__text {
    font-size: 16px;
  }
}
.about-text-block {
  writing-mode: vertical-rl;
}
.about-contents {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .about-contents {
    flex-flow: column;
    padding: 0 16px;
  }
}
.about-contents .about__img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-1, .about-2 {
  position: relative;
  height: 623px;
}
@media screen and (max-width: 1024px) {
  .about-1, .about-2 {
    position: initial;
    height: initial;
  }
}
.about-1 {
  margin-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  .about-1 {
    margin-bottom: 48px;
  }
}
.about-1__img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .about-1__img {
    position: initial;
    margin-bottom: 16px;
  }
}
.about-1__text {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .about-1__text {
    position: initial;
  }
}
.about-2__img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .about-2__img {
    position: initial;
    margin-bottom: 16px;
  }
}
.about-2__text {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .about-2__text {
    position: initial;
  }
}
.about__text {
  padding: 32px;
  border-radius: 8px;
  background-color: #FFF;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .about__text {
    padding: 0;
    background-color: initial;
  }
}

.contact {
  padding: 96px 0;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.contact .section__head {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .contact .section__head {
    margin-bottom: 64px;
  }
}
.contact .section__head::before {
  content: "Contact";
}
.contact-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 16px;
  background-color: #FFF;
  aspect-ratio: 3/1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
.contact-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 72px;
       column-gap: 72px;
}
@media screen and (max-width: 1024px) {
  .contact-contents {
    flex-flow: column;
    padding: 96px 0;
  }
}
.contact-btn-block {
  display: flex;
  flex-flow: column;
  row-gap: 16px;
}

.company-overview {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1024px) {
  .company-overview {
    padding: 64px 16px;
  }
}

.overview {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 72px;
       column-gap: 72px;
  width: 100%;
  padding: 48px 0;
  border-radius: 16px;
  background-color: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .overview {
    flex-flow: column;
    align-items: flex-start;
    row-gap: 32px;
    padding: 48px 32px;
    border-radius: 8px;
  }
}
.overview-img {
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .overview-img {
    width: initial;
    height: 32px;
  }
}
.overview-info {
  display: flex;
  flex-flow: column;
  row-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .overview-info {
    width: 100%;
  }
}
.overview-info .info {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-bottom: 8px;
  border-bottom: #F0F0F0 solid 1px;
}
.overview-info .info__item {
  width: 80px;
  line-height: 1.5;
}
.overview-info .info__content {
  line-height: 1.5;
}

.footer {
  padding-top: 96px;
  padding-bottom: 48px;
  background-color: #00405D;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 64px 32px 32px;
  }
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__logo {
  display: block;
  width: 400px;
  margin: 0 auto;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 215px;
  }
}
.footer-nav {
  width: 100%;
  padding-bottom: 96px;
  margin-bottom: 48px;
  border-bottom: #F0F0F0 1px solid;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    padding-bottom: 0;
    border-bottom: initial;
  }
}
.footer-menu {
  display: flex;
  justify-content: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width: 1024px) {
  .footer-menu {
    flex-flow: column;
    row-gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-menu__list {
    padding-bottom: 8px;
    border-bottom: #F0F0F0 1px solid;
    font-weight: 300;
  }
}
.footer .copyrights {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer .copyrights-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer .copyrights-sp .contact-block {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .footer .copyrights-sp .copyrights {
    font-size: 14px;
    font-weight: 400;
  }
}

.lower-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
  background: url("../img/visual.jpg") center center no-repeat;
  background-size: cover;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .lower-hero {
    margin-top: 72px;
    background: url("../img/visual_sp.jpg") center center no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
  }
}
.lower-hero__head {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lower-hero__head {
    margin-bottom: 48px;
    font-size: 36px;
  }
}
.lower-hero__head::before {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: #D2ECFA;
  font-family: "Caveat", serif;
  font-size: 96px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .lower-hero__head::before {
    top: -48px;
    font-size: 72px;
  }
}

#company .lower-hero__head::before {
  content: "Company";
}
#company .section {
  background-color: #F9FDFF;
}
@media screen and (max-width: 767px) {
  #company .section {
    background-color: #FFF;
  }
}
#company .about-overview {
  padding: 16px 16px 0;
}

#works .works {
  padding-top: 64px;
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  #works .works {
    padding-top: 16px;
    padding-bottom: 32px;
  }
}
#works .lower-hero__head::before {
  content: "Works";
}
#works .works-flex {
  margin-bottom: initial;
}

#news .lower-hero__head::before {
  content: "News";
}
#news .news {
  padding-top: 64px;
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  #news .news {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}

#news-post .news-post {
  margin-top: 80px;
  padding-top: 64px;
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  #news-post .news-post {
    margin-top: 72px;
    padding: 32px 16px 64px;
  }
}
#news-post .news-post-head {
  margin-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  #news-post .news-post-head {
    margin-bottom: 16px;
  }
}
#news-post .news-post-body {
  margin-bottom: 32px;
}
#news-post .news-post-body p {
  font-size: 16px;
  line-height: 2;
}
#news-post .news-post__date {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #news-post .news-post__date {
    margin-bottom: 8px;
    font-size: 12px;
  }
}
#news-post .news-post__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  #news-post .news-post__title {
    font-size: 18px;
  }
}
#news-post .news-post__img {
  width: 100%;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  #news-post .news-post__img {
    margin-bottom: 32px;
  }
}

#contact .lower-hero__head::before {
  content: "Contact";
}
#contact .contact-form-block {
  padding-top: 64px;
  padding-bottom: 96px;
}
@media screen and (max-width: 1024px) {
  #contact .contact-form-block {
    padding: 32px 16px 64px;
  }
}
#contact .contact-form-inner {
  display: flex;
  flex-flow: column;
  row-gap: 24px;
}
#contact .contact-form-item-block {
  width: 100%;
}
#contact .contact-form__item {
  margin-bottom: 8px;
  font-size: 16px;
}
#contact .contact-form__input, #contact .contact-form__textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #A5A5A5;
  border-radius: 2px;
}
#contact .contact-form__input {
  line-height: 1;
}
#contact .contact-form__textarea {
  resize: none;
  line-height: 1.5;
  aspect-ratio: 16/9;
}
#contact .contact-form__btn {
  display: block;
  width: 100%;
  padding: 16px 0;
  border-radius: 2px;
  background-color: #00405D;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
#contact .contact-form .required {
  margin-left: 4px;
  color: #E80004;
}
#contact .contact-form .checkbox {
  margin-bottom: 32px;
}
#contact .contact-form .checkbox .wpcf7-form-control-wrap,
#contact .contact-form .checkbox .wpcf7-acceptance,
#contact .contact-form .checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}
#contact .contact-form .checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  cursor: pointer;
}
#contact .contact-form .checkbox input[type=checkbox] {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
}
#contact .contact-form .checkbox .wpcf7-list-item-label {
  display: block;
  line-height: 1.5;
}
#contact .contact-form .checkbox .contact-form__item {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}
#contact .contact-form .link-privacy {
  color: #009FE8;
  line-height: 1;
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */