@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #fff;
  --black-color: #2b2b2b;
  --gray-color: #eef1f6;
  --gray-color02: #c0c0c0;
  --gray-color03: rgb(192, 192, 192, 0.5);
  --gray-color04: #d9d9d9;
  --gray-color05: #eef1f6;
  --gray-color06: #aaaaaa;
  --primary-color: #03417a;
  --accent-color: #037a33;
  --point-color: #ff8001;
  --contact-color: #ad0000;
}

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

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

body {
  color: var(--black-color);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  width: 100%;
}

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

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

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

.l_contents {
  padding: 160px 0;
}

.l_page-main {
  padding-top: 120px;
}

.l_header {
  height: 72px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1025px) {
  .l_header {
    padding: 0 40px;
    height: 120px;
  }
}

.l_header-logo {
  z-index: var(--z-index-modal);
  width: 160px;
}
@media screen and (min-width: 1025px) {
  .l_header-logo {
    width: 300px;
  }
}

.l_header-logo_link {
  display: block;
}

.l_header-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: var(--white-color);
}

@media screen and (min-width: 1025px) {
  .l_header-nav {
    opacity: 1;
    position: static;
    background: var(--white-color);
    padding: 21px 40px;
    border-radius: 40px;
  }
}

.l_header-nav_list {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 240px;
  align-items: flex-start;
  margin: auto;
}

@media screen and (min-width: 1025px) {
  .l_header-nav_list {
    height: auto;
    flex-direction: row;
    align-items: center;
    width: auto;
    margin: 0;
    gap: 30px;
  }
}

@media screen and (min-width: 1060px) {
  .l_header-nav_list {
    gap: 40px;
  }
}

.l_header-nav_item {
  z-index: var(--z-index-page-top);
  font-size: 14px;
}

@media screen and (min-width: 1025px) {
  .l_header-nav_item {
    font-size: 18px;
  }
}

.l_header-nav_links-sp {
  display: flex;
  flex-direction: column;
}

.l_header-nav_link {
  display: block;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(
    to right,
    var(--point-color) 50%,
    var(--black-color) 50%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.5s ease;
}
@media screen and (min-width: 1025px) {
  .l_header-nav_link {
    font-size: 16px;
  }

  .l_header-nav_link:hover {
    background-position: 0 0;
  }
}
.l_header_social-icons {
  display: flex;
  width: 240px;
  gap: 10px;
}
@media screen and (min-width: 1025px) {
  .l_header_social-icons {
    display: none;
  }
}

.l_header_social-icon {
  width: 30px;
}

.l_footer {
  background-color: var(--primary-color);
  color: white;
  padding: 70px 0 20px;
  min-height: 200px;
}
@media screen and (min-width: 1080px) {
  .l_footer {
    padding: 57px 0 84px;
  }
}

.l_footer-logo {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (min-width: 1080px) {
  .l_footer-logo {
    text-align: left;
    margin-bottom: 44px;
  }
}

.l_footer-logo_sp {
  width: 273px;
}

.l_footer-logo_pc {
  width: 250px;
}

.l_footer-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.l_footer_social-icon {
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 1025px) {
  .l_footer_social-icon {
    margin-bottom: 19px;
  }
}
.l_footer_sns-section {
  text-align: center;
  margin-bottom: 53px;
}
@media screen and (min-width: 1080px) {
  .l_footer_sns-section {
    text-align: left;
    margin-bottom: 0;
  }
}

.l_footer-logo_link:not(:first-child) {
  margin-left: 20px;
}

.l_footer_navigation-section {
  list-style: none;
  display: flex;
  gap: 70px;
  justify-content: center;
  text-align: left;
  padding-bottom: 80px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l_footer_navigation-section {
    justify-content: start;
    border: none;
    margin: 0;
    padding: 0;
    gap: 113px;
  }
}

.l_footer_navigation-section:after {
  content: "";
  width: 65%;
  height: 1px;
  background: #c0c0c0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1025px) {
  .l_footer_navigation-section:after {
    content: none;
  }
}

.l_footer-navlist {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.l_footer_copyright {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .l_footer_copyright {
    text-align: left;
  }
}

.l_footer_copyright-txt {
  color: #3e6385;
  font-size: 12px;
}

.l_footer_nav-button-section {
  display: flex;
  gap: 50px;
}

.l_footer_button-section {
  margin-bottom: 45px;
}
@media screen and (min-width: 1025px) {
  .l_footer_button-section {
    margin-bottom: 0;
  }
}

.l_footer-button:first-child {
  margin-bottom: 20px;
}

.l_footer-button {
  width: 240px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .l_footer-buttun {
    margin-left: 0;
    margin-right: 0;
  }
}

.l_footer_btn {
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.75;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.l_footer_btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

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

.m_hamburger {
  display: block;
  width: 15px;
  height: 12px;
  position: relative;
  z-index: var(--z-index-modal);
}

.m_hamburger::before {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger:hover.m_hamburger::before {
  background: var(--white-color);
}

@media screen and (min-width: 1025px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: var(--white-color);
}
.m_hamburger:hover .m_hamburger-bar {
  background: var(--primary-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

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

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.m_btn-wrapper {
  width: 355px;
  height: 79px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1025px) {
  .m_btn-wrapper {
    width: 416px;
    height: 102px;
  }
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_service_btn-wrapper {
  margin: 0 auto 0 0;
}

.m_btn__cta {
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  background: var(--point-color);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 1025px) {
  .m_btn__cta {
    font-size: 24px;
  }
}

.m_btn__cta:hover {
  background: var(--white-color);
  color: var(--point-color);
  border: 1px solid var(--point-color);
}

.m_btn__more {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
  border: 2px solid var(--primary-color);
  background: var(--white-color);
  position: relative;
  z-index: var(--z-index-default);
  cursor: pointer;
}

.m_btn__more::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg);
}

.m_btn__form {
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  background: var(--point-color);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  border-radius: 100vh;
  width: 325px;
  height: 85px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .m_btn__form {
    padding: 30px 90px;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}

.m_btn__form:hover {
  background: var(--white-color);
  color: var(--point-color);
  border: 1px solid var(--point-color);
}

.m_footer-btn-wrapper {
  height: 79px;
}

@media screen and (min-width: 768px) {
  .m_footer-btn-wrapper {
    width: 240px;
  }
}

.m_footer-btn {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
  background: var(--white-color);
}

.m_cta {
  position: relative;
}

.m_cta::after {
  content: none;
}

.m_cta::before {
  content: "";
  width: 100%;
  height: 192px;
  background: url(../img/contact03.png) no-repeat center top / cover;
  display: inline-block;
  position: absolute;
  top: 0;
}

@media screen and (min-width: 1025px) {
  .m_cta::before {
    background: url(../img/contact01.png) no-repeat center / cover;
    border-radius: 10px;
    top: -120px;
    right: 0;
    width: auto;
    height: auto;
    position: static;
  }
}

.m_cta::after {
  bottom: -100px;
  left: 0;
  background: url(../img/contact02.png) no-repeat center / cover;
}

@media screen and (min-width: 1025px) {
  .m_cta::before,
  .m_cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 500px;
  }
}
.m_cta_title {
  font-size: 50px;
  font-weight: bold;
  color: var(--gray-color03);
  position: absolute;
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
}

@media screen and (min-width: 768px) {
  .m_cta_title {
    font-size: 100px;
    top: -143px;
  }
}

.m_cta_box {
  padding: 200px 0 81px;
  background: var(--gray-color);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 10px;
}

@media screen and (min-width: 1025px) {
  .m_cta_box {
    margin: 100px auto 250px;
    padding: 120px 0;
  }
}

.m_cta_txt {
  text-align: center;
  margin-top: 50px;
  padding: 0 16px;
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .m_cta_txt {
    margin-top: 24px;
    padding: 0;
    text-align: center;
  }
}

.m_cta_txt__emphasize {
  font-size: 19px;
  font-weight: 700;
}

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

.m_kv {
  height: 130px;
  color: var(--white-color);
  position: relative;
  background: url("../img/bg_sp.png") center/cover;
}

@media screen and (min-width: 1025px) {
  .m_kv {
    background: url("../img/bg_kv.jpg") center/cover;

    height: 310px;
  }
}

.m_kv_contents {
  width: 95%;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  max-width: 914px;
  padding: 27px 0;
}

@media screen and (min-width: 1025px) {
  .m_kv_contents {
    width: 100%;
    padding: 0;
    top: 100%;
    left: 0;
    transform: translateY(-50%);
  }
}

.m_kv_title {
  font-weight: bold;
  position: relative;

  line-height: 1.25;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1025px) {
  .m_kv_title {
    padding: 49px 0 0 134px;
    min-height: 206px;
    display: block;
    font-size: 20px;

    text-align: left;
  }
}

.m_kv_title:after {
  width: 100%;
  color: var(--white-color);
  display: block;
  text-align: center;
  font-size: 36px;
}

@media screen and (min-width: 1025px) {
  .m_kv_title:after {
    text-align: left;
    font-size: 73px;
    margin-left: -4px;
  }
}

.m_kv_title__about::after {
  content: "COMPANY";
}
.m_kv_title__service::after {
  content: "SERVICE";
}

.m_kv_title__hrm::after {
  content: "Human Resource Management";
}

.m_kv_title__sales::after {
  content: "PROMOTION";
}

.m_kv_title__apparel::after {
  content: "BRAND SUPPORT";
}

.m_kv_title__entry::after {
  content: "ENTRY FORM";
}

.m_kv_title__contact::after {
  content: "CONTACT";
}
.m_kv_title__privacy::after {
  content: "PRIVACY POLICY";
}

.m_kv_title__news::after {
  content: "NEWS";
}

.m_kv_title__recruit::after {
  content: "RECRUIT";
}

.m_page-section-heading {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_page-section-heading {
    font-size: 20px;
  }
}

.m_page-section-heading::after {
  color: var(--gray-color03);
  font-weight: bold;
  display: block;
  line-height: 1;
  font-size: 50px;
  font-family: "Inter", sans-serif;
}

@media screen and (min-width: 1025px) {
  .m_page-section-heading::after {
    font-size: 100px;
  }
}

.m_page-section-heading__philosophy::after {
  content: "PHILOSOPHY";
  line-height: 0.7em;
  margin-left: -1px;
}
@media screen and (min-width: 1025px) {
  .m_page-section-heading__philosophy::after {
    margin-left: -4px;
  }
}

.m_page-section-heading__company,
.m_page-section-heading__logo,
.m_page-section-heading__achievements,
.m_page-section-heading__recruit,
.m_page-section-heading__business {
  text-align: center;
}

.m_page-section-heading__message::after {
  content: "MESSAGE";
}

@media screen and (min-width: 1025px) {
  .m_page-section-heading__message::after {
    margin-left: -5px;
  }
}

.m_page-section-heading__business::after {
  content: "OUR BUSINESS";
}

.m_page-section-heading__recruit {
  color: var(--white-color);
  text-align: center;
}
.m_page-section-heading__h2-recruit::after {
  content: "RECRUIT";
  margin-left: -1px;
}
@media screen and (min-width: 1080px) {
  .m_page-section-heading__h2-recruit::after {
    margin-left: -5px;
  }
}

.m_page-section-heading__recruit::after {
  content: "RECRUIT";
  color: var(--white-color);
  margin-bottom: 50px;
}

.m_page-section-heading__logo {
  position: relative;
}

.m_page-section-heading__logo::after {
  content: "LOGO";
}
.m_page-section-heading__company::after {
  content: "COMPANY";
}

.m_page-section-heading__portrait::after {
  content: "PORTRAIT";
  margin-left: -5px;
}

.m_page-section-heading__achievements::after {
  content: "ACHIEVEMENTS";
  word-break: break-all;
}

.m_page-section-heading__service {
  color: var(--white-color);
}
@media screen and (min-width: 1025px) {
  .m_page-section-heading__service {
    color: var(--black-color);
    font-size: 20px;
  }
}
.m_page-section-heading__s-service::after {
  content: "SERVICE";
}

.m_page-section-heading__service::after {
  content: "SERVICE";
  color: var(--white-color);
  margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
  .m_page-section-heading__service::after {
    content: "SERVICE";
    color: var(--gray-color03);
    margin-bottom: 0;
  }
}

.m_section_title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .m_section_title {
    font-size: 32px;
  }
}

.m_section_title:before {
  width: 100%;
  font-size: 48px;
  color: rgba(255, 187, 30, 0.6);
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-index-default);
}

@media screen and (min-width: 768px) {
  .m_section_title:before {
    font-size: 64px;
    bottom: 8px;
  }
}

.m_section_title__about::before {
  content: "ABOUT US";
}

.m_section_title__service::before {
  content: "SERVICE";
}

.m_section_title__case::before {
  content: "CASE";
}

.m_container {
  padding: 0 16px;
}

.m_info_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .m_info_title {
    line-height: 1.75;
  }
}

/*---------- top ----------*/

.top_kv {
  height: 100svh;
  background: linear-gradient(rgba(0, 28, 43, 0.3), rgba(0, 28, 43, 0.3)),
    url("../img/bg_kv.jpg") 70% center/cover;
  position: relative;
}

.top_kv_contents {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_kv_sub-copy {
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 18px;
  }
}

.top_kv_copy {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

.top_kv_btn-wrapper {
  margin: 32px 0 0;
}

@media screen and (min-width: 500px) {
  .top_kv_btn-wrapper {
    text-align: left;
  }
}

.top_kv-scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: var(--z-index-default);
  transform: translateX(-50%);
}

.top_kv-scroll-down_txt {
  color: var(--white-color);
  font-size: 14px;
}

.top_kv-scroll-down_arrow {
  width: 8px;
  height: 8px;
  border-color: var(--white-color);
  border-width: 2px;
  border-style: none solid solid none;
  transform: rotate(45deg);
}

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
}

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

@media screen and (min-width: 1025px) {
  .top_about_body {
    margin-top: 64px;
  }
}

@media screen and (min-width: 768px) {
  .top_about_contents {
    display: flex;
    justify-content: space-between;
  }
}

.top_about_txts {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top_about_txts {
    margin-top: 0;
    width: 50%;
  }
}
.top_about_heading {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .top_about_heading {
    font-size: 32px;
  }
}

/* ---------- SERVICE ---------- */

.top_info_title.business_ttl {
  letter-spacing: 0;
  text-align: center;
  margin: 30px 0 50px;
}
@media screen and (min-width: 1025px) {
  .top_info_title.business_ttl {
    letter-spacing: 0.1em;
    margin: 75px 0 49px;
  }
}

.service_service-unit {
  padding: 0 10px;
}

.service_biz-image img {
  height: 200px;
  object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .service_biz-image img {
    height: 100%;
  }
}
.service_service_img-wrapper {
  margin-bottom: 30px;
}
.service_service-unit:not(:first-child) .service_service_img-wrapper {
  margin-top: 100px;
}

.service_service_img {
  height: 170px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .service_service_img {
    height: 400px;
  }
}

.service_service_text-wrapper {
  padding: 0 10px;
}

.service_service_ttl {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 37px;
}

.service_service_txt {
  margin-bottom: 40px;
}

.service_biz-info .m_cta_btn-wrapper {
  margin-top: 107px;
}

.m_btn__service {
  border: 1px solid var(--black-color);
}

.service_btn-wrapper {
  width: 190px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1025px) {
  .service_biz-info {
    position: relative;
  }
  .service_biz-info::before {
    content: "";
    position: absolute;
    top: -125px;
    left: 70px;
    border-top: 1px solid var(--gray-color04);
    border-left: 1px solid var(--gray-color04);
    border-bottom: 1px solid var(--gray-color04);
    width: 160px;
    height: 107%;
    z-index: -1;
  }
  .service_biz-info::after {
    content: "";
    position: absolute;
    top: -125px;
    right: 70px;
    border-top: 1px solid var(--gray-color04);
    border-right: 1px solid var(--gray-color04);
    border-bottom: 1px solid var(--gray-color04);
    width: 160px;
    height: 107%;
    z-index: -1;
  }
}

.services_main-content {
  display: flex;
  min-height: 500px;
}

/* 左側のサービスリスト */
.services_service-list {
  background: var(--primary-color);
  color: var(--white-color);
  width: 550px;
  padding: 69px 0 144px 165px;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .services_service-list::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background: var(--white-color);
    top: 0;
    left: 184px;
  }
}

.services_service-intro {
  padding: 0 0 30px 55px;
  border-bottom: 1px solid #2a4a6b;
  margin-bottom: 20px;
}

.services_service-intro h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: normal;
  width: 240px;
  letter-spacing: 0;
}

