@charset "UTF-8";
/* common
---------------------------------------------------- */
.anchor-link .anchor-link__contents {
  padding-top: 4.375rem;
  padding-bottom: 1.25rem;
  text-align: center;
}
@media (max-width: 575.98px) {
  .anchor-link .anchor-link__contents {
    padding-top: 60px;
  }
}
.anchor-link .anchor-link__contents .anchor-link__item {
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
  padding: 0.8em 0;
  width: 300px;
  border-radius: 100px;
  background-color: rgb(66, 160, 226);
  font-size: max(1.125rem, 15px);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.7s ease;
}
@media (max-width: 1199.98px) {
  .anchor-link .anchor-link__contents .anchor-link__item {
    margin-right: 1em;
    width: 250px;
  }
}
@media (max-width: 991.98px) {
  .anchor-link .anchor-link__contents .anchor-link__item {
    width: 180px;
    padding: 1em 0;
  }
}
@media (max-width: 767.98px) {
  .anchor-link .anchor-link__contents .anchor-link__item {
    margin: 0 auto 1em;
    padding: 1em 0;
    display: block;
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .anchor-link .anchor-link__contents .anchor-link__item {
    width: 100%;
  }
}
.anchor-link .anchor-link__contents .anchor-link__item:nth-child(3) {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .anchor-link .anchor-link__contents .anchor-link__item:nth-child(3) {
    margin: 0 auto;
  }
}
.anchor-link .anchor-link__contents .anchor-link__item:hover {
  background-color: rgb(26, 115, 179);
}

.__housing-division .anchor-link__contents .anchor-link__item {
  background-color: rgb(66, 160, 226);
}
.__housing-division .anchor-link__contents .anchor-link__item:hover {
  background-color: rgb(26, 115, 179);
}

.__custom-home .anchor-link__contents .anchor-link__item {
  background-color: rgb(78, 184, 45);
}
.__custom-home .anchor-link__contents .anchor-link__item:hover {
  background-color: rgb(39, 143, 7);
}

.__construction .anchor-link__contents .anchor-link__item {
  background-color: rgb(10, 46, 90);
}
.__construction .anchor-link__contents .anchor-link__item:hover {
  background-color: rgb(26, 115, 179);
}

/* animation-up
---------------------------------------------------- */
.page-title .animation-up {
  visibility: hidden;
}
.page-title .animation-up.displayed {
  visibility: visible;
}
.page-title .animation-up span {
  opacity: 0;
}
.page-title .animation-up.displayed span {
  opacity: 1;
  animation: showText 1s backwards;
  display: inline-block;
  white-space: pre-wrap;
}
.page-title .animation-up.displayed > span {
  overflow: hidden;
}
.page-title .animation-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}

/* service
---------------------------------------------------- */
.service {
  padding-bottom: 5em;
}
.service .description {
  padding-bottom: 4em;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 800px) {
  .service .description {
    text-align: left;
  }
}
.service .card-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
@media (max-width: 991.98px) {
  .service .card-wrapper {
    display: block;
  }
}
.service .card-wrapper .card-contents {
  background: #f7f7f7;
  padding: 2em 2em;
  text-align: center;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  gap: 1em;
  flex-direction: column;
  flex: 1 1 0;
}
@media (max-width: 991.98px) {
  .service .card-wrapper .card-contents {
    margin: 0 auto 2em;
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .service .card-wrapper .card-contents {
    padding: 2em 1.5em;
  }
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents {
    flex-direction: column;
  }
}
.service .card-wrapper .card-contents .card-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .service .card-wrapper .card-contents .card-text {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents .card-text {
    width: 100%;
  }
}
.service .card-wrapper .card-contents .card-text .card-number {
  padding: 0 1em;
  margin: 0.2em auto 1em;
  font-family: "Outfit", sans-serif;
  font-size: max(1.125rem, 16px);
  color: rgb(66, 160, 226);
  background-color: #fff;
  border-radius: 50px;
  align-self: flex-start;
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents .card-text .card-number {
    margin-bottom: 0.5em;
  }
}
.service .card-wrapper .card-contents .card-text .card-title {
  padding-bottom: 0em;
  font-size: 28px;
  font-weight: 600;
  color: rgb(10, 46, 90);
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
}
@media (max-width: 991.98px) {
  .service .card-wrapper .card-contents .card-text .card-title {
    padding: 0.5em;
    flex-grow: 0;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents .card-text .card-title {
    font-size: 24px;
  }
}
.service .card-wrapper .card-contents .card-text .card-description {
  padding-bottom: 1em;
  font-size: 16px;
}
@media (max-width: 330px) {
  .service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
    display: none;
  }
}
.service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
  display: block;
}
@media (max-width: 585px) {
  .service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: block;
  }
}
@media (max-width: 330px) {
  .service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .service .card-wrapper .card-contents .card-img {
    margin: 0 auto;
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .service .card-wrapper .card-contents .card-img {
    width: 100%;
  }
}
.service .card-wrapper .card-contents .card-img img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-home-service .card-wrapper .card-contents .card-text .card-title {
  color: #144206;
  line-height: 1.5;
}
.custom-home-service .card-wrapper .card-contents .card-text .card-number {
  color: rgb(78, 184, 45);
}
.custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
  display: none;
}
@media (max-width: 991.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
    display: block;
  }
}
@media (max-width: 410px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-1 {
    display: none;
  }
}
.custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
  display: none;
}
@media (max-width: 1030px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: none;
  }
}
@media (max-width: 630px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: none;
  }
}
@media (max-width: 350px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-2 {
    display: block;
  }
}
.custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
  display: block;
}
@media (max-width: 1080px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
    display: block;
  }
}
@media (max-width: 660px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
    display: block;
  }
}
@media (max-width: 360px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-3 {
    display: none;
  }
}
@media (max-width: 1130px) {
  .custom-home-service .card-wrapper .card-contents .card-text .card-description .br-description-4 {
    display: none;
  }
}

