@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

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

.hidden {
  overflow: hidden;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1080px) {
  .inner {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section__title {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (min-width: 1080px) {
  .section__title {
    margin-bottom: 80px;
  }
}

.read-more__link {
  font-weight: 700;
  padding-right: 22.5px;
  padding-left: 8.5px;
  position: relative;
}
.read-more__link::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 11.5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(45deg);
  bottom: 0;
  right: 0;
}

.read-more--long {
  padding-right: 12px;
}
.read-more--long::after {
  width: 200px;
}

.comingsoon {
  text-align: center;
}
.comingsoon p {
  color: #464646;
  font-weight: 700;
}

.page__title {
  text-align: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #e8e8e8;
  margin-top: 60px;
}

.page__title-text {
  font-size: 32px;
  font-weight: 700;
}

@media (min-width: 1080px) {
  .pc-hidden {
    display: none;
  }
}

.hidden {
  overflow: hidden;
}

/*==============================
mv
==============================*/
.mv {
  height: 280px;
  background: url(../img/mv-pc.png) no-repeat bottom center/cover;
}
@media (min-width: 1080px) {
  .mv {
    height: 750px;
    background: url(../img/mv-pc.png) no-repeat center center/cover;
  }
}

.mv__inner {
  max-width: 1200px;
}

.header {
  padding-top: 17px;
}
@media (min-width: 1080px) {
  .header {
    padding-top: 25px;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 190px;
}
@media (min-width: 1080px) {
  .header__logo img {
    width: 400px;
  }
}

.drawer__icon {
  width: 31px;
  height: 26px;
  position: relative;
  z-index: 20;
}
.drawer__icon.is-open .drawer__bar:nth-of-type(1) {
  top: 12px;
  transform: rotate(45deg);
}
.drawer__icon.is-open .drawer__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer__icon.is-open .drawer__bar:nth-of-type(3) {
  top: 12px;
  transform: rotate(-45deg);
}
@media (min-width: 1080px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__bar {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: #000;
  transition: all 0.3s ease 0s;
}
.drawer__bar:nth-of-type(1) {
  top: 0;
}
.drawer__bar:nth-of-type(2) {
  top: 12px;
  opacity: 1;
}
.drawer__bar:nth-of-type(3) {
  top: 24px;
}

.drawer__content {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  right: -110%;
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  transition: all ease 0.5s 0s;
  z-index: 10;
}
.drawer__content.is-open {
  right: 0;
}

.drawer__nav {
  padding-top: 90px;
}

.drawer__nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
}

.drawer__nav-item span,
.drawer__nav-item .drawer__nav-item2 {
  position: relative;
  padding-left: 15px;
}
.drawer__nav-item span::before,
.drawer__nav-item .drawer__nav-item2::before {
  content: "";
  position: absolute;
  background: url(../img/icon-drawer-open.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 10px;
  height: 10px;
  left: 0;
}
.drawer__nav-item a img {
  width: 190px;
}
.drawer__nav-item.is-open span::before {
  transform: translateY(-50%) rotate(0deg);
}

.drop-down__nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.drop-down__link {
  position: relative;
  padding-left: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.drop-down__link::before {
  content: "";
  position: absolute;
  background: url(../img/link-arrow.png) no-repeat center center/contain;
  width: 10px;
  height: 5px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.header__nav {
  display: none;
}
@media (min-width: 1080px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}

.header__nav-link {
  font-weight: 700;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #000;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.header__nav-link:hover::after {
  content: "";
  bottom: -5px;
  opacity: 1;
}
.header__nav-link.is-active::after {
  bottom: -5px;
  opacity: 1;
}

/*==============================
news
==============================*/
.news {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1080px) {
  .news {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1080px) {
  .news__inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news__title p a {
  font-weight: bold;
  color: #00899b;
  text-decoration: underline;
  transition: all 0.3s;
}
@media (min-width: 1080px) {
  .news__title a:hover {
    opacity: 0.6;
  }
}

.news__content {
  display: flex;
  flex-direction: column;
}

.news__item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}
.news__item:first-child {
  padding-top: 0;
}
@media (min-width: 1080px) {
  .news__item {
    display: flex;
    align-items: center;
    gap: 89px;
  }
}

.news__item-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (min-width: 1080px) {
  .news__item-head {
    width: 240px;
    white-space: nowrap;
    justify-content: space-between;
  }
}

.news__date {
  font-weight: 700;
}

.news__tag {
  font-size: 13px;
  font-weight: 700;
  padding: 2px 27px;
  background: #00899b;
  color: #fff;
  border-radius: 4px;
}

.news__title {
  margin-top: 12px;
}
.news__title p {
  font-weight: 700;
  transition: all 0.3s;
}
@media (min-width: 1080px) {
  .news__title {
    margin-top: 0;
  }
}

.news__read-more {
  text-align: right;
  margin-top: 20px;
}
@media (min-width: 1080px) {
  .news__read-more {
    margin-top: 30px;
  }
}

/*==============================
works
==============================*/
.works {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1080px) {
  .works {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.works__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 1080px) {
  .works__content {
    gap: 0;
  }
}

@media (min-width: 1080px) {
  .works__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1080px) {
  .works__item.works__item-revers {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1080px) {
  .works__item-image {
    width: 50%;
  }
}
.works__item-image img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1080px) {
  .works__item-image img {
    height: 335px;
  }
}

.works__item-texts {
  margin-top: 20px;
}
@media (min-width: 1080px) {
  .works__item-texts {
    margin-top: 0;
    width: 50%;
    padding-left: 60px;
  }
}

@media (min-width: 1080px) {
  .works__item-texts--right {
    text-align: right;
    padding-right: 60px;
  }
}

.works__item-title-en {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: #00899b;
}

.works__item-title {
  font-size: 21px;
  font-weight: 700;
}

.works__item-links-pc-content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-top: 20px;
}
@media (max-width: 1079px) {
  .works__item-links-pc-content {
    display: none;
  }
}

.works__item-links-pc {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.works__item-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
  gap: 20px;
}
@media (min-width: 1080px) {
  .works__item-links {
    margin-top: 0;
  }
}

.works__item-links--right {
  justify-content: flex-end;
}

@media (min-width: 1080px) {
  .works__item-links-first {
    display: none;
  }
}

.works__read-more__link {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 2px;
  position: relative;
}
.works__read-more__link::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 11.5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(45deg);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.works__read-more__link:hover::after {
  width: 102px;
}

/*==============================
greeting
==============================*/
.greeting {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1080px) {
  .greeting {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.greeting__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1080px) {
  .greeting__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.greeting__left {
  text-align: center;
}
@media (min-width: 1080px) {
  .greeting__left {
    width: 48%;
    text-align: left;
  }
}

.greeting__content-title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background: linear-gradient(transparent 60%, #a6cdfa 60%);
  display: inline;
}
@media (min-width: 1080px) {
  .greeting__content-title {
    font-size: 32px;
  }
}

.greeting__right {
  margin-top: 30px;
}
@media (min-width: 1080px) {
  .greeting__right {
    width: 48%;
  }
}

/*==============================
top-products
==============================*/
.top-products {
  padding-bottom: 260px;
}

.top-products__items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1079px) {
  .top-products__items {
    flex-direction: column;
    gap: 60px;
  }
}

.top-products__item {
  width: calc(33.3% - 58.6666666667px);
}
@media (max-width: 1079px) {
  .top-products__item {
    width: 100%;
  }
}
.top-products__item:hover .top-products__image img {
  transform: scale(1.2, 1.2);
}

.top-products__image {
  overflow: hidden;
}
.top-products__image img {
  transition: all 0.3s ease;
  width: 273px;
  height: 191px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1079px) {
  .top-products__image img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-products__texts {
  margin-top: 10px;
}

.top-products__tags,
.results__tags {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.top-products__tag,
.results__tag,
.results-page__tag {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding: 3px 13px;
  min-width: 80px;
  text-align: center;
  background: #4fb856;
}
.top-products__tag.tag-gaiheki,
.results__tag.tag-gaiheki,
.results-page__tag.tag-gaiheki {
  background: #4fb856;
}
.top-products__tag.tag-apart,
.results__tag.tag-apart,
.results-page__tag.tag-apart {
  background: #4f79b8;
}
.top-products__tag.tag-yane,
.results__tag.tag-yane,
.results-page__tag.tag-yane {
  background: #b84f79;
}
.top-products__tag.tag-souko,
.results__tag.tag-souko,
.results-page__tag.tag-souko {
  background: #b8614f;
}
.top-products__tag.tag-tosou,
.results__tag.tag-tosou,
.results-page__tag.tag-tosou {
  background: #c84242;
}
.top-products__tag.tag-kojin,
.results__tag.tag-kojin,
.results-page__tag.tag-kojin {
  background: #146ed5;
}
.top-products__tag.tag-bankin,
.results__tag.tag-bankin,
.results-page__tag.tag-bankin {
  background: #b65f07;
}
.top-products__tag.tag-amadoi,
.results__tag.tag-amadoi,
.results-page__tag.tag-amadoi {
  background: #0709a7;
}

.top-products__name,
.results__name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1;
}

.top-products__button {
  text-align: center;
  margin-top: 60px;
}

.button {
  display: inline-block;
  padding: 15px 94px;
  border: 1px solid #000;
  font-weight: bold;
  transition: all 0.3s ease;
}
.button:hover {
  color: #fff;
  background: #000;
}

/*==============================
footer
==============================*/
.footer {
  padding-top: 60px;
  padding-bottom: 15px;
}
@media (min-width: 1080px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: rgb(223, 223, 223);
  }
}

@media (min-width: 1080px) {
  .footer__inner {
    max-width: 1200px;
  }
}

@media (min-width: 1080px) {
  .footer__content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.footer__sns {
  display: flex;
  gap: 21.5px;
  justify-content: center;
  flex-direction: row;
}
@media (min-width: 1080px) {
  .footer__sns {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
  }
}

.footer__nav {
  display: none;
}
@media (min-width: 1080px) {
  .footer__nav {
    display: flex;
    flex-direction: row;
    border-right: 1px solid rgb(145, 145, 145);
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  padding-left: 10px;
  border-right: 1px solid rgb(145, 145, 145);
}
.footer__nav-list:last-child {
  border-right: none;
}

.footer__nav-title {
  font-weight: 700;
}

.footer__nav-works-tile {
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}
.footer__nav-works-tile a {
  font-weight: bold;
}

.footer__nav-link {
  display: flex;
  flex-direction: column;
}
.footer__nav-link a {
  display: inline-block;
  font-size: 12px;
  padding-left: 13px;
  position: relative;
  transition: all 0.3s ease;
}
.footer__nav-link a::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  background: url(../img/link-arrow.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.footer__nav-link a:hover {
  opacity: 0.5;
}

@media (min-width: 1080px) {
  .footer__sns-item img {
    width: 113px;
  }
}

.footer__company {
  text-align: center;
  margin-top: 45px;
}
@media (min-width: 1080px) {
  .footer__company {
    text-align: left;
    margin-top: 0;
    border-right: 1px solid rgb(145, 145, 145);
    padding-right: 20px;
  }
}

.footer__company-image img {
  width: 300px;
}
@media (min-width: 1080px) {
  .footer__company-image img {
    width: 350px;
  }
}

.footer__company-info {
  margin-top: 3px;
}
.footer__company-info p {
  font-size: 12px;
}

.copyright__content {
  margin-top: 72px;
  text-align: center;
}
@media (min-width: 1080px) {
  .copyright__content {
    text-align: right;
  }
}

.copyright {
  font-size: 12px;
}

/*==============================
cominng-soonページ
==============================*/
.cominng-soon {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (min-width: 1080px) {
  .cominng-soon {
    padding-top: 120px;
    padding-bottom: 200px;
  }
}

.cominng-soon__main {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.cominng-soon__text {
  margin-top: 30px;
}

/*==============================
contactページ
==============================*/
.contact-form {
  margin-top: 60px;
}

.contact__attention {
  margin-left: auto;
  margin-right: auto;
}

.contact-form__dt {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.required-tag {
  display: block;
  background-color: #fe4e4d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  width: 48px;
  font-weight: 700;
  text-align: center;
  margin-left: 10px;
}

.contact-step {
  margin-top: 100px;
}
@media (max-width: 1079px) {
  .contact-step {
    margin-top: 40px;
  }
}

.contact-step__content {
  display: flex;
  justify-content: space-between;
}

.contact-step__item {
  padding: 8px 0;
  text-align: center;
  min-width: 250px;
  -webkit-clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
          clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  font-weight: bold;
}
.contact-step__item:nth-of-type(1) {
  background: #eaeaea;
}
.contact-step__item:nth-of-type(2) {
  background: #dddada;
}
.contact-step__item:nth-of-type(3) {
  background: #c1c1c1;
}
@media (max-width: 1079px) {
  .contact-step__item {
    min-width: 100px;
    font-size: 12px;
  }
}

/*==============================
フッターコンタクト
==============================*/
.cominng-soon__contact {
  padding-top: 124px;
  padding-bottom: 108px;
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}
@media (max-width: 1079px) {
  .cominng-soon__contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cominng-soon__contact__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1079px) {
  .cominng-soon__contact__content {
    flex-direction: column;
  }
}

.cominng-soon__contac-left p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cominng-soon__contac-right {
  padding: 41px 60px;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 1079px) {
  .cominng-soon__contac-right {
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.cominng-soon__contac-tell {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cominng-soon__contac-tell img {
  width: 31px;
}
.cominng-soon__contac-tell a {
  font-size: 38px;
  font-weight: 700;
  color: #335f84;
}
.cominng-soon__contac-tell p {
  font-size: 14px;
  color: #335f84;
}

.cominng-soon__contac-tell-content {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.cominng-soon__contac-mail {
  text-align: center;
  margin-top: 10px;
}
.cominng-soon__contac-mail a {
  background-color: #f2f2f2;
  font-size: 21px;
  font-weight: 700;
  color: #335f84;
  padding: 30px 70px;
  display: inline-block;
  transition: all 0.3s ease;
}
.cominng-soon__contac-mail a:hover {
  opacity: 0.5;
}
.cominng-soon__contac-mail a img {
  width: 31px;
}
@media (max-width: 1079px) {
  .cominng-soon__contac-mail {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/*==============================
to-top
==============================*/
.to-top {
  position: fixed;
  bottom: 100px;
  right: 15px;
}
@media (min-width: 1080px) {
  .to-top {
    right: 60px;
  }
}

.to-top__img img {
  width: 40px;
}
@media (min-width: 1080px) {
  .to-top__img img {
    width: 50px;
  }
}

/*==============================
sub-page
==============================*/
.pubpage-content {
  margin-bottom: 100px;
}

.sub-page__heading {
  margin-top: 30px;
}

.sub-page__head {
  background: #e8e8e8;
  text-align: center;
  padding: 18px 0;
}

.sub-page__head-text {
  font-weight: bold;
  font-size: 32px;
}

.page-nation {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 1079px) {
  .page-nation {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.page-nation a {
  font-size: 12px;
  text-decoration: underline;
}
.page-nation a:hover {
  opacity: 0.5;
}
.page-nation img {
  width: 6px;
  height: 10px;
}
.page-nation p {
  font-size: 12px;
}

/*==============================
works-page__content
==============================*/
.works-page__content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 1079px) {
  .works-page__content {
    max-width: 100%;
    margin-top: 60px;
  }
}

.works-page__item {
  display: flex;
  border: 1px solid rgb(196, 196, 196);
}
@media (max-width: 1079px) {
  .works-page__item {
    flex-direction: column-reverse;
  }
}

.works-page__texts {
  background: #f3f2f2;
  padding: 17px 32px;
  width: 50%;
}
@media (max-width: 1079px) {
  .works-page__texts {
    width: 100%;
  }
}

.works-page__title {
  font-size: 21px;
  font-weight: bold;
}

.works-page__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}
@media (max-width: 1079px) {
  .works-page__links {
    margin-top: 10px;
  }
}

.works-page__link {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.works-page__link::before {
  content: "";
  position: absolute;
  background: url(../img/link-arrow.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 10px;
}
.works-page__link:hover {
  opacity: 0.5;
}

.works-page__img {
  width: 50%;
}
@media (max-width: 1079px) {
  .works-page__img {
    width: 100%;
  }
}
.works-page__img img {
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==============================
products
==============================*/
.products__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1079px) {
  .products__links {
    justify-content: center;
    gap: 15px;
  }
}

.products__link {
  font-weight: bold;
  text-decoration: underline;
}
.products__link:hover {
  opacity: 0.5;
}

.products__content {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.products-item {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1079px) {
  .products-item {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.products-item__texts {
  width: 470px;
}
@media (max-width: 1079px) {
  .products-item__texts {
    width: 100%;
  }
}

.products-item__title,
.company__item-title,
.entry-texts__title {
  padding-left: 15px;
  font-weight: bold;
  font-size: 21px;
  position: relative;
}
.products-item__title::before,
.company__item-title::before,
.entry-texts__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 30px;
  background: #000;
}

.products-item__main-text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1079px) {
  .products-item__main-text {
    font-size: 16px;
  }
}

.products-item__description {
  margin-top: 40px;
}
@media (max-width: 1079px) {
  .products-item__description {
    margin-top: 20px;
  }
}

.products-item__img {
  width: 343px;
}
@media (max-width: 1079px) {
  .products-item__img {
    width: 100%;
  }
}
/*==============================
company
==============================*/
.company__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.company-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 40px;
}

.company-table__row {
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.company-table__title {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 12px;
  font-weight: bold;
  font-size: 18px;
  width: 90px;
  text-align: left;
  white-space: nowrap;
}

.company-table__item {
  padding-top: 15px;
  padding-bottom: 15px;
}

.company__office img {
  width: 300px;
  margin-top: 8px;
}
.company__office:nth-of-type(2) {
  margin-top: 40px;
}

.company-greeting__conetnt {
  display: flex;
  flex-direction: row-reverse;
  gap: 76px;
  margin-top: 40px;
  align-items: center;
}
@media (max-width: 1079px) {
  .company-greeting__conetnt {
    flex-direction: column;
    gap: 20px;
  }
}

.company__greeting-texts {
  width: 600px;
}
@media (max-width: 1079px) {
  .company__greeting-texts {
    width: 100%;
  }
}

.company-greeting__title {
  font-size: 21px;
  font-weight: bold;
}

.company-greeting__message {
  margin-top: 10px;
}

.company-greeting__name {
  margin-top: 10px;
  font-size: 21px;
  font-weight: bold;
}

.company__greeting-img img {
  width: 220px;
  height: 273px;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-greeting__maji {
  text-align: center;
  margin-top: 30px;
}
.company-greeting__maji p {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #a6cdfa 60%);
}
@media (max-width: 1079px) {
  .company-greeting__maji p {
    font-size: 21px;
  }
}

/*==============================
sdpc
==============================*/
.sdpc__mv {
  padding-bottom: 110px;
}
@media (max-width: 1079px) {
  .sdpc__mv {
    padding-bottom: 60px;
  }
}
.sdpc__mv img {
  width: 100%;
}

.sdpc__concept {
  padding-top: 90px;
  padding-bottom: 90px;
  background: url(../img/sdpc-concept-bg.png) no-repeat center center/cover;
}

.sdpc__concept-texts {
  width: 588px;
}
@media (max-width: 1079px) {
  .sdpc__concept-texts {
    width: 100%;
  }
}

.sdpc__concept-main {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 1079px) {
  .sdpc__concept-main {
    font-size: 21px;
  }
}

.sdpc__concept-text {
  margin-top: 22px;
}

.sdpc__about {
  padding-top: 110px;
  padding-bottom: 110px;
}

.sdpc__about-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1079px) {
  .sdpc__about-inner {
    flex-direction: column;
  }
}

.sdpc__about-left {
  width: 443px;
}
@media (max-width: 1079px) {
  .sdpc__about-left {
    width: 100%;
  }
}

.sdpc__about-title-en {
  font-size: 32px;
  font-weight: bold;
}
.sdpc__about-title-en span {
  color: #b78504;
  font-weight: bold;
}

.sdpc__about-title-ja {
  font-size: 20px;
  font-weight: bold;
}

.sdpc__about-texts {
  margin-top: 44px;
}
@media (max-width: 1079px) {
  .sdpc__about-texts {
    margin-top: 20px;
  }
}

.sdpc__about-img img {
  width: 400px;
}
@media (max-width: 1079px) {
  .sdpc__about-img img {
    width: 100%;
  }
}

.sdpc__message {
  padding-top: 110px;
  padding-bottom: 110px;
  background: url(../img/sdpc-message-bg.png) no-repeat center center/cover;
  margin-bottom: 200px;
  color: #fff;
}

.sdpc__message-title {
  font-size: 32px;
  font-weight: bold;
}

.sdpc__message-text {
  width: 560px;
  margin-top: 25px;
}
@media (max-width: 1079px) {
  .sdpc__message-text {
    width: 100%;
  }
}

/*==============================
entry
==============================*/
.entry-texts__text {
  margin-top: 20px;
  font-weight: bold;
}

.entry__table {
  margin-top: 30px;
}

.entry-table {
  text-align: left;
  width: 100%;
}
.entry-table tr {
  display: flex;
  flex-direction: row;
  gap: 90px;
  border-bottom: 1px solid #000;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 1079px) {
  .entry-table tr {
    gap: 10px;
  }
}
.entry-table tr th {
  font-size: 18px;
  font-weight: bold;
  width: 90px;
}
@media (max-width: 1079px) {
  .entry-table tr th {
    font-size: 16px;
  }
}
.entry-step__title {
  margin-top: 30px;
}

.entry-step__title__content {
  margin-top: 30px;
}

.entry-label {
  background: #fff !important;
}

.entry-radio {
  margin-top: 8px !important;
}

/*==============================
recruit
==============================*/
.recruit__not-text {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

/*==============================
results
==============================*/
.results__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 100px 86px;
}
@media (max-width: 1079px) {
  .results__items {
    flex-direction: column;
    gap: 60px;
  }
}

.results__item {
  display: block;
  width: calc(33.3% - 57.3333333333px);
}
@media (max-width: 1079px) {
  .results__item {
    width: 100%;
  }
}

@media (max-width: 1079px) {
  .results__image img {
    height: 230px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.results__tags {
  margin-top: 10px;
}

/*==============================
results-page
==============================*/
.results-page__content {
  display: flex;
  gap: 75px;
  align-items: center;
}
@media (max-width: 1079px) {
  .results-page__content {
    flex-direction: column;
  }
}

.results-page__images {
  width: 60%;
}
@media (max-width: 1079px) {
  .results-page__images {
    width: 100%;
  }
}

.results-page__sub-images {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
}
@media (max-width: 1079px) {
  .results-page__sub-images {
    gap: 30px;
    justify-content: flex-start;
  }
}

.results-page__sub-image img {
  width: 250px;
}

.results-page__sub-image__text {
  margin-top: 5px;
  font-weight: bold;
}

.results-page__texts {
  width: 40%;
}
@media (max-width: 1079px) {
  .results-page__texts {
    width: 100%;
  }
}

.results-page__title {
  font-size: 21px;
  font-weight: bold;
}

.results-page__tags {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.results-page__info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.4;
}

.results-page__dl {
  display: flex;
}

.results-page__dt {
  font-weight: 500;
}

.results-page__dd {
  font-weight: 500;
}

.results-page__text {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.modal-content img {
  position: absolute;
  width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagination {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}

.pagination-link {
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #000;
  transition: all 0.3s ease;
  font-weight: bold;
  width: 50px;
  height: 50px;
}
.pagination-link:hover {
  background: #000;
  color: #fff;
}
.pagination-link.is-active {
  background: #000;
  color: #fff;
}

.results-page__kouji {
  font-weight: bold;
}

.kouji-sub {
  font-weight: normal;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */