@charset "UTF-8";

/* root */
:root {
  --color-basecolor: #1A1A1A;
  --color-accentcolor: #A00000;
  --color-gold-gradient: linear-gradient(90deg, #B88E46 0%, #DBC08B 50%, #947335 100%);
  --color-subcolor: #2B2B2B;
  --color-white: #FFFFFF;
  --color-black: #333333;
  --font-family-notosans: 'Noto Sans JP', sans-serif;
  --font-family-mincho: "Shippori Mincho", serif;
  --font-size-base: 16px;  
  --line-height-base: 1.6;
  --vw: 10px; 
  --vh: 10px;
}
html {
  overflow-y: auto;
}
/* reset */
ul {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: var(--color-black);
}

/* common */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  width: 100%;
  font-size: var(--font-size-base);
  color: var(--color-white);
  background: var(--color-white);
  font-weight: 300;
  font-family: var(--font-family-notosans);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  letter-spacing: 0.05em;
}
section .contents_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px;
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}
img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
.sp_only {
  display: none;
}
.copy_br {
  display: none;
}

/*headings*/
h2 {
  font-weight: 300;
  display: block;
  font-family: var(--font-family-mincho);
  font-size: 1.0rem;
  margin-bottom: 56px;
}
h2 .en_ttl {
  font-size: 3.0rem;
  line-height: 1.5;
}
/*共通スタイル*/
.font-mincho {
  font-family: var(--font-family-mincho);
}
.gradient-text {
  font-family: var(--font-family-mincho);
  background: linear-gradient(90deg, #B88E46 0%, #DBC08B 50%, #947335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/*header*/
.header {
  position: fixed;
  width: 100%;
  height: 85px;
  z-index: 10;
  background-color: var(--color-basecolor);
  max-width: 100vw;
  overflow: hidden;
}
.nav {
  max-width: 100%;
  overflow: hidden;
}
.header .pc ul {
  width: 89%;
  margin: 0;
  padding: 0;
  text-align: right;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}
.header .pc ul li {
  display: inline-block;
  margin: 26px 10px;
  vertical-align: middle;
}
.header .pc ul li a {
  color: var(--color-white);
}
.header .logo {
  width: 11%;
  max-width: 300px;
  height: 85px;
  float: left;
  margin: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel {
  position: relative;
  font-size: 1.25vw;
  letter-spacing: 1.6px;
}
.tel a {
  color: var(--color-white);
}
.tel::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 28px;
  background: url(/industry/investment-fund/svg/tel_icon.svg) center / contain no-repeat;
  vertical-align: middle;
  padding-right: 10px;
}
.nav_contact_btn {
  background: var(--color-accentcolor);
  color: var(--color-white);
  padding: 15px 35px;
  font-size: 1.25rem;
  position: relative;
  top: -1px;
}
.nav_contact_btn:hover {
  color: var(--color-white);
}
.nav_contact_btn::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  right: 6%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
}
.nav_contact_btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--color-white);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.nav_contact_btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.hamburger {
  display: block;
  position: relative;
  z-index: 5;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background: var(--color-basecolor);
  border: none;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: var(--color-white);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 17px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
nav.globalMenuSp {
  position: fixed;
  z-index: 4;
  left: 25%;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 75%;
  height: 100vh;
  background: var(--color-basecolor);
}
nav.globalMenuSp.active {
  transform: translateX(0%);
}
.globalMenuSp ul {
  list-style: none;
  padding-left: 0;
  margin-top: 80px;
}
.globalMenuSp ul li {
  margin: 25px 0;
}
.globalMenuSp ul li a {
  color: var(--color-white);
  position: relative;
}
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: var(--color-white);
}
.hamburger.active span:nth-child(2), 
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--color-white);
}
.hamburger_contact .tel {
  font-size: 1.0rem;
}
.hamburger_contact .tel::before  {
  width: 16px;
  height: 16px;
}
.hamburger_contact .nav_contact_btn {
  font-size: 1.0rem;
}
.sp_tel_mail {
  display: none;
}
.sp {
  display: none;
}

/*フローティングボタン*/
.floating_btn {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 100px auto 50px;
}
.floating_btn a {
  font-family: var(--font-family-mincho);
  font-size: 1.4rem;
  padding: 20px 100px;
  color: var(--color-white);
  background: var(--color-accentcolor);
  position: relative;
}
.floating_btn a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  right: 6%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
}
.floating_btn a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--color-white);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.floating_btn a:hover::before {
  opacity: 1;
  transform: scale(1);
}
/*pagetop*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 50px;
  z-index: 3;
}
#pagetop a {
  padding: 15px 8px;
  background-image: var(--color-gold-gradient);
  color: var(--color-white);
  text-align: center;
  box-sizing: border-box;
  border: 1px solid var(--color-white);
}
#pagetop .arrow {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: var(--color-white);
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  margin: -6px 10px;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

/*cta*/
.cta_area {
  font-family: var(--font-family-mincho);
  background-color: var(--color-basecolor);
  color: var(--color-white);
  padding: 40px 40px 50px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: var(--color-gold-gradient);
  border-image-slice: 1;
  border-image-width: 1px 0 1px 0;
}
.cta_area p {
  margin: 0;
  text-align: center;
}
.cta_contact_btn {
  text-align: center;
  margin-top: 35px;
}
.cta_contact_btn a {
  padding: 15px 50px;
  border-radius: 0;
  color: var(--color-white);
  background-image: var(--color-gold-gradient);
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.cta_contact_btn a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  right: 6%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
}
.cta_contact_btn a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--color-white);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.cta_contact_btn a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/*main*/
#main {
  padding-top: 85px;
  position: relative;
  background: url("/industry/investment-fund/img/mv.jpg") no-repeat;
  background-size: cover;
  background-position: center right;
}
#main .contents_inner {
  max-width: 100%;
  padding: 40px 80px;
  margin: auto;
}
.main_text {
  width: 60%;
}
.copy_intro {
  display: inline-block;
  font-size: 2.0rem;
  font-weight: 300;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-white);
  margin: 0;
}
.copy {
  font-size: 2.0rem;
  z-index: 1;
  font-weight: 300;
}
.copy span {
  font-size: 4.0rem;
}
.copy_text {
  font-size: 1.25rem;
  line-height: 1.8;
}
.medal_content {
  margin-top: 48px;
  width: 80%;
}
.mv_cta_btn {
  text-align: center;
  margin-top: 25px;
}
.mv_cta_btn .cta_contact_btn {
  margin-top: 25px;
}
.mv_cta_btn .cta_contact_btn a {
  background: var(--color-accentcolor);
  font-size: 1.25rem;
}
.people_content {
  position: absolute;
  bottom: 0;
  right: 80px;
  text-align: right;
}
.people_content img {
  width: 70%;
}

/*issue*/
#issue {
  background-color: var(--color-basecolor);
}
.lead {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto 20px;
}
.issue_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.issue_flex li {
  width: 45%;
  padding-left: 30px;
  line-height: 2.0;
}
.issue_flex li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.arrow_wrapper {
  text-align: center;
  margin: 20px 0;
}
.arrow_wrapper .arrow {
  width: 25px;
  height: 25px;
}
.issue_text {
  font-size: 2.0rem;
  text-align: center; 
  margin: 0;
}

/*reason*/
#reason {
  background-color: var(--color-subcolor);
}
.reason-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: auto auto; 
  gap: 180px 80px; 
  margin: 0 auto;
}
.reason-card {
  display: flex;
  flex-direction: column;
}
.reason-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.reason-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.reason-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.card-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.number {
  font-size: 4.0rem;
  line-height: 1;
}
h3.title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0;
}
.image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.image-wrapper img {
  display: block;
  object-fit: cover;
}
.description {
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

/*list*/
#fundList {
  background-color: var(--color-subcolor);
}
.list_intro {
  font-size: 1.25rem;
}
.list_details p {
  line-height: 1.6;
}
.list_slide {
  background-color: #242424;
  padding: 40px 0;
  margin: 32px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family-mincho);
  overflow: hidden;
  transform-style: preserve-3d;
}
.list-loop__box {
  display: flex;
  animation: scrollLoop 200s linear infinite;
  animation-play-state: paused;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
.list-loop__box.ready {
  animation-play-state: running;
}
.list-loop__box img {
  height: auto;
  max-height: 60px;
  width: auto;
  flex-shrink: 0;
}
.list-loop__box2 {
  display: flex;
  animation: scrollLoop2 200s linear infinite;
  animation-play-state: paused;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
.list-loop__box2.ready {
  animation-play-state: running;
}
.list_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.list_table th,
.list_table td {
  border: 1px solid #666;
  padding: 12px 16px;
  text-align: left;
}
.list_table th {
  background-color: #242424;
  font-weight: 500;
}
.list_table td {
  background-color: rgba(255, 255, 255, 0.05);
}
@keyframes scrollLoop {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scrollLoop2 {
  0% {
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
}
.partner-item {
  margin-right: 2rem;
}

/*case*/
#case {
  background-color: var(--color-basecolor);
}
.case_box:nth-of-type(1),
.case_box:nth-of-type(2) {
  border-bottom: 1px solid transparent;
  border-image: var(--color-gold-gradient);
  border-image-slice: 1;
}
.case_box:nth-of-type(2),
.case_box:nth-of-type(3) {
   margin-top: 40px;
}
.case_box p {
  text-align: center;
  font-weight: 500;
}
.case_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.company-card {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-list {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left; 
  margin: 8px 0;
}
.info-item {
  display: flex;
  align-items: baseline;
  text-align: left;
}
.info-item dt {
  width: 100px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.info-item dd {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--color-white);
}
.cross-icon {
  display: flex;
  width: 20%;
}
.cross-icon img {
  width: 10%;
  left: 0;
  right: 0;
  margin: auto;
}
h3.badge {
  font-size: 1.0rem;
  color: var(--color-white);
  font-weight: 500;
  width: 100%;
  text-align: center;
  padding: 11px;
  border: 1px solid transparent;
  border-image: var(--color-gold-gradient);
  border-image-slice: 1;
}
h3.badge_w {
  font-size: 1.0rem;
  color: var(--color-white);
  font-weight: 500;
  width: 100%;
  text-align: center;
  padding: 11px;
  border: 1px solid var(--color-white);
}
.case_txt {
  margin-bottom: 40px;
}
.case_box:last-child .case_txt {
  margin-bottom: 0;
}

/*interview*/
#interview {
  background-color: var(--color-subcolor);
}
.interview_contents {
  display: flex;
}
.interview_img {
  width: 45%;
  padding: 20px 10px;
}
.interview_details {
  width: 55%;
  padding: 20px 10px;
  line-height: 1.6;
}
.interview_details .title {
  padding-bottom: 24px;
  margin: 0 0 24px 0;
  font-size: 1.25rem;
  border-bottom: 1px solid transparent;
  border-image: var(--color-gold-gradient);
  border-image-slice: 1;
}
.interview_details a {
  display: block;
  width: 40%;
  margin-left: auto;
  margin-right: 50px;
}
.leadmore {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid var(--color-white);
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
}
.leadmore::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 50px;
  height: 1px;
  background: var(--color-white);
}
.leadmore span {
  position: relative;
  color: var(--color-white);
}
.interview_case:first-of-type {
  margin-bottom: 50px;
}

/*FAQ*/
#faq {
  background: var(--color-basecolor);
}
.ac {
  position: relative;
}
.ac-parent {
  position: relative;
  text-align: left;
  cursor: pointer;
  padding: 20px 0 20px 30px;
  color: var(--color-white);
  border: 1px solid transparent;
  border-image: var(--color-gold-gradient);
  border-image-slice: 1;
  margin-top: 24px;
}
.ac-parent:first-child {
  margin-top: 0;
}
.ac-parent::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}
.ac-parent.open::after {
  top: 55%;
  transform: translateY(-50%) rotate(225deg);
}
.ac-parent:first-child {
  border-top: 1px solid var(--color-accentcolor);
}
.ac-child {
  display: none;
  padding: 20px 30px;
  margin-left: 0;
}
.ac-child p {
  line-height: 1.6;
}
.ac-child p a {
  text-decoration: underline;
  color: var(--color-white);
}

/*contact*/
#contact {
  color: var(--color-black);
  background-color: #F5F1E8;
  font-weight: 500;
}
blockquote {
  margin: 0 auto;
}
blockquote.step input.text, blockquote.step textarea {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  padding: 15px;
  border: solid 1px var(--color-white);
  border-radius: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9rem;
}
blockquote.step label.item {
  margin: 0 20px 0 0;
  font-size: 1rem;
  text-align: left;
  clear: both;
  width: 100%;
}
blockquote.step label {
  display: block;
  padding: 10px 0;
  margin-right: 15px;
  border-radius: 0;
  box-sizing: border-box;
}
blockquote.step .text {
  display: block;
}
blockquote .w_fl {
  width: 48%;
  float: left;
}
blockquote .w_fr {
  width: 48%;
  float: right;
}
.select-os .check_box {
  clear: both;
}
input {
  display: none;
}
/* メルマガパーミッション */
input[type=checkbox] {
  display: block;
  clear: both;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: var(--color-basecolor);
}
.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.checkbox-container .checkbox-label {
  border: none;
  background: none;
  padding: 0 !important;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.input-radio {
  display: flex;
  align-items: center;
}
/* 連絡方法ラジオの表示強制 */
.contact-plan {
  margin: 0 0 10px 0;
}
.contact-plan input[type="radio"] {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  position: static !important;
  opacity: 1 !important;
  clip: auto !important;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-top: 0;
  cursor: pointer;
  accent-color: var(--color-basecolor);
}
.contact-plan .select-os label {
  padding-left: 0;
  background: none;
}
.contact-plan .select-os {
  align-items: center;
  display: flex;
}
.select-os .method {
  color: var(--color-black);
  border: none;
  text-align: left;
  display: inline-block;
  padding: 0 !important;
  margin-bottom: 0;
  background: #fff;
}
.supMail, .supTel {
  display: none;
}
.contact-plan:has(#plan_mail:checked) .supMail,
.contact-plan:has(#plan_any:checked) .supMail {
  display: inline;
}
.contact-plan:has(#plan_mail:checked) .supTel,
.contact-plan:has(#plan_any:checked) .supTel {
  display: inline;
}
.lp-inquiry-form-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.lp-inquiry-contact-required-notice {
  clear: both;
  color: #ec0043;
  position: relative;
  top: -13px;
  font-size: 0.9rem;
  text-align: left;
}

/* 買収ニーズ入力部分 */
blockquote.step .buy-target {
  clear: both;
  width: 100%;
  margin-bottom: 20px;
}

blockquote.step .buy-target .c-form__item__name,
blockquote.step .buy-target .c-form__item__input {
  width: 100%;
}

blockquote.step .buy-target .c-form__item__name {
  margin-bottom: 10px;
}

blockquote.step .buy-target .c-form__item__name p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

blockquote.step .buy-target .buy-target__toggle {
  margin-bottom: 18px;
}

blockquote.step .buy-target .buy-target__note {
  color: var(--color-black);
  font-size: 0.875rem;
  margin-bottom: 0;
}

blockquote.step .buy-target .input-checkbox {
  display: flex;
  align-items: center;
}

blockquote.step .buy-target .input-checkbox input[type="checkbox"] {
  flex: 0 0 auto;
}

blockquote.step .buy-target .input-checkbox label {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
  background: none;
  color: inherit;
}

blockquote.step .buy-target .buy-target__toggle .input-checkbox label {
  color: var(--color-black);
}

blockquote.step .buy-target .buy-target__panel {
  width: 100%;
  margin-right: 0;
  margin-top: 16px;
  padding: 24px;
  color: #1e2124;
  background-color: #fff;
  border: 1px solid #d8d8d8;
}

blockquote.step .buy-target .input-select select {
  display: block;
  width: 100%;
  padding: 7px;
  background-color: #f6f6f6;
  border: 1px solid #b8b8b8;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9rem;
  appearance: auto;
}

blockquote.step .buy-target .buy-target-area-picker__control {
  min-height: 44px;
  padding: 10px 46px 10px 16px;
  border-color: #b8b8b8;
}

blockquote.step .buy-target .buy-target-area-picker__dropdown {
  width: 100%;
  box-sizing: border-box;
}

blockquote.step .buy-target__grid label {
  padding: 0;
  margin-right: 0;
  font-size: 0.9rem;
  text-align: left;
}

blockquote.step .buy-target__grid textarea {
  margin-bottom: 0;
  font-size: 0.9rem;
  background-color: #fff;
  border: 1px solid #b8b8b8;
}

/*譲渡オプション*/
#contact .sell-target .sell-target__panel {
    color: #3b4043;
}
#contact .sell-target .sell-target__label,
#contact .sell-target .input-radio .insolvency_label {
	color: #1e2124;
	font-size: 0.9rem;
}
#contact .sell-target .input-radio .insolvency_label {
	margin-right: 15px;
  line-height: 1.6;
}
#contact .sell-target .input-select select,
#contact .sell-target .slider-ticks span,
#contact .sell-target .slider-label span {
	font-size: 0.9rem;
}
/*営業利益*/
.sell_target_operating_income-group #sell_target_operating_income {
  background-color: #fff;
}

/*都道府県*/
.lp-inquiry-workpref-field {
  width: 48%;
}
.lp-inquiry-workpref-field select {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.9rem;
  appearance: auto;
  margin: 0 0 10px;
  cursor: pointer;
}

/* オートコンプリート機能デザイン変更 */
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #fff inset;
}
blockquote.step label {
  display: block;
  padding: 10px 0;
  margin-right: 15px;
  border-radius: 0;
  box-sizing: border-box;
}
.select-os label {
  color: #1e2124;
  border: 1px solid #fff;
  text-align: center;
  display: inline-block;
  padding: 9px 30px !important;
  background: #fff;
  float: left;
  margin-bottom: 10px;
  cursor: pointer;
}
.required {
  color: #f01423;
}
.button button {
  color: #fff;
  background: var(--color-basecolor);
  padding: 10px;
  display: block;
  width: 200px;
  cursor: pointer;
  margin: 0 auto 80px;
  clear: both;
  border: 0px;
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  font-weight: 600;
  position: relative;
  top: 50px;
  font-size: 1.1rem;
  font-family: inherit;
}
.select-os input[type="radio"]:checked.sell_buy + label {
  color: #fff;
  background-color: var(--color-basecolor);
  border: 1px solid var(--color-basecolor);
}
.check_box:checked + .label {
  color: #fff;
  background-color: var(--color-basecolor);
  border: 1px solid var(--color-basecolor);
}
.select-os input[type="radio"]:checked.icon + label {
  color: #fff;
  background-color: var(--color-basecolor);
  border: 1px solid var(--color-basecolor);
}
.inquirytable {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.inquirytable_title {
  color: var(--color-black);
  font-family: var(--font-family-notosans);
}
.inquirytable tr:first-child {
  border-top: 1px solid #dbdbdb;
}
.inquirytable tr {
  border-bottom: 1px solid #dbdbdb;
}
.inquirytable th {
  text-align: left;
  padding: 10px 20px;
  width: 25%;
  border-right: 1px solid #dbdbdb;
  background: var(--color-subcolor);
  border-left: 1px solid #dbdbdb;
  color: var(--color-white);
}
.inquirytable td {
  width: 60%;
  padding: 0 20px;
  border-right: 1px solid #dbdbdb;
  background: #fff;
  color: #252525;
}
.button .return {
  color: var(--color-black);
  font-weight: 600;
  background: var(--color-white);
  padding: 8px 10px;
  display: block;
  border: 2px solid var(--color-white);
  cursor: pointer;
  margin: 0 auto;
}
.error {
  color: red;
}
button.disabled-button {
  background-color: #ccc;
  cursor: not-allowed;
}
#contact_form_confirmation h2:before {
  background:none;
}

/*comapny*/
#company {
  background-color: var(--color-basecolor);
}
.company_dl {
  margin: 0 auto;
}
.company_dl dl {
  border-bottom: 1px solid var(--color-white);
  margin: 0 auto;
  padding: 20px 10px 10px;
  width: 80%;
  box-sizing: border-box;
}
.company_dl dt {
  width: 15%;
  float: left;
  font-weight: 600;
}
.company_dl dd {
  width: 80%;
  margin-left: 15%;
}
#company .img {
  margin-top: 65px;
}
#company .note {
	width: 80%;
  margin: 10px auto 0;
	font-size: 0.9rem;
}

/*member*/
#member {
  background-color: var(--color-subcolor);
}
.member_flex {
  display: flex;
  justify-content: space-between;
}
.member_box {
  width: 45%;
}
.member_box:last-of-type {
  margin-top: 190px;
}
.member_box_inner {
  width: 100%;
}
.member_text {
  padding: 25px 0 0;
  width: 100%;
}
.member_text .name {
  margin: 0 0 15px 0;
  font-size: 1.875rem;
  line-height: 1.8rem;
}
.member_text .name span {
  font-size: 1.25rem;
}
.member_text .career {
  line-height: 1.6;
}

/* video */
#video {
  background-color: var(--color-basecolor);
}
#video p {
  text-align: center;
  margin-bottom: 48px;
}
.contents_box p {
  margin-top: 50px;
}
h2.gallery {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px; 
  text-align: center;
  font-size: 1.25rem;
}
h2.gallery::before,
h2.gallery::after {
  content: "";
  flex-grow: 1;
  max-width: 100px;
  height: 1px;
  background: var(--color-gold-gradient);
}
#video .video_li {
  list-style-type: none;
  margin-block-end: 0;
  padding-inline-start: 0;
  unicode-bidi: normal;
  display: grid;
  row-gap: 1rem;
  -moz-column-gap: 3.4129692833%;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.4129692833%;
  width: 100%;
  margin-inline: auto;
  padding: 0 0 30px;
}
#video .video_li li {
  margin-top: 0;
  margin-bottom: 0;
}
#video .ownerslab_img {
  width: 80%;
  max-width: 375px;
  margin: 0 auto;
}
#video .ownerslab_img a {
  transition-property: opacity;
  transition-duration: 0.5s;
}
#video .ownerslab_img a:hover {
  opacity: 0.7;
}
.hm-cm-unit__inner {
  display: block;
  text-decoration: none;
}
.hm-cm-unit-cover__inner {
  display: block;
  position: relative;
  overflow: hidden;
}
.hm-cm-unit-cover__inner:after {
  position: absolute;
  inset: 0;
  content: "";
}
.hm-cm-unit-cover figcaption {
  margin-block-start: 0.5rem;
  font-size: 1.25rem;
}

/*footer*/
footer {
 background-color: var(--color-basecolor);
}
footer .footer_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 0 120px;
  text-align: center;
}
footer a {
  color: var(--color-white);
}
.footer_policy {
  margin-bottom: 20px;
}

@media screen and (max-width: 1675px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*header*/
  .header .logo {
    width: 20%;
  }
  .sp_tel_mail {
    display: block;
    position: fixed;
    z-index: 3;
    right: 15px;
    top: 15px;
    cursor: pointer;
    text-align: center;
    margin: 5px;
  }
  .tel_sp,
  .mail_sp {
    list-style: none;
    float: left;
    margin-right: 15px;
  }
  .tel_sp img,
  .mail_sp img {
    float: left;
    width: 50px;
  }
  .hamburger_sp {
    list-style: none;
    float: left;
  }
  .hamburger_sp .hamburger {
    top: 5px;
  }
  .hamburger_contact {
    width: 100%;
    display: block;
    margin: 20px 0 0;
  }
  .hamburger_contact li {
    width: 100%;
    float: none;
    position: relative;
  }
}

@media screen and (min-width: 768px) and (max-width: 1675px) {
  
  /*main*/
  .people_content {
    right: 0;
  }
  .people_content img {
    width: 55%;
  }
    .mv_cta_btn {
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-top: 16px;
  }
  .cta-text {
    text-align: center;
    margin: 16px auto;
  }
  .mv_cta_btn .cta_contact_btn {
    display: inline-block;
    margin-top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  section .contents_inner {
    max-width: 900px;
  }

  /*main*/
  #main .contents_inner {
    padding: 40px;
  }
  .main_text {
    width: 100%;
  }
  .medal_content {
    margin-top: 32px;
    width: 60%;
  }
  .copy_text {
    line-height: 1.5;
  }
  .copy_intro {
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }

  /*issue*/
  .issue_flex li {
    font-size: 0.8rem;
    width: 50%;
    padding-left: 10px;
  }
  .issue_text {
    font-size: 1.6rem;
  }
  .issue_flex li img {
    margin-right: 0;
  }

  /*reason*/
  h3.title {
    font-size: 1.3rem;
  }
  #reason .pc_only {
    display: none;
  }

  /*company*/
  .company_dl {
    position: relative;
    width: 100%;
    right: auto;
    top: -40px;
  }
  .company_dl dt {
    width: 25%;
  }
  .company_dl dd {
    width: 75%;
    margin-left: 25%;
    color: var(--color-white);
  }
  .company_dl dl {
    width: 100%;
  }
  #company .img {
    margin: 10px 0 30px;
  }
  #company .note {
		width: 85%;
	}

  /*video*/
  .hm-cm-unit-cover figcaption {
    font-size: 1.0rem;
  }
  figure {
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #main .contents_inner {
    min-height: 600px;
  }
  .people_content img {
    width: 35%;
  }
  .people_content {
    right: 0;
  }

}
@media screen and (max-width: 820px) {
  h1.copy {
    text-align: center;
  }
  .copy_br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  section .contents_inner {
    padding: 50px 25px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }

  /*header*/
  .header .logo {
    width: 50%;
    height: 80px;
  }
  .globalMenuSp .hamburger_contact {
    width: 100%;
    display: block;
    margin-top: 40px;
  }
  .tel_sp img,
  .mail_sp img {
    width: 45px;
  }
  .sp_tel_mail .tel_sp {
    margin-right: 10px;
  }
  .hamburger_contact .nav_contact_btn {
    padding: 15px 25px;
  }

  /*cta*/
  .cta_area {
    padding: 50px 25px;
  }
  .cta_contact_btn a {
    padding: 15px 30px;
  }

  .floating_btn a {
    font-size: 1.0rem;
    padding: 15px 25px;
  }

  /*main*/
  #main .contents_inner {
    padding: 20px;
  }
  .copy_intro {
    font-size: 1.2rem;
  }
  .copy {
    text-align: center;
    font-size: 1.2rem;
  }
  .copy span {
    font-size: 2.2rem;
  }
  .copy_text {
    font-size: 1.0rem;
    width: 100%;
  }
  .medal_content {
    position: relative;
    margin: 50px 0 0;
    width: 50%;
    z-index: 2;
  }
  .cta-text {
    font-size: 0.9rem;
  } 
  .mv_cta_btn .cta_contact_btn a {
    font-size: 1.0rem;
    padding: 15px 30px;
  }
  .people_content {
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1;
    width: 50%;
  }
  .people_content img {
    width: 100%;
  }
  .mv_cta_btn {
    margin-top: 20px;
  }

  /*issue*/
  #issue .contents_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 15px;
  }
  .lead {
    font-size: 1.2rem;
  }
  .issue_flex {
    display: inline-flex;
    flex-direction: column;
  }
  .issue_flex li {
    width: 100%;
    padding-left: 0;
    font-size: 0.85rem;
  }
  .issue_flex li img {
    width: 25px;
    height: 25px;
    margin-right: 0;
  }
  .issue_text {
    font-size: 1.4rem;
  }

  /*reason*/
  .reason-card-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 50px;
  }
  .reason-card,
  .reason-card:nth-child(2),
  .reason-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .card-header {
    display: block;
  }
  .number {
    font-size: 3.0rem;
  }
  h3.title {
    margin-top: 10px;
    font-size: 1.3rem;
  }
  h3.badge {
    margin: 0;
  }

  /*list*/
  .list_intro {
    font-size: 1.1rem;
  }
  .list_slide {
    padding: 20px 0;
  }

  /*case*/
  #case .case_flex {
    flex-direction: column;
  }
  #case .case_box {
    width: 100%;
  }
  .company-card {
    width: 100%;
  }
  .cross-icon {
    width: 100%;
    padding: 16px 0;
  }
  .cross-icon img {
    width: 5%;
  }

  /*interview*/
  .interview_contents {
    flex-wrap: wrap;
  }
  .interview_img {
    width: 100%;
    padding: 20px 0;
  }
  #interview .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .interview_details {
    width: 100%;
    padding: 0;
  }
  .interview_details a {
    margin-right: 25px;
    width: 60%;
  }
  .interview_case:nth-of-type(2) .interview_details {
    order: 2; 
  }
  .interview_case:nth-of-type(2) .interview_img {
    order: 1;
  }
  
  /*faq*/
  .ac-parent {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 10px 35px 10px 10px;
    margin-top: 16px;
  }
  .ac-parent::after {
    right: 18px;
    width: 8px;
    height: 8px;
  }
  .ac-child {
    padding: 20px 15px;
  }

  /*company*/
  .company_dl dt {
    width: 100%;
    float: none;
  }
  .company_dl dd {
    width: 100%;
    margin-left: 0;
  }
  .company_dl {
    padding: 20px 0 15px;
  }

  /*member*/
  .member_flex {
    flex-wrap: wrap;
  }
  .member_box {
    width: 100%;
  }
  .member_box:last-of-type {
    margin-top: 50px;
  }

  /*contact*/
  .contact-plan .select-os {
    display: block;
  }
  .input-radio {
    margin-bottom: 10px;
  }
  .checkbox-container .checkbox-label {
    flex: 1;
    width: calc(100% - 80px);
    cursor: pointer;
  }
  .button .return {
    margin: 0 7px;
    width: 200px;
    margin-bottom: 20px;
  }
  .lp-inquiry-form-intro {
    font-size: 1.2rem;
  }

  /*company*/
  #company .note {
		width: 100%;
	}

  /* video */
  #video .video_li {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  /*pagetop*/
  #pagetop {
    right: 20px;
    bottom: 120px;
  }
  #pagetop .arrow {
    width: 14px;
    height: 14px;
  }
  #pagetop a {
    padding: 10px 5px;
  }

  /*footer*/
  .footer_policy a {
    font-size: 0.8rem;
  }
}