/* strongpoint
---------------------------------------------------- */
.strong-point {
  background-color: rgb(249, 249, 249);
}
.strong-point .content-wrapper {
  display: flex;
}
@media (max-width: 991.98px) {
  .strong-point .content-wrapper {
    display: block;
  }
}
.strong-point .content-wrapper .content-left {
  position: sticky;
  top: 0;
  height: 500px;
}
@media (max-width: 991.98px) {
  .strong-point .content-wrapper .content-left {
    position: static;
    height: auto;
  }
}
.strong-point .content-wrapper .content-left .heading {
  padding-top: 10em;
  text-align: left;
}
@media (max-width: 991.98px) {
  .strong-point .content-wrapper .content-left .heading {
    padding-top: 5em;
    text-align: center;
  }
}
.strong-point .content-wrapper .content-right {
  padding-top: 5em;
  padding-left: 5em;
}
@media (max-width: 991.98px) {
  .strong-point .content-wrapper .content-right {
    padding: 0;
  }
}
.strong-point .content-wrapper .content-right .content {
  display: flex;
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px solid #c8c8c8;
}
@media (max-width: 575.98px) {
  .strong-point .content-wrapper .content-right .content {
    display: block;
  }
}
.strong-point .content-wrapper .content-right .content:nth-child(5) {
  margin-bottom: 5em;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 991.98px) {
  .strong-point .content-wrapper .content-right .content:nth-child(5) {
    margin-bottom: 0;
    padding-bottom: 5em;
  }
}
.strong-point .content-wrapper .content-right .content .content-img {
  width: 45%;
}
@media (max-width: 575.98px) {
  .strong-point .content-wrapper .content-right .content .content-img {
    width: 100%;
    height: 250px;
  }
}
.strong-point .content-wrapper .content-right .content .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
  -o-object-position: top;
     object-position: top;
}
.strong-point .content-wrapper .content-right .content .content-text {
  width: 55%;
  padding-left: 2em;
}
@media (max-width: 575.98px) {
  .strong-point .content-wrapper .content-right .content .content-text {
    padding-top: 2em;
    padding-left: 0;
    width: 100%;
  }
}
.strong-point .content-wrapper .content-right .content .content-text .content-number {
  padding-bottom: 0.5em;
  font-family: "Outfit", sans-serif;
  font-size: max(2rem, 32px);
  color: rgb(66, 160, 226);
  line-height: 1;
}
@media (max-width: 575.98px) {
  .strong-point .content-wrapper .content-right .content .content-text .content-number {
    padding-bottom: 0.2em;
    font-size: 48px;
  }
}
.strong-point .content-wrapper .content-right .content .content-text .content-title {
  padding-bottom: 0.5em;
  font-size: max(1.75rem, 24px);
  font-weight: 600;
  color: rgb(10, 46, 90);
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .strong-point .content-wrapper .content-right .content .content-text .content-title {
    font-size: 20px;
  }
}
.strong-point .content-wrapper .content-right .content .content-text .content-title .br-strongpoint {
  display: block;
}
@media (max-width: 575.98px) {
  .strong-point .content-wrapper .content-right .content .content-text .content-title .br-strongpoint {
    display: none;
  }
}
@media (max-width: 425px) {
  .strong-point .content-wrapper .content-right .content .content-text .content-title .br-strongpoint {
    display: block;
  }
}
.strong-point .content-wrapper .content-right .content .content-text .content-description {
  text-align: justify;
}

