@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --text-primary: #2b2b2b;
  --text-secondary: #555555;
  --accent-color: #333333;
  --text-muted: #999999;
  --white-color: #ffffff;
  --gray-color: #fafafa;
  --gray-color02: #f5f5f5;
  --primary-color: #c9171e;
  --primary-color02: #d65156;
  --primary-color03: #e48b8e;
  --primary-color04: #efb9bb;
  --primary-color05: #f7dcdd;
  --gradient-color: linear-gradient(#c9171e, #d65156);
}

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

: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;
}

html {
  scroll-behavior: smooth;
   scroll-padding-top: 80px;
}

body {
  color: var(--text-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 500;
}

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

.u_sm-dn {
  display: none;
}

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

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

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

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

.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);
}

.l_contents,
.l_contents-sm {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .l_contents {
    padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .l_contents-sm {
    padding: 64px 0;
  }
}

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

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  color: var(--white-color);
  width: 100%;
  height: 80px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white-color);
  color: var(--text-primary);
  border-radius: 0 0 8px 8px;
}
@media screen and (min-width: 1080px) {
  .l_header {
    font-size: 16px;
    left: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 104px;
    position: fixed;
    background: transparent;
    height: 104px;
    color: var(--white-color);
    padding: 0 40px;
    border-radius: 0 0 0 0;
  }
}

.l_header.is-scroll {
  background: var(--white-color);
  color: var(--accent-color);
}

.l_header-logo {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.l_header-logo_link {
  height: 100%;
  display: flex;
  transition: opacity 0.5s ease;
}

.l_header-logo_link:hover {
  opacity: 0.7;
}

.l_header-logo_img {
  width: 160px;
}

@media screen and (min-width: 768px) {
  .l_header-logo_img {
    width: 200px;
  }
}

.l_header-nav {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: var(--white-color);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    opacity: 1;
    position: static;
    background: transparent;
    /* color: transparent; */
  }
}

.l_header-nav_list {
  display: flex;
  gap: 48px;
  flex-direction: column;
  height: 100%;
  align-items: start;
  justify-content: start;
  padding-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 0;
  }
}
.l_header-nav_heading {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 24px 0 24px 8px;
}

/* 開いたカラムの場合は border-bottom を消す */
.l_header-nav_column.is-active .l_header-nav_heading {
  border-bottom: none;
}

.l_header-nav_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link {
    color: var(--text-primary);
  }
}

.l_header-nav_link__hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.l_header-nav_link__contact {
  color: var(--white-color);
  position: relative;
}

.l_header-nav_link__contact {
  /* background: transparent; */
  color: var(--white-color);
  border-radius: 4px;
  padding: 14px 12px;
  line-height: 0;
  position: relative;
  z-index: var(--z-index-default);
  background: var(--gradient-color);
  position: relative;
  /* width: 240px; */
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.l_header-nav_link__contact:hover {
  opacity: 0.7;
}

.l_header-nav_link__contact::before {
  content: "";
  background: url(../img/cta-02.svg) no-repeat center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.l_header-nav_link__contact::after {
  content: "";
  background: url(../img/cta-01.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.l_header-nav_item {
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-weight: 500;
  }
}

.l_header-nav_item:hover {
  opacity: 0.7;
}

.l_header-nav_item__sp {
  padding-left: 8px;
}

.l_header-nav_item__hover {
  display: inline-block;
  text-align: center;
  position: relative;
  transition: color 0.4s ease;
  border-radius: 100vh;
  overflow: hidden;
  background: transparent;
  margin-top: 16px;
  width: calc(100% - 32px);
  bottom: 40px;
  left: 16px;
  position: absolute;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_item__hover {
    margin-top: 0;
    margin-left: 16px;
    width: 240px;
    position: static;
  }
}

.l_header-nav_link__recruit,
.l_header-nav_link__contact {
  position: relative;
  z-index: var(--z-index-default);
}

.l_header_plus-mark {
  position: relative;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 100vh;
  transition: all 0.3s ease;
}

.l_header_plus-mark::before,
.l_header_plus-mark::after {
  content: "";
  background: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.l_header_plus-mark::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.l_header_plus-mark.is-open::after {
  opacity: 0; /* ← 縦線だけ非表示でマイナスになる */
}
.l_header-contact-nav_link__wantedly {
  margin-left: auto;
}

.l_footer {
  padding: 40px 0 16px;
  background: var(--text-primary);
  color: var(--white-color);
  position: relative;
}
.l_footer_logo {
  width: 200px;
  transition: opacity 0.5s ease;
}

.l_footer_logo:hover {
  opacity: 0.7;
}

.l_footer_top-link {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--white-color);
  border-radius: 0 0 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-default);
  height: 64px;
  width: 64px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .l_footer_top-link {
    right: 40px;
    padding: 0 16px;
    height: 55px;
    justify-content: space-between;
    width: 241px;
  }
}

.pagetop__arrow__pc {
  color: var(--primary-color);
  font-weight: bold;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

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

.l_footer_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l_footer-logo {
  width: 240px;
}

@media screen and (min-width: 1080px) {
  .l_footer_contents {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
  }
}

.l_footer-nav {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .l_footer-nav {
    margin-top: 0;
    display: flex;
    gap: 40px;
  }
}

.l_footer-nav_heading {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .l_footer-nav_heading {
    font-size: 16px;
  }
}

.l_footer-nav_list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
.l_footer-nav_list {
  margin: 0 0 0 auto;
}
}

.l_footer-nav_item {
  font-size: 16px;
  padding: 12px 0;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_item {
    width: 148px;
  }
}

.l_footer-nav_item:hover {
  opacity: 0.7;
}

.l_footer-nav_link {
  line-height: 1;
  display: flex;
  align-items: center;
}

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

@media screen and (min-width: 1080px) {
  .l_footer-nav_contact {
    display: flex;
    justify-content: end;
    flex-direction: row;

    margin-top: 64px;
  }
}

.l_footer-nav_btn-wrapper {
  background: var(--gradient-color);
  border-radius: 100vh;
  color: var(--white-color);
  width: 100%;
  height: 64px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l_footer-nav_btn-wrapper {
    width: 240px;
    margin-top: 0;
  }
}

.l_footer-nav_btn-wrapper:hover {
  opacity: 0.7;
}

.top_btn__cta::before {
  content: "";
  background: url(../img/cta-02.svg) no-repeat center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.l_footer-contact-nav_item {
  position: relative;
}

.l_footer-contact-nav_link::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--primary-color);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: var(--z-index-back);
}

.l_footer-contact-nav_link:hover {
  color: var(--white-color);
  border-color: var(--white-color);
}

.l_footer-contact-nav_link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.l_footer-contact-nav_link::after {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.l_footer-contact-nav_link__wantedly {
  width: 56px;
  height: 56px;
  display: block;
}


.l_footer_company-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1080px) {
  .l_footer_company-wrapper {
    flex-direction: row-reverse;
    align-items: center;
    gap: 24px;
  }
}

.l_footer_check-wrapper {
  display: flex;
  flex-direction: column;
    gap: 8px;
padding-top: 40px;
}

@media screen and (min-width: 768px) {
.l_footer_check-wrapper {

padding-top: 0;
}
}


.l_footer-copyright {
  text-align: center;
  margin-top: 64px;
}
@media screen and (min-width: 1080px) {
  .l_footer-copyright {
    margin-top: 0;
  }
}

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

.l_footer_insta-wrapper {
  width: 44px;
}

.l_footer_privacy {
  margin-top: 8px;
}

.l_footer_check-link {
  display: flex;
  align-items: center;
  gap: 8px;
      transition: opacity 0.5s ease;

}
.l_footer_check-link:hover{
opacity: 0.7;
}

.l_footer_check-link::after {
  content: "";
  background: url(../img/footer-icon.svg) center / contain;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.l_footer_inner {
  display: grid;
  padding: 0 0 40px;
}

/* SP レイアウト */
@media (max-width: 768px) {
  .l_footer_inner {
    grid-template-columns: 1fr;
  }
  
  /* ラッパーを透明化してGrid子要素として直接配置 */
  .l_footer_left-column {
    display: contents; /* 子要素がGridアイテムになる */
  }
  
  .l_footer_info { order: 1; }
  .l_footer-nav { order: 2; }
  .l_footer-nav_btn-wrapper { order: 3; }
  .l_footer_check-wrapper { order: 4; }
}

/* PC レイアウト */
@media (min-width: 769px) {
  .l_footer_inner {
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: start;
  }
  
  /* ラッパーを左カラムとして機能させる */
  .l_footer_left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: space-between;
  }
  
  .l_footer-nav { 
    grid-column: 2;
  }
  
  .l_footer-nav_btn-wrapper { 
    grid-column: 3;
  }
}

/* コピーライト（中央配置） */
.l_footer_copyright-wrapper {
  text-align: center;
}

/*---------- module ----------*/
.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: #111;
  display: flex;
}

.m_opening_txt {
  text-align: center;
  margin: auto;
}

.m_opening_heading {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
}

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

.m_opening_desc {
  color: var(--white-color);
  font-weight: bold;
  font-size: 16px;
  margin-top: 16px;
}

.m_hamburger {
  display: block;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  background: var(--primary-color02);
  border-radius: 100vh;
}

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

.m_hamburger-bar {
  height: 3px;
  width: 24px;
  position: absolute;
  left: 50%;
  background: var(--white-color);
  border-radius: 4px;
}

.m_hamburger-bar:nth-child(1) {
  top: 15px;
  transform: translateX(-50%);
}

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

