@charset "utf-8";

:root {
  --paddingSection: 60px;
  --paddingLR: 20px;
  --color_green: #077E78;
  --color_yellow: #FED15F;
  --color_red: #CF1A1A;
  --color_gray_bg: #F5F5F5;
  --color_border: #D8D8D8;
  --border_radius: 20px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 30px;
    --border_radius: 10px;
  }
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
.l-header {
  padding: 20px 60px;
  position: relative;
  z-index: 1;
  min-width: 1100px;
}

// .l-header:after {
//   content: '';
//   position: absolute;
//   left: 0;
//   right: 0;
//   top: 0;
//   width: 100%;
//   height: 410px;
//   z-index: -1;
//   background: url(images/top/bg-header.png);
//   background-repeat: no-repeat;
//   background-size: 100%;
//   background-position: top center;
// }

.l-header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 390px;
  z-index: -1;
  background: url(images/top/bg-header.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

body.sub .l-header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 410px;
  z-index: -1;
  background: url(images/top/bg-header-lv.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}

.l-header-inner {
  display: flex;
  flex-wrap: wrap;
}

.logo-inner {
  width: 299px;
}

.l-header-name span {
  color: #fff;
  font-weight: 700;
  border: 1px solid #fff;
  line-height: 1.3;
  border-radius: 200px;
  margin-bottom: 7px;
  display: inline-block;
  padding: 1px 8px;
}

.l-header-info {
  margin-left: auto;
  width: calc(100% - 310px);
  max-width: 1080px;
  background-color: #fff;
  border-radius: 200px;
  padding: 6px 6px 6px 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: flex;
}

.l-header-menu__head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.l-header-menu__head li + li {
  margin-left: 32px;
}

.l-header-menu__head li a {
  display: inline-block;
  color: var(--color_green);
  font-weight: 700;
}

.l-header-menu__head li.l-header-menu__head__faq a {
  padding-left: 31px;
  background: url(images/common/ico-faq-green.svg) no-repeat left center;
  background-size: 23px auto;
}

.l-header-menu__head li.l-header-menu__head__contact a {
  padding-left: 32px;
  background: url(images/common/ico-mail-green.svg) no-repeat left center;
  background-size: 24px auto;
}

.l-header-menu__head li.l-header-menu__head__tell a {
  padding-left: 32px;
  background: url(images/common/ico-tell-green.svg) no-repeat left center;
  background-size: 26px auto;
  margin-right: 6px;
  pointer-events: none;
}

.l-header-menu__head li.l-header-menu__head__tell span {
  color: var(--color_green);
  font-size: .8125rem;
  font-weight: 600;
}

.sub-logo {
  flex-shrink: 1;
  margin-right: 20px;
}

.sub-logo .logo02 {
  width: 114px;
  margin-top: 10px;
}

.sub-logo .logo03 {
  width: 93px;
}

.l-header-menu {
  margin-left: auto;
}

/*nav*/
.l-header-nav__item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}

.l-header-nav__item li + li {
  margin-left: 2.08vw;
}

.l-header-nav__item li a {
  font-weight: 700;
}

.l-header-entry {
  width: 160px;
  margin-left: 16px;
}

.l-header-entry a {
  display: inline-block;
  background: url(images/common/ico-target.svg) no-repeat 93% 50%;
  background-size: 18px;
  background-color: var(--color_yellow);
  text-align: center;
  border-radius: 200px;
  padding: 10px 0;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  height: 100%;
  line-height: 1.4;
  font-weight: 700;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.l-header-entry a .entry-soon-txt {
  font-size: 0.875rem;
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Footer
---------------------------------------------------------------*/
#footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #F5F5F5;
}

.sub-bg {
  position: relative;
  height: 227px;
  width: 100%;
  background-color: #fff;
}

.sub-bg:before {
  content: '';
  position: absolute;
  left: 0;
  top: -38px;
  height: 267px;
  width: 100%;
  background: url(images/common/lv.png);
  background-repeat: repeat-x;
  background-size: auto 267px;
}

#footer .c-center {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

/*ページトップ*/
.l-footer-top {
  position: fixed;
  z-index: 3;
  right: 30px;
  bottom: 70px!important;
  width: 80px;
  height: 80px;
}

.ft-logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 19px;
}

.ft-logo .logo01 {
  width: 337px;
  margin-right: 40px;
}

.ft-logo-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.ft-logo-head .logo02 {
  width: 143px;
  margin-left: 25px;
}

.ft-logo-head .logo03 {
  width: 93px;
}

.ft-inf-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.ft-inf-inner .ft-info {
  width: 50%;
}

.ft-inf-inner .ft-info address {
  margin: 20px 0 17px;
  font-weight: 500;
  line-height: 1.5;
}

.ft-inf-inner .ft-info address {
  margin: 20px 0 17px;
  font-weight: 500;
  line-height: 1.5;
}

.ft-info-tell a {
  pointer-events: none;
  font-size: 1.25rem;
  padding-left: 29px;
  background: url(images/common/ico-tell-green02.svg) no-repeat left center;
  background-size: 24px auto;
  margin-right: 12px;
  color: var(--color_green);
  display: inline-block;
}

.ft-info-tell .ft-info-open {
  font-size: 0.8125rem;
  font-weight: 500;
}

.ft-nav {
  width: 50%;
  margin-left: auto;
}

.ft-nav-list,
.ft-nav-list__sub {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}

.ft-nav-list {
  flex-wrap: wrap;
}

