@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

html {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #2B2B2B;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  letter-spacing: 0.05em;
  font-weight: 500;
}

a, p, li, span, dt, dd {
  font-weight: 500;
}

a {
  color: #2B2B2B;
}

.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  max-width: 1440px;
  width: calc(100% - 64px);
  margin: auto;
}
@media (max-width: 1024px) {
  .main_width {
    width: calc(100% - 48px);
  }
}
.main_width.width1200 {
  max-width: 1200px;
}
.main_width.width1280 {
  max-width: 1280px;
  width: calc(100% - 160px);
}
@media (max-width: 1024px) {
  .main_width.width1280 {
    width: calc(100% - 20px);
  }
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/*=============================================*/
/*  ここからレイアウト関連のスタイル */
/*=============================================*/
.top_bg_fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}
.top_bg_fixed:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 10vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.bg-whiteout {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 30%);
  z-index: 0;
}

.width1920 {
  position: relative;
}

.top_fv_block {
  position: relative;
  overflow: hidden;
  padding-top: 300px;
}
.top_fv_block .fv_title {
  display: block;
  padding-bottom: 230px;
}
@media (max-width: 1024px) {
  .top_fv_block .fv_title {
    padding-bottom: 50px;
  }
}
.top_fv_block .fv_title .en {
  display: block;
  font-size: clamp(4.8rem, 5vw, 8rem);
  font-weight: bold;
  line-height: 1.14;
  font-family: "Arial", "Roboto", "Zen Kaku Gothic New", sans-serif;
}
.top_fv_block .fv_title .ja {
  padding-top: 2em;
  display: block;
  font-size: clamp(1.4rem, 1.7vw, 2.4rem);
  line-height: 1.35;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.cta_block {
  padding-top: 100px;
  padding-bottom: 230px;
}
@media (max-width: 1024px) {
  .cta_block {
    padding-top: 50px;
    padding-bottom: 140px;
  }
}

.cta_block .cta .bg-gradation {
  padding: 54px 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(0, 175, 35) 0%, rgba(139, 206, 17, 0.7) 65%, rgba(219, 224, 7, 0.7) 100%);
}
@media (max-width: 1200px) {
  .cta_block .cta .bg-gradation {
    padding: 30px 20px;
  }
}
.cta_block .cta .flex_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5%;
}
@media (max-width: 1024px) {
  .cta_block .cta .flex_container {
    row-gap: 40px;
  }
}
.cta_block .cta .flex_container .left {
  width: 51%;
}
@media (max-width: 1200px) {
  .cta_block .cta .flex_container .left {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .cta_block .cta .flex_container .left {
    width: 100%;
  }
}
.cta_block .cta .flex_container .img {
  width: 44%;
}
@media (max-width: 1200px) {
  .cta_block .cta .flex_container .img {
    width: 35%;
  }
}
@media (max-width: 1024px) {
  .cta_block .cta .flex_container .img {
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
}
.cta_block .cta .flex_container .txt_base {
  margin-bottom: 24px;
}
.cta_block .cta .left .title {
  padding-bottom: 0.8em;
  line-height: 1.35;
  font-size: clamp(2.2rem, 2.5vw, 3.8rem);
  font-weight: 700;
}
.cta_block .cta .left .title .sp550 {
  display: none;
}
@media (max-width: 600px) {
  .cta_block .cta .left .title .sp550 {
    display: block;
  }
}
.cta_block .cta .left .description {
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
}

/*=============================================*/
/* お知らせ */
/*=============================================*/
.top_news_block .post_list .ico::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/ico/btn-arrow-red.svg) no-repeat center/contain;
  opacity: 1;
  visibility: visible;
}
.top_news_block .post_list .ico::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/ico/btn-arrow-red.svg) no-repeat center/contain;
  opacity: 0;
  visibility: hidden;
}
@keyframes arrowOut {
  0% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
  }
}
@keyframes arrowIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
.top_news_block .post_list .item .link {
  position: relative;
  display: block;
  padding: 28px 0;
}
.top_news_block .post_list .item .link:hover .ico::before {
  animation: arrowIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.top_news_block .post_list .item .link:hover .ico::after {
  animation: arrowOut 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.top_news_block .post_list .item .link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #B7B7B7;
  z-index: 1;
}
.top_news_block .post_list .item .link::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #E6001B;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right;
  z-index: 2;
}
.top_news_block .post_list .item .link:hover::after {
  width: 100%;
  transform: scaleX(1);
  left: 0;
  right: auto;
  transform-origin: left;
}

.top_news_block .main_width {
  width: 100%;
  padding: 0 32px;
}
@media (max-width: 1024px) {
  .top_news_block .main_width {
    padding: 0 24px;
  }
}

.top_news_block {
  position: relative;
  padding-bottom: 130px;
}
@media (max-width: 1024px) {
  .top_news_block {
    padding-bottom: 50px;
  }
}
.top_news_block .title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .top_news_block .title {
    margin-bottom: 32px;
  }
}
.top_news_block .pc1024 {
  display: block;
}
@media (max-width: 1024px) {
  .top_news_block .pc1024 {
    display: none;
  }
}
.top_news_block .sp1024 {
  display: none;
}
@media (max-width: 1024px) {
  .top_news_block .sp1024 {
    display: block;
    margin-top: 42px;
    text-align: right;
  }
}
.top_news_block .flex_container {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.top_news_block .flex_container .mod-title_box {
  width: 25%;
}
@media (max-width: 1024px) {
  .top_news_block .flex_container .mod-title_box {
    width: 100%;
  }
}
.top_news_block .flex_container .post_list {
  width: 70%;
}
@media (max-width: 1024px) {
  .top_news_block .flex_container .post_list {
    width: 100%;
  }
}
.top_news_block .top {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.top_news_block .post_list .item:first-child {
  border-top: 1px solid #B7B7B7;
}
.top_news_block .post_list .item .date {
  font-size: 1.6rem;
  color: #B7B7B7;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.top_news_block .post_list .item .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top_news_block .post_list .item .tags .tag {
  display: inline-block;
  border: 1px solid #B7B7B7;
  padding: 1px 10px;
  border-radius: 20px;
  font-size: 1.4rem;
}
.top_news_block .post_list .item .post_title {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  padding-right: 25px;
}

/*=============================================*/
/* 中間画像 */
/*=============================================*/
.midway_image {
  position: relative;
  height: 500px;
}
@media (max-width: 1024px) {
  .midway_image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .midway_image {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .midway_image {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .midway_image {
    height: 220px;
  }
}
@media (max-width: 375px) {
  .midway_image {
    height: 120px;
  }
}
.midway_image .width1920 {
  position: relative;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.midway_image .img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 1168px;
}
.midway_image .img img {
  display: block;
  width: 100%;
  height: 100%;
}

/*=============================================*/
/* 私たちの強み */
/*=============================================*/
.strength_ornament {
  position: relative;
  background: linear-gradient(180deg, rgb(255, 255, 255) 21%, rgb(248, 248, 248) 0%);
}
@media (max-width: 1024px) {
  .strength_ornament {
    background: linear-gradient(180deg, rgb(255, 255, 255) 15%, rgb(248, 248, 248) 0%);
  }
}
@media (max-width: 1024px) {
  .strength_ornament {
    background: linear-gradient(180deg, rgb(255, 255, 255) 15%, rgb(248, 248, 248) 0%);
  }
}
@media (max-width: 600px) {
  .strength_ornament {
    background: linear-gradient(180deg, rgb(255, 255, 255) 8%, rgb(248, 248, 248) 0%);
  }
}
.strength_ornament::before {
  position: absolute;
  left: 0;
  top: 23%;
  content: "";
  width: 100%;
  height: 700px;
  background: url(../img/top/strengths-top.svg) no-repeat top center/cover;
  z-index: 0;
}
@media (max-width: 1024px) {
  .strength_ornament::before {
    top: 10%;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .strength_ornament::before {
    top: 7%;
    height: 180px;
  }
}
.strength_ornament::after {
  position: absolute;
  right: -5%;
  bottom: -15%;
  content: "";
  width: 100%;
  height: 500px;
  background: url(../img/top/strengths-bottom.svg) no-repeat bottom center/cover;
  z-index: 0;
}
@media (max-width: 1024px) {
  .strength_ornament::after {
    right: 0;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .strength_ornament::after {
    height: 280px;
    bottom: -13%;
    background: url(../img/top/strengths-bottom-sp.svg) no-repeat bottom center/cover;
  }
}
@media (max-width: 480px) {
  .strength_ornament::after {
    height: 190px;
    bottom: -9.8%;
  }
}

.top_strengths_block {
  overflow: hidden;
}
.top_strengths_block .bg-gray {
  padding-top: 254px;
  padding-bottom: 138px;
}
@media (max-width: 1024px) {
  .top_strengths_block .bg-gray {
    padding-top: 60px;
    padding-bottom: 76px;
  }
}
@media (max-width: 768px) {
  .top_strengths_block .bg-gray {
    padding-top: 30px;
  }
}
.top_strengths_block .main_width {
  position: relative;
  width: 100%;
  padding-top: 30px;
  padding-left: 32px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
@media (max-width: 1024px) {
  .top_strengths_block .main_width {
    padding-left: 24px;
  }
}
.top_strengths_block .mod-title_box .text {
  padding-top: 1em;
  font-size: clamp(2.2rem, 2.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.5;
}
.top_strengths_block .flex_container {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  row-gap: 30px;
}
.top_strengths_block .flex_container .mod-title_box {
  width: 32%;
}
@media (max-width: 1024px) {
  .top_strengths_block .flex_container .mod-title_box {
    width: 100%;
  }
}
.top_strengths_block .flex_container .text_content {
  width: 65%;
}
@media (max-width: 1024px) {
  .top_strengths_block .flex_container .text_content {
    width: 100%;
  }
}

.top_strengths_block .text_content {
  padding: 27px 35px;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 1024px) {
  .top_strengths_block .text_content {
    padding: 24px 20px;
  }
}
.top_strengths_block .text_content li {
  display: flex;
  align-items: center;
  gap: 3%;
}
@media (max-width: 1024px) {
  .top_strengths_block .text_content li {
    align-items: flex-start;
  }
}
.top_strengths_block .text_content li .img {
  max-width: 80px;
  width: 15%;
}
@media (max-width: 1024px) {
  .top_strengths_block .text_content li .img {
    max-width: 60px;
    width: 20%;
  }
}
.top_strengths_block .text_content li .txt_base {
  width: 82%;
}
@media (max-width: 1024px) {
  .top_strengths_block .text_content li .txt_base {
    width: 77%;
  }
}

.top_strengths_block .text_content li {
  padding-bottom: 26px;
}
.top_strengths_block .text_content li:not(:first-child) {
  padding-top: 37px;
}
.top_strengths_block .text_content li:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}
.top_strengths_block .text_content li .txt_base .inner_title {
  padding-bottom: 0.5em;
  font-size: clamp(1.9rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.top_strengths_block .text_content li .txt_base .text {
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 400;
}

/*=============================================*/
/* 事業紹介 */
/*=============================================*/
.top_business_block {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
}
.top_business_block::before {
  position: absolute;
  left: 0;
  top: 35%;
  content: "";
  width: 114px;
  height: 228px;
  background: url(../img/top/business-circle.webp) no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 1024px) {
  .top_business_block::before {
    content: none;
  }
}
@media (max-width: 1024px) {
  .top_business_block {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .top_business_block::after {
    position: absolute;
    left: 0;
    bottom: -2%;
    content: "";
    width: 80px;
    height: 160px;
    background: url(../img/top/business-circle-sp.svg) no-repeat center/contain;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .top_business_block {
    padding-top: 80px;
  }
}
@media (max-width: 600px) {
  .top_business_block {
    padding-top: 60px;
  }
}
.top_business_block .main_width {
  position: relative;
  max-width: 1920px;
  width: 100%;
  padding-top: 30px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .top_business_block .main_width {
    width: calc(100% - 48px);
  }
}
.top_business_block .mod-title_box {
  max-width: 1440px;
  width: 100%;
  padding-left: 32px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .top_business_block .mod-title_box {
    padding-left: 0;
    margin-bottom: 10px;
  }
}

.top_business_block .image_length {
  display: flex;
  column-gap: 1%;
}
@media (max-width: 1024px) {
  .top_business_block .image_length {
    display: block;
  }
}
.top_business_block .image_length .img_left {
  position: relative;
  max-width: 490px;
  width: 42%;
  padding-top: 180px;
  padding-left: 15px;
}
@media (max-width: 1024px) {
  .top_business_block .image_length .img_left {
    display: none;
  }
}
.top_business_block .image_length .flex_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6%;
  width: 72%;
}
@media (max-width: 1024px) {
  .top_business_block .image_length .flex_container {
    width: 100%;
  }
}
.top_business_block .image_length .inner {
  width: 54%;
}
@media (max-width: 1024px) {
  .top_business_block .image_length .inner {
    width: 100%;
  }
}
.top_business_block .image_length .img_right {
  position: relative;
  max-width: 420px;
  width: 40%;
}
.top_business_block .image_length .img_right::after {
  position: absolute;
  left: 0;
  top: -25%;
  content: "";
  width: 45%;
  height: 40%;
  background: url(../img/top/ico-padlock.svg) no-repeat center/contain;
}
@media (max-width: 1024px) {
  .top_business_block .image_length .img_right {
    display: none;
  }
}
.top_business_block .image_length .img_right img {
  display: block;
  width: 420px;
}

.top_business_block .business_list {
  margin-bottom: 40px;
}
.top_business_block .business_list .item {
  position: relative;
}
.top_business_block .business_list .item::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.top_business_block .business_list .item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #E6001B;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right;
  z-index: 2;
}
.top_business_block .business_list .item:hover::after {
  width: 100%;
  transform: scaleX(1);
  left: 0;
  right: auto;
  transform-origin: left;
}

.top_business_block .business_list .link {
  position: relative;
  display: block;
  padding: 28px 0 28px 55px;
  border-bottom: 1px solid #E1E1E1;
  font-size: clamp(1.8rem, 1.9vw, 2.4rem);
  font-weight: 700;
  transition: all 0.3s;
}
.top_business_block .business_list .link::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/ico/btn-arrow-red.svg) no-repeat center/contain;
  opacity: 1;
  visibility: visible;
}
.top_business_block .business_list .link::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/ico/btn-arrow-red.svg) no-repeat center/contain;
  opacity: 0;
  visibility: hidden;
}
@keyframes arrowOut {
  0% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
  }
}
@keyframes arrowIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
.top_business_block .business_list .link:hover::before {
  animation: arrowIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.top_business_block .business_list .link:hover::after {
  animation: arrowOut 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.top_business_block .business_list .item:nth-child(1)::before {
  background: url(../img/top/business-ico01.svg) no-repeat center/contain;
}
.top_business_block .business_list .item:nth-child(2)::before {
  background: url(../img/top/business-ico02.svg) no-repeat center/contain;
}
.top_business_block .business_list .item:nth-child(3)::before {
  background: url(../img/top/business-ico03.svg) no-repeat center/contain;
}
.top_business_block .business_list .item:nth-child(4)::before {
  background: url(../img/top/business-ico04.svg) no-repeat center/contain;
}
.top_business_block .business_list .item:nth-child(5)::before {
  background: url(../img/top/business-ico05.svg) no-repeat center/contain;
}
.top_business_block .business_list .item:nth-child(6)::before {
  background: url(../img/top/business-ico06.svg) no-repeat center/contain;
}

/*=============================================*/
/* 事業紹介 */
/*=============================================*/
.top_voice_block {
  position: relative;
  padding-top: 88px;
  background-color: #F6F7F9;
  z-index: 10;
}
.top_voice_block::after {
  position: absolute;
  bottom: -40%;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/bottom-circle.webp) no-repeat center/100%;
  z-index: 0;
}
@media (max-width: 1024px) {
  .top_voice_block::after {
    bottom: -50%;
  }
}
@media (max-width: 768px) {
  .top_voice_block::after {
    bottom: -53%;
  }
}
.top_voice_block .mod-title_box {
  position: relative;
  max-width: 1440px;
  width: calc(100% - 64px);
  padding-left: 32px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .top_voice_block .mod-title_box {
    width: calc(100% - 48px);
    padding-left: 0;
    margin-bottom: 0;
  }
}
.top_voice_block .btn_container {
  position: absolute;
  right: 20%;
  top: 65%;
  margin: auto;
}
.top_voice_block .btn_container .voice-prev {
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  background: url(../img/top/swiper-btn.svg) no-repeat center/contain;
  transform: translate(-100%, -50%);
}
.top_voice_block .btn_container .voice-prev::after {
  content: none;
}
.top_voice_block .btn_container .voice-next {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: url(../img/top/swiper-btn.svg) no-repeat center/contain;
  transform: translate(138%, -50%) rotate(180deg);
}
.top_voice_block .btn_container .voice-next::after {
  content: none;
}

.top_voice_block .voice-swiper {
  padding-top: 45px;
}
@media (max-width: 1024px) {
  .top_voice_block .voice-swiper {
    padding-top: 32px;
  }
}

.top_voice_block .swiper-slide {
  scale: 0.8;
  opacity: 0.6;
  transition: all 0.5s ease;
}
.top_voice_block .swiper-slide.swiper-slide-active {
  scale: 1;
  opacity: 1;
}
.top_voice_block .swiper-slide .bubble {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 23px;
  margin-bottom: 20px;
  border: 2px solid #B7B7B7;
  background-color: #FFF;
  border-radius: 10px;
}
.top_voice_block .swiper-slide .bubble::before {
  position: absolute;
  left: 25px;
  bottom: -15px;
  content: "";
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 15px solid #B7B7B7;
  border-bottom: 0;
  z-index: 1;
}
.top_voice_block .swiper-slide .bubble::after {
  position: absolute;
  left: 27px;
  bottom: -12px;
  content: "";
  border-right: 10px solid transparent;
  border-left: 11px solid transparent;
  border-top: 13px solid #FFF;
  border-bottom: 0;
  z-index: 2;
}
.top_voice_block .swiper-slide .voice_status {
  display: flex;
  padding-left: 6px;
  column-gap: 10px;
}
.top_voice_block .swiper-slide .voice_status .icon {
  max-width: 60px;
}

/*=============================================*/
/* 会社概要 */
/*=============================================*/
.top_company_block .main_width {
  width: 100%;
  padding: 0 32px;
}
@media (max-width: 1024px) {
  .top_company_block .main_width {
    padding: 0 24px;
  }
}

.top_company_block {
  position: relative;
  padding-top: 270px;
  padding-bottom: 150px;
  margin-bottom: 150px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .top_company_block {
    padding-top: 150px;
    padding-bottom: 120px;
    margin-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .top_company_block {
    padding-top: 100px;
  }
}
.top_company_block::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/bg-company.webp) no-repeat top/cover;
  z-index: -1;
}
.top_company_block::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.top_company_block .flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5%;
}
.top_company_block .flex_container .mod-title_box {
  width: 50%;
}
@media (max-width: 1024px) {
  .top_company_block .flex_container .mod-title_box {
    width: 100%;
  }
}
.top_company_block .flex_container .description {
  padding-top: 200px;
  width: 45%;
}
@media (max-width: 1024px) {
  .top_company_block .flex_container .description {
    width: 100%;
    padding-top: 32px;
  }
}

.top_company_block .description .txt_base {
  margin-bottom: 40px;
}
.top_company_block .description .mod-common_btn a {
  display: block;
  max-width: 280px;
  width: 100%;
  padding: 15px 50px 15px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: all 0.3s;
}
.top_company_block .description .mod-common_btn a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/ico/btn-arrow-red.svg) no-repeat center/30% #FFF;
  transition: all 0.3s;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px rgba(43, 43, 43, 0.7) inset, 0 0 0 1px #FFF;
}
@media (max-width: 1024px) {
  .top_company_block .description .mod-common_btn a {
    max-width: 450px;
    margin: auto;
  }
}
.top_company_block .description .mod-common_btn a:hover {
  opacity: 1;
  background-color: #FFF;
}
.top_company_block .description .mod-common_btn a:hover::after {
  background: url(../img/ico/btn-arrow-white.svg) no-repeat center/30% #E6001B;
  box-shadow: unset;
}
.top_company_block .description .mod-common_btn a:hover .text {
  color: #2B2B2B;
}
.top_company_block .description .mod-common_btn a .text {
  transition: all 0.3s;
}

/*=============================================*/
/* TOPへ戻るボタン */
/*=============================================*/
.top_scroll_btn {
  position: fixed;
  right: 20px;
  bottom: 8%;
  z-index: 100;
}
.top_scroll_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #F6F6F6;
  border-radius: 50%;
  transition: all 0.3s;
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .top_scroll_btn a {
    width: 40px;
    height: 40px;
  }
}
.top_scroll_btn a:hover {
  opacity: 0.7;
}