.custom-home-strong-point {
  background-color: #fff;
  padding-bottom: 5em;
}
.custom-home-strong-point .content-wrapper .content-right .content .content-text .content-number {
  color: rgb(78, 184, 45);
}
.custom-home-strong-point .content-wrapper .content-right .content .content-text .content-title {
  color: #144206;
}

/* housing-division
------------------------------------------------------------------------- */
/* customer-voices
---------------------------------------------------- */
.customer-voices {
  padding-bottom: 5em;
}
.customer-voices .content-cv-wrapper {
  margin-bottom: 4em;
  display: flex;
  gap: 1.5em;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper {
    display: block;
  }
}
.customer-voices .content-cv-wrapper .content-cv {
  padding: 2.5em 2em 2em;
  background-color: #fff;
  border: 2px solid rgb(66, 160, 226);
  border-radius: 20px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper .content-cv {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
  }
}
@media (max-width: 575.98px) {
  .customer-voices .content-cv-wrapper .content-cv {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-person {
    width: 30%;
  }
}
@media (max-width: 575.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-person {
    width: 100%;
  }
}
.customer-voices .content-cv-wrapper .content-cv .content-cv-person .content-cv-img {
  margin: 0 auto 0.5em;
  width: 30%;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-person .content-cv-img {
    width: 100px;
  }
}
.customer-voices .content-cv-wrapper .content-cv .content-cv-person .content-cv-name {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: max(0.875rem, 13px);
  color: rgb(130, 130, 130);
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-person .content-cv-name {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-person .content-cv-name {
    margin-bottom: 1.5em;
  }
}
.customer-voices .content-cv-wrapper .content-cv .content-cv-text {
  text-align: justify;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-text {
    width: 70%;
  }
}
@media (max-width: 575.98px) {
  .customer-voices .content-cv-wrapper .content-cv .content-cv-text {
    width: 100%;
  }
}
.customer-voices .content-cv-catchcopy {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .customer-voices .content-cv-catchcopy {
    flex-direction: column;
  }
}
.customer-voices .content-cv-catchcopy .catchcopy-img {
  margin-right: 3em;
  width: 10%;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-catchcopy .catchcopy-img {
    width: 20%;
  }
}
@media (max-width: 767.98px) {
  .customer-voices .content-cv-catchcopy .catchcopy-img {
    margin: 0 auto;
    width: 120px;
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .customer-voices .content-cv-catchcopy .catchcopy-text {
    margin-bottom: 2em;
    text-align: center;
    order: 1;
  }
}
.customer-voices .content-cv-catchcopy .catchcopy-text .text {
  position: relative;
  display: inline-block;
  margin-bottom: 0.8em;
  font-weight: 500;
  font-size: max(1.5rem, 20px);
  border-bottom: 10px solid rgb(255, 222, 174);
  line-height: 1;
}
@media (max-width: 991.98px) {
  .customer-voices .content-cv-catchcopy .catchcopy-text .text {
    font-size: 20px;
    border-bottom: 8px solid rgb(255, 222, 174);
  }
}
@media (max-width: 575.98px) {
  .customer-voices .content-cv-catchcopy .catchcopy-text .text {
    font-size: 18px;
  }
}

/* custom-home
------------------------------------------------------------------------- */
.page-title-custom-home::before {
  background-image: url(../images/custom-home-pagetitle-img.jpg);
}

.custom-home-service .heading .heading-en,
.custom-home-strong-point .heading .heading-en,
.construction-materials .heading .heading-en {
  color: rgb(78, 184, 45);
}
.custom-home-service .heading .heading-jp,
.custom-home-strong-point .heading .heading-jp,
.construction-materials .heading .heading-jp {
  background-color: rgb(78, 184, 45);
}

/* construction-materials
---------------------------------------------------- */
.construction-materials {
  padding-bottom: 7em;
  background-color: rgb(249, 249, 249);
}
@media (max-width: 767.98px) {
  .construction-materials {
    padding-bottom: 6em;
  }
}
.construction-materials .content-cm-wrapper {
  padding-bottom: 5em;
}
@media (max-width: 767.98px) {
  .construction-materials .content-cm-wrapper {
    padding-bottom: 4em;
  }
}
.construction-materials .content-cm-wrapper .content-cm-inner {
  padding-top: 1em;
}
.construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper {
    display: block;
  }
}
.construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text {
    margin-bottom: 1.5em;
  }
}
.construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text .cm-text-title {
  padding: 0.3em;
  background-color: rgb(78, 184, 45);
  border: 1px solid rgb(78, 184, 45);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  font-size: max(1.125rem, 16px);
  font-weight: 600;
  color: #fff;
}
.construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text .cm-text-description {
  padding: 1em 2em 1.5em;
  border: 1px solid rgb(78, 184, 45);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  flex: 1;
}
@media (max-width: 575.98px) {
  .construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text .cm-text-description {
    padding: 1em 1.5em 1.5em;
  }
}
.construction-materials .content-cm-wrapper .content-cm-inner .content-cm-text-wrapper .content-cm-text .cm-text-description .cm-text-description-list {
  list-style-type: disc;
  padding-left: 1.5em;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.construction-materials .content-cm-img .content-cm-scroll__wrap {
  display: flex;
  overflow: hidden;
}
.construction-materials .content-cm-img .content-cm-scroll__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.construction-materials .content-cm-img .content-cm-scroll__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
.construction-materials .content-cm-img .content-cm-scroll__item {
  width: 20vw;
  margin-right: 10px;
}
@media (max-width: 1199.98px) {
  .construction-materials .content-cm-img .content-cm-scroll__item {
    width: 33.3333333333vw;
  }
}
@media (max-width: 575.98px) {
  .construction-materials .content-cm-img .content-cm-scroll__item {
    width: 50vw;
  }
}
@media (max-width: 350px) {
  .construction-materials .content-cm-img .content-cm-scroll__item {
    width: 66.6666666667vw;
  }
}
.construction-materials .content-cm-img .content-cm-scroll__item > img {
  width: 100%;
  border-radius: 10px;
}

/* construction
------------------------------------------------------------------------- */
.page-title-construction::before {
  background-image: url(../images/construction-pagetitle-img.jpg);
}

.category {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (max-width: 575.98px) {
  .category {
    padding-top: 70px;
  }
}
.category .category-wrapper .category-toggle {
  display: none;
  font-size: 16px;
  cursor: pointer;
  border: none;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  background-color: rgb(10, 46, 90);
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  position: relative;
  transition: margin-bottom 0.3s ease;
}
@media (max-width: 575.98px) {
  .category .category-wrapper .category-toggle {
    display: block;
  }
}
.category .category-wrapper .category-toggle::before, .category .category-wrapper .category-toggle::after {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 1.2em;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center;
  transform: translateY(-50%);
}
.category .category-wrapper .category-toggle::before {
  content: "＋";
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.category .category-wrapper .category-toggle::after {
  content: "－";
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
}
.category .category-wrapper .category-toggle.open {
  margin-bottom: 1em;
}
.category .category-wrapper .category-toggle.open::before {
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
}
.category .category-wrapper .category-toggle.open::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.category .category-wrapper .category-list {
  padding-bottom: 1.25rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
@media (max-width: 575.98px) {
  .category .category-wrapper .category-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    gap: 0.5em;
  }
  .category .category-wrapper .category-list.open {
    max-height: 500px;
    opacity: 1;
  }
}
.category .category-wrapper .category-list li {
  flex: 0 0 calc(25% - 0.75em);
}
@media (max-width: 991.98px) {
  .category .category-wrapper .category-list li {
    flex: 0 0 calc(33.333% - 0.75em);
  }
}
@media (max-width: 767.98px) {
  .category .category-wrapper .category-list li {
    flex: 0 0 calc(50% - 0.75em);
  }
}
@media (max-width: 575.98px) {
  .category .category-wrapper .category-list li {
    flex: 0 0 100%;
    font-size: 14px;
  }
}
.category .category-wrapper .category-list .category-item {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  border: 1px solid rgb(10, 46, 90);
  border-radius: 100px;
  background-color: #fff;
  font-size: max(1.125rem, 15px);
  color: rgb(10, 46, 90);
  font-weight: 600;
  transition: background-color 0.7s ease;
}
@media (max-width: 575.98px) {
  .category .category-wrapper .category-list .category-item {
    font-size: 14px;
  }
}
.category .category-wrapper .category-list .category-item:hover {
  background-color: rgb(10, 46, 90);
  color: #fff;
}
.category .category-wrapper .category-list .category-item a:hover {
  color: #fff;
}
.category .category-wrapper .category-list .category-item.current {
  background-color: rgb(10, 46, 90);
  color: #fff;
}

.category-title {
  padding-bottom: 1em;
}
@media (max-width: 575.98px) {
  .category-title {
    padding-top: 1em;
    padding-bottom: 0;
  }
}
.category-title .category-title-text {
  font-size: max(2rem, 24px);
  font-weight: 700;
  color: rgb(10, 46, 90);
}

.construction-wrapper {
  padding-bottom: 2em;
}
.construction-wrapper .construction-inner {
  padding-top: 2em;
}
@media (max-width: 575.98px) {
  .construction-wrapper .construction-inner {
    padding-top: 3em;
  }
}
.construction-wrapper .construction-inner .construction-content-wrapper {
  padding-bottom: 4em;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-title {
  margin-bottom: 1.5em;
  padding-left: 1em;
  padding-bottom: 0.5em;
  font-size: max(1.5rem, 20px);
  font-weight: 700;
  border-bottom: 1px solid rgb(10, 46, 90);
  border-left: 10px solid rgb(10, 46, 90);
}
@media (max-width: 767.98px) {
  .construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img {
    padding-bottom: 2em;
  }
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__list .photo-ofi {
  height: 0;
  display: block;
  background-color: #EFEFEF;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__list .photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  transform: translateY(-50%);
  border: none;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows .splide__arrow {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  color: rgb(130, 130, 130);
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows .splide__arrow--prev {
  left: 10px;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows .splide__arrow--prev .icon-left {
  padding-left: 0.4em;
  padding-bottom: 0.1em;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows .splide__arrow--next {
  right: 10px;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-img .splide__arrows .splide__arrow--next .icon-right {
  padding-left: 0.4em;
  padding-bottom: 0.1em;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-text {
  padding-bottom: 1em;
  text-align: justify;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-pdf-wrapper {
  padding-top: 1em;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-pdf-wrapper .construction-pdf {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  padding: 0.3em 2em;
  border: 2px solid rgb(10, 46, 90);
  border-radius: 100px;
  color: rgb(10, 46, 90);
  font-size: 15px;
  transition: background-color 0.3s ease;
}
@media (max-width: 767.98px) {
  .construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-pdf-wrapper .construction-pdf {
    font-size: 13px;
  }
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-pdf-wrapper .construction-pdf:hover {
  background-color: rgb(10, 46, 90);
  color: #fff;
}
.construction-wrapper .construction-inner .construction-content-wrapper .construction-content .construction-text-wrapper .construction-pdf-wrapper .construction-pdf .icon {
  padding-left: 1em;
}
.construction-wrapper .construction-inner .paging {
  padding-top: 1.5em;
  padding-bottom: 6em;
  text-align: center;
}
.construction-wrapper .construction-inner .paging .current,
.construction-wrapper .construction-inner .paging .paging-text {
  margin: 0px 2px;
  color: #333;
  border: 1px solid #ccc;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}
.construction-wrapper .construction-inner .paging .paging-text a {
  padding: 0.3em 0.8em;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}
.construction-wrapper .construction-inner .paging .paging-text a:hover {
  background: #CCC;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.construction-wrapper .construction-inner .paging .current {
  background: rgb(10, 46, 90);
  border: 1px solid #636;
  color: #fff;
  display: inline;
  zoom: 1;
  padding: 0.3em 0.8em;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

/* company
------------------------------------------------------------------------- */
.page-title-company::before {
  background-image: url(../images/company-pagetitle-img.jpg);
}

.greeting .heading,
.company-profile .heading,
.access .heading {
  padding-top: 7em;
  text-align: left;
}
@media (max-width: 767.98px) {
  .greeting .heading,
  .company-profile .heading,
  .access .heading {
    text-align: center;
  }
}
.greeting .heading .heading-en,
.company-profile .heading .heading-en,
.access .heading .heading-en {
  color: rgb(10, 46, 90);
}
.greeting .heading .heading-jp,
.company-profile .heading .heading-jp,
.access .heading .heading-jp {
  background-color: rgb(10, 46, 90);
}

.greeting {
  padding-bottom: 5em;
}
.greeting .greeting-content .greeting-left {
  padding-right: 3em;
}
@media (max-width: 767.98px) {
  .greeting .greeting-content .greeting-left {
    padding-right: 15px;
  }
}
.greeting .greeting-content .greeting-left .greeting-text-wrapper .greeting-text {
  text-align: justify;
  padding-bottom: 1em;
  font-weight: 500;
}
.greeting .greeting-content .greeting-left .greeting-text-wrapper .greeting-signature {
  padding-top: 1.5em;
  text-align: end;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .greeting .greeting-content .greeting-left .greeting-text-wrapper .greeting-signature {
    padding-bottom: 4em;
  }
}
.greeting .greeting-content .greeting-left .greeting-text-wrapper .greeting-signature .greeting-signature-name {
  font-size: max(1.25rem, 16px);
}
@media (max-width: 767.98px) {
  .greeting .greeting-content .greeting-right {
    margin: 0 auto;
    width: 40%;
    min-width: 210px;
  }
}
.greeting .greeting-content .greeting-right img {
  border-radius: 10px;
}

.company-profile {
  padding-bottom: 5em;
  background-color: rgb(249, 249, 249);
}
.company-profile .company-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.company-profile .company-wrapper .heading {
  text-align: center;
}
.company-profile .company-wrapper .company-profile-content dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media (max-width: 575.98px) {
  .company-profile .company-wrapper .company-profile-content dl {
    display: block;
  }
}
.company-profile .company-wrapper .company-profile-content dl dt {
  width: 30%;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  padding: 1.5em 1em 1.5em 0;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 767.98px) {
  .company-profile .company-wrapper .company-profile-content dl dt {
    width: 35%;
  }
}
@media (max-width: 575.98px) {
  .company-profile .company-wrapper .company-profile-content dl dt {
    width: 100%;
    border: none;
    background-color: #e6e6e6;
    padding: 1em;
  }
}
.company-profile .company-wrapper .company-profile-content dl dd {
  width: 70%;
  padding: 1.5em 1em 1.5em 0;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .company-profile .company-wrapper .company-profile-content dl dd {
    width: 65%;
  }
}
@media (max-width: 575.98px) {
  .company-profile .company-wrapper .company-profile-content dl dd {
    width: 100%;
    border: none;
    padding-left: 1em;
  }
}
.company-profile .company-wrapper .company-profile-content dl dd a {
  display: inline;
}
.company-profile .company-wrapper .company-profile-content dl dd .no-wrap {
  white-space: nowrap;
}

.access {
  padding-bottom: 5em;
}
.access .access-content .access-map {
  padding-bottom: 2em;
}
.access .access-content .access-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .access .access-content .access-map iframe {
    height: 400px;
  }
}
.access .access-content .btn-common-wrapper {
  padding-bottom: 2.5em;
}
.access .access-content .btn-common-wrapper .btn-common {
  padding: 1em 3em;
  background-color: rgb(10, 46, 90);
}
@media (max-width: 400px) {
  .access .access-content .btn-common-wrapper .btn-common {
    width: auto;
  }
}
.access .access-content .btn-common-wrapper .btn-common .icon {
  padding-left: 1em;
}
.access .access-content .btn-common-wrapper .btn-common::before {
  background: #000;
}
.access .access-content .access-info-wrapper {
  display: flex;
}
@media (max-width: 575.98px) {
  .access .access-content .access-info-wrapper {
    display: block;
    text-align: center;
  }
}
.access .access-content .access-info-wrapper .access-info .access-info-title {
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}
@media (max-width: 575.98px) {
  .access .access-content .access-info-wrapper .access-info .access-info-title {
    justify-content: center;
  }
}
.access .access-content .access-info-wrapper .access-info .access-info-title .title-text {
  font-size: max(1.25rem, 18px);
  color: rgb(10, 46, 90);
  font-weight: 600;
}
.access .access-content .access-info-wrapper .access-info .access-info-title .icon {
  padding-right: 0.5em;
  font-size: max(2rem, 18px);
  color: rgb(10, 46, 90);
}
.access .access-content .access-info-wrapper .train {
  padding-right: 3em;
}
@media (max-width: 575.98px) {
  .access .access-content .access-info-wrapper .train {
    padding-right: 0;
    padding-bottom: 1.5em;
  }
}/*# sourceMappingURL=sub.css.map */