@charset "UTF-8";

/* *{border:1px pink solid} */

:root {
  /* 色管理用の変数 */
  --black-color: #001C2B;
  --white-color: #FFFFFF;
  --gray-color: #606970;
  --blue-color: #1066A6;
  --navy-color: #023962;
  --skyblue: #DBF0FF;
  --skyblue-light:#E9F6FF;
  --grayblue: #F0F5F9;
  --gray-line: #CBCBCB;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 600px;
  --content-width: 900px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}


/* ---------- base ---------- */
html {
  scroll-behavior: smooth;
}
body {
  color: var(--black-color);
  font-size: 16px;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media (width >= 1080px) {
  body{
    font-size: 16px;
  }
}

/* ---------- layout  ---------- */
.l_contents{
  padding: clamp(5rem, 4.167rem + 4.17vw, 7.5rem) 0;/*80-120*/
}

.l_contents-top_about{
  padding:  clamp(5rem, -0.263rem + 26.32vw, 17.5rem) 0;/*80-280*/
}

.l_contents_top-none{
  padding: 0 0 clamp(5rem, 4.167rem + 4.17vw, 7.5rem) 0;/*bottomのみ80-120*/
}

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .l_container-lg{
    display: flex;
    flex-direction: column;
  }
}


@media (width >= 1080px) {
  .l_container-about{
  width: 100%;
  padding: 0 0 0 80px;
  margin: 0 auto;
}
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

/* ---------- layout (header)  ---------- */

.sns_icon{
  width: 24px;
  height: auto;
}
.happy_icon{
  width: 30px;
  height: auto;
}

.l_header-logo_img{
  width: 135px;
  height: auto;
  margin-top: 10px;
}

.l_header-logo_txt{
  color: var(--blue-color);
  font-size: 8px;
  font-weight: 500;
  margin-top: 2px;
}

.l_header-nav_logo{
  height: 72px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding-left: 16px;
}
@media (width >= 1280px) {
  .l_header-nav_logo{
    display: none;
  }
}

.l_header-nav_list{
  padding: 24px;
  padding-bottom: 200px;
}
@media (width >= 1280px) {
  .l_header-nav_list{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

.l_header-nav_link{
  max-width: 300px;
  color: var(--navy-color);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid var(--grayblue);
  margin: 0 auto;
  text-decoration: none;
}
@media (width >= 1280px) {
  .l_header-nav_link{
    font-size: clamp(0.875rem, 0.2rem + 1vw, 1rem);/*13-16(1080-1280)*/
    display: flex;
    justify-content: center;
    border-bottom: none;
    padding: clamp(0.5rem, -2.2rem + 4vw, 1rem);/*8-16(1080-1280)*/
  }
}

.l_header-nav_contact{
  width: 287px;
  color: var(--white-color);
  background: var(--blue-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 16px;
  gap: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (width >= 1280px) {
  .l_header-nav_contact{
    font-size: clamp(0.75rem, 0.075rem + 1vw, 0.875rem);/*12-14(1080-1280)*/
    width: 100%;
    height: 60px;
    padding: 8px 16px;
  }
}
@media (width >= 1280px) {
  .l_header-nav_contact:hover{
    background: var(--skyblue);
    color: var(--blue-color);
  }
}

@media (width >= 1280px) {
  .l_header-nav_contact.contact{
    margin-left: clamp(0rem, -8rem + 10vw, 1rem);/*0-16*/
  }
}

.l_header-nav_contact.tel{
  background: var(--navy-color);
}

.l_header-nav_outlink{
  color: var(--blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.l_header-nav_jp {
  padding-bottom: 4px; 
  background-image: linear-gradient(var(--navy-color), var(--navy-color));
  background-repeat: no-repeat;
  background-position: bottom right; 
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media (width < 1280px) {
  .l_header-nav_jp{
    padding-bottom: 0;
  }
}

@media (width >= 1280px) {
  .l_header-nav_jp:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}
}

.l_header-nav_en{
  font-size: 10px;
}
@media (width >= 1280px) {
  .l_header-nav_en {
    display: none;
  }
}

.l_header {
  background: var(--white-color);
  height: 72px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}
@media (width >= 1280px) {
  .l_header{
    height: 92px;
  }
}

.l_header.scrolled{
  box-shadow: 2px 2px 4px rgba(143, 156, 188, 0.16);
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
  height: 100vh;
  overflow-y: scroll;
}
@media (width >= 1280px) {
  .l_header-nav{
    overflow: hidden;
  }
}

@media (width >= 1280px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.l_header-nav_item:nth-last-child(-n + 4){
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >= 1280px) {
  .l_header-nav_item:nth-last-child(-n + 4){
    margin-top: 0;
    margin-left: 8px;
  }
}

.l_header-nav_item:nth-child(7){
  margin-top: 32px;
}
@media (width >= 1280px) {
  .l_header-nav_item:nth-child(7){
  margin-top: 0;
}
}
.l_header-nav_item:nth-child(9){
  margin-top: 32px;
}
@media (width >= 1280px) {
  .l_header-nav_item:nth-child(9){
  margin-top: 0;
}
}

@media (width >= 1280px) {
  .l_header-nav_item:nth-last-child(-n + 2){
    display: none;
  }
}

.l_header-nav_cutlogo{
  width: 100%;
  margin-top: 24px;
  vertical-align: bottom;
}

@media (width >= 1280px) {
  .l_header-nav_cutlogo{
    display: none;
  }
}

/* ---------- layout (footer) ---------- */

.l_footer {
  padding: 80px 16px 84px 16px;
  margin: 0 auto;

}
@media (width >= 800px) {
  .l_footer{
    padding: 100px 64px 24px 64px;
  }
}

.l_footer-wrapper{
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (width >= 1180px) {
  .l_footer-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
  }
}

@media (width >= 800px) {
  .l_footer_lists{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 64px;
  }
}

.l_footer_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 768px) {
  .l_footer_list{
    gap: 32px;
  }
}

.l_footer_list.middle{
  border-bottom: 0.5px solid var(--white-color);
  margin-top: 24px;
}
@media (width >= 800px) {
  .l_footer_list.middle{
    border-bottom: none;
    border-right: 0.5px solid var(--white-color);
    padding-right: 80px;
    margin-top: 0;
  }
}

.l_footer_list.bottom{
  margin-top: 24px;
}
@media (width >= 800px) {
  .l_footer_list.bottom{
    margin-top: 0;
  }
}
@media (width >= 1080px) {
  .l_footer_list.bottom{
    margin-right: 40px;
  }
}

.l_footer_item_sub.bottom{
  display: inline-block;
}

.l_footer_item.contact{
  margin-top: -16px;
  margin-bottom: 24px;
}


.l_footer_link {
  font-weight: bold;
  height: 100%;
  display: flex;
  padding: 8px 0;
}
@media (width >= 768px) {
  .l_footer_link{
    padding-top: 0;
  }
}

.l_footer_link {
  display: inline-block;
  padding-bottom: 4px; 
  background-image: linear-gradient(var(--white-color), var(--white-color));
  background-repeat: no-repeat;
  background-position: bottom right; 
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media (hover: hover) {
  .l_footer_link:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}

.l_footer_list_sub{
  display: flex;
  flex-direction: column;
}

.l_footer_list_sub.bottom{
  display: inline-block;
}

.l_footer_link_sub{
  display: block;
  padding: 4px 0;
}

.l_footer_link_sub {
  display: inline-block;
  padding-bottom: 4px; 
  background-image: linear-gradient(var(--white-color), var(--white-color));
  background-repeat: no-repeat;
  background-position: bottom right; 
  background-size: 0 1px;
  transition: background-size 0.3s;
}

@media (hover: hover) {
  .l_footer_link_sub:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  } 
}

.l_footer_link_bottom {
  font-weight: bold;
  height: 100%;
  display: flex;
  padding: 8px 0;
}
@media (width >= 768px) {
  .l_footer_link_bottom{
    padding-top: 0;
  }
}

.l_footer_link_sub.bottom{
  display: inline-block;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.l_footer-link_sns_img{
  width: 16px;
}

.l_footer-link_img{
  width: 24px;
}

.l_footer_logo-box{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l_footer-logo_link {
  height: 100%;
  display: inline-block;
}

.l_footer-logo_img{
  width: 200px;
  height: auto;
}

.l_footer_adress{
  font-size: 14px;
  margin-top: 32px;
}

.l_footer-copy-wrapper{
  margin-top: 24px;
}
@media (width >= 768px) {
  .l_footer-copy-wrapper{
    margin-top: clamp(4rem, -3.125rem + 14.84vw, 8.75rem);/*64-140(768-1280)*/
  }
}               

.l_footer-copyright_txt {
  font-size: 10px;
}

/* ---------- module ---------- */

.m_background_blue{
  color: var(--white-color);
  background: var(--blue-color);
}

.m_background_navy{
  color: var(--white-color);
  background: var(--navy-color);
}

.m_background_grayblue{
  background: var(--grayblue);
}

.m_background_skyblue{
  background: var(--skyblue);
}

.m_btn-wrapper{
  margin-top: 64px;
}

.m_btn{
  cursor: pointer;
  display: inline-block;
  width: 287px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  padding: 0 56px;
  margin: 0 auto;
}
@media (width >= 1080px) {
  .m_btn{
    margin: 0;
    margin-left: auto;
  }
}

.m_btn_recruit{
  color: var(--white-color);
  display: inline-block;
  width: 287px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}

.m_btn_cta{
  background: var(--navy-color);
  color: var(--white-color);
  height: 72px;
}

.m_btn_cta.tel {
  background: var(--navy-color);
  color: var(--white-color);
  font-weight: bold;
  width: 287px;
  height: 72px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 54px;
  justify-content: space-between;
  font-weight: bold;
  margin: 0 auto;
}

.m_btn_trans{
  color: var(--blue-color);
}

.m_btn_trans-white{
  color: var(--white-color);
}

.m_btn_blue{
  color: var(--white-color);
  background: var(--blue-color);
}

.m_btn_white{
  color: var(--blue-color);
  background: var(--white-color);
}

.m_btn_navy{
  color: var(--white-color);
  background: var(--navy-color);
}

.m_btn_navy-white{
  color: var(--navy-color);
  background: var(--white-color);
}

.m_tel_icon{
  width: 28px;
  height: auto;
}

.m_tel_btn{
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.m_tel_number{
  font-size: 16px;
}

.m_tel_time{
  font-size: 13px;
}

.m_arrow_simple-white{
  position: relative;
}

.m_arrow_simple-white::after{
  content: '';
  position: absolute;
  transform: translateY(-75%);
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--white-color);
  border-bottom: 1px solid var(--white-color);
  rotate: -45deg;
  transition: transform 0.3s ease;
}

/* PC（マウス操作）時のみ矢印のアニメーションを適用 */
@media (hover: hover) and (pointer: fine) {
  .m_btn:hover .m_arrow_simple-white::after,
  .m_btn_recruit:hover .m_arrow_simple-white::after {
    transform: translateX(5px);
  }
}

.m_arrow_simple-blue{
  position: relative;
}

.m_arrow_simple-blue::after{
  content: '';
  position: absolute;
  transform: translateY(-75%);
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--blue-color);
  border-bottom: 1px solid var(--blue-color);
  rotate: -45deg;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .m_btn:hover .m_arrow_simple-blue::after {
  transform: translateX(5px);
}
}

.m_arrow_simple-navy{
  position: relative;
}

.m_arrow_simple-navy::after{
  content: '';
  position: absolute;
  transform: translateY(-75%);
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--navy-color);
  border-bottom: 1px solid var(--navy-color);
  rotate: -45deg;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .m_btn:hover .m_arrow_simple-navy::after {
  transform: translateX(5px);
}
}


.m_arrow_blue{
  width: 24px;
  height: 24px;
  background: var(--blue-color);
  border-radius: 4px;
  position: relative;
}

.m_arrow_blue::after{
  content: '';
  position: absolute;
  right: 8px;
  top: 47%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  rotate: -45deg;
}

.m_arrow_white{
  width: 24px;
  height: 24px;
  background: var(--white-color);
  border-radius: 4px;
  position: relative;
}

.m_arrow_white::after{
  content: '';
  position: absolute;
  right: 8px;
  top: 47%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--blue-color);
  border-bottom: 2px solid var(--blue-color);
  rotate: -45deg;
}

.m_kv{
  padding: 40px 0;
}
@media (width >= 768px) {
  .m_kv{
    padding: 64px 0;
  }
}

.m_breadcrum_list{
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.m_kv_title{
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 8px;
}
@media (width >= 768px) {
  .m_kv_title{
    margin-top: 100px;
  }
}

.m_kv_title_main {
  color: var(--white-color);
  font-size: clamp(1.5rem, 1.167rem + 1.67vw, 2.5rem);/*24-40*/
  font-weight: bold;
}

.m_kv_title_main.gray{
  color: var(--blue-color);
}

.m_kv_title_sub {
  color: var(--white-color);
  font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);/*12-16*/
  padding-left: clamp(0.125rem, 0.083rem + 0.21vw, 0.25rem);/*2-4*/
}
.m_kv_title_sub.gray{
  color: var(--blue-color);
}

.m_kv_desc{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.m_kv_desc_txt.blue{
  color: var(--blue-color);
  font-weight: bold;
}


.m_section_title{
  display: flex;
  flex-direction: column;
}
.m_section_title.gray{
  margin-top: 80px;
}

.m_section_title_main {
  color: var(--blue-color);
  font-size: clamp(1.5rem, 1.167rem + 1.67vw, 2.5rem);/*24-40*/
  font-weight: bold;
}

.m_section_title_sub {
  color: var(--blue-color);
  font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);/*12-16*/
  padding-left: clamp(0.125rem, 0.083rem + 0.21vw, 0.25rem);/*2-4*/
}

.m_section_desc{
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.m_section_area{
  display: flex;
  gap: 4px;
}

.m_section_area_txt{
  color: var(--blue-color);
  font-size: 14px;
}

.m_section_area_icon{
  color: var(--blue-color);
  width: 24px;
  height: 24px;
}


.m_hamburger {
  background: transparent;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
  margin-bottom: 8px;
}

.m_hamburger::after{
  display: block;
  content: "menu";
  font-size: 10px;
  font-weight: bold;
  transform: translateY(120%);
  color: var(--blue-color);
}


@media (width >= 1280px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4px;
  border-radius: 1px;
  position: absolute;
  background: var(--blue-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}
.m_hamburger-bar:last-child {
  display: block;
  content: "menu";
  font-size: 8px;
  color: var(--blue-color);
}


.m_float{
  padding: 0 8px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  gap: 4px;
  z-index: var(--z-index-menu);
  width: 100%;
}
@media (width >= 768px) {
  .m_float{
    display: none;
  }
}

.m_float_item{
  flex: 1;
}

.m_float_contact_link{
  color: var(--navy-color);
  background: var(--skyblue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  align-items: center;
  border-radius: 8px 8px 0px 0px;
}

.m_float_tel_link{
  color: var(--white-color);
  background: var(--navy-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px; 
  height: 60px;
  border-radius: 8px 8px 0px 0px;
}

.m_float_txt{
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}


.m_service_list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-top: 40px;
}

@media (width >= 768px) {
  .m_service_list{
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.m_service_item{
  font-weight: bold;
  color: var(--blue-color);
  background: var(--white-color);
  padding: 24px 0;
  border-radius: 8px;
}
@media (width >= 768px) {
  .m_service_item{
    width: calc(50% - 8px);
  }
}

.m_service_area{
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  border-radius: 8px;
  margin-top: 24px;
}
@media (width >= 768px) {
  .m_service_area{
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    padding: 40px 40px;
  }
}
@media (width >= 1080px) {
  .m_service_area{
    padding: 64px 80px;
  }
}

.m_service_hp{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m_service_hp_link{
  color: var(--blue-color);
  display: inline-block;
  border-bottom: 1px solid var(--blue-color);
}

.m_service_link_icon{
  width: 24px;
}


/* ---------- m_table ---------- */

.service_table-wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (width >= 768px) {
  .service_table-wrapper{
    gap: 64px;
    margin-top: 64px;
  }
}

@media (width < 768px) {
  .service_table_pc{
    display: none;
  }
}
@media (width >= 768px) {
  .service_table_sp{
    display: none;
  }
}

.m_table_title{
  color: var(--blue-color);
  font-size: 18px;
  font-weight: bold;
}
@media (width >= 768px) {
  .m_table_title{
    font-size: 24px;
  }
}

.m_table-wrapper{
  margin-top: 16px;
}

.m_table-wrapper{
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* スマホで慣性スクロール */
}

::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: var(--gray-line);
box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.m_table {
  min-width: 900px; /* ← この指定で縮小せずスクロールになる */
  border-collapse: collapse; /* 既存の指定を維持するならここは調整 */
  border-spacing: 0;
}


.m_table_th{
  background: var(--grayblue);
  border-color:var(--gray-line);
  border-style:solid;
  border-width:1px;
  font-size:14px;
  overflow:hidden;
  padding:10px 5px;
  word-break:normal;
  text-align: center;
  vertical-align: center;
}

.m_table_td{
  font-size: 14px;
  border-color:var(--gray-line);
  border-style:solid;
  border-width:1px;
  overflow:hidden;
  padding:10px 5px;
  word-break:normal;
  text-align: center;
  vertical-align: center;
}

.m_cursor{
  cursor: pointer;
}

.m_table_img_txt{
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: -4px;
}

.m_boom {
  border-bottom: 1px dashed var(--gray-line);
  border-right: 1px dashed var(--gray-line);

}
.m_boom_num {
  border-left: none;
  border-bottom: 1px dashed var(--gray-line);
}
.m_gingle {
  border-top: none;
  border-right: 1px dashed var(--gray-line);
}
.m_gingle_num {
  border-top: none;
  border-left: none;
}

.m_radius_top {
  border-bottom: 1px dashed var(--gray-line) !important;
}

.m_radius_bottom {
  border-top: none !important; 
}

.m_pdf_link{
  color: var(--blue-color);
  display: inline-block;
}

.m_pdf_link-inner{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-bottom: 0.5px solid var(--blue-color);
}

.m_pdf_img{
  width: 16px;
}

.m_table_img{
  width: 100px;
  height: auto;
}

/* ---------- m_service ---------- */

.m_service_area_box{
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.m_service_area_sample{
  color: var(--gray-color);
  margin-top: 8px;
}

.m_service_area_title-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.m_service_area_txt_box{
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--gray-line);
}
@media (width >= 768px) {
  .m_service_area_txt_box{
    border: none;
  }
}

.m_service_area_title{
  color: var(--blue-color);
  font-weight: bold;
  font-size: 18px;
}

.m_service_areamap_img{
  width: 24px;
}

.m_service_area_comment{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.m_service_area_comment_txt{
  color: var(--blue-color);
  font-weight: bold;
}
.m_service_people_img{
  width: 50px;
}


/* ---------- m_cta ---------- */

.m_cta-wrapper{
  padding: 0 16px;
}

@media (width >= 768px) {
  .m_cta-wrapper{
    padding: 32px clamp(1rem, -2.692rem + 7.69vw, 2.5rem);
  }
}

.m_cta_background{
  background: var(--white-color);
}
@media (width >= 768px) {
  .m_cta_background{
    background: var(--grayblue);
  }
}

.m_cta_background-gray{
  background: var(--grayblue);
}
@media (width >= 768px) {
  .m_cta_background-gray{
    background: var(--white-color);
  }
}

.m_cta{
  display: flex;
  flex-direction: column;
}
@media (width >= 768px) {
  .m_cta{
    flex-direction: row;
    gap: clamp(1rem, -1.462rem + 5.13vw, 2rem);/*16-32*/
  }
}

.m_cta-inner{
  display: flex;              
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.m_cta_link{
  width: 100%;
  padding: 80px 16px;
  transition: background 0.6s ease;
}

@media (width >= 768px) {
  .m_cta_link:hover{
    background: var(--skyblue);
  }
}


.m_cta_link:first-child{
  border-bottom: 0.5px solid var(--navy-color);
}
@media (width >= 768px) {
  .m_cta_link:first-child{
    border-bottom: none;
  }
}

@media (width >= 768px) {
  .m_cta_link {
    background: var(--grayblue);
    border-radius: 16px;
  }
  .m_cta_link.white{
    background: var(--white-color);
    box-shadow: 2px 2px 4px rgba(211, 220, 245, 0.1);
  }
  .m_cta_link.white:hover{
  }
}


.m_cta_txt-box{
  color: var(--navy-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.m_cta_txt-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.m_cta_txt{
  font-size: 24px;
  font-weight: bold;
}

.m_cta_txt_sub{
  font-size: 12px;
}

.m_cta_detail{
  text-align: center;
}

.m_cta_btn-wrapper{
  margin-top: 24px;
}




@media (width >= 1080px) {
  .m_pagetop.scrolled {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 64px;
    bottom: 40px;
    border: solid 1px var(--white-color);
    border-radius: 8px;
    z-index: 2;
    mix-blend-mode: exclusion;
  }
  
  .m_pagetop__arrow.scrolled {
    height: 10px;
    width: 10px;
    border-top: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
    transform: translateX(180%) translateY(200%) rotate(-45deg);
  }
  
}


/* ---------- m_modal ---------- */


.m_table_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 200px;
}

.m_modal-content {
  max-width: 80%;    /* 横幅の最大値 */
  max-height: 80%;   /* 縦幅の最大値 */
  width: auto;       /* 自動調整 */
  height: auto;      /* 自動調整 */
  object-fit: contain; /* 画像の比率を維持 */
  display: block;
  margin: 0 auto; /* 横中央 */
}


.m_modal_close,
.m_modal_prev,
.m_modal_next {
  color: white;
  position: absolute;
  top: 50%;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.m_modal_close {
  top: 20px;
  right: 35px;
  font-size: 50px;
  transform: none;
}

.m_modal_prev { left: 20px; }
.m_modal_next { right: 20px; }


/* ---------- m_sidebar ---------- */

@media (width >= 768px) {
  .m_sidebar-wrapper{
    width: 30%;
  }
}

.m_sidebar{
  background: var(--white-color);
  padding: 24px 16px;
  border-radius: 8px;
  margin-top: 40px;
}
@media (width >= 768px) {
  .m_sidebar{
    margin-top: 0;
    position: sticky;
    top: 80px;
  }
}
@media (width >= 1080px) {
  .m_sidebar{
    top: 100px;
  }
}

.m_sidebar_head-txt{
  color: var(--blue-color);
  font-weight: bold;
}

.m_sidebar_contents{
  margin-top: 24px;
}

.m_sidebar-cat{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.m_sidebar-cat_link{
  display: inline-block;
  background: var(--blue-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0px 2px 4px rgb(191, 206, 218, 0.8);
}
.m_sidebar-cat_link.is-current{
  background: var(--skyblue);
  color: var(--blue-color);
}

@media (width >= 768px) {
  .m_br_sp{
  display: none;
  }
}
@media (width < 354px) {
  .m_br_tb{
  display: none;
  }
}
@media (width < 768px) {
  .m_br_pc{
  display: none;
  }
}
/* ---------- .top_kv ---------- */

.top_kv{
  position: relative;
}

.top_kv_copy{
  padding: 40px 16px 16px 16px;
}
@media (width >= 768px) {
  .top_kv_copy{
    padding: 56px 24px 24px 24px;
  }
}
@media (width >= 1080px) {
  .top_kv_copy{
    padding: 80px 40px 32px 40px;
  }
}

.top_kv_copy_txt{
  font-size: clamp(1.125rem, 0.546rem + 2.89vw, 2.5rem);/*18-40*/
  font-weight: bold;
  color: var(--navy-color);
}
@media (width >= 768px) {
  .top_kv_copy_txt{
    transform: skew(-8deg);
  }
}

/* スクロールダウンの位置 */

@media (width < 768px) {
  .kv_scroll{
    display: none;
  }
}

@media (width >= 768px) {
  .kv_scroll {
    position: absolute;
    right: 2%;
    top: 6%;
    writing-mode: vertical-rl;
  }
  /* 線のアニメーション部分 */
  .kv_scroll::before {
    animation: scroll 2s infinite;
    background-color: var(--navy-color);
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
  }
  /* 線の背景色 */
  .kv_scroll::after {
    background-color: #ccc;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  /* 線のアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
  }
}

@media (width < 768px) {
  .top_kv-slideshow{
    display: none;
  }
}

@media (width >= 768px) {
  .top_kv-slideshow{
    width: 100%;
    height: auto;
    background: var(--navy-color);
    padding: 24px;
    overflow: hidden;
    padding: 32px;
  }
}
@media (width >= 767px) {
  .top_kv-slideshow{
    padding: 40px;
  }
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
  flex-direction: row;
}

@media (width >= 768px) {
  .top_kv-slideshow_slide{
    height: 70vh;
    width: auto;
    margin-right: -32px;
  }
}

.top_kv-slideshow_slide_img{
  width: auto;   
  height: 100%;
}

.top_kv-slideshow_sp{
  overflow: hidden;
  height: 80vh;
}

@media (width >= 768px) {
  .top_kv-slideshow_sp{
    display: none;
  }
}

.top_kv-slideshow_sp_slide_img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}



/* ---------- .top_guide ---------- */

.top_guide{
  background: var(--grayblue);
  padding-top: 40px;
}
@media (width >= 768px) {
  .top_guide{
    background: none;
  }
}

@media (width >= 1000px) {
  .top_guide-inner{
    margin-top: -140px;
    margin-bottom: 120px;
  }
}

.top_guide_btn_box{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (width >= 1000px) {
  .top_guide_btn_box{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.top_guide_btn{
  height: 125px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  position: relative;
  overflow: hidden;
}
@media (width >= 768px) {
  .top_guide_btn{
    height: 180px;
  }
}

/* 既存のオーバーレイ */
.top_guide_btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(2,57,98,0.4);
  z-index: 1; 
}

/* 背景画像用擬似要素 */
.top_guide_btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0; 
  transition: transform 0.6s ease;
}

.top_guide_btn.guideimg01::after{
  background: url(../img/guideimg01.webp) center / cover no-repeat;
}
.top_guide_btn.guideimg02::after{
  background: url(../img/guideimg02.webp) center / cover no-repeat;
}
.top_guide_btn.guideimg03::after{
  background: url(../img/guideimg03.webp) center / cover no-repeat;
}

/* PC（マウス操作ができるデバイス）のみホバーを適用 */
@media (hover: hover) and (pointer: fine) {
  .top_guide_btn:hover::after {
    transform: scale(1.1);
  }
}


.top_guide_btn_txt{
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  z-index: var(--z-index-default);
}

.m_arrow_white.guide{
  z-index: 1;
}


/* ---------- .top_news ---------- */

@media (width >= 1080px) {
  .top_news-wrapper{
    padding: 0 40px;
  }
  .top_news{
    border-radius: 16px;
  }
}

.top_news-posts-wrapper{
  margin-top: 40px;
}

.post_content {
  transition: 0.6s ease, border-radius 0.6s ease;
}

@media (hover: hover) {
  .post_content:hover{
    color: var(--blue-color);
  }
}



/* ---------- .crane_works ---------- */

.works-posts{
  margin-top: 40px;
}

.works-posts_inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (width >= 768px) {
  .works-posts_inner{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (width >= 1080px) {
  .works-posts_inner{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

.works_post{
  background: var(--white-color);
  padding: 16px;
  border-radius: 8px;
}


.works_post_thumb-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2; /* 比率を固定して高さを揃える */
  border-radius: 8px;
  overflow: hidden;    /* ズームした時、枠からはみ出た分を隠す */
  position: relative;
}

/* 中の画像（クラス名は WordPress の出力に合わせて調整） */
.m_post_thumb {
  width: 100% !important;  /* 親の幅に強制的に合わせる */
  height: 100% !important; /* 親の高さに強制的に合わせる */
  object-fit: cover;       /* 隙間なく埋める */
  transition: transform 0.3s ease; /* アニメーションを滑らかに */
  display: block;
}

/* ホバー時の挙動 */
.works_post_link:hover .m_post_thumb {
  transform: scale(1.1);
}


.works_post_link img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

@media (hover: hover) {
  .works_post_link:hover img {
    transform: scale(1.1);
  }
  
}



.works_post_meta{
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.works_post_title{
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

.works_post_equip{
  margin-top: 24px;
}

.works_post_equip-detail{
  font-size: 14px;
  color: var(--gray-color);
}

.works_post_btn-wrapper{
  display: block;
  margin-top: 16px;
}

.works_post_btn{
  color: var(--blue-color);
  background: var(--skyblue);
  width: 100%;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
}

/* ---------- post ---------- */

.post_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgb(16,102,166, .2);
}

.post_meta{
  display: flex;
  align-items: center;
  gap: 16px;
}

.post_meta-date{
  font-size: 14px;
  color: var(--blue-color);
}


.post_meta-cat{
  color: var(--white-color);
  background: var(--blue-color);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

.post_title_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* ---------- single ---------- */

.single_contents{
  display: flex;
  flex-direction: column;
}
@media (width >= 768px) {
  .single_contents{
    flex-direction: row;
    gap: clamp(1rem, -2.692rem + 7.69vw, 2.5rem);/*16-40*/
  }
}

@media (width >= 768px) {
  .single_post-wrapper{
    width: 70%;
  }
}

.single_post{
  background: var(--white-color);
  padding: 24px 16px 40px 16px;
  border-radius: 8px;
}
@media (width >= 768px) {
  .single_post{
    padding: 40px 40px 64px 40px;
  }
}

.post_meta-date.single{
  font-size: 16px;
  font-weight: bold;
}

.post_title.single{
  color: var(--blue-color);
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

.single_post_box{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

/* ---------- archive ---------- */

.archive_sidebar{
  background: var(--white-color);
  padding: 32px 24px;
  border-radius: 8px;
}

.archive-works_wrapper{
  margin-top: 40px;
}

.archive-works_inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (width >= 768px) {
  .archive-works_inner{
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
@media (width >= 1080px) {
  .archive-works_inner{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  gap: 24px;
}

.pagination_numbers {
  font-weight: 500;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-color);
  background: var(--white-color);
}

.pagination_numbers__current {
  color: var(--white-color);
  background: var(--blue-color);
}

.pagination_numbers__next {
  position: relative;
}

.pagination_numbers__next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue-color);
  border-right: 2px solid var(--blue-color);
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%) rotate(45deg);
}



/* ---------- .top_about ---------- */

.top_about_title-box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.top_about_title{
  font-size: clamp(1.125rem, 0.527rem + 2.55vw, 2.25rem);/*18-36*/
  font-weight: bold;
}
@media (width >= 768px) {
  .top_about_title{
    transform: skew(-10deg);
  }
}

@media (width < 1080px) {
  .top_about_logo{
    display: none;
  }
}
@media (width >= 1080px) {
  .top_about_logo{
    width: 300px;
    height: auto;
  }
}

.top_about_cards{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media (width >= 950px) {
  .top_about_cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 100px;
  }
}

.top_about_card{
  padding: 24px 16px 16px 16px;
  border: 1px solid var(--white-color);
  border-radius: 8px;
}
@media (width >= 768px) {
  .top_about_card{
    padding: 32px 24px 24px 24px;
  }
}

.top_about_card_title-box{
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 24px;
  margin-left: 16px;
}

.top_about_card_num{
  width: 52px;
  height: 52px;
  border: 1px solid var(--white-color);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_about_card_num_txt{
  color: var(--white-color);
  font-size: 24px;
  font-weight: 300;
  transform: skew(-10deg);
}

.top_about_card_title{
  font-size: clamp(1.5rem, 1.395rem + 0.53vw, 1.75rem);/*24-28*/
  font-weight: bold;
  transform: skew(-10deg);
}

.top_about_txt{
  font-size: 14px;
  margin-top: 16px;
}
@media (width >= 768px) {
  .top_about_txt{
    font-size: 16px;
  }
}

/* ---------- .top_card ---------- */

.top_cards{
  width: 100%;
  margin-top: 40px;
  padding-bottom: 140px;
  overflow: hidden;
}

.top_cards-wrapper{
  width: 100%;
}

.card{
  background: var(--grayblue);
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(234, 239, 243, 1);
}

.card.white{
  background: var(--white-color);
}


.card_link{
  color: var(--blue-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.card_thumb{
  border-radius: 4px;
}

.card_txt_box{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.card_num{
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 4px;
}

.card_txt{
  font-size: 16px;
  font-weight: bold;
}

.card_desc_txt{
  font-size: 14px;
}

.card_desc_box.pump{
  margin-top: 8px;
}

.card_txt_pump{
  font-size: 18px;
  font-weight: bold;
}

.card_label_box{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.card_label{
  color: var(--white-color);
  background: var(--blue-color);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.card_label.transparent{
  opacity: 0;
}

.card_nav{
  width: 64px;
  height: 48px;
  background: var(--grayblue);
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(170, 170, 170, 0.16);
  position: absolute;
  bottom: 64px;
  top: auto;
}
@media (width < 350px) {
  .card_nav{
    width: 42px;
  }
}

.card_nav.white{
  background-color: var(--white-color);
}

.card_nav__prev {
  left: auto;
  right: calc(50% + 96px);
}

.card_nav__next {
  right: auto;
  left: calc(50% + 96px);
}

.card_nav__prev:after,
.card_nav__next:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue-color);
  border-right: 2px solid var(--blue-color);
  top: 50%;
  left: 50%;
}

.card_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.card_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.card_dots {
  position: absolute;
  left: 50% !important;
  bottom: 80px !important;
  transform: translateX(-50%);
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.card_dots .swiper-pagination-bullet {
  background: var(--blue-color);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  color: transparent;
  /* border: 2px solid var(--white-color); */
}

.card_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue-color);
}


/* ---------- top_pump ---------- */

/* ---------- top_other ---------- */

.top_other_cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px 0;
}
@media (width >= 768px) {
  .top_other_cards{
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 56px 0;
  }
}

.top_other_card{
  background: var(--grayblue);
  padding: 16px;
  border-radius: 8px;
}
@media (width < 1080px) {
  .top_other_card.comingsoon{
    display: none;
  }
}

.top_other_card_img{
  border-radius: 8px;
  margin-top: 8px;
}

.top_other_title{
  padding-left: 4px;
  margin-top: 16px;
}

.top_other_title_txt{
  color: var(--blue-color);
  font-size: 18px;
  font-weight: bold;
}

.top_other_title_desc{
  color: var(--blue-color);
  font-size: 14px;
  margin-top: 8px;
}


/* ---------- top_recruit ---------- */

@media (width >= 768px) {
  .top_recruit-wrapper{
    padding: 0 clamp(1rem, -2.692rem + 7.69vw, 2.5rem);
  }
}


.top_recruit{
  padding: 80px 0;
}
@media (width >= 768px) {
  .top_recruit{
    padding: 80px 56px;
    border-radius: 16px;
  }
}

@media (width >= 768px) {
  .top_recruit-inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }
}
@media (width >= 1080px) {
  .top_recruit-inner{
    gap: 100px;
  }
}


@media (width < 768px) {
  .top_recruit_img_pc{
    display: none;
  }
}


@media (width >= 768px) {
  .top_recruit_img_pc-wrapper{
    width: 50%;
  }
  .top_recruit_img_pc{
    border-radius: 8px;
  }
  .top_recruit_contents{
    width: 50%;
  }
}

.top_recruit_img-wrapper{
  margin-top: 24px;
}

.top_recruit_img{
  border-radius: 8px;
}
@media (width >= 768px) {
  .top_recruit_img{
    display: none;
  }
}

.top_recruit_btn-box{
  margin-top: 32px;
}

.top_recruit_sns_link{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (width >= 768px) {
  .top_recruit_sns_link{
    justify-content: start;
  }
}

.top_recruit_sns-icon{
  width: 24px;
}

.top_recruit_sns-txt{
  color: var(--blue-color);
  font-size: 14px;
  
}

.top_recruit_btn-wrapper{
  margin-top: 24px;
}

@media (width >= 768px) {
  .m_btn_recruit{
    margin: 0;
  }
}

/* ---------- others ---------- */

.others_list-wrapper{
  margin-top: 40px;
}

.others_list_title{
  color: var(--blue-color);
  font-size: 20px;
  font-weight: bold;
}

.others_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: center;
  margin-top: 10px;
}

@media (width >= 768px) {
  .others_list{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.others_item{
  font-weight: bold;
  color: var(--blue-color);
  background: var(--white-color);
  padding: 16px 0;
  border-radius: 8px;
}


.others_content{
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 16px;
  border-radius: 8px;
  margin-top: 64px;
}
@media (width >= 768px) {
  .others_content{
    flex-direction: row;
    padding: 56px 56px;
    gap: 56px;
  }
  .others_content_img-wrapper{
    width: 40%;
  }
  .others_content_txt{
    width: 60%;
  }
}

.others_content_img{
  border-radius: 8px;
}

.others_content_title{
  color: var(--blue-color);
  font-size: clamp(1.125rem, 0.967rem + 0.79vw, 1.5rem);/*18-24*/
  font-weight: bold;
}

.others_content_sub{
  color: var(--blue-color);
  font-size: clamp(0.875rem, 0.822rem + 0.26vw, 1rem);/*14-16*/
  margin-top: 24px;
}

/* ---------- company ---------- */

@media (width >= 768px) {
  .company_message_img-wrapper{
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
}

.company_message_img{
  border-radius: 8px;
}
@media (width >= 768px) {
  img.company_message_img{
    width: 50% !important; 
    height: auto;
  }
}

@media (width < 768px) {
  .company_message_img:last-child{
    display: none;
  }
}

.company_massage_box{
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media (width >= 768px) {
  .company_massage_box{
  margin-top: 40px;
}
}

.company_message_title{
  color: var(--blue-color);
  font-size: clamp(1.125rem, 0.967rem + 0.79vw, 1.5rem);/*18-24*/
  font-weight: bold;
}

.company_message_txt_box{
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 16px;
  margin-top: 24px;
}
@media (width >= 1080px) {
  .company_message_txt_box{
    margin-top: 40px;
  }
}

.company_message_txt{
  color: var(--blue-color);
  font-size: clamp(0.875rem, 0.822rem + 0.26vw, 1rem);/*14-16*/
}

.company_message_name{
  color: var(--blue-color);
  font-weight: bold;
  margin-top: 32px;
  text-align: right;
}

.company_table{
  margin-top: 40px;
}

.company_info_tr{
  display: flex;
  flex-direction: column;
  padding: 16px 8px;
  border-bottom: 0.5px solid var(--gray-line);
}
@media (width >= 768px) {
  .company_info_tr{
    max-width: 800px;
    flex-direction: row;
    justify-content: start;
    padding: 24px 16px;
  }
}

.company_info_th{
  color: var(--gray-color);
  font-size: 14px;
}
@media (width >= 768px) {
  .company_info_th{
    width: 180px;
    font-size: 16px;
  }
}

.company_info_td{
  font-size: 16px;
  margin-top: 8px;
}
@media (width >= 768px) {
  .company_info_td{
    margin-top: 0;
  }
}

.licence_table{
  margin-top: 40px;
}

.company_licence_tr{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--gray-line);
}
@media (width >= 768px) {
  .company_licence_tr{
    max-width: 400px;
    padding: 10px 0;
  }
}

.company_licence_th{
  font-size: 14px;
}
@media (width >= 768px) {
  .company_licence_th{
    font-size: 16px;
  }
}

.company_licence_td{
  font-size: 14px;
}
@media (width >= 768px) {
  .company_licence_td{
    font-size: 16px;
  }
}

.company_adress{
  margin-top: 40px;
}

.company_access_map-wrapper{
  margin-top: 24px;
}

.company_access_map{
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 8px;
}


/* ---------- recruit ---------- */

.recruit-slideshow{
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
  flex-direction: row;
}

.recruit-slideshow_slide{
  height: 30vh;
  width: auto;
}
@media (width >= 768px) {
  .recruit-slideshow_slide{
    height: 40vh;
  }
}

.recruit-slideshow_slide_img{
  width: auto;   
  height: 100%;
}


.recruit_about-inner{
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 16px;
}
@media (width >= 768px) {
  .recruit_about-inner{
    gap: 100px;
    padding: 80px 16px;
}
}

.recruit_section_title.blue{
  color: var(--blue-color);
}

.recruit_section_title_main{
  font-size: clamp(1.75rem, 1.013rem + 3.68vw, 3.5rem);/*28-56*/
  font-weight: medium;
}

.recruit_section_title_sub{
  font-size: clamp(0.75rem, 0.592rem + 0.79vw, 1.125rem);/*12-18*/
  padding-left: 4px;
}
@media (width >= 768px) {
  .recruit_section_title_sub{
    padding-left: 8px;
  }
}

.recruit_about_copy{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruit_about_copy-txt{
  font-size: clamp(1.125rem, 0.862rem + 1.32vw, 1.75rem);/*18-32px*/
  font-weight: bold;
  font-family: "Zen Kaku gothic new";
  line-height: 1.6;
}


@media (width >= 768px) {
  .recruit_btn-wrapper{
    display: flex;
    flex-direction: row;
    gap: 56px;
  }
}
@media (width >= 1080px) {
  .recruit_btn-wrapper{
    gap: 80px;
  }
}

.btn_recruit{
  color: var(--white-color);
  display: inline-block;
  width: 200px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
@media (width >= 768px) {
  .btn_recruit{
    width: 160px;
  }
}

@media (hover: hover) {
  .btn_recruit:hover .m_arrow_simple-white::after {
    transform: translateX(5px);
  }
}

.recruit_culture_cards{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (width >= 768px) {
  .recruit_culture_cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, -5.385rem + 15.38vw, 5rem);/*24-80*/
    margin-top: 80px;
  }
}

.recruit_culture_card{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 768px) {
  .recruit_culture_card:nth-child(2){
  margin-top: 200px;
  }

  .recruit_culture_card:nth-child(3){
    margin-top: -180px;
  }
  .recruit_culture_card:nth-child(4){
    margin-top: 40px;
  }
}

.recruit_culture_img{
  border-radius: 8px;
}

.recruit_culture_copy{
  font-size: clamp(1.25rem, 1.039rem + 1.05vw, 1.75rem);/*20-32*/
  font-weight: bold;
  font-family: "Zen Kaku gothic new";
}

.recruit_culture_txt{
  margin-top: 16px;
}

.section_title_eng-wrapper {
  width: 100%;
  display: block;
  justify-content: end;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (width >= 768px) {
  .section_title_eng-wrapper{
    gap: 16px;
  }
}

.section_title_line {
  background: var(--white-color);
  display: inline-block;
  height: 0.5px;
  width: 32px;
}
@media (width >= 768px) {
  .section_title_line {
    width: 56px;
  }
}

.section_title_eng {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 200;
}
@media (width >= 768px) {
  .section_title_eng {
    font-size: 24px;
  }
}



.rectuit_interview_contents{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 40px;
}
@media (width >= 1080px) {
  .rectuit_interview_contents{
    gap: 80px;
    margin-top: 80px;
  }
}

@media (width >= 768px) {
  .recruit_interview_content{
    background: var(--grayblue);
    padding: 40px 24px;
    border-radius: 24px;
    position: relative;
  }
}
@media (width >= 1080px) {
  .recruit_interview_content{
    padding: 100px 56px;
  }
}
@media (width >= 1080px) {
  .interview_01::before{
  position: absolute;
  content: '#01 Interview';
  font-family: 'Montserrat';
  color: var(--blue-color);
  font-size: 40px;
  font-weight: 300;
  top: -38px;
  }
  .interview_02::before{
  position: absolute;
  content: '#02 Interview';
  font-family: 'Montserrat';
  color: var(--blue-color);
  font-size: 40px;
  font-weight: 300;
  top: -38px;
  }
  .interview_03::before{
  position: absolute;
  content: '#03 Interview';
  font-family: 'Montserrat';
  color: var(--blue-color);
  font-size: 40px;
  font-weight: 300;
  top: -38px;
  }
  .interview_04::before{
  position: absolute;
  content: '#04 Interview';
  font-family: 'Montserrat';
  color: var(--blue-color);
  font-size: 40px;
  font-weight: 300;
  top: -38px;
  }
}

.recruit_interview_num{
  color: var(--blue-color);
  font-size: 20px;
  margin-bottom: 16px;
}
@media (width >= 768px) {
  .recruit_interview_num{
    font-size: 28px;
  }
}
@media (width >= 1080px) {
  .recruit_interview_num{
    display: none;
  }
}

.recruit_interview_img{
  border-radius: 8px;
}

@media (width >= 1080px) {
  .recruit_interview_img_sp-wrapper{
    display: none; 
  }
}

@media (width < 1080px) {
  .recruit_interview_img_pc-wrapper{
    display: none; 
  }
}

@media (width >= 1080px) {
  .recruit_interview_img_pc-wrapper{
    width: 100%;
  }
}
.recruit_interview_title_txt{
  color: var(--blue-color);
  font-size: 18px;
  font-weight: bold;
  font-family: 'zen kaku gothic new';
  margin-top: 16px;
}
@media (width >= 768px) {
  .recruit_interview_title_txt{
    font-size: 28px;
    margin-top: 24px;
  }
}
@media (width >= 1080px) {
  .recruit_interview_title_txt{
    margin-top: 0;
  }
}

@media (width >= 1080px) {
  .recruit_interview_detail{
    display: flex;
    gap: 40px;
    margin-top: 64px;
  }
  .recruit_interview_img_pc-wrapper{
    width: 35%;
  }
  .recruit_interview_content-txt{
    width: 65%;
  }
}

.recruit_interview_name-wrapper{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: end;
  margin-top: 16px;
}
@media (width >= 1080px) {
  .recruit_interview_name-wrapper{
    margin-top: 0;
  }
}

.recruit_interview_name-inner{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: end;
}

.recruit_interview_name{
  color: var(--blue-color);
  font-weight: 500;
}
@media (width >= 768px) {
  .recruit_interview_name{
    font-size: 20px;
  }
}

.recruit_interview_san{
  color: var(--blue-color);
  font-size: 10px;
  padding-bottom: 2px;
}
@media (width >= 768px) {
  .recruit_interview_san{
    font-size: 14px;
  }
}

.recruit_interview_year{
  color: var(--gray-color);
  font-size: 14px;
}


.recruit_interview_questions{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media (width >= 1080px) {
  .recruit_interview_questions{
    margin-top: 32px;
  }
}

.recruit_interview_question{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit_interview_question-box{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: start;
}

.recruit_interview_q{
  color: var(--blue-color);
  font-weight: bold;
}
@media (width >= 768px) {
  .recruit_interview_q{
    font-size: 18px;
  }
}

.recruit_interview_question_txt{
  color: var(--blue-color);
  font-weight: bold;
  text-align: left;
}
@media (width >= 768px) {
  .recruit_interview_question_txt{
    font-size: 18px;
  }
}

.recruit_interview_answer{
  font-size: 16px;
  text-align: left;
}
@media (width >= 768px) {
  .recruit_interview_answer{
    font-size: 16px;
  }
}

.recruit_interview_licences{
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.recruit_interview_licence-wrapper{
  display: flex;
}

.recruit_interview_licence-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.recruit_interview_licence_txt{
  background: var(--grayblue);
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
@media (width >= 768px) {
  .recruit_interview_licence_txt{
    background: var(--white-color);
  }
}

@media (width >= 1080px) {
  .recruit_interview_open{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
  }
  .recruit_interview_questions.open{
    width: 65%;
    margin-top: 80px;
  }
}

.recruit_interview_img-wrapper{
  margin-top: 24px;
}
@media (width >= 1080px) {
  .recruit_interview_img-wrapper{
    width: 35%;
    margin-top: 80px;
  }
}

.recruit_interview_btn-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
@media (width >= 1080px) {
  .recruit_interview_btn-wrapper{
    justify-content: end;
    margin-top: 64px;
  }
}
.recruit_interview_txt{
  color: var(--blue-color);
  font-weight: bold;
}

.recruit_interview_mark {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.recruit_interview_mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  border-radius: 50px;
  height: 100%;
  background: var(--blue-color);
}

.recruit_interview_mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background: var(--blue-color);
}




.recruit_job_caution{
  color: var(--blue-color);
  margin-top: 40px;
}
@media (width >= 768px) {
  .recruit_job_caution{
  margin-top: 80px;
  }
}

.recruit_job_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.recruit_job_button {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(143, 156, 188, 0.16);
  overflow: hidden;
}

.recruit_job_content-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
@media (min-width: 768px) {
  .recruit_job_content-wrapper{
    padding: 24px;
  }
}

.recruit_job_content {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 16px;
}

.recruit_job_txt{
  color: var(--blue-color);
  font-size: 16px;
  font-weight: bold;
}

.recruit_job_open{
  background: var(--blue-color);
}

.recruit_job_content__a{
  background: var(--white-color);
  padding: 0 16px 16px 16px;
}
@media (min-width: 768px) {
  .recruit_job_content__a{
    padding: 0 24px 24px 24px;
  }
}

.recruit_job_txt__a{
  color: var(--black-color);
}

.recruit_job_mark {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.recruit_job_mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  border-radius: 50px;
  height: 100%;
  background: var(--blue-color);
}

.recruit_job_mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background: var(--blue-color);
}

.recruit_job_tr{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--gray-line);
}
@media (width >= 768px) {
  .recruit_job_tr{
    flex-direction: row;
  }
}

.recruit_job_tr:last-child{
  border-bottom:  none;
}

.recruit_job_th{
  color: var(--gray-color);
  font-size: 14px;
}
@media (width >= 768px) {
  .recruit_job_th{
    font-size: 16px;
    width: 20%;
  }
}

.recruit_job_td{
  text-align: left;
}
@media (width >= 768px) {
  .recruit_job_td{
  width: 80%;
}
}


.recruit_instagram_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (width >= 768px) {
  .recruit_instagram_content{
    gap: 80px;
  }
}

.recruit_instagram_title{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (width >= 768px) {
  .recruit_instagram_title{
    gap: 24px;
  }
}
.recruit_instagram_icon_img{
  width: 20px;
  height: 20px;
}
@media (width >= 768px) {
  .recruit_instagram_icon_img{
    width: 40px;
    height: 40px;
  }
}

.recruit_instagram_title_txt{
  color: var(--blue-color);
  font-size: clamp(1rem, 0.579rem + 2.11vw, 2rem);/*16-32*/
  font-weight: bold;
}

.btn_instagram {
  background: linear-gradient(to left, #EC722E, #E9339E, #6F20F5);
  display: inline-block;
  width: 287px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  padding: 0 40px;
  margin: 0 auto;
}

@media (hover: hover) {
  
  .btn_instagram:hover .btn_instagram_link_icon_img {
    transform: translateX(5px);
  }
}

.btn_instagram_txt{
  color: var(--white-color);
}

.btn_instagram_link_icon_img{
  width: 32px;
  transition: transform 0.3s ease;
}

/* ---------- contact ---------- */

.contact_desc_txt{
  color: var(--blue-color);
}

.contact_form_heading {
  position: relative;
}

.contact_form_heading:not(:first-child) {
  margin-top: 32px;
}

.contact_form_example {
  color: var(--blue-color);
  font-size: 14px;
}

.contact_form_detail {
  margin-top: 10px;
}


.contact_form_input {
  background: var(--white-color);
  border-radius: 8px;
  width: 100%;
  height: 50px;
  padding: 0 16px;
}

.contact_form_required {
  font-size: 10px;
  font-weight: bold;
  border-radius: 8px;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue-color);
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_radio-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important; /* これを有効にするために下の設定が必要 */
}

.contact_form_radio-list .wpcf7-form-control-wrap {
  display: contents !important;
}

label{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 0 0 16px;
}

/* 2. 白い枠：中の要素が縦に並ばないよう、ここも調整 */
.contact_form_radio-list .wpcf7-list-item {
  display: flex !important;
  align-items: center; /* 枠の上下中央に配置 */
  background: var(--white-color);
  border-radius: 8px;
  margin: 0;
  padding: 0;
}

.wpcf7-list-item:not(:first-child){
  margin-top: 10px;
}

/* 3. ラベル：ボタンと文字を確実に「横並び」に固定 */
.contact_form_radio-list .wpcf7-list-item-label {
  display: flex !important;
  flex-direction: row !important; /* 強制的に横並び */
  align-items: center !important;  /* ボタンと文字の上下中央を揃える */
  width: 100%;
  height: 100%; /* 親の50pxいっぱいに広げる */
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap; /* 文字の折り返しを防ぐ */
}

/* 4. ラジオボタン：余計な動きをさせない */
.contact_form_radio-list input[type="radio"] {
  display: inline-block !important;
  appearance: radio !important;
  -webkit-appearance: radio !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important; /* 外側の余白をゼロに */
  flex-shrink: 0; /* 文字に押されて潰れないようにする */
}




.contact_form_textarea {
  width: 100%;
  height: 250px;
  background: var(--white-color);
  border-radius: 8px;
  padding: 8px 16px;
  resize: none;
}
@media (width >= 768px) {
  .contact_form_textarea{
    padding: 16px;
  }
}

.contact_form_btn-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact_form_privacy{
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 40px;
}

.contact_form_label{
  display: inline-block;
  cursor: pointer;
  padding: 8px 0;
}

input[type="checkbox"] {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white-color);
  border: 1px solid var(--gray-line);
  cursor: pointer;
}

/* チェックされたときの表示 */
input[type="checkbox"]:checked::after {
  content: "✔"; /* チェックマーク */
  color: var(--blue-color);
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact_form_privacy_link{
  font-size: 14px;
  color: var(--gray-color);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 8px;
}

.contact_form_btn-wrapper{
  margin-top: 24px;
}

.contact_from_recap{
  color: var(--gray-color);
  font-size: 12px;
  margin-top: 40px;
  text-align: center;
}

.contact_form_recap-link{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- terms/privacy ---------- */

.m_terms_content{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (width >= 768px) {
  .m_terms_content{
    gap: 56px;
  }
}

.m_terms_head{
  font-weight: bold;
  font-size: clamp(1.125rem, 1.072rem + 0.26vw, 1.25rem);/*18-20*/
}

.m_terms_txt{
  margin-top: 16px;
}


/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media (width >= 1280px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_float.is-active{
  /* opacity: 0; */
  display: none;
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(35deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-35deg);
}

.js_card-swiper {
  position: relative;
}

/*---------- インタビュー　アコーディオンメニュー ----------*/

.js_interview_mark.is-open::before {
  opacity: 0;
}

/* ▼アコーディオン中身（Q部分）の初期状態 */
.js_interview_q {
  height: 0;
  opacity: 0;
  overflow: hidden;         /* コンテンツを隠す */
  pointer-events: none;     /* クリックできなくする */
}

/* ▼開いた状態 */
.js_interview.is-active .js_interview_q {
  height: auto;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;     /* 再びクリック可能に戻す */
}

/* ▼開閉ボタンの表示切替 */
.js_interview_open {
  display: block;
}
.js_interview_close {
  display: none;
}
.js_interview.is-active .js_interview_open {
  display: none;
}
.js_interview.is-active .js_interview_close {
  display: block;
}


/*---------- 募集職種　アコーディオンメニュー ----------*/

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}