@charset "UTF-8";
/*----------------------------------------------------------*/
/* トップページ */
/*----------------------------------------------------------*/
/*---
mv
---*/
.mv {
  width: 100%;
  position: relative;
}
.mv ul {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.mv ul::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 800px;
  display: block;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 40%), radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 40%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}
@media screen and (max-width: 768px) {
  .mv ul::after {
    height: 620px;
  }
}
.mv ul li {
  width: 100%;
  height: 800px;
}
@media screen and (max-width: 768px) {
  .mv ul li {
    height: 620px;
  }
}
.mv ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    /* 拡大率 */
  }
}
.mv ul .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.mv__copy {
  position: absolute;
  right: 0;
  bottom: 100px;
  color: #FCFCFC;
  background: linear-gradient(to right, rgb(33, 41, 62), rgba(83, 96, 119, 0.4));
  padding: 28px 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__copy {
    bottom: 40px;
    padding: 2px 28px;
  }
}
.mv__copy__main {
  font-size: 3.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .mv__copy__main {
    font-size: 2.6rem;
  }
}
.mv__copy__main .pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv__copy__main .pc-none {
    display: block;
  }
}
.mv__copy__sub {
  font-size: 2.4rem;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .mv__copy__sub {
    font-size: 2rem;
    font-family: "Afacad", sans-serif;
    margin-top: 8px;
  }
}
.mv__copy__sub .pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv__copy__sub .pc-none {
    display: block;
  }
}
.mv__copy__sub .sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .mv__copy__sub .sp-none {
    display: none;
  }
}

/*---
サードドアについて
---*/
.about__chart__img {
  display: block;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about__chart__img--pc {
    display: none;
  }
}
.about__chart__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about__chart__img--sp {
    display: block;
    max-width: 460px;
  }
}