.ft-nav-list__sub {
  gap: 24px;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

.ft-nav-list__sub li a {
  display: inline-block;
  color: #015CB5;
  font-weight: 700;
}

.ft-nav-list__sub li.fst-com-link a {
  display: inline-block;
  text-align: center;
  color: #CC4E00;
  border: 1px solid #CC4E00;
  border-radius: 100px;
  padding: 1px 36px 1px 19px;
  background: url(images/common/ico-arw-btn-orange.svg) no-repeat 95% 50% #fff;
  background-size: 10px auto;
  font-weight: 500;
  font-size: 0.875rem;
}

.ft-nav-list__btm {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  gap: 6px 42px;
  margin-top: 65px;
  flex-wrap: wrap;
  width: 860px;
  position: absolute;
  right: 20px;
  top: 40px;
}

.ft-nav-list__btm li {
  position: relative;
}

.ft-nav-list__btm li:after {
  content: '';
  position: absolute;
  right: -21px;
  top: 9px;
  width: 1px;
  height: 14px;
  background: #333333;
}

.ft-nav-list__btm li:last-child:after {
  display: none;
}

.ft-nav-list__btm li a {
  font-size: 0.875rem;
  font-weight: 700;
}

.l-copyright {
  background-color: var(--color_green);
  padding: 20px 0;
  text-align: center;
}

.l-copyright p {
  color: #fff;
  font-size: 0.875rem;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
.side-banner {
  position: fixed;
  right: -10px;
  top: 200px;
  width: 70px;
  height: 300px;
  z-index: 20;
}

/* =========================
  メインビジュアル
========================= */
.mv {
  background-color: #fff;
  padding-bottom: 126px;
  position: relative;
  padding-top: 20px;
}

.mv:after {
  content: '';
  position: absolute;
  left: 0;
  top: -165px;
  width: 100%;
  height: calc(100% - -165px);
  background: url(images/top/mv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.mv:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -68px;
  width: 110%;
  /*height: 503px;*/
  height: 416px;
  background: url(images/top/mv-bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.mv-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 180px;
}

.mv-inner:after {
  content: '';
  position: absolute;
  right: -42px;
  top: 0;
  width: 539px;
  height: 678px;
  background: url(images/top/mv-thum.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.mv-info {
  /*margin-top: 83px;*/
  margin-top: 11vh;
  background-color: #fff;
  border: 2px solid #D7E5E5;
  padding: 30px 30px 20px 36px;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 815px;
  border-radius: 16px;
}

.mv-info dl {
  display: flex;
  gap: 2px;
}

.mv-info dl + dl {
  margin-top: 4px;
}

.mv-info dl dt {
  width: 106px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #077E78;
}

.mv-info dl dd {
  flex: 1;
  font-weight: 700;
}

.mv-info dl dd .txt01 {
  font-size: 1.25rem;
}

.mv-info dl dd .txt02 {
  font-size: 2rem;
  line-height: 1.1;
}

.mv-info dl dd .arw {
  margin-left: 7px;
  margin-right: 4px;
  height: calc(12px / 2 * tan(58deg));
  width: 8px;
  clip-path: polygon(0% 0, 100% 50%, 0 100%);
  display: inline-block;
  background-color: var(--color_green);
} 

.mv-info .c-btn {
  position: absolute;
  right: 36px;
  top: 34px;
}

/* =========================
  News
========================= */
.news .c-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-bottom: 0;
  padding-left: 120px;
  padding-right: 120px;
  position: relative;
  z-index: 2;
}

.news .info {
  margin-top: 0;
}

.lead {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.lead h2 {
  font-size: 2.375rem;
  color: var(--color_green);
  font-weight: 700;
  margin-bottom: 16px;
}

.lead p {
  font-size: 1.5rem;
  font-weight: 700;
}

.news .lead {
  width: 255px;
  text-align: left;
}

.news-list {
  margin-left: auto;
  width: calc(100% - 255px);
}

.news-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E4E4E4;
}

.news-list li .news-innner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 20px;
}

.news-list li a {
  background: url(images/common/ico-arw-link-green.svg) no-repeat 100% 50%;
  background-size: 6px auto;
  padding-right: 20px;
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.news-list li .news-innner .news-thum {
  width: 140px;
}

.news-list li .news-innner .news-list-grid {
  margin-left: auto;
  width: calc(100% - 140px);
}

.news-list li .news-innner .news-date {
  color: var(--color_green);
  font-size: 1.125rem;
  font-weight: 700;
}

.news-list li .news-innner .news-title .ttl {
  font-size: 1.125rem;
  font-weight: 700;
}

/* =========================
  About
========================= */
.about_head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 32px;
}

.about_head_thum {
  order: 2;
  margin-left: auto;
  width: calc(100% - 590px);
  text-align: right;
}

.about_head_thum img {
  max-width: 393px;
}

.about_head_info {
  order: 1;
  width: 590px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.about_head_list li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  min-height: 80px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #D8D8D8;
  padding-left: 50px;
  font-size: 1.125rem;
  font-weight: 700;
}

.about_head_list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  background: var(--color_green);
  border-radius: 4px;
  height: calc(100% - 10px);
}

.about_head_list li:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -17px;
  width: 32px;
  height: 25px;
  background: url(images/common/ico-check-green.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
}

/*point*/
.about .c-center {
  padding-bottom: 0;
  padding-top: 0;
}

.about .c-center + .c-center02 {
  padding-bottom: 0;
}

.about-point {
  background-color: rgba(237, 245, 244, 0.6);
  border-radius: 20px;
  padding: 24px 120px 40px;
  margin-bottom: 30px;
}

.h3-ttl {
  color: var(--color_green);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-point .h3-ttl {
  margin-bottom: 30px;
  text-align: center;
}

.about-point .h3-ttl span {
  padding-left: 47px;
  background: url(images/top/ttl-ico-point.png) no-repeat left center;
  background-size: 46px;
}

.point-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 50px;
}

.point-list li {
  width: 33.3333%;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  padding: 0 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.point-list li img {
  margin: 0 auto 20px;
  display: block;
  margin-top: -25px;
}

.point-list li .point-list-ttl {
  border-bottom: 1px dashed var(--color_green);
  padding-bottom: 15px;
  margin-bottom: 19px;
  color: var(--color_green);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.point-list li .txt16 {
  line-height: 1.5;
  text-align: center;
}

/*INFO*/
.info {
  padding: 40px 0px;
  margin: 80px 0 0px;
  background-color: rgba(245, 245, 245, 0.6);
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.info.sub {
  margin-top: 20px;
}

.info .c-center02 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.info-left ,
.info-right {
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.info-ttl {
  font-weight: 700;
  color: var(--color_green);
  margin-bottom: 18px;
  font-size: 1.625rem;
}

.info-right ul li.info-list-mail {
  margin-bottom: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D8D8D8;
}

.info-right ul li.info-list-mail a {
  display: inline-block;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 52px;
  background: url(images/common/ico-mail-green02.svg) no-repeat left center;
  background-size: 36px auto;
  font-weight: 700;
  font-size: 1.25rem;
}

.info-right ul li.info-list-tell a {
  display: inline-block;
  padding-left: 52px;
  background: url(images/common/ico-tell-green02.svg) no-repeat left center;
  background-size: 36px auto;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--color_green);
  pointer-events: none;
}

.info-left .c-btn {
  justify-content: flex-start;
}

.info-right .info-open {
  font-weight: 500;
  margin-top: 5px;
}

.about_btm {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.about_btm .lead {
  width: 210px;
  text-align: left;
}

.about-entry {
  margin-left: auto;
  width: calc(100% - 210px);
}

.about-entry dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 19px;
  padding-bottom: 19px;
  border-bottom: 1px solid #D8D8D8;
}

.about-entry dl dt {
  width: 145px;
  color: var(--color_green);
  font-size: 1.125rem;
  font-weight: 700;
}

.about-entry dl dd {
  margin-left: auto;
  width: calc(100% - 145px);
}

.trial-case__lists {
  margin-top: 20px;
  padding: 20px 30px 14px;
  background-color: #F5F5F5;
}

.trial-case__lists li {
  margin-bottom: 6px;
}

.trial-case__lists--inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.trial-case__lists--inner span {
  font-weight: 700;
  color: var(--color_green);
  width: 95px;
}

.trial-case__lists--inner p {
  font-weight: 700;
  margin-left: 16px;
  width: calc(100% - 95px);
}

/*FLOW*/

.flow-list {
  margin-bottom: 41px;
}

.flow-list li {
  margin-bottom: 22px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding: 16px 80px;
  background-color: #EFF6F5;
  border-radius: 16px;
  position: relative;
}

.flow-list li:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 89px;
  height: 23px;
  margin-left: -45px;
  background: url(images/top/flow-arw.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.flow-list li:last-child:after {
  display: none;
}

.flow-list li .flow-thum {
  width: 100px;
  margin-right: 80px;
}

.flow-list li:nth-child(6),
.flow-list li:nth-child(7) {
  background-color: #F5F5F5;
}

.flow-list li .flow-info {
  margin-left: auto;
  width: calc(100% - 180px);
  padding: 10px 0;
  padding-right: 20px;
}

.flow-list li .flow-info h3 {
  color: var(--color_green);
  font-size: 1.5rem;
  font-weight: 700;
}

.flow-list li:nth-child(7) .flow-info h3,
.flow-list li:nth-child(6) .flow-info h3 {
  color: #C84302;
}

.flow-list li .flow-info a:not([class]) {
  text-decoration: underline;
  color: var(--color_green);
}

.flow-info-contact {
  margin-top: 12px;
}

.flow-info-contact .ttl {
  margin-bottom: 0px;
  font-weight: 700;
}

.flow-info-contact a {
  font-size: 1.25rem;
  padding-left: 29px;
  background: url(images/common/ico-tell-green02.svg) no-repeat left center;
  background-size: 24px auto;
  pointer-events: none;
}

.flow-info-contact span {
  font-size: 0.8125rem;
}

/*recruit*/
.recruit {
  padding-bottom: 120px;
}

.entry-image {
  background-color: #fff;
  padding: 30px 120px;
  border: 1px solid #E4E4E4;
}

.entry-image .ttl {
  color: #015CB5;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.entry-image img {
  max-width: 825px;
  margin: 0 auto;
  display: block;
}
#searchform2 {
  width: 100%;
  margin: 30px auto 0;
}

#searchform2 #w_place, #searchform2 #w_kind {
  width: 100%;
  max-width: 340px;
  background: #fff;
  display: inline-block;
  height: 48px;
  padding-right: 30px;
  box-shadow: none;
  border: 1px solid var(--color_green);
  border-radius: 5px;
  padding-left: 10px;
  color: #707070;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  background-image: url(images/common/ico-arw-btm-green.svg);
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 6px;
}

#searchform2 #w_place.active, 
#searchform2 #w_kind.active {
  background-color: #E4E4E4;
  pointer-events:none;
}

#searchform2 #w_place {
  width: 200px;
}

#searchform2 select {
  margin-bottom: 10px;
}

#searchform2 .input-free {
  width: 100%;
  max-width: 480px;
  background: #fff;
  display: inline-block;
  height: 48px;
  padding-right: 10px;
  box-shadow: none;
  border: 1px solid var(--color_green);
  border-radius: 5px;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#searchform2 .btn-submit {
  padding: 0;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  background: url(images/common/ico-search-white.svg) no-repeat 89% 50% var(--color_green);
  background-size: 24px auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  border: none;
  font-size: 1.125rem;
  border-radius: 0px;
  width: 280px;
  height: 68px;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 29px;
  border-radius: 10px;
}

#searchform2 .search__btn {
  background-color: #929292;
  width: 200px;
  height: 68px;
  line-height: 68px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  display: inline-block;
  border-radius: 10px;
}

.search__detail {
  background: #F5F5F5;
  margin: 14px 0 40px;
  border: 1px solid #E4E4E4;
  padding: 0px;
  border-radius: 10px;
}

.search__detail__body--inner {
  padding: 20px 30px 20px;
  background-color: #fff;
}

.search__detail__body--inner fieldset + fieldset {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #D8D8D8;
}

.search__detail__head {
  padding: 20px 90px;
  position: relative;
  background-color: #F5F5F5;
  border-radius: 10px;
}

.search__detail__head .search__detail__toggle {
  position: absolute;
  right: 20px;
  top: 11px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color_green);
}

.search__detail__head .search__detail__toggle span:before {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -1px;
  width: 14px;
  height: 2px;
  background: #fff;
}

.search__detail__head .search__detail__toggle span:after {
  content: '';
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -7px;
  width: 2px;
  height: 14px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: #fff;
}

.search__detail__head.is-open .search__detail__toggle span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.search__detail__ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color_green);
}

.search__detail__dl dt {
  font-weight: 700;
  color: var(--color_green);
  margin-bottom: 5px;
}

.search__detail__dl dd {
  padding-left: 00px;
}

.search__detail__body {
  display: none;
}

.search__detail__body fieldset + fieldset {
  margin-top: 20px;
}

.search__detail__dl .checkbox_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 24px;
}

.search-category span,
.checkbox_wrap > label span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 3px;
}

.search__detail__dl.type02 label {
  width: 100%;
  display: block;
}

.search-bottom-area {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-top: 24px;
}

.search-bottom-area .search-category {
  width: 645px;
}

.search-category ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding-left: 10px;
}

.recruit-btn.top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.recruit .c-center02.bt {
  padding-bottom: 0;
}

.countBox {
  margin-bottom: 24px;
  color: var(--color_green);
  font-weight: 700;
  font-size: 1rem;
}

.recruit-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 17px 1.685%;
  width: 100%;
}

.recruit-archive-list .recruit-list li.recruit-list-items {
  width: 32.21%;
  border: 1px solid var(--color_green);
}

.recruit-list li.recruit-list-items a {
  display: inline-block;
  height: 100%;
  background-color: #fff;
  position: relative;
}

.recruit-list li.recruit-list-items a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color_green);
}

.recruit-list li.recruit-list-items a:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 12px;
  height: 8px;
  margin-left: -6px;
  background: url(images/common/ico-arw-btm-white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  z-index: 1;
}

.top-recruit-head__catch {
  margin-bottom: 40px;
  color: var(--color_green);
  padding: 40px 0;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
}

.top-rec-slider {
  width: 100%;
}

.top-rec-slider .slick-slide  {
  margin: 0 11px;
}

.top-rec-slider .recruit-list-items {
  border: 1px solid var(--color_green);
}

.top-rec-slider a {
  display: inline-block;
  height: 100%;
  background-color: #fff;
  position: relative;
}

.top-rec-slider a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color_green);
}

.top-rec-slider a:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 12px;
  height: 8px;
  margin-left: -6px;
  background: url(images/common/ico-arw-btm-white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  z-index: 1;
}

.interview-slider,
.top-rec-slider {
  visibility: hidden;
}

.interview-slider.slick-initialized ,
.top-rec-slider.slick-initialized {
  visibility: visible;
}

/* PC：3件以下なら slider-controls 全体を非表示 */
@media screen and (min-width: 737px) {
  .controls-count-1,
  .controls-count-2,
  .controls-count-3,
  .controls-count-4 {
    display: none!important;
  }
  .incontrols-count-1,
  .incontrols-count-2,
  .incontrols-count-3 {
    display: none!important;
  }
}

.recruit-list-thum {
  width: 100%;
  margin-bottom: 8px;
}

.recruit-list-thum img {
  width: 100%;
}

.recruit-list-box {
  padding: 0 8px 30px;
}

.recruit-list-number {
  text-align: right;
  margin-bottom: 10px;
  font-size: 0.875rem;
  font-weight: 700;
}

.recruit-list-box .ttl {
  color: var(--color_green);
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 700;
}

.recruit-lists-cat {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 6px;
}

.recruit-lists-cat li {
  background-color: #D5E5E4;
  text-align: center;
  padding: 4px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 20px;
  line-height: 1.3;
}

.recruit-job-btm p {
  font-size: 0.875rem;
  padding-left: 32px;
  font-weight: 700;
  margin-top: 5px;
}

.recruit-job-btm .job-area {
  background: url(images/common/ico-recruit-location.svg) no-repeat 0 4px;
  background-size: 22px auto;
  line-height: 2;
}

.recruit-job-btm .job-jikyu {
  background: url(images/common/ico-recruit-yen.svg) no-repeat 0 4px;
  background-size: 22px auto;
  line-height: 2;
}

.recruit-btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.slider-controls ,
.slider-controls2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

/*一時停止*/
.row_btns {
  width: 30px;
  height: 22px;
  order: 1;
  display: none;
}

.row_btns button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit;
  cursor: pointer;
  padding: 0;
}

.row_btns button img {
  display: block;
}

.row_btns .slick_pause .btn-start ,
.row_btns .slick_pause2 .btn-start {
  display: none;
}

.row_btns .slick_pause.paused .btn-pause ,
.row_btns .slick_pause2.paused .btn-pause {
  display: none;
}

.row_btns .slick_pause.paused .btn-start ,
.row_btns .slick_pause2.paused .btn-start {
  display: block;
}

/*INTERVIEW*/
.interview {
  padding-bottom: 110px;
  background-color: rgba(237, 245, 244, 0.6);
}

.interview .c-center {
  padding-bottom: 0;
}

.h1-ttl .in-sub-ttl {
  color: #333;
  font-size: 1.125rem;
  display: block;
}

.interview-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.interview-slider .slick-slide {
  margin: 0 19px;
}

.interview-slider-items {
  /*margin: 0 2.08vw;*/
  // margin: 0 19px;
  background: #fff;
  height: 100%;
  max-width: 640px;
  background-color: #fff;
  border: 1px solid #E4E4E4;
}