.m_hamburger-bar:nth-child(3) {
  top: 30px;
  transform: translateX(-50%);
}

.m_cta {
  color: var(--white-color);
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .m_cta {
    padding: 80px 0;
  }
}
.m_cta-wrapper {
  padding: 40px 0;
  background: url("../img/cta_bg-sp.jpg") center/cover;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .m_cta-wrapper {
    padding: 64px 0;
    background: url("../img/cta_bg.png") center/cover;
  }
}

.m_cta_copy {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
}

.m_cta_txt {
  color: var(--white-color);
  font-weight: bold;
  margin-top: 24px;
  font-size: 18px;
}

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

.top_kv-wrapper {
  position: relative;
}

.top_kv {
  height: calc(100dvh + 100px);
  background: url("../img/top_kv.png") no-repeat center / cover;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    height: 700px;
    padding-top: 0;
  }
}

.top_kv_inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 43px;
  padding-bottom: 64px;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .top_kv_inner {
    flex-direction: row;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.top_kv_contents {
  max-width: 500px;
}

.top_kv_img-wrapper {
  max-width: 480px;
}

.top_kv_copy {
  line-height: 1.5;
  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: 40px;
  }
}

.top_kv_emph-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top_kv_emph-wrapper {
    flex-direction: row;
    margin-top: 32px;
  }
}

