@charset "utf-8";

/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
#page_title .container {
  position: relative;
}
#page_title .heading {
  display: block;
  position: relative;
  z-index: 2;
}
#page_title .heading .heading-jp {
  margin-left: 0;
}
#page_title .heading .heading-en {
  line-height: 1;
}
#breadcrumbs {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}
#breadcrumbs a {
  text-decoration: underline;
  font-weight: 700;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}
#breadcrumbs [property="itemListElement"]:first-of-type {
  margin-left: 0;
}
#breadcrumbs [property="itemListElement"]:last-of-type {
  margin-right: 0;
}

.line_title {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}
.title span {
  display: inline-block;
  border-bottom: 2px dashed #fff;
  padding-bottom: .2em;
}
#category_menu {
  background: var(--subColor2);
}
#category_menu ul {
  display: flex;
  align-items: center;
}
#category_menu li {
  font-weight: 700;
}
#category_menu li:last-child {
  margin-right: 0;
}
#category_menu li.current a {
  text-decoration: underline;
  color: var(--mainColor);
}
@media only screen and ( max-width : 767px ) {
  #main {
    margin-top: 12rem;
  }
  #page_title {
    margin-bottom: 10rem;
  }
  #page_title .heading {
    margin-bottom: 0;
  }
  #page_title .heading-en {
  }
  #page_title .heading .heading-jp {
    margin-top: .5rem;
  }
  #breadcrumbs {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
  #breadcrumbs [property="itemListElement"] {
    margin: 0 .5rem;
  }
  #main__contents--wrapper {
    margin-bottom: 6rem;
  }
  
  #main_content {
    margin-bottom: 6rem;
  }
  
  .line_title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .title {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  .title span {
    font-size: 2.8rem;
  }
  #category_menu {
    height: 5.4rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
  }
  #category_menu_inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
  }
  #category_menu li {
    margin-right: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #main {
    margin-top: 17rem;
  }
  #page_title {
    margin-bottom: 14rem;
    position: relative;
  }
  #page_title .heading {
    margin-bottom: 0;
  }
  #page_title .heading .heading-en {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
  #page_title .heading .heading-jp {
    font-size: 6.8rem;
  }
  #breadcrumbs {
    font-size: 1.4rem;
    margin-top: 3.5rem;
  }
  #breadcrumbs [property="itemListElement"] {
    margin: 0 1.5rem;
  }
  #main__contents--wrapper {
    margin-bottom: 12rem;
  }
  
  .line_title {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }
  .title {
    font-size: 4.8rem;
    margin-bottom: 5rem;
  }
  #category_menu {
    margin-bottom: 6rem;
    min-height: 8rem;
    display: flex;
    align-items: center;
    padding: 2rem 8rem;
  }
  #category_menu_inner {
    width: 100%;
  }
  #category_menu ul {
    flex-wrap: wrap;
  }
  #category_menu li {
    margin-right: 7rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   WORKS

--------------------------------------------------------------------------------------------- */

#works .works__item {
  overflow: hidden;
  position: relative;
}
#works .works__item .works__fig {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: .3s;
}
#works .works__item:hover .works__fig {
  transform: scale(1.1);
}

#works .works__link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
}

#works .works__fig {
  background: center / cover no-repeat;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

/* works__content スタイル（top.cssから追加） */
#works .works__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: rgba(33,33,33,.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

#works .works__labels {
  display: flex;
  gap: 1rem;
}

#works .works__labels span {
  background: #fff;
  padding: 0.2rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 2rem;
  color: var(--subColor);
  font-weight: 700;
}

#works .works__title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

#works .works__arrow {
  background: #6a5745 url('../img/arrow.svg') no-repeat center/1.2rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background-color: #6a5745;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
}