.interview-slider-items a {
  display: block;
  padding: 20px 20px 45px;
  position: relative;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.interview-slider-items a:after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 40px;
  height: 40px;
  background: url(images/common/ico-arw-green.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
}

.interview-slider-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.interview-slider-head .thum {
  max-width: 200px;
  width: 34%;
}

.interview-slider-head .interview-info {
  margin-left: auto;
  width: calc(100% - 36%);
}

.interview-slider-head .interview-info .label {
  margin-bottom: 12px;
}

.interview-slider-head .interview-info .label span {
  display: inline-block;
  background: #FBF7F0;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  padding: 3px 24px;
}

.interview-slider-head .interview-info .in-com-name ,
.interview-slider-head .interview-info .in-job-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.interview-slider-items h3 {
  font-weight: 700;
  color: var(--color_green);
  font-size: 1.25rem;
  padding-bottom: 6px;
  margin-top: 6px;
}

.interview-slider-items .txt16 {
  line-height: 1.5;
}

.interview-slider .slick-track {
  display: -webkit-flex!important;
  display: -moz-flex!important;
  display: -ms-flex!important;
  display: -o-flex!important;
  display: flex!important;
}

.slick-slide {
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

.interview-slider .slick-dots {
  width: auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -63px;
}

.interview-slider .slick-dots li button:before {
  background-color: #707070;
}

.interview-slider .slick-dots li.slick-active button:before {
  background-color: var(--color_green);
}

.interview-slider .slick-dots li button:hover:before, 
.interview-slider .slick-dots li button:focus:before {
  background: var(--color_green);
}

.ft-banner {
  background-color: #fff;
}

.ft-banner .c-center {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ft-banner-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.ft-banner-list li {
  width: auto;
  height: 92px;
}

.ft-banner-list li img {
  height: 100%;
  width: auto;
}

/* =========================
  下層
========================= */

.sub-page {
  position: relative;
  z-index: 1;
}

/*事例・実績紹介*/

.h1-ttl {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2.375rem;
  color: var(--color_green);
  text-align: center;
}

.h1-ttl p {
  color: #333;
  font-size: 1rem;
  display: block;
  margin-top: 10px;
}

.h2-ttl {
  margin-bottom: 35px;
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
  display: block;
  color: #333!important;
  padding-left: 20px;
  position: relative;
  border-left: 4px solid #8DD8D4;
}

.h2-ttl:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 35%;
  background: #077E78;
}

.case-list {
  margin-top: 60px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: flex-start;
  align-items: flex-start;
  gap: 58px 4%;
}

.case-list > li {
  width: 48%;
  background-color: #fff;
  border: 1px solid #E4E4E4;
  padding: 37px 20px 57px 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.1);
  box-shadow: 0 3px 6px rgba(0,0,0,.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.case-list-items .case-target {
  display: inline-block;
  position: absolute;
  left: 30px;
  top: -20px;
  color: #fff;
  padding: 8px 30px;
  border-radius: 200px;
  background-color: #015CB5;
  font-weight: 700;
}

.case-list-items .case-list-title {
  font-weight: 700;
  color: #333;
  font-size: 1.37rem;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E4E4E4; 
}

.accordion-text {
  padding: 0 10px 10px;
  overflow: hidden; /* テキストを隠す */
  position: relative;
}

.accordion-text p {
  line-height: 1.5;
}

.accordion-text.is-hide {
  height: 120px;
}

.case-list > li.case-list-items.empty-btn .js-accordion-btn {
  display: none;
}

/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
  display: none;
}

.accordion-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  background: var(--color_green);
  text-align: left;
  transition: all .2s;
  color: #fff;
  cursor: pointer;
  padding-left: 190px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion-btn:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  margin-left: 38px;
  width: 14px;
  height: 18px;
  background: url(images/case/arw-btm-case-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.accordion-btn.is-show:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 13px;
}

.accordion-btn.is-show {
  padding-left: 220px;
}

.case-list-items.type02 .case-target {
  background-color: #CF1A1A;
}

.case-list-items ul li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.case-list-items ul li:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 13px;
  width: 3px;
  height: 3px;
  background: #CF1A1A;
  border-radius: 10px;
}

.case-achievement {
  margin-top: 80px;
}

.achievement-catch {
  text-align: center;
  margin-bottom: 40px;
}

.achievement-catch p {
  font-weight: 700;
  line-height: 1.5;
}

.achievement-catch p .txt02 {
  font-size: 1.625rem;
}

.case-achievement-thum {
  background-color: #FCFBFB;
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid #E4E4E4;
}

/* 求人情報 */

.countBox {
  margin-bottom: 24px;
  color: var(--color_green);
  font-weight: 700;
  font-size: 1rem;
}

/*ページナビ*/
.pagenavi {
  text-align: left;
  margin: 20px 0 24px;
  position: relative;
}

.wp-pagenavi {
  width: auto;
  max-width: 80%;
  display: inline-block;
}

.wp-pagenavi span,
.wp-pagenavi a {
  min-width: 35px;
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  line-height: 35px;
  height: 35px;
  color: var(--color_green);
  text-align: center;
  border: var(--color_green) solid 1px;
}

.wp-pagenavi span.current {
  background: var(--color_green);
  color: #fff;
}

.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first {
  padding: 0 3px;
}

.count-post {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--color_green);
  font-weight: 700;
}

.recruit-archive-list {
  margin-top: 40px;
}

.job-entry-info {
  position: relative;
  background-color: #EDF5F4;
  padding: 30px;
  border-radius: 20px;
  margin-top: 90px;
  padding-top: 40px;
}

.job-entry-info:before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -300px;
  top: -70px;
  width: 600px;
  height: 40px;
  background: url(images/common/recruit-arw.svg);
  background-repeat:  no-repeat;
  background-position: top center;
}

.job-entry-info__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.job-entry-info__inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 20px 0 0;
}

.job-entry-info_left,
.job-entry-info_right {
  width: 50%;
  text-align: center;
}