.services_service-item {
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
}
.services_service-item.active {
  color: #ffd700;
}

.services_service-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.services_service-item.active::before {
  content: "●";
  color: #ffd700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.services_service-item h4 {
  margin: 0;
  font-size: 22px;
  font-weight: normal;
  margin-left: 24px;
}

/* 右側のコンテンツエリア */
.services_content-area {
  flex: 1;
  padding: 0 40px 0 63px;
  position: relative;
  background: white;
  max-width: 970px;
  position: relative;
}

.services_service-content {
  display: none;
  position: relative;
}

.services_service-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services_content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.services_content-title-area {
  line-height: 1.25;
}

.services_content-title-sub {
  margin: 0 0 16px 0;
  font-size: 24px;
}

.services_content-title {
  margin-bottom: 27px;
  font-size: 40px;
}

.services_service-description {
  line-height: 2;
}

.services_service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  /* object-position: top; */
}

/* 次へボタン */
.services_next-button {
  position: absolute;
  top: 355px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: var(--white-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 10;
}

.services_next-button:hover {
  transform: translateX(2px);
}

.services_next-button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.services_next-button::before {
  content: "more";
  position: absolute;
  top: -30px;
}

/* ---------- top_info ---------- */

.top_info-inner {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 60px;
}

@media screen and (min-width: 1025px) {
  .top_info-inner {
    position: relative;
    height: 440px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
  }
}

.top_info:nth-child(2n) {
  background: var(--gray-color02);
}

@media screen and (min-width: 1025px) {
  .top_info_img-wrapper {
    position: absolute;
    top: -65px;
    left: 0;
    width: 550px;
  }
}

.top_info_img {
  height: 350px;
  object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .top_info_img {
    height: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .top_info_content {
    width: 570px;
    margin-left: auto;
  }
}

.top_info_txt {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .top_info_txt {
    margin-bottom: 90px;
  }
}

.top_info_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .top_info_title {
    font-size: 36px;
  }
}

.top-info_sub {
  margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .top-info_sub {
    margin-bottom: 16px;
  }
}

.top_info_block {
  position: relative;
  margin-top: 24px;
}

@media screen and (min-width: 1025px) {
  .top_info_block {
    margin-top: 0;
  }
}

.top-info__grid {
  display: grid;
  align-items: center;
  margin: 0 auto;
  grid-template-areas:
    "image text"
    "image btn";
  grid-template-columns: 550px 1fr;
  max-width: 1400px;
}

.top-info__image {
  grid-area: image;
  height: 410px;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 1025px) {
  .top-info__image {
    height: 600px;
    position: absolute;
    left: 0;
    max-width: 550px;
  }
}

.top-info__image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.top-info__text {
  grid-area: text;
}
@media screen and (min-width: 1025px) {
  .top-info__text {
    grid-area: text;
    padding: 0 30px;
  }
}

.top-info__btn {
  padding: 60px 0 80px 0;
  grid-area: btn;
  /* background: var(--gray-color); */
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-info__btn {
    padding: 60px 0 80px 30px;
  }
}

.top-info__btn .btn {
  display: inline-block;
  background-color: var(--point-color);
  width: 416px;
  height: 102px;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

.top-info__btn .btn:hover {
  background: var(--white-color);
  color: var(--point-color);
  border: 1px solid var(--point-color);
}

@media screen and (min-width: 1025px) {
  .top-info__btn .btn {
    font-size: 24px;
  }
}

/* レスポンシブ：縦並び */
@media (max-width: 1025px) {
  .top-info__grid {
    grid-template-areas:
      "text"
      "image"
      "btn";
    grid-template-columns: 1fr;
  }

  .top-info__btn .btn {
    width: 100%;
    /* max-width: 300px; */
    margin: 0 auto;
  }
}

.hrm_achieve_posts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 30px;
  gap: 70px;
}

@media screen and (min-width: 1025px) {
  .hrm_achieve_posts {
    flex-direction: row;
    margin-top: 47px;
    gap: 48px;
  }
}

.hrm_achieve-post_txt-wrapper {
  height: 317px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 1025px) {
  .hrm_achieve-post_txt-wrapper {
    margin-bottom: 45px;
    width: 364px;
  }
}

.hrm_achieve-post_txt {
  font-size: 32px;
}

.hrm_achieve-post_txt-sub {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .hrm_achieve-post_sub {
    width: 442px;
  }
}

.hrm_achieve-post_point {
  font-size: 14px;
  line-height: 1;
}

.hrm_achieve-post_list {
  margin-top: 29px;
  display: flex;
  gap: 40px 32px;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 1025px) {
  .hrm_achieve-post_list {
    gap: 40px 36px;
    width: 440px;
  }
}

.hrm_achieve-post_item {
  height: 64px;
  width: 160px;
}

@media screen and (min-width: 1025px) {
  .hrm_achieve-post_item {
    width: 200px;
    height: 80px;
  }
}

/*---------- news ----------*/

.news_main {
  padding: 160px 0;
}
.category_main {
  padding: 160px 0 0;
}

.news_inner {
  padding: 70px 0;
  background: #eef1f6;
}

@media screen and (min-width: 1025px) {
  .news_inner {
    padding: 40px 0;
  }
}

.news_title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1025px) {
  .news_title {
    margin-bottom: 50px;
    font-size: 46px;
  }
}

.news_unit-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .news_unit-wrapper {
    gap: 35px 44px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 170px;
  }
}

.news_unit {
  background: var(--white-color);
  padding: 35px 20px 30px;
  border-radius: 8px;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
}

@media screen and (min-width: 1025px) {
  .news_unit {
    width: calc((100% - 44px) / 2);
  }
}

.news_meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.news_meta-date {
  font-size: 14px;
  color: var(--black-color);
}

.news_meta-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00b11b;
  border-radius: 90px;
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  padding: 5px 8px;
}

.news_meta-cat__category01 {
  background: #d19200;
}

.news_meta-cat__category02 {
  background: #0095e6;
}

.news_meta-cat__category03 {
  background: #c5001a;
}
.news_meta-cat__category04 {
  background: #00b11b;
}

.news_cat-tab_item {
  font-weight: bold;
  white-space: nowrap;
}

.news_cat-tab_item__all {
  background: var(--gray-color02);
  color: var(--white-color);
  border-radius: 100vh;
  padding: 6px 20px;
}
.news_cat-tab_item__all-sp {
  padding: 6px 20px;
}

.news_cat-tab_item__all.current {
  background: var(--primary-color);
  color: #fff; /* 必要に応じて */
}

.news_cat-tab__pc {
  display: flex;
  gap: 30px;
  margin-bottom: 29px;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: none;
}
@media screen and (min-width: 1025px) {
  .news_cat-tab__pc {
    overflow-x: auto;
  }
}

.news_cat-tab_item__gray {
  background: var(--gray-color02);
  color: var(--white-color);
  border-radius: 100vh;
  padding: 6px 20px;
}

.news_cat-tab_item__gray.current {
  color: var(--white-color);
}

.news_cat-tab_item__sp {
  background: var(--white-color);
  border-radius: 100vh;
  padding: 6px 20px;
}

.news_cat-tab_item__sp.current {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100vh;
  padding: 6px 20px;
}

.news_cat-tab_item__category01.current {
  background-color: #d19200;
}

.news_cat-tab_item__category02.current {
  background-color: #0095e6;
}
.news_cat-tab_item__category03.current {
  background-color: #c5001a;
}
.news_cat-tab_item__category04.current {
  background-color: #00b11b;
}

.news_pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.news_pagination_numbers {
  margin-left: 1px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  width: 48px;
  height: 48px;
  background: var(--white-color);
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
  border-radius: 100vh;
}

.page-numbers:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.page-numbers.current {
  background: var(--primary-color);
  color: var(--white-color);
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.news_cat-tab__sp {
  padding-top: 100px;
  position: relative;
}

.news_cat-tab__sp::after {
  content: "";
  width: 90%;
  height: 1px;
  background: var(--gray-color02);
  margin: 0 auto;
  display: block;
  margin-top: 70px;
}

.news_cat-tab_ttile {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.news_cat-tab {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 321px;
  margin: 0 auto;
  justify-content: space-between;
}

.news_note {
  padding-top: 70px;
}

@media screen and (min-width: 1025px) {
  .news_note {
    padding-top: 158px;
  }
}

.news_note-ttl_wrapper {
  margin-bottom: 35px;
}

@media screen and (min-width: 1025px) {
  .news_note-ttl_wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
  }
}

.news_note-ttl {
  width: 198px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .news_note-ttl {
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 31px;
  }
}

.news_note-subttl {
  font-size: 26px;
  text-align: center;
  margin-top: 28px;
}

@media screen and (min-width: 1025px) {
  .news_note-subttl {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 0;
  }
}

.news_note-txt_wrapper {
  padding: 0 10px;
  line-height: 2;
}
.Section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "headline"
    "image"
    "text";
}

@media screen and (min-width: 1025px) {
  .Section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.2fr 0.8fr;
    grid-template-areas:
      "headline image"
      "text image";
    gap: 20px 80px;
  }
}

.Section-Headline {
  grid-area: headline;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .Section-Headline {
    margin-top: 20px;
  }
}

.Section-Image {
  grid-area: image;
  margin-bottom: 30px;
}

.Section-Text {
  grid-area: text;
}

@media screen and (min-width: 1025px) {
  .Section-Text {
    max-width: 483px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news_btn-wrapper {
  margin: 50px auto 0;
  width: 297px;
  height: 60px;
}
@media screen and (min-width: 1025px) {
  .news_btn-wrapper {
    margin: 52px 0 0;
  }
}

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

.single_main {
  padding: 160px 0 200px;
}
@media screen and (min-width: 1025px) {
  .single_main {
    padding: 247px 0 200px;
  }
}

.news_meta__single {
  justify-content: start;
  gap: 30px;
}

.single_ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .single_ttl {
    font-size: 40px;
  }
}

.single_img-wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}

@media screen and (min-width: 500px) {
  .single_img-wrapper {
    height: 300px;
  }
}

@media screen and (min-width: 1025px) {
  .single_img-wrapper {
    height: 400px;
  }
}

.single_img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single_img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.single_index-topic {
  font-weight: bold;
  font-size: 30px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .single_index-topic {
    margin-bottom: 24px;
  }
}

.single_index-topic::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 74px;
  height: 1px;
  background: var(--gray-color02);
}
.single_index-topic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 74px;
  height: 1px;
  background: var(--gray-color02);
}

.single_topics {
  border-bottom: 1px solid var(--gray-color04);
  margin-bottom: 40px;
  padding-bottom: 24px;
}

.single_topic {
  margin-bottom: 30px;
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
  font-size: 20px;
}

.single_topic:before {
  content: "✔︎";
  color: var(--white-color);
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single_content h2 {
  font-size: 24px;
  font-weight: bold;
  background: var(--gray-color05);
  padding: 20px 20px 20px 30px;
  position: relative;
  line-height: 1.7;
  margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  .single_content h2 {
    font-size: 26px;
  }
}

.single_content h2::before {
  content: "";
  width: 15px;
  height: 100%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.single_content p {
  margin-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .single_content p {
    margin-bottom: 32px;
  }
}

.wp-block-quote p {
  margin-bottom: 0;
}

.single_content h3 {
  font-size: 22px;
  font-weight: bold;
  /* border-bottom: 4px solid var(--gray-color04); */
  padding-bottom: 10px;
  margin-bottom: 32px;
}

.single_content h2,
.single_content h3 {
  scroll-margin-top: 32px;
}

.wp-block-separator {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* .single_index-ttl03 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  margin-bottom: 50px;
}

.single_index-ttl03::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 10px;
} */

.single_content blockquote {
  background: var(--gray-color05);
  padding: 30px 15px;
  position: relative;
  margin-bottom: 32px;
}
.single_content blockquote::before {
  content: "“";
  position: absolute;
  top: -55px;
  left: 0;
  font-size: 70px;
}
.single_content blockquote::after {
  content: "”";
  position: absolute;
  bottom: -85px;
  right: 0;
  font-size: 70px;
}

.single_navigation-container {
  max-width: 800px;
  margin: 64px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.single_navigation-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.single_navigation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.single_navigation-button:active {
  transform: translateY(0);
}

.single_navigation-arrow {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  background: var(--white-color);
  border-radius: 100vh;
  width: 30px;
  height: 30px;
  position: relative;
}
.single_navigation-arrow::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.single_navigation-arrow__before::before {
  border-top: 1px solid var(--black-color);
  border-left: 1px solid var(--black-color);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.single_navigation-arrow__after::before {
  border-top: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  transform: translate(-50%, -50%) rotate(45deg);
}

.single_navigation-button:hover .single_navigation-arrow {
  color: #007bff;
}

.prev-button .single_navigation-arrow {
  order: -1;
}

.next-button .single_navigation-arrow {
  order: 1;
}

/* 左矢印の動きを調整 */
.prev-button:hover .single_navigation-arrow {
  transform: translateX(-3px);
}

/* 右矢印の動きを調整 */
.next-button:hover .single_navigation-arrow {
  transform: translateX(3px);
}

.single_navigation-text {
  color: #037a33;
}

.single_btn-wrapper {
  width: 227px;
  height: 60px;
  margin: 50px auto 0;
}

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

.recruit_recruit {
  padding: 180px 0 48px;
}

.recurit_ttl-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1025px) {
  .recurit_ttl-wrapper {
    flex-direction: row;
    gap: 80px;
    align-items: baseline;
  }
}

.recruit_ttl {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .recruit_ttl {
    font-size: 36px;
    margin-bottom: 84px;
  }
}

.recruit_txt {
  margin-bottom: 50px;
}

.recruit_img-wrapper {
  position: relative;
}

.recruit_img {
  height: 200px;
  object-fit: cover;
  object-position: 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .recruit_img {
    height: 400px;
  }
}

.recruit-portrait_section {
  height: 300vh;
  position: relative;
}

.recruit-portrait_container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}

.recruit-portrait_content {
  width: 100%;
  max-width: 1400px;
  height: 670px;
  position: relative;
}

/* Images Container */
.recruit-portrait_images-container {
  position: absolute;
  bottom: 0;
  left: -80px;
  right: 0;
  height: 500px;
  display: flex;
  gap: 30px;
}

.recruit-portrait_main-image-container {
  flex: 0 1 42%;
  height: 100%;
  position: relative;
}

.recruit-portrait_main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-portrait_side-images-container {
  flex: 1;
  height: 92%;
  position: relative;
}

/* Text Overlay */
.recruit-portrait_text-overlay {
  z-index: 5;
}

.recruit-portrait_slide-counter {
  color: #c5c5c5;
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 1;
}

.recruit-portrait_slide-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.recruit-portrait_slide-description {
  font-size: 14px;
}

/* Side Images */
.recruit-portrait_side-images {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  gap: 15px;
}

.recruit-portrait_side-image {
  flex: 1;
  height: 100%;
  object-fit: cover;
  height: 240px;
  width: 290px;
}

/* Smooth transitions */
.recruit-portrait_main-image,
.recruit-portrait_side-image,
.recruit-portrait_text-overlay {
  transition: opacity 0.4s ease;
}

/* 
.content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  margin-top: 56px;
}


.image-section {
  flex: 1;
  display: flex;
}

.main-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.thumbnail-container {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  position: absolute;
  bottom: 23px;
  right: 0;
}

.thumbnail {
  width: 208px;
  height: 170px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.thumbnail:hover {
  opacity: 1;
  transform: scale(1.02);
}

.thumbnail.active {
  opacity: 1;
  border: 3px solid #007bff;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.text-section {
  flex: 1;
  padding-left: 40px;
}

.counter {
  font-size: 24px;
  color: var(--gray-color04);
  font-weight: bold;
  margin-bottom: 30px;
}




.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.recruit_portrait {
  padding: 150px 0 100px;
}

@media screen and (min-width: 1025px) {
  .recruit_portrait {
    padding: 70px 0 120px;
  }
}

.recruit_portrait-unit:not(:last-child) {
  margin-bottom: 110px;
}

.recruit_portrait_img-wrapper {
  margin-bottom: 50px;
}

.recruit_portrait-num {
  font-size: 24px;
  font-weight: bold;
  color: #c5c5c5;
}

.recruit_portrait_ttl {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.recruit_portrait_txt {
  font-size: 14px;
}

.recruit_cat-tab__sp {
  position: relative;
}

.recruit_cat-tab {
  color: var(--white-color);
  width: 231px;
}
@media screen and (min-width: 1025px) {
  .recruit_cat-tab {
    flex-wrap: nowrap;
    background: #fff;
    padding: 100px 0;
    position: absolute;
    width: 980px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    border-radius: 8px;
    z-index: var(--z-index-default);
  }
}

.recruit_cat-tab_item__this {
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 100vh;
  padding: 6px 20px;
}

.recruit_cat-tab_item {
  font-weight: bold;
  border-radius: 100vh;
  padding: 6px 20px;
  color: var(--white-color);
  background: #002c54;
}

@media screen and (min-width: 1025px) {
  .recruit_cat-tab_item {
    color: var(--primary-color);
    background: none;
  }
}

/* タブボタン */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tab-button {
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-button.active {
  background: white;
  color: #1e3a8a;
  border-color: white;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .tab-button.active {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
  }
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recruit_role_contents {
  padding: 90px 10px 150px;
}
@media screen and (min-width: 1025px) {
  .recruit_role_contents {
    padding: 200px 10px 100px;
    box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
    margin-bottom: 150px;
  }
}

.recruit_role-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.recruit_role-description {
  border-bottom: 1px solid var(--gray-color04);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.recruit_role-section {
  margin-bottom: 40px;
}

.recruit_role-requirements-list li {
  position: relative;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.recruit_role-requirements-list li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 6px;
}

.recruit_role-section-title {
  font-size: 18px;
  margin-bottom: 16px;
}

/* 応募詳細情報のスタイル */
.recruit_role-application-details {
  padding-top: 30px;
}

.recruit_role-detail-section {
  margin-bottom: 90px;
}
@media screen and (min-width: 1025px) {
  .recruit_role-detail-section {
    display: flex;
    margin-bottom: 40px;
  }
}

.recruit_role-detail-section:nth-child(1),
.recruit_role-detail-section:nth-child(2) {
  align-items: center;
}

.recruit_role-detail-title {
  background: var(--gray-color);
  font-weight: bold;
  padding: 9px 0;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .recruit_role-detail-title {
    width: 170px;
    height: 50px;
  }
}

.recruit_role-detail-content {
  padding: 0 20px;
  background: var(--white-color);
}

@media screen and (min-width: 1025px) {
  .recruit_role-detail-content {
    padding: 0 40px;
  }
}

.recruit_role-detail-content p {
  line-height: 1.75;
}

.recruit_role-detail-content p:last-child {
  margin-bottom: 0;
}

.recruit_role-access-info {
  color: #6b7280;
  font-size: 0.9rem;
}

.recruit_role-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit_role-benefits-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.75;
}

.recruit_role-benefits-list li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 6px;
}

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

.recruit_btn-wrapper {
  margin: 44px auto 0;
  height: 79px;
  max-width: 463px;
  width: 100%;
}

.m_btn__recruit {
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  background: var(--primary-color);
  margin-top: 70px;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
.m_btn__recruit:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.top_service {
  background: var(--gray-color);
}

.top_service_body {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .top_service_desc {
    text-align: center;
  }
}

.service_contents {
  padding: 160px 0 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .service_contents {
    padding: 247px 0 120px;
  }
}

.service_contents::after {
  content: "";
  background: var(--gray-color);
  display: block;
  height: 332px;
  position: absolute;
  width: 100%;
  z-index: var(--z-index-back);
  top: 589px;
  left: 0;
}

.service-biz_main .service_contents::after {
  content: none;
}

.m_service_contents {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 24px;
}

@media screen and (min-width: 1025px) {
  .m_service_contents {
    margin-top: 64px;
    gap: 48px 0;
  }
}

.m_service_item-icon-wrapper {
  width: 56px;
  height: 56px;
}

@media screen and (min-width: 1025px) {
  .m_service_item-icon-wrapper {
    width: 96px;
    height: 96px;
  }
}

.m_service_item_name {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_service_item_name {
    font-size: 18px;
    margin-top: 24px;
  }
}

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

.top_case_btn-wrapper {
  margin-top: 80px;
}

.top_case_nav {
  width: 53px;
  height: 53px;
  background: #fff;
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -40px;
  top: auto;
}

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

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

.top_case_nav__prev:after,
.top_case_nav__next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
}

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

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

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

.top_case_dots .swiper-pagination-bullet {
  background: var(--gray-color04);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 2px solid var(--white-color);
}

.top_case_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/*---------- service ----------*/

@media screen and (min-width: 1025px) {
  .service_contents .m_service_contents {
    margin-top: 48px;
  }
}

.service_contents_desc {
  text-align: center;
  margin-top: 64px;
}

@media screen and (min-width: 1025px) {
  .service_sp {
    display: none;
  }
}

.service_ttl-sp {
  background: var(--primary-color);
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1025px) {
  .service_ttl_list {
    /* background: var(--primary-color); */
    width: 245px;
    flex-shrink: 0;
    padding-top: 120px;
    padding-left: 16px;
    position: relative;
  }

  .service_ttl_list::before {
    /* content: ""; */
    /* background: var(--primary-color); */
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -10;
  }
  .service_ttl_list::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background: var(--white-color);
    top: 0;
    left: 20px;
  }
}

.service_ttl_item {
  color: var(--white-color);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

@media screen and (min-width: 1025px) {
  .service_ttl_item {
    margin-bottom: 55px;
  }
}

.service_ttl_list-link {
  position: relative;
  padding-left: 28px;
}

.service_ttl_list-link::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--white-color);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.service-link.is-active {
  color: #e0b700;
}

.service_ttl_link__sales {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.service_ttl_link__sales .dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--white-color);
  border-radius: 50%;
  margin-top: 0.3em; /* テキストとの高さ合わせ */
  flex-shrink: 0;
}

.service_faq {
  padding: 0 0 120px;
  margin-bottom: 160px;
}
.service_faq_body {
  margin-top: 64px;
}

.service_faq_unit:not(:first-child) {
  margin-top: 48px;
}

.service_faq-question {
  padding: 16px;
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--gray-color02);
  align-items: center;
}

.service_faq-question_tag {
  font-weight: bold;
  color: var(--gray-color02);
  font-size: 30px;
}

.service_faq-question_txt {
  font-weight: bold;
  margin-left: 16px;
  width: 100%;
  text-align: left;
  font-size: 26px;
}

@media screen and (min-width: 1025px) {
  .service_faq-question_txt {
    font-size: 36px;
  }
}

.service_faq-question_mark {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  margin: auto 0 auto 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service_faq-question_mark::before {
  content: "";
  width: 9px;
  height: 1px;
  background: var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service_faq-question_mark::after {
  content: "";
  width: 1px;
  height: 9px;
  background: var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service_faq-answer {
  overflow: hidden; /* はみ出し防止（重要） */
  visibility: hidden; /* デフォルトは不可視＋当たり判定なし */
  height: 0; /* 初期状態は閉じている */
}

.js_faq.is-active .service_faq-answer {
  visibility: visible; /* 開いた状態は可視化 */
}

.service_faq-answer_inner {
  display: flex;
  width: 100%;
  padding: 16px;
}

.service_faq-answer_tag {
  color: var(--white-color);
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-color);
}

.service_faq_img-wrapper {
  margin: 30px 0 50px;
}

.service_faq_img {
  height: 350px;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 600px) {
  .service_faq_img {
    height: 450px;
    object-position: center -38px;
  }
}

.service_faq-answer_ttl {
  font-size: 24px;
  margin-bottom: 30px;
}

.service_faq-answer_txt {
  width: 100%;
}

.service_pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .service_pc {
    display: block;
  }
}

.service_section {
  position: relative;
  /* 高さはJSで section.style.height に入れる */
}

.service_inner {
  display: flex;
  position: sticky;
  top: 0;
  gap: 80px;
  justify-content: center;

  height: 100vh;
  overflow: hidden;

  background: url(../img/service_bg.png) top / cover no-repeat;
  background-attachment: fixed;
}

.service-pc_main {
  height: 100%;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-pc_main::-webkit-scrollbar {
  display: none;
}

.service_inner.is-stuck .service-pc_main {
  overflow-y: auto;
}
.service_inner.is-stuck {
  overscroll-behavior: contain;
}

.service-pc_main::before {
  content: "";
  width: 100%;
  padding: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -20;
}

.service_main-wrapper {
  background: var(--white-color);
  border-radius: 8px;
  padding: 60px;
  margin: 40px 0;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
  max-width: 820px;
}

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

.service_ttl-wrapper {
  display: flex;
  border-bottom: 1px solid var(--gray-color02);
  margin-bottom: 50px;
  align-items: center;
}

.service_main_img-wrapper {
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.service_main_img-wrapper img {
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

#apparel .service_main_img {
  object-position: center 80%;
}

/*---------- promotion ----------*/

.sales_achieve-post_txt-wrapper {
  background: none;
}

.sales_achieve-post_txt {
  color: var(--black-color);
}

li::marker {
  display: none;
}

/*---------- company.html ----------*/

.company_main {
  padding: 160px 0 200px;
}

.company_vision__bg {
  background: url(../img/about03.png) no-repeat center top / cover;
  height: 300px;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 1025px) {
  .company_vision__bg {
    height: 500px;
  }
}

.company_vision_inner {
  padding-bottom: 150px;
}

@media screen and (min-width: 1025px) {
  .company_vision_inner {
    position: relative;
    z-index: 10;
    padding-bottom: 0;
  }
  .company_vision_inner::before {
    content: "";
    background: url(../img/about01.png) center / cover;
    position: absolute;
    top: 55px;
    right: -10px;
    width: 222px;
    height: 295px;
  }
  .company_vision_inner::after {
    content: "";
    background: url(../img/about02.png) center / cover;
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 400px;
  }
}

@media screen and (min-width: 1300px) {
  .company_vision_inner::before {
    top: 55px;
    right: -100px;
    width: 300px;
    height: 400px;
  }
}

.company_vision_box {
  padding: 60px 20px;
  max-width: 960px;
  margin: 230px auto 0;
  background: var(--white-color);
  text-align: center;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .company_vision_box {
    padding: 120px 0;
    margin: 355px auto 250px;
  }
}

.company_vision_copy {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 80px;
  color: var(--primary-color);
}

@media screen and (min-width: 1025px) {
  .company_vision_copy {
    font-size: 46px;
  }
}

.company_vision_box__point {
  color: var(--point-color);
}

.company_vision_sub-copy-wrapper {
  text-align: left;
}

@media screen and (min-width: 780px) {
  .company_vision_sub-copy-wrapper {
    text-align: center;
  }
}

.company_vision_sub-copy {
  margin-bottom: 25px;
}

.company_greeting_body {
  position: relative;
}

@media screen and (min-width: 768px) {
  .company_greeting_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.company_greeting_txts {
  background: var(--primary-color);
  padding: 80px 10px 50px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .company_greeting_txts {
    border-radius: 0 10px 10px 0;
    margin-top: 0;
    width: 72%;
  }
}

.company_greeting_heading,
.company_greeting_desc,
.company_greeting_name {
  max-width: 593px;
  margin-left: auto;
  margin-right: auto;
}

.company_greeting_heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .company_greeting_heading {
    font-size: 46px;
    margin-bottom: 44px;
  }
}

.company_greeting_desc {
  margin-top: 48px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .company_greeting_desc {
    width: 65%;
    margin-left: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .company_greeting_desc {
    width: 75%;
    max-width: 593px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company_greeting_daihyo {
  font-size: 20px;
}

.company_greeting_img-wrapper {
  background: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .company_greeting_img-wrapper {
    background: none;
    height: 585px;
    position: absolute;
    bottom: -117px;
    right: 0;
  }
}

@media screen and (min-width: 1025px) {
  .company_greeting_img-wrapper {
    bottom: -117px;
  }
}
@media screen and (min-width: 1400px) {
  .company_greeting_img-wrapper {
    bottom: -140px;
    height: 700px;
  }
}

.company_greeting_img {
  height: 80%;
}

@media screen and (min-width: 900px) {
  .company_greeting_img {
    height: 80%;
  }
}

.company_logo {
  position: relative;
}

.company_logo_img-wrapper {
  margin: 30px 0 40px;
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.company_logo_img {
  height: 272px;
  object-fit: contain;
}

.company_logo_body {
  margin-top: 160px;
  padding-top: 188px;
  overflow: hidden;
  background: var(--gray-color04);
}

.company_logo_list-wrapper {
  position: relative;
  max-width: var(--content-width-lg);
  background: var(--primary-color);
  padding: 60px 0;
}

@media screen and (min-width: 1025px) {
  .company_logo_list-wrapper {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    height: auto;
  }
}

.company_logo_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: auto;
}

@media screen and (min-width: 1025px) {
  .company_logo_list {
    flex-direction: row;
  }
}

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

@media screen and (min-width: 1025px) {
  .company_logo_item {
    padding: 0 12px;
  }
}

.company_logo_item-txt {
  padding: 40px 20px;
}

.company_logo_item-heading {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.company_logo_item-heading::before {
  font-family: "Inter", sans-serif;
  display: block;
  color: var(--gray-color04);
  font-size: 40px;
  font-weight: bold;
}

.company_logo_item-heading__first::before {
  content: "01";
}
.company_logo_item-heading__second::before {
  content: "02";
}
.company_logo_item-heading__third::before {
  content: "03";
}

/* メインコンテンツ */
.company_logo-section {
  position: relative;
}

.company_main-content {
  display: flex;
  gap: 29px;
  align-items: flex-end;
  margin-bottom: 210px;
}

.company_main-content::after {
  content: "";
  background: var(--gray-color04);
  height: 336px;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 25px;
}

/* 左側：イメージとナビゲーション */
.left-section {
  flex: 1;
  position: relative;
}

/* ページナビゲーション */
.page-navigation {
  display: flex;
  margin-top: 20px;
}

.page-button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gray-color04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 41px;
  font-weight: bold;
  color: var(--white-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-family: "Inter", sans-serif;
}

.page-button:first-child {
  left: 63px;
  top: 37px;
}
.page-button:nth-child(2n) {
  top: -42px;
  left: 36%;
}
.page-button:last-child {
  left: 60%;
  top: 24px;
}

.page-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-button.active {
  background: var(--white-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

/* 右側：コンテンツエリア */
.company_right-section {
  padding-bottom: 100px;
}

.right-section {
  padding-left: 40px;
  background: var(--white-color);
  padding: 76px 50px 52px;
  border-radius: 8px;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
  margin-top: 68px;
  height: 580px;
}

.content-number {
  font-size: 90px;
  font-weight: bold;
  margin-bottom: 20px;
  position: absolute;
  top: -180px;
  left: -100px;
  font-family: "Inter", sans-serif;
}

.content-title {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

.content-description {
  width: 380px;
  line-height: 1.8;
}

.company_content-title {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

.company_content-description {
  line-height: 1.8;
  width: 380px;
  letter-spacing: 0.1em;
}

.logo-illustration {
  margin-top: 100px;
}

@media screen and (min-width: 1090px) {
  .logo-illustration {
    width: 570px;
  }
}

/* フェードアニメーション */
.fade-in {
  animation: fadeInUp 0.5s ease-out;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company_logo-section .m_page-section-heading__logo {
  text-align: left;
}

.about_info_body {
  margin-top: 64px;
  padding: 24px 16px;
}

@media screen and (min-width: 500px) {
  .about_info_body {
    padding-right: 80px;
    padding-left: 80px;
    margin-top: 90px;
  }
}
.about_info-table_row {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .about_info-table_row {
    flex-direction: row;
  }
}

.about_info-table_heading {
  flex-shrink: 0;
  align-self: stretch;
}

.about_info-table_row:not(:first-child) .about_info-table_heading {
  padding-top: 40px;
}
@media screen and (min-width: 1025px) {
  .about_info-table_row:not(:first-child) .about_info-table_heading {
    padding-top: 30px;
    padding-bottom: 16px;
  }

  .about_info-table_row:nth-child(5) .about_info-table_heading {
    padding-bottom: 30px;
  }
}

.about_info-table_row:first-child .about_info-table_data {
  padding-top: 10px;
}
@media screen and (min-width: 1025px) {
  .about_info-table_row:first-child .about_info-table_data {
    padding-top: 0;
  }
}

.about_info-table_row:not(:first-child) .about_info-table_data {
  padding-top: 10px;
}
@media screen and (min-width: 1080px) {
  .about_info-table_row:not(:first-child) .about_info-table_data {
    padding-top: 30px;
  }
}

.about_info-table_heading {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 8px;
  height: 32px;
  vertical-align: middle;
  box-sizing: content-box;
}
@media screen and (min-width: 1025px) {
  .about_info-table_heading {
    width: 120px;
    padding-bottom: 16px;
  }

  .about_info-table_heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20%;
    height: 1px;
    background: var(--primary-color);
  }
}

.about_info-table_data {
  word-break: break-all;
  box-sizing: content-box;
  vertical-align: middle;
  padding-bottom: 16px;
}

@media screen and (min-width: 1025px) {
  .about_info-table_data {
    padding-left: 24px;
  }
}

.about_info-table_heading__border::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gray-color02);
}
@media screen and (min-width: 1025px) {
  .about_info-table_heading__border::before {
    width: 77%;
  }
}

.about_info_map-wrapper {
  margin-top: 100px;
}
@media screen and (min-width: 1025px) {
  .about_info_map-wrapper {
    text-align: center;
  }
}

.about_info_map-wrapper iframe {
  width: 100%;
  height: 500px;
}
@media screen and (min-width: 1025px) {
  .about_info_map-wrapper iframe {
    width: 800px;
  }
}

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

.m_main {
  padding-top: 110px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .m_main {
    padding-top: 247px;
    padding-bottom: 200px;
  }
}

.m_main::before {
  content: "";
  width: 100%;
  height: 277px;
  display: block;
}

@media screen and (min-width: 1025px) {
  .m_main::before {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 730px;
    height: 540px;
    z-index: -1;
  }
}

.m_main__contact::before {
  background: url(../img/contact.jpg) no-repeat center top / cover;
}
.m_main__entry::before {
  background: url(../img/entry.png) no-repeat center top / cover;
}

.contact_form {
  background: #fff;
  padding: 60px 10px 150px;
  box-shadow: 4px 4px 14px rgb(0, 0, 0, 0.1);
}

@media screen and (min-width: 1025px) {
  .contact_form {
    background: #fff;
    padding: 140px 160px 150px;
  }
}

.contact_form_heading {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

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

.contact_form_title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
  .contact_form_title {
    font-size: 46px;
    margin-bottom: 70px;
  }
}

.contact_form_required {
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
  width: 54px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--contact-color);
  border-radius: 100vh;
  margin-right: 20px;
}

.contact_form_required__not {
  background: var(--gray-color02);
}

.contact_form_detail {
  margin-top: 20px;
}

.contact_form_detail__other {
  margin-top: 20px;
  position: relative;
}
.contact_form_detail__pull::before {
  position: absolute;
  top: 28px;
  left: 290px;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--black-color);
  border-left: 1px solid var(--black-color);
  transform: rotate(-135deg);
  pointer-events: none;
  z-index: var(--z-index-default);
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 62px;
  padding: 15px 0 15px 20px;
  background: var(--gray-color05);
  border-radius: 10px;
}

input[type="radio"] {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: -4px;
  appearance: none;
  background: var(--gray-color04);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}

span.wpcf7-list-item-label {
  margin-left: 10px;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: none;
}

.contact_form_example-wrapper {
  text-align: right;
  height: 28px;
  margin-top: 8px;
}

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

.contact_form_check-list {
  display: flex;
  gap: 80px;
}
.contact_form_check-item {
  margin-bottom: 20px;
}

.contact_form_request-item-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  cursor: pointer;
}

.wpcf7-list-item:not(:first-child) {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1025px) {
  .wpcf7-list-item:not(:first-child) {
    margin-top: 0;
    margin-left: 80px;
    display: inline;
  }
}

.contact_form_request-txt {
  margin-left: 16px;
}

.contact_form_pull {
  width: 320px;
  height: 62px;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 190px;
  padding: 15px 20px;
  border-radius: 10px;
  background: var(--gray-color05);
}

.contact_form_textarea__date {
  height: 126px;
}

.contact_form_privacy {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .contact_form_privacy {
    margin-top: 30px;
  }
}

.contact_form_check {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-color04);
  margin-right: 20px;
  vertical-align: bottom;
  position: relative;
}
.contact_form_check:checked::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact_form_privacypolicy {
  color: #0a75e2;
  text-decoration: underline;
  font-weight: bold;
}

.contact_form_btn-wrapper {
  margin-top: 50px;
  text-align: center;
}

.contact_form_privacy .wpcf7-list-item-label {
  pointer-events: none;
  cursor: default;
}

.contact_form_privacy input[type="checkbox"] {
  pointer-events: auto;
  cursor: pointer;
}

.contact_form_privacy .contact_form_privacypolicy {
  pointer-events: auto;
  cursor: pointer;
}

.wpcf7-list-item {
  margin: 0;
}
/* ---------- privacy ---------- */

.privacy_main {
  background: #f5f5f5;
}

.privacy_inner {
  background: var(--white-color);
  padding: 170px 10px 150px;
}

@media screen and (min-width: 1025px) {
  .privacy_inner {
    padding: 247px 160px 150px;
    max-width: var(--content-width);
  }
}

.privacy_title {
  font-size: 26px;
  margin-bottom: 70px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .privacy_title {
    font-size: 36px;
    margin-bottom: 94px;
  }
}

.contact_form_txt {
  margin-bottom: 70px;
}

.privacy_wrapper:not(:nth-of-type(1)) {
  margin-top: 64px;
}

.privacy_wrapper_block {
  padding-left: 20px;
}

.privacy_wrapper_block02 {
  padding-left: 40px;
  margin-bottom: 20px;
}

.privacy_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .privacy_ttl {
    font-size: 26px;
  }
}

.m_btn__privacy {
  border: 1px solid var(--black-color);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

.m_btn__privacy:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.privacy_btn-wrapper {
  margin: 50px auto 0;
  width: 297px;
  height: 60px;
}

/* ---------- 404 ---------- */

.not_main {
  background: #f5f5f5;
}

.not_inner {
  background: var(--white-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (min-width: 1025px) {
  .not_inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.not_title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .not_title {
    font-size: 64px;
  }
}

.not_wrapper {
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (min-width: 1025px) {
  .not_wrapper {
    margin-bottom: 80px;
  }
}

.not_sub {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .not_sub {
    margin-bottom: 30px;
    font-size: 24px;
  }
}

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

.js_hamburger-bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.js_copy,
.js_sub-copy {
  overflow: hidden;
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}

@media screen and (min-width: 1025px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.js_faq_mark::after {
  transition: opacity 0.24s;
}

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

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

.js_h-slide_trigger {
  overflow: hidden;
}

/* ---------- utility ---------- */

.u_sm-dn {
  display: none;
}

@media screen and (min-width: 1025px) {
  .u_sm-dn {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .u_lg-dn {
    display: none;
  }
}

.u_font {
  font-size: 73px;
  font-weight: bold;
  color: #ffdb25;
  font-family: "Inter", sans-serif;
}

.u_fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(40px);
}
.u_fade-in.is_active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.m_cta_title.u_fade-in {
  transform: translate(-50%, 40px);
}

.m_cta_title.u_fade-in.is_active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* フェードインアニメーション用 */
.fade .animation-bg {
  background: var(--primary-color);
  content: "";
  position: fixed;
  z-index: var(--z-index-opening);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation-name: PageAnime-fade;
  animation-duration: 0.2s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
