html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: var(--header-pc);
}

header {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-pc);
  background-color: #fff;
  padding: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2em;
}

.mobile-header {
  overflow: hidden;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-pc));
  background-color: #fff;
  z-index: 10;
  transition: top 0.3s ease-in-out;
  overflow-y: scroll !important;
  opacity: 0;
}

.mobile-header.active {
  top: var(--header-pc);
  opacity: 1;
}

.mobile-header-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.logo {
  overflow: hidden;
  position: absolute;
  top: calc((var(--header-pc) - var(--logo-pc)) / 2);
  left: var(--gap-pc);
  width: auto;
  height: var(--logo-pc);
}

.logo img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav.nav-header {
  overflow: hidden;
  position: relative;
  width: auto;
  height: var(--header-pc);
}

nav.nav-header ul {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2em;
  margin: 0;
}

nav.nav-header ul li {
  overflow: hidden;
  position: relative;
  width: auto;
  height: var(--header-pc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}

nav.nav-header ul li:hover,
nav.nav-header ul li.active {
  color: var(--color-primary);
}

nav.nav-header ul li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 4px;
  background: var(--color-primary);
  transition: width .3s;
}

nav.nav-header ul li:hover::after,
nav.nav-header ul li.active::after {
  width: 100%;
}

.contact-header {
  overflow: hidden;
  position: relative;
  width: 220px;
  height: 100%;
  text-align: center;
  color: #fff;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
}

.contact-header a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
}

.contact-header-image {
  overflow: hidden;
  position: relative;
  width: 27.5px;
  height: auto;
}

.contact-header-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-header-text {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

main {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: var(--header-pc);
}

section.key-visual {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.slider {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.movie {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  background-color: #fff;
  padding-top: 56.25vw;
}

.movie video {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  object-fit: cover;
}

.control-panel {
  overflow: visible;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 99px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: bottom 0.3s ease-in-out;
  z-index: 1;
}

.slick-prev {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  bottom: 37px;
  left: calc(50% - 163.1px);
  width: max-content;
  height: auto;
  z-index: 2;
  padding-left: 33px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0;
  transition: bottom 0.3s ease-in-out;
  z-index: 3;
}

.slick-prev:before {
  content: '';
  overflow: hidden;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  background-image: url(../images/common/movie_prev.svg);
  background-position: 0% 50%;
  background-size: 22px 22px;
  background-repeat: no-repeat;
}

.slick-next {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  bottom: 37px;
  left: calc(50% + 66px);
  width: max-content;
  height: auto;
  z-index: 2;
  padding-right: 33px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: right;
  opacity: 0;
  transition: bottom 0.3s ease-in-out;
  z-index: 3;
}

.slick-next:before {
  content: '';
  overflow: hidden;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  background-image: url(../images/common/movie_next.svg);
  background-position: 100% 50%;
  background-size: 22px 22px;
  background-repeat: no-repeat;
}

section.key-visual.active .slick-prev,
section.key-visual.active .slick-next,
section.key-visual.active .control-panel {
  opacity: 1;
}

.play-number {
  overflow: hidden;
  position: absolute;
  top: 37.5px;
  left: var(--gap-pc);
  width: max-content;
  height: auto;
}

.play-number span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
}

.play-button {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 39.5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 17px;
  height: 20px;
  background-image: url(../images/common/movie_play.svg);
  background-position: 5% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.play-button.paused {
  background-image: url(../images/common/movie_pause.svg);
}

section.overview {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 33px 0 0 0;
}

.container {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  max-width: var(--container);
  padding: 0 var(--gap-pc);
  margin: 0 auto;
}

section h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

section h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

section h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

section.overview h2 {
  font-size: 105px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin-top: 0;
}

section.overview h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 0;
}

section.overview h4 {
  font-size: 43px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 11px;
}

section.overview h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 22px;
}

ul.anchor-list {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 11px;
  margin-top: 44px;
}

.home ul.anchor-list {
  margin-top: 55px;
}

ul.anchor-list a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 77px;
  font-size: 18px;
  font-weight: 700;
  border: solid 1px var(--color-primary);
  background-color: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 330px;
  transition: all 0.3s ease-in-out;
}

ul.anchor-list li span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  display: block;
  overflow: hidden;
  position: absolute;
  top: calc(50% - 12px);
  left: 33px;
}

ul.anchor-list a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

ul.anchor-list a:hover span {
  color: #fff;
}

ul.anchor-list li a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#news {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 66px 0;
}

section#news button {
  margin-top: 33px;
}

.section-heading {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: auto;
}

section#news h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

section#news h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

button.read-more {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 286px;
  height: 66px;
  background-color: var(--color-primary);
  background-image: url(../images/common/button_next.svg);
  background-repeat: no-repeat;
  background-position: right 16.5px center;
  background-size: 11px 11px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border: solid 1px var(--color-primary);
  transition: all 0.3s ease-in-out;
}