.top_kv_emph {
  background: var(--gradient-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 16px 24px;
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_kv_emph {
    width: 232px;
    height: 52px;
    align-items: normal;
  }
}

.top_kv_emph__bg {
  font-size: 16px;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

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

.top_kv_sub-copy {
  margin-top: 16px;
}

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

.top_kv_info {
  background: var(--gradient-color);
  padding: 40px 16px;
  color: var(--white-color);
  position: absolute;
  bottom: -340px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  max-width: 880px;
  width: 100%;
  border-radius: 8px;
  width: calc(100% - 32px);
  z-index: var(--z-index-default);
}

@media screen and (min-width: 768px) {
  .top_kv_info {
    flex-direction: row;
    bottom: -120px;
  }
}

.top_kv_info::before {
  content: "";
  height: 1px;
  width: 80%;
  background: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top_kv_info::before {
    height: 125px;
    width: 1px;
  }
}

.top_kv_info-contents-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_kv_info-contents-wrapper:first-child {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .top_kv_info-contents-wrapper:first-child {
    margin-bottom: 0;
  }
}
.top_kv_info-contents-wrapper:last-child {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top_kv_info-contents-wrapper:last-child {
    margin-top: 0;
  }
}

.top_kv_info-contents {
  font-size: 16px;
}

.top_kv_contact {
  margin-top: 24px;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.5s ease;
}
.top_kv_contact:hover {
  opacity: 0.7;
}

.top_kv_contact::before {
  content: "";
  background: url(../img/phone-icon.svg);
  width: 40px;
  height: 40px;
  display: inline-block;
}
.top_kv_contact::after {
  content: "";
  background: url(../img/footer-icon.svg) no-repeat center / contain;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.privacy_cta_link {
  line-height: 1;
}

.top_kv_sub {
  font-size: 14px;
  margin-top: 8px;
}

.top_btn-wrapper {
  background: var(--white-color);
  border-radius: 100vh;
  color: var(--primary-color);
  width: 300px;
  height: 64px;
  margin-top: 24px;
  transition: opacity 0.5s ease;
}

.top_btn-wrapper:hover {
  opacity: 0.7;
}

.top_btn {
  font-size: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top_btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

.top_btn__red::after {
  background: url(../img/cta-03.svg);
}

.top_btn__white::after {
  background: url(../img/cta-01.svg);
}
@media screen and (min-width: 768px) {
  .top_btn-wrapper__red .top_btn__white::after {
    right: 0;
  }
}
@media screen and (min-width: 900px) {
  .top_btn-wrapper__red .top_btn__white::after {
    right: 24px;
  }
}

.top_problem {
  background: var(--gray-color02);
  padding-top: 348px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_problem {
    padding-top: 120px;
  }
}
.top_problem .l_contents {
  padding-top: 64px;
}

.top_problem::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  border-width: 80px 180px 0 180px;
  border-style: solid;
  border-color: var(--gray-color02) transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .top_problem::before {
    border-width: 80px 200px 0 200px;
  }
}

.top_problem_container {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.top_problem_point {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 100vh;
  font-weight: bold;
  display: block;
  position: relative;
  display: inline-block;
  margin: 0 auto 8px;
  padding: 8px 24px;
}

@media screen and (min-width: 768px) {
  .top_problem_point {
    font-size: 16px;
    margin: 0 auto 16px;
  }
}
.top_problem_point::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 16px 0 16px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.top_problem-title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(transparent 50%, var(--primary-color05) 50%);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top_problem-title {
    font-size: 32px;
  }
}
.top_problem-contents-wrapper {
  max-width: 537px;
  margin: 40px auto 0;
}

.top_problem-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.64px;
}

.top_problem-content::before {
  content: "";
  background: url(../img/worry-icon.webp) no-repeat center / contain;
  width: 40px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
}

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

@media screen and (min-width: 768px) {
  .top_problem-content:not(:first-child) {
    margin-top: 24px;
  }
}

.top_proble_img-wrapper {
  max-width: 640px;
  width: 100%;
  margin: 16px auto 0;
}
.top_solution_container {
  text-align: center;
}
.top_solution {
  padding-top: 120px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .top_solution {
    padding-bottom: 80px;
  }
}

.top_problem_point__solution {
  width: 160px;
  display: block;
}

.top_solution-title-img {
  width: 200px;
  display: inline-block;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .top_solution-title-img {
    margin: 0;
    margin-right: 10px;
    width: 240px;
  }
}
.top_solution-title {
  margin-top: 16px;
}

.top_section-title {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .top_section-title {
    display: inline-block;
    background: linear-gradient(transparent 50%, var(--primary-color05) 50%);
  }
}

.top_solution_contents-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  margin-bottom: 64px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .top_solution_contents-wrapper {
    flex-direction: row;
    margin-bottom: 80px;
    gap: 60px;
  }
}

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

.top_solution_sub-title-img {
  width: 200px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .top_solution_sub-title-img {
    width: 240px;
  }
}

.top_solution_contents {
  max-width: 540px;
  text-align: left;
}

.top_solution_copy {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

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

.top_solution_sub-copy {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.64px;
}

.top_solution_img-wrapper {
  max-width: 480px;
}
@media screen and (min-width: 768px) {
  .top_solution_img-wrapper {
    margin-top: 0;
  }
}

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

@media screen and (min-width: 768px) {
  .top_solution_reasons {
    flex-direction: row;
    gap: 60px;
    margin-top: 64px;
  }
}
.top_solution_reason-img {
  height: 320px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .top_solution_reason {
    width: calc((100% - 60px * (3 - 1)) / 3);
  }
}

.top_solution_reasons-txt {
  letter-spacing: 0.64px;
  margin-top: 16px;
  font-size: 16px;
  text-align: left;
}

.top_cta {
  background: var(--gradient-color);
  color: var(--white-color);
  padding: 24px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_cta {
    padding: 40px 0;
  }
}
.top_cta_info::before {
  content: none;
}

.top_problem_point__cta::after {
  border-color: var(--white-color) transparent transparent transparent;
}

.top_problem_point__cta {
  margin-top: 0;
  background: var(--white-color);
  color: var(--primary-color);
}

.top_cta_title {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .top_cta_title {
    font-size: 24px;
  }
}

.top_cta_info {
  position: static;
  transform: none;
  width: 100vw;
  max-width: 1080px;
  border-radius: 0;
  margin: auto;
  gap: 16px;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .top_cta_info {
    gap: 40px;
  }
}

.top_kv_info-contents-wrapper__cta {
  position: relative;
}

.top_kv_info-contents-wrapper__cta::before {
  content: "";
  max-width: 520px;
  width: 100%;
  height: 173px;
  border: 2px solid var(--white-color);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


.top_price {
  text-align: center;
  background: var(--gray-color02);
}
.top_price_title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top_price_title {
    font-size: 32px;
  }
}

.top_price_txt {
  margin-top: 40px;
  font-weight: bold;
  background: var(--white-color);
  position: relative;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .top_price_txt {
    margin-top: 64px;
  }
}

.top_price_txt::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 16px 0 16px;
  border-style: solid;
  border-color: var(--white-color) transparent transparent transparent;
}

.top_price_fee {
  margin-top: 21px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(transparent 50%, var(--primary-color05) 50%);
  display: inline-block;
  padding: 0 16px;
}

.top_price_scroll {
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
}

.top_price_scroll-wrapper {
  position: relative;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_price_scroll-wrapper {
    display: none;
  }
}

.top_price_scroll::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 2px;

  background: var(--text-muted);
}

.top_price_scroll-txt {
  font-weight: bold;
  color: var(--text-muted);
}

@media screen and (min-width: 768px) {
  .top_price_scroll::before {
    width: 40px;
  }
}

.top_price_scroll::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-top: 2px solid var(--text-muted);
  left: 16px;
  transform: translateY(-50%) rotate(235deg);
}

.top_price_scroll__prev::before {
  left: 16px;
}
.top_price_scroll__next::after {
  left: auto;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.top_price_scroll__next::before {
  right: 16px;
}

@media screen and (min-width: 768px) {
  .top_price_scroll__next::after {
    left: 30px;
  }
}
.top_price_img-scroll {
  overflow-x: scroll;
  scrollbar-width: none;
}

.top_price_img-wrapper {
  width: 680px;
  margin: 8px auto 0;
}

@media screen and (min-width: 768px) {
  .top_price_img-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 40px auto 0;
  }
}

.top_merit {
  text-align: center;
  font-size: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .top_merit {
    text-align: center;
  }
}

.top_merit_container {
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(880px + 32px);
}

.top_merit_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .top_merit_list {
    margin-top: 64px;
  }

  .top_merit-item {
    text-align: left;
  }
}

.top_merit-item_titles-wrapper {
  display: flex;
  justify-content: space-between;
}

.top_merit-item_small {
  font-weight: bold;
}

.top_merit-item_title {
  margin-top: 16px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .top_merit-item_title {
    font-size: 32px;
  }
}

.top_merit-item_number::after {
  content: "01.";
  font-size: 32px;
  font-weight: bold;
  color: rgba(201, 23, 30, 0.1);
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top_merit-item_number::after {
    font-size: 80px;
  }
}
.top_merit-item:nth-child(2) .top_merit-item_number::after {
  content: "02.";
}
.top_merit-item:nth-child(3) .top_merit-item_number::after {
  content: "03.";
}

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

@media screen and (min-width: 768px) {
  .top_merit-item_content-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.top_merit-item_txt {
  max-width: 440px;
  width: 100%;
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .top_merit-item_txt {
    letter-spacing: 0;
  }
}

.top_merit-item_img-wrapper {
  max-width: 400px;
  width: 100%;
}

.top_flow {
  background: var(--gray-color02);
}
.top_flow.l_contents {
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .top_flow.l_contents {
    padding-bottom: 160px;
  }
}

.top_flow_section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.top_flow_contents-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (min-width: 768px) {
  .top_flow_contents-wrapper {
    margin-top: 64px;
    flex-direction: row;
    gap: 0;
  }
}

.top_flow_contents-item {
  height: 320px;
  padding: 40px 16px;
  background: var(--white-color);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_flow_contents-item {
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% / 3);
  }
}

.top_flow_contents-item::after {
  content: "";
  background: url(../img/info_01.png) no-repeat center / contain;
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 160px;
  height: 160px;
}

.top_flow_contents-item:nth-child(2) {
  background: var(--primary-color05);
}

.top_flow_contents-item:nth-child(2)::after {
  background: url(../img/info_02.png) no-repeat center / contain;
}

.top_flow_contents-item:nth-child(3) {
  background: var(--gradient-color);
  color: var(--white-color);
}
.top_flow_contents-item:nth-child(3)::after {
  background: url(../img/info_03.png) no-repeat center / contain;
}

.top_flow-title {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 35px;
}

.top_flow-title::before {
  content: "01.";
  font-size: 40px;
  font-weight: bold;
  color: #efb9bb;
  padding-right: 9px;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .top_flow-title::before {
    font-size: 64px;
  }
}

.top_flow_contents-item:nth-child(2) .top_flow-title::before {
  content: "02.";
}
.top_flow_contents-item:nth-child(3) .top_flow-title::before {
  content: "03.";
}

.top_flow-txt {
  margin-top: 32px;
}

.top_btn-wrapper__red {
  margin-top: 23px;
  color: var(--white-color);
  background: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}

.top_faq {
  padding: 120px 0;
  background: var(--gray-color);
}

.top_faq_body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_faq_body {
    margin-top: 64px;
  }
}

.top_faq_unit {
  background: var(--white-color);
  border-top: 1px solid var(--gray-color02);
  border-bottom: 1px solid var(--gray-color02);
  overflow: hidden;
}

.top_faq-question {
  padding: 16px 0;
  display: flex;
  width: 100%;
  align-items: center;
  text-align: left;
}
.top_faq-question_tag {
  display: flex;
  align-items: center;
}

.top_faq-question_tag::before {
  content: "";
  background: url(../img/faq-icon.webp) no-repeat center / contain;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.top_faq-question_txt {
  font-weight: bold;
  margin-left: 8px;
  width: 100%;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_faq-question_txt {
    margin-left: 16px;
  }
}

.top_faq-question_mark {
  flex-shrink: 0;
  position: relative;
  height: 24px;
  width: 24px;
  background: var(--primary-color02);
  border-radius: 100vh;
}

.top_faq-question_mark::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_faq-question_mark::after {
  content: "";
  width: 2px;
  height: 10px;
  background: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_faq-answer {
  padding: 16px;
  display: flex;
  width: 100%;
  border-top: 1px solid var(--gray-color02);
}

.top_faq-answer_tag {
  color: var(--white-color);
  font-family: "Roboto", sans-serif;
  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);
}

.top_faq-answer_txt {
  width: 100%;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .top_faq-answer_txt {
    font-size: 16px;
  }
}

.top_info {
  background: rgba(247, 220, 221, 0.5);
}
.top_info_contents-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .top_info_contents-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 100px;
  }
}

.top_info_desc-wrapper {
  max-width: 500px;
  width: 100%;
}

.top_info-title {
  font-size: 20px;
  font-weight: bold;
}

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

.top_info_img-caption {
  margin-top: 8px;
}

.top_info-contact-desc-wrapper:not(:first-child) {
  margin-top: 40px;
}

.top_info_txt-title {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.top_info_txt-title::before {
  content: "";
  background: url(../img/phone-cta.svg) no-repeat center / contain;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.top_faq_contact_txt-tel {
  display: inline-block;
  transition: opacity 0.5s ease;
}
.top_faq_contact_txt-tel:hover {
  opacity: 0.7;
}
.top_info_contact-tel {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  letter-spacing: 0.05em;
}

.top_info_contact-tel::after {
  content: "";
  background: url(../img/target_blank.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
}

.top_faq_contact_txt-tel {
  display: inline-block;
}

.top_info_contact-sub {
  color: var(--primary-color);
}

.top_info_contact-wrapper {
  max-width: 480px;
  width: 100%;
}

.top_info_contact-form {
  background: var(--white-color);
  border-radius: 8px;
  padding: 40px 0;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}

.top_info_contact-form_list {
  max-width: 672px;
  padding: 0 16px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .top_info_contact-form_list {
    padding: 0 40px;
  }
}

.top_info_contact-form_heading {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top_info_contact-form_heading:not(:first-child) {
  margin-top: 24px;
}

.top_info_contact-form_required,
.top_info_contact-form_optional {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-color);
  border-radius: 4px;
}

.top_info_contact-form_optional {
  color: var(--text-muted);
  background: var(--gray-color02);
  border-radius: 4px;
}

.top_info_contact-form_detail__other {
  margin-top: 8px;
}

.top_info_contact-form_input {
  font-size: 16px;
  width: 100%;
  height: 56px;
  padding: 16px 24px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-top: 8px;
  background: var(--gray-color);
}
.top_info_contact-form_input::placeholder {
  color: #aaaaaa;
}

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

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

.top_info_contact-form_check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top_info_contact-form_check-item {
  background: var(--gray-color03);
}

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

.top_info_contact-form_checkbox {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid #dddddd;
  appearance: checkbox;
}

.top_info_contact-form_request-txt {
  margin-left: 16px;
}

.top_info_contact-form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px 24px;
  border: 1px solid #dddddd;
  background: var(--white-color);
  border-radius: 8px;
}

.top_info_contact-form_textarea::placeholder {
  color: #aaaaaa;
}

.top_info_contact-form_btn-wrapper {
  margin-top: 64px;
}

.top_info-btn-wrapper {
  margin-top: 24px;
  height: 64px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  width: 100%;
  background: var(--gradient-color);
  border-radius: 8px;
  color: var(--white-color);
  transition: opacity 0.5s ease;
}

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

.top_info-btn-wrapper:hover {
  opacity: 0.7;
}

.top_info-btn__more::before {
  background: var(--primary-color);
}
.top_info-btn__more:hover {
  color: var(--white-color);
}

.top_info-btn {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
  isolation: isolate;
}

.top_info-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  border-radius: 2px;
  z-index: var(--z-index-back);
}

.top_info_privacy-wrapper {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}

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

.top_info_contact-form-check {
  width: 24px;
  height: 24px;
  border: 1px solid #dddddd;
  background-color: var(--gray-color);
  margin-right: 16px;
  vertical-align: bottom;
  position: relative;
  appearance: auto;
  pointer-events: auto;
cursor: pointer;
}

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

.contact_form_privacypolicy {
  text-decoration: underline;
}

.top_about {
  position: relative;
  overflow: hidden;
}
.top_about .l_contents::after {
  content: "";
  z-index: var(--z-index-back);
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 161px;
  background: url(../img/top_about_bg.png) no-repeat center / contain;
}
@media screen and (min-width: 768px) {
  .top_about .l_contents::after {
    bottom: -147px;
    right: 0;
    width: 640px;
    height: 323px;
  }
}

.top_about .l_contents {
  padding-top: 32px;
  padding-bottom: 160px;
}

@media screen and (min-width: 768px) {
  .top_about .l_contents {
    padding-top: 104px;
    padding-bottom: 120px;
  }
}

.top_about-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.5;
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .top_about-title {
    font-size: 64px;
    margin-top: 0;
  }
}

.top_about_body {
  margin-top: 40px;
}

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

@media screen and (min-width: 768px) {
  .top_about_contents {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 140px;
  }
}

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

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

.top_about_desc {
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top_about_desc {
    font-size: 18px;
    line-height: 2.5;
  }
}

.top_about_desc:not(:first-child) {
  margin-top: 40px;
}

.top_about_img-wrapper {
  position: relative;
  width: auto;
}

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

.top_about-us {
  color: var(--white-color);
  padding-top: 135px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .top_about-us {
    padding-top: 160px;
  }
}

.top_about-us::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-style: solid;
  border-width: 0 0 95px 100vw;
  border-color: var(--white-color) var(--white-color) var(--primary-color)
    var(--white-color);
}
.top_about-us::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-style: solid;
  border-width: 0 0 95px 100vw;
  border-color: var(--white-color) var(--white-color) var(--white-color)
    var(--primary-color);
}

.top_about-us .l_contents {
  padding-top: 0;
  padding-bottom: 190px;
}

@media screen and (min-width: 768px) {
  .top_about-us .l_contents {
    padding-bottom: 120px;
  }
}

.top_about-us .l_contents::after {
  content: "";
  position: absolute;
  background: url(../../img/service-message.webp) center/cover;
  height: 151px;
  width: 320px;
  right: -37px;
  bottom: 13px;
  z-index: var(--z-index-default);
}

@media screen and (min-width: 768px) {
  .top_about-us .l_contents::after {
    height: 302px;
    width: 640px;
    z-index: var(--z-index-back);
    top: 39%;
  }
}

.top_about-us-title {
  font-size: 24px;
  font-weight: 900;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_about-us-title {
    font-size: 32px;
    width: 66.2%;
    margin-top: 64px;
  }
}

.top_about-us-txt {
  margin-top: 24px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .top_about-us-txt {
    margin-top: 40px;
    width: 59.3%;
  }
}

.top_service {
  position: relative;
  overflow: hidden;
}

.top_service:after {
  position: absolute;
  content: "";
  background: url(../img/top_service_bg.png) no-repeat right top/contain;
  right: 0;
  bottom: 40px;
  width: 64%;
  height: 240px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 768px) {
  .top_service:after {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -70px;
  }
}

.top_service .l_contents-sm {
  padding-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .top_service .l_contents-sm {
    padding-bottom: 104px;
  }
}

.top_service_contents {
  position: relative;
}

.top_service_txts {
  margin-top: 40px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .top_service_txts {
    margin-top: 55px;
    width: 50%;
  }
}

.top_service_desc {
  line-height: 2;
}

.top_service_img-wrapper {
  width: 240px;
  margin: auto;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_service_img-wrapper {
    position: absolute;
    width: 400px;
    right: 250px;
    top: 25%;
    left: initial;
    transform: translate(0);
    margin-top: 0;
  }
}

/* @media screen and (min-width: 1300px) {
    .top_service_img-wrapper {
    position: absolute;
    width: 500px;
    top: 15%;
    right: 15%;
  }
} */

.top_service_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .top_service_title {
    font-size: 24px;
    margin-top: 40px;
  }
}

.top_service_btn-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_service_btn-wrapper {
    margin-top: 64px;
  }
}

/* ニュースセクション */

.top_news {
  background: var(--gray-color);
}
@media screen and (min-width: 768px) {
  .top_news {
    background: linear-gradient(
      to bottom,
      var(--gray-color) 0%,
      var(--gray-color) 55%,
      var(--white-color) 55%,
      var(--white-color) 100%
    );
  }
}

@media screen and (min-width: 768px) {
  .top_news .l_contents-xs {
    padding: 84px 0 104px;
  }
}

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

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

@media screen and (min-width: 1080px) {
  .top_news_list-wrapper {
    margin-top: 64px;
  }
}

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

.top_news_item {
  background: var(--white-color);
  border-radius: 8px;
  border: 1px solid #eeeeee;
  /* padding: 24px 20px; */
  transition: background-color 0.5s ease;
}

.top_news_item:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .top_news_item:not(:first-child) {
    margin-top: 0;
  }
}

.m_news_cat-wrapper {
  display: flex;
  justify-content: space-between;
}

.m_news_cat {
  background: var(--primary-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: var(--white-color);
  line-height: 1.5;
}
.m_news_cat__single {
  font-size: 14px;
}

.m_news_time {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: bold;
  letter-spacing: 0.04em;
}
.m_news_cat__time {
  font-size: 16px;
}

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

.top_news_item_heading {
  padding-top: 16px;
  font-size: 16px;
  font-weight: bold;
}

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

@media screen and (min-width: 768px) {
  .top_news_btn-wrapper {
    margin-top: 0px;
    margin-bottom: 40px;
  }
}

/* リクルートセクション */
.top_recruit {
  color: var(--white-color);
  background: var(--primary-color);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_recruit .l_contents-xs {
    padding-top: 80px;
  }
}

.top_recruit_contents {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

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

.top_recruit-title {
  font-size: 24px;
  font-weight: 900;
}
@media screen and (min-width: 1080px) {
  .top_recruit-title {
    font-size: 40px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .top_recruit_txts {
    max-width: 500px;
  }
}

.top_recruit_desc {
  margin-top: 24px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_recruit_desc {
    line-height: 2;
  }
}

.top_recruit_img-wrapper {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media screen and (min-width: 768px) {
  .top_recruit_img-wrapper {
    width: 50%;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
  }
}

.top_recruit_img {
  height: 100%;
  object-fit: contain;
}

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

.m_breadcrumb-wrapper {
  padding: 18px 16px;
  background: var(--gray-color02);
}

.news_cat {
  background: var(--gray-color);
  display: flex;
  gap: 24px;
  padding: 24px 16px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .news_cat {
    padding: 40px 43px;
    border-radius: 8px;
  }
}

.news_cat_item {
  height: 48px;
  color: var(--text-muted);
  background: var(--white-color);
  border: 2px solid #cccccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  width: 139px;
}
@media screen and (min-width: 768px) {
  .news_cat_item {
    width: 160px;
  }
}

.news_cat_item__current {
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.news_list-wrapper {
  padding: 40px 0 80px;
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .news_list-wrapper {
    padding: 64px 0 104px;
  }
}

.home_news_list {
  margin-top: 40px;
  padding: 0 16px;
  gap: 32px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .home_news_list {
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 64px;
  }
}

@media screen and (min-width: 768px) {
  .contact_type-item {
    width: 120px;
    height: 120px;
  }
}

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

.js_header.is-active {
  border-radius: 0 0 0 0;
}

.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: translate(-50%, -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: translate(-50%, -50%) rotate(-135deg);
}

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

.js_nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  padding: 0 16px;
}

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

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* オープニング画面 */
.opening-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOutAll 1s ease-out 4s forwards;
}

@keyframes fadeOutAll {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* アニメーション終了後に非表示 */
.opening-screen.hidden {
  display: none;
}

.container {
  display: flex;
  align-items: center;
  gap: 25px;
  animation: fadeOutLogo 1s ease-out 4s forwards;
}

@keyframes fadeOutLogo {
  to {
    opacity: 0;
  }
}

.logo-mark {
  width: 60px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: logoAppear 0.8s ease-out forwards,
    logoSlideFromRight 0.6s ease-out 1.5s forwards;
  transform-origin: center;
  transform: translateX(150px);
}
@media screen and (min-width: 768px) {
  .logo-mark {
    width: 145px;
    height: 75px;
  }
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: translateX(150px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(150px) scale(1);
  }
}

@keyframes logoSlideFromRight {
  0% {
    transform: translateX(150px);
  }
  100% {
    transform: translateX(0);
  }
}

.logo-text {
  display: flex;
  gap: 20px;
}

.word {
  opacity: 0;
  transform: translateX(50px);
}

.logo_svg {
  height: 32px;
}

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

.word:nth-child(1) {
  animation: wordSlideIn 0.6s ease-out 2.2s forwards;
}

.word:nth-child(2) {
  animation: wordSlideIn 0.6s ease-out 2.8s forwards;
  margin-left: 15px;
}

@keyframes wordSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 全体 */
.btt .animation-bg {
  animation-name: PageAnime-btt;
}

.btt .animation-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 61px;
  background-image: url("../img/icon_logo__white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation: LogoAnime 3s ease-in-out;
}

@keyframes PageAnime-btt {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
    opacity: 1;
  }
  80% {
    transform-origin: bottom;
    transform: scaleY(1);
    opacity: 1;
  }
  80.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
    opacity: 1;
  }
}

@keyframes LogoAnime {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.move .animation-bg {
  background: var(--primary-color);
  display: block;
  content: "";
  position: fixed;
  z-index: var(--z-index-modal);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.l_header__late {
  opacity: 0;
  /* left: 50%; */
  /* transform: translate(-50%, -100%); */
  animation: headerSlideDown 0.8s ease-out 3s forwards;
}

@keyframes headerSlideDown {
  0% {
    opacity: 0;
    top: -70px;
    /* transform: translate(-50%, -100%); */
  }
  100% {
    opacity: 1;
    top: 0;
    /* transform: translate(-50%, 0); */
  }
}
/* PC版の調整 */
@media screen and (min-width: 1080px) {
  @keyframes headerSlideDown {
    0% {
      opacity: 0;
      top: -76px;
    }
    100% {
      opacity: 1;
      top: 31px; /* PC版の元の位置 */
    }
  }
}

/* 拡大アニメーション */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.u_lg-db {
  display: none;
}
@media screen and (min-width: 1080px) {
  .u_lg-db {
    display: block;
  }
}

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

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

.js_faq-a {
  height: 0;
  opacity: 0;
  padding: 0;
  /* padding-bottom: 24px; */
}


.wpcf7-list-item{
  margin: 0;
}
.wpcf7-list-item label {
  cursor: pointer;
}