/*---
特殊基礎機械ラインナップ
---*/
.lineup {
  background-color: #fafafa;
}
.lineup__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.8vw;
}
@media screen and (max-width: 1000px) {
  .lineup__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .lineup__content {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 460px;
    margin: auto;
    gap: 20px;
  }
}
.lineup__content li {
  border-radius: 20px;
  position: relative;
}
.lineup__content li a {
  transition: 0.2s;
}
.lineup__content li a:hover {
  opacity: 1;
}
.lineup__content li a:hover .lineup__content__category {
  background-color: rgba(33, 41, 62, 0.9);
}
.lineup__content li a:hover .lineup__content__category h3 {
  color: #FCFCFC;
}
.lineup__content li a:hover .lineup__content__category__arrow {
  background-color: #D53722;
}
.lineup__content__img {
  border-radius: 8px;
}
.lineup__content__category {
  display: flex;
  align-items: center;
  width: 92%;
  margin: auto;
  padding: 8px 16px;
  background-color: rgba(252, 252, 252, 0.9);
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  transition: 0.2s;
}
.lineup__content__category__arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #2F50A0;
  border-radius: 30px;
  position: relative;
  transition: 0.2s;
}
.lineup__content__category__arrow::after {
  content: "";
  display: block;
  background-image: url("../images/lineup_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}
.lineup__content__category h3 {
  color: #2F50A0;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/*---
会社概要
---*/
.company {
  background-color: #21293E;
  background-image: url("../images/company_bg.png");
}
.company__content-wrapper {
  background-color: #FCFCFC;
  padding: 80px 6.9%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .company__content-wrapper {
    padding: 40px 20px;
  }
}
.company__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  .company__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.company__content__img {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .company__content__img {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .company__content__img {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: auto;
  }
}
.company__content__img img {
  display: block;
  width: 100%;
}
.company__content__table table {
  width: 100%;
}
.company__content__table table th {
  vertical-align: middle;
  width: 120px;
  font-weight: 600;
  padding: 20px;
  border-top: solid 1px #D9D9D9;
}
@media screen and (max-width: 1000px) {
  .company__content__table table th {
    display: block;
    width: 100%;
    padding: 16px 0 8px;
    border-top: solid 1px #D9D9D9;
  }
}
.company__content__table table td {
  padding: 20px;
  border-top: solid 1px #D9D9D9;
}
@media screen and (max-width: 1000px) {
  .company__content__table table td {
    display: block;
    width: 100%;
    border-top: none;
    padding: 16px 0;
    padding-top: 0;
  }
}
.company__content__table table tr:last-child th {
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 1000px) {
  .company__content__table table tr:last-child th {
    border-bottom: 0;
  }
}
.company__content__table table tr:last-child td {
  border-bottom: solid 1px #D9D9D9;
}
.company__content__table__base {
  display: grid;
  gap: 16px;
}
.company__content__table__g-map {
  content: "";
  background-image: url("../images/comany_google-map.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
  display: inline-block;
  margin-left: 6px;
}
.company__content__table__external-link {
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 3px;
  width: 20px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .company__content__table__external-link {
    width: 18px;
  }
}

/*---
Googleマップ
---*/
.map {
  width: 100%;
  height: 460px;
}
@media screen and (max-width: 768px) {
  .map {
    height: 240px;
  }
}
.map iframe {
  width: 100%;
  height: 100%;
}

/*---
お問い合わせ
---*/
.contact__content {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .contact__content {
    gap: 20px;
  }
}
.contact__content__box {
  background-color: #FCFCFC;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.contact__content__box h3 {
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin-bottom: 32px;
}
.contact__content__box--tel {
  text-align: center;
  width: 100%;
  padding: 40px;
}
.contact__content__box--tel .tel {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 12px 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact__content__box--tel .tel {
    font-size: 2.8rem;
  }
}
.contact__content__box--mail {
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .contact__content__box--mail {
    padding: 32px 20px;
  }
}
.contact__content__box .pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact__content__box .pc-none {
    display: block;
  }
}
.contact__form__select {
  font-size: 1.6rem;
  width: 100%;
  max-width: 560px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .contact__form__select {
    font-size: 1.4rem;
    gap: 16px;
  }
}
.contact__form__select input {
  margin-right: 4px;
}
.contact__form__item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact__form__item-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact__form__item input {
  width: 100%;
  border: solid 1px #DDDDDD;
  font-size: 1.6rem;
  padding: 16px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .contact__form__item input {
    font-size: 1.4rem;
  }
}
.contact__form__item textarea {
  width: 100%;
  border: solid 1px #DDDDDD;
  font-size: 1.6rem;
  padding: 16px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .contact__form__item textarea {
    font-size: 1.4rem;
  }
}
.contact__form__privacy {
  font-size: 1.6rem;
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__form__privacy {
    font-size: 1.4rem;
  }
}
.contact__form__privacy a {
  color: #647AB0 !important;
  text-decoration: underline;
  margin-left: 4px;
  margin-right: 8px;
}
.contact__form__submit {
  text-align: center;
}
.contact__form__submit:hover input {
  background-color: #c72b16;
}
.contact__form__submit input {
  margin-top: 32px;
  font-size: 1.6rem;
  color: #FCFCFC;
  width: 100%;
  max-width: 320px;
  background-color: #D53722;
  padding: 16px 20px;
  text-align: center;
  border-radius: 100px;
  transition: 0.1s;
}

/*----------------------------------------------------------*/
/* 特殊基礎機械ラインナップページ */
/*----------------------------------------------------------*/
.p-lineup .lineup {
  background-color: #F0F0F0;
}
.p-lineup__title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lineup__title {
    font-size: 2rem;
  }
}
.p-lineup__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background-color: #21293E;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .p-lineup__title::after {
    width: 40px;
  }
}
.p-lineup__info {
  text-align: center;
  margin-top: 16px;
}
.p-lineup__info h4 {
  font-size: 1.6rem;
  font-weight: 600;
}
.p-lineup__info p {
  font-size: 1.2rem;
  margin-top: 6px;
}
.p-lineup .contact-btn {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-lineup .contact-btn {
    margin-top: 40px;
  }
}
.p-lineup .contact-btn {
  margin-left: 0;
}
.p-lineup__archive-link {
  display: block;
  width: 180px;
  margin: 32px auto 0;
  background-color: #fff;
  padding: 5px 16px;
  border-radius: 100px;
}
.p-lineup__archive-link p {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-lineup__archive-link__arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #2F50A0;
  border-radius: 30px;
  position: relative;
  transition: 0.2s;
}
.p-lineup__archive-link__arrow::after {
  content: "";
  display: block;
  background-image: url("../images/archive_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}
.p-lineup .lineup__content {
  max-width: 980px;
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-lineup .lineup__content {
    width: 90%;
  }
}
.p-lineup .lineup__content li {
  border-radius: 0;
}
.p-lineup .lineup__content li img {
  border-radius: 0;
  width: 100%;
}

/*----------------------------------------------------------*/
/* 特殊基礎機械ラインナップページ */
/*----------------------------------------------------------*/
.p-privacy .privacy .inner {
  max-width: 1200px;
  margin: auto;
}
.p-privacy .privacy__description {
  font-weight: 500;
}
.p-privacy .privacy__content {
  display: grid;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-privacy .privacy__content {
    gap: 40px;
  }
}
.p-privacy .privacy__content__item__title {
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #D9D9D9;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-privacy .privacy__content__item__title {
    font-size: 2rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.p-privacy .privacy__content__item ol {
  list-style: auto;
  padding-left: 2em;
}
.p-privacy .privacy__content__item ol li {
  font-size: 1.6rem;
}
.p-privacy .privacy__content__item ol li p {
  margin-left: 0.5em;
}
.p-privacy .privacy__content__item a {
  color: #21293E;
  transition: 0.2s;
  text-decoration: underline;
}
.p-privacy .privacy__content__item a:hover {
  opacity: 0.6;
}