.job-entry-info_left .ttl,
.job-entry-info_right .ttl {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.job-entry-info_left .txt,
.job-entry-info_right .txt {
  margin-bottom: 16px;
  font-weight: 500;
}

.btn-rec-type .btn-rec-type-btn {
  text-align: center;
  display: inline-block;
  background: url(images/common/ico-mail-white.svg) no-repeat 86% 55%;
  background-size: 28px auto;
  background-color: var(--color_green);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  padding: 24px 24px 24px;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
}

.job-entry-info_right .entry-btn a {
  padding: 9px 39px;
}

.btn-rec-type p {
  text-align: left;
  margin-left: 30px;
  margin-top: 10px;
  font-weight: 700;
}

/*求人詳細*/

.h2_ttl {
  text-align: center;
  color: var(--color_green);
  font-weight: 700;
  font-size: 1.625rem;
  margin-bottom: 20px;
}

.job_detail_list .h2_ttl {
  margin-bottom: 56px;
}

.recruit_detail .point {
  background-color: #E7F1F0;
  padding: 20px 10px;
  margin-bottom: 40px;
}

.recruit_detail .point p {
  font-weight: 700;
}

.recruit_detail {
  padding: 0 80px;
}

.job-entry-info .entry-btn {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}

.body_detail table {
  clear: both;
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  position: relative;
  margin-bottom: 35px;
}

.body_detail table tr th,
.body_detail table tr td {
  border: solid 1px var(--color_green); 
  padding: 15px 12px;
  vertical-align: top;
  font-size: 1rem;
}

.body_detail table tr th {
  width: 181px;
  background-color: #E7F1F0;
  text-align: left;
  font-weight: 700;
}

.back-search-btn {
  margin: 60px 0 80px;
}

.h2-ttl-type01 {
  text-align: center;
  margin-bottom: 35px;
}

.h2-ttl-type01 span {
  font-size: 1.625rem;
  line-height: 1.5;
  color: var(--color_green);
  display: inline-block;
  padding-left: 43px;
  padding-right: 43px;
  background: url(images/common/fixed-banner-ttl-left.svg) no-repeat left center,
  url(images/common/fixed-banner-ttl-right.svg) no-repeat right center;
  background-size: 12px auto, 12px auto;
  font-weight: 700;
}

.back-search-btn.c-btn {
  margin: 60px auto 0;
}

/*faq*/

.lead.type02 h2,
.h2-ttl {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.faq-list {
  border: 1px solid var(--color_green);
  background: #fff;
  position: relative;
  border-radius: 10px;
}

.faq-accordeon-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
  position: relative;
  justify-content: space-between;
}

.faq-accordeon-list li {
  width: 48%;
  background: var(--color_green);
  border-radius: 10px;
}

.faq-accordeon-list li a {
  text-align: center;
  padding: 18px;
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  color: #fff;
  background: url(images/common/ico-arw-btm-white02.svg) no-repeat 95% 50%;
  background-size: 12px auto;
}

.faq-block {
  margin-bottom: 100px;
}

.faq-block:last-child {
  margin-bottom: 0;
}

.faq-block .faq-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.faq-block .faq-list .question {
  padding: 20px 100px 20px 59px;
  background-color: rgba(7,126,120,.1);
  cursor: pointer;
}

.faq-list h3 {
  font-size: 1rem;
  color: var(--color_green);
  font-weight: 700;
}

.open-close {
  position: absolute;
  top: 17px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color_green);
}

.answer {
  padding: 20px 90px 20px 59px;
}

.open-close:before {
  content: '';
  position: absolute;
  right: 11px;
  top: 50%;
  margin-top: -1px;
  width: 14px;
  height: 2px;
  background: #fff;
}

.open-close:after {
  content: '';
  position: absolute;
  right: 17px;
  top: 50%;
  margin-top: -7px;
  width: 2px;
  height: 14px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: #fff;
}

.question.is-open .open-close:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*policy*/

.h3-ttl-type01 {
  font-size: 1.5rem;
  background-color: #E7F1F0;
  padding: 6px 20px;
  margin: 25px 0 24px;
  font-weight: 700;
}

.policy-box ,
.privacy-box {
  margin-bottom: 40px;
}

.policy-box.first {
  margin-top: 20px;
}

.policy-box p  {
  font-size: 1rem;
  padding-left: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-box p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-box ul ,
.privacy-box ul {
  padding: 0 20px;
}

.policy-box ul li  ,
.privacy-box ul li  {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-box ul li:before ,
.privacy-box ul li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--color_green);
  border-radius: 10px;
}

.policy-box ol ,
.privacy-box ol {
  counter-reset: item;
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-box ul ,
.privacy-box ol {
  padding-left: 0;
}

.policy-box ol li ,
.privacy-box ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
}

.policy-box ol li:before ,
.privacy-box ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 1rem;
  color: #333;
}

.policy-box .h3-title.u-mt-ver {
  margin-top: 50px;
}

.policy-box a {
  text-decoration: underline;
  color: var(--color_green);
}

.policy-box .h3-title {
  margin-bottom: 14px;
}

.policy-box dl {
  margin-bottom: 26px;
}

.policy-box dt {
  font-weight: 500;
  color: var(--color_green);
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.policy-box dd {
  padding-left: 25px;
}

.policy-box-inner {
  padding-left: 20px;
}

/* accessibility */
.accessibility-table table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}
.accessibility-table table th {
  background-color: #F7F7F7;
  padding: 6px 20px;
  border: 1px solid #C5C5C5;
  border-bottom: none;
  text-align: center;
  vertical-align: middle;
}
.accessibility-table table td {
  border: 1px solid #C5C5C5;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}
.accessibility-table table .wd30 {
  width: 40%;
  text-align: left;
}
.accessibility-table table .wd20 {
  width: 20%;
  text-align: left;
}
.accessibility-table table th.wd30 ,
.accessibility-table table th.wd20 {
  text-align: center;
}

/*privacy*/
.privacy-box .h2-ttl {
  margin-top: 50px;
}

/*contact*/
.cont .step_confirm,
.cont .step_thanks {
  display: none;
}

.contact-privacy {
  width: 100%;
  height: 260px;
  overflow-y: scroll;
  padding: 30px;
  border: 1px solid #DDDDDD;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact-privacy .ttl {
  font-weight: bold;
}

.contact-privacy .txt16 {
  margin-bottom: 15px;
}

.contact-privacy .h2-ttl {
  color: var(--color_green)!important;
  font-size: 1.375rem;
  padding-left: 0;
  border-left: none;
}

.contact-privacy .h2-ttl:before {
  display: none;
}

.contact-privacy .h3-ttl {
  font-size: 1.375rem;
  margin-top: 40px;
  color: #333;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.p-form-flow {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--color_green);
}

.p-form-flow li {
  width: 330px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--color_green);
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  background-color: #E7F1F0;
}

.p-form-flow li.is-active {
  background-color: var(--color_green);
  color: #fff;
}

.p-form-flow li:nth-child(1):before,
.p-form-flow li:nth-child(2):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: -20px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
  border-top: 40px solid var(--color_green);
  border-bottom: 0;
  z-index: 1;
}

.p-form-flow li:nth-child(1):after,
.p-form-flow li:nth-child(2):after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: -19px;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
  border-top: 40px solid #E7F1F0;
  border-bottom: 0;
  z-index: 1;
}

.p-form-flow li.is-active:after {
  display: none;
}

.thanks-block {
  margin: 80px 0 100px;
}

/*sitemap*/
.sitemap_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
}

.sitemap_wrap .sitemap_col1 {
  width: 20%;
}

.sitemap_wrap .sitemap_col1 a {
  color: #0C7065;
  font-weight: 700;
}

.sitemap_wrap .sitemap_col2 ,
.sitemap_wrap .sitemap_col3 {
  width: 35%;
}