@media only screen and ( max-width : 767px ) {
  #works .works__item {
    width: 100%;
    height: 20rem;
    margin-bottom: 3rem;
  }
  .works__txt {
    margin-bottom: 3rem;
  }
  .works__title {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .works--content {
    padding: 1.5rem;
  }
  #works .works__content {
    padding: 1rem;
  }
  #works .works__content_inner {
    width: calc(100% - 4.2rem);
  }
  #works .works__title {
    font-size: 1.4rem;
    margin-top: .6rem;
  }
  #works .works__labels span {
    font-size: 1rem;
  }
  #works .works__arrow {
    width: 3.2rem;
    height: 3.2rem;
    background-size: .6rem;
  }
  .works_single_title {
    font-size: 2.8rem;
    margin-bottom: 3rem;;
  }
}
@media print, screen and ( min-width : 768px ) {
  .works__list {
    display: flex;
    flex-wrap: wrap;
  }
  #works .works__item {
    height: 34rem;
    width: 47.5%;
    margin-right: 5%;
    margin-top: 5%;
  }
  #works .works__item:nth-child(-n+2) {
    margin-top: 0;
  }
  #works .works__item:nth-child(2n) {
    margin-right: 0;
  }
  .works__txt {
    margin-bottom: 6rem;
  }
  .works__title {
    font-size: 2rem;
    margin-top: 1.4rem;
  }
  .works--content {
    padding: 2.4rem 3rem;
  }
  #works .works__arrow {
    width: 5.6rem;
    height: 5.6rem;;
  }
  .works_single_title {
    font-size: 4.8rem;
    margin-bottom: 3rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   WORKS SINGLE

--------------------------------------------------------------------------------------------- */
.works_single--txt dl {
  display: flex;
  flex-wrap: wrap;
}
.works_single--txt dt,
.works_single--txt dd {
  border-bottom: 1px solid #fff;
}

.works_single--txt dd {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}

.works_single--discription {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  line-height: 2em;;
}
.works_single--txt dt {
  font-weight: 700;
  padding-right: 1em;
}
.works_single--fig .swiper-button-next,
.works_single--fig .swiper-button-prev {
  width: 6rem;
  height: 6rem;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin-top: -3rem;
}
.works_single--fig .swiper-button-prev {
  background: url(../img/prev02.svg) no-repeat center / 100%;
  left: 0;
}
.works_single--fig .swiper-button-next {
  background: url(../img/next02.svg) no-repeat center / 100%;
  right: 0;
}

.slick-dots li button:before {
  font-size: 10px;
}
.works_single--fig .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--mainColor);
}
.works-gallery .swiper-pagination {
  display: flex;
  justify-content: center;
}
.works-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 1.5rem;
}
.works-gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.works-gallery .swiper-button-next, .works-gallery .swiper-button-prev {
}
.other_works .works__list {
  overflow: visible;
  margin-bottom: 6rem;
}
.other_works .swiper-button-next,
.other_works .swiper-button-prev {
  width: 5.6rem;
  height: 5.6rem;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.other_works .swiper-button-next {
  background: url(../img/next.svg) no-repeat center / 100%;
  right: 0;
}
.other_works .swiper-button-prev {
  background: url(../img/prev.svg) no-repeat center / 100%;
  right: 7rem;
}
.other_works .swiper-button-disabled {
  opacity: .6;
}
@media only screen and ( max-width : 767px ) {
  #works_single {
    margin-bottom: 6rem;
  }
  .works_single--discription {
    margin-bottom: 4rem;;
  }
  .works_single--txt dt,
  .works_single--txt dd {
    padding: 2rem 0;
  }
  .works_single--txt dt {
    width: 12rem;
  }
  .works_single--txt dd {
    width: calc(100% - 12rem);
  }
  .works_single--fig .swiper-button-next,
  .works_single--fig .swiper-button-prev {
    display: none;
  }
  .works-gallery .works-gallery-item img {
    height: 20rem;
  }
  .works_single--fig {
    margin-bottom: 3rem;
  }
  .works-gallery .swiper-pagination {
    margin-top: 2rem;
  }
  .works-gallery .swiper-pagination .swiper-pagination-bullet {
    margin: 0 1.2rem;
  }
  .other_works .swiper-button-next,
  .other_works .swiper-button-prev {
    top: -7rem;
    width: 4rem;
    height: 4rem;
  }
  .other_works .swiper-button-prev {
    right: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #works_single {
    margin-bottom: 12rem;
  }
  .works_single--fig {
    width: 55.5rem;
    margin-right: 10rem;
  }
  .works-gallery .works-gallery-item img {
    height: 41.6rem;
  }
  .works_single--txt {
    width: calc(100% - (10rem + 55.5rem));
  }
  .works_single--txt dt,
  .works_single--txt dd {
    padding: 3rem 0;
  }
  .works_single--txt dt:first-of-type,
  .works_single--txt dd:first-of-type {
    padding-top: 0;
  }
  .works_single--txt dt {
    width: 14rem;
  }
  .works_single--txt dd {
    width: calc(100% - 14rem);
  }
  .works_single--discription {
    font-size: 2rem;
    margin-bottom: 6rem;;
  }
  .works-gallery .swiper-pagination {
    margin-top: 3rem;
  }
  #works.other_works .works__item {
    margin-top: 0;
  }
  .other_works .swiper-button-next,
  .other_works .swiper-button-prev {
    top: -10rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   SERVICE COMMON

--------------------------------------------------------------------------------------------- */
.service_about h3 {
  margin-bottom: 1em;
}
.service_content--box {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
}
.service_content--txt h3 {
  margin: 1.2em 0 .6em;
}
.service_content--txt p {
  line-height: 2em;
}
.service_cases {
  background: #E5DBDB;
  border-radius: 2rem;
}
.service_cases h4 {
  border-left: .6rem solid var(--mainColor);
  padding-left: .5em;
  margin-bottom: 1em;
}
.service_cases li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1em;
}
.service_cases li span {
  font-weight: 700;
}
.service_cases li:last-child {
  margin-bottom: 0;
}
.service_cases li:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/service/check.svg) no-repeat center / 100%;
  position: absolute;
  left: 0;
}

.service_construction--fig img {
  border-radius: 2rem;
}
.service_construction--txt p {
  line-height: 2em;
}
.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}
.tab-container {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #222;
}
.tab {
  cursor: pointer;
  width: 49%;
  max-width: 44.5rem;
  background: #CCCCCC;
  color: #fff;
  border-radius: .6rem .6rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.tab:last-child {
  margin-right: 0;
}
.tab span {
  text-align: center;
}
.tab.active {
  background: #222;
}
@media only screen and ( max-width : 767px ) {
  .service_sec {
    margin-bottom: 6rem;
  }
  .service_about_wrapper {
    flex-direction: column-reverse;
  }
  .service_about .service_about--fig {
    margin-bottom: 3rem;
  }
  .service_about h3 {
    font-size: 2rem;
  }
  .service_about p {
    line-height: 2em;
  }
  .service_content--box {
    margin-bottom: 2rem;
  }
  .service_content--box:last-child {
    margin-bottom: 0;
  }
  .service_content--txt h3 {
    font-size: 1.6rem;
  }
  .service_cases {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
  .service_cases h4 {
    font-size: 2rem;
  }
  .service_cases li {
    font-size: 1.6rem;
  }
  .service_cases li:before {
    top: .5rem;
  }
  .service_construction--box {
    margin-bottom: 3rem;
  }
  .service_construction--box:last-child {
    margin-bottom: 0;
  }
  .service_construction--txt h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .tab-container {
    margin-bottom: 3rem;
  }
  .tab {
    margin-right: 2%;
    height: 4rem;
    font-size: 1.5rem;
  }
  .service_construction .tab {
    font-size: 1.2rem;
    padding: 0 .5rem;
  }
  .service_construction .tab span {
    line-height: 1.3em;
  }
}
@media print, screen and ( min-width : 768px ) {
  .service_sec {
    margin-bottom: 12rem;
  }
  .service_about .service_about--txt {
    width: calc(100% - (8rem + 46rem));
  }
  .service_about .service_about--fig {
    width: 46rem;
  }
  .service_about h3 {
    font-size: 2.8rem;
  }
  .service_about p {
    line-height: 2.2em;
  }
  .service_col--title,
  .sec_col--title {
    width: 34rem;
    margin-right: 9rem;
  }
  .service_col--content,
  .sec_col--content {
    width: calc(100% - 34rem - 9rem);
  }
  .service_content--box {
    width: 31%;
  }
  .service_content--txt h3 {
    font-size: 2rem;
  }
  .service_cases {
    padding: 4rem 5rem;
    margin-top: 8rem;
  }
  .service_cases h4 {
    font-size: 2.8rem;
  }
  .service_cases li {
    font-size: 1.8rem;
  }
  .service_cases li span {
    font-size: 2rem;
  }
  .service_cases li:before {
    top: .6rem;
  }
  .service_construction--box {
    width: 48.5%;
    margin-top: 6rem;
  }
  .service_construction--box:nth-child(-n+2) {
    margin-top: 0;
  }
  .service_construction--txt h3 {
    font-size: 2.8rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .tab-container {
    margin-bottom: 6rem;
  }
  .tab {
    margin-right: 4rem;
    height: 6rem;
    font-size: 2.4rem;
  }
  .service_construction .tab-container {
    padding: 0 3rem;
  }
  .service_construction .tab {
    flex: 1;
    margin-right: 2%;
  }
  .service_construction .tab:last-child {
    margin-right: 0;
  }

  
}


/* ---------------------------------------------------------------------------------------------

　   STREETRPRINT

--------------------------------------------------------------------------------------------- */
.about_point {
  position: relative;
}
.about_point--fig {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
}
.about_point--label {
  position: absolute;
  z-index: 2;
}
.service_charm--box {
  position: relative;
  background: #fff;
  border-radius: 2rem;
}
.service_charm--label {
  position: absolute;
  z-index: 2;
  left: 3rem;
  top: -3rem;
  display: flex;
  align-items: center;
}
.service_charm--label span {
  font-weight: 700;
  color: var(--mainColor);
}
.service_charm--label-txt {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.4rem;
}
.service_charm--label-num {
  font-size: 5.6rem;
  line-height: 1;
}
.service_charm--txt {
  margin-top: 2rem;
}
.service_charm--txt h3 {
  font-weight: 700;
  margin-bottom: .5em;
}
.service_charm--txt p {
  line-height: 2em;
}
.service_recommendation--box {
  background: #fff;
  border-radius: 2rem;
  position: relative;
}
.service_recommendation--num {
  background: var(--mainColor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 5.2rem;
  height: 5.2rem;
  position: absolute;
  z-index: 2;
  top: -1rem;
  left: -1.5rem;
  font-weight: 700;
  font-size: 3.6rem;
}
.service_recommendation--fig {
  display: block;
  margin: 0 auto;
  width: 13rem;
}
.service_recommendation--fig img {
  width: 100%;
}
.service_recommendation--box h3 {
  text-align: center;
  margin: 1rem 0;
}
.service_recommendation--box ul {
  display: flex;
  flex-wrap: wrap;
}
.service_recommendation--box ul li {
  margin-right: .7em;
  font-weight: 700;
}
.service_recommendation--box ul li:last-child {
  margin-right: 0;
}
.service_design--box {
  background: #fff;
  border-radius: 2rem;
  font-size: 1.2rem;
}
.service_design--fig {
  display: block;
  margin: 0 auto;
  max-width: 21.4rem;
}
.service_design--fig img {
  width: 100%;
}
.service_design--box h3 {
  margin: 1rem 0;
  font-size: 2rem;
}
.service_design--txt {
  font-weight: 700;
  text-align: center;
  margin: 4.5rem 0 3rem;
}

@media only screen and ( max-width : 767px ) {
  .about_point {
    margin-top: 8rem;
    background: url(../img/service/streetprint/about02_sp.jpg) no-repeat center / cover;
    border-radius: 2rem;
    height: 53.4rem;
    padding: 7rem 2rem;
  }
  .service_about .about_point--title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .about_point--fig {
    display: none;
  }
  .about_point--label {
    width: 8.8rem;
    top: -4rem;
    left: 2rem;
  }
  .about_point .about_point--txt {
    color: #fff;
  }
  .service_charm--box {
    padding: 3rem 2rem;
    margin-top: 3.5rem;
  }
  .service_charm--txt h3 {
    font-size: 1.6rem;
  }
  .service_recommendation--box {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
  .service_recommendation--box:last-child {
    margin-bottom: 0;
  }
  .service_recommendation--box h3 {
    font-size: 2.4rem;
  }
  .service_design--box {
    width: 48.5%;
    margin-right: 3%;
    padding: 1.5rem 1rem;
    margin-top: 3%;
    font-size: 1.2rem;
    min-height: 17rem;
  }
  .service_design--box:nth-child(-n+2) {
    margin-top: 0;
  }
  .service_design--box:nth-child(2n) {
    margin-right: 0;
  }
  .service_design--box h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
  }
  .service_design--txt {
    font-size: 1.4rem;
    margin: 4rem 0 2rem;
  }
  .service_charm--label {
    left: 2rem;
    top: -1.5rem;
  }
  .service_charm--label-txt {
    font-size: 1rem;
  }
  .service_charm--label-num {
    font-size: 3.6rem;
  }
  .service_recommendation--fig {
    width: 11.4rem;
  }
  .service_recommendation--box ul {
    justify-content: center;
  }
  .service_recommendation--box ul li {
    font-size: 1.2rem;
  }
  .service_recommendation--num {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 2.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .about_point {
    margin-top: 16rem;
  }
  .about_point--label {
    width: 33rem;
    top: -5.5rem;
    left: 7.4rem;
  }
  .service_about .about_point--title {
    right: 7rem;
    top: -5.5rem;
    font-size: 4rem;
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    z-index: 2;
  }
  .about_point--title span {
    writing-mode: vertical-rl;
  }
  .about_point--txt {
    width: 55rem;
    bottom: 6rem;
    left: 7.4rem;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    z-index: 2;
  }
  .service_charm--box {
    padding: 5rem 4rem;
    width: 48.5%;
    margin-top: 6rem;
  }
  .service_charm--box:nth-child(-n+2) {
    margin-top: 0;
  }
  .service_charm--txt h3 {
    font-size: 2.4rem;
  }
  .service_recommendation--box {
    width: 31%;
    padding: 5rem 2rem 4rem;
  }
  .service_recommendation--box h3 {
    font-size: 3.6rem;
  }
  .service_design--box {
    width: 22.375%;
    margin-right: 3.5%;
    margin-top: 3%;
    padding: 3rem 2.5rem;
  }
  .service_design--box:nth-child(-n+4) {
    margin-top: 0;
  }
  .service_design--box:nth-child(4n) {
    margin-right: 0;
  }
  .service_design--txt {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   WORKS

--------------------------------------------------------------------------------------------- */
.service_achievement {
  position: relative;
}
.service_achievement .slick-list {
  overflow: visible;
}
.works__slide--wrapper {
  margin-right: calc((100vw - 100%) / 2 * -1);
  overflow: hidden;
  position: relative;
}
.service_achievement .top-slide__item {
  height: 80vw;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
  width: 20rem;
  width: 53.3vw;
  border-radius: 2rem;
}
.service_achievement .top-slide__item .top-slide__fig {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  overflow: hidden;
}
.service_achievement .top-slide__item .top-slide__fig {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service_achievement .top-slide__item:hover .top-slide__fig {
  transform: scale(1.1);
}

.service_achievement .top-slide__item .top-slide__fig:before,
.service_achievement .top-slide__item .top-slide__fig:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
}

.service_achievement .top-slide__item .top-slide__fig:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 60%;
  opacity: .85;
  width: 100%;
  z-index: 2;
}


.service_achievement .top-slide__item.slick-current .top-slide__works--content {
  display: block;
}

.service_achievement .top-slide__item:focus {
  outline: none;
}

.service_achievement .top-slide__link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.service_achievement .top-slide__fig {
  background: center / cover no-repeat;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.top-slide__works--content {
  bottom: 0;
  color: #fff;
  left:0;
  line-height: 1;
  position: absolute;
  z-index: 5;
}

.service_achievement .top-slide--other {
  font-size: 1.2rem;
}
.works__lead_txt {
  font-weight: 700;
}
.works__txt {
  line-height: 2em;
}

/* Arrows */
.service_achievement .works__arrow--prev,
.service_achievement .works__arrow--next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    display: block;

    width: 4.8rem;
    height: 4.8rem;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 99;
}
.service_achievement .works__arrow--prev:hover,
.service_achievement .works__arrow--prev:focus,
.service_achievement .works__arrow--next:hover,
.service_achievement .works__arrow--next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.service_achievement .works__arrow--prev:hover:before,
.service_achievement .works__arrow--prev:focus:before,
.service_achievement .works__arrow--next:hover:before,
.service_achievement .works__arrow--next:focus:before
{
    opacity: 1;
}
.service_achievement .works__arrow--prev.slick-disabled:before,
.service_achievement .works__arrow--next.slick-disabled:before
{
    opacity: .25;
}

.service_achievement .works__arrow--prev:before,
.service_achievement .works__arrow--next:before
{
    content: "";
    opacity: .75;
    color: #577565;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 4.8rem;
    height: 4.8rem;
    display: block;
    text-align: center;
}

.service_achievement .works__arrow--prev:before
{
    background: url(../img/prev.svg) no-repeat center / 100%;
}

.service_achievement .works__arrow--next:before
{
    background: url(../img/next.svg) no-repeat center / 100%;
}


.top-slide__title {
  font-weight: 700;
}


@media only screen and ( max-width : 767px ) {
  .works__slide--wrapper {
    margin-left: -2rem;
  }
  .works__txt {
    margin-bottom: 3rem;
  }
  .top-slide__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .top-slide__works--content {
    padding: 1.5rem;
  }
  .service_achievement .works__arrow--prev {
      right: 6rem;
      top: 0;
  }
  .service_achievement .works__arrow--next {
      right: 0;
      top: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .service_achievement .container {
    padding: 0;
  }
  .service_achievement .top-slide__item {
    height: 52.1vw;
    max-height: 75rem;
    max-width: 50rem;
    width: 34.7vw;
  }
  .service_achievement .slick-list {
    -webkit-transform: translateX(13.4vw) !important;
    transform: translateX(13.4vw) !important;
  }

  .works__txt {
    margin-bottom: 6rem;
  }
  .top-slide__title {
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
  .top-slide__works--content {
    padding: 2.4rem 3rem;
  }
  .service_achievement .works__arrow--prev {
      left: 0;
      bottom: 6rem;
  }
  .service_achievement .works__arrow--next {
      left: 0;
      bottom: 0;
  }

}


/* ---------------------------------------------------------------------------------------------

　   404

--------------------------------------------------------------------------------------------- */
#notfound h2 {
  color: var(--mainColor);
}
#notfound p {
  line-height: 2.5em;
}
@media only screen and ( max-width : 767px ) {
  #notfound h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  #notfound p {
    margin-bottom: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #notfound h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
    text-align: center;
  }
  #notfound p {
    text-align: center;
    margin-bottom: 7rem;
  }
  #notfound .btn {
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------

　   RECRUIT

--------------------------------------------------------------------------------------------- */

.recruit_sec:last-child {
  margin-bottom: 0;
}

.recruit_jobtype--box {
  border-bottom: 1px solid #fff;
}
.recruit_jobtype--box:first-of-type {
  padding-top: 0;
}

.recruit_jobtype--txt .recruit_jobtype--num {
  font-weight: 700;
  color: var(--mainColor);
  line-height: 1.5em;
}
.recruit_jobtype--txt p {
  line-height: 2em;
}
.recruit_person_inner {
}
.recruit_person_inner li {
  position: relative;
  padding-left: 5rem;
  font-weight: 700;
}
.recruit_person_inner li:before {
  content: "";
  width: 3rem;
  height: 2.8rem;
  background: url(../img/recruit/check.svg) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.recruit_person_inner li:last-child {
  margin-bottom: 0;
}
#recruit_message p {
  line-height: 2.5em;
}
#recruit_message figcaption {
  font-weight: 700;;
}
#recruit_message figcaption span {
  display: block;
}

.recruit_number_box {
  width: 31.2%;
  border: 2px solid #fff;
}
.recruit_number_box01 {
  width: 65.96%;
}
.recruit_number_box h3 {
  text-align: center;
}
.recruit_number_box figure {
  text-align: center;
  margin-top: 1rem;
}
.recruit_number_txt.recruit_number_txt_w {
  color: #fff;
}
.recruit_number_txt {
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
}
.recruit_number_txt .recruit_number_txt_n {
  display: inline-block;
  line-height: 1;
  font-weight: 700;
}
.recruit_number_txt .recruit_number_txt_n small {
  display: inline-block;
  line-height: 1;
}
.recruit_number_small_txt {
  font-weight: 700;
  text-align: center;
}
.recruit_number_txt_t {
  display: inline-block;
  line-height: 1;
}
.recruit_benefits_box figure {
  margin: 0 auto 3rem;
}
.recruit_benefits_box h3 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 2.4rem;
}
.recruit_benefits_box p {
  line-height: 2em;
  font-size: 1.6rem;;
}
#recruit_outline dt,
#recruit_outline dd .bold {
  font-weight: 700;
}

@media only screen and ( max-width : 767px ) {
  .recruit_sec {
    margin-bottom: 7rem;
  }
  #recruit_jobtype {
  }
  .recruit_jobtype--box {
    padding: 3rem 0;
  }
  .recruit_jobtype--fig {
    margin-bottom: 2rem;
  }
  .recruit_jobtype--txt {
  }
  .recruit_jobtype--num {
    font-size: 1.2rem;
  }
  .recruit_jobtype--title {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.8em;
  }
  #recruit_number {
  }
  .recruit_number_box {
    width: 100%;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
  }
  .recruit_number_box:last-child {
    margin-bottom: 0;
  }
  .recruit_number_box h3 {
    font-size: 2rem;
    text-align: center;
  }
  .recruit_number_txt .recruit_number_txt_n {
    font-size: 8.6rem;
  }
  .recruit_number_box .recruit_number_txt_t {
    font-size: 4rem;
  }
  .recruit_number_box02 .recruit_number_small_txt {
    width: 100%;
    text-align: center;
  }
  .recruit_number_box02 .recruit_number_txt_t {
    font-size: 2.4rem;
  }
  .recruit_number_small_txt {
    margin-top: .5rem;
    font-size: 1.2rem;;
  }
  .recruit_number_box04 .recruit_number_txt_inner {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  .recruit_number_box04 .recruit_number_txt_inner .recruit_number_txt {
    text-align: left;
    margin-right: 3rem;
  }
  .recruit_number_box04 .recruit_number_txt_inner .recruit_number_txt:last-child {
    margin-right: 0;
  }
  .recruit_number_box04 .recruit_number_u {
    width: 100%;
    display: block;
    font-size: 1.8rem;
    text-align: left;
  }
  .recruit_number_box04 .recruit_number_txt .recruit_number_txt_n {
    font-size: 5.8rem;;
  }
  .recruit_number_box04 .recruit_number_txt .recruit_number_txt_n small {
    font-size: 3.4rem;
  }
  .recruit_number_box04 .recruit_number_txt .recruit_number_txt_t {
    font-size: 2.2rem;
  }
  .recruit_benefits_box {
    margin-bottom: 4rem;;
  }
  .recruit_benefits_box:last-child {
    margin-bottom: 0;
  }
  .recruit_benefits_box h3 {
    margin-bottom: 1.5rem;
  }
  .recruit_benefits_box figure {
    width: 14.2rem;
  }
  #recruit_outline dt {
    padding-top: 1.5rem;
    margin-bottom: .5rem;
  }
  #recruit_outline dd {
    border-bottom: 1px solid #fff;
    padding-bottom: 1.5rem;
  }
  .recruit_person_inner li {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .recruit_person_inner li:last-child {
    margin-bottom: 0;
  }
  #recruit_message figure {
    margin-bottom: 3rem;
  }
  #recruit_message h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  #recruit_message figcaption {
    margin-top: 2rem;
    font-size: 2rem;
  }
  #recruit_message figcaption span {
    font-size: 1.4rem;
  }
  .btn_recruit {
    height: 6rem;
    width: 29rem;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .btn_recruit:after {
    width: 4.8rem;
    height: 4.8rem;
  }
  .recruit_sec_btn {
    margin-bottom: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  
  .recruit_sec {
    margin-bottom: 14rem;
  }
  
  #recruit_jobtype .sec_col--title {
    width: 28rem;
  }
  #recruit_jobtype .sec_col--content {
    width: calc(100% - 30rem);
  }
  .recruit_jobtype--box {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
  }
  .recruit_jobtype--fig {
    width: 24.8rem;
    margin-right: 4rem;
  }
  .recruit_jobtype--txt {
    width: calc(100% - 24.8rem - 4rem);
  }
  .recruit_jobtype--num {
    font-size: 2rem;
  }
  .recruit_jobtype--title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  
  .recruit_person_inner li {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  #recruit_message h3 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
    margin-top: 13rem;
  }
  #recruit_message p {
    font-size: 2rem;
  }
  #recruit_message figcaption {
    margin-top: 2.5rem;
    font-size: 2.4rem;
  }
  #recruit_message figcaption span {
    font-size: 1.2rem;
  }

  .recruit_number_box {
    margin-bottom: 4rem;
    padding: 3rem;
  }
  .recruit_number_box h3 {
    font-size: 2.4rem;
  }
  .recruit_number_box02 h3 {
    margin-bottom: 3rem;
  }
  .recruit_number_txt {
    font-size: 3.6rem;
  }
  .recruit_number_box04 .recruit_number_txt {
    font-size: 4.6rem;
  }
  .recruit_number_box01 .recruit_number_txt {
    font-size: 6rem;
  }
  .recruit_number_box02 .recruit_number_txt {
    font-size: 3.6rem;
  }
  .recruit_number_box01 .recruit_number_txt .recruit_number_txt_n {
    font-size: 10.6rem;
  }
  .recruit_number_txt .recruit_number_txt_n {
    font-size: 15rem;
  }
  .recruit_number_txt .recruit_number_txt_n small {
    font-size: 12rem;
  }
  .recruit_number_box04 .recruit_number_txt_n {
    font-size: 10rem;
  }
  .recruit_number_box04 .recruit_number_txt .recruit_number_txt_n small {
    font-size: 8rem;
  }
  .recruit_number_box04 .recruit_number_u {
    font-size: 2rem;
  }
  .recruit_number_u {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .recruit_number_small_txt {
    font-size: 1.4rem;
  }
  .recruit_benefits_box {
    width: 30%;
    margin-right: 5%;
    margin-top: 6rem;;
  }
  .recruit_benefits_box:nth-child(-n+3) {
    margin-top: 0;
  }
  .recruit_benefits_box:nth-child(3n) {
    margin-right: 0;
  }
  .recruit_benefits_box h3 {
    font-size: 2.4rem;
  }
  .recruit_benefits_box figure {
    width: 20rem;
  }
  #recruit_outline dl {
    display: flex;
    flex-wrap: wrap;
  }
  #recruit_outline dt,
  #recruit_outline dd {
    border-bottom: 1px solid #fff;
    padding: 3rem 0;
  }
  #recruit_outline dt {
    width: 15rem;
  }
  #recruit_outline dd {
    width: calc(100% - 15rem);
  }
  .btn_recruit {
    height: 12rem;
    width: 59.2rem;
    margin: 0 auto;
    font-size: 2.6rem;
  }
  .btn_recruit:after {
    right: 9.6rem;
    width: 3.8rem;
    height: 3.8rem;
    background-size: .6rem;
  }
  .recruit_sec_btn {
    margin-bottom: 10rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMPANY

--------------------------------------------------------------------------------------------- */
.company_sec {
  position: relative;
}
.company_sec:last-child {
  margin-bottom: 0;
}


.company_sec h3 {
  font-weight: 900;
}
.company_sec p:last-child {
  margin-bottom: 0;
}
.company_sec .message_txt__name {
  text-align: right;
  font-weight: 700;
  margin-top: 3rem;
}
.message_txt__name span {
  display: block;
}

#outline dt {
  font-weight: 700;
}

