@charset "UTF-8";
/* ==========================================================================//
//
// トップページ
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
section {
  padding: 40px 0;
}
@media all and (min-width: 751px) {
  section {
    padding: 90px 0;
  }
}

.sec_ttl {
  padding-bottom: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 5px;
}
@media all and (min-width: 1001px) {
  .sec_ttl {
    padding-bottom: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 25px;
    width: min(600px, 100%);
  }
}
.sec_ttl .jp {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .sec_ttl .jp {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    font-size: clamp(15px, 1.3vw, 18px);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_ttl .jp {
    margin-top: 10px;
  }
}
.sec_ttl .en {
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  vertical-align: middle;
  color: #fff;
}
@media all and (min-width: 751px) {
  .sec_ttl .en {
    font-size: clamp(58px, 4.86vw, 68px);
  }
}

@media all and (min-width: 751px) {
  .contents_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* メインビジュアル
---------------------------------------------------------- */
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 42px);
  height: calc(100svh - (var(--header_height) + 42px));
  padding-left: 20px;
}
@media all and (min-width: 751px) {
  .mv {
    height: calc(100vh - 57px);
    padding-left: 110px;
  }
}
.mv .copy_wrap {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(240px, 64%);
}
@media all and (min-width: 751px) {
  .mv .copy_wrap {
    top: 50%;
    left: 40px;
    width: min(468px, 33.4%);
  }
}
.mv .movie {
  position: relative;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 40px;
  overflow: hidden;
}
.mv .movie::before {
  position: absolute;
  content: "";
  background-color: #595757;
  opacity: 0.15;
  inset: 0;
}
.mv .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Scroll
---------------------------------------------------------- */
.scroll_bar {
  margin: 2px 0 20px;
  position: relative;
  text-align: center;
  /* 矢印のアニメーション部分 */
  /* 矢印のアニメーション */
}
@media all and (min-width: 751px) {
  .scroll_bar {
    margin: 8px 0 26px;
  }
}
.scroll_bar span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #727171;
}
@media all and (min-width: 751px) {
  .scroll_bar span {
    padding-bottom: 1px;
  }
}
.scroll_bar::before {
  margin: auto;
  content: "";
  position: absolute;
  background-image: url(../../images/top/ico_scroll_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 17px;
  right: 0;
  left: 0;
  -webkit-animation: 2s scroll_bar infinite;
          animation: 2s scroll_bar infinite;
}
@-webkit-keyframes scroll_bar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translateY(23px);
            transform: translateY(23px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll_bar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translateY(23px);
            transform: translateY(23px);
  }
  100% {
    opacity: 0;
  }
}

/* lead
---------------------------------------------------------- */
.sec_lead {
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #63a7c3), to(#1b83c5));
  background: linear-gradient(#63a7c3 25%, #1b83c5 100%);
}
@media all and (min-width: 751px) {
  .sec_lead {
    background: -webkit-gradient(linear, right top, left top, from(#1b83c5), to(#63a7c3));
    background: linear-gradient(to left, #1b83c5, #63a7c3);
  }
}
.sec_lead .contents_wrap {
  padding: 92px 0 108px;
  position: relative;
}
@media all and (min-width: 751px) {
  .sec_lead .contents_wrap {
    padding: 80px 0;
  }
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap {
    gap: 0 80px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .person_image {
    width: 48.43%;
  }
}
@media all and (min-width: 751px) {
  .sec_lead .contents_wrap .person_image .images:nth-child(1) {
    gap: 0 153px;
  }
}
@media all and (min-width: 751px) {
  .sec_lead .contents_wrap .person_image .images:nth-child(2) {
    gap: 0 140px;
  }
}
.sec_lead .contents_wrap .person_image .person_image {
  position: absolute;
}
.sec_lead .contents_wrap .person_image .image_01 {
  top: 25%;
  left: -30px;
  width: min(60px, 100%);
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .person_image .image_01 {
    top: 13.2%;
    left: 0;
    width: min(154px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap .person_image .image_01 {
    width: min(90px, 100%);
  }
}
.sec_lead .contents_wrap .person_image .image_02 {
  top: 1.5%;
  right: -30px;
  width: min(66px, 100%);
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .person_image .image_02 {
    top: 4%;
    left: 23.5%;
    width: min(169px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap .person_image .image_02 {
    width: min(100px, 100%);
  }
}
.sec_lead .contents_wrap .person_image .image_03 {
  bottom: 1.5%;
  left: -30px;
  width: min(61px, 100%);
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .person_image .image_03 {
    top: 38%;
    left: 11.8%;
    width: min(157px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap .person_image .image_03 {
    width: min(90px, 100%);
  }
}
.sec_lead .contents_wrap .person_image .image_04 {
  top: 49.9%;
  right: -30px;
  width: min(73px, 100%);
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .person_image .image_04 {
    top: 29.3%;
    left: 34.2%;
    width: min(186px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap .person_image .image_04 {
    width: min(120px, 100%);
  }
}
.sec_lead .contents_wrap .txts {
  text-align: center;
  color: #fff;
}
@media all and (max-width: 750px) {
  .sec_lead .contents_wrap .txts {
    padding: 0 28px;
  }
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .txts {
    width: 40.8%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_lead .contents_wrap .txts {
    width: 75%;
  }
}
.sec_lead .contents_wrap .txts .lead_ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .sec_lead .contents_wrap .txts .lead_ttl {
    margin-bottom: 32px;
    font-size: 26px;
  }
}
@media all and (min-width: 1001px) {
  .sec_lead .contents_wrap .txts .lead_ttl {
    text-align: left;
  }
}
.sec_lead .contents_wrap .txts .text {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media all and (min-width: 751px) {
  .sec_lead .contents_wrap .txts .text {
    font-size: 18px;
    letter-spacing: 0.075em;
    line-height: 2;
  }
}
.sec_lead .contents_wrap .txts .text p:not(:last-child) {
  margin-bottom: 1.5em;
}

/* 会社を知る
---------------------------------------------------------- */
.sec_company {
  position: relative;
  background-image: url(../../images/common/bg_stripe.jpg);
  background-size: auto 664px;
  background-position: top left;
}
.sec_company .contents_wrap {
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: min(1190px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_company .contents_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_company .contents_wrap .image {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1.5px solid #ED7B89;
  border-radius: 0 0 0 60px;
}
@media all and (min-width: 1001px) {
  .sec_company .contents_wrap .image {
    margin-bottom: 0;
    width: 50.4%;
  }
}
.sec_company .contents_wrap .txts {
  padding: 20px 15px;
  position: relative;
  background-color: #fff;
  border-radius: 0 0 0 60px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
@media all and (min-width: 1001px) {
  .sec_company .contents_wrap .txts {
    margin: 139px 0 0 -48px;
    padding: 45px 0 40px 38px;
    width: 54%;
  }
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap .txts {
    padding: 45px 0 40px 38px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_company .contents_wrap .txts {
    padding: 45px 38px 40px;
  }
}
.sec_company .contents_wrap .txts .sec_ttl {
  margin-bottom: 15px;
  background-image: radial-gradient(circle, #ED7B89 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-repeat: space no-repeat;
  background-position: left bottom;
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap .txts .sec_ttl {
    margin-bottom: 20px;
  }
}
.sec_company .contents_wrap .txts .sec_ttl .en {
  -webkit-text-stroke: 1px #ED7B89;
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap .txts .sec_ttl .en {
    -webkit-text-stroke: 1.5px #ED7B89;
  }
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap .txts p {
    width: 91%;
    line-height: 2.187;
  }
}
.sec_company .contents_wrap .txts .more_btn {
  margin-top: 15px;
}
@media all and (min-width: 751px) {
  .sec_company .contents_wrap .txts .more_btn {
    margin-top: 25px;
  }
}
.sec_company .contents_wrap .txts .more_btn a {
  --default_color: #ED7B89;
}
.sec_company .contents_wrap .txts .balloon {
  position: absolute;
  top: -55%;
  right: -20px;
  width: min(65px, 100%);
}
@media all and (min-width: 1001px) {
  .sec_company .contents_wrap .txts .balloon {
    top: auto;
    bottom: 3%;
    right: -9%;
    width: 23.29%;
  }
}
@media screen and (min-width: 1055px) and (max-width: 1310px) {
  .sec_company .contents_wrap .txts .balloon {
    right: -5%;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1054px) {
  .sec_company .contents_wrap .txts .balloon {
    right: -7%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_company .contents_wrap .txts .balloon {
    width: 15%;
    top: -100%;
    right: 0;
  }
}

/* 社員を知る
---------------------------------------------------------- */
.sec_interview {
  overflow: hidden;
  position: relative;
  background-color: #b8e1f1;
  background-image: radial-gradient(circle, #dcf0f8 12px, transparent 12px), radial-gradient(circle, #dcf0f8 12px, transparent 12px);
  background-position: 0 0, 37.5px 39px;
  background-size: 75px 78px;
}
@media all and (max-width: 750px) {
  .sec_interview {
    padding: 34px 0 60px;
  }
}
.sec_interview .wrap_txt {
  position: relative;
}
.sec_interview .bg_contents {
  padding: 25px 15px 60px;
  position: relative;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
@media all and (min-width: 751px) {
  .sec_interview .bg_contents {
    padding: 26px 40px 60px;
  }
}
@media all and (min-width: 1101px) {
  .sec_interview .bg_contents {
    margin-left: -40px;
    padding: 26px 40px 220px 0;
    border-radius: 0 60px 0 0;
    width: 48.49%;
  }
}
@media all and (min-width: 1401px) {
  .sec_interview .bg_contents {
    margin-left: 0;
  }
}
.sec_interview .bg_contents .sec_ttl {
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: radial-gradient(circle, #3B97D4 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-repeat: space no-repeat;
  background-position: left bottom;
}
@media all and (min-width: 1101px) {
  .sec_interview .bg_contents .sec_ttl {
    padding-left: 40px;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.sec_interview .bg_contents .sec_ttl .en {
  -webkit-text-stroke: 1px #3B97D4;
}
@media all and (min-width: 751px) {
  .sec_interview .bg_contents .sec_ttl .en {
    -webkit-text-stroke: 1.5px #3B97D4;
  }
}
.sec_interview .balloon {
  pointer-events: none;
  position: absolute;
  top: 35%;
  left: -20px;
  z-index: 1;
  width: min(71px, 100%);
}
@media all and (min-width: 751px) {
  .sec_interview .balloon {
    top: 24%;
    left: 0%;
    width: 12.2%;
  }
}
.sec_interview .contents {
  margin-top: -30px;
  margin-inline: auto;
}
@media all and (min-width: 1101px) {
  .sec_interview .contents {
    margin-top: -185px;
    width: min(850px, 100%);
  }
}
@media all and (max-width: 1100px) {
  .sec_interview .splide__track {
    overflow: visible;
  }
}
.sec_interview .splide__slide {
  position: relative;
}
.sec_interview .splide__slide a {
  position: relative;
  display: block;
}
.sec_interview .splide__slide a .image {
  overflow: hidden;
  border: 1.5px solid #3B97D4;
  border-radius: 0 0 0 30px;
}
.sec_interview .splide__slide a .image img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.sec_interview .splide__slide a .profile {
  margin: -70px -10px 0 auto;
  overflow: visible;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  height: auto;
  aspect-ratio: 1;
  z-index: 2;
  width: min(140px, 65.1%);
}
@media all and (min-width: 751px) {
  .sec_interview .splide__slide a .profile {
    margin: -83px -18px 0 auto;
    width: min(166px, 100%);
  }
}
.sec_interview .splide__slide a .profile .job {
  min-width: 80%;
  margin-bottom: 7px;
  padding-bottom: 12px;
  background-image: radial-gradient(circle, #3B97D4 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-repeat: space no-repeat;
  background-position: left bottom;
  text-align: center;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  .sec_interview .splide__slide a .profile .job {
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-size: 14px;
  }
}
.sec_interview .splide__slide a .profile .name {
  font-size: 18px;
}
@media all and (min-width: 751px) {
  .sec_interview .splide__slide a .profile .name {
    font-size: 22px;
  }
}
@media (hover: hover) {
  .sec_interview .splide__slide a {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sec_interview .splide__slide a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.sec_interview .splide__arrows {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
.sec_interview .splide__arrows .splide__arrow {
  display: -ms-grid;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  width: 20px;
  background-color: #3B97D4;
  border-radius: 50%;
  pointer-events: auto;
}
.sec_interview .splide__arrows .splide__arrow::after {
  content: "";
  aspect-ratio: 1;
  width: 6px;
  border-style: solid;
  border-color: #fff;
  border-width: 1px 1px 0 0;
}
.sec_interview .splide__arrows .splide__arrow > svg {
  display: none;
}
.sec_interview .splide__arrows .splide__arrow--prev {
  -webkit-transform: translateX(-30%) translateY(-75%);
          transform: translateX(-30%) translateY(-75%);
}
@media all and (min-width: 751px) {
  .sec_interview .splide__arrows .splide__arrow--prev {
    -webkit-transform: translateX(-30%) translateY(-190%);
            transform: translateX(-30%) translateY(-190%);
  }
}
@media all and (min-width: 1101px) {
  .sec_interview .splide__arrows .splide__arrow--prev {
    -webkit-transform: translateX(-190%) translateY(-190%);
            transform: translateX(-190%) translateY(-190%);
  }
}
.sec_interview .splide__arrows .splide__arrow--prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}
.sec_interview .splide__arrows .splide__arrow--next {
  -webkit-transform: translateX(35%) translateY(-75%);
          transform: translateX(35%) translateY(-75%);
}
@media all and (min-width: 751px) {
  .sec_interview .splide__arrows .splide__arrow--next {
    -webkit-transform: translateX(35%) translateY(-190%);
            transform: translateX(35%) translateY(-190%);
  }
}
@media all and (min-width: 1101px) {
  .sec_interview .splide__arrows .splide__arrow--next {
    -webkit-transform: translateX(100%) translateY(-190%);
            transform: translateX(100%) translateY(-190%);
  }
}
.sec_interview .splide__arrows .splide__arrow--next::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (hover: hover) {
  .sec_interview .splide__arrows .splide__arrow {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .sec_interview .splide__arrows .splide__arrow:hover {
    background-color: rgba(59, 151, 212, 0.7);
  }
}
.sec_interview .more_btn {
  margin-inline: unset;
  margin: 20px auto 0;
}
@media all and (min-width: 1101px) {
  .sec_interview .more_btn {
    margin: 17px -67px 0 auto;
  }
}

/* 座談会
---------------------------------------------------------- */
.sec_crosstalk {
  background: -webkit-gradient(linear, left top, left bottom, from(#FED3B0), to(#FBC6A5));
  background: linear-gradient(#FED3B0 0%, #FBC6A5 100%);
}
.sec_crosstalk .sec_ttl {
  margin-bottom: 25px;
  margin-inline: auto;
  background-image: radial-gradient(circle, #ED937B 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-repeat: space no-repeat;
  background-position: left bottom;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .sec_ttl {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_crosstalk .sec_ttl .en {
  -webkit-text-stroke: 1px #ED937B;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .sec_ttl .en {
    -webkit-text-stroke: 1.5px #ED937B;
  }
}
.sec_crosstalk .contents_wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .contents_wrap {
    gap: 0 120px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_crosstalk .contents_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (min-width: 1001px) {
  .sec_crosstalk .contents_wrap .contents {
    width: 50%;
  }
}
@media all and (max-width: 750px) {
  .sec_crosstalk .contents_wrap .contents:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_crosstalk .contents_wrap .contents:not(:first-child) {
    margin-top: 60px;
  }
}
.sec_crosstalk .contents_wrap .contents .talk_ttl {
  margin-bottom: -8px;
  position: relative;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media all and (min-width: 1001px) {
  .sec_crosstalk .contents_wrap .contents .talk_ttl {
    margin-bottom: -10px;
  }
}
@media all and (min-width: 751px) {
  .sec_crosstalk .contents_wrap .contents .talk_ttl {
    font-size: 20px;
  }
}
.sec_crosstalk .contents_wrap .contents .talk_ttl img {
  width: min(500px, 100%);
}
.sec_crosstalk .contents_wrap .contents .talk_ttl span {
  position: absolute;
  top: 35%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .contents_wrap .contents .talk_ttl span {
    top: 35%;
  }
}
.sec_crosstalk .contents_wrap .contents a {
  display: block;
}
.sec_crosstalk .contents_wrap .contents a .image {
  position: relative;
  overflow: hidden;
  border: 1.5px solid #ED937B;
  border-radius: 0 0 0 60px;
  z-index: -1;
}
.sec_crosstalk .contents_wrap .contents a .image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec_crosstalk .contents_wrap .contents a p {
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .contents_wrap .contents a p {
    margin-top: 20px;
    font-size: 22px;
  }
}
@media (hover: hover) {
  .sec_crosstalk .contents_wrap .contents a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.sec_crosstalk .more_btn {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .sec_crosstalk .more_btn {
    margin-top: 30px;
  }
}
.sec_crosstalk .more_btn a {
  --default_color: #ED937B;
}

/* 働き方を知る
---------------------------------------------------------- */
.sec_culture {
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(linear, right top, left top, from(#dfeeb5), to(#d4eeb5));
  background: linear-gradient(to left, #dfeeb5 0%, #d4eeb5);
  z-index: 0;
}
.sec_culture::after {
  position: absolute;
  content: "";
  background-image: url(../../images/culture/decoration.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  width: min(180px, 100%);
  height: 282px;
}
@media all and (min-width: 751px) {
  .sec_culture::after {
    width: min(425px, 100%);
    height: 761px;
  }
}
.sec_culture .contents_wrap {
  position: relative;
  margin-inline: auto;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: min(1200px, 100%);
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_culture .contents_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_culture .contents_wrap .txts {
  padding: 25px 15px 20px;
  position: relative;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts {
    padding: 45px 40px 40px 0;
    border-radius: 0 0 0 60px;
  }
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .txts {
    margin-right: -40px;
    width: 53.4%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_culture .contents_wrap .txts {
    padding: 45px 40px 40px;
  }
}
.sec_culture .contents_wrap .txts .sec_ttl {
  margin-bottom: 15px;
  background-image: radial-gradient(circle, #3B97D4 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-repeat: space no-repeat;
  background-position: left bottom;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts .sec_ttl {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .txts .sec_ttl {
    padding-left: 40px;
  }
}
.sec_culture .contents_wrap .txts .sec_ttl .en {
  -webkit-text-stroke: 1px #3B97D4;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts .sec_ttl .en {
    -webkit-text-stroke: 1.5px #3B97D4;
  }
}
.sec_culture .contents_wrap .txts .lead_ttl {
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts .lead_ttl {
    margin-bottom: 27px;
    text-align: center;
    font-size: 26px;
  }
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .txts .lead_ttl {
    text-align: left;
    padding: 0 10px 0 40px;
  }
}
.sec_culture .contents_wrap .txts p {
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts p {
    line-height: 2.18;
  }
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .txts p {
    padding: 0 10px 0 40px;
  }
}
.sec_culture .contents_wrap .txts .more_btn {
  margin-top: 12px;
}
@media all and (min-width: 751px) {
  .sec_culture .contents_wrap .txts .more_btn {
    margin-top: 26px;
  }
}
.sec_culture .contents_wrap .image {
  margin-top: 20px;
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .image {
    margin-top: 138px;
    position: relative;
    width: 50%;
    z-index: 1;
  }
}
.sec_culture .contents_wrap .image .culture_image {
  overflow: hidden;
  border: 1.5px solid #3B97D4;
  border-radius: 0 0 0 50px;
}
.sec_culture .contents_wrap .image .balloon {
  position: absolute;
  top: -145%;
  right: -20px;
  width: min(72px, 100%);
  z-index: 2;
}
@media all and (min-width: 1001px) {
  .sec_culture .contents_wrap .image .balloon {
    top: auto;
    bottom: 0;
    right: -10%;
    width: 27.1%;
  }
}
@media screen and (min-width: 1301px) and (max-width: 1340px) {
  .sec_culture .contents_wrap .image .balloon {
    right: -7%;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1300px) {
  .sec_culture .contents_wrap .image .balloon {
    right: -5%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .sec_culture .contents_wrap .image .balloon {
    width: 15%;
    top: -100%;
    bottom: auto;
    right: -4%;
  }
}