.sitemap_wrap ul li {
  margin-bottom: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #E4E4E4;
}

.sitemap_wrap ul li a {
  font-size: 1rem;
  font-weight: 500;
  background: url(images/common/ico-arw-link-green.svg) no-repeat 0% 50%;
  background-size: 6px auto;
  padding-left: 15px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/*インタビュー*/

.interview-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%;
}

.interview-items {
  width: 49%;
  background-color: #fff;
  border: 1px solid var(--color_green);
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.16);
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.interview-items a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px 10px 44px;
  position: relative;
}

.interview-items-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.interview-items-inner .interview-img {
  width: 180px;
}

.interview-items-inner .interview-info {
  width: calc(100% - 195px);
  margin-left: auto;
}

.interview-items-inner .interview-info-comname {
  color: var(--color_green);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

.interview-items-inner .interview-info-name {
  color: var(--color_green);
  font-weight: 700;
  font-size: 0.875rem;
}

.interview-items-inner .interview-info-name .title .top-none {
  display: none;
}

.interview-items-inner .c-link {
  font-size: .875rem;
  padding-left: 0;
  padding-right: 47px;
  background: url(images/common/ico-arw-green.svg) no-repeat left center;
  background-position: right center;
  background-size: 38px auto;
  height: 38px;
  line-height: 38px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.interview-info-ttl h2 {
  font-weight: 700;
  border-bottom: 1px dashed #DDDDDD;
  padding-bottom: 9px;
  margin-bottom: 9px;
  line-height: 1.4;
}

/*イタンビュー新規*/
.interview-head-single,
.interview-btm {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #CCCCCC;
}

.interview-head-single .interview-catch ,
.interview-btm .interview-catch {
  background-color: #FDF7F4;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 35px;
  color: #23558D;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.interview-head-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.interview-head-inner.type02 {
  -ms-align-items: center;
  align-items: center;
}

.interview-head-inner a {
  text-decoration: underline;
  color: var(--color_green);
}

.interview-head-inner .interview-head-thum {
  /*width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;*/
  max-width: 270px;
  margin-right: 35px;
}

.interview-head-inner .interview-head-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.interview-head-inner .interview-head-info .com-name {
  color: var(--color_green);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.interview-head-inner .interview-head-info .com-ceo-name {
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
}

.interview-compnay-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color_green);
}

.interview-compnay-info + .interview-compnay-info {
  border-top: none;
  margin-top: 0;
}

.interview-compnay-info__ttl {
  font-weight: 700;
  margin-bottom: 2px;
}

.interview-loop-list {
  margin-bottom: 40px;
}

.interview-loop-list .question {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.interview-loop-list .question span {
  color: var(--color_green);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  top: 3px;
  margin-right: 20px;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
}

.interview-loop-list__inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.interview-loop-list__inner .thum {
  width: 269px;
  margin-right: 21px;
}

.interview-loop-list__inner .interview-loop-list__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.interview-loop-list__inner.right .thum {
  margin-right: 0;
  margin-left: 21px;
  order: 2;
}

.interview-loop-list__inner.right .interview-loop-list__txt {
  order:1;
}

.interview-message {
  margin-bottom: 42px;
}

.interview-message__ttl {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.interview-message__ttl span {
  color: var(--color_green);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  top: 3px;
  margin-right: 20px;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
}

.interview-message__txt + .interview-message__txt {
  margin-top: 20px;
}
.interview-loop-list__txt p,
.interview-message__txt p {
  margin-bottom: 20px;
}

.interview-message__txt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.interview-message__txt__thum {
  /*float: left;*/
  flex: 1;
  margin: 0 20px 10px 0;
  max-width: 270px;
}

.interview-message__txt__info {
  flex: 2;
}

.h2-ttl02 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color_green);
}

/*404*/
.btn-area.errorBtn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 70px;
  max-width: 100%;
}

.btn-area.errorBtn .btn01 {
  margin: 0 20px;
  max-width: 420px;
}

.in-single-label {
  margin-bottom: 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E4E4;
}

/*news archive*/
.news-list.sub-pg {
  margin-left: 0;
  width: 100%;
  padding: 0 100px;
  margin-bottom: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*single*/

.single-page h2 {
  margin-bottom: 25px;
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
  display: block;
  padding-left: 20px;
  position: relative;
  border-left: 4px solid #8DD8D4;
}

.single-page h2:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 35%;
  background: #077E78;
}

.single-page h3 {
  font-size: 1.5rem;
  background-color: #E7F1F0;
  padding: 6px 20px;
  margin: 25px 0 24px;
  font-weight: 700;
}

.single-page h4 {
  color: var(--color_green);
  margin-bottom: 24px;
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 700;
}

.single-page p:not([class]) {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.single-page ul:not([class]) {
  margin-bottom: 20px;
}

.single-page ul:not([class]) li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  font-size: 1rem;
}

.single-page ul:not([class]) li:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  left: 4px;
  top: 13px;
  font-size: 18px;
  background-color: var(--color_green);
}

.single-page ol {
  counter-reset: item;
  list-style-type: none;
  margin-bottom: 20px;
}

.single-page ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
}

.single-page ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  left: 0px;
  top: -2px;
  font-size: 1rem;
  color: var(--color_green);
}

.single-page a:not([class]) {
  color: var(--color_green);
  text-decoration: underline;
}

.single-page a:not([class]):hover {
  text-decoration: none;
}

.single-page table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  position: relative;
  margin-bottom: 15px;
}

.single-page table tr th,
.single-page table tr td {
  border: solid 1px #CCCCCC;
  vertical-align: middle;
  font-size: 1rem;
  padding: 5px;
}

.single-page table tr th {
  background: #E7F1F0;
  color: var(--color_green);
  font-weight: 700;
}

.news-date {
  color: var(--color_green);
  text-align: right;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 10px;
}

.news-single-btn {
  margin: 60px auto 0;
}

/*オンライン面談*/

.online table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 12px;
}

.online table th {
  background-color: #E7F1F0;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 20px;
  border: 1px solid #CCCCCC;
}

.online table td {
  padding: 12px 20px;
  border: 1px solid #CCCCCC;
}

.online table td a {
  color: var(--color_green);
  font-weight: 700;
  text-decoration: underline;
}