@media only screen and ( max-width : 767px ) {
  .company_sec {
    margin-bottom: 4rem;
  }
  
  .company_sec h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .company_sec p {
    line-height: 2em;
    margin-bottom: 1em;
  }
  .message_img {
    margin-top: 4rem;
  }
  .message_txt__name {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .message_txt__name span {
    font-size: 1.4rem;
  }
  #outline dt {
    padding-top: 1.5rem;
    margin-bottom: .5rem;
  }
  #outline dd {
    border-bottom: 1px solid #fff;
    padding-bottom: 1.5rem;
  }
  #about {
    padding-bottom: 8rem;
  }
  #about h3 {
    font-size: 12rem;
    line-height: 1;
    margin-bottom: 3rem;;
  }
}
@media print, screen and ( min-width : 768px ) {
  
  .company_sec {
    margin-bottom: 11.5rem;
  }
  
  .message_txt {
    width: 48.4%;
  }
  .message_img {
    width: 42.4%;
  }
  .company_sec h3 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .company_sec p {
    line-height: 2.5em;
    margin-bottom: 1em;
  }
  .company_sec .message_txt__name {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .message_txt__name span {
    font-size: 1.6rem;
  }
  
  #outline dl {
    display: flex;
    flex-wrap: wrap;
  }
  #outline dt,
  #outline dd {
    border-bottom: 1px solid #fff;
    padding: 3rem 0;
  }
  #outline dt {
    width: 15rem;
  }
  #outline dd {
    width: calc(100% - 15rem);
  }
  #about h3 {
    /* -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; */
    font-size: 24.6rem;
    line-height: 1;
    margin-bottom: 0;
    margin-top: -1.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   SINGLE

--------------------------------------------------------------------------------------------- */
.single_wrapper {
  max-width: 100rem;
  margin: 0 auto;
}
#single_main p {
  overflow-wrap: break-word;
}
.post_title {
  font-weight: 700;
  border-bottom: 2px solid #fff;
  padding-bottom: .4em;
  margin-top: 1.5rem;
}
.post_thumb {
  text-align: center;
}
#single_main h2 {
  border-left: .6rem solid var(--mainColor);
  padding: .3em .6em;
  margin-bottom: 1em;
}
#single_main h3 {
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-bottom: .3em;
  margin-bottom: 1.5rem;
}
#single_main p {
  line-height: 2em;
  margin-bottom: 1em;
}
#single_main ol {
  margin: 2rem 0;
  border: 1px solid #fff
}
#single_main ol {
  counter-reset: listnum;
}
#single_main ol li {
  position: relative;
  padding-left: 3.5rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#single_main ul li {
  list-style: disc;
  margin-left: 1.2em;
  margin-bottom: .6em;
}
#single_main ol li:last-child,
#single_main ul li:last-child {
  margin-bottom: 0;
}
#single_main ol li:before {
  counter-increment: listnum;
  content: counter(listnum);
  background: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
}
#single_main .wp-block-button__link {
  background: #00AB59;
  color: #fff;
}
#single_main p a {
  color: #fff;
  text-decoration: underline;
}

@media only screen and ( max-width : 767px ) {
  .single_wrapper {
  }
  .post_title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .post_thumb {
    margin-bottom: 4rem;
  }
  #single_main h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
  #single_main h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  #single_main .wp-block-button__link {
    margin: 3rem 0;
  }
  #single_main ol {
    padding: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .single_wrapper {
  }
  .post_title {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }
  .post_thumb {
    margin-bottom: 8rem;
  }
  #single_main h2 {
    font-size: 2.4rem;
    margin-top: 6rem;
  }
  #single_main h3 {
    font-size: 2rem;
    margin-top: 4rem;
  }
  #single_main ol {
    padding: 3rem;
  }
  #single_main ol li {
    font-size: 2rem; 
  }
  #single_main ol li:before {
    font-size: 1.6rem;
  }
  #single_main .wp-block-button__link {
    width: 38rem;
    margin: 6rem 0;
  }
  
}
/* ---------------------------------------------------------------------------------------------

　   PRIVACY

--------------------------------------------------------------------------------------------- */
.privacy_wrapper {
}
.privacy_sec h2 {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.privacy_sec h2:before {
  content: "";
  border-radius: 50%;
  background: var(--mainColor);
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: .3em;
}
.privacy_sec:last-child {
  margin-bottom: 0;
}
.privacy_sec h3 {
  margin-bottom: 1em;
}
.privacy_sec p {
  line-height: 2em;
  margin-bottom: 1em;
}
.privacy_sec .disc {
  margin-bottom: 1em;
}
.privacy_sec .disc li {
  list-style: disc;
  line-height: 2em;
  margin-left: 1.2em;
}
@media only screen and ( max-width : 767px ) {
  .privacy_wrapper {
  }
  .privacy_sec {
    margin-bottom: 4rem;
  }
  .privacy_sec h2 {
    font-size: 2rem;
  }
  .privacy_sec h3 {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .privacy_wrapper {
  }
  .privacy_sec {
    margin-bottom: 6rem;
  }
  .privacy_sec h2,
  .privacy_sec h3 {
    font-size: 2.4rem;
  }
  .privacy_sec h3 {
    margin-top: 5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
.contact_form__wrapper {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}

.smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
  content: "必須";
  display: inline-block;
  padding: .3em .4em;
  color: #fff;
  background-color: #D91F2D;
  font-weight: 400;
  line-height: 1;
  margin-right: .5em;
  border-radius: .5rem;
}
.snow-monkey-form[data-screen="confirm"] .smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
  content: none;
}
.smf-action .smf-button-control__control {
  background: none;
  color: #fff;
  height: 7.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  width: 38.8rem;
  border: 1px solid #fff;
  border-radius: 6rem;
  font-size: inherit;
  font-family: inherit;
  font-size: 2rem;
}
.smf-action .smf-button-control__control:after {
  content: "";
  width: 6rem;
  height: 6rem;
  background: url(../img/arrow.svg) no-repeat center / 1.5rem var(--mainColor);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: .7rem;
  transition: .3s;
}
.smf-action .smf-button-control__control[data-action="back"]:after {
  background: url(../img/arrow.svg) no-repeat center / 1.5rem #ccc;
}
.smf-action .smf-button-control__control:hover:after {
  background-color: #212121;
}

.smf-action .smf-button-control__control:hover {
    border-color: inherit!important;
    box-shadow: none;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background: url(../img/contact/check.png) no-repeat center / 100% var(--mainColor);
  color: transparent;
}
.aria-current .smf-progress-tracker__item__number {
  background: url(../img/contact/check.png) no-repeat center / 100% var(--mainColor);
  color: transparent;
}
.smf-progress-tracker__item__number {
  width: 7.2rem;
  height: 7.2rem;
}
.smf-progress-tracker__item:after, .smf-progress-tracker__item:before {
  top: 3.4rem;
  background: #ccc;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: var(--mainColor);
}
.smf-progress-tracker__item__number {
  background: #F5F5F5;
  color: #F5F5F5;
}
.smf-progress-tracker__item__text {
  color: #fff;
  font-weight: 700;
}
.form_privacy_txt a {
  text-decoration: underline;
  color: #fff;
}
.snow-monkey-form[data-screen="confirm"] .form_privacy_txt {
  display: none;
}
.smf-item__label {
  font-weight: 700;
}
.smf-form--letter .smf-text-control__control {
  border: 1px solid #ccc;
  padding: 1.3rem;
  font-size: inherit;
  font-family: inherit;
}
.smf-form .smf-textarea-control__control {
  border: 1px solid #ccc;
  padding: 1.3rem;
  font-size: inherit;
  font-family: inherit;
}
.contact_tel__area {
  background: #E5DBDB;
}
.contact_tel__area h3 {
  text-align: center;
}
.contact_tel__num {
  text-align: center;
  font-weight: 700;
  color: var(--mainColor);
}
.contact_tel__num span {
  display: inline-block;
  position: relative;
}
.contact_tel__num span:before {
  content: "";
  background: url(../img/contact/freedial.png) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact_tel__receptionHours {
  text-align: center;
}
.contact_txt {
  line-height: 2em;
}
.smf-complete-content h2 {
  text-align: center;
}
.smf-complete-content p {
  line-height: 2em;
  margin-bottom: 1.5em;
  text-align: center;
}
.smf-placeholder {
  overflow-wrap: break-word;
}
.smf-error {
  color: #cc3033;
  margin-top: var(--_margin-2);
}
@media only screen and ( max-width : 767px ) {
  .contact_form__wrapper:before {
    width: 20rem;
    height: 20rem;
    right: -8rem;
    top: 10%;
  }
  .contact_form__wrapper:after {
    width: 20rem;
    height: 20rem;
    left: -8rem;
    bottom: 10%;
  }
  .contact_form__area {
  }
  .smf-action .smf-button-control__control {
    width: 28.4rem;
    height: 5.8rem;
    font-size: 1.6rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-action .smf-button-control__control {
    width: 48%;
    justify-content: flex-start;
    height: 5rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-action .smf-button-control+.smf-button-control {
    margin: 0;
  }
  .smf-action .smf-button-control__control[data-action="back"] {
    margin-right: 2%;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-action .smf-button-control__control:after {
    width: 4.2rem;
    height: 4.2rem;
    right: .3rem;
  }
  .smf-action .smf-button-control__control:after {
    width: 4.6rem;
    height: 4.6rem;
  }
  .smf-progress-tracker__item__number {
    width: 3.2rem;
    height: 3.2rem;
  }
  .smf-progress-tracker__item:after, .smf-progress-tracker__item:before {
    top: 1.7rem;
  }
  .smf-progress-tracker {
    margin-bottom: 4rem;
  }
  .smf-form--letter .smf-item {
    padding: 1.5rem 0;
  }
  .form_privacy_txt {
    font-size: 1.2rem;
    margin: 1.5rem 0 3rem;
  }
  .smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
    font-size: 1.2rem;
  }
  .contact_tel__area {
    padding: 2rem;
    margin-bottom: 4rem;
  }
  .contact_tel__num span {
    font-size: 3rem;
    padding-left: 5rem;
  }
  .contact_tel__num span:before {
    width: 3.8rem;
    height: 2.5rem;
  }
  .contact_tel__receptionHours {
    font-size: 1.2rem;
  }
  .contact_txt {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item {
    display: flex;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 1rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item__col--label {
    padding: 0;
    width: 12rem;
    padding-right: 2rem;
    text-align: right;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item__col--controls {
    width: calc(100% - 12rem);
  }
  .snow-monkey-form[data-screen="confirm"] .smf-form {
    margin-bottom: 4rem;
  }
  .smf-complete-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
  }
  .smf-complete-content h2:before {
    content: "";
    width: 3.6rem;
    height: 3.6rem;
    background: url(../img/contact/check.png) no-repeat center / 100%;
    display: block;
    margin: 0 auto 1rem;
  }
  .smf-complete-content .btn {
    margin-top: 4rem;
  }
  .smf-form--letter .smf-text-control__control,
  .smf-form .smf-textarea-control__control {
    font-size: 16px;
  }
  [data-screen="input"] .smf-item__label br,[data-screen="back"] .smf-item__label br {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  .contact_form__wrapper:before {
    width: 38rem;
    height: 38rem;
    left: -22rem;
    bottom: 0;
  }
  .contact_form__area {
  }
  .smf-progress-tracker {
    margin-bottom: 6rem;
  }
  .smf-form--letter .smf-item {
    padding: 2rem 0;
  }
  .form_privacy_txt {
    text-align: center;
    margin: 4rem 0 6rem;
  }
  .smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
    font-size: 1.4rem;
  }
  .contact_tel__area {
    padding: 2.5rem;
    margin-bottom: 6rem;
  }
  .contact_tel__num span {
    font-size: 4rem;
    padding-left: 6rem;
  }
  .contact_tel__num span:before {
    width: 4.9rem;
    height: 3.2rem;
  }
  .contact_tel__receptionHours {
    font-size: 1.4rem;
  }
  .contact_txt {
    font-size: 2rem;
    margin-bottom: 10rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item {
    display: flex;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 1rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item__col--label {
    padding: 0;
    width: 22rem;
    padding-right: 4rem;
  }
  .snow-monkey-form[data-screen="confirm"] .smf-item__col--controls {
    width: calc(100% - 22rem);
  }
  .snow-monkey-form[data-screen="confirm"] .smf-form {
    margin-bottom: 7rem;
  }
  .smf-complete-content h2 {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .smf-complete-content .btn {
    margin-top: 6rem;
  }
  .smf-item__label br {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   SERVICE

--------------------------------------------------------------------------------------------- */
.service_title {
  font-weight: 700;
  line-height: 2em;
}
.service_sec .sec_col--content p {
  line-height: 2.5em;
}
#service #service_list {
  border: 2px solid #fff;
}
.service_box {
  border-bottom: 1px dashed #fff;
}
.service_box:last-child {
  border-bottom: none;
}
.service_box_num {
  font-weight: 700;
  color: var(--mainColor);
  font-size: 1.6rem;
}
.service_box_txt_txt {
  line-height: 2.5em;
}
.link_service {
  display: inline-block;
  position: relative;
  padding-right: 3rem;
  text-decoration: underline;
}
.link_service:hover {
  text-decoration: underline;
}
.link_service:after {
  content: "";
  background: url(../img/ico-window.svg) no-repeat center / 100%;
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.business_flow_step {
  border: 2px solid #fff;
}
.business_flow_step:last-child {
  margin-bottom: 0;
}
.business_flow_num {
  font-weight: 700;
  color: var(--mainColor);
  font-size: 1.6rem;
}
.business_flow_txt {
  line-height: 2em;
}
.flow-menu li a {
  font-weight: 700;
}
.business_flow_menu_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: #C1BBB7;
  color: var(--mainColor);
  font-size: 2.4rem;
  font-weight: 700;
}
.flow-menu li a.past .business_flow_menu_num,
.flow-menu li a.current .business_flow_menu_num {
  background-color: var(--mainColor);
  color: #fff;;
}
.results_box_title span {
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: .2em;
}
.results_box_txt_txt {
  line-height: 2em;
}
.results_box {
  border-bottom: 1px dashed #fff;
}
.results_box_txt_txt_inner_item_title {
  position: relative;
  z-index: 10;
  text-align: center;

}
.results_box_txt_txt_inner_item_title span {
  background: url(../img/bg.png) no-repeat center / 100%;
  display: inline-block;
}
.results_box_txt_txt_inner_item {
  border: 1px solid #fff;
  position: relative;
}
.results_box_txt_txt_inner_item_txt li {
  /* list-style: disc;
  margin-left: 1.2em; */
  line-height: 1.8;
}
.results_check_list {
  border: 1px solid #fff;
}
.results_check_list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}
.results_check_list li:last-child {
  margin-bottom: 0;
}
.results_check_list li span {
  display: block;
  font-weight: 400;
  margin-top: .5em;
}
.results_check_list li:before {
  content: "";
  background: url(../img/recruit/check.svg) no-repeat center / 100%;
  position: absolute;
  width: 1.8rem;
  height: 1.7rem;
  left: 0;
  top: .3rem;
}
.results_dl_list dt {
  background-color: #fff;
  color: var(--subColor);
  font-weight: 700;
}
.results_dl_list dd {
  font-weight: 700;
}
@media only screen and ( max-width : 767px ) {
  .service_box {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .service_box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .service_title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .service_img {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 6rem;
    margin-bottom: 4rem;
  }
  .service_box_title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  #service #service_list {
    padding: 3rem 2rem;
  }
  .service_box_img {
    margin-bottom: 2rem;
  }
  .strengths_list {
    margin-top: 4rem;
  }
  .strengths_list .strengths_box {
    width: 48%;
  }
  .flow-menu {
    width: 5.4rem;
    margin-right: 1.5rem;
  }
  .flow-menu li {
    margin-bottom: 4rem;
    height: 38.5rem;
    position: relative;
  }
  .flow-menu li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 2.7rem;
    width: 1px;
    height: calc(100% + 4rem);
    background: var(--mainColor);
    z-index: -1;
  }
  .flow-menu li:first-child {
    height: 36rem;
  }
  .flow-menu li:last-child:after {
    content: none;
  }
  .business_flow_menu_txt {
    display: none;
  }
  .flow-content {
    width: calc(100% - 5.4rem - 1.5rem);
  }
  .business_flow_step {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .business_flow_title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .business_flow_step_img {
    margin-top: 2rem;
  }
  .results_box_title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .results_box_sub_title {
    font-size: 2.4rem;
    margin-bottom: 3rem
  }
  .results_box_txt_txt_inner {
    margin-top: 4rem;
  }
  .results_box_txt_txt_inner_item_title {
    font-size: 1.6rem;
    margin-top: -1.4rem;
    margin-bottom: 1.4rem;
  }
  .results_box_txt_txt_inner_item_title span {
    padding: 0 2rem;
  }
  .results_box_txt_txt_inner_item {
    margin-bottom: 4rem;
    padding: 0 1rem 1.5rem 1rem;
  }
  .results_box_txt_txt_inner_item:last-child {
    margin-bottom: 0;
  }
  .results_box {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  .results_check_list {
    padding: 3rem 1.5rem;
    margin-top: 3rem;
  }
  .results_check_list li {
    font-size: 1.6rem;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
  }
  .results_check_list li:last-child {
    margin-bottom: 0;
  }
  .results_dl_list dt {
    text-align: center;
    font-size: 1.6rem;
    padding: .5rem 1.5rem;
  }
  .results_dl_list dd {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    margin-bottom: 3rem;
  }
  .results_dl_list dd:last-of-type {
    margin-bottom: 0;
  }
  .results_box_img {
    margin-top: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .service #wrapper {
    overflow: inherit;
  }
  .service_sec .sec_col--title {
    width: 54rem;
    margin-right: 7rem;
  }
  .service_sec .sec_col--content {
    width: calc(100% - 54rem - 7rem);
  }
  .service_title {
    font-size: 3.6rem;
  }
  .service_img {
    margin: 7.4rem 0 5rem;
  }
  #service_list {
    padding: 0 8.5rem;
  }
  .service_box_img {
    width: 36rem;
    margin-right: 8rem;
  }
  .service_box_txt {
    width: calc(100% - 36rem - 8rem);
  }
  .service_box {
    padding: 6rem 0;
  }
  .service_box_title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  .strengths_list {
    margin-top: 5rem;
  }
  .strengths_list .strengths_box {
    width: 48%;
  }

  .flow-menu {
    position: sticky;
    top: 100px; /* ヘッダー分調整 */
    align-self: flex-start;
    width: 30rem;;
  }
  .flow-menu li {
    margin-bottom: 6rem;
  }
  .flow-menu li:last-child {
    margin-bottom: 0;
  }
  .flow-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.8rem;
    position: relative;
  }
  
  .flow-menu li a.past:after {
    content: "";
    position: absolute;
    bottom: -6rem;
    left: 2.7rem;
    width: 1px;
    height: 6rem;
    background: var(--mainColor);
  }
  .flow-menu li a.current .business_flow_menu_num {
  }
  .flow-content {
    width: 84rem;
  }
  .business_flow_step {
    padding: 4rem 5rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  .business_flow_step_img {
    width: 19.6rem;
    margin-left: 6rem;
  }
  .business_flow_step_txt {
    width: calc(100% - 19.6rem - 6rem);
  }
  .business_flow_title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  .results_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10rem;
    padding-bottom: 10rem;
  }
  .results_box01 {
    align-items: flex-end;
  }
  .results_box_title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .results_box_sub_title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .results_box_txt_txt {
  }
  .results_box_img {
    width: 44.8rem;
  }
  .results_box_txt {
    width: 69rem;
  }
  .results_box_txt_txt_inner {
    margin-top: 5rem;
  }
  .results_box_txt_txt_inner_item {
    width: 48%;
  }
  .results_box_txt_txt_inner_item_title {
    font-size: 2rem;
    margin-top: -1.7rem;
    margin-bottom: .8rem;
  }
  .results_box_txt_txt_inner_item_title span {
    padding: 0 2.5rem;
  }
  .results_box_txt_txt_inner_item_txt {
    padding: 0 2rem 2rem 2rem;
  }
  .results_box_txt01{
    width: 47.6rem;
  }
  .results_box_txt02 {
    width:66rem;
  }
  .results_check_list {
    padding: 3rem;
  }
  .results_check_list li {
    font-size: 2rem;
    padding-left: 3rem;
    margin-bottom:2rem;
  }
  .results_check_list li:before {
    top: .8rem;
  }
  .results_check_list li span {
    font-size: 1.6rem;
  }
  .results_dl_list {
    display: flex;
    flex-wrap: wrap;
  }
  .results_dl_list dt,
  .results_dl_list dd {
    min-height: 5rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .results_dl_list dt {
    width: 19.6rem;
    justify-content: center;
  }
  .results_dl_list dd {
    width: calc(100% - 19.6rem);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .results_box_sub_title {
    line-height: 2;
  }
  .service_sec .sec_col--content p {
    margin-bottom: .3em;
  }
}



/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}