button.read-more:hover {
  background-color: #fff;
  background-image: url(../images/common/button_next_hover.svg);
  color: var(--color-primary);
  background-position: right 11px center;
}

.section-heading button.read-more {
  margin-top: 13px;
}

ul.news-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 33px;
}

ul.news-list li {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
  padding: 22px 55px 22px 0;
  background-image: url(../images/common/list_next.svg);
  background-position: calc(100% - 22px) center;
  background-repeat: no-repeat;
  background-size: 16.5px 16.5px;
  transition: all 0.3s ease-in-out;
}

ul.news-list li:hover {
  background-position: calc(100% - 11px) center;
}


ul.news-list li:first-child {
  border-top: solid 1px var(--color-border);
}

ul.news-list li time {
  overflow: hidden;
  position: relative;
  width: 110px;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  float: left;
  margin-top: 5px;
}

ul.news-list li .news-term {
  overflow: hidden;
  position: relative;
  width: 88px;
  height: 27.5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 33px;
  float: left;
}

ul.news-list li .news-title {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 220px;
  float: none;
  margin-top: 3px;
}

section#products {
  background-color: var(--color-alternate);
  padding: 88px 0 66px 0;
}

ul.products-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2vw 2%;
  margin-top: 55px;
}

ul.products-list li {
  overflow: hidden;
  position: relative;
  width: 32%;
  height: auto;
}

ul.products-list li img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}

ul.products-list li .products-image {
  /* cursor: pointer; */
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
}

ul.products-list li .products-image span {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

/*
ul.products-list li .products-image:hover span {
  transform: scale(1.1);
}
*/

.rebuild-section-image-wrapper,
.no-link-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
}

.rebuild-section-image-wrapper {
  cursor: pointer;
}

.lb-number {
  display: none !important;
}

.rebuild-section-image-wrapper span,
.no-link-image-wrapper span {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.rebuild-section-image-wrapper:hover span {
  transform: scale(1.1);
}

ul.products-list li .products-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section#rebuild {
  background-color: #fff;
  padding: 88px 0 66px 0;
}

.footer-recruit {
  overflow: visible;
  position: relative;
  width: 100%;
  height: 660px;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-recruit-panel {
  overflow: hidden;
  position: relative;
  width: 440px;
  height: 330px;
  background-color: #fff;
  padding: 55px 66px;
}

.footer-recruit-label {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

.footer-recruit-title {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

.footer-recruit-panel button.read-more {
  margin-top: 33px;
}

section.footer-contact {
  overflow: visible;
  position: relative;
  width: 100%;
  height: 220px;
  color: #fff;
  margin-top: -220px;
  padding-bottom: 110px;
  z-index: 3;
}

section.footer-contact .section-heading {
  background-color: var(--color-primary);
  color: #fff;
  height: auto;
  padding: 55px;
  margin-top: 110px;
}

section.footer-contact button.read-more {
  border: solid 1px #fff;
}

section.footer-contact h2,
section.footer-contact h3,
section.footer-contact h4 {
  color: #fff;
}

footer {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: -110px;
  background-color: #fff;
  z-index: 2;
}

footer .container {
  padding: 0 0 0 Max(var(--gap-pc), calc((100vw - 1200px) / 2));
}

.footer-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  overflow: hidden;
  position: relative;
  width: calc(100% - 440px);
  height: auto;
  background-image: url(../images/common/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 198px;
  min-height: 691.5px;
}

.footer-left p {
  font-size: 14px;
}

nav.footer-nav {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

nav.footer-nav ul {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  columns: 3;
}

nav.footer-nav ul li {
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.submenu-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto
}

.submenu-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 16.5px;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
  letter-spacing: 0.05em !important;
  color: var(--color-font) !important;
}

.submenu-item:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 11px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-company {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 88px;
}

.footer-company-logo {
  overflow: hidden;
  position: relative;
  width: 220px;
  height: auto;
  float: left;
}

.footer-company-logo em {
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer-company-address {
  overflow: hidden;
  position: relative;
  width: max-content;
  max-width: calc(100% - 275px);
  height: auto;
  float: right;
  margin-right: 77px;
}

.footer-company-hr {
  overflow: hidden;
  position: relative;
  width: calc(100% - 77px);
  height: 1px;
  background-color: var(--color-font);
  margin: 33px 0;
}

.copyright-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  padding-right: 77px;
}

section#rebuild-overview {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
  padding: 55px 0;
}

section#rebuild-overview .container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
}

.rebuild-overview-graph {
  overflow: hidden;
  position: relative;
  width: calc(100% - 5.5px);
  height: auto;
  padding: 0 55px;
}

.rebuild-overview-graph img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.rebuild-overview-point {
  overflow: visible;
  position: relative;
  width: calc(100% - 5.5px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rebuild-overview-point-panel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 33px 44px;
  background-color: var(--color-primary);
  border: solid 3px var(--color-primary);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2em;
  transition: all 0.3s ease;
}

.rebuild-overview-point-panel {
  flex: 1;
  transition: all 0.3s ease;
  transform: scale(1);
}

.rebuild-overview-point-panel:hover {
  cursor: pointer;
  background-color: #fff;
  transform: scale(1.06);
  z-index: 2;
}

.rebuild-overview-point:hover .rebuild-overview-point-panel:not(:hover) {
  transform: scale(0.94);
  filter: brightness(0.82);
}

.rebuild-overview-point-key {
  overflow: hidden;
  position: relative;
  width: 80px;
  height: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  transition: all 0.3s ease;
}

.rebuild-overview-point-key p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.rebuild-overview-point-value {
  overflow: hidden;
  position: relative;
  width: 260px;
  height: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  transition: all 0.3s ease;
}

.rebuild-overview-point-value p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.rebuild-overview-point-panel:hover .rebuild-overview-point-key {
  color: var(--color-primary);
}

.rebuild-overview-point-panel:hover .rebuild-overview-point-key p {
  color: var(--color-primary);
}

.rebuild-overview-point-panel:hover .rebuild-overview-point-value {
  color: var(--color-primary);
}

.rebuild-overview-point-panel:hover .rebuild-overview-point-value p {
  color: var(--color-primary);
}

section#rebuild-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 0 0 66px 0;
}

ul.rebuild-section-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 66px;
  margin-top: 55px;
}

ul.rebuild-section-list li {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.rebuild-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  border-left: solid 8px var(--color-primary);
  box-sizing: border-box;
  padding-left: 22px;
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.rebuild-section-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 11px;
}

.rebuild-section-description h5 {
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

.rebuild-section-workflow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
  padding: 44px 33px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px 14px;
  margin-top: 33px;
}

.rebuild-section-workflow .graph-next:last-of-type {
  display: none;
}

.rebuild-section-workflow-panel {
  overflow: hidden;
  position: relative;
  width: 190px;
  height: 190px;
  border: solid 1px var(--color-primary);
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  text-align: center;
}

.rebuild-section-workflow-number {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.rebuild-section-workflow-panel h6 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.rebuild-section-workflow-panel p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.graph-next {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 27.5px;
}

.rebuild-section-images {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3vw 2%;
  margin-top: 33px;
}

.rebuild-section-image {
  overflow: hidden;
  position: relative;
  width: 32%;
  height: auto;
  padding-bottom: 16.5px;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

.rebuild-section-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.triangle_down {
  overflow: hidden;
  position: relative;
  width: 55px !important;
  height: 33px !important;
  aspect-ratio: none !important;
  margin: 16.5px auto;
}

.rebuild-section-image-caption {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#seismic-countermeasures {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
  padding: 88px 0 66px 0;
}

section#research {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 88px 0 66px 0;
}

.research-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  border-left: solid 8px var(--color-primary);
  box-sizing: border-box;
  padding-left: 22px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16.5px;
}

section#development {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
  padding: 88px 0 88px 0;
}

.footer-right {
  overflow: hidden;
  position: relative;
  width: 440px;
  height: auto;
  background-color: var(--color-secondary);
  padding: 198px 77px 55px 77px;
  color: #fff;
}

.footer-right p {
  font-size: 14px;
}

.footer-right-contact {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.footer-right-heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 5.5px;
}

.footer-right-contact-tel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  background-color: var(--color-primary);
  color: #fff;
  margin-bottom: 11px;
}

.footer-right-contact-tel img {
  overflow: hidden;
  position: relative;
  width: 22px;
  height: auto;
}

.footer-right-contact-tel-number {
  font-size: 26px;
  font-size: 600;
  line-height: 1.25;
}

.footer-right-hr {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 22px 0;
}

.footer-right-partners {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  border: solid 1px #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  margin-bottom: 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.icon_download {
  overflow: hidden;
  position: relative;
  width: 22px;
  height: auto;
}

.footer-right-instagram {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  border: solid 1px #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.icon_instagram {
  overflow: hidden;
  position: relative;
  width: 22px;
  height: auto;
}

.footer-space {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 110px;
}

section.visual {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.visual .bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: zoomOut 3s linear;
}

@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.fade-up {
  opacity: 0 !important;
  transform: scale(1) translate3d(0, 22px, 0) !important;
  transition: all 1.5s ease;
}

.fade-up.show {
  opacity: 1 !important;
  transform: scale(1) translate3d(0, 0, 0) !important;
}

section.visual h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}

.visual-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 132px;
}

.visual-wrapper h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}

.visual-rebuild h1 span {
  font-size: 66px;
}

.visual-rebuild h1 small {
  font-size: 50px;
  vertical-align: text-top;
  line-height: 1;
}

.visual-single h1 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.05em;
  color: #fff;
}

.visual-single h2 {
  font-size: 58px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.05em;
  color: #fff;
}

section.summary {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 66px 0;
}

section.summary h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

section.summary p {
  margin-top: 22px;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-width: var(--wrapper);
  margin: 0 auto;
}

section.number-section1 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 66px 0;
}

section.number-section1 .number-section-title,
section.number-section2 .number-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
}

