/* stylelint-disable number-max-precision */

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

small {
  font-size: 0.75em;
}

pre {
  white-space: pre-wrap;
}

input[type="submit"] {
  -webkit-appearance: none;
}

/* バウンススクロール時のカラースタイル */
/* body::before,
body::after {
  position: fixed;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 50%;
  content: "";
}

body::before {
  top: 0;
  background-color: var(--wp--preset--color--theme-base);
}

body::after {
  bottom: 0;
  background-color: var(--wp--preset--color--theme-base);
} */

/* contact
=============================================================*/
.f-contact {
  padding: 5rem 0 6rem;
  background-color: var(--wp--preset--color--theme-main);
}
.f-contact__inner {
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .f-contact__inner {
    width: 96%;
  }
}
.f-contact__head {
  display: flex;
}
@media only screen and (max-width: 1200px) {
  .f-contact__head {
    flex-direction: column;
    align-items: center;
  }
}
.f-contact__heading {
  text-indent: 1rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  .f-contact__heading {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .f-contact__heading {
    font-size: 2.4rem;
  }
}
.f-contact__heading span {
  letter-spacing: 0.0625em;
  margin-left: -0.0625em;
}
@media only screen and (max-width: 1200px) {
  .f-contact__heading {
    text-align: center;
  }
}
.f-contact__head-text {
  margin-left: auto;
  color: #fff;
  line-height: 1.6em;
}
@media only screen and (max-width: 1200px) {
  .f-contact__head-text {
    margin: 4rem 0;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .f-contact__head-text {
    margin: 2rem 0;
    font-size: 1.4rem;
  }
}
.f-contact__main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #fff;
  margin-top: 4rem;
  padding: 4rem;
}
@media only screen and (max-width: 1200px) {
  .f-contact__main {
    margin: 0 auto;
    max-width: 500px;
    align-items: center;
    flex-direction: column;
    padding: 4rem 4%;
  }
}
.f-contact__tel {
  width: 60%;
  padding-top: 1rem;
  padding-right: 3rem;
  transition: all ease 0.2s;
}
.f-contact__tel:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .f-contact__tel {
    width: 100%;
    max-width: 400px;
    padding: 0;
  }
}
.f-contact__tel-item {
  display: block;
  width: 100%;
  height: auto;
}
.f-contact__mail {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  transition: all ease 0.2s;
}
.f-contact__mail:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
  .f-contact__mail {
    width: 100%;
    max-width: 400px;
    margin: 2rem 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .f-contact__mail {
    font-size: 1.6rem;
  }
}
.f-contact__mail-icon {
  height: 1.8em;
  width: auto;
}
.f-contact__mail-text {
  margin-left: 0.5em;
  white-space: nowrap;
}

/*  single
============================================================= */
.sg-case {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .sg-case {
    max-width: 620px;
  }
}

@media only screen and (max-width: 768px) {
  .sg-case {
    max-width: 300px;
    font-size: 1.4rem;
  }
}

.sg-case__item-grp {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2rem);
  margin: -4rem 0 0 -2rem;
  list-style: none;
}

@media only screen and (max-width: 992px) {
  .sg-case__item-grp--center {
    justify-content: center;
  }
}

.sg-case__item {
  width: 33.3333333333%;
  padding-left: 2rem;
  margin-top: 4rem;
}

