/*====================================================================
全ページ共通CSS
====================================================================*/
/* 
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

html,body {
  scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
   background-color: #ddd !important;
	font-family: "Noto Sans JP","Helvetica Now",
		"Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",futura-pt, source-han-sans-japanese, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, 
    sans-serif;
	  font-optical-sizing: auto;
}

.moteru_service {
	text-decoration: underline;
}

/*====================================================================
cursor
====================================================================*/

html,
body,
a {
  cursor: none;
}

.cursor {
  position: fixed;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  mix-blend-mode: difference;
  background: #ffffffdd;
  box-shadow: 0 0 6px #fff;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transform: translate(0, 0);
  pointer-events: none;
}

.cursor.cursor--hover {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: #ddddddaa;
}

/*====================================================================
top_btn
====================================================================*/

  #top_btn {
    display: none;
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 60px;
    height: 60px;
    mix-blend-mode: difference;
    background-color: #fff;
    border-radius: 50%;
    z-index: 99;
    transition: .2s;
  }

  #top_btn a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
  }

  #top_btn a:after {
    content: "TOP";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    mix-blend-mode: difference;
    z-index: 98;
    transition: .5s;
  }

  #top_btn:hover {
    transform: scale(1.5);
  }

  #top_btn:hover a:after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

br.sp-indention {
	display: none;
}

/*====================================================================
ヘッダー
====================================================================*/
body header {
  position: static !important;
  display: block;
  padding: 0 !important;
}
body header .site-title {
  width: 147px;
	position: absolute !important;
	left: 5%;
	top: 5%;
	z-index: 10 !important;
}

/*====================================================================
ヘッダー
====================================================================*/
body header {
  width: 100vw;
}
.openbtn {
position: fixed !important;
top: 5%;
right: 5%;
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; 
  mix-blend-mode: difference !important;
  z-index: 1000;
}
  .openbtn:hover {
    opacity: 0.7; }
  .openbtn.active:hover {
    opacity: 0.7; }
  .openbtn.active .openbtn-inner,
  .openbtn.active .openbtn-inner::before,
  .openbtn.active .openbtn-inner::after {
    background-color: #fff; }

.openbtn-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.openbtn-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .openbtn-inner, .openbtn-inner::before, .openbtn-inner::after {
    width: 46px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .openbtn-inner::before, .openbtn-inner::after {
    content: "";
    display: block; }
  .openbtn-inner::before {
    top: -10px; }
  .openbtn-inner::after {
    bottom: -10px; }

        .openbtn--collapse-r .openbtn-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .openbtn--collapse-r .openbtn-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .openbtn--collapse-r .openbtn-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.openbtn--collapse-r.active .openbtn-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .openbtn--collapse-r.active .openbtn-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .openbtn--collapse-r.active .openbtn-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

body header .h-nav_panel {
	background: url(https://bond-tsunagu.com/wp-content/uploads/2024/05/bond-logo-bg-h_nav.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
  position: fixed;
	height: 100vh;
	width: 100vw;
  top: 0;
  left: 100% !important;
  z-index: 200;
  display: block !important;
  background-color: #eee !important;
	opacity: 0;
  transition: .3s;
}
body header .h-nav_panel.drawer {
	opacity: 1;
  display: block;
  left: 0 !important;
}

body header .h-nav_panel {
	padding: 0 !important;
}

  .h-nav {
    position: relative;
    height: 100vh;
  }


  .h-nav ul {
	  height: 80vh;
    position: absolute;
    left: 14%;
    top: 10%;
  }

  .h-nav ul li {
    letter-spacing: .1em;
    font-size: 5vw;
    font-weight: 600;
	 font-family: "Helvetica Neue";
  }


  .h-nav ul li a {
    display: block; 
    transition: .3s;
  }

  .h-nav ul li a:hover {
    color: transparent;
	-webkit-text-stroke: 3px #333;
  }

/*====================================================================
フッター
====================================================================*/

.footer__about {
   position: relative;
   display: flex;
   gap: 0 180px;
   width: 100%;
   padding-left:14%;
	padding-top: 80px;
   flex-wrap: wrap;
}

.footer__about:after {
	 content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    top: -20px;
	left: 10%;
	background-color: #555;
}

.footer__about .footer__about_tit h2 {
	 font-size: 3.47vw;
   font-weight: 600;
}
.footer__about .footer__about_tit .footer__privacyMark {
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
  align-items: center;
}
.footer__about .footer__about_tit .footer__privacyMark img {
  width: 90px;
}
.footer__about .footer__about_tit .footer__privacyMark figcaption {
  font-size: 14px;
  line-height: 1.6;
}

.footer__about .footer__about_table .footer__table_item {
  margin-bottom: 40px;
}
.footer__about .footer__about_table .footer__table_item:last-child {
  margin-bottom: 0;
}
.footer__about .footer__about_table .footer__table_item .footer__table_head {
  margin-bottom: 12px;
}



 .footer__about .footer__about_table {
   display: flex;
   gap: 0 100px;
   padding-top: 20px;
}
 .footer__about .footer__about_table .footer__table_item {
   line-height: 1.6;
}



/*====================================================================
メインコンテンツ
====================================================================*/
body main {
   margin-top: 0;
}

/*====================================================================
追加css記述分
====================================================================*/
body {
	max-width: 100%;
}
h2.section-title {
font-size: 3.47vw;
    font-weight: 600;
    font-family: "Helvetica Neue";
}
.top-client h2,
.top-news h2,
.service-main-content h2,
.job_description h2,
.formarea h2  {
   padding-left: 14%;
   letter-spacing: .1em;
   margin-bottom: 60px;
}

/* ======= hero */
.hero-anime {
  position: relative;
  height: 100vh;
 width: 100vw;
  top: 0;
  left: 0;
}

.hero-anime svg {
position: absolute;
width: 100vw;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

#line1 {
   stroke-dasharray: 4237px;
   stroke-dashoffset: 4237px;
   animation: hero 4s forwards ease-out; 
}
@keyframes hero {
   0% {
      stroke-dashoffset: 4237px;
   }
   50% {
      stroke-dashoffset: 0;
      opacity: 1;
   }
   100% {
      opacity: 0;
      stroke-dashoffset: 0;
   }
}
g#logo {
   opacity: 0;
   animation: logo 2s 1s forwards;
}
@keyframes logo {
   0% {
      opacity: 0;
   }
   50% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}

.scroll {
   position: absolute;
   right: 5%;
   bottom: 0;
   height: 100px;
   width: 3px;
   background-color: #aaaaaa;
   z-index: 0;
}
.scroll span {
   width: 100%;
   height: 100%;
   display: block;
   background-color: #000;
   animation: scroll 1.5s linear infinite;
}
@keyframes scroll {
   0% {
      height: 0;
   }
   100% {
      height: 100%;
   }
}

/* ======= main-coppy */
.top-main-coppy, .service-main-coppy {
   position: relative;
   width: 100vw;
   background-color: #000;
   padding: 100px 0 120px;
}


.top-main-coppy .fade-out-left {
	   background-color: #ddd;
}
.sub_title .fade-out-left {
	   background-color: #555;
}

.fade-out-left {
   position: absolute;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100%;
   clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
   transition: .5s;
   z-index: 2;
	opacity: .7;
}

.fade-out-left.fade-out {
	width: 0;
	opacity: 0;
}

.top-main-coppy p {
   color: #eee;
   font-size: 26px;
   text-align: center;
   line-height: 1.6;
	font-weight: 600;
	letter-spacing: .08em;
}

@media (resolution: 144dpi) {
  .top-main-coppy p  {
       font-size: 20px;
	  	font-weight: 600;
  }
}

.top-main-coppy p span , .service-main-coppy p span{
   display: block;
}
.fade-up {
   opacity: 0;
   transform: translate(0,50px);
   transition: all 1s;
}

.fade-up-bg {
	opacity: 0;
	   transform: translate(0,150px);
    transition: all 1s;
}
.scrollin{
   opacity: 1 !important;
   transform: translate(0, 0) !important;
}


/* ======= ABOUT US */
.top-about_us {
    background-color: #555;
    color: #eee;
    position: relative;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.about_us-title {
   position: absolute;
	width: 100vw;
   display: flex;
   flex-wrap: nowrap;
   margin-bottom: 70px;
   top: 10%;
   left: 0;
	
}
.about_us-title .title-box {
   padding-left: 14%;
   white-space: nowrap;
}
.about_us-title .btn {
   display: block;
   color: #eee;
   background-color: #000;
   padding: 8px 10px;
   width: fit-content;
   margin-top: 18px;
   font-size: 20px;
   transition: .5s;
}
.about_us-title .btn:hover {
   background-color: #eee;
	color: #000;
}
.about_us-title .exp {
width: 60vw;
    line-height: 1.8;
    font-size: 22px;
    letter-spacing: .06em;
    padding-top: 8px;
    font-weight: 500;
    padding-left: 6%;
}
.aobut_us-box {
   position: relative;
   width: 200%;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
	overflow-x: hidden;
}

.slides-wrapper{
    padding-top: 50px;
    display: flex;
    width: calc(100% - 50px);
    margin: 0 auto;
    position: absolute;
    top: 34%;
    padding-bottom: 50px;
}
.slide {
   padding-left: 200px;
}

.slide1 {
	margin-left: 200px;
}


.slide-content1 {
	background: url(https://bond-tsunagu.com/wp-content/uploads/2025/01/shadow_box-04.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-content2 {
	background: url(https://bond-tsunagu.com/wp-content/uploads/2024/05/shadow_box-01.png);
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-content3 {
    background: url(https://bond-tsunagu.com/wp-content/uploads/2024/05/shadow_box-02.png);
  background-size: 84%;
  background-position: center;
    background-repeat: no-repeat;
}

.slide-content4 {
  background: url(https://bond-tsunagu.com/wp-content/uploads/2024/05/shadow_box-03.png);
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
}


.slide-content {
	background-color: #555;
   width: 450px;
	height: 300px;
   margin: 0 auto;
   box-shadow:  20px 20px 30px #444444,-20px -20px 30px #666666;
   padding: 10px 20px;
}
.slide-content .content-title h3 {
text-align: center;
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.06em;
}
.slide-content p.exp {
	font-size: 18px;
   line-height: 1.6;
}

/* ======= client */

.top-client {
padding-top: 80px;
}

.top-client p.exp {
	text-align: right;
	padding-right: 20px;
	margin-top:20px;
}

.achievement__box {
	display: block !important;
}

body main .achievement__box .achievement__item .achievement__imgbox {
	margin: 30px;
}

body main .achievement__box .achievement__item .achievement__imgbox img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	margin: auto;
}



/*====================================================================
 service-page
====================================================================*/
.service-main-coppy {
	height: 100vh;
}

.service-main-coppy .service-main-coppy-bg {
  position: sticky;
  top: 5%;
  height: 80vh;
  width: 100vw;
  z-index: 0;
  overflow: hidden;
}  

.service-main-coppy .service-main-coppy-bg .bg-loop {
  position: absolute;
  background: url(https://bond-tsunagu.com/wp-content/uploads/2024/04/bond-logo-bg-service.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  -webkit-animation: bg-roop 40s linear infinite;
  animation: bg-anime 40s linear infinite;
}
@keyframes bg-loop {
  0% {
    right: -100%;
  }

  100%  {
    right: 100%;
  }
}

@keyframes bg-anime {
  
  0%{
    right: -100%;
  }
  100% {
    right: 100%;
  }
}

.service-main-coppy .text-area {
  position: absolute;
  top: 10%;
  left: 14%;
}

.service-main-coppy p {
  position: relative;
  color: #ddd;
  font-size: 28px;
    line-height: 3.6;
  z-index: 3;
	font-weight: 600;
}


.service-main-content {
  padding: 80px 0 50px;
}

.service-main-content h2 {
  margin-bottom: 160px;
}

.service-main-content .service-content-wrap {
  display: flex;
  gap: 120px;
  padding-left: 14%;
  padding-right: 10%;
  margin-bottom: 100px;
	min-height: 160px;
}

.service-main-content .service-content-wrap .content-title {
  width: 35%;
  position: relative;
}

.service-main-content .service-content-wrap .content-title:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #000;
  top: 0;
  right: 0;
}

.service-main-content .service-content-wrap .content-title h3 {
  font-size: 34px;
	font-weight: 600;
}

.service-main-content .service-content-wrap .content-text {
  width: 65%;
}

.service-main-content .service-content-wrap .content-text p {
  line-height: 1.8;
  font-size: 18px;
}

.service-main-content .service-content-wrap .content-text p.moteru_text {
	width: fit-content;
	margin-left: auto;
}

.service-main-content .service-content-wrap .content-text p a.moteru_service{
  line-height: 1.2;
  font-size: 14px;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap {
  margin-top: 30px;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap h4 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  width: fit-content;
  padding: 0 12px;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap h4::before,
.service-main-content .service-content-wrap .content-text .flow-box-wrap h4::after {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap h4::before {
  left: -12px;
  border-left: 2px solid #333;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap h4::after {
  border-right: 2px solid #333;
  right: -12px;
}


.service-main-content .service-content-wrap .content-text .flow-box-wrap .flow-img-area {
  width: 100%;
}

.service-main-content .service-content-wrap .content-text .flow-box-wrap .flow-img-area img {
  object-fit: cover;
  width: 100%;
}
/*====================================================================
company-page
====================================================================*/
/* ====================== company-page======================= */
.page-gradation {
  background: linear-gradient(#555 50%,#ddd 100%);
}

.mvv {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.mvv-bg {
  height: 100%;
  width: 100%;
  position: relative;
}


.mvv-bg #company-bg {
  height: 100%;
  width: 100%;
  opacity: 0;
}

.mvv-bg #company-bg.bg_line_anime {
  stroke-dasharray: 6811px;
  stroke-dashoffset: 6811px;
  animation: line__gradation 10s forwards linear;
}

@keyframes line__gradation {
  0% {
    stroke-dashoffset: 6811px;
    opacity: 1;
}

100% {
    stroke-dashoffset: 0;
    opacity: 1;
}

}

.mvv-bg .mvv-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.mvv-title h1 {
  font-size: 7vw;
	font-weight: 700;
	width: 100%;
  line-height: 1.4;
  text-align: center;
  color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.company-list {
  margin-top: 50px;
  margin-bottom: 200px;
}

.company-list dl {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  gap: 50px 0;
	font-size: 20px;
  /* mix-blend-mode: difference; */
}

.company-list dl dt {
  position: relative;
  width: 40%;
  padding-left: 30px;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
	padding-bottom: 40px;
}


.company-list dl dd {
  position: relative;
  width: 60%;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
	padding-bottom: 40px;
}

.company-list dl dd .post_code {
	font-weight: 400;
	font-size: 16px;
}

.company-list dl dt:after,
.company-list dl dd:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.office_name {
	font-weight: 600;
	margin-top: 18px;
}

.company-list dl a {
	text-decoration: underline;
	color: #0044cc;
}


/*====================================================================
  recruit-page
====================================================================*/
.job_description-sp{
    display: none;
}

.recruit-coppy {
  height: 100%;
  width: 100vw;
  position: relative;
}

.recruit-bg {
  height: 100%;
  width: 100%;
  position: relative;
}


.recruit-bg #recruit-bg {
  height: 100vh;
  width: 100%;
  opacity: 0;
}

.recruit-bg #recruit-bg.bg_line_anime {
  stroke-dasharray: 8970px;
  stroke-dashoffset: 8970px;
  animation: line__recruit 5s forwards linear;
}

@keyframes line__recruit {
  0% {
    stroke-dashoffset: 8970px;
    opacity: 1;
}

100% {
    stroke-dashoffset: 0;
    opacity: 1;
}

}

.recruit-bg .recruit-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.recruit-title h1 {
  font-size: 7vw;
	font-weight: 700;
	width: 100%;
  line-height: 1.4;
  text-align: center;
  color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	letter-spacing: .1em;
}

.sub_title {
    margin-bottom: 200px;
    height: 100vh;
    position: relative;
    background-color: #fff;
}

.sub_title p {
font-size: 3vw;
    text-align: center;
    font-weight: 600;
    color: #333;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
}


.job_description {
  margin: 80px auto;
  position: relative;
}

.job_description:after {
  content: "";
  position: absolute;
  top: 90px;
  left: 14%;
  height: 3px;
  width: 80%;
  background-color: #000;
}

.job_description h2,
.formarea h2 {
color: #eee;
}

.job_description .job-box-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 20%;
    padding: 0 6% 0 14%;
}

.job_description .job-box-wrap .job-box {
    position: relative;
    width: 40%;
    height: 320px;
    margin-bottom: 100px;
    background-color: #333;
    box-shadow: 20px 20px 38px #444444, -20px -20px 38px #666666;
    color: #ddd;
    transition: .5s;
}

.job_description .job-box-wrap .job-box h3 {
    font-size: 34px;
    position: absolute;
    transform: translate(-50%);
    top: 44%;
    left: 50%;
    transition: .5s;
    font-weight: 600;
    overflow: hidden;
}

.job_description .job-box-wrap .job-box .cover {
    color: #333;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #aaa;
    overflow: hidden;
    width: 0%;
    height: 100%;
    padding: 10px 16px;
	opacity: 0;
	transition: .3s;
}

.job_description .job-box-wrap .job-box:hover .cover {
	opacity: 1;
  width: 100%;
}

.job_description .job-box-wrap .job-box:hover h3 {
  opacity: 0;
  left: 10%;
}

.job_description .job-box-wrap .job-box .cover h4 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.job_description .job-box-wrap .job-box .cover dl {
  display: flex;
  flex-wrap: wrap;
}

.job_description .job-box-wrap .job-box .cover dl dt {
  width: 25%;
}

.job_description .job-box-wrap .job-box .cover dl dd {
  width: 75%;
}

.job_description .job-box-wrap .job-box .cover dl dt,
.job_description .job-box-wrap .job-box .cover dl dd {
  margin-bottom: 18px;
  border-bottom: 2px solid #333;
}



/* =======  contact */
.top-contact {
   padding: 150px 0;
}
.contact-btn {
   position: relative;
	width: 85vw;
	height: 200px;
	left:10%;
	transition: .3s;
}

.contact-btn a {
	width: 100%;
	height: 100%;
}

.top-contact .contact-btn a h2 {
	position: absolute;
	top: 50%;
	left: 4%;
	transform: translatey(-50%);
   display: block;
   line-height: 1.8;
   mix-blend-mode: difference;
   color: #fff;
	z-index: 2;
}
.contact-btn .bg {
   position: absolute;
   top: 50%;
	left: 0;
   transform: translateY(-50%);
   width: 100%;
   height: 100%;
   background-color: #000;
   z-index: 1;
	transition: .5s;
}
.contact-btn .bg .dli-chevron-right {
   position: absolute;
   top: 40%;
   right: 5%;
   display: inline-block;
   vertical-align: middle;
   color: #fff;
   mix-blend-mode: difference;
   line-height: 1;
   width: 34px;
   height: 34px;
   border: 5px solid currentColor;
   border-left: 0;
   border-bottom: 0;
   box-sizing: border-box;
   transform: translateX(-25%) rotate(45deg);
}

.contact-btn:hover {
transform: scale(1.02);
}

.contact-btn:hover a .bg {
   background-color: #555;
}

.contact-btn:hover a .bg .dli-chevron-right{
	animation: hover_arrow 2s infinite ease-out;
}

@keyframes hover_arrow {
	0% {
		right: 5%;
	}
	
	50% {
		right: 6%;
	}
	
	100% {
		right: 5%;
	}
}

/*  =======  top-news*/
.top-news {
   padding: 50px 0 80px;
   margin-bottom: 50px;
}

ul.news__box {
	width: 80%;
	margin: 0 0 0 auto !important;
}

body main .news__box .slick__btn.prev {
	position: absolute;
	top: -80px;
	right: 150px !important;
   padding: 10px;
	transform: rotate(-135deg);
}
body main .news__box .slick__btn.prev::before {
  content: ""; 
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  left: 50%;
  top: 50%;
	transform: translate(-50%, -50%)
}

body main .news__box .slick__btn.next {
	position: absolute;
	top: -80px;
	right: 50px !important;
   padding: 10px;
  transform: rotate(45deg);	
}

body main .news__box .slick__btn.next::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  left: 50%;
  top: 50%;
	transform: translate(-50%, -50%);
}

body main .news__box .news__item {
  width: 500px;
  padding: 10px 25px;
	margin: 0 20px;
}

body main .news__box .news__item a {
	display: block;
	width: fit-content;
	text-decoration: underline;
	font-size: 16px;
	padding-top: 10px;
}

.top-news .slick-list {
	cursor: grab;
}
.news__excerpt {
	line-height: 1.6;
}

.news__date-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
	margin-bottom: 22px !important;
	color: #000;
}



/* ======= company */

/*  ======= footer-menu*/
.footer-menu {
   position: relative;
   height: 100vh;
   background: url(https://bond-tsunagu.com/wp-content/uploads/2024/05/bond-logo-bg-f_nav.png);
   background-size: cover;
   background-position: bottom left;
   background-repeat: no-repeat;
}
.footer-menu ul {
   position: absolute;
   left: 14%;
   bottom: 18%;
}
.footer-menu ul li {
    font-size: 3vw;
    line-height: 1.6;
    font-weight: 600;
	 font-family: "Helvetica Neue";
}

  .footer-menu ul li a {
    display: block; 
    transition: .3s;
  }

  .footer-menu ul li a:hover {
    color: transparent;
	-webkit-text-stroke: 2px #333;
  }


/*====================================================================
  form
====================================================================*/
  
label span.required {
	color: #fff;
	font-size: 12px;
	display: inline;
	background-color: #dc3232;
	padding: 4px;
	margin-left: 12px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #dc3232;
}

.formarea .job-form {
  margin-left: 14%;
  width: 80%;
	font-size: 20px;
	background-color: #eee;
	padding: 30px 30px 60px;
}

.formarea .contact-form {
		padding: 100px 30px 60px;
		font-size: 20px;
	  margin-left: 6%;
	margin-bottom: 120px;
}

.wpcf7-not-valid-tip {
	font-size: 16px;
	margin-top: 6px;
}

.formarea .job-form .form-wrap,
.formarea .contact-form .form-wrap
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding-bottom: 18px;
}

.formarea .job-form .form-wrap-ul,
.formarea .contact-form .form-wrap-ul {
		border-bottom: 1px solid #666;
}

.formarea .job-form .form-wrap .form-title,
.formarea .contact-form .form-wrap .form-title{
		line-height: 50px;
	padding-left: 20px;
}

.formarea .job-form .form-wrap .form_box,
.formarea .contact-form .form-wrap .form_box,
.isp-btn,
.submit-btn {
	width: 70%;
	margin-left: auto;
}

.formarea .job-form .form-wrap .exp,
.formarea .contact-form .form-wrap .exp {
	width: 70%;
	margin-left: auto;
	margin-top: 6px;
	font-size: 14px;
	padding-left: 20px;
}

.wpcf7-textarea {
	background-color: #ccc;
	width: 80%;
	padding: 6px 10px;
}

.wpcf7-text {
	background-color: #ccc;
	width: 80%;
	line-height: 40px;
		padding: 6px 10px;
}

.submit-btn {
	margin-top: 44px;
}

.submit-btn p  {
	color: #eee;
	background-color: #000;
	padding: 10px 0px 12px 66px;
	cursor: pointer;
	width: fit-content;
	line-height: 40px;
}


.checkbox-cl01 input {
  display: none;
}

.checkbox-cl01 input + span {
  padding-left: 24px;
  display: inline-block;
  position: relative;
	 line-height: 50px;
}

.checkbox-cl01 input + span::after,
.checkbox-cl01 input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
	left: 0;
}

.checkbox-cl01 input + span::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
	transform: translatey(-50%);
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.checkbox-cl01 input:checked + span::before {
  width: 10px;
  top: 11px;
  left: 4px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.checkbox-cl01 input:checked + span::after {
  display: block;
}

.agree_chk a {
  text-decoration: underline;
	color: #0044cc;
}



/*====================================================================
  投稿ページ
====================================================================*/

.single_page-box {
	margin: 100px 15% 100px 24%;
}

.single_page-box h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 34px;
}

.single_page-box p {
  font-size: 20px;
  line-height: 1.6;
}

.single_page-box p br {
    display: none;
}

.single_page-box p a {
	text-decoration: underline;
	font-size: 16px;
	padding-top: 10px;
	color: #0044cc;
	text-align: left;
	display: block;
	margin-bottom: 10px;
}



/*====================================================================
 	privacy-policy-page privacy-policy
====================================================================*/
.privacy-policy {
	width: 80%;
	margin: 150px auto 50px;
}

.privacy-policy h1 {
	font-size: 36px;
	font-weight: 600;
}

.privacy-policy h2 {
	font-size: 26px;
	margin-top: 60px;
	margin-bottom: 20px;
	font-weight: 600;
}

.privacy-policy p {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 400;
}



/*====================================================================
  スマフォ
====================================================================*/

  @media (max-width: 768px){
		
		br.pc-indention {
			display: none;
		}
		
		br.sp-indention {
			display: block !important;
		}
		
		body header .site-title {
  width: 80px;
	position: fixed;
	left: 10px;
	top: 20px;
	z-index: 1000;
}
		
		.openbtn {
			top: 8px;
			right: 8%;
		}
				/*====================================================================
cursor
====================================================================*/
		
.cursor {
display: none;
}

.cursor.cursor--hover {
display: none;
}

		.openbtn {
			cursor: none;
		}		

		
		
		/*====================================================================
 	top_btn
====================================================================*/
  #top_btn {
    display: none;
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 40px;
    height: 40px;
    mix-blend-mode: difference;
    background-color: #fff;
    border-radius: 50%;
    z-index: 99;
    transition: .2s;
  }

  #top_btn a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
  }

  #top_btn a:after {
    content: "TOP";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    mix-blend-mode: difference;
    z-index: 98;
    transition: .5s;
  }

  #top_btn:hover {
    transform: scale(1.1);
  }

  #top_btn:hover a:after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

br.sp-indention {
	display: none;
}

		
						
/*====================================================================
 	nav
====================================================================*/
		
body header .h-nav_panel {
overflow: hidden;
}
body header .h-nav_panel.drawer {
  display: block;
  left: 0 !important;
}

body header .h-nav_panel {
	padding: 0 !important;
}

  .h-nav {
    position: relative;
    height: 100vh;
  }


  .h-nav ul {
    position: absolute;
    left: 14%;
    top: 14%;
  }


  .h-nav ul li,
	.footer-menu ul li {
    letter-spacing: .1em;
    font-size: 40px;
    line-height: 1.6;
    font-weight: 500;
  }


  .h-nav ul li a {
    display: block; 
    transition: .3s;
		 color: #000;
	-webkit-text-stroke: 1px #eee;
  }

  .h-nav ul li a:hover {
    color: #eee;
	  -webkit-text-stroke: 1px #000;
  }

		
		
						
/*====================================================================
共通
====================================================================*/
		
		.hero-anime svg {
    width: 130%;
}

    h2.section-title {
        font-size:34px;
    }

    .top-client h2, .top-news h2 {
        padding-left: 14%;
        letter-spacing: 0em;
        margin-bottom: 40px;
    }
	  


    .top-main-coppy, .service-main-coppy{
        padding: 60px 10px;
    
    }

    .top-main-coppy p {
        color: #eee;
        font-size: 18px;
        text-align: center;
        line-height: 2;
			  font-weight: 600;
    }


    .main-coppy-img_area {
        width: 350px;
        margin: 18px auto;
    }

    .main-coppy-img_area img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }


    /* about_us */
    .top-about_us {
        padding: 30px 0 30px;
    }

    .about_us-title {
        /* position: absolute; */
        display: block;
        gap: 0;
        top: 18px;
        left: 0;
    }

    .about_us-title .title-box {
        margin-left: 10%;
        width: auto;
        text-align: left;
    }

    .about_us-title .btn {
        padding: 6px 8px;
        width: fit-content;
        margin-top: 10px;
        margin-left: 0;
        font-size: 18px;
        transition: .5s;;
    }
    
    .about_us-title .exp {
        width: auto;
        line-height: 1.4;
        font-size: 16px;
        padding: 0 20px;
			margin-top: 0;
    }


    .aobut_us-box {
        position: relative;
        width: 200%;
        height: 100vh;
        display: flex;
        align-items: center;
    }
    

    .slides-wrapper{
        display: flex;
        width: calc(100%);
        margin: 0 auto;
        overflow: hidden;
    }
		
		.slide {
   padding-left: 100px;
}

.slide1 {
	margin-left: -20px;
}

 .slide-content {
        width: 320px;
        height: 270px;
        margin: 0 auto;
        box-shadow:  10px 10px 16px #444444,-10px -10px 16px #666666;
        padding: 0 16px;
    }
   
		.slide-content .content-title {
			height: 50px;
		}
		
    .slide-content .content-title h3 {
        text-align: center;
        font-size: 22px;
        font-weight: bold;
					line-height: 1;
    }

    .slide-content p.exp {
        line-height: 1.5;
					font-size: 16px;
    }


    /* ======= client */
		

    /* =======  contact */
.top-contact {
   margin: 80px 0;
}
.contact-btn {
	height: 120px;
}

.contact-btn .bg .dli-chevron-right {
   position: absolute;
   top: 37%;
   width: 28px;
   height: 28px;
   border: 3px solid currentColor;
   border-left: 0;
   border-bottom: 0;
   box-sizing: border-box;
   transform: translateX(-25%) rotate(45deg);
}


  /* ======= news */
body main .news__box .news__item {
    width: 220px;
    padding: 6px 10px;
}
		
		body main .top-news {
			padding: 50px 0 0 0;
		}
		
		body main .news__box .slick__btn {
    background-color: #bbb;
    width: 30px;
    height: 30px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 50%;
			cursor: none;
}
		
		body main .news__box .slick__btn.prev {
	position: absolute;
	top: -80px;
	right: 70px !important;
   padding: 10px;
	transform: rotate(-135deg);
}
		
		
body main .news__box .slick__btn.next {
	position: absolute;
	top: -80px;
	right: 20px !important;
   padding: 10px;
  transform: rotate(45deg);	
}
		
		.slick-list {
			cursor: none;
		}
		

    
  /* ======= company */

.footer__about {
   position: relative;
   display: block;
   gap: 0;
   width: 100%;
   flex-wrap: wrap;
}
 .footer__about .footer__about_table {
   display: block;
   gap: 0;
   padding-top: 20px;
}
 .footer__about .footer__about_table .footer__table_item {
   line-height: 1.6;
}
		
		.footer__about_tit h2 {
			font-size: 34px !important;
		}
		
		
.footer__about .footer__about_table .footer__table_item {
  margin-bottom: 20px;
}
.footer__about .footer__about_table .footer__table_item:last-child {
  margin-bottom: 20px;
}
.footer__about .footer__about_table .footer__table_item .footer__table_head {
  margin-bottom: 0px;
}
		
		 .footer__about .footer__about_table .footer__table_item {
   line-height: 1.6;
}
		
		
	/* ======= footer-menu */
		.footer-menu {
    height: 70vh;
}
		
/*====================================================================
 	SP-service
====================================================================*/
		.service-main-coppy{
			height: 70vh;
			padding: 0 0 50px 0;
		}
	  
.service-main-coppy .service-main-coppy-bg .bg-loop {
			height: 100%;
			top: 30%;
		}
		
		.service-main-coppy p {
  font-size: 18px;
  z-index: 3;
			line-height: 3;
}
		
		.service-main-content h2 {
    margin-bottom: 40px;
}
		
		.service-main-content .service-content-wrap .content-title h3 {
    font-size: 28px;
    font-weight: 600;
}
		
		.service-main-content .service-content-wrap {
    display: block;
    gap: 0;
    padding-left: 14%;
    padding-right: 0;
    margin-bottom: 100px;
}
		
		.service-main-content .service-content-wrap .content-title {
    width: 90%;
    position: relative;
			margin-bottom: 20px;
}
		.service-main-content .service-content-wrap .content-title:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    top: 100%;
    right: 0;
}
		
		.service-main-content .service-content-wrap .content-text {
    width: 90%;
}
		
		.service-main-content .service-content-wrap .content-text p {
    line-height: 1.6;
    font-size: 16px;
}
		
		.service-main-content .service-content-wrap .content-text .flow-box-wrap {
			margin: 20px auto 0 -10%;
			width: 120%;
		}
		
		.service-main-content .service-content-wrap .content-text .flow-box-wrap h4 {
    font-size: 20px;
    font-weight: 600;
    width: fit-content;
    padding: 0;
			margin-left: 14%;
		}
		
		.service-main-content .service-content-wrap .content-text .flow-box-wrap h4::after {
			right: -7px
		}
		
		
				
/*====================================================================
 	SP-company
====================================================================*/

.company-list {
  margin-top: 20px;
  margin-bottom: 200px;
}

.company-list dl {
  display: block;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
	font-size: 20px;
  /* mix-blend-mode: difference; */
}

.company-list dl dt {
  position: relative;
  width: 100%;
  padding-left: 20px;
  color: #fff;
  font-weight: 200;
  line-height: 1.4;
	margin-top: 30px;
}

.company-list dl dd {
  position: relative;
	 padding-left: 20px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.company-list dl dd .post_code {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
}

		.company-list dl dt:after {
 display: none;
		}
		
.company-list dl dd:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.company-list dl dd span.office_name {
  line-height: 1.6;
}

.company-list dl a {
	text-decoration: underline;
	color: #00f;
}
/*====================================================================
 	SP-recruit
====================================================================*/
		.sub_title p {
    font-size: 20px;

}
		
.job_description {
  margin: 80px auto;
  position: relative;
}

.job_description:after {
  content: "";
  position: absolute;
  top: 90px;
  left: 14%;
  height: 3px;
  width: 80%;
  background-color: #000;
}
	  
	  .job_description .job-box-wrap {
        display: none;
    }
		
.job_description-sp{
    margin-bottom: 40px;
    display: block;
}

.job_description-sp h2{
    font-size: 40px;
    padding: 20px 0 30px;
    text-align: center;
}

.job_description-sp #job-ac_panel {
    width: 85%;
    margin: 0 auto;
}

.job_description-sp .job_title{
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 0 18px 0;
    text-align: center;
    margin-bottom: 10px;
    background-color: #333;
    /* 適宜 */
    color: #eee;
}

.job_description-sp .job_title.active {
    background-color: #ddd;
    color: #333;
}

.job_description-sp .job_detail {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 16px;
    padding-bottom: 20px;
    background-color: #ddd;
    display: none;
}

.job_description-sp .job_detail dt {
    font-weight: 500;
}

.job_description-sp .job_detail dd {
    margin-bottom: 18px;
    border-bottom: 2px solid #333;
    font-weight: 400;
}

.job_description-sp .job_detail dd span.office_name {
    font-weight: 600;

}

.job_description-sp .job_detail dd span.post_code {
    font-weight: 400;
    font-size: 16px;
}

.job_detail h3 {
	font-size: 20px; 
	font-weight: 600;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 8px;
    letter-spacing: .1em;
}


		
		
/*====================================================================
  form
====================================================================*/
 
	  label span.required {
	font-size: 10px;
	padding: 3px;
	margin-left: 10px;
}

.formarea .job-form {
  margin-left: 5%;
	margin-bottom: 80px;
  width: 90%;
	font-size: 18px;
	background-color: #eee;
	padding: 20px 20px 30px;
}

.formarea .contact-form {
		padding: 100px 30px 60px;
		font-size: 20px;
	  margin-left: 6%;
	margin-bottom: 120px;
}

.wpcf7-not-valid-tip {
	font-size: 16px;
	margin-top: 6px;
}

.formarea .job-form .form-wrap,
.formarea .contact-form .form-wrap
{
	display: block;
	margin-bottom: 10px;
	border-bottom: 1px solid #666;
	padding-bottom: 18px;
}

.formarea .job-form .form-wrap .form-title,
.formarea .contact-form .form-wrap .form-title{
		line-height: 50px;
	 padding-left: 10px;
}

.formarea .job-form .form-wrap .form_box,
.formarea .contact-form .form-wrap .form_box,
.isp-btn,
.submit-btn {
	width: 100%;
	margin-left: auto;
}

.formarea .job-form .form-wrap .exp,
.formarea .contact-form .form-wrap .exp {
	width: 100%;
	margin-left: 0;
	margin-top: 6px;
	font-size: 14px;
	padding-left: 20px;
}
		
 .checkbox-cl01 {
			display: block;
			width: 80%;
			margin: 0 auto;
		}
		
		.wpcf7-list-item-label {
			margin:  0 22px 0 0;
		}

.wpcf7-textarea {
	background-color: #ccc;
	width: 100%;
	padding: 6px 10px;
}

