@charset "UTF-8";

/*
 * このファイルは - 直 接 修 正 禁 止 - です。
 * ファイルを別途作成し、そのファイルに追加・修正してください。
*/
:root {
  --DEF: #333333;
  --MAIN: #0E8C62;
  --ACC: #2ECC48;
  --OTH: #666666;
  --GRY: #ddd;
  --LGRY: #f5f5f5;
  --DGRY: #707070;
  --WHT: #fff;
  --LINK: #0E8C62;
  --RED: #D00;
  --LMAIN: #ECF9F3;
  --LACC: #D9F2E7;
  --LOTH: #F6F6F6;
  --ACC2: #25BB4F;
}

.p-works__item {
  -webkit-transition: none;
  transition: none;
}

.p-works__item__img {
  width: 100%;
  -webkit-clip-path: polygon(9.5% 0, 100% 0, 100% 100%, 12.5% 100%, 0 40%);
  clip-path: polygon(9.5% 0, 100% 0, 100% 100%, 12.5% 100%, 0 40%);
}

.p-works__item__img img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works__item__text {
  padding: 32px 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.p-works__item__text::after {
  content: "";
  background: url(/dcms_media/other/icon-arr.svg) center no-repeat;
  width: 40px;
  height: 40px;
  display: block;
  background-size: cover;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-works__item__text__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--WHT);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-works__item:hover {
  background: var(--MAIN);
}

.p-works__item:hover .p-works__item__text::after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background-image: url(/dcms_media/other/icon-arr-on.svg);
}

.p-works__item:hover .p-works__item__img img {
  opacity: 1;
}

.p-works__item.__reverse .p-works__item__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-works__item.__reverse .p-works__item__img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-works__item.__reverse:hover {
  background: var(--MAIN);
}

.p-topics.lib-blog-001 .lib-swiper__outer.lib-wide__outer {
  overflow: hidden !important;
  padding: 15px 0;
}

.p-topics .lib-media__item {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
  padding: 24px;
  background-color: var(--WHT);
}

.p-topics .lib-swiper__control {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-topics .swiper-pagination-bullet {
  background-color: var(--WHT) !important;
  border: 1px solid var(--MAIN);
}

.p-topics .swiper-pagination-bullet-active {
  background-color: var(--MAIN) !important;
}

.p-search {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

.p-search li {
  list-style: none;
  position: relative;
  overflow: hidden;
  padding-left: 0;
  margin-top: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.p-search li::before {
  display: none;
}

.p-search li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 8px 24px 56px 24px;
  color: var(--WHT);
  font-size: 1.25rem;
}

.p-search li a::after {
  content: "";
  background: url(/dcms_media/other/icon-arr.svg) center no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  background-size: cover;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 16px;
  left: 24px;
}

.p-search li a:hover::after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  background-image: url(/dcms_media/other/icon-arr-on.svg);
}

.p-search li .-img {
  background-color: var(--MAIN);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.p-search li .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  -webkit-filter: blur(.5px);
  filter: blur(.5px);
}

.p-search li .-img img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--MAIN);
  position: absolute;
  top: 0;
  left: 0;
}

.p-search li:hover .-img {
  background-color: rgba(14, 140, 98, .5);
}