@media only screen and (max-width: 992px) {
  .sg-case__item {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .sg-case__item {
    width: 100%;
  }
}

.sg-case__anchor {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 75%;
  text-decoration: none;
}

.sg-case__anchor:hover {
  opacity: 0.8;
}

.sg-case__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-case__caption {
  margin: 1em 0 0;
  font-size: 1.4rem;
  line-height: 1.4em;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  .sg-case__caption {
    text-align: center;
  }
}

.sg-prev-next {
  display: flex;
  justify-content: space-between;
  line-height: 1.4em;
}

@media only screen and (min-width: 1201px) {
  .sg-prev-next {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .sg-prev-next {
    font-size: calc(1.5rem + ((1vw - 0.993rem) * (0.4830917874)));
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .sg-prev-next {
    font-size: calc(1.4rem + ((1vw - 0.769rem) * (0.4484304933)));
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .sg-prev-next {
    font-size: calc(1.3rem + ((1vw - 0.577rem) * (0.5235602094)));
  }
}

@media only screen and (min-width: 321px) and (max-width: 576px) {
  .sg-prev-next {
    font-size: calc(1.2rem + ((1vw - 0.321rem) * (0.3921568627)));
  }
}

@media only screen and (max-width: 320px) {
  .sg-prev-next {
    font-size: 1.2rem;
  }
}

.sg-prev-next span:first-child {
  padding-right: 0.5em;
  text-align: left;
}

.sg-prev-next span:last-child {
  padding-left: 0.5em;
  text-align: right;
}

.sg-single__date {
  margin-bottom: 1rem;
}

.sg-single__content p {
  line-height: 1.6em;
  text-align: justify;
}

.sg-single__content a {
  color: var(--wp--preset--color--theme-main);
  text-decoration: underline;
}

.sg-single__content img {
  max-width: 100%;
  height: auto;
}

.sg-tags {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .sg-tags {
    width: 92%;
  }
}

/*  category
============================================================= */
.cat-child__item-grp {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: calc(100% + 1.5rem);
  margin: -1rem 0 0 -1.5rem;
  font-size: 1.6rem;
  list-style: none;
}

@media only screen and (max-width: 768px) {
  .cat-child__item-grp {
    font-size: 1.4rem;
  }
}

.cat-child__item {
  width: 20%;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 1200px) {
  .cat-child__item {
    width: 25%;
  }
}

@media only screen and (max-width: 992px) {
  .cat-child__item {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 768px) {
  .cat-child__item {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 576px) {
  .cat-child__item {
    width: 50%;
  }
}

.cat-child__anchor {
  display: block;
  width: 100%;
  height: 100%;
  /* 右に投稿数のスペースを確保する */
  padding: 0.75em 1.75em 0.75em 0.75em;
  font-feature-settings: "palt";
  color: var(--wp--preset--color--theme-sub-1);
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cat-child__anchor:hover {
  opacity: 0.8;
}

.cat-child__text-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.cat-child__text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-child__number {
  position: absolute;
  bottom: 1px;
  left: 100%;
  display: inline-block;
  font-size: 0.8em;
  color: #ccc;
}

.cat-latest {
  width: 100%;
  margin: 0 auto 8rem;
  font-size: 1.6rem;
}

@media only screen and (max-width: 992px) {
  .cat-latest {
    max-width: 620px;
  }
}

@media only screen and (max-width: 768px) {
  .cat-latest {
    max-width: 300px;
    font-size: 1.4rem;
  }
}

.cat-latest__item-grp {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: calc(100% + 2rem);
  margin: -1rem 0 0 -2rem;
  list-style: none;
}

.cat-latest__item {
  width: 33.3333333333%;
  padding-left: 2rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 992px) {
  .cat-latest__item {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .cat-latest__item {
    width: 100%;
  }
}

.cat-latest__thumbnail-anchor {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  color: inherit;
  text-decoration: none;
  transition: opacity ease 0.4s;
}

.cat-latest__thumbnail-anchor:hover {
  color: inherit;
  opacity: 0.8;
}

.cat-latest__item-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cat-latest__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-latest__date {
  padding-top: 1.5rem;
}

.cat-latest__text-anchor {
  display: block;
  padding: 1.5rem 0;
  color: inherit;
  text-align: justify;
  text-decoration: none;
}

.cat-latest__text-anchor:hover {
  opacity: 0.8;
}

.cat-latest__text-anchor:hover .cat-latest__title {
  text-decoration: underline;
}

.cat-latest__title {
  display: block;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--wp--preset--color--theme-sub-1);
}

.cat-latest__title-none {
  padding-left: 2rem;
}

.cat-latest__excerpt {
  margin-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.4em;
}

.cat-latest__taxonomy {
  margin: auto 0 0;
}

.cat-notice {
  width: 100%;
}

.cat-notice__date {
  margin-bottom: 1rem;
}

.cat-notice__excerpt {
  line-height: 1.6em;
  text-align: justify;
}

@media only screen and (max-width: 1200px) {
  .cat-notice__excerpt {
    font-size: 1.4rem;
  }
}

.cat-notice__item:not(:first-child) {
  margin-top: 6rem;
}

.cat-notice__more {
  margin-top: 6rem;
  text-align: right;
}

@media only screen and (max-width: 1200px) {
  .cat-notice__more {
    font-size: 1.4rem;
  }
}

/*  index
============================================================= */
.idx-blog {
  padding: 8rem 0;
  background-color: var(--wp--preset--color--theme-bcg-1);
}

.idx-blog__inner {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .idx-blog__inner {
    width: 92%;
    max-width: 635px;
    padding: 0;
  }
}

.idx-blog__heading {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .idx-blog__heading {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .idx-blog__heading {
    font-size: 2.4rem;
  }
}

.idx-blog__heading span {
  margin-left: -0.0625em;
  letter-spacing: 0.0625em;
}

.idx-blog__item-grp {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: calc(100% + 1.5rem);
  margin: 4rem 0 0 -1.5rem;
  list-style: none;
}

.idx-blog__item-grp--center {
  /* 投稿数が３件より少ない場合 */
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .idx-blog__item-grp {
    justify-content: center;
  }
}

.idx-blog__item {
  width: 33.3333333333%;
  min-height: 220px;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

@media only screen and (max-width: 1200px) {
  .idx-blog__item {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .idx-blog__item {
    width: 100%;
    max-width: 325px;
  }
}

.idx-blog__anchor {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  color: initial;
  text-decoration: none;
  background-color: var(--wp--preset--color--theme-base);
}

.idx-blog__anchor:hover {
  opacity: 0.8;
}

.idx-blog__title {
  margin-top: 0.5em;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  line-height: 1.4em;
  color: var(--wp--preset--color--theme-sub-1);
  text-align: justify;
}

.idx-blog__excerpt {
  margin-top: 0.5em;
  font-size: 1.4rem;
  line-height: 1.4em;
  text-align: justify;
}

.idx-blog__btn-wrapper {
  text-align: center;
}

.idx-case {
  margin: 8rem 0 0;
}

@media only screen and (min-width: 1201px) {
  .idx-case--part {
    margin: 16rem 0 0;
  }
}

.idx-case__inner {
  display: flex;
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

.idx-case__inner--row-reverse {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 1200px) {
  .idx-case__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 92%;
    max-width: 640px;
  }
}

.idx-case__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em 0.5em;
  background-color: var(--wp--preset--color--theme-main);
}

.idx-case__heading {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--wp--preset--color--theme-base);
}

.idx-case__heading span {
  margin-left: -0.0625em;
  letter-spacing: 0.0625em;
}

@media only screen and (max-width: 1200px) {
  .idx-case__desktop {
    display: none;
  }
}

.idx-case__mobile {
  display: none;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .idx-case__mobile {
    display: block;
  }
}

.idx-case__item-grp {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: calc(67.77% + 1.5rem);
  padding: 0 4rem;
  margin: 1rem 0 1rem -1.5rem;
  list-style: none;
}

@media only screen and (max-width: 1200px) {
  .idx-case__item-grp {
    width: calc(100% + 1.5rem);
    padding: 0;
    margin: 0 0 0 -1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .idx-case__item-grp {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.idx-case__item {
  width: 33.3333333333%;
  max-width: 195px;
  padding: 0 0 0 1.5rem;
}

@media only screen and (max-width: 1200px) {
  .idx-case__item {
    max-width: 255px;
    margin: 4rem 0 0;
  }
}

@media only screen and (max-width: 768px) {
  .idx-case__item {
    width: 100%;
  }
}

.idx-case__item-title {
  margin-bottom: 0.5em;
  font-weight: 500;
  color: var(--wp--preset--color--theme-sub-1);
  letter-spacing: 0.0625em;
}

.idx-case__item-img-wrapper,
.idx-case__item-anchor {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.idx-case__item-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idx-case__item-caption {
  padding: 0.5em;
  font-size: 1.2rem;
  line-height: 1.6em;
}

.idx-concept {
  margin: 8rem 0 0;
}

.idx-concept__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 992px;
  padding: 0 8rem;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .idx-concept__inner {
    flex-direction: column;
    width: 92%;
    padding: 0;
  }
}

.idx-concept__heading {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8em;
  color: var(--wp--preset--color--theme-sub-1);
  text-align: center;
  letter-spacing: 0.0625em;
  white-space: nowrap;
}

.idx-concept__text {
  padding-left: 8rem;
  font-size: 1.4rem;
  line-height: 2em;
  text-align: justify;
}

@media only screen and (max-width: 1200px) {
  .idx-concept__text {
    padding: 0;
    margin: 4rem 0 0;
  }
}

.idx-sdgs {
  padding: 8rem 0;
}

.idx-sdgs__inner {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .idx-sdgs__inner {
    width: 92%;
  }
}

.idx-sdgs__heading {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .idx-sdgs__heading {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .idx-sdgs__heading {
    font-size: 2.4rem;
  }
}

.idx-sdgs__heading span {
  margin-left: -0.0625em;
  letter-spacing: 0.0625em;
}

.idx-sdgs__heading span {
  display: inline-block;
}

.idx-sdgs__item-grp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 1.5rem);
  margin-top: 4.5rem;
  margin-left: -1.5rem;
  list-style: none;
}

@media only screen and (max-width: 768px) {
  .idx-sdgs__item-grp {
    width: calc(100% + 0.8rem);
    margin-left: -0.8rem;
  }
}

.idx-sdgs__item {
  width: 20%;
  padding-left: 1.5rem;
  margin: 1.5rem 0 0;
}

@media only screen and (max-width: 768px) {
  .idx-sdgs__item {
    width: 33.3333333333%;
    padding-left: 0.8rem;
  }
}

.idx-sdgs__item-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.idx-sdgs__item-frame--etc {
  background-color: transparent;
}

.idx-sdgs__item-illust {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.idx-sdgs__item-text {
  margin-top: 0.5em;
  font-size: 1.6rem;
  text-align: center;
}

.idx-support {
  margin: 8rem 0 0;
  background-color: var(--wp--preset--color--theme-bcg-2);
}

.idx-support__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 992px;
  padding: 2rem 0;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .idx-support__inner {
    flex-direction: column;
    width: 92%;
    padding: 4rem 0;
  }
}

.idx-support__img-wrapper {
  width: 35%;
  max-width: 400px;
}

@media only screen and (max-width: 1200px) {
  .idx-support__img-wrapper {
    width: 100%;
    max-width: 300px;
  }
}

.idx-support__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idx-support__heading {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6em;
  white-space: nowrap;
}

.idx-support__heading span {
  margin-right: -0.0625em;
  letter-spacing: 0.0625em;
}

@media only screen and (max-width: 1200px) {
  .idx-support__heading {
    text-align: center;
  }
}

.idx-support__text {
  width: 65%;
  padding: 0 8rem 0 4rem;
  font-size: 1.4rem;
  line-height: 1.6em;
  text-align: justify;
}

@media only screen and (max-width: 1200px) {
  .idx-support__text {
    width: 100%;
    padding: 0;
    margin: 4rem 0 0;
  }
}

.idx-work {
  padding: 8rem 0;
  margin: 8rem 0 0;
  background-color: var(--wp--preset--color--theme-main);
}

.idx-work__inner {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .idx-work__inner {
    width: 92%;
  }
}

.idx-work__heading {
  font-size: 4rem;
  font-weight: 500;
  color: var(--wp--preset--color--theme-base);
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .idx-work__heading {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .idx-work__heading {
    font-size: 2.4rem;
  }
}

.idx-work__heading span {
  margin-left: -0.0625em;
  letter-spacing: 0.0625em;
}

.idx-work__item-grp {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1.5rem);
  margin-left: -1.5rem;
  list-style: none;
}

.idx-work__item {
  width: 20%;
  padding-left: 1.5rem;
  margin: 6rem 0 0;
}

@media only screen and (max-width: 1200px) {
  .idx-work__item {
    width: 25%;
  }
}

@media only screen and (max-width: 768px) {
  .idx-work__item {
    width: 50%;
  }
}

.idx-work__item-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background-color: var(--wp--preset--color--theme-base);
}

.idx-work__item-frame--etc {
  background-color: transparent;
}

.idx-work__item-illust {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 60%;
  height: 60%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.idx-work__item-text {
  margin-top: 0.5em;
  font-size: 1.6rem;
  color: var(--wp--preset--color--theme-base);
  text-align: center;
}

/*  page
============================================================= */
.pg-700w {
  margin: 12rem auto 0;
}

@media only screen and (max-width: 768px) {
  .pg-700w {
    margin: 8rem auto 0;
  }
}

.pg-700w__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-700w__inner {
    width: 92%;
  }
}

.pg-700w__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-700w__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-about-work {
  width: 100%;
  max-width: 992px;
  padding: 8rem 0;
  margin: 8rem auto 0;
  background-color: var(--wp--preset--color--theme-main);
}

@media only screen and (max-width: 768px) {
  .pg-about-work {
    padding: 4rem 0;
    margin: 4rem auto 0;
  }
}

.pg-about-work__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-about-work__inner {
    width: 92%;
  }
}

.pg-about-work__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-about-work__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-company-history {
  margin: 12rem auto 0;
}

@media only screen and (max-width: 768px) {
  .pg-company-history {
    margin: 8rem auto 0;
  }
}

.pg-company-history__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-company-history__inner {
    width: 92%;
  }
}

.pg-company-history__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-company-history__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-company-message {
  margin: 12rem auto 0;
}

@media only screen and (max-width: 768px) {
  .pg-company-message {
    margin: 8rem auto 0;
  }
}

.pg-company-message__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-company-message__inner {
    width: 92%;
  }
}

.pg-company-message__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-company-message__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-company-message__text {
  width: 100%;
  margin-top: 8rem;
  font-size: 1.4rem;
  line-height: 2em;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  .pg-company-message__text {
    margin-top: 4rem;
  }
}

.pg-company-message__text p {
  margin-top: 1em;
}

.pg-company-message__text strong {
  font-weight: 400;
  color: rgb(200 0 0);
}

.pg-company-message__signature {
  margin-top: 8rem;
  line-height: 2em;
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .pg-company-message__signature {
    margin-top: 4rem;
    font-size: 1.4rem;
  }
}

.pg-company-overview {
  margin: 12rem auto 0;
}

@media only screen and (max-width: 768px) {
  .pg-company-overview {
    margin: 8rem auto 0;
  }
}

.pg-company-overview__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-company-overview__inner {
    width: 92%;
  }
}

.pg-company-overview__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-company-overview__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-company-sdgs {
  margin: 12rem auto 0;
}

@media only screen and (max-width: 768px) {
  .pg-company-sdgs {
    margin: 8rem auto 0;
  }
}

.pg-company-sdgs__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .pg-company-sdgs__inner {
    width: 92%;
  }
}

.pg-company-sdgs__content-wrapper {
  margin-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .pg-company-sdgs__content-wrapper {
    margin-top: 4rem;
  }
}

.pg-contact {
  margin: 8rem auto;
}

.pg-contact__inner {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  .pg-contact__inner {
    width: 92%;
  }
}

.pg-contact__text {
  line-height: 1.6em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .pg-contact__text {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 577px) {
  .pg-contact__text span {
    display: inline-block;
  }
}

.pg-contact__tel-anchor {
  display: block;
  width: 80%;
  max-width: 240px;
  margin: 4rem auto 0;
}

.pg-contact__tel {
  display: block;
  width: 100%;
  height: auto;
}

.pg-heading {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  text-indent: 0.0625em;
  letter-spacing: 0.0625em;
}

@media only screen and (max-width: 768px) {
  .pg-heading {
    font-size: 2rem;
  }
}

.pg-heading span {
  display: inline-block;
}

.pg-heading--white {
  color: var(--wp--preset--color--theme-base);
}

.pg-tbl {
  width: 100%;
}

.pg-tbl th,
.pg-tbl td {
  padding: 1em;
  font-weight: 400;
  line-height: 1.6em;
  border: solid 1px #999;
}

@media only screen and (max-width: 768px) {
  .pg-tbl th,
  .pg-tbl td {
    padding: 1em 0.5em;
    font-size: 1.4rem;
  }
}

.pg-tbl th {
  width: 25%;
  vertical-align: middle;
  text-align: left;
}

.pg-tbl th > span {
  white-space: nowrap;
}

.pg-tbl td {
  width: 75%;
  text-align: justify;
}

.pg-tbl--sdgs h3 {
  margin-bottom: 1em;
  font-size: 1.4rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .pg-tbl--sdgs h3 {
    font-size: 1.2rem;
  }
}

.pg-tbl--sdgs ul {
  padding-left: 1em;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .pg-tbl--sdgs ul {
    font-size: 1.2rem;
  }
}

.pg-tbl--work {
  border-spacing: 1.5rem;
  border-collapse: separate;
  background-color: var(--wp--preset--color--theme-base);
}

@media only screen and (max-width: 768px) {
  .pg-tbl--work {
    border-spacing: 0.8rem;
  }
}

.pg-tbl--work th,
.pg-tbl--work td {
  border: none;
}

.pg-tbl--work th {
  padding: 0;
  background-color: var(--wp--preset--color--theme-base);
}

.pg-tbl--work td {
  background-color: var(--wp--preset--color--theme-bcg-2);
}

.pg-tbl--horizontal th,
.pg-tbl--horizontal td {
  border-right: none;
  border-left: none;
}

.pg-tbl--horizontal th {
  padding: 1em 0;
}

.pg-tbl--horizontal th > img {
  display: block;
  width: 100%;
  height: auto;
}

.pg-tbl--horizontal td {
  padding: 1em 0.5em 1em 1.5em;
}

/*  part
============================================================= */
.breadcrumbs {
  width: 100%;
  max-width: 992px;
  padding: 1rem 0;
  margin: 1rem auto;
  overflow: auto;
  overflow: auto hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .breadcrumbs {
    padding: 1rem 4%;
    font-size: 1.4rem;
  }
}

.breadcrumbs ul {
  display: block;
  list-style: none;
}

.breadcrumbs li {
  position: relative;
  display: inline-block;
  vertical-align: text-bottom;
}

.breadcrumbs li:not(:first-child) {
  padding-left: 1.2em;
}

.breadcrumbs li:not(:first-child)::before {
  position: absolute;
  top: 55%;
  left: 0.4em;
  display: block;
  width: 0.5656em;
  height: 0.5656em;
  content: "";
  border-right: 2px solid var(--wp--preset--color--theme-border);
  border-bottom: 2px solid var(--wp--preset--color--theme-border);
  transform: translate(-2.828px, -50%) rotate(-45deg);
}

.breadcrumbs a {
  color: var(--wp--preset--color--theme-font);
  text-decoration: none;
}

.breadcrumbs a:hover {
  opacity: 0.8;
}

.breadcrumbs img {
  display: inline;
  width: auto;
  height: 1em;
  vertical-align: text-bottom;
}

.btn-more {
  display: block;
  width: 10rem;
  padding: 0.75em 0;
  margin: 4rem auto 0;
  color: var(--wp--preset--color--theme-sub-1);
  text-align: center;
  text-decoration: none;
  background-color: var(--wp--preset--color--theme-base);
  border: 2px solid var(--wp--preset--color--theme-sub-1);
  transition: all ease 0.4s;
}

.btn-more:hover {
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  opacity: 1;
}

.content-section {
  margin: 6rem auto;
}

.content-section__inner {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .content-section__inner {
    width: 92%;
  }
}

.header-heading {
  padding: 1.5em 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--wp--preset--color--theme-sub-1);
  text-align: center;
  background-color: var(--wp--preset--color--theme-bcg-2);
}

@media only screen and (max-width: 1200px) {
  .header-heading {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .header-heading {
    font-size: 2.4rem;
  }
}

.header-heading__inner {
  display: block;
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  font-feature-settings: "palt";
  white-space: nowrap;
}

@media only screen and (max-width: 1200px) {
  .header-heading__inner {
    width: 92%;
  }
}

.header-heading__text-wrapper {
  display: inline;
  padding-right: 0.5em;
  padding-left: 1.6em;
  letter-spacing: 0.1em;
  background-image: url("../images/leaf.png");
  background-repeat: no-repeat;
  background-position: left 60%;
  background-size: auto 0.9em;
}

.post-date {
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  color: #ccc;
}

.post-date img {
  width: auto;
  height: 1.1em;
  vertical-align: -10%;
}

.post-date time {
  margin: 0 0.5em;
  line-height: 1em;
}

.post-title {
  font-size: 2.4rem;
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid #ccc;
  line-height: 1.4em;
  text-align: justify;
}
@media only screen and (max-width: 864px) {
  .post-title {
    font-size: 2rem;
  }
}

.post-title a {
  text-decoration: none;
}

.post-title--qanda:not(:first-of-type) {
  margin-top: 8rem;
}

.qanda {
  width: 100%;
}

.qanda__question {
  display: flex;
  font-weight: 500;
}

.qanda__tag {
  flex-shrink: 0;
  height: 1.5em;
  width: 1.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  border-radius: 3px;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
}

.qanda__tag span {
  font-weight: 500;
}

.qanda__tag--question {
  background-color: #ec8a73;
}

.qanda__tag--question span {
  color: #fff;
  padding-bottom: 0.2em;
}

.qanda__tag--answer {
  background-color: #57bbff;
}

.qanda__tag--answer span {
  color: #fff;
}

.qanda__answer {
  margin-top: 2rem;
  display: flex;
  font-weight: 400;
}

.qanda__text {
  text-align: justify;
  line-height: 1.8em;
}

.qanda__text p:not(:first-child) {
  margin-top: 0.5em;
}

.sitetab {
  width: 100%;
  padding: 1rem 0 0;
  background-color: #777;
}

@media only screen and (max-width: 768px) {
  .sitetab {
    padding: 2% 0 0;
  }
}

.sitetab__inner {
  width: 96%;
  max-width: 992px;
  margin: 0 auto;
}

.sitetab__item-grp {
  display: flex;
  width: 100%;
  list-style: none;
}

.sitetab__item {
  width: 50%;
  text-align: center;
}

.sitetab__anchor {
  display: block;
  width: 100%;
  padding: 1em 0;
  font-size: 1.8rem;
  color: var(--wp--preset--color--theme-base);
  text-decoration: none;
  border-radius: 0.5rem 0.5rem 0 0;
}

@media only screen and (max-width: 768px) {
  .sitetab__anchor {
    font-size: 1.4rem;
  }
}

.sitetab__anchor:hover {
  color: #f7f7f7;
  opacity: 1;
}

.sitetab__anchor--current {
  color: var(--wp--preset--color--theme-main);
  background-color: var(--wp--preset--color--theme-base);
}

.sitetab__anchor--current:hover {
  color: var(--wp--preset--color--theme-main);
}

.swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 2400px;
  height: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .swiper {
    height: 0;
    padding-top: 56.25%;
  }
}

.swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --swiper-navigation-color: var(--wp--preset--color--theme-main);
  --swiper-pagination-color: var(--wp--preset--color--theme-main);
}

.taxonomy-list {
  font-size: 1.4rem;
}

.taxonomy-list__item-grp {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1rem);
  margin: -1rem 0 0 -1rem;
  list-style: none;
}

.taxonomy-list__item {
  padding: 1rem 0 0 1rem;
}

.taxonomy-list__btn {
  display: block;
  max-width: 10em;
  padding: 0.25em 0.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  color: var(--wp--preset--color--theme-base);
  white-space: nowrap;
  text-decoration: none;
  background-color: var(--wp--preset--color--theme-sub-1);
  border-radius: 5px;
}

.taxonomy-list__btn:hover {
  opacity: 0.8;
}

.taxonomy-list__btn--category {
  background-color: var(--wp--preset--color--theme-sub-1);
}

.taxonomy-list__btn--tag {
  background-color: var(--wp--preset--color--theme-main);
}

.work-icon {
  width: 100%;
  height: 100%;
  padding-top: 10%;
}

.work-icon__img-wrapper {
  position: relative;
  width: 75%;
  height: 0;
  padding-top: 60%;
  margin: 0 auto;
}

.work-icon__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-icon__label {
  margin: 1em 0 0.2em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .work-icon__label {
    font-size: 1.2rem;
  }
}

.wp-pagenavi {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: Roboto, sans-serif;
}

@media only screen and (min-width: 1201px) {
  .wp-pagenavi {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .wp-pagenavi {
    font-size: calc(1.9rem + ((1vw - 0.993rem) * (0.4830917874)));
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .wp-pagenavi {
    font-size: calc(1.8rem + ((1vw - 0.769rem) * (0.4484304933)));
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .wp-pagenavi {
    font-size: calc(1.7rem + ((1vw - 0.577rem) * (0.5235602094)));
  }
}

@media only screen and (min-width: 321px) and (max-width: 576px) {
  .wp-pagenavi {
    font-size: calc(1.6rem + ((1vw - 0.321rem) * (0.3921568627)));
  }
}

@media only screen and (max-width: 320px) {
  .wp-pagenavi {
    font-size: 1.6rem;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 0.25em 0.4em;
  margin: 2px;
  color: var(--wp--preset--color--theme-font);
  text-decoration: none;
  background-color: var(--wp--preset--color--theme-bcg-1);
  border: 1px solid #efefef;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: var(--wp--preset--color--theme-base);
  background-color: var(--wp--preset--color--theme-main);
}

.wp-pagenavi span.current {
  font-weight: bold;
}

.wpcf7 {
  width: 100%;
  max-width: 600px;
  margin: 8rem auto;
}

@media only screen and (max-width: 1200px) {
  .wpcf7 {
    width: 92%;
  }
}

.wpcf7 table,
.wpcf7 tbody,
.wpcf7 tr,
.wpcf7 th,
.wpcf7 td {
  display: block;
  width: 100%;
  text-align: left;
}

.wpcf7 tr:not(:first-child) {
  margin-top: 4rem;
}

.wpcf7 th {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5em;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .wpcf7 th {
    font-size: 1.4rem;
  }
}

.wpcf7 th .req {
  margin-left: auto;
  font-size: 0.8em;
  color: #c00;
  text-align: right;
}

.wpcf7 td {
  font-size: 1.8rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="password"],
.wpcf7 input[type="search"],
.wpcf7 input[type="number"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="range"],
.wpcf7 input[type="date"],
.wpcf7 input[type="month"],
.wpcf7 input[type="week"],
.wpcf7 input[type="time"],
.wpcf7 input[type="datetime"],
.wpcf7 input[type="datetime-local"],
.wpcf7 input[type="color"],
.wpcf7 textarea {
  display: block;
  width: 100%;
  padding: 0.7em;
  font-size: 1.8rem;
  color: var(--wp--preset--color--theme-border);
  background: var(--wp--preset--color--theme-base);
  background-image: linear-gradient(
    rgb(255 255 255 / 0%),
    rgb(255 255 255 / 0%)
  );
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

@media only screen and (max-width: 768px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="url"],
  .wpcf7 input[type="password"],
  .wpcf7 input[type="search"],
  .wpcf7 input[type="number"],
  .wpcf7 input[type="tel"],
  .wpcf7 input[type="range"],
  .wpcf7 input[type="date"],
  .wpcf7 input[type="month"],
  .wpcf7 input[type="week"],
  .wpcf7 input[type="time"],
  .wpcf7 input[type="datetime"],
  .wpcf7 input[type="datetime-local"],
  .wpcf7 input[type="color"],
  .wpcf7 textarea {
    font-size: 1.6rem;
  }
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="password"]:focus,
.wpcf7 input[type="search"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="range"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="month"]:focus,
.wpcf7 input[type="week"]:focus,
.wpcf7 input[type="time"]:focus,
.wpcf7 input[type="datetime"]:focus,
.wpcf7 input[type="datetime-local"]:focus,
.wpcf7 input[type="color"]:focus,
.wpcf7 textarea:focus {
  color: #222;
  outline: 0;
  border-color: var(--wp--preset--color--theme-font);
}

.wpcf7 select {
  max-width: 100%;
  height: 3em;
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.wpcf7 input[type="radio"]:focus,
.wpcf7 input[type="checkbox"]:focus {
  outline: thin dotted var(--wp--preset--color--theme-font);
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  margin-right: 0.5em;
}

.wpcf7 input[type="radio"] + label,
.wpcf7 input[type="checkbox"] + label {
  font-weight: 400;
}

.wpcf7-submit {
  display: inline-block;
  padding: 0.5em;
  margin: 40px auto 0;
  color: var(--wp--preset--color--theme-base);
  text-align: center;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
  cursor: pointer;
  background-color: var(--wp--preset--color--theme-main);
  border: none;
}

@media only screen and (min-width: 1201px) {
  .wpcf7-submit {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .wpcf7-submit {
    font-size: calc(1.9rem + ((1vw - 0.993rem) * (0.4830917874)));
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .wpcf7-submit {
    font-size: calc(1.8rem + ((1vw - 0.769rem) * (0.4484304933)));
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .wpcf7-submit {
    font-size: calc(1.7rem + ((1vw - 0.577rem) * (0.5235602094)));
  }
}

@media only screen and (min-width: 321px) and (max-width: 576px) {
  .wpcf7-submit {
    font-size: calc(1.6rem + ((1vw - 0.321rem) * (0.3921568627)));
  }
}

@media only screen and (max-width: 320px) {
  .wpcf7-submit {
    font-size: 1.6rem;
  }
}

.wpcf7-submit:hover {
  opacity: 0.8;
}

.wpcf7-submit:disabled {
  background: #ccc;
}

.wpcf7-spinner {
  display: block !important;
  margin: 1rem auto !important;
}

.wpcf7-acceptance > span {
  margin: 0;
  text-indent: -1.6em;
}

.wpcf7-acceptance {
  font-size: 1.4rem;
  line-height: 2em;
}

.wpcf7-footer {
  margin-top: 40px;
  text-align: center;
}

.wpcf7 form .wpcf7-response-output {
  width: 100%;
  padding: 0.5em !important;
  margin: 0 auto !important;
  line-height: 1.4em !important;
  text-align: center;
}

.wpcf7-not-valid-tip {
  margin-top: 0.2em;
  font-size: 1.4rem !important;
}

.wpcf7-captchac {
  width: 100px;
  height: auto;
  margin: 10px auto;
  text-align: center;
}

.wpcf7 input[type="text"].wpcf7-captchar {
  width: 8em;
  padding: 0.2em;
  margin: 0 auto;
  font-size: 1.6rem;
}

.captcha-wrapper {
  margin-bottom: 2rem;
  text-align: center;
}

.captcha-wrapper p {
  font-size: 1.4rem;
}