.wpcf7-text {
	background-color: #ccc;
	width: 100%;
	line-height: 40px;
		padding: 6px 10px;
}

.submit-btn {
	margin-top: 44px;
}

.submit-btn p  {
	color: #eee;
	background-color: #000;
	padding: 6px 0px 4px 66px;
	cursor: pointer;
	width: fit-content;
	line-height: 40px;
}



.checkbox-cl01 input {
  display: none;
}

.checkbox-cl01 input + span {
  padding-left: 24px;
  display: inline-block;
  position: relative;
	 line-height: 50px;
}

.checkbox-cl01 input + span::after,
.checkbox-cl01 input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
	left: 0;
}

.checkbox-cl01 input + span::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
	transform: translatey(-50%);
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

.checkbox-cl01 input:checked + span::before {
  width: 10px;
  top: 11px;
  left: 4px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-cl01 input:checked + span::after {
  display: block;
}
		
		.agree_chk {
			margin: 0;
			width: 100%;
		}
		
		.agree_chk span label span {
			margin: 0;
		}
		
		.agree_chk {
			font-size: 14px;
		}
		
		
		

	  
}
.grecaptcha-badge { visibility: hidden; }

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
  
  .iframe-cursor-overlay {
    display: none;
  }
}

.privacy-policy p a {
	text-decoration: underline;
}