.online table .wd40 {
  width: 400px;
}

.online-box + .online-box {
  margin-top: 60px;
}

.online-list-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0 32px;
}

.online-list-head li {
  width: 47%;
}

.online-list-head li a {
  text-align: center;
  display: inline-block;
  width: 100%;
  color: var(--color_green);
  font-size: 1.125rem;
  padding: 20px;
  border: 1px solid var(--color_green);
  position: relative;
  border-radius: 200px;
  font-weight: 700;
}

.online-list-head li a:before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 12px;
  background: url(images/top/ico-arw-blue.svg) no-repeat right center;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.online-box-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.online-box-inner .inner-left {
  width: 50%;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.online-box-inner .inner-right {
  margin-left: auto;
  width: 50%;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.online-box-inner .inner-right img + img {
  margin-top: 20px;
}

.online-box-wrap .ttl {
  color: var(--color_green);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.online-box-wrap .sub-ttl {
  color: #CF1A1A;
  margin-bottom: 15px;
  font-weight: 700;
}

.online-box-inner .inner-left p {
  letter-spacing: -0.02em;
}

.online-box-inner .inner-left p + p {
  margin-bottom: 16px;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

/* filter: drop-shadow(0 3px 6px rgba(0, 55, 51, 0.1));
font-size: clamp(0.75rem, 1.25vw, 1rem);
aspect-ratio: 1 / 2;
background: center/contain url("../images/aaa.svg") no-repeat; */

.c-center {
  width: 100%;
  max-width: 1320px;
  padding: var(--paddingSection) 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.c-center02 {
  width: 100%;
  max-width: 1280px;
  padding: var(--paddingSection) 120px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

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

/* color */
.color-green {
  color: #077E78;
}

/*btn*/
.c-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
  max-width: 510px;
}

.c-btn .btn {
  width: 100%;
  display: inline-block;
  padding: 20px 39px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  overflow: hidden;
  background: url(images/common/ico-target.svg) no-repeat 95% 50%;
  background-color: var(--color_yellow);
  background-size: 20px;
}

.c-btn .btn span.txt01 {
  margin-bottom: 7px;
  font-size: 1.125rem;
  display: block;
  line-height: 1.2;
}

.c-btn .btn span.txt02 {
  margin: 0 auto 4px;
  display: inline-block;
  padding: 1px 3px;
  border: 1px solid #333333;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.125rem;
  padding-left: 14px;
}

.c-btn .btn p {
  font-size: 1.25rem;
}

.c-btn .btn p .txt02 {
  margin-right: 10px;
}

.btn01 {
  display: inline-block;
  max-width: 500px;
  background: url(images/common/ico-arw-btn-white02.svg) no-repeat 95% 50%;
  background-size: 7px auto;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: var(--color_green);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.btn01.type02 {
  padding: 26px 10px;
}

.entry-soon {
  position: relative;
  pointer-events:none;
}

span.entry-soon-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(51,51,51,.85);
  text-align: center;
  line-height: 1.5;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/*link*/
.c-link {
  display: inline-block;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 56px;
  background: url(images/common/ico-arw-green02.svg) no-repeat left center;
  background-size: 38px auto;
  font-size: 1.25rem;
  font-weight: 700;
}

.c-link02 {
  padding-right: 20px;
  background: url(images/common/ico-arw-link-green.svg) no-repeat right center;
  background-size: 8px;
  color: var(--color_green);
  font-weight: 700;
}

/* column */
.col-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

/*==========
タイトル&テキスト
==========*/

.txt14 {
  font-size: 0.875rem;
}

.txt18 {
  font-size: 1.125rem;
}

.txt20 {
  font-size: 1.25rem;
}

strong {
  font-weight: 700;
}

/*=== breadcrumb ===*/
.breadcrumbs {
  text-align: right;
  margin-bottom: 24px;
  margin-top: 25px;
}

.breadcrumbs ol {
  max-width: 1040px;
  margin: 0 auto;
}
.breadcrumbs ol li {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
}

.breadcrumbs ol li a {
  color: var(--color_green);
}

.breadcrumbs ol li img {
  margin-top: -2px;
}

.breadcrumbs li.arrow {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  position: relative;
  color: var(--color_green);
}

/*可変幅*/
@media screen and (max-width: 1550px){
  .l-header {
    padding: 20px;
  }
  .l-header-menu__head li.l-header-menu__head__tell span {
    display: block;
    margin-left: 30px;
  }
  .l-header-nav__item {
    margin-top: 0;
  }
  .l-header-info {
    width: auto;
  }
}
@media screen and (max-width: 1350px) {
  .mv-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }
  .mv-inner:after {
    right: 48px;
    width: 37%;
  }
  .mv-info {
    margin-top: 6vh;
  }
  .side-banner {
    top: 160px;
  }
  .mv:before {
    bottom: -128px;
  }
}
@media screen and (max-width: 1300px) {
  .logo-inner {
    width: 240px;
  }
  .l-header-info {
    padding-left: 25px;
  }
  .l-header-menu__head li + li {
    margin-left: 22px;
  }
  .l-header-menu__head li a,
  .l-header-nav__item li a,
  .l-header-name span {
    font-size: 0.875rem;
  }
  .l-header-menu__head li.l-header-menu__head__faq a {
    padding-left: 25px;
    background-size: 20px auto;
  }
  .l-header-menu__head li.l-header-menu__head__contact a {
    padding-left: 22px;
    background-size: 18px auto;
  }
  .l-header-menu__head li.l-header-menu__head__tell a {
    padding-left: 22px;
    background-size: 18px auto;
  }
  .l-header-entry {
    margin-left: 12px;
    width: 130px;
  }
  .l-header-entry a {
    padding-top: 16px;
    font-size: 0.875rem;
  }
  .about-point {
    padding: 24px 50px 40px;
  }
  .c-center02 {
    padding: var(--paddingSection) 70px;
  }
  .recruit_detail {
    padding: 0 40px;
  }
  .job-entry-info__inner {
    justify-content: space-between;
  }
  .job-entry-info_left, .job-entry-info_right {
    width: 49%;
  }
  .interview-slider-items h3 {
    font-size: 1.125rem;
  }
}