/*=============================================*/
/* recruit */
/*=============================================*/
.top_recruit_block .main_width {
  max-width: 1200px;
}
.top_recruit_block .txt_base {
  margin-bottom: 24px;
}
.top_recruit_block .txt_base p {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 500;
}
.top_recruit_block .bg_image {
  position: relative;
  padding: 28px;
}
@media (max-width: 768px) {
  .top_recruit_block .bg_image {
    padding: 20px;
  }
}
.top_recruit_block .bg_image::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/bg-recruit.webp) no-repeat center/cover;
  border-radius: 24px;
  z-index: -1;
}
.top_recruit_block .bg_image .img img {
  border-radius: 24px;
}

.top_recruit_block {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .top_recruit_block {
    margin-bottom: 80px;
  }
}
.top_recruit_block .position_text {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: -5vw;
  z-index: 90;
}
@media (max-width: 1024px) {
  .top_recruit_block .position_text {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media (max-width: 1024px) {
  .top_recruit_block .title {
    width: 100%;
  }
}
.top_recruit_block .po_btn {
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .top_recruit_block .po_btn {
    width: 100%;
  }
}
.top_recruit_block .po_btn .mod-common_btn {
  margin-right: unset;
  margin-bottom: unset;
}
@media (max-width: 1024px) {
  .top_recruit_block .po_btn .mod-common_btn {
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */