@charset "UTF-8";

.wrapper{
  position: relative;
  z-index: 1;
}

/* #header
-------------------------------------------------- */
#header{
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 50px 4.5vw 0 6.2vw;
  z-index: 100;
  transition: background-color .3s ease, padding-top .3s ease;
  background: none;
}

.home #header{
  padding-top: 70px;
}

#header.is_after_fv,
#header.is_dark_logo{
  padding-top: 20px;
}


@media (max-width: 767px){
  #header{
    padding: 50px 10vw 0 8.9vw;
  }
  .header_inner .logo{
    width: 148px!important;
  }
}

.header_inner{
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

#header .logo {
  width: 235px;
  position: relative;
}

#header .logo a {
  position: relative;
  display: inline-block;
}

#header .logo_white,
#header .logo_dark {
  display: block;
  transition: opacity 0.3s;
}

#header .logo_dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

#header.is_dark_logo .logo_white,
#header.is_after_fv .logo_white {
  opacity: 0;
}

#header.is_dark_logo .logo_dark,
#header.is_after_fv .logo_dark {
  opacity: 1;
}

#hamburger {
  display: block;
  width: 38px;
  height: 38px;
  background-color: transparent;
  border-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 9999;
}

.home .header_inner .logo,
.home #hamburger {
  pointer-events: auto;
}

#hamburger span {
  width: 44px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}

#header.is_dark_logo #hamburger span,
#header.is_after_fv #hamburger span,
#hamburger.active span {
  background-color: #000;
}

.rec_wrapper #header.is_dark_logo #hamburger span,
.rec_wrapper #header.is_after_fv #hamburger span,
.rec_wrapper #hamburger.active span {
  background-color: #fff;
}

#hamburger span:nth-child(1) {
  top: 0;
}

#hamburger span:nth-child(2) {
  margin: 8px 0;
}

#hamburger span:nth-child(3) {
  top: 0;
}

#hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  top: -15px;
  transform: rotate(-45deg);
}

@media (max-width: 767px){
  #hamburger {
    top: -5px;
    width: 26px;
    height: 26px;
  }
  #hamburger span {
    width: 26px;
    height: 1px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  #hamburger.active span:nth-child(1) {
    top: 5px;
  }
  #hamburger.active span:nth-child(2) {
    margin: 6px 0;
  }
  #hamburger.active span:nth-child(3) {
    top: -10px;
  }
}

body.is_index_nav_open {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #index_nav {
    padding: 10rem 2.4rem 3.2rem;
  }
}

.nav {
  width: 350px;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  padding: 80px 15px 50px 15px;
  background: url(../img/nav_bg.webp) no-repeat center top / cover;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(100%, 0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.rec_wrapper .nav {
  background: #6E5825;
}

.nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
}

.gnav li{
  border-bottom: 1px solid #000;
}

.rec_wrapper .gnav li{
  border-bottom: 1px solid #fff;
}

.gnav li a{
  display: block;
  padding: 15px;
  color: #000;
  font-size: 1.7rem;
}

.rec_wrapper .nav {
  .gnav li a{
    color: #fff;
  }
}

.nav_btn{
  margin: 40px auto 0 auto!important;
  width: min(100%, 300px);
}

.nav_btn li{
  margin-bottom: 20px;
}

.nav_btn li a{
  height: 50px;
  display: flex;
	align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.7rem;
  color: #fff!important;
  background: #00092E;
  border: 1px solid #00092E;
  border-radius: 4px;
}

.nav_btn li a:hover{
  color: #00092E!important;
  background: #fff;
}

.nav_btn li a.icon::after{
  content: "";
  display: block;
	width: 15px;
	height: 15px;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_blank.svg);
	mask-size: contain;
  transition: ease .3s;
}

.nav_btn li a:hover::after{
  background: #00092E;
}

.nav .logo_img{
  display: block;
  margin: 50px auto 0 auto;
}

@media screen and (max-width: 767px) {
  .nav {
    width: 100%;
    padding: 60px 15px 50px 15px;
  }
  .nav a{
    font-size: 1.2rem;
  }
}

/* #footer
-------------------------------------------------- */
.footer_contact{
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: 70px 20px 100px 20px;
  background: url(../img/footer_contact_bg.webp) no-repeat center center / cover;
}

.footer_contact h2{
  display: inline-block;
  padding: 0 80px 20px 80px;
  font-size: 4.8rem;
  font-weight: normal;
  line-height: 1;
  border-bottom: 3px solid #fff;
}

.footer_contact ul{
  width: min(100%, 1000px);
  margin: 80px auto 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer_contact ul li{
  flex: 0 1 430px;
}

.footer_contact ul li h3{
  font-size: 3.2rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.footer_contact ul li a{
  display: block;
  text-align: center;
  padding: 8px 20px;
  line-height: 1.3;
  font-size: 2.8rem;
  color: var(--blue);
  background: #fff;
  border-radius: 9999px;
}

.footer_contact ul li a:hover{
  color: #fff;
  background: var(--blue);
}

/******************/

.footer_contact_rec{
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: 70px 20px 100px 20px;
  background: url(../img/footer_contact_bg.webp) no-repeat center center / cover;
}

.footer_contact_rec h2{
  width: min(100%, 500px);
  margin: 0 auto;
  font-size: 1.6rem;
  padding: 0 0 15px 0;
  line-height: 1;
  border-bottom: 1px solid #fff;
}

.footer_contact_rec p.txt{
  margin: 40px 0 80px 0;
  display: flex;
  flex-wrap: wrap;
	align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.3;
  font-size: 3.2rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.footer_contact_rec .btn{
  width: min(100%, 430px);
  margin: 0 auto;
}

.footer_contact_rec .btn a.icon{
  width: 100%;
  height: 53px;
  display: flex;
	align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 2.8rem;
  color: var(--blue);
  background: #fff;
  border: none;
  border-radius: 9999px;
}

.footer_contact_rec .btn a.icon::after{
  content: "";
  display: block;
	width: 20px;
	height: 20px;
	background: var(--blue);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_blank2.svg);
	mask-size: contain;
  transition: ease .3s;
}

.footer_contact_rec .btn a.icon:hover{
  color: #fff;
  background: var(--blue);
}

.footer_contact_rec .btn a.icon:hover::after{
  background: #fff;
}

@media (max-width: 1000px){
  .footer_contact, .footer_contact_rec{
    padding: 40px 20px;
  }
  .footer_contact h2{
    padding: 0 10px 10px 10px;
    font-size: 3rem;
  }
  .footer_contact ul{
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10%;
  }
  .footer_contact ul li h3,
  .footer_contact_rec p.txt{
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .footer_contact ul li a{
    padding: 8px 20px;
    font-size: 2.2rem;
  }
}
@media (max-width: 767px){
  .footer_contact ul{
    margin: 40px auto 0 auto;
    gap: 10px;
  }
  .footer_contact ul li h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .footer_contact_rec p.txt{
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .footer_contact ul li a{
    padding: 8px 10px;
    font-size: 1.6rem;
  }
  .footer_contact_rec .btn a.icon{
    width: 250px;
    height: 44px;
    margin: 0 auto;
    gap: 20px;
    font-size: 1.8rem;
  }
  .footer_contact_rec .btn a.icon::after{
    width: 16px;
    height: 16px;
  }
}

#footer{
  padding: 60px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  background: var(--blue);
}

.rec_wrapper #footer{
  background: var(--brown);
}

#footer .inner{
  width: min(100%, 1230px);
}

.fnav{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

.fnav li a{
  font-size: 1.7rem;
}

.link_wrap{
  margin-top: 60px;
  line-height: 1.3;
}

.link_wrap h4{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 2rem;
}

.link_wrap h4::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}

.link_wrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 0 0 0 40px;
}

.link_wrap ul li a{
  display: flex;
  align-items: center;
  gap: 10px;
}

.link_wrap ul li a::after{
  content: "";
  display: block;
	width: 15px;
	height: 15px;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_blank.svg);
	mask-size: contain;
  transition: ease .3s;
}

.link_wrap ul li a:hover{
  text-decoration: underline;
}

.add_wrap{
  margin: 60px 0;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.add_wrap .logo{
  flex: 0 1 400px;
}

.add_wrap .txt p + p{
  margin-top: 20px;
}

#footer small{
  display: block;
  text-align: center;
	font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1em;
}

@media (max-width: 767px){
  .fnav li a{
    font-size: 1.4rem;
  }
  .link_wrap h4{
    gap: 10px;
    font-size: 1.6rem;
  }
  .link_wrap ul{
    flex-direction: column;
    gap: 20px;
    padding: 0 0 0 1em;
    font-size: 1.3rem;
  }
  .add_wrap{
    display: block;
    margin: 60px 0 40px 0;
  }
  .add_wrap p{
    font-size: 1.3rem;
    margin-top: 15px;
  }
  #footer small{
    font-size: .8rem;
  }
}

#pageup{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  transition: ease-in-out .3s;
}

#pageup a {
  display: block;
  width: 86px;
  aspect-ratio: 86 / 84;
  text-indent: -9999px;
  position: relative;
  z-index: 1000;
}

#pageup a::before {
  content: "";
  display: block;
	width: 86px;
	height: 84px;
	background: var(--blue);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/pageup.svg);
	mask-size: contain;
  position: absolute;
  inset: 0;
}

@media screen and (max-width: 767px) {
	#pageup{
	  bottom: 10px;
	  right: 10px;
	}
	#pageup a{
	  width: 60px;
	  padding: 10px;
	}
}

/* 
-------------------------------------------------- */




main{
  position: relative;
  z-index: 11;
}

.home main{
  padding-bottom: 200px;
}

@media (max-width: 767px){
  .home main{
    padding-bottom: 100px;
  }
}

:root {
  --fv_frame_gap_pc: 32px;
  --fv_frame_gap_sp: 16px;
}

.fv_scroll_section {
  position: relative;
  z-index: 150;
  height: 280vh;
  padding: 32px;
  background: #1b2758;
}

.fv_sticky {
  position: sticky;
  z-index: 150;
  top: 32px;
  height: calc(100vh - 64px);
  height: calc(100svh - 64px);
  overflow: hidden;
  border-radius: 32px;
}

.fv_bg_slider,
.fv_bg_slider .slick-list,
.fv_bg_slider .slick-track,
.fv_bg_item {
  height: 100%;
}

.fv_bg_slider {
  position: relative;
  z-index: 1;
}

.fv_bg_item {
  overflow: hidden;
}

.fv_bg_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.fv_bg_item.slick-active img {
  transform: scale(1.08);
}



.fv_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.fv_header {
  width: auto;
  margin: 0 150px 0 calc(6.2vw + 285px);
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.fv_header_nav {
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
}

@media (max-width: 1050px){
  .fv_header {
    display: none!important;
  }
}

.fv_header_nav_list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.fv_header_nav_item a {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: none;
}

.fv_header_menu {
  position: relative;
  width: 48px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.fv_header_menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.fv_header_menu span:nth-child(1) {
  top: 4px;
}

.fv_header_menu span:nth-child(2) {
  top: 17px;
}

.fv_header_menu span:nth-child(3) {
  top: 30px;
}

.fv_main_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  color: #fff;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  text-align: center;
  width: min(1100px, calc(100% - 120px));
  opacity: 1;
  will-change: transform, opacity;
}

.fv_main_copy_pc p {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.fv_main_copy_pc p + p {
  margin-top: 24px;
}

.fv_main_copy_sp {
  display: none;
}

.fv_detail {
  position: absolute;
  top: 22%;
  right: 5%;
  z-index: 4;
  width: min(540px, 45%);
  color: #fff;
  opacity: 1;
  pointer-events: none;
}

.fv_detail p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.fv_detail .js_fv_detail_item {
  opacity: 0;
  transform: translateY(120px);
  will-change: transform, opacity;
}

.fv_detail p.fv_detail_txt1 {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.fv_detail p.fv_detail_txt2 {
  font-size: 1.6rem;
  line-height: 2;
  margin: 60px 0;
}

.fv_detail p.fv_detail_txt3 {
  margin-top: 40px;
  font-weight: bold;
}

.fv_detail p.fv_detail_link_wrap {
  margin-top: 60px;
}

.fv_detail_link {
  padding: 10px 35px 12px 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px dashed #fff;
  position: relative;
  pointer-events: auto;
}

.fv_detail_link::after{
  content: "";
  display: block;
  width: 8px;
	aspect-ratio: 13 / 20;
	background: #fff;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/icon_arrow.svg);
	mask-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: ease .3s;
}

.fv_detail_link:hover::after {
  right: 5px;
}

.fv_detail_link::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  transition: ease .3s;
}

.fv_detail_link:hover::before{
  transform: scaleX(1);
}

.top_intro_section {
  padding: 120px 32px;
  background: #fff;
}

.top_intro_section .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top_intro_section h2 {
  margin: 0 0 24px;
  font-size: 4rem;
  line-height: 1.4;
}

.top_intro_section p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1200px) {
  .fv_header_nav_list {
    gap: 24px;
  }

  .fv_header_nav_item a {
    font-size: 1.4rem;
  }

  .fv_detail {
    width: min(460px, 42%);
  }

  .fv_detail p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .fv_scroll_section {
    height: auto;
    min-height: 240vh;
    padding: 16px;
  }

  .fv_sticky {
    top: 16px;
    height: auto;
    aspect-ratio: 362 / 650;
    border-radius: 22px;
  }
  .fv_bg_slider,
  .fv_bg_slider .slick-list,
  .fv_bg_slider .slick-track,
  .fv_bg_item {
    height: 100%;
  }

  .fv_bg_item img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    display: block;
  }
  .fv_header {
    top: 28px;
    left: 28px;
    right: 28px;
  }

  .fv_header_nav {
    display: none;
  }
  .fv_header_menu {
    width: 30px;
    height: 30px;
  }

  .fv_header_menu span:nth-child(1) {
    top: 2px;
  }

  .fv_header_menu span:nth-child(2) {
    top: 14px;
  }

  .fv_header_menu span:nth-child(3) {
    top: 26px;
  }

  .fv_main_copy {
    top: 52%;
    left: 50%;
    width: auto;
  }

  .fv_main_copy_pc {
    display: none;
  }

  .fv_main_copy_sp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .fv_main_copy_sp p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.3em;
    white-space: nowrap;
  }

  .fv_detail {
    top: 12%;
    right: 24px;
    bottom: 32px;
    left: 24px;
    width: auto;
    opacity: 0;
    overflow: hidden;
    transform: translateY(120px);
  }
  .fv_detail .js_fv_detail_item {
    opacity: 1;
    transform: translateY(0);
  }
  .fv_detail p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .fv_detail p + p {
    margin-top: 18px;
  }
  .fv_detail p.fv_detail_txt1 {
    font-size: 4vw;
    line-height: 1.6;
    text-align: center;
  }
    .fv_detail p.fv_detail_txt2 {
    font-size: 1.5rem;
    line-height: 2;
    margin: 20px 0;
  }
  .fv_detail p.fv_detail_txt3 {
    margin-top: 30px;
    font-weight: bold;
  }
  .fv_detail_link_wrap {
    margin-top: 28px!important;
  }
  .fv_detail_link {
    padding: 10px 27px 10px 10px;
    gap: 12px;
    font-size: 1.6rem;
  }
  .fv_scroll_indicator {
    position: absolute;
    left: 6vw;
    bottom: 30px;
    z-index: 4;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    transform: none;
    opacity: 1;
    will-change: opacity;
  }
  .fv_scroll_indicator_text {
    display: none;
  }
  .fv_scroll_indicator_line {
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
  }
  .fv_scroll_indicator_text {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }
}

.ttl_line{
  width: min(100%, 1100px);
  margin: 0 auto 90px auto;
  position: relative;
}

.ttl_line span{
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-size: 4.8rem;
  font-weight: 800;
  padding: 0 20px 20px 0;
  border-bottom: 3px solid var(--blue);
}

.ttl_line::before{
  content: "";
  display: block;
  width: 50vw;
  height: 3px;
  background: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}

@media (max-width: 1140px){
  .ttl_line span{
    padding-left: 20px;
  }
}
@media (max-width: 767px){
.ttl_line{
    margin-bottom: 35px;
  }
  .ttl_line span{
    padding: 0 15px 6px 40px;
    font-size: 2rem;
    border-bottom: 1px solid var(--blue);
  }
  .ttl_line::before{
    display: none;
  }
}

.index_works{
  padding: 60px 0 0 0;
  overflow: hidden;
}

.index_works ul li{
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
}

.index_works ul li h3{
  flex: 0 1 60%;
  background: url(../img/home/exterior-greening.webp) no-repeat right top / cover;
  transition: ease .3s;
}

.index_works ul li:nth-child(even) h3{
  background-position: left top;
}

.index_works ul li.exterior-greening h3{ background-image: url(../img/home/exterior-greening.webp);}
.index_works ul li.indoor-greening h3{ background-image: url(../img/home/indoor-greening.webp);}
.index_works ul li.rooftop-greening h3{ background-image: url(../img/home/rooftop-greening.webp);}
.index_works ul li.wall-greening h3{ background-image: url(../img/home/wall-greening.webp);}
.index_works ul li.designated-management h3{ background-image: url(../img/home/designated-management.webp);}
.index_works ul li.landscaping-engineering h3{ background-image: url(../img/home/landscaping-engineering.webp);}

.index_works ul li h3 a{
  display: block;
  width: 100%;
  height: 293px;
  display: flex;
  justify-content: center;
  background: rgba(0,0,0,.36);
  position: relative;
  z-index: 2;
}

.index_works ul li h3 a span{
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  line-height: 1.2;
  font-size: 4.2rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-47%);
}

.index_works ul li:nth-child(even) h3 a span{
  right: auto;
  left: 30px;
}

.index_works ul li h3 a:hover{
  background: rgba(0,0,0,.26);
}

.index_works ul li p{
  flex: 1 1 0%;
  padding: 0 30px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 2;
}

.index_works ul li:nth-child(even) p{
  order: -2;
  text-align: right;
}

@media (max-width: 1200px){
  .index_works ul li h3{
    flex: 0 1 55%;
  }
  .index_works ul li p{
    padding: 0 30px;
    font-size: 2rem;
  }
}
@media (max-width: 767px){
  .index_works ul li{
    display: block;
    margin-bottom: 40px;
  }
  .index_works ul li h3 a{
    padding: 60px 20px;
    height: auto;
  }
  .index_works ul li h3 a span{
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    font-size: 3rem;
    position: static;
    transform: translateY(0);
  }
  .index_works ul li p{
    text-align: center!important;
    padding: 20px;
    font-size: 1.6rem;
  }
}

.index_achievement{
  padding: 210px 0 80px 0;
}

.slider_wrap {
  overflow: hidden;
}

.achievement_slide{
  width: 100%;
  overflow: visible;
}

.achievement_slide .swiper-slide {
  width: min(100%, 1040px)!important;
}

.swiper-button-next,.swiper-button-prev {
  width: 15px;
  color: rgba(0, 9, 46, 0.5);
}

.slide_wrap{
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 10px;
}

.achievement_slide .swiper-slide .img_wrap a{
  display: block;
  overflow: hidden;
  height: 560px;
}

.achievement_slide .swiper-slide .img_wrap a img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
  transition: ease .3s;
}

.achievement_slide .swiper-slide .img_wrap a:hover img{
  filter: brightness(0.8);
}

.achievement_slide .swiper-slide .txt_wrap{
  padding: 20px 20px 10px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.achievement_slide .swiper-slide h3{
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.4;
}

.cate_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achievement_slide .swiper-slide .cate_wrap{
  margin: 30px 0 70px 0;
}

.cate_wrap span, .cate_wrap a{
  padding: 5px 20px;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.3;
  background: var(--blue);
}

.cate_wrap a:hover{
  filter: brightness(1.2);
}

.cate_wrap .cate1{ background: var(--blue);}
.cate_wrap .cate2{ background: var(--blue2);}

.achievement_slide .swiper-slide .txt{
  line-height: 2;
}

.achievement_slide .swiper-slide .btn_more{
  margin-top: auto;
}

.btn_more a{
  display: flex;
	align-items: center;
  justify-content: center;
  width: 137px;
  height: 33px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #00092E;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.btn_more a:hover{
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
}

@media (max-width: 767px){
  .index_achievement{
    padding-top: 100px;
  }
  .achievement_slide .swiper-slide {
    width: 100%!important;
  }
  .slide_wrap{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .achievement_slide .swiper-slide .img_wrap a{
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .achievement_slide .swiper-slide .txt_wrap{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .achievement_slide .swiper-slide h3{
    font-size: 2rem;
  }
  .cate_wrap{
    gap: 5px 10px;
  }
  .achievement_slide .swiper-slide .cate_wrap{
    margin: 20px 0;
  }
  .cate_wrap span, .cate_wrap a{
    padding: 5px 10px;
    font-size: 1.4rem;
  }
  .achievement_slide .swiper-slide .txt{
    line-height: 1.8;
  }
  .achievement_slide .swiper-slide .txt br{
    display: none;
  }
  .achievement_slide .swiper-slide .btn_more{
    margin: 20px auto 0 auto;
  }
  .index_achievement .btn_dot{
    margin: 20px;
  }
}

.index_gijutsu{
  padding: 80px 0;
}

.index_gijutsu .catch_wrap{
  display: flex;
}

.index_gijutsu .catch_wrap .img{
  order: -2;
  flex: 0 1 67%;
}

.index_gijutsu .catch_wrap .img .img2{
  display: block;
  width: 72%;
  margin: 40px 0 0 auto;
  transition: ease .3s;
}

.index_gijutsu .catch_wrap .txt{
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
}

.index_gijutsu .catch_wrap .txt p{
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: 600;
  white-space: nowrap;
  transition: ease .3s;
}

.index_gijutsu .catch_wrap .txt p span{
  display: block;
}

.index_gijutsu .catch_wrap .txt p span:nth-child(2){
  margin-top: 8em;
  margin-right: 30px;
}

@media (max-width: 1300px){
  .index_gijutsu .catch_wrap .txt p{
    font-size: 3rem;
  }
}
@media (max-width: 1000px){
  .index_gijutsu .catch_wrap .img .img2{
    width: 80%;
    margin: 30px 0 0 auto;
  }
  .index_gijutsu .catch_wrap .txt p{
    font-size: 2.6rem;
  }
  .index_gijutsu .catch_wrap .txt p span:nth-child(2){
    margin-top: 6em;
  }
}
@media (max-width: 767px){
  .index_gijutsu{
    padding: 0 0 60px 0;
  }
  .index_gijutsu .catch_wrap .img{
    flex: 0 1 75%;
  }
  .index_gijutsu .catch_wrap .img .img2{
    width: 90%;
    margin: 10px 0 0 auto;
  }
  .index_gijutsu .catch_wrap .txt p{
    font-size: 1.8rem;
  }
  .index_gijutsu .catch_wrap .txt p span:nth-child(2){
    margin-top: 2em;
    margin-right: 10px;
  }
}

.index_gijutsu .shikaku{
  width: min(100%, 885px);
  margin: 0 auto;
  padding: 100px 0;
  color: #00092E;
}

.index_gijutsu .shikaku h3{
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
}

.shikaku_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shikaku_list li{
  padding: 0 20px;
}

.shikaku_list li:nth-child(4n+1),
.shikaku_list li:nth-child(4n+2){
  background-color: #fff;
}

.shikaku_list li dl{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3em;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 30px;
}

.shikaku_list li dt,
.shikaku_list li dd{
  margin: 0;
  line-height: 1.3;
  font-size: 2.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #00092E;
}

.shikaku_list li dt{
  min-width: 0;
}

.shikaku_list li dd{
  border-left: 1px solid #00092E;
  padding-left: 10px;
  text-align: right;
  white-space: nowrap;
}

.index_gijutsu .catch_txt{
  padding: 0 20px;
  line-height: 2.1;
  letter-spacing: .05em;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #00092E;
}

@media (max-width: 900px){
  .shikaku_list li dl{
    padding: 12px 0;
  }
  .shikaku_list li dt,
  .shikaku_list li dd{
    font-size: 1.8rem;
  }
}
@media (max-width: 767px){
  .index_gijutsu .shikaku{
    padding: 50px 0;
  }
  .index_gijutsu .shikaku h3{
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .shikaku_list{
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .shikaku_list li{
    background-color: transparent!important;
    padding: 0 10px;
  }
  .shikaku_list li:nth-child(odd){
    background-color: #fff!important;
  }
  .shikaku_list li dt,
  .shikaku_list li dd{
    font-size: 1.5rem;
  }
  .index_gijutsu .catch_txt{
    padding: 0 20px;
    line-height: 1.8;
    text-align: left;
    font-size: 1.6rem;
  }
}

.index_partner{
  padding: 130px 0 200px 0;
}

.index_partner .txt{
  margin-bottom: 30px;
  text-align: center;
  color: #000;
  font-size: 2rem;
}

.partner_list{
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 2.5%;
}

.partner_list li a{
  display: block;
}

@media (max-width: 1000px){
  .partner_list{
    gap: 20px 10px;
  }
}
@media (max-width: 767px){
  .index_partner{
    padding: 60px 0;
  }

  .index_partner .txt{
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: left;
    font-size: 1.6rem;
  }
  .partner_list{
    width: min(100%, 400px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.bnr_recruit{
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 20px;
}

.bnr_recruit a{
  height: 315px;
  display: flex;
	align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 4px 4px 8px 0 rgba(0,0,0,.25);
}

.bnr_recruit a:hover{
  box-shadow: 4px 4px 8px 0 rgba(0,0,0,0);
}

.bnr_recruit a::before,
.bnr_recruit a::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform .45s ease;
}

.bnr_recruit a::before{
  background: url(../img/bnr_recruit.webp) no-repeat center center / cover;
  z-index: 0;
}

.bnr_recruit a:hover:before{
  transform: scale(1.01);
}

.bnr_recruit a::after{
  background: #000;
  opacity: .61;
  transition: opacity .45s ease;
  z-index: 1;
}

.bnr_recruit a:hover::after{
  opacity: .32;
}

.bnr_recruit a span{
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}

.bnr_recruit a span.txt2{
  font-size: 4.8rem;
  margin: 25px 0 35px 0;
}

.bnr_recruit a span.txt3{
  font-size: 3.6rem;
  font-weight: 500;
}

@media (max-width: 1000px){
  .bnr_recruit a span{
    font-size: 2rem;
  }
  .bnr_recruit a span.txt2{
    font-size: 3.8rem;
    margin: 25px 0 35px 0;
  }
  .bnr_recruit a span.txt3{
    font-size: 2.6rem;
  }
}
@media (max-width: 767px){
  .bnr_recruit a{
    height: auto;
    padding: 30px 20px;
    border-radius: 16px;
  }
  .bnr_recruit a span{
    font-size: 1.4rem;
  }
  .bnr_recruit a span.txt2{
    font-size: 2.8rem;
    margin: 10px 0 20px 0;
  }
  .bnr_recruit a span.txt3{
    font-size: 1.5rem;
  }
}

.mv_wrap{
  padding: 126px 30px 40px 30px;
  background: var(--blue);
}

.mv_wrap .mv_inner{
  height: 373px;
  display: flex;
	align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  text-align: center;
  border-radius: 26px;
  background: url(../img/contact/mv_bg.webp) no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}
.page-aboutus .mv_wrap .mv_inner{ background-image: url(../img/aboutus/mv_bg.webp);}

.mv_wrap .mv_inner::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.42);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.mv_wrap .mv_inner > *{
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 4rem;
  font-weight: normal;
  position: relative;
  z-index: 2;
}

.mv_wrap .mv_inner span{
  display: block;
  letter-spacing: 0.2em;
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.mv_wrap .mv_inner span.tarm_tt{
  margin-top: 20px;
  padding: 10px;
  background: var(--blue);
}

@media (max-width: 767px){
  .mv_wrap{
    padding: 30px 15px;
  }
  .mv_wrap .mv_inner{
    height: auto;
    aspect-ratio: 362 / 293;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    padding: 0 25px 25px 0;
    }
  .mv_wrap .mv_inner > *{
    font-size: 2rem;
    text-align: right;
  }
  .mv_wrap .mv_inner span{
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .mv_wrap .mv_inner span.tarm_tt{
    margin-top: 10px;
    padding: 5px 10px;
  }
}

.contents_wrap{
  padding: 120px 20px;
  color: #000;
}

.page-aboutus .contents_wrap{
  padding: 120px 0;
}

@media (max-width: 767px){
  .contents_wrap{
    padding: 50px 20px 70px 20px;
  }
  .page-aboutus .contents_wrap{
    padding: 50px 0 70px 0;
  }
}

.contact_step{
  margin-bottom: 50px;
  text-align: center;
}

.contact_step p{
  margin: 0 0 25px 0;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color:#0d1b4c;
}

.contact_step ol{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact_step ol li{
  display: block;
  width: 58px;
  height: 4px;
  background: #B3B3B3;
}

.contact_step ol li.is_active{
  background: var(--blue);
}

.page-thanks .contact_step{
  margin-bottom: 90px;
}

.thanks_wrap{
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

.thanks_wrap::before{
  content: "";
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: 38px;
  background: url(../img/icon_leaf_dark.svg) no-repeat center center / auto 100%;
}

.thanks_wrap .wp-block-buttons{
  margin-top: 90px;
}

@media (max-width: 767px){
  .thanks_wrap{
    text-align: left;
  }
}

.rinen_wrap{
  overflow: hidden;
}

.rinen_wrap .wrap1_outer{
  position: relative;
}

.rinen_wrap .wrap1_outer::before{
  content: "";
  display: block;
  width: 34%;
  height: 100%;
  background: url(../img/aboutus/rinen_01.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
}

.rinen_wrap .wrap1{
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  position: relative;
  text-align: right;
}

.rinen_wrap .wrap1 .txt{
  display: inline-block;
  margin: 0 0 0 auto;
  padding-right: 20px;
}

.rinen_wrap .wrap1 .txt h3{
  margin-left: 6vw;
  align-self: flex-start;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
  transition: ease .3s;
}

.rinen_wrap .wrap1 .txt h3 span{
  display: block;
}

.rinen_wrap .wrap1 .txt h3 span:nth-child(2){
  margin-top: 3em;
  margin-right: 30px;
}

.rinen_wrap .wrap1 .txt p{
  text-align: right;
  line-height: 2;
  font-size: 2rem;
}

.rinen_wrap .wrap2{
  position: relative;
  width: min(100%, 1200px);
  margin: 135px auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6vw;
}

.rinen_wrap .wrap2 .img{
  flex: 0 1 35%;
}

.rinen_wrap .wrap2 .txt{
  flex: 1 1 0%;
  padding-left: 20px;
}

.rinen_wrap .wrap2 .txt p{
  text-align: right;
  line-height: 2;
  font-size: 2rem;
}

.rinen_wrap .wrap2 .txt p.bold{
  font-weight: 600;
}

@media (max-width: 1200px){
  .rinen_wrap .wrap1 .txt h3{
    margin-left: 4vw;
    font-size: 3rem;
  }
  .rinen_wrap .wrap1 .txt p{
    font-size: 1.7rem;
  }
}
@media (max-width: 1000px){
  .rinen_wrap .wrap1 .txt{
    padding-left: 40%;
  }
  .rinen_wrap .wrap1 .txt h3{
    font-size: 2.6rem;
  }
  .rinen_wrap .wrap1 .txt p,
  .rinen_wrap .wrap2 .txt p{
    font-size: 1.6rem;
  }
}
@media (max-width: 767px){
  .rinen_wrap .wrap1 .txt h3{
    margin-left: 0;
    margin-bottom: 30px;
    align-self: auto;
    white-space: normal;
    writing-mode: horizontal-tb;
    line-height: 1;
    font-size: 1.7rem;
  }
  .rinen_wrap .wrap1 .txt h3 span:nth-child(2){
    margin-top: 1em;
    margin-right: 0;
    margin-left: 3em;
  }
  .rinen_wrap .wrap1 .txt p,
  .rinen_wrap .wrap2 .txt p{
    font-size: 1rem;
    text-align: left;
  }
  .rinen_wrap .wrap2{
    margin: 80px auto;
    align-items: flex-start;
    gap: 0vw;
  }
  .rinen_wrap .wrap2 .txt{
    padding-right: 10px;
  }
  .rinen_wrap .wrap2 .img{
    flex: 0 1 34%;
  }
}

.message_wrap{
  padding: 140px 0;
}

.message_wrap .inner{
  padding: 0 20px;
}

.message_wrap .inner p{
  line-height: 2;
  text-align: center;
  font-size: 2rem;
}

.message_wrap p + p{
  margin-top: 1em;
}

.message_wrap .inner p.sign{
  margin-top: 50px;
  font-size: 2.5rem;
  text-align: right;
}

.message_wrap .img{
  margin-top: 90px;
}

@media (max-width: 767px){
  .message_wrap{
    padding: 70px 0;
  }
  .message_wrap .inner p{
    text-align: left;
    line-height: 1.8;
    font-size: 1.3rem;
  }
  .message_wrap .inner p.sign{
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .message_wrap .img{
    margin-top: 50px;
  }
}

.history_wrap{
  padding: 140px 0;
}

.history_list{
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #000;
}

.history_list dt{
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #000;
}

.history_list dd + dt{
  margin-top: 40px;
}

.history_wrap .img{
  margin-top: 120px;
  display: grid;
  grid-template-columns: 60% auto;
  gap: 3%;
}

.history_wrap .img img:last-child{
  margin-top: 24vw;
}

@media (max-width: 767px){
  .history_wrap{
    padding: 70px 0;
  }
  .history_list{
    padding: 0 20px;
    font-weight: normal;
  }
  .history_list dd + dt{
    margin-top: 25px;
  }
  .history_wrap .img{
    margin-top: 60px;
  }
}

.overview_wrap{
  padding: 140px 0;
}

.overview_wrap h2{
  width: min(100%, 825px);
  margin: 0 auto;
  text-align: center;
  display: block;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-size: 4.8rem;
  font-weight: 800;
  padding: 0 20px 20px 0;
  border-bottom: 3px solid var(--blue);
}

.overview_list{
  width: min(100%, 577px);
  margin: 70px auto 130px auto;
  padding: 0 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}

.overview_list dt{
  font-size: 1.8rem;
  padding-bottom: 8px;
  margin: 50px 0 8px 0;
  border-bottom: 1px solid #000;
}

.overview_list dd table{
  display: inline-block;
  text-align: left;
}

.overview_list dd table th{
  padding: 15px 60px 15px 0;
}

.overview_list dd table td{
  padding: 15px 0;
}

.overview_list dd ul{
  display: inline-block;
}

.overview_list dd ul li{
  text-align: left;
}

@media (max-width: 767px){
  .overview_wrap{
    padding: 70px 20px;
  }
  .overview_wrap h2{
    font-size: 2rem;
    padding: 0 0 6px 0;
    border-bottom: 1px solid var(--blue);
  }
  .overview_list{
    width: 100%;
    margin: 40px auto 70px auto;
    padding: 0;
    font-weight: normal;
  }
  .overview_list dt{
    font-size: 1.6rem;
    padding-bottom: 6px;
    margin: 25px 0 6px 0;
  }
  .overview_list dd table th{
    padding: 10px 20px 10px 0;
    font-weight: normal;
  }
  .overview_list dd table td{
    padding: 10px 0;
  }
}

.contents_2col_wrap{
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: 120px 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

.side_wrapper{
  min-width: 0;
  position: sticky;
  top: 80px;
  line-height: 1;
}

.side_wrapper p.all{
  left: 0;
  font-size: 2.9rem;
}

.side_wrapper p.all a{
  display: flex;
  align-items: center;
  gap: 10px;
}

.side_wrapper h3{
  margin: 30px 0;
  font-size: 3.2rem;
}

.side_wrapper p.all + h3{
  margin-top: 60px;
}

.side_wrapper ul{
  margin-left: 35px;
}

.side_wrapper ul li a{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #62687B;
}

.side_wrapper ul li.current a,
.side_wrapper ul li a:hover{
  color: var(--blue);
}

.side_wrapper .all a.current::before,
.side_wrapper ul li.current a::before{
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1 / 1;
  background: #00092E;
  border-radius: 50%;
}

.main_wrapper{
  min-width: 0;
  padding-top: 90px;
}

.works_list_wrap{
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 25px;
}

.works_list_wrap + .works_list_wrap{
  margin-top: 126px;
}

.works_list_wrap .img_wrap a{
  display: block;
  overflow: hidden;
  height: 560px;
}

.works_list_wrap .img_wrap a img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
  transition: ease .3s;
}

.works_list_wrap .img_wrap a:hover img{
  filter: brightness(0.8);
}

.works_list_wrap .txt_wrap{
  padding: 20px 0 10px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.works_list_wrap h3{
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.4;
}

.works_list_wrap .cate_wrap{
  margin: 30px 0 70px 0;
}

.works_list_wrap  .txt_wrap .txt{
  line-height: 2;
}

.works_list_wrap .txt_wrap .btn_more{
  margin-top: auto;
}

.main_wrapper .btn{
  margin-top: 100px;
}

@media (max-width: 1200px){
  .contents_2col_wrap{
    grid-template-columns: 200px 1fr;
  }
  .works_list_wrap h3{
    font-size: 3rem;
  }
}
@media (max-width: 1000px) {
  .contents_2col_wrap{
    grid-template-columns: 140px 1fr;
    padding: 60px 20px;
  }
  .side_wrapper h3{
    margin: 30px 0 20px 0;
    font-size: 2rem;
  }
  .side_wrapper ul{
    margin-left: 0;
  }
  .side_wrapper ul li a{
    font-size: 1.6rem;
    gap: 8px;
  }
  a.current::before,
  .side_wrapper ul li.current a::before {
    width: 10px;
  }
}
@media (max-width: 1000px){
  .works_list_wrap + .works_list_wrap{
    margin-top: 80px;
  }
  .works_list_wrap .img_wrap a{
    height: 100%;
  }
  .works_list_wrap h3{
    font-size: 2.6rem;
  }
  .works_list_wrap .cate_wrap{
    margin: 30px 0;
    gap: 5px;
  }
  .works_list_wrap .cate_wrap span,
  .works_list_wrap .cate_wrap a {
    padding: 5px 12px;
    font-size: 1.3rem;
  }
  .works_list_wrap .txt_wrap .btn_more{
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .contents_2col_wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .side_wrapper{
    position: static;
    padding: 20px 15px;
    background: #fff;
  }
  .side_wrapper p.all{
    display: none;
  }
  .side_wrapper h3{
    margin: 10px 0;
    font-size: 1.6rem;
  }
  .side_wrapper p.all + h3{
    margin-top: 0;
  }
  .side_wrapper ul{
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .side_wrapper ul li a{
    gap: 0;
    padding: 5px 8px;
    font-size: 1.3rem;
    border: 1px solid #62687B;
  }
  .side_wrapper ul li a::before{
    display: none;
  }
  .side_wrapper ul li.current a,
  .side_wrapper ul li a:hover{
    color: #fff;
    background: var(--blue);
    border: 1px solid var(--blue);
  }
  .main_wrapper{
    padding-top: 0;
  }
  .works_list_wrap{
    grid-template-columns: 1fr 42%;
    gap: 12px 16px;
    align-items: start;
  }
  .works_list_wrap + .works_list_wrap{
    margin-top: 50px;
  }
  .works_list_wrap .img_wrap{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  .works_list_wrap .img_wrap a{
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .works_list_wrap .txt_wrap{
    display: contents;
  }
  .works_list_wrap h3{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0;
  }
  .works_list_wrap .cate_wrap{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin: 8px 0 0 0;
    gap: 4px;
  }
  .works_list_wrap .cate_wrap a,
  .works_list_wrap .cate_wrap span{
    padding: 4px 9px;
    font-size: 1.1rem;
  }
  .works_list_wrap .txt_wrap .txt{
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    margin: 10px 0 0 0;
    line-height: 1.8;
  }
  .works_list_wrap .txt_wrap .txt br{
    display: none;
  }
  .works_list_wrap .txt_wrap .btn_more{
    grid-column: 1 / -1;
    grid-row: 4 / 5;
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
  }
  .works_list_wrap .txt_wrap .btn_more a {
    width: auto;
    height: auto;
    padding: 0 10px;
    font-size: 1.3rem;
  }
}

.completion_date{
  font-size: 2rem;
  line-height: 1;
  text-align: right;
}

.works_img{
  margin: 25px 0 40px 0;
  width: 100%;
  height: 418px;
  overflow: hidden;
}

.works_img img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

@media (max-width: 767px){
  .completion_date{
    font-size: 1.6rem;
  }
  .works_img{
    margin: 10px 0 40px 0;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

.single_ttl_wrap{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.single_ttl_wrap h1{
  font-size: 4rem;
  line-height: 1.4;
}

.single_ttl_wrap .cate_wrap{
  max-width: 280px;
}

@media (max-width: 767px){
  .single_ttl_wrap{
    display: block;
    margin-bottom: 50px;
  }
  .single_ttl_wrap h1{
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .single_ttl_wrap .cate_wrap{
    max-width: none;
  }
}

.article_body p{
  margin-bottom: 20px;
}

.works_single_contents {
  margin: 0 0 64px;
}

.works_single_contents > section {
  margin: 0 0 56px;
}

.works_single_contents > section:last-child {
  margin: 0;
}

.works_single_contents .section_heading {
  margin: 0 0 16px;
  font-size: 2.6rem;
  line-height: 1.5;
}

.works_single_contents .section_text_body {

}

.works_single_contents .section_image_single .img_wrap {
  margin: 0;
}

.works_single_contents .section_image_single img {
  display: block;
  width: 100%;
  height: auto;
}

.works_single_contents .section_image_double .img_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.works_single_contents .section_image_double img {
  display: block;
  width: 100%;
  height: auto;
}

.works_single_contents .caption {
  margin: 10px 0 0;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

@media screen and (max-width: 1200px) {
  .single_ttl_wrap h1{
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {

  .works_single_contents {
    margin: 0 0 48px;
  }

  .works_single_contents > section {
    margin: 0 0 40px;
  }

  .works_single_contents .section_heading {
    margin: 0 0 12px;
    font-size: 20px;
  }

  .works_single_contents .section_text_body {
    font-size: 13px;
    line-height: 1.9;
  }

  .works_single_contents .section_image_double .img_flex {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .works_single_contents .caption {
    margin: 10px 0 0;
    font-size: 11px;
  }
}

/* recruit
-------------------------------------------------- */
.page-recruit main,
.page-honne main{
  color: #1E1500;
}

#rec_mv{
  position: relative;
  z-index: 1;
}

.page_fv {
  position: relative;
  overflow: hidden;
}

.rec_slider_wrap {
  position: relative;
  isolation: isolate;
  z-index: 3;
}

.rec_slider {
  position: relative;
  z-index: 1;
}

.rec_slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(58, 43, 11, 0.52);
  mix-blend-mode: multiply;
}

.rec_slider .swiper-slide {
  overflow: hidden;
}

.rec_slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px){
  .rec_slider .swiper-slide{
    aspect-ratio: 800 / 1400;
  }
}

.rec_mv_pagination {
  width: 100%;
  position: absolute;
  top: 0!important;
  bottom: auto!important;
  left: 0;
  transform: translateY(-2vw);
  z-index: 30;
  text-align: center;
}

.rec_mv_pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 7px !important;
  opacity: 1;
  background: #917D4F;
}

.rec_mv_pagination .swiper-pagination-bullet-active {
  background: #554B32;
}

#rec_mv .copy_txt{
  text-align: right;
  font-size: 4rem;
  color: #fff;
  position: absolute;
  right: 30px;
  bottom: 5.7vw;
  z-index: 4;
}

@media (max-width: 1200px) {
  #rec_mv .copy_txt{
    font-size: 2.7vw;
    bottom: 7vw;
  }
}
@media (max-width: 767px) {
  #rec_mv .copy_txt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    right: auto;
    left: 50%;
    top: 30vw;
    bottom: auto;
    transform: translateX(-50%);
  }
  #rec_mv .copy_txt p{
    text-align: left;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
  #rec_mv .copy_txt p:last-child{
    margin-top: 3em;
  }
  .rec_mv_pagination {
    bottom: 16px;
  }
  .rec_mv_pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px !important;
  }
}

.ttl_img{
  height: 420px;
  display: flex;
	align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.2rem;
  background: url(../img/recruit/about_ttl.webp) no-repeat center center / cover;
}

#rec_workstyle .ttl_img{ background-image: url(../img/recruit/workstyle_ttl.webp);}
#rec_num .ttl_img{ background-image: url(../img/recruit/honne_num_ttl.webp);}
#honne_faq .ttl_img{ background-image: url(../img/recruit/honne_faq_ttl.webp);}

@media (max-width: 1100px){
  .ttl_img{
    height: auto;
    padding: 100px 20px;
  }
}
@media (max-width: 767px){
  .ttl_img{
    font-size: 2.4rem;
    padding: 40px 20px;
  }
}

#rec_concept{
  position: relative;
  z-index: 2;
  color: #211700;
  padding: 140px 20px 200px 20px;
}

#rec_concept::before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 4.375vw);
  background: url(../img/recruit/bg_wall_round.webp) no-repeat center top / 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-4.375vw);
  z-index: 5;
}

#rec_concept .wrap{
  position: relative;
  z-index: 10;
}

#rec_concept h2{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  margin: 0 auto 80px auto;
}

#rec_concept h2 span{
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 3.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

#rec_concept p{
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.1;
  text-align: center;
}

@media (max-width: 1000px){
  #rec_concept p{
    font-size: 1.6rem;
  }
}
@media (max-width: 767px){
  #rec_concept{
    padding: 80px 20px;
  }
  #rec_concept h2{
    display: block;
    margin: 0 0 40px 0;
    text-align: center;
  }
  #rec_concept h2 span{
    display: block;
    margin: 5px 0;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
  #rec_concept p{
    font-size: 1.4rem;
    text-align: left;
  }
}

.ttl_line_r{
  width: min(100%, 350px);
  padding: 0 0 10px 0;
  margin: 70px 0 30px 0;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
  color: #1E1500;
  border-bottom: 2px solid var(--brown);
}

@media (max-width: 767px){
  .ttl_line_r{
    margin: 70px 0 30px 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 2.6rem;
  }
}

#rec_about{
  font-size: 2.4rem;
  padding-bottom: 150px;
}

#rec_about .txt{
  padding: 0 20px;
}

#rec_about .wrap .txt2{
  text-align: right;
}

#rec_about .wrap .txt2 p{
  display: inline-block;
  text-align: left;
  transform: translateX(-50%);
}

#rec_about .wrap .ttl_line_r{
  margin: 70px 0 30px auto;
  text-align: left;
}

@media (max-width: 767px){
  #rec_about .txt{
    padding: 0 20px;
    font-size: 1.5rem;
  }
  #rec_about .wrap .txt2 p{
    display: block;
    padding: 0 20px;
    font-size: 1.5rem;
    transform: translateX(0);
  }
}

#rec_people{
  padding-bottom: 190px;
  position: relative;
  color: #fff;
}

#rec_people::before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 222px);
  background-image: url(../img/recruit/bg_wall.webp);
  background-color: #917D4F;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
}

#rec_people .inner{
  width: min(100%, 1000px);
  position: relative;
  z-index: 2;
}

#rec_people .ttl_line_r{
  color: #fff;
  border-color: #fff;
}

#rec_people .txt{
  margin-left: 100px;
  font-size: 2.4rem;
}

#rec_people .btn_more a{
  margin: 20px 20px 0 auto;
}

@media (max-width: 1000px){
  #rec_people .txt{
    margin-left: 20px;
    font-size: 2.4rem;
  }
}
@media (max-width: 767px){
  #rec_people{
    padding-bottom: 80px;
  }
  #rec_people .txt{
    padding: 0 20px;
    margin-left: 0;
    font-size: 1.4rem;
  }
  #rec_people .btn_more a{
    margin: 30px auto 0 auto;
  }
}

#rec_workstyle{
  padding: 0 0 240px 0;
}

#rec_workstyle .inner{
  width: min(100%, 900px);
  padding: 0 20px;
}

#rec_workstyle .ttl_line_r{
  color: var(--brown);
}

#rec_workstyle .wrap{
  margin-bottom: 20px;
  padding: 35px 70px;
  background: rgba(255,255,255,0.5);
  box-shadow: 4px 4px 8px 0 rgba(0,0,0,.25);
  border-radius: 8px;
  color: #000;
}

#rec_workstyle .wrap1{
  width: min(100%, 800px);
  margin-left: auto;
  margin-right: auto;
  padding: 35px 50px;
  color: #1B0000;
}

@media (max-width: 767px){
  #rec_workstyle .wrap{
    margin-bottom: 20px;
    padding: 20px;
  }
}

#rec_workstyle .wrap1 h4{
  font-size: 1.9rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #1F2937;
}

#rec_workstyle .wrap1 h4 + p{
  margin: 5px 0 20px 0;
  color: #6B7280;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

#rec_workstyle .wrap2 ul.skill{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  font-size: 2.4rem;
  margin: 0;
  padding: 0;
}

#rec_workstyle .wrap2 ul.skill li{
  margin: 0 0 0 20px;
  list-style: disc;
  font-weight: 600;
}

#rec_workstyle .wrap2 p.note{
  margin-top: 15px;
  text-align: right;
}

@media (max-width: 767px){
  #rec_workstyle .wrap2 ul.skill{
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 1.8rem;
  }
  #rec_workstyle .wrap2 p.note{
    margin-top: 15px;
    text-align: left;
    font-size: 1.3rem;
  }
}

#rec_workstyle .wrap3 h3{
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 767px){
  #rec_workstyle{
    padding: 0 0 80px 0;
  }
  #rec_workstyle .wrap3 h3{
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

#rec_flow{
  padding-bottom: 190px;
  position: relative;
  color: #fff;
}

#rec_flow::before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 222px);
  background-image: url(../img/recruit/bg_wall.webp);
  background-color: #917D4F;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
}

#rec_flow .inner{
  width: min(100%, 940px);
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.rec_ttl_box{
  position: relative;
}

.rec_ttl_box h2{
  width: 450px;
  height: 317px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4B3A12;
  position: absolute;
  top: 50%;
  left: 4.4vw;
  transform: translateY(-50%);
  z-index: 2;
}

.rec_ttl_box h2 span{
  display: block;
  position: relative;
  font-size: 3.2rem;
  color: #fff;
  line-height: 100px;
}

.rec_ttl_box h2 span::before,
.rec_ttl_box h2 span::after{
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.rec_ttl_box h2 span::after{
  top: auto;
  bottom: 0;
}

.rec_ttl_box .img{
  width: calc(100vw - 410px);
  height: 444px;
  overflow: hidden;
  position: relative;
  margin: 0 0 0 auto;
  z-index: 0;
}

.rec_ttl_box .img img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

@media (max-width: 767px){
  .rec_ttl_box h2 span::before,
  .rec_ttl_box h2 span::after{
    width: 60px;
  }
  .rec_ttl_box h2{
    width: 40%;
    height: auto;
    padding: 20px;
  }
  #rec_flow .rec_ttl_box h2{
    width: 60%;
  }
  .rec_ttl_box h2 span{
    font-size: 1.8rem;
    line-height: 60px;
  }
  .rec_ttl_box h2 span::after{
    top: auto;
    bottom: 0;
  }
  .rec_ttl_box .img{
    width: 80vw;
    height: 200px;
  }
}

#rec_flow .ttl_line_r{
  color: #fff;
  border-color: #fff;
}

#rec_flow .ttl_line_r.long{
  width: auto;
  display: inline-block;
}

#rec_flow .wrap1{
  padding-left: 100px;
  font-size: 2rem;
}

#rec_flow .wrap1 h3 span{
  display: inline-block;
  height: 80px;
  line-height: 80px;
  font-size: 3.2rem;
  background: url(../img/recruit/flow_parts.webp) no-repeat 80% center / auto 100%;
}

#rec_flow .wrap1 + .ttl_line_r{
  margin: 110px 0 60px 0;
}


@media (max-width: 1000px){
  #rec_flow .wrap1{
    padding-left: 50px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px){
  #rec_flow .wrap1{
    padding-left: 0;
    font-size: 1.4rem;
  }
  #rec_flow .wrap1 h3 span{
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
  }
}

#rec_flow .wrap2{
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.flow_term{
  width: 72px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.flow_term_line{
  display: block;
  width: 1px;
  height: 90px;
  border-left: 1px dashed rgba(255,255,255,0.8);
}

.flow_term_text{
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.4em;
  margin: 12px 0;
}

#rec_flow .wrap2 ul li{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: center;
}

#rec_flow .wrap2 ul li + li{
  margin-top: 65px;
}

#rec_flow .wrap2 ul li h4{
  display: flex;
	align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  color: #60480F;
  font-size: 3.2rem;
  border-radius: 50%;
}

#rec_flow .wrap2 ul li .txt{
  line-height: 1.4;
}

#rec_flow .wrap2 ul li .txt .tt{
  font-size: 2rem;
  margin-bottom: 20px;
}

@media (max-width: 767px){
  #rec_flow{
    padding-bottom: 80px;
  }
  #rec_flow .wrap2{
    display: block;
  }
  .flow_term{
    width: auto;
    min-width: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }
  .flow_term_line{
    display: block;
    width: 100%;
    height: 1px;
    border-left: none;
    border-bottom: 1px dashed rgba(255,255,255,0.8);
  }
  .flow_term_text{
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 2rem;
  }
  #rec_flow .wrap2 ul{
    margin-top: 20px;
  }
  #rec_flow .wrap2 ul li{
    grid-template-columns: 65px 1fr;
    gap: 10px;
  }
  #rec_flow .wrap2 ul li + li{
    margin-top: 30px;
  }
  #rec_flow .wrap2 ul li h4{
    font-size: 1.6rem;
  }
  #rec_flow .wrap2 ul li .txt .tt{
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

#rec_faq{
  padding: 100px 20px 200px 20px;
}

#rec_faq .inner{
  width: min(100%, 800px);
}

#rec_faq h2{
  display: flex;
	align-items: center;
  justify-content: center;
	flex-direction: column;
  gap: 30px;
  line-height: 1;
  text-align: center;
  font-size: 3.2rem;
}

#rec_faq h2::before, #rec_faq h2::after{
  content: "";
  width: 110px;
  height: 1px;
  background: #171000;
}

#rec_faq h3{
  margin-top: 60px;
  font-size: 2.4rem;
}

#rec_faq dl{
  position: relative;
}

#rec_faq dl::before{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--brown);
  position: absolute;
  top: 0;
  left: -30px;
}

#rec_faq dt{
  margin: 20px 0 10px 0;
  display: flex;
  gap: 1em;
  font-size: 2rem;
}

#rec_faq dt::before{
  content: "Q";
}

#rec_faq dd{
  padding-left: 40px;
  font-size: 1.6rem;
}

@media (max-width: 900px){
  #rec_faq{
    padding: 100px 20px 200px 20px;
  }
  #rec_faq dl{
    padding-left: 20px;
  }
  #rec_faq dl::before{
    left: 0;
  }
}
@media (max-width: 767px){
  #rec_faq{
    padding: 80px 20px;
  }
  #rec_faq dt{
    gap: 0.5em;
    font-size: 1.6rem;
  }
  #rec_faq dd{
    padding-left: 20px;
    font-size: 1.4rem;
  }
}

#honne_mv{
  display: flex;
	align-items: center;
  justify-content: center;
	flex-direction: column;
  color: #fff;
  font-weight: bold;
  text-align: center;
  aspect-ratio: 1920 / 792;
  background: url(../img/recruit/honne_mv.webp) no-repeat center center / cover;
}

#honne_mv h1{
  font-size: 2.4rem;
  margin-bottom: 30px;
}

#honne_mv h1::after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #fff;
  margin: 20px auto 0 auto;
}

#honne_mv .txt p{
  font-size: 4rem;  
}

@media (max-width: 1300px){
  #honne_mv .txt p{
    font-size: 3.4rem;  
  }
}
@media (max-width: 950px){
  #honne_mv .txt p{
    font-size: 3rem;  
  }
}
@media (max-width: 767px){
  #honne_mv{
    height: 100vh;
    height: 100svh;
    aspect-ratio: auto;
  }
  #honne_mv h1{
    font-size: 2rem;
    margin-bottom: 40px;
  }

  #honne_mv h1::after{
    width: 60px;
    margin: 10px auto 0 auto;
  }

 #honne_mv .txt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  #honne_mv .txt p{
    text-align: left;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    white-space: nowrap;
  }
}

#rec_culture{
  padding: 140px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

#rec_culture::before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 4.375vw);
  background: url(../img/recruit/bg_wall_round.webp) no-repeat center top / 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-4.375vw);
  z-index: 5;
}

#rec_culture .inner{
  position: relative;
  z-index: 10;
  font-size: 2.4rem;
  text-align: center;
}

#rec_culture h2{
  width: min(100%, 345px);
  margin: 0 auto 80px auto;
  line-height: 1;
  font-size: 3.2rem;
  text-align: center;
}

#rec_culture h2 span{
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 2rem;
  border-bottom: 2px solid #251A00;
}

#rec_culture ul{
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 50px;
  position: relative;
  isolation: isolate;
}

#rec_culture ul li{
  flex: 0 1 460px;
  padding: 22px;
  line-height: 1.5;
  font-size: 2.4rem;
  color: #fff;
  background: rgba(102, 76, 16, 0.7);
  mix-blend-mode: soft-light;
}

#rec_culture ul li:last-child{
  flex: 0 1 565px;
}

@media (max-width: 767px){
  #rec_culture{
    padding: 80px 20px;
  }
  #rec_culture .inner{
    font-size: 1.5rem;
    text-align: left;
  }
  #rec_culture h2{
    width: 80%;
    margin: 0 auto 60px auto;
    font-size: 2.8rem;
  }
  #rec_culture h2 span{
    font-size: 1.6rem;
  }
  #rec_culture ul{
    margin-top: 30px;
    gap: 20px;
  }
  #rec_culture ul li{
    flex: 0 1 100%!important;
    padding: 15px 10px;
    text-align: center;
    font-size: 1.6rem;
  }
}

.rec_num_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  padding: 130px 20px;
}

.rec_num_list li{
  padding: 30px 6%;
  background: rgba(255, 255, 255, 0.22);
  mix-blend-mode: soft-light;
  border-radius: 24px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.rec_num_list > li:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.rec_num_list li h3{
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.rec_num_list li .item{
  font-size: 2rem;
  font-weight: 900;
  position: relative;
}

.rec_num_list li .item.num1 span{
  display: inline-block;
  padding: 0 4px;
  font-size: 6.4rem;
}

.rec_num_list li .item.num2 p + p{
  margin-top: 20px;
}

@media (max-width: 1100px){
  .rec_num_list{
    gap: 40px;
  }
  .rec_num_list li{
    padding: 30px 20px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px){
  .rec_num_list{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 80px 20px;
  }
}

.rec_num_list li .num3{
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
  padding: 0 4% 30px 4%;
}

.rec_num_list li .num3 .in{
  text-align: left;
}

.rec_num_list li .num3 .in h4{
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.rec_num_list li .num3 .in h4 span{
  font-size: 2rem;
  font-weight: bold;
}

.rec_num_list li .num3 .in p.yen{
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: relative;
}

.rec_num_list li .num3 .in p.yen span{
  font-size: 3.2rem;
  padding: 0 6px;
}

.rec_num_list li .num3 .in p.yen::before,
.rec_num_list li .item::before{
  content: "";
  display: block;
  width: 100%;
  height: 86px;
  background: url(../img/recruit/num_parts.webp) no-repeat center center / contain;
  mix-blend-mode: multiply;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.3;
}

.rec_num_list li .num3 .in p.yen::before{
  height: 80px;
  line-height: 1;
}

@media (max-width: 1100px){
  .rec_num_list li .num3{
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 0 30px 0;
  }
}
@media (max-width: 767px){
  .rec_num_list li .num3 .in{
    text-align: center;
  }
}

.honne_project{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 3em;
}






.honne_faq_wrap{
  padding: 100px 20px;
  color: #000;
}

.honne_faq_wrap:nth-child(odd){
  background: rgba(255, 255, 255, 0.32);
  mix-blend-mode: soft-light;
}

.honne_faq_wrap h3{
  margin-bottom: 45px;
  padding: 10px 30px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  background: #AC955D;
  border-radius: 0 24px 0 0;
}

.faq_copy{
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.faq_copy.no_img{
  padding: 0 8%;
}

.faq_copy .txt{
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 2.4rem;
  font-weight: 500;
}

.faq_copy .txt p{
  margin: 0;
}

.faq_copy .txt p.name{
  text-align: right;
  font-size: 1.5rem;
  padding-top: 30px;
  margin-top: auto;
  margin-left: auto;
}

.faq_copy img{
  width: 256px;
  display: block;
  flex: 0 0 256px;
}

.faq_copy.re img{
  order: -2;
}

.voice_list{
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.voice_list li{
  position: relative;
  padding: 15px;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.voice_list li::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.37);
  mix-blend-mode: soft-light;
}

.voice_list li p{
  margin: 0;
  font-weight: 600;
}

.voice_list li p.name{
  text-align: right;
  font-size: 1.5rem;
  padding-top: 16px;
  margin-top: auto;
  margin-left: auto;
}

@media (max-width: 1000px){
  .faq_copy{
    padding: 0;
    gap: 5%;
  }
  .faq_copy.no_img{
    padding: 0;
  }
  .faq_copy .txt{
    font-size: 2rem;
  }
}
@media (max-width: 767px){
  .honne_faq_wrap{
    padding: 60px 20px;
  }
  .faq_copy{
     gap: 20px;
     align-items: flex-start;
  }
  .faq_copy .txt{
    font-size: 1.4rem;
  }
  .faq_copy .txt p.name{
    font-size: 1.3rem;
    padding-top: 20px;
  }
  .faq_copy img{
    width: 110px;
    flex: 0 0 110px;
  }
  .honne_faq_wrap h3{
    margin-bottom: 30px;
    padding: 10px;
    font-size: 1.6rem;
    border-radius: 0 12px 0 0;
  }
  .voice_list{
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .voice_list li{
    padding: 10px;
    font-size: 1.4rem;
  }
  .faq_copy .txt p.name{
    padding-top: 10px;
  }
}