section.number-section1 .number-section-title span,
section.number-section2 .number-section-title span {
  font-size: 110px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

section.number-section1 .number-section-title h2,
section.number-section2 .number-section-title h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

section.number-section1 .research-section-title {
  color: var(--color-font);
}

.research-section-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.research-section-description p {
  min-height: 11em;
}

.rebuild-section-image:nth-child(n+4) .research-section-description p {
  min-height: 9em;
}

section.number-section2 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 66px 0;
  background-color: var(--color-alternate);
}

.number-section2-graph-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.number-section2-graph {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 44px;
}

.section02-last-update {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 22px;
  text-align: right;
}

.section02-last-update p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

.number-section2-column-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.number-section2-column {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 44px;
  padding-top: 44px;
  border-top: solid 1px var(--color-border);
  box-sizing: border-box;
}

.number-section2-column-left {
  overflow: hidden;
  position: relative;
  width: 400px;
  height: auto;
}

.number-section2-column-right {
  overflow: hidden;
  position: relative;
  width: calc(100% - 444px);
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 16.5px;
}

.number-section2-column-left-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  border-left: solid 8px var(--color-primary);
  box-sizing: border-box;
  padding-left: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.number-section2-column-left-title h3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 0;
}

.number-section2-column-left-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.number-section2-column-right-caption-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.number-section2-column-right-caption {
  overflow: hidden;
  position: relative;
  width: calc(50% - 11px);
  height: auto;
  color: #fff;
  background-color: var(--color-primary);
  padding: 27.5px;
  min-height: 283px;
}

.number-section2-column-right-caption em {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}

.number-section2-column-right-images-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.number-section2-column-right-image {
  overflow: hidden;
  position: relative;
  width: calc(50% - 11px);
  height: auto;
}

.number-section2-column-right-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}

section.number-section3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 66px 0 22px 0;
}

section.number-section3 .number-section-title {
  overflow: hidden;
  position: relative;
  width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

section.number-section3 .number-section-title span {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

section.number-section3 .number-section-title h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

.number-section3-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
}

.number-section3-content {
  overflow: hidden;
  position: relative;
  width: calc(100% - 440px);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.number-section3-content-panel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 16.5px;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

.number-section3-content-panel-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-left: solid 8px var(--color-primary);
  box-sizing: border-box;
  padding-left: 22px;
}

.number-section3-content-panel-title h3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 0;
}

.number-section3-content-panel-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 16.5px;
}

.number-section3-content-panel-items {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 16.5px;
}

.number-section3-content-panel-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.number-section3-content-panel-item p {
  padding-left: 22px;
}

.number-section3-content-panel-item p:before {
  content: '';
  position: absolute;
  top: 8.5px;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.number-section3-content-panel-graph {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 22px;
}

.number-section3-content-panel-graph img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.number-section3-content-panel-images {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}

.number-section3-content-panel-image {
  overflow: hidden;
  position: relative;
  width: calc(50% - 11px);
  height: auto;
}

.number-section3-content-panel-captions {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 22px;
}

.number-section3-content-panel-caption {
  overflow: hidden;
  position: relative;
  width: calc(33.3333% - 0.6666px);
  height: auto;
  min-height: 211px;
  padding: 27.5px;
  box-sizing: border-box;
  background-color: var(--color-primary);
  color: #fff;
}

.number-section3-content-panel-caption em {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}

.number-section3-content-panel-caption p {
  color: #fff;
}

.seismic-section-wrapper-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.seismic-section-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 44px;
}

.seismic-section-flow {
  overflow: visible;
  position: relative;
  width: 220px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seismic-section-arrow {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: calc(100% + 22px);
  background-color: var(--color-primary);
}

.seismic-section-arrow-last {
  height: calc(100% - 88px);
}

.seismic-section-arrow:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -10.5px;
  right: 0;
  margin: auto;
  width: 22px;
  height: 11px;
  background-image: url(../images/common/arrow_down.svg);
  background-size: 22px 11px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
}

.seismic-section-flow-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.seismic-section-flow-title-last {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.seismic-section-content {
  overflow: hidden;
  position: relative;
  width: calc(100% - 264px);
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

.seismic-section-content-image {
  overflow: hidden;
  position: relative;
  width: 264px;
  height: auto;
}

.seismic-section-content-description {
  overflow: hidden;
  position: relative;
  width: calc(100% - 264px);
  height: auto;
}

.seismic-section-content-description h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 16.5px;
}

section.seismic-section3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 22px 0;
}

.seismic-section-title-wrapper-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.seismic-section-title-wrapper {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
  padding-right: 88px;
}

.seismic-section-title-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
}

.seismic-section-title-image-wrapper img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.seismic-section-title-wrapper-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
}

.seismic-section-title-wrapper-title span {
  font-size: 110px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.seismic-section-title-wrapper-title h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  margin-top: 11px;
}

section.seismic-section3 h6 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 110px;
  margin-bottom: 33px;
}

.seismic-section-images {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3vw 2%;
}

.seismic-section-image {
  overflow: hidden;
  position: relative;
  width: 32%;
  height: auto;
}

.seismic-section-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  margin-bottom: 16.5px;
}

.seismic-section-label {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: 27.5px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 27.5px;
  padding: 0 11px;
}

.seismic-section-label span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 27.5px;
  display: block;
}

.seismic-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  color: var(--color-font);
  margin-top: 5.5px;
}

.seismic-section-title span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 11px;
  color: var(--color-font);
}

section.research-anchor {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 44px 0 0 0;
}

section#purpose {
  padding-top: 44px !important;
  padding-bottom: 66px !important;
}

section#purpose .seismic-section-title-wrapper {
  width: 40%;
}

section#purpose .seismic-section-title-image-wrapper {
  width: 60%;
  margin-top: 44px;
}

section#process {
  background-color: var(--color-alternate);
  margin-bottom: 22px;
}

section#process .seismic-section-arrow-last {
  display: none !important;
}

.seismic-section-content-description b {
  color: var(--color-primary);
}

section#works .seismic-section-title-wrapper {
  width: 100%;
  padding-right: 0;
}

section.example-section1 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 44px 0 88px 0;
}

section.example-section2 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 44px 0 88px 0;
  background-color: var(--color-alternate);
}

.area-map-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 660px;
  height: auto;
  margin: 44px auto;
  padding-right: 110px;
}

.area-map-wrapper .area-map-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.area-map-wrapper .area-map-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

section.example-section3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 44px 0 88px 0;
}

.seismic-section-title-wrapper-list.center {
  align-items: center;
}

ul.area-map-list {
  overflow: hidden;
  position: relative;
  width: 341px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 33px;
}

ul.area-map-list.left {
  position: absolute;
  top: 55px;
  left: var(--gap-pc);
}

ul.area-map-list.right {
  position: absolute;
  bottom: 0;
  right: var(--gap-pc);
}

.area-map-list li {
  overflow: hidden;
  position: relative;
  width: 154px;
  height: auto;
}

.area-name {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 33px;
  line-height: 33px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-tertiary);
  text-align: center;
}

ul.area-map-list li.active .area-name {
  background-color: var(--color-primary);
}

.area-details {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.area-detail {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 33px;
  line-height: 33px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
  text-align: center;
}

.area-number-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-number {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  letter-spacing: 0.05em;
  padding-top: 5.5px;
  gap: 0 5.5px;
}

.area-number span {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.area-number small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

ul.area-map-list li.active .area-number span.google-fonts {
  color: var(--color-primary);
}

article {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

.achievements-images {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 55px;
}

.achievements-image {
  overflow: visible;
  position: relative;
  width: calc(50% - 11px);
  height: auto;
}

.achievements-image span {
  display: none;
  overflow: hidden;
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: var(--color-tertiary);
  padding: 5.5px 11px;
  box-sizing: border-box;
}

.achievements-image.施工前 span {
  display: block;
}

.achievements-images .achievements-image:first-child {
  width: 100%;
}

.achievements-image.施工前:before {
  border: solid 6px var(--color-tertiary);
  box-sizing: border-box;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.achievements-image.施工前::after {
  content: '▶︎';
  display: block;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-tertiary);
}

.achievements-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.achievements-image.縦写真 img {
  aspect-ratio: 2/3;
}

.achievements-detail {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

.achievements-detail:first-child {
  border-top: solid 1px var(--color-border);
}

.achievements-title {
  overflow: hidden;
  position: relative;
  width: 176px;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-primary);
  border-left: solid 1px var(--color-border);
  box-sizing: border-box;
  padding: 16.5px 22px;
}

.achievements-description {
  overflow: hidden;
  position: relative;
  width: calc(100% - 176px);
  height: auto;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-right: solid 1px var(--color-border);
  box-sizing: border-box;
  padding: 16.5px 22px;
}

section.achievements-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

.single article button.read-more,
.recruit-section button.read-more {
  margin: 88px auto 0 auto !important;
  display: block;
}

table.achievements-tbl {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  border-collapse: collapse;
  text-align: left;
}

table.achievements-tbl th {
  border: solid 1px var(--color-border);
  box-sizing: border-box;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16.5px 11px;
}

table.achievements-tbl td {
  border: solid 1px var(--color-border);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 16.5px 11px;
}

table.achievements-tbl td a {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: underline;
}

table.achievements-tbl td a:hover {
  text-decoration: underline;
}

section.news {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

article.news-single time {
  overflow: hidden;
  position: relative;
  width: 110px;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--color-font);
  float: left;
  margin-top: 5px;
}

article.news-single .news-term {
  overflow: hidden;
  position: relative;
  width: 88px;
  height: 27.5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 33px;
  float: left;
}

article.news-single h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 16.5px;
}

.news-single-hr {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  margin-top: 33px;
  margin-bottom: 33px;
}

.news-single-content {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: auto;
}

.news-single-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}

.news-single-content a {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}

.news-single-images {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 55px;
}

.news-single-images img {
  overflow: hidden;
  position: relative;
  width: calc(50% - 2%);
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
}

.news-single-images img.縦写真 {
  aspect-ratio: 2180/3000;
}

.pdf-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 55px;
}