.p-search li:hover .-img img {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.p-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.p-feature__img img {
  width: 100%;
  height: auto;
  max-width: 560px;
}

.p-feature p {
  line-height: 1.7;
  font-size: 1.25rem;
}

.p-feature__wrap .lib-card__btn.-sp {
  display: none;
}

.p-recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.p-recruit__img img {
  width: 100%;
  height: auto;
  max-width: 700px;
}

.p-recruit__wrap .lib-card__btn.-sp {
  display: none;
}

.p-news {
  position: relative;
  z-index: 2;
  padding: 50px 0 0;
  margin-bottom: 50px;
}

.p-news__wrap {
  position: relative;
}

.p-news__wrap::after {
  content: "";
  width: 100%;
  height: 80%;
  background-color: var(--LGRY);
  position: absolute;
  top: 0;
  left: 0;
}

.p-news__rss {
  padding: 24px;
  background-color: var(--WHT);
  margin-top: 24px;
}

.p-news__rss .lib-rss__contents {
  display: none;
}

.p-news .lib-card__btn.-sp {
  display: none;
}

.p-news [class*=lib-rss__0] .lib-rss__title a {
  text-decoration: none;
}

.p-news [class*=lib-rss__0] .lib-rss__title a:not([target=_blank]):after {
  content: "\ea01";
  font-family: icons !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: .75rem;
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
}

.p-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.p-other__wrap {
  margin-top: -20px;
  padding: 50px 0 50px;
  background: url(/dcms_media/other/top-other-bg.svg) left center no-repeat;
  background-size: auto 100%;
}

.p-other__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.p-other__item .-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-other__item .-text > * {
  color: var(--WHT);
}

.p-other__item .-text::after {
  content: "";
  background: url(/dcms_media/other/icon-arr.svg) center no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  background-size: cover;
  margin-top: 16px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.p-other__item .-text:hover::after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  background-image: url(/dcms_media/other/icon-arr-on.svg);
}

.p-other__item .-img {
  width: 100%;
}

.p-other__item .-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.p-other__item:hover .-img {
  background-color: rgba(0, 0, 0, .5);
}

.p-other__item:hover .-img img {
  opacity: 1;
}

.allwrap-container {
  background: url(/dcms_media/image/top-bg.webp) center no-repeat;
  background-size: cover;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 50px 1.5rem;
}

#tinymce .p-other__item .-text,
#tinymce .p-search li a,
.is-editor .p-other__item .-text,
.is-editor .p-search li a,
body.dcms_editor .p-other__item .-text,
body.dcms_editor .p-search li a {
  position: static;
  color: var(--DEF);
  height: auto;
}

#tinymce .p-other__item .-text > *,
.is-editor .p-other__item .-text > *,
body.dcms_editor .p-other__item .-text > * {
  color: var(--DEF);
}

#tinymce .p-feature__wrap .lib-card__btn.-sp,
#tinymce .p-news .lib-card__btn.-sp,
#tinymce .p-recruit__wrap .lib-card__btn.-sp,
.is-editor .p-feature__wrap .lib-card__btn.-sp,
.is-editor .p-news .lib-card__btn.-sp,
.is-editor .p-recruit__wrap .lib-card__btn.-sp,
body.dcms_editor .p-feature__wrap .lib-card__btn.-sp,
body.dcms_editor .p-news .lib-card__btn.-sp,
body.dcms_editor .p-recruit__wrap .lib-card__btn.-sp {
  display: block;
}

@media screen and (min-width: 560px) {
  .p-topics.lib-blog-001 .lib-swiper__outer.lib-wide__outer {
    margin-left: 0 !important;
  }
  .p-search li a {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 340px;
    background: linear-gradient(135deg, var(--MAIN) 0, var(--MAIN) 25%, var(--ACC) 50%);
  }
  .p-works__item__img {
    width: 59.4%;
  }
  .p-works__item__text {
    width: 46%;
    padding: 3% 3% 3% 3%;
  }
  .p-works__item.__reverse {
    background: linear-gradient(135deg, var(--ACC) 50%, var(--MAIN) 80%, var(--MAIN) 100%);
  }
  .p-works__item.__reverse .p-works__item__img {
    -webkit-clip-path: polygon(0 0, 90.5% 0, 100% 40%, 87.5% 100%, 0 100%);
    clip-path: polygon(0 0, 90.5% 0, 100% 40%, 87.5% 100%, 0 100%);
  }
  .p-search {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .p-search li a {
    font-size: 1.75rem;
    padding: 16px 24px 56px 24px;
  }
  .p-news {
    padding: 80px 0 0;
    margin-bottom: 80px;
  }
  .p-news__rss {
    margin-top: 40px;
    padding: 40px;
  }
  .p-other__wrap {
    margin-top: -100px;
    padding: 100px 0 80px;
  }
  .p-other__item {
    width: 50%;
  }
  .p-other__item .-text::after {
    margin-top: 40px;
    width: 40px;
    height: 40px;
  }
  .allwrap-container {
    padding: 100px 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-works__item {
    height: 380px;
  }
  .p-works__item__img {
    width: 60.2%;
  }
  .p-works__item__img{
    -webkit-clip-path: polygon(9% 0, 100% 0, 100% 100%, 13.5% 100%, 0 40%);
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 13.5% 100%, 0 40%);
    overflow: hidden;
  }
  .p-works__item.__reverse .p-works__item__img {
    -webkit-clip-path: polygon(0 0, 91% 0, 100% 40%, 86.5% 100%, 0 100%);
    clip-path: polygon(0 0, 91% 0, 100% 40%, 86.5% 100%, 0 100%);
  }
  .p-works__item__text {
    padding: 1% 3% 1% 3%;
    width: 46%;
  }
  .p-works__item__text::after {
    width: 54px;
    height: 54px;
  }
  .p-search {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-feature {
    gap: 48px;
  }
  .p-feature__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
  }
  .p-feature__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .p-recruit {
    gap: 48px;
  }
  .p-recruit__img {
    width: 50%;
  }
  .p-recruit__text {
    width: 45%;
  }
  .p-news__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-other__wrap {
    margin-top: -140px;
    padding: 120px 0 100px;
  }
  .p-other__item {
    width: 33.333%;
  }
  .p-other__item:nth-child(2) {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1120px) {
  .p-recruit__img {
    width: 1%;
    margin-right: calc(50% - 500px);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 1200px) {
  .p-works__item__text {
    padding: 1% 10% 1% 3%;
    width: 45.8%;
  }
}

@media screen and (max-width: 1199.8px) {
  .p-news__title {
    width: 97%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news__rss {
    width: 97%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1023.8px) {
  .p-feature__img {
    margin: auto;
    width: 80%;
    max-width: 400px;
  }
  .p-feature__text {
    text-align: center;
    width: 100%;
  }
  .p-feature p {
    font-size: 1.125rem;
  }
  .p-feature__wrap .lib-card__btn.-sp {
    display: block;
    text-align: center;
  }
  .p-feature__wrap .lib-card__btn.-pc {
    display: none;
  }
  .p-recruit__img {
    margin: auto;
    width: 80%;
    max-width: 700px;
  }
  .p-recruit__text {
    text-align: center;
    width: 100%;
  }
  .p-recruit__wrap .lib-card__btn.-sp {
    display: block;
    text-align: center;
  }
  .p-recruit__wrap .lib-card__btn.-pc {
    display: none;
  }
  .p-news__title {
    text-align: center;
  }
  .p-news .lib-card__btn.-sp {
    display: block;
    text-align: center;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }
  .p-news .lib-card__btn.-pc {
    display: none;
  }
  .p-other {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767.8px) {
  .p-works__item {
    display: block;
    background: linear-gradient(135deg, var(--MAIN) 0, var(--MAIN) 55%, var(--ACC) 100%);
  }
  .p-works__item + .p-works__item {
    position: relative;
  }
  .p-works__item__img {
    position: relative;
    margin-top: 24px;
  }
  .p-works__item.__reverse {
    background: linear-gradient(135deg, var(--ACC) 0, var(--MAIN) 40%, var(--MAIN) 100%);
  }
  .p-search li {
    height: 140px;
  }
  .p-other {
    gap: 1px;
  }
  .p-other__item {
    height: 160px;
  }
}