.pdf-download {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 0 27.5px;
  background-image: url(../images/common/icon-pdf.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 22px auto;
  margin-bottom: 11px;
}

.privacy-policy section.visual h1,
.privacy-policy section.visual h2,
section.visual .contact-single h1,
section.visual .contact-single h2,
section.visual .company-single h1,
section.visual .company-single h2 {
  color: var(--color-font) !important;
}

section.company {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

.company-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding-bottom: 22px;
  border-bottom: solid 1px var(--color-primary);
  box-sizing: border-box;
  margin-bottom: 33px;
}

.company-title h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.company-content {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

ol.privacy-policy-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 33px;
  list-style-type: decimal;
  list-style-position: inside;
}

ol.privacy-policy-list li {
  font-size: 16px;
  list-style-type: decimal;
  list-style-position: inside;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-font);
  text-indent: -27px;
  padding-left: 27px !important;
}

ol li::marker {
  color: var(--color-primary);
  font-weight: 700;
}

.privacy-policy h5 {
  margin-top: 110px;
  margin-bottom: 33px;
}

.partner-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.partner .partner-section:not(:first-child) {
  margin-top: 55px;
}

.partner-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 33px;
  border-left: solid 4px var(--color-primary);
  box-sizing: border-box;
  padding-left: 16.5px;
  color: var(--color-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 88px;
}

.partner-section-download {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 33px;
  border: solid 2px var(--color-border);
  box-sizing: border-box;
  padding: 55px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.partner-section-download a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px 22px;
}

.partner-section-download img {
  overflow: hidden;
  position: relative;
  width: 77px;
  height: auto;
}

.partner-section-download span {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

.partner-section-download a:hover span {
  color: var(--color-primary);
}

section.company-info {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

.sidebar {
  overflow: hidden;
  position: fixed;
  top: 608px;
  left: Max((calc(100% - 1200px) / 2), 33px);
  width: 198px;
  height: auto;
  float: none;
  z-index: 1;
}

.sidebar-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 44px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-detail {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding-left: 22px;
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

.sidebar-detail:before {
  content: '';
  position: absolute;
  top: 20.5px;
  left: 0;
  width: 13px;
  height: 3px;
  background-color: var(--color-primary);
}

.sidebar-detail a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 22px;
}

.content {
  overflow: visible;
  position: relative;
  width: auto;
  height: auto;
  float: none;
  padding-left: 253px;
}

.content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 22px;
  margin-bottom: 22px;
}

.content p {
  font-size: 16px;
}

.sign {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 55px;
}

.compny-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sign-name {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0 14px;
}

.name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.name-en {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

section.company-philosophy {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 33px 0;
  background-color: var(--color-alternate);
}

.company-philosophy {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 55px;
}

.company-philosophy-key {
  overflow: hidden;
  position: relative;
  width: 198px;
  height: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  border-right: solid 2px var(--color-border);
  box-sizing: border-box;
}

.company-philosophy-value {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  padding-left: 55px;
}

.company-philosophy-value strong {
  font-family:
    'Barlow',
    'YuGothicFix',
    'Hiragino Sans',
    'Hiragino Kaku Gothic ProN',
    Meiryo,
    'Noto Sans CJK JP',
    'Noto Sans JP',
    sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.company-philosophy-value em {
  font-family:
    'Barlow',
    'YuGothicFix',
    'Hiragino Sans',
    'Hiragino Kaku Gothic ProN',
    Meiryo,
    'Noto Sans CJK JP',
    'Noto Sans JP',
    sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.company-philosophy-value p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

section.company-profile {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

table.company-profile {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  border-collapse: collapse;
}

table.company-profile tr {
  border-top: solid 1px var(--color-border);
  border-bottom: solid 1px var(--color-border);
  box-sizing: border-box;
}

table.company-profile th {
  overflow: hidden;
  position: relative;
  width: 198px;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding: 22px 22px 22px 0;
  text-align: left;
}

table.company-profile td {
  overflow: hidden;
  position: relative;
  width: auto;
  height: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  padding: 22px 0;
  text-align: left;
}

.company-heading {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 33px;
}

.company-map-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 88px;
}

.company-map {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-top: 22px;
}

.company-map iframe {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-access {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 33px;
}

.company-access p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

section.company-history {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
  background-color: var(--color-alternate);
}

section.company-qualification {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

.qualification-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
}

.qualification-content {
  overflow: hidden;
  position: relative;
  width: 55%;
  height: auto;
}

.qualification-image {
  overflow: hidden;
  position: relative;
  width: 45%;
  height: auto;
}

.qualification-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

ul.qualification-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 88px;
}

ul.qualification-list li {
  overflow: hidden;
  position: relative;
  width: calc(33.3333% - 14.6666px);
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  border: solid 1px var(--color-border);
  box-sizing: border-box;
}

.qualification-list-name {
  width: max-content;
  height: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
  display: block;
  justify-content: center;
  align-items: baseline;
}

.qualification-list-number {
  width: max-content;
  height: auto;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.qualification-list-number small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-font);
}

section.visual.recruit-visual {
  background-color: var(--color-primary) !important;
  background-position: 100% 50% !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.recruit-summary h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  color: var(--color-primary) !important;
}

.recruit-section-panel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.recruit-section-panel-content {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: none;
}

.recruit-section-panel-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 22px 66px 22px 22px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: var(--color-primary);
  color: #fff;
  margin-bottom: 22px;
  background-image: url(../images/common/icon_minus.svg);
  background-position: calc(100% - 22px) center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  cursor: pointer;
}

.recruit-section-panel-title.active {
  background-image: url(../images/common/icon_plus.svg);
}

.recruit-section-panel-slogan {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 22px;
  margin-top: 11px;
  margin-bottom: 22px;
}

.recruit-section-panel-slogan label {
  display: block;
  overflow: hidden;
  position: relative;
  width: 110px;
  height: 33px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: solid 1px var(--color-primary);
  box-sizing: border-box;
  color: var(--color-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-section-panel-slogan p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.recruit-section-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 88px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: solid 1px var(--color-primary);
  box-sizing: border-box;
}

.recruit-section-title-last {
  margin-bottom: 0;
}

.recruit-section-table-last tr:first-child {
  border-top: none;
}

.recruit-section-contact {
  display: block;
  margin-bottom: 88px;
}

section.recruit-section-interview {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 286px;
  padding: 88px 0;
  background-color: var(--color-primary);
  margin-top: 88px;
}

section.recruit-section-interview .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.recruit-section-interview-wrapper {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.recruit-section-interview-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 11px;
}

.recruit-section-interview-content {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: auto;
}

.recruit-section-interview-content p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  padding-bottom: 5.5px;
  border-bottom: solid 1px #fff;
  box-sizing: border-box;
}

section.entry {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

section.entry .wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.entry-flow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 44px;
  padding-bottom: 44px;
}

.entry-step {
  overflow: hidden;
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}

.entry-step span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 6px;
}

.entry-step p {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.entry-details {
  overflow: hidden;
  position: relative;
  width: calc(100% - 132px);
  height: auto;
}

.entry-details-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 11px;
  padding-top: 22px;
}

.entry-line {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 44px;
  width: 1px;
  height: 100%;
  background-color: var(--color-primary);
}

.entry-flow:last-child .entry-line {
  display: none;
}

.greetings {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 0 var(--gap-pc);
}

.philosophy {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 88px var(--gap-pc);
}

.philosophy .company-philosophy {
  padding-top: 20px;
}

.profile {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 88px var(--gap-pc);
}

.profile .company-heading {
  padding-top: 20px;
}

.history {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 88px var(--gap-pc);
}

.history .company-heading {
  padding-top: 20px;
}

.qualification {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 88px var(--gap-pc);
}

.alternate {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
}

section.form {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
  background-color: var(--color-primary);
}

section.form .container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
}

section.form .container .form-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 0;
}

.form-area {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 44px;
}

.contact-key {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 33px;
  margin-bottom: 11px;
}

.contact-key p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-key span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-primary);
  padding: 2px 8px 2px 8px;
  box-sizing: border-box;
  display: inline-block;
  top: -2px;
  position: relative;
  margin-left: 4px;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--color-primary);
}

input[type="file"] {
  font-weight: 700;
}

section.form label {
  font-weight: 700;
  margin-right: 1em;
}

select {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 10px 11px;
  background: #fff;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select {
  width: 100%;
  height: auto;
  border: solid 1px var(--color-border);
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 0;
}

textarea {
  height: 220px;
}

.contact-privacy {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-alternate);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
}

.contact-privacy p {
  font-weight: 700;
}

.contact-privacy a {
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.contact-privacy span.wpcf7-list-item-label {
  display: none;
}

button.submit {
  cursor: pointer;
  width: 100%;
  height: 66px;
  max-width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid var(--color-primary);
  box-sizing: border-box;
  background-color: var(--color-primary);
  transition: all 0.3s;
  display: block;
  margin: 22px auto 0 auto;
}

button.submit:hover {
  color: var(--color-primary);
  background-color: #ffffff;
  transition: all 0.3s;
}

input[type="submit"] {
  cursor: pointer;
  width: 100%;
  height: 66px;
  max-width: 331px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid var(--color-primary);
  box-sizing: border-box;
  background-color: var(--color-primary);
  transition: all 0.3s;
  display: block;
  margin: 22px auto 0 auto;
}

input[type="submit"]:hover {
  color: var(--color-primary);
  background-color: #ffffff;
  transition: all 0.3s;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--color-red);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 22px;
  color: var(--color-red);
  margin: 22px 0 0 0;
}

.wpcf7-spinner {
  display: none;
}

.page-id-301 section.footer-contact .section-heading,
.page-id-296 section.footer-contact .section-heading {
  display: none;
}

.page-id-301 .footer-left,
.page-id-296 .footer-left {
  padding-top: 66px;
  min-height: auto;
}

.page-id-301 .footer-right,
.page-id-296 .footer-right {
  padding: 66px 77px 55px 77px;
}

.page-id-301 .copyright-wrapper,
.page-id-296 .copyright-wrapper {
  padding-bottom: 49px;
}

.mobile-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 var(--gap-pc);
}

.mobile-header nav.footer-nav ul {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  columns: auto;
}

.mobile-header nav.footer-nav ul li {
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  line-height: 55px;
  border-bottom: solid 1px var(--color-primary);
}

.mobile-header .submenu-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 37px;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
  letter-spacing: 0.05em !important;
  color: var(--color-font) !important;
  padding-bottom: 2px;
}

.mobile-header .submenu-item:last-child {
  margin-bottom: 16.5px;
}

.mobile-header .submenu-item::before {
  content: '';
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 19px;
  margin: auto;
  width: 11px;
  height: 2px;
  background-color: var(--color-primary);
}

.mobile-header .contact-header {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 55px;
  text-align: center;
  color: #fff;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  margin-top: 55px;
  background-image: url(../images/common/button_next.svg);
  background-repeat: no-repeat;
  background-position: right 16.5px center;
  background-size: 11px 11px;
}

.mobile-header .contact-header a {
  overflow: hidden;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
  margin-top: 2px;
}

.mobile-header .other-links {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 15px;
}

.mobile-header .other-links a {
  overflow: hidden;
}

.mobile-header .icon_instagram {
  overflow: hidden;
  position: relative;
  width: 33px;
  height: auto;
}

.mobile-header .copyright {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 var(--gap-pc);
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

.mobile-header .submenu-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: none;
}

.mobile-header .icon_plus {
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 11px;
  right: 0;
  width: 35px;
  height: 35px;
  padding: 11px;
  background-image: url(../images/common/icon-plus-sp.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px 13px;
}

.mobile-header .icon_plus.active {
  background-image: url(../images/common/icon-minus-sp.svg);
}

.copyright-mobile {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  z-index: 9;
}

.copyright-mobile .contact-header {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  text-align: center;
  color: #fff;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1em;
}

.copyright-mobile .contact-header a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 11px;
  background-image: url(../images/common/button_next.svg);
  background-repeat: no-repeat;
  background-position: right 16.5px center;
  background-size: 11px 11px;
}

.copyright-mobile .contact-header-image {
  overflow: hidden;
  position: relative;
  width: 27.5px;
  height: auto;
}

.page-top {
  cursor: pointer;
  overflow: hidden;
  position: fixed;
  bottom: 88px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 80, 60, 0.82);
  filter: brightness(1.18);
  z-index: 5;
  opacity: 0;
  transition: all 0.3s linear;
}

.page-top.show {
  opacity: 1;
}

.page-top img {
  overflow: hidden;
  position: relative;
  width: 17.5px;
  height: 17.5px;
  object-fit: contain;
}

.page-top:hover {
  filter: brightness(1.5);
}

section.search-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
  background-color: var(--color-alternate);
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.radio-btn-area {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 11px;
  max-width: 814px;
  margin: 0 auto 22px auto;
}

.radio-btn {
  width: 110px;
  height: 44px;
  text-align: center;
}

.radio-btn input {
  display: none;
}

.radio-btn label {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: var(--color-border) solid 1px;
  color: var(--color-primary);
  font-weight: 700;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.radio-btn span {
  display: block;
  width: 100%;
}

.radio-btn input:checked+label {
  color: #ffffff;
  font-weight: bold;
  background-color: var(--color-primary);
  z-index: 8;
}

section.search-section select {
  width: 264px;
  font-weight: 700;
  padding: 10px 14px;
  color: var(--color-primary);
}

#shubetsu,
#kouzou,
#kibo {
  display: none !important;
}

.select-btn-area {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 814px;
  margin: 0 auto 22px auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  flex-wrap: wrap;
}

.keyword-btn-area {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 814px;
  margin: 0 auto 22px auto;
}

section.search-section input[type="text"] {
  padding: 6.5px 14px;
  color: var(--color-primary);
  font-weight: 700;
}

section.search-section input[type="text"]::placeholder {
  color: #999999;
  font-weight: 400;
}

section.achievements-list p {
  text-align: center;
}

section.search-section select option[value=""] {
  color: #999999 !important;
  font-weight: 400 !important;
}

section.search-section select:invalid {
  color: #999999;
  font-weight: 400;
}

.footer-recruit-slideshow {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 660px;
  top: 0;
  left: 0;
}

.footer-recruit-slideshow-panel {
  overflow: hidden;
  position: relative;
  width: 440px;
  height: auto;
}

.footer-recruit-slideshow-panel img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/3;
}

.grecaptcha-badge {
  z-index: 9 !important;
}