@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Gothic:wght@400;700&family=Shippori+Mincho+B1:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Zen+Kaku+Gothic+Antique:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}

em {
  font-style: normal;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.sp600-only {
  display: none;
}
@media (max-width: 600px) {
  .sp600-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #FFFFFF;
  --black: #000;
  --text: #333333;
  --gray: #4D4D4D;
  --midasi-text: #B6AA96;
  --browm: #7A6D59;
  --button-brown: #2F2725;
  --text-brown: #5F5C5D;
  --button: #121212;
  --white2: #F8F7F4;
  --text-brown2: #7D7675;
  --baige:#F3F1EE;
  --gothic-font: "Shippori Gothic", sans-serif;
  --zen-font: "Zen Kaku Gothic Antique", sans-serif;
  --garamond-font: "Cormorant Garamond", serif;
  --mincho-font: "Shippori Mincho B1", serif;
  --leading-trim:calc((1em - 1lh)/2);
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 1601px) and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-weight: 400;
  line-height: normal;
  color: var(--text);
  letter-spacing: normal;
  font-family: var(--mincho-font);
  background-color: var(--white);
}

a {
  color: var(--text);
  font-family: var(--mincho-font);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

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

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 400;
  margin-block: var(--leading-trim);
  font-family: var(--mincho-font);
}

.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.header {
  transition: 0.2s;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--midasi-text);
  height: 9.4rem;
}

.header__inner {
  padding: 0rem 2rem;
  width: min(1320px, 100%);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  width: 23.5rem;
  aspect-ratio: 235/37;
}

.header__navbar {
  width: 100%;
  height: 100%;
  align-items: center;
  max-width: min(900px, 60%);
  margin-left: auto;
}
.header__navbar .pc-only {
  width: 100%;
  height: 100%;
}

.header__menu {
  gap: 3rem;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}

.header__list {
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--garamond-font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--midasi-text);
  transition: 0.3s;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  height: 100%;
  /* padding-bottom: rem(6); */
  position: relative;
  /*  &::after {
    width: rem(40);
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center bottom;
    height: 1px;
    background-color: $midasi-text;
    transition: transform 0.3s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      &::after {
        transform: translateX(-50%) scaleX(1);
      }
    }
  } */
}
.header__list:hover .header__sub-menu {
  visibility: visible;
  transition: 0.2s;
  opacity: 1;
}
.header__list .header__link {
  color: var(--midasi-text);
  font-family: var(--garamond-font);
  display: flex;
  align-items: center;
  height: 100%;
}
.header__list .header__sub-menu {
  margin-top: 0.5rem;
  padding-block: 0rem 8.5rem;
  left: -50%;
  opacity: 0;
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  z-index: 50;
  transition: 0.2s;
  background: linear-gradient(180deg, rgba(35, 24, 21, 0.7) 0%, rgba(35, 24, 21, 0.7) 50%, rgba(35, 24, 21, 0.65) 60%, rgba(35, 24, 21, 0.5) 70%, rgba(35, 24, 21, 0.35) 80%, rgba(35, 24, 21, 0.2) 90%, rgba(35, 24, 21, 0) 100%);
}
.header__list .header__sub-list {
  margin: 0rem 1.7rem;
  min-width: 18rem;
  transition: opacity 0.2s;
  border-bottom: 1px solid var(--midasi-text);
}
.header__list .header__sub-list a {
  padding-top: 2.5rem;
  letter-spacing: 0.1em;
  padding-left: 1rem;
  word-break: keep-all;
  font-size: 1.6rem;
  color: var(--white);
  width: 100%;
  font-weight: 400;
  line-height: 1;
}
.header__list .header__sub-list:hover {
  border-bottom: 1px solid var(--white);
}
.header__list .header__sub-list:hover a {
  color: var(--midasi-text);
}

#top-header {
  background-color: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid var(--white);
}
#top-header .header__inner {
  width: min(1475px, 100%);
}
#top-header .header__menu {
  align-items: center;
}
#top-header .header__list {
  color: var(--white);
}
#top-header .header__list-contact {
  border: 1px solid #231815;
  background-color: #231815;
  width: 27.6rem;
  height: 3.6rem;
  padding-block: 0;
  text-align: center;
  display: grid;
  place-items: center;
}
#top-header .header__list-contact a {
  color: var(--midasi-text);
}
#top-header .header__list-contact:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#top-header .header__list-contact:hover a {
  color: #231815;
}
#top-header .hamburger__line span {
  background: var(--white);
}
@media screen and (max-width: 768px) {
  #top-header .header__logo {
    margin-bottom: 0rem;
  }
}

@media screen and (max-width: 768px) {
  .header .header__inner {
    padding: 3rem 5rem 3rem 3rem;
  }
  .header .header__logo {
    margin-bottom: 0rem;
  }
  .header .header__navbar {
    max-width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    background: url(../images/sp/sp-nav__bg.webp) no-repeat center center/cover;
    opacity: 0;
    width: 100%;
    position: fixed;
    visibility: hidden;
    top: -100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 100;
    overflow: hidden;
    padding: 4rem 1.6rem 4rem 1.6rem;
    gap: 2rem;
    text-align: center;
  }
  .header .header__menu {
    gap: 2rem;
    flex-direction: column;
    width: 100%;
  }
  .header .header__list {
    padding: 0rem;
  }
  .header .header__list:last-of-type {
    margin-top: 2rem;
  }
  .header .header__link {
    font-size: 1.6rem;
    line-height: 1.4375;
    width: 100%;
  }
  .menu--sp {
    margin-top: 6rem;
  }
  .menu--sp .menu__nav {
    display: flex;
    flex-direction: column;
    gap: 9rem;
  }
  .menu--sp .menu__group {
    width: 55rem;
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    gap: 5.6rem;
  }
  .menu--sp .menu__title {
    text-align: left;
    width: 25rem;
    font-size: 3.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--midasi-text);
    line-height: 1;
    font-family: var(--garamond-font);
    letter-spacing: 0.1em;
  }
  .menu--sp .menu__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
  }
  .menu--sp .menu__link {
    font-size: 2.4rem;
    line-height: normal;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .menu--sp .menu__group--news {
    margin-top: 11.5rem;
    border-top: 1px solid var(--midasi-text);
  }
  .menu--sp .menu__group--news .menu__list {
    padding-block: 6rem;
    width: 55rem;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .menu--sp .menu__group--news .menu__link {
    font-size: 2.4rem;
    line-height: 1;
    color: var(--midasi-text);
    font-weight: 400;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    cursor: pointer;
    transition: 0.5s ease-in-out;
    z-index: 100;
  }
  .hamburger .hamburger__line {
    display: grid;
    place-items: center;
    position: relative;
    transition: 0.5s;
    width: 5.6rem;
    height: 2.2rem;
  }
  .hamburger .hamburger__line span {
    width: 5.6rem;
    height: 1px;
    display: block;
    position: absolute;
    transition: 0.5s ease-in-out;
    background-color: var(--midasi-text);
    left: 0;
    z-index: 30;
  }
  .hamburger .hamburger__line span:nth-child(1) {
    top: 0rem;
  }
  .hamburger .hamburger__line span:nth-child(2) {
    bottom: 0rem;
    opacity: 1;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}

@media screen and (max-width: 768px) {
  .header.open {
    z-index: 10;
  }
  .header.open .header__navbar {
    left: 0;
    top: 0;
    opacity: 1;
    height: 100vh;
    z-index: 100;
    visibility: visible;
  }
  .header.open .hamburger {
    transition: 0.5s ease-in-out;
  }
  .header.open .header__link {
    color: var(--white);
  }
  .header.open .hamburger__line span {
    transition: 0.5s ease-in-out;
  }
  .header.open .hamburger__line span:nth-child(1) {
    transform: translateY(1.2rem) rotate(-45deg);
  }
  .header.open .hamburger__line span:nth-child(2) {
    transform: translateY(-1.2rem) rotate(45deg);
  }
}
.footer {
  background: url(../images/pc/footer-bg.webp) no-repeat center center/cover;
  color: var(--white);
  /* &-bottom {
    background-color: $button;
  } */
  /*   &-bottom__copyright {
      margin-top: rem(90);
      letter-spacing: 0.1em;
      text-align: center;
      font-size: rem(14);
     color: #515151;
    } */
}
.footer-top {
  padding-top: 12.5rem;
  /* padding-bottom: rem(135); */
  padding-bottom: 3.5rem;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
}
.footer__nav-title {
  font-size: 2rem;
  font-weight: normal;
  color: var(--midasi-text);
  letter-spacing: 0.1em;
}
.footer__nav-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__nav-link {
  color: var(--white);
  font-size: 1.6rem;
  transition: opacity 0.3s;
  line-height: 1;
}
.footer__nav-link:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer__nav-group--news {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__nav-group--news .footer__nav-title,
.footer__nav-group--news .footer__nav-link {
  font-size: 1.6rem;
  color: var(--midasi-text);
  letter-spacing: 0.01em;
}
.footer__nav-group--news .footer__nav-list {
  gap: 4rem;
}
.footer-bottom {
  padding: 7.5rem 2rem 2.5rem 2rem;
}
.footer-bottom__body {
  display: none;
  /*  display: flex; */
  justify-content: space-between;
}
.footer-bottom__logo {
  width: 23.5rem;
  aspect-ratio: 235/37;
}
.footer__tagline {
  font-size: 1.9rem;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
  padding-left: 2.5rem;
}
.footer__contact {
  margin-bottom: 4rem;
}
.footer__contact-text {
  font-size: 1.4rem;
  font-family: var(--zen-font);
}
.footer__buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}
.footer__button {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.footer__button:first-of-type {
  padding: 1rem 1.5rem;
  border: 1px solid var(--midasi-text);
  color: var(--midasi-text);
  font-size: 1.4rem;
}
.footer__button:first-of-type:hover {
  background-color: var(--midasi-text);
  color: var(--white);
}
.footer__button--line {
  width: 5rem;
  height: 5rem;
}
.footer__button--line:hover {
  scale: 1.05;
}
.footer-bottom__copyright {
  letter-spacing: 0.1em;
  text-align: right;
  font-size: 1.4rem;
  color: #515151;
}
@media screen and (max-width: 768px) {
  .footer {
    background: url(../images/sp/footer-bg.webp) no-repeat center center/cover;
  }
  .footer-top {
    padding-top: 15.5rem;
    /* padding-bottom: rem(145); */
    padding-bottom: 5.5rem;
    padding-inline: 4.7rem;
  }
  .footer-bottom {
    padding-inline: 4.7rem;
    padding-block: 5.7rem 3.5rem;
  }
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    row-gap: 10.8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--midasi-text);
  }
  .footer__nav-list {
    margin-top: 3.5rem;
    gap: 4rem;
  }
  .footer__nav-link {
    color: var(--white);
    font-size: 2rem;
  }
  .footer__nav-group--news {
    margin-top: 6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 5.8rem;
    justify-content: space-between;
  }
  .footer__nav-group--news .footer__nav-title,
.footer__nav-group--news .footer__nav-link {
    font-size: 2rem;
  }
  .footer__nav-group--news .footer__nav-list {
    gap: 0rem;
  }
  .footer-bottom__body {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 16.5rem;
  }
  .footer-bottom__logo {
    width: 29.3rem;
  }
  .footer__tagline {
    font-size: 2.3rem;
    margin-top: 2.5rem;
    padding-left: 2.5rem;
  }
  .footer__contact {
    margin-bottom: 3.5rem;
    align-self: center;
  }
  .footer__contact-text {
    font-size: 2rem;
  }
  .footer__nav-group--news .footer__nav-list {
    margin-top: 0;
    display: contents;
  }
  .footer__buttons {
    margin-top: 2.5rem;
    justify-content: center;
    gap: 1.7rem;
    align-items: center;
  }
  .footer__button:first-of-type {
    padding: 1.3rem 3rem;
    font-size: 2rem;
    line-height: 1;
  }
  .footer__button--line {
    width: 7.8rem;
    height: 7.8rem;
  }
  .footer-bottom__copyright {
    text-align: center;
    font-size: 2rem;
  }
}

.layermain {
  /*   padding-top: 67px;
    background: #fff; */
  margin-bottom: 250px;
}
@media screen and (max-width: 768px) {
  .layermain {
    margin-bottom: 53rem;
  }
}

.mb-100 {
  margin-bottom: 10rem;
}

.mt-100 {
  margin-top: 10rem;
}

.container-760 {
  width: 100%;
  max-width: 790px;
  padding: 0 15px;
  margin: 0 auto;
}

.fs-18 {
  font-size: max(1.8rem, 22px);
  text-align: center;
}

.wrapper {
  max-width: 85%;
  width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
    width: 100%;
  }
}

.l-wrap1000 {
  width: 100%;
  max-width: 75%;
  width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-wrap1000 {
    max-width: 100%;
  }
}

.l-wrap1200 {
  width: 100%;
  max-width: 85%;
  width: 120rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-wrap1200 {
    max-width: 100%;
  }
}

.l-wrap1500 {
  width: 100%;
  max-width: 91%;
  width: 150rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-wrap1500 {
    max-width: 100%;
  }
}

.mt-94 {
  margin-top: 9.4rem;
}

.pt-60 {
  padding-top: 6rem;
}

.pt-80 {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .pt-80 {
    padding-top: 5.3333333333rem;
  }
}

.mt-20 {
  margin-top: 2rem !important;
}

main {
  margin-top: 9.4rem;
}

.sub-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}
.sub-title-wrapper .recruit__subtitle--ja {
  font-size: 2rem;
  font-family: var(--mincho-font);
  color: var(--midasi-text);
  line-height: 1;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--midasi-text);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sub-title-wrapper .recruit__subtitle--en {
  font-family: var(--garamond-font);
  font-size: 5rem;
  font-weight: 400;
  color: var(--midasi-text);
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.sub-title-wrapper .recruit__subtitle--disc {
  font-size: 2rem;
  color: var(--text-brown);
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .sub-title-wrapper .recruit__subtitle--disc {
    margin-top: 2.2rem;
    font-size: 2.4rem;
    line-height: 2;
  }
}

.sec-title__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.sec-title__wrapper .sec-title__en {
  color: var(--midasi-text);
  font-size: 2.4rem;
  line-height: 1.75;
}
.sec-title__wrapper .sec-title__ja {
  color: var(--browm);
  font-size: 3.8rem;
  padding-bottom: 2rem;
  display: inline-block;
  padding-inline: 2rem;
  border-bottom: 1px solid var(--midasi-text);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sec-title__wrapper {
    gap: 1.6rem;
  }
  .sec-title__wrapper .sec-title__ja {
    font-size: 3.4rem;
    padding-bottom: 0.5rem;
    padding-inline: 0rem;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-section-title .sec-title__en {
  padding-bottom: 1.5rem;
  font-size: 4.4rem;
  font-family: var(--garamond-font);
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  color: var(--midasi-text);
}
.c-section-title .sec-title__en:after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
}
.c-section-title .sec-title__ja {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 2.1rem;
  font-size: 2.2rem;
  font-family: var(--mincho-font);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--midasi-text);
}
@media screen and (max-width: 768px) {
  .c-section-title .sec-title__en {
    font-size: 4.2rem;
  }
  .c-section-title .sec-title__ja {
    font-size: 2.4rem;
  }
}

.button {
  width: 100%;
  background: #121212;
  border: 1px solid #121212;
  color: var(--white);
  padding: 2.5rem 0rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.2em;
  /* @media (hover: hover) and (pointer: fine) {
    &:hover {
      color: #121212;
      background-color: $white;
      transition: 0.3s;
    }
  } */
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  width: 3.7rem;
  height: 1px;
  background: var(--midasi-text);
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 2.6rem;
    height: 13rem;
    max-height: 130px;
    padding-block: 0;
    display: grid;
    place-items: center;
    letter-spacing: 0.2em;
  }
}

.cta__container {
  padding-block: 15.3rem;
}
.cta__text-wrapper {
  text-align: center;
}
.cta__text-wrapper span {
  margin-top: 4.5rem;
  font-size: 1.4rem;
  color: var(--white);
}
.cta__text {
  font-size: 3rem;
  line-height: 2.2;
  color: var(--white);
  text-align: center;
}
.cta .buttons {
  margin-top: 8rem;
}
.cta .button {
  margin-inline: auto;
  background: #231815;
  border: 1px solid #231815;
}
.cta .button .button__text {
  position: relative;
}
.cta .button .button__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3rem;
  display: inline-block;
  width: 2.3rem;
  height: 3rem;
}
.cta .button .button__icon svg {
  width: 100%;
  height: 100%;
}
.cta .button .button__icon svg path {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .cta .button:hover {
    color: #231815;
    background-color: var(--white);
    transition: 0.3s;
  }
  .cta .button:hover svg path {
    fill: #231815;
  }
}
@media screen and (max-width: 768px) {
  .cta__container {
    padding-block: 15.5rem 15rem;
  }
  .cta__text-wrapper span {
    margin-top: 3.2rem;
    font-size: 2rem;
  }
  .cta .buttons {
    margin-top: 7.7rem;
  }
  .cta .button .button__icon {
    width: 2.53rem;
    height: 3.3rem;
    right: -2.5rem;
  }
}

.breadcrumb {
  padding-top: 7.2rem;
  color: var(--midasi-text);
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 2rem;
  line-height: 1;
}
.breadcrumb > * {
  line-height: 1;
}
.breadcrumb > span a,
.breadcrumb > span span {
  color: var(--midasi-text);
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 2.2rem;
    line-height: 2;
    padding-top: 7rem;
    padding-left: 4rem;
  }
}

.u-cta-flex .cta__container {
  padding-block: 15rem 15.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.u-cta-flex .buttons {
  width: 44.8rem;
}
@media screen and (max-width: 768px) {
  .u-cta-flex .cta__container {
    padding-block: 15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12.1rem;
  }
  .u-cta-flex .buttons {
    width: 57rem;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.top-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1080;
  background-image: url(../images/pc/top-fv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 9.4rem;
}
.top-fv .top-fv__inner {
  padding-top: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-fv .top-fv__title {
  font-size: 7.6rem;
  line-height: 1.1447368421;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.24em;
}
.top-fv .top-fv__col {
  display: flex;
  align-items: center;
  gap: 9.6rem;
  padding-inline: 1.5rem;
  margin-top: 4.6rem;
}
.top-fv .top-fv__text {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
}
.top-fv .top-fv__button {
  width: 30rem;
  height: 7.2rem;
  background-color: rgba(255, 253, 243, 0.2);
  border-color: #fff;
}
.top-fv .top-fv__button:hover {
  background-color: transparent;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-fv .top-fv__inner {
    padding-top: 20rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-fv .top-fv__inner {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .top-fv {
    width: 100%;
    aspect-ratio: 750/1196;
    background-image: url(../images/sp/top-fv-bg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 9.4rem;
  }
  .top-fv .top-fv__inner {
    padding-top: 30.9rem;
  }
  .top-fv .top-fv__title {
    font-size: 8rem;
    line-height: 1.45;
    text-align: left;
    letter-spacing: 0.2em;
    padding-inline: 8.4rem;
    margin-block: -1.8rem;
  }
  .top-fv .top-fv__col {
    display: contents;
  }
  .top-fv .top-fv__text {
    position: absolute;
    top: 53.1rem;
    left: 32.5rem;
    letter-spacing: 0.12em;
  }
  .top-fv .top-fv__button {
    width: 57rem;
    height: 13rem;
    margin-top: 4.2rem;
  }
}

.top-page {
  margin-top: 0;
}

.top-news {
  position: relative;
  top: -26.8rem;
  max-width: 150rem;
  width: calc(100% - 8rem);
  margin-inline: auto;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.7) 60.3622%, transparent 100%);
  z-index: 2;
}
.top-news .top-news__inner {
  max-width: 100rem;
  width: 100%;
  margin-inline: auto;
  height: 48.8rem;
  padding-block: 7.4rem 0rem;
}
.top-news .top-news__title-wrapper .sec-title__en {
  font-size: 4.2rem;
  padding-bottom: 0.6rem;
}
.top-news .top-news__title-wrapper .sec-title__en::after {
  width: 13.4rem;
  background-image: url(../images/pc/news-title-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-news .top-news__content {
  max-width: 88.6rem;
  width: calc(100% - 8rem);
  margin-inline: auto;
  margin-top: 7.8rem;
}
.top-news .top-news__list {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
}
.top-news .top-news__link {
  display: flex;
  align-items: center;
  gap: 7rem;
}
.top-news .top-news__item-date {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
  color: var(--white);
}
.top-news .top-news__item-date {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
  color: var(--white);
}
.top-news .top-news__item-title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--white);
}
.top-news .top-news__more {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #B6AA96;
  margin-top: 8.8rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .top-news {
    top: -20rem;
    max-width: 128rem;
  }
  .top-news .top-news__more {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-news {
    top: -18rem;
    max-width: 110rem;
  }
  .top-news .top-news__more {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-news {
    top: -18rem;
    max-width: 110rem;
  }
  .top-news .top-news__more {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top-news {
    top: -12.4rem;
    max-width: 68.1rem;
    height: 68.1rem;
    width: calc(100% - 6.8rem);
  }
  .top-news .top-news__inner {
    max-width: 100rem;
    width: 100%;
    margin-inline: auto;
    height: auto;
    padding-block: 9.2rem 0rem;
  }
  .top-news .top-news__content {
    width: calc(100% - 7.6rem);
    margin-top: 8rem;
  }
  .top-news .top-news__list {
    gap: 5.5rem;
  }
  .top-news .top-news__link {
    gap: 2.6rem;
  }
  .top-news .top-news__item-date {
    font-size: 2.2rem;
    line-height: 1.8181818182;
    letter-spacing: 0.108em;
  }
  .top-news .top-news__item-title {
    font-size: 2.2rem;
    line-height: 1.8181818182;
    letter-spacing: 0.026em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .top-news .top-news__more {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 0.131em;
    margin-top: 7.5rem;
    margin-inline: auto;
  }
}

.top-message {
  padding-block: 15rem 13rem;
  background: url(../images/pc/top-message-bg.webp) no-repeat center center/cover;
  aspect-ratio: 1921/1290;
}
.top-message__title-wrapper .sec-title__en:after {
  width: 21.8rem;
  background: url(../images/pc/message-title-line.webp) no-repeat center center/contain;
}
.top-message__content {
  margin-top: 20rem;
  display: flex;
  justify-content: left;
  width: 100%;
}
.top-message__title {
  font-size: 4.4rem;
  line-height: 2;
  width: 50%;
  color: var(--gray);
}
.top-message__text-wrapper {
  width: 50%;
  max-width: 50rem;
}
.top-message__text {
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  line-height: 2.25;
}
.top-message__name {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  gap: 2.3rem;
  justify-content: flex-end;
}
.top-message__name img {
  width: 17.7rem;
  aspect-ratio: 177/38;
}
.top-message__text-name {
  font-size: 1.8rem;
  line-height: 2.2222222222;
}
@media screen and (max-width: 768px) {
  .top-message {
    padding-block: 15rem 16.5rem;
    background: url(../images/sp/top-message-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/1667;
    /*   &__title-wrapper {
        .sec-title__en {
          &:after {
            width: rem(218);
            background: url(../images/sp/message-title-line.webp) no-repeat center center /
              contain;
          }
        }
      } */
  }
  .top-message__content {
    margin-top: 10.6rem;
    flex-direction: column;
    gap: 8.4rem;
    padding-inline: 7.5rem 5.5rem;
  }
  .top-message__title {
    width: 100%;
  }
  .top-message__text-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .top-message__text {
    font-size: 2.2rem;
    line-height: 2;
  }
  .top-message__name {
    margin-top: 10rem;
    gap: 5.1rem;
  }
  .top-message__name img {
    width: 21.6rem;
  }
  .top-message__text-name {
    font-size: 2.2rem;
    line-height: 1.8181818182;
  }
}

.top-record {
  position: relative;
  width: 100%;
  background-image: url(../images/pc/top-record-bg.webp);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding-block: 36rem 11.6rem;
  margin-top: -48.8rem;
}
.top-record .top-record__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-record .top-record__title-wrapper .sec-title__en {
  font-size: 4.2rem;
  padding-bottom: 0.6rem;
}
.top-record .top-record__title-wrapper .sec-title__en::after {
  width: 41.3rem;
  background-image: url(../images/pc/record-title-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-record .top-record__text {
  margin-top: 7.6rem;
  font-size: 2rem;
  line-height: 2.2;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.24em;
}
.top-record .top-record__text br {
  display: none;
}
.top-record .top-record__content {
  margin-top: 8rem;
  width: 100%;
}
.top-record .top-record__list {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 7rem 3.8rem;
}
.top-record .top-record__item {
  width: calc(50% - 2.5333333333rem);
  height: 26rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.top-record .top-record__item:nth-child(1) {
  order: 5;
}
.top-record .top-record__item:nth-child(2) {
  order: 4;
}
.top-record .top-record__item:nth-child(2) .top-record__item-price {
  gap: 2rem;
}
.top-record .top-record__item:nth-child(3) {
  order: 3;
}
.top-record .top-record__item:nth-child(3) .top-record__item-price {
  gap: 2rem;
}
.top-record .top-record__item:nth-child(4) {
  order: 2;
}
.top-record .top-record__item:nth-child(5) {
  order: 1;
}
.top-record .top-record__item:nth-child(5) .top-record__item-price {
  gap: 2rem;
}
.top-record .top-record__item-text {
  font-size: 2.4rem;
  line-height: 1.8333333333;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: center;
}
.top-record .top-record__item-text .top-record__item-text-sizes {
  font-size: 2rem;
  line-height: 2.2;
}
.top-record .top-record__item-price {
  display: flex;
  align-items: flex-end;
  color: #B6AA96;
  gap: 1rem;
}
.top-record .top-record__item-price .top-record__item-price-num {
  font-size: 9rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.top-record .top-record__item-price .top-record__item-price-text {
  font-size: 4rem;
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: 0.24em;
}
.top-record .top-record__content-text {
  font-size: 2rem;
  line-height: 2.5;
  font-weight: 400;
  letter-spacing: 0.032em;
  color: var(--white);
  padding-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-record .top-fv__inner {
    padding-top: 20rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-record .top-fv__inner {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .top-record {
    width: 100%;
    background-image: url(../images/sp/top-record-bg.webp);
    background-position: top center;
    padding-block: 63.2rem 14.8rem;
    margin-top: -68.1rem;
  }
  .top-record .top-record__text {
    margin-top: 6.5rem;
    font-size: 2.2rem;
    line-height: 2.5454545455;
    letter-spacing: 0.24em;
    text-align: center;
  }
  .top-record .top-record__text br {
    display: block;
  }
  .top-record .top-record__content {
    margin-top: 10rem;
  }
  .top-record .top-record__list {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    gap: 2.1rem;
  }
  .top-record .top-record__item {
    width: 100%;
    height: 13.8rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    padding-inline: 6rem 5.7rem;
  }
  .top-record .top-record__item:nth-child(1) {
    order: 5;
  }
  .top-record .top-record__item:nth-child(2) {
    order: 4;
  }
  .top-record .top-record__item:nth-child(2) .top-record__item-price {
    gap: 6rem;
  }
  .top-record .top-record__item:nth-child(3) {
    order: 3;
  }
  .top-record .top-record__item:nth-child(3) .top-record__item-price {
    gap: 6rem;
  }
  .top-record .top-record__item:nth-child(4) {
    order: 2;
  }
  .top-record .top-record__item:nth-child(5) {
    order: 1;
  }
  .top-record .top-record__item:nth-child(5) .top-record__item-price {
    gap: 6rem;
  }
  .top-record .top-record__item-text {
    width: 33rem;
    text-align: center;
  }
  .top-record .top-record__content-text {
    padding-top: 6.2rem;
  }
}

.top-portfolio {
  position: relative;
  width: 100%;
  background-image: url(../images/pc/top-portfolio-bg.webp);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  padding-block: 20.8rem 60rem;
}
.top-portfolio .top-portfolio__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-portfolio .top-portfolio__title-wrapper .sec-title__en {
  font-size: 4.2rem;
  padding-bottom: 0.6rem;
}
.top-portfolio .top-portfolio__title-wrapper .sec-title__en::after {
  width: 41.3rem;
  background-image: url(../images/pc/portfolio-title-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-portfolio .top-portfolio__content {
  margin-top: 12rem;
  width: 100%;
}
.top-portfolio .top-portfolio__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.8rem;
}
.top-portfolio .top-portfolio__item {
  width: calc(33.3333333333% - 2.5333333333rem);
  display: flex;
  flex-direction: column;
}
.top-portfolio .top-portfolio__item-img {
  background: #a5a5a5;
  aspect-ratio: 400/260;
}
.top-portfolio .top-portfolio__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-portfolio .top-portfolio__item-companyname {
  font-size: 2.2rem;
  line-height: 1.1818181818;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-top: 1.8rem;
}
.top-portfolio .top-portfolio__item-description {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-top: 1.2rem;
  color: var(--gray);
}
.top-portfolio .slider-arrows-area {
  display: none;
}
.top-portfolio .top-portfolio__button {
  margin-top: 15rem;
  width: 45rem;
  margin-inline: auto;
  letter-spacing: 0.24em;
}
@media (hover: hover) and (pointer: fine) {
  .top-portfolio .top-portfolio__button:hover {
    color: #121212;
    background-color: var(--white);
    transition: 0.3s;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-portfolio {
    padding-block: 12rem 50rem;
  }
  .top-portfolio .top-portfolio__content {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-portfolio {
    padding-block: 12rem 50rem;
  }
  .top-portfolio .top-portfolio__content {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .top-portfolio {
    background-image: url(../images/sp/top-portfolio-bg.webp);
    padding-block: 15.4rem 61.8rem;
  }
  .top-portfolio .top-portfolio__content {
    margin-top: 8.6rem;
    padding-left: 3.4rem;
  }
  .top-portfolio .top-portfolio__item {
    width: 56.2rem;
    gap: 0rem;
  }
  .top-portfolio .top-portfolio__item + .top-portfolio__item {
    margin-left: 5.6rem;
  }
  .top-portfolio .top-portfolio__item-img {
    background: #a5a5a5;
    aspect-ratio: 563/366;
  }
  .top-portfolio .top-portfolio__item-companyname {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 2.4rem;
  }
  .top-portfolio .top-portfolio__item-description {
    font-size: 2.2rem;
    line-height: 1.6363636364;
    margin-top: 2rem;
    letter-spacing: 0.1em;
  }
  .top-portfolio .slider-arrows-area {
    display: block;
    margin-top: 7.8rem;
  }
  .top-portfolio .slider-arrows-area .slider-arrows {
    display: flex;
    gap: 10.8rem;
  }
  .top-portfolio .slider-arrows-area .slick-prev, .top-portfolio .slider-arrows-area .slick-next {
    position: static;
    transform: none;
    width: 2.1rem;
    height: 4.1rem;
  }
  .top-portfolio .slider-arrows-area .slick-prev::before, .top-portfolio .slider-arrows-area .slick-next::before {
    display: none;
  }
  .top-portfolio .slider-arrows-area .slick-prev {
    background-image: url(../images/common/arrow-left.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .top-portfolio .slider-arrows-area .slick-next {
    background-image: url(../images/common/arrow-right.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .top-portfolio .top-portfolio__button {
    margin-top: 7.8rem;
    width: 56.8rem;
    height: 13rem;
  }
}

.top-media {
  position: relative;
  max-width: 152rem;
  margin-inline: auto;
  padding-block: 10.4rem 7.4rem;
  background-image: url(../images/pc/top-media-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  margin-top: -41rem;
}
.top-media .top-media__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.top-media .top-media__title {
  font-size: 2.8rem;
  line-height: 1.5714285714;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--white);
  text-align: center;
}
.top-media .top-media__subtitle {
  width: 65rem;
  margin-inline: auto;
  margin-top: 4.8rem;
}
.top-media .top-media__subtext {
  width: 42.7rem;
  margin-inline: auto;
  margin-top: 5.2rem;
}
.top-media .top-media__button {
  margin-top: 5.8rem;
  width: 45.8rem;
  margin-inline: auto;
  letter-spacing: 0.24em;
}
@media (hover: hover) and (pointer: fine) {
  .top-media .top-media__button:hover {
    color: #121212;
    background-color: var(--white);
    transition: 0.3s;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .top-media {
    max-width: 140rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-media {
    max-width: 128rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-media {
    max-width: 128rem;
  }
}
@media screen and (max-width: 768px) {
  .top-media {
    max-width: 152rem;
    width: calc(100% - 5.8rem);
    padding-block: 10.6rem 9rem;
    background-image: url(../images/sp/top-media-bg.webp);
    z-index: 3;
    margin-top: -46.5rem;
  }
  .top-media .top-media__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .top-media .top-media__subtitle {
    width: 56.8rem;
    margin-inline: auto;
    margin-top: 5.7rem;
  }
  .top-media .top-media__subtext {
    width: 42.7rem;
    margin-inline: auto;
    margin-top: 5.7rem;
  }
  .top-media .top-media__button {
    margin-top: 5.8rem;
    width: 56.9rem;
    height: 13rem;
    letter-spacing: 0.268em;
  }
}

.top-business {
  position: relative;
  width: 100%;
  background-image: url(../images/pc/top-business-bg.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-block: 41rem 21.5rem;
  z-index: 2;
  margin-top: -18rem;
}
.top-business .top-business__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-business .top-business__title-wrapper .sec-title__en {
  font-size: 4.2rem;
  padding-bottom: 0.6rem;
}
.top-business .top-business__title-wrapper .sec-title__en::after {
  width: 41.3rem;
  background-image: url(../images/pc/business-title-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.top-business .top-business__content {
  margin-top: 14.6rem;
  width: 100%;
}
.top-business .top-business__list {
  display: flex;
  flex-direction: column;
  gap: 17.6rem;
}
.top-business .top-business__item {
  display: flex;
  align-items: flex-start;
}
.top-business .top-business__item.top-business__item-01 {
  justify-content: flex-end;
}
.top-business .top-business__item.top-business__item-01 .top-business__item-img {
  margin-top: 16.2rem;
  margin-left: -14rem;
}
.top-business .top-business__item.top-business__item-02 {
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-right: auto;
}
.top-business .top-business__item.top-business__item-02 .top-business__item-img {
  margin-top: 24rem;
  margin-right: -19.2rem;
}
.top-business .top-business__item-img {
  width: 99.6rem;
  aspect-ratio: 996/555;
}
.top-business .top-business__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-business .top-business__item-content {
  position: relative;
  width: 93.6rem;
  padding: 24.4rem 10.4rem 9.6rem 19.2rem;
  background: var(--white);
}
.top-business .top-business__item-title-wrapper {
  position: absolute;
  top: 5rem;
  left: -1.8rem;
  width: 47rem;
  height: 12.7rem;
  background: #B6AA96;
  padding-top: 3.2rem;
  display: flex;
  flex-direction: column;
  padding-left: 6rem;
}
.top-business .top-business__item-title-wrapper::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #8B7858;
  height: calc(tan(45deg) * 1.8rem);
  width: 1.9rem;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0%);
          clip-path: polygon(100% 0, 100% 100%, 0 0%);
}
.top-business .top-business__item-title {
  display: flex;
  flex-direction: column;
}
.top-business .top-business__item-title .top-business__item-title-en {
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 400;
  letter-spacing: 0.21em;
  color: var(--white);
}
.top-business .top-business__item-title .top-business__item-title-jp {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-top: 1.6rem;
}
.top-business .top-business__item-text {
  font-size: 3.2rem;
  line-height: 2.0625;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.top-business .top-business__item-button {
  width: 45rem;
  display: block;
  margin-left: auto;
  margin-top: 8rem;
  letter-spacing: 0.24em;
}
@media (hover: hover) and (pointer: fine) {
  .top-business .top-business__item-button:hover {
    color: #121212;
    background-color: var(--white);
    transition: 0.3s;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .top-business {
    padding-block: 34rem 20.5rem;
  }
  .top-business .top-business__content {
    margin-top: 10rem;
  }
  .top-business .top-business__item-content {
    width: 79.6rem;
    padding: 18rem 8rem 9.6rem 12rem;
  }
  .top-business .top-business__list {
    gap: 14rem;
  }
  .top-business .top-business__item.top-business__item-01 .top-business__item-img {
    margin-top: 14rem;
  }
  .top-business .top-business__item.top-business__item-02 .top-business__item-img {
    margin-top: 18rem;
  }
  .top-business .top-business__item-title-wrapper {
    top: 3rem;
    height: 11rem;
    padding-top: 2.2rem;
  }
  .top-business .top-business__item-text {
    font-size: 3rem;
  }
  .top-business .top-business__item-img {
    width: 84.6rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .top-business {
    padding-top: 30rem;
    padding-bottom: 18rem;
  }
  .top-business .top-business__content {
    margin-top: 10rem;
  }
  .top-business .top-business__item-content {
    width: 69.6rem;
    padding: 18rem 8rem 9.6rem 10rem;
  }
  .top-business .top-business__list {
    gap: 10rem;
  }
  .top-business .top-business__item.top-business__item-01 .top-business__item-img {
    margin-top: 12rem;
  }
  .top-business .top-business__item.top-business__item-02 .top-business__item-img {
    margin-top: 14rem;
  }
  .top-business .top-business__item-title-wrapper {
    top: 3rem;
    width: 42rem;
    height: 9rem;
    padding-top: 1.2rem;
    padding-left: 4rem;
  }
  .top-business .top-business__item-title .top-business__item-title-jp {
    font-size: 2.4rem;
  }
  .top-business .top-business__item-text {
    font-size: 2.4rem;
  }
  .top-business .top-business__item-img {
    width: 80rem;
  }
  .top-business .top-business__item-button {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-business {
    padding-top: 30rem;
    padding-bottom: 18rem;
  }
  .top-business .top-business__content {
    margin-top: 10rem;
  }
  .top-business .top-business__item-content {
    width: 69.6rem;
    padding: 18rem 8rem 9.6rem 10rem;
  }
  .top-business .top-business__list {
    gap: 10rem;
  }
  .top-business .top-business__item.top-business__item-01 .top-business__item-img {
    margin-top: 12rem;
  }
  .top-business .top-business__item.top-business__item-02 .top-business__item-img {
    margin-top: 14rem;
  }
  .top-business .top-business__item-title-wrapper {
    top: 3rem;
    width: 42rem;
    height: 9rem;
    padding-top: 1.2rem;
    padding-left: 4rem;
  }
  .top-business .top-business__item-title .top-business__item-title-jp {
    font-size: 2.4rem;
  }
  .top-business .top-business__item-text {
    font-size: 2.4rem;
  }
  .top-business .top-business__item-img {
    width: 80rem;
  }
  .top-business .top-business__item-button {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top-business {
    background-image: url(../images/sp/top-business-bg.webp);
    padding-block: 37rem 15rem;
    margin-top: -22rem;
  }
  .top-business .top-business__content {
    margin-top: 9.2rem;
  }
  .top-business .top-business__list {
    gap: 9.2rem;
  }
  .top-business .top-business__item {
    display: flex;
    flex-direction: column;
  }
  .top-business .top-business__item.top-business__item-01 {
    justify-content: flex-start;
  }
  .top-business .top-business__item.top-business__item-01 .top-business__item-img {
    margin-top: -9.4rem;
    margin-left: auto;
  }
  .top-business .top-business__item.top-business__item-02 {
    flex-direction: column;
    justify-content: flex-start;
    margin-right: auto;
  }
  .top-business .top-business__item.top-business__item-02 .top-business__item-img {
    margin-top: -9.4rem;
    margin-right: auto;
  }
  .top-business .top-business__item-img {
    width: 61.4rem;
    aspect-ratio: 614/555;
  }
  .top-business .top-business__item-content {
    width: 64.2rem;
    padding: 24.9rem 5.8rem 6rem 5.5rem;
    margin-left: 4.8rem;
  }
  .top-business .top-business__item-title-wrapper {
    top: 5rem;
    width: 56.7rem;
    height: 12.7rem;
    padding-top: 3rem;
  }
  .top-business .top-business__item-title .top-business__item-title-en {
    font-size: 2rem;
    line-height: 1.2;
  }
  .top-business .top-business__item-title .top-business__item-title-jp {
    font-size: 3.2rem;
  }
  .top-business .top-business__item-text {
    font-size: 2.7rem;
    line-height: 2.4444444444;
    letter-spacing: 0.08em;
  }
  .top-business .top-business__item-button {
    width: 47.2rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: 9.2rem;
  }
}

.investment-header {
  position: relative;
  z-index: 1;
}
.investment-header .breadcrumb {
  color: var(--white);
}
.investment-header .breadcrumb > span {
  color: var(--white);
}
.investment-header .breadcrumb > span a, .investment-header .breadcrumb > span span {
  color: var(--white);
}
.investment-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68.5rem;
  background: #B6AA96;
  z-index: -1;
}
.investment-header .investment-header__inner {
  position: relative;
  z-index: 2;
  padding-top: 11.5rem;
}
.investment-header .investment-header__title {
  font-size: 7.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.investment-header .investment-header__title br {
  display: none;
}
.investment-header .investment-header__title span {
  font-feature-settings: "palt";
}
.investment-header .investment-header__title span:nth-child(1) {
  margin-left: -4.2rem;
}
.investment-header .investment-header__title span:nth-child(2) {
  margin-right: -3.2rem;
}
.investment-header .investment-header__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-top: 7.2rem;
}
.investment-header .investment-header__col {
  width: 100%;
  aspect-ratio: 1280/766;
  margin-top: -16rem;
  background-image: url(../images/pc/investment-header__col.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 17rem;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.investment-header .investment-header__item {
  flex: 1;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
}
.investment-header .investment-header__item .sp {
  display: none;
}
.investment-header .investment-header__item .mi_12e {
  margin-inline: -0.12em;
}
.investment-header .investment-header__item:nth-child(3) {
  letter-spacing: 0;
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .investment-header .investment-header__item {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .investment-header .investment-header__col {
    margin-top: -10rem;
    padding-top: 10rem;
  }
  .investment-header .investment-header__item {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .investment-header::before {
    height: 68.5rem;
  }
  .investment-header .investment-header__inner {
    padding-top: 6rem;
  }
  .investment-header .investment-header__title {
    font-size: 6.8rem;
  }
  .investment-header .investment-header__title:nth-child(1) {
    margin-left: 0;
  }
  .investment-header .investment-header__text {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .investment-header .investment-header__col {
    margin-top: -10rem;
    padding-top: 10rem;
  }
  .investment-header .investment-header__item {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .investment-header::before {
    height: 73.5rem;
  }
  .investment-header .investment-header__inner {
    padding-top: 7.2rem;
  }
  .investment-header .investment-header__title {
    padding-left: 5rem;
    line-height: 1.5277777778;
  }
  .investment-header .investment-header__title br {
    display: block;
  }
  .investment-header .investment-header__text {
    padding-left: 5rem;
    font-size: 2.2rem;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 4.4rem;
  }
  .investment-header .investment-header__col {
    max-width: 70.8rem;
    width: 100%;
    aspect-ratio: 708/423;
    margin-inline: auto;
    margin-top: -3.5rem;
    background-image: url(../images/sp/investment-header__col.webp);
    padding-top: 12rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .investment-header .investment-header__item {
    flex: 1;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .investment-header .investment-header__item .sp {
    display: block;
  }
  .investment-header .investment-header__item .mi_12e {
    margin-inline: -0.1em;
  }
  .investment-header .investment-header__item:nth-child(3) {
    letter-spacing: 0.04em;
  }
}
.thought {
  padding-block: 15.5rem 0;
}
.thought__top {
  padding-block: 15.5rem 16.5rem;
  background: url(../images/pc/thought-bg.webp) no-repeat center center/cover;
  aspect-ratio: 1921/544;
}
.thought__title-wrapper {
  gap: 6rem;
  flex-direction: column;
  align-items: baseline;
}
.thought .sec-title__small {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.2em;
  font-weight: 600;
}
.thought .sec-title__ja {
  letter-spacing: 0.1em;
  padding-top: 0;
  font-family: var(--mincho-font);
  color: var(--white);
  font-size: 4.5rem;
  line-height: 2.0888888889;
}
.thought__content {
  padding-block: 19rem 20rem;
  background: url(../images/pc/thought-content-bg.webp) no-repeat center center/cover;
  aspect-ratio: 1533/2630;
  width: 100%;
}
.thought__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.thought__item {
  border-radius: 3rem;
  width: 100%;
  background: var(--white);
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thought__item:first-of-type {
  padding-bottom: 12.5rem;
}
.thought__item:first-of-type .thought__item-img {
  margin-top: 6.7rem;
  width: 71.1rem;
  aspect-ratio: 711/50;
}
.thought__item:nth-of-type(2) {
  padding-bottom: 11.5rem;
}
.thought__item:nth-of-type(2) .thought__item-img {
  margin-top: 1.7rem;
  width: 62.1rem;
  aspect-ratio: 621/325;
}
.thought__item:nth-of-type(3) {
  padding-bottom: 10.7rem;
}
.thought__item:nth-of-type(3) .thought__item-img {
  margin-top: 6rem;
  width: 65.7rem;
  aspect-ratio: 657/469;
}
.thought__item-num {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.6rem;
  line-height: 1;
  padding-bottom: 1.5rem;
  position: relative;
  color: var(--midasi-text);
}
.thought__item-num:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.6rem;
  height: 1px;
  background: var(--midasi-text);
}
.thought__item-title {
  margin-top: 5.2rem;
  font-weight: 400;
  text-align: center;
  color: var(--gray);
  font-size: 2.4rem;
  line-height: 2;
  position: relative;
}
.thought__item-title:after {
  content: "";
  background: url(../images/common/transparent-triangle.svg) no-repeat center center/contain;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: -5.5rem;
  width: 5.3rem;
  height: 2.2rem;
}
.thought__item-text {
  font-weight: 400;
  text-align: center;
  margin-top: 11.5rem;
  font-size: 1.6rem;
  line-height: 2.5;
  color: var(--gray);
}
.thought__item-title-span {
  display: inline-block;
  background: url(../images/common/creation-text.svg) no-repeat center center/contain;
  width: 15.4rem;
  height: 2.4rem;
  margin-top: -2.2rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .thought__top {
    padding-block: 7.6rem 9rem;
    background: url(../images/sp/thought-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/685;
  }
  .thought__title-wrapper {
    gap: 4.6rem;
    padding-left: 6rem;
  }
  .thought .sec-title__ja {
    font-size: 3.8rem;
    line-height: 2.0526315789;
  }
  .thought__content {
    padding-block: 15rem;
    background: url(../images/sp/thought-content-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/3417;
  }
  .thought__list {
    padding-inline: 2.6rem;
  }
  .thought__item:first-of-type {
    padding-bottom: 10rem;
  }
  .thought__item:first-of-type .thought__item-img {
    margin-top: 8rem;
    width: 58rem;
    aspect-ratio: 580/53;
  }
  .thought__item:nth-of-type(2) {
    padding-bottom: 10rem;
  }
  .thought__item:nth-of-type(2) .thought__item-img {
    margin-top: 4.7rem;
  }
  .thought__item:nth-of-type(3) {
    padding-bottom: 8.5rem;
  }
  .thought__item:nth-of-type(3) .thought__item-img {
    margin-top: 9.2rem;
  }
  .thought__item-title {
    margin-top: 5.5rem;
    font-size: 2.8rem;
    line-height: 1.8571428571;
  }
  .thought__item-title:after {
    bottom: -5.5rem;
  }
  .thought__item-text {
    margin-top: 11.8rem;
    font-size: 2.2rem;
    line-height: 2.0909090909;
  }
  .thought__item-title-span {
    display: inline-block;
    background: url(../images/sp/creation-text.svg) no-repeat center center/contain;
    width: 17rem;
    height: 2.7rem;
    margin-top: -2.2rem;
    vertical-align: middle;
  }
}

.cta.cta-about,
.cta.cta-common {
  background: url(../images/pc/cta-thouth-bg.webp) no-repeat center center/cover;
}
.cta.cta-about .cta__text-wrapper,
.cta.cta-common .cta__text-wrapper {
  text-align: left;
}
.cta.cta-about .cta__title,
.cta.cta-common .cta__title {
  font-family: var(--garamond-font);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.cta.cta-about .cta__text,
.cta.cta-common .cta__text {
  margin-top: 7rem;
  font-size: 3rem;
  line-height: 2.2;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cta.cta-about,
.cta.cta-common {
    background: url(../images/sp/cta-thouth-bg.webp) no-repeat center center/cover;
    padding-left: 8.5rem;
  }
  .cta.cta-about .cta__text,
.cta.cta-common .cta__text {
    margin-top: 5.8rem;
    font-size: 3rem;
  }
}

.page-about .about-recruitment .sec-title__wrapper .sec-title__en:after {
  width: 64.8rem;
  background: url(../images/pc/investment-coditions-title-line.webp) no-repeat center center/contain;
}
.page-about .about-recruitment .sec-title__wrapper .sec-title__ja {
  padding-block: 0;
  border: none;
}
.page-about .about-recruitment .recruitment__body {
  margin-block: 8rem 10rem;
}
.page-about .about-recruitment .recruitment__item {
  padding-block: 4.5rem;
  gap: 8rem;
}
.page-about .about-recruitment .recruitment__item:not(:first-of-type) {
  align-items: flex-start;
}
.page-about .about-recruitment .recruitment__item:not(:first-of-type) .recruitment__item-name {
  margin-top: 8rem;
}
.page-about .about-recruitment .recruitment__item-contents {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.page-about .about-recruitment .recruitment__item-content {
  gap: 7.3rem;
  align-items: center;
}
.page-about .about-recruitment .recruitment__item-name {
  width: 22.8rem;
}
.page-about .about-recruitment .recruitment__item-img {
  width: 17rem;
  height: 17rem;
}
.page-about .about-recruitment .recruitment__item-text {
  font-size: 2.6rem;
  line-height: 1.6923076923;
  color: var(--text-brown2);
}
.page-about .about-recruitment small {
  margin-top: 1.5rem;
  display: block;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  color: var(--text-brown2);
}
@media screen and (max-width: 768px) {
  .page-about .about-recruitment .sec-title__wrapper .sec-title__en:after {
    width: 31.1rem;
    background: url(../images/sp/investment-coditions-title-line.webp) no-repeat center center/contain;
  }
  .page-about .about-recruitment .recruitment__body {
    margin-block: 8.5rem 9rem;
  }
  .page-about .about-recruitment .recruitment__item {
    padding: 3rem 3.3rem 6rem 5rem;
    gap: 7.8rem;
  }
  .page-about .about-recruitment .recruitment__item:not(:first-of-type) {
    align-items: flex-start;
  }
  .page-about .about-recruitment .recruitment__item:not(:first-of-type) .recruitment__item-name {
    margin-top: 0rem;
  }
  .page-about .about-recruitment .recruitment__item-content {
    gap: 3.5rem;
  }
  .page-about .about-recruitment .badge {
    left: -7.5rem;
  }
  .page-about .about-recruitment small {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 1.9;
  }
  .page-about .about-recruitment .recruitment__item-text-wrapper-first small {
    font-size: 1.4rem;
    line-height: 1.8571428571;
  }
}

.page-company {
  background: var(--white2);
}
.page-company .company__title-wrapper {
  margin-top: 8rem;
}
.page-company .company__title-wrapper .sec-title__en {
  text-transform: uppercase;
}
.page-company .company__title-wrapper .sec-title__en:after {
  content: "";
  width: 50rem;
  background: url(../images/pc/company-title-line.webp) no-repeat center center/cover;
}
.page-company .company__info {
  margin-top: 10rem;
  background: var(--white);
  padding-block: 14.1rem 15rem;
}
.page-company .company__list {
  width: 100rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.page-company .company__item {
  display: flex;
  gap: 1rem;
}
.page-company .company__term {
  letter-spacing: 0.1em;
  width: 31.9rem;
  padding-block: 4rem;
  border-bottom: 1px solid var(--midasi-text);
  color: var(--midasi-text);
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
.page-company .company__desc {
  flex: 1;
  padding-block: 4rem;
  border-bottom: 1px solid var(--text-brown);
}
.page-company .company__desc p,
.page-company .company__desc a {
  letter-spacing: 0.1em;
  color: var(--text-brown);
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
.page-company .company__executive {
  display: flex;
  gap: 4.5rem;
}
.page-company .company__executive p {
  margin-top: 1rem;
}
.page-company .company__executive:first-of-type p {
  margin-top: 0rem;
}
.page-company .company__executive--title {
  width: 28rem;
}
.page-company .company__media-img {
  margin-top: 3rem;
}
.page-company .company__desc--icon {
  position: relative;
  display: block;
}
.page-company .company__desc--icon::after {
  content: "";
  background: url(../images/common/link-icon.webp) no-repeat center center/cover;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.page-company .company__map {
  margin-top: 15rem;
}
.page-company .company__map .company__map-wrapper {
  width: 100%;
  height: 44.4rem;
  position: relative;
  filter: grayscale(100%);
}
.page-company .company-cta {
  margin-top: 15rem;
  /* padding-block: rem(155) rem(150); */
  background: url(../images/pc/cta-company-bg.webp) no-repeat center center/cover;
}
.page-company .company-cta .cta__container {
  width: 100rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-company .company-cta .cta__text-wrapper {
  text-align: center;
}
.page-company .company-cta .cta__title {
  font-family: var(--garamond-font);
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.page-company .company-cta .cta__text {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 2.2222222222;
}
.page-company .company-cta .buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.page-company .company-cta .button {
  width: 47.6rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-company .company__title-wrapper {
    margin-top: 9rem;
  }
  .page-company .company__title-wrapper .sec-title__en:after {
    width: 43rem;
    background: url(../images/sp/company-title-line.webp) no-repeat center center/contain;
  }
  .page-company .company__info {
    margin-top: 9.3rem;
    padding-block: 13rem 9rem;
  }
  .page-company .company__list {
    width: 100%;
    padding-inline: 3.5rem;
  }
  .page-company .company__item {
    gap: 1.3rem;
  }
  .page-company .company__term {
    width: 15.8rem;
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
  .page-company .company__desc p,
.page-company .company__desc a {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
  .page-company .company__executive {
    display: flex;
    gap: 5.3rem;
  }
  .page-company .company__executive p {
    margin-top: 0.8rem;
  }
  .page-company .company__executive--title {
    width: 30rem;
  }
  .page-company .company__desc--icon::after {
    top: 50%;
    right: 0rem;
    transform: translateY(-50%);
  }
  .page-company .company__item--media {
    height: 29rem;
    position: relative;
  }
  .page-company .company__item--media img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 68rem;
    bottom: 4rem;
  }
  .page-company .company__item--media .company__media-link {
    width: 100%;
  }
  .page-company .company__item--media .company__desc--icon::after {
    top: 28%;
    right: 0rem;
    transform: translateY(-50%);
  }
  .page-company .company-cta {
    margin-top: 18.5rem;
    background: url(../images/sp/cta-company-bg.webp) no-repeat center center/cover;
  }
  .page-company .company-cta .cta__container {
    width: 100%;
    gap: 8rem;
  }
  .page-company .company-cta .cta__title {
    font-size: 3.2rem;
  }
  .page-company .company-cta .cta__text {
    margin-top: 5.8rem;
    font-size: 2.4rem;
    line-height: 2.0833333333;
  }
  .page-company .company-cta .buttons {
    flex-direction: column;
    gap: 7.5rem;
  }
  .page-company .company-cta .button {
    width: 56.9rem;
    margin-inline: auto;
  }
}

.page-feature .feature__fv {
  background-image: url(../images/pc/feature-fv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 0 29rem;
  margin-top: 11.2rem;
  position: relative;
}
.page-feature .feature__fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 52.6rem;
  background-image: url(../images/pc/feature-fv-title-bg.webp);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.page-feature .feature__fv .feature__fv-title {
  font-size: 4.4rem;
  line-height: 2.0909090909;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
  text-align: center;
  padding-block: 19rem 20rem;
  position: relative;
  z-index: 2;
}
.page-feature .feature__fv .feature__title-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 11.1rem;
}
.page-feature .feature__fv .feature__title-wrapper .feature__title-en {
  font-size: 4.2rem;
  color: var(--white);
}
.page-feature .feature__fv .feature__title-wrapper .feature__title-en::after {
  width: 23.4rem;
  background-image: url(../images/pc/feature-title-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.page-feature .feature__fv .feature__title-wrapper .feature__title-ja {
  padding-top: 2rem;
  color: var(--white);
  font-family: var(--mincho-font);
}
.page-feature .feature__wealth-management {
  position: relative;
  padding-bottom: 13.6rem;
  z-index: 2;
}
.page-feature .feature__wealth-management::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 13.6rem);
  background: #FAF9F6;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.page-feature .feature__wealth-management .feature__wealth-inner {
  padding-top: 15rem;
  padding-bottom: 15rem;
  border: 1px solid #B6AA96;
  background: var(--white);
}
.page-feature .feature__wealth-management .feature__wealth-title {
  font-size: 3.2rem;
  line-height: 1.5625;
  font-weight: 400;
  padding-bottom: 2.4rem;
  color: #B6AA96;
  text-align: center;
  letter-spacing: 0.12em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 1px solid #B6AA96;
}
.page-feature .feature__wealth-management .feature__wealth-content {
  padding-top: 7rem;
  max-width: 87rem;
  width: calc(100% - 4rem);
  margin-inline: auto;
  padding-left: 2rem;
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text {
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 400;
  color: #7D7675;
  letter-spacing: 0.068em;
  position: relative;
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text .sp {
  display: none;
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text .pc {
  display: block;
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #B6AA96;
  position: absolute;
  left: -2rem;
  top: 2.4rem;
  transform: translateY(-50%);
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text + .feature__wealth-text {
  margin-top: 6.5rem;
}
.page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-source {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
  color: #7D7675;
  letter-spacing: 0.1em;
  padding-top: 2.6rem;
}
.page-feature .feature__process {
  padding-bottom: 18rem;
  margin-top: -14.8rem;
  position: relative;
  z-index: 1;
}
.page-feature .feature__process .feature__process-inner {
  background: #FAF9F6;
  padding-block: 10rem 7.4rem;
}
.page-feature .feature__process .feature__process-item {
  width: calc(100% - 4rem);
  margin-inline: auto;
}
.page-feature .feature__process .feature__process-item .feature__process-header {
  max-width: 100rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-header-inner {
  flex: 1;
  padding-left: 5.8rem;
  border-left: 1px solid #B6AA96;
  padding-block: 0.8rem;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-num {
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.068em;
  color: #B6AA96;
  width: 16.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title {
  font-size: 3rem;
  line-height: 1.4666666667;
  font-weight: 400;
  color: var(--text-brown);
  letter-spacing: 0.12em;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title .sp {
  display: none;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list {
  margin-top: 2.4rem;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: 400;
  color: var(--text-brown);
  letter-spacing: 0.04em;
  position: relative;
  margin-block: -1.1rem;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li .sp {
  display: none;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li .pc {
  display: block;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li span {
  display: inline;
  border-bottom: 2px dashed #B6AA96;
}
.page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: absolute;
  left: -2rem;
  top: 2.4rem;
  transform: translateY(-50%);
  background: #B6AA96;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content {
  position: relative;
  padding: 12.8rem 0rem 6.4rem;
  margin-top: 12rem;
  background: var(--white);
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title {
  position: absolute;
  top: -4.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50.6rem;
  height: 11.8rem;
  border-radius: 62.5em;
  background: #B6AA96;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title .feature__process-item-content-title-main {
  font-size: 2.8rem;
  line-height: 1.5714285714;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title .feature__process-item-content-title-sub {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-main {
  max-width: 100rem;
  margin-inline: auto;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col {
  position: relative;
  max-width: 100rem;
  margin-inline: auto;
  margin-top: 5.8rem;
  display: flex;
  justify-content: space-between;
  gap: 9rem;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/pc/feature-process-close.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col .feature__process-item-content-box-col-title {
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-weight: 400;
  color: var(--text-brown);
  letter-spacing: 0.04em;
  background: #000;
  padding-block: 2rem;
  border: 1px solid #B6AA96;
  background: #F8F7F4;
  text-align: center;
  margin: 0;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col .feature__process-item-content-box-col-title a {
  position: relative;
  color: #B6AA96;
  border-bottom: 1px solid #B6AA96;
  line-height: 1.5;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col .feature__process-item-content-box-col-title a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: -1.4rem;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url(../images/common/blank.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-text {
  font-size: 2.4rem;
  line-height: 1.8333333333;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding-block: 3.4rem;
  color: var(--white);
  background: #B6AA96;
  text-align: center;
  width: 100%;
  margin: 0;
  margin-top: 7rem;
}
.page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-text br {
  display: none;
}
.page-feature .feature__process .feature__process-item--02 {
  margin-top: 15rem;
}
.page-feature .feature__process .feature__process-item--02 .feature__process-item-content {
  padding: 0;
  background: transparent;
}
.page-feature .feature__process .feature__process-item--02 .feature__process-item-content-box {
  max-width: 100rem;
  margin-inline: auto;
  position: relative;
}
.page-feature .feature__process .feature__process-item--02 .feature__process-item-content-box .feature__process-item-content-box-sub {
  position: absolute;
  right: -3.4rem;
  bottom: 4.2rem;
  width: 26rem;
  height: 26rem;
}
.page-feature .feature__process .feature__process-item--03 {
  margin-top: 20rem;
}
.page-feature .feature__process .feature__process-item--03 .feature__process-item-content {
  padding: 0;
  background: transparent;
}
.page-feature .feature__process .feature__process-item--03 .feature__process-item-content-box {
  max-width: 100rem;
  margin-inline: auto;
  position: relative;
}
.page-feature .feature__process .feature__process-item--03 .feature__process-item-content-box .feature__process-item-content-box-sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.4rem;
  width: 62.8rem;
  height: 42.6rem;
}
.page-feature .cta.cta-common {
  background: url(../images/pc/cta-feature-bg.webp) no-repeat center center/cover;
}
.page-feature .cta.cta-common .cta__container {
  padding-bottom: 22rem;
  align-items: flex-end;
}
.page-feature .cta.cta-common .cta__text {
  margin-top: 5.8rem;
}
.page-feature .cta.cta-common .buttons {
  transform: translateY(6.8rem);
}
@media screen and (max-width: 768px) {
  .page-feature .feature__fv {
    background-image: url(../images/sp/feature-fv-bg.webp);
    padding-block: 0 8.9rem;
    margin-top: 11rem;
  }
  .page-feature .feature__fv::before {
    height: 48.4rem;
  }
  .page-feature .feature__fv .feature__fv-title {
    font-size: 4.2rem;
    line-height: 1.9047619048;
    padding-block: 13.4rem 14.8rem;
  }
  .page-feature .feature__fv .feature__title-wrapper {
    padding-top: 8.65rem;
  }
  .page-feature .feature__wealth-management {
    padding-bottom: 15rem;
    width: calc(100% - 4rem);
    margin-inline: auto;
  }
  .page-feature .feature__wealth-management::before {
    height: calc(100% - 31.3rem);
  }
  .page-feature .feature__wealth-management .feature__wealth-inner {
    padding-top: 9.2rem;
    padding-bottom: 8.3rem;
  }
  .page-feature .feature__wealth-management .feature__wealth-content {
    width: calc(100% - 7.6rem);
  }
  .page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text {
    white-space: nowrap;
  }
  .page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text .sp {
    display: block;
  }
  .page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-text .pc {
    display: none;
  }
  .page-feature .feature__wealth-management .feature__wealth-content .feature__wealth-source {
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 2rem;
  }
  .page-feature .feature__process {
    padding-bottom: 15rem;
    margin-top: 0rem;
  }
  .page-feature .feature__process .feature__process-inner {
    padding-block: 14.4rem 9rem;
  }
  .page-feature .feature__process .feature__process-item {
    width: calc(100% - 3rem);
    margin-inline: auto;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-header-inner {
    display: contents;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-num {
    display: none;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title {
    position: relative;
    width: 58.4rem;
    margin-inline: auto;
    min-height: 9.2rem;
    padding-left: 17.1rem;
    padding-block: 0.1rem;
    font-size: 3.6rem;
    line-height: 1.4722222222;
    margin-block: -0.85rem;
    display: flex;
    align-items: center;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title::before {
    content: attr(data-number);
    position: absolute;
    left: 0rem;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    word-wrap: 10.8rem;
    display: flex;
    align-items: center;
    font-size: 4.6rem;
    line-height: 1;
    font-weight: 400;
    color: #B6AA96;
    letter-spacing: 0.068em;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10.8rem;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 1.7rem);
    background: #B6AA96;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-title .sp {
    display: block;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list {
    max-width: calc(100% - 3.4rem);
    margin-inline: auto;
    margin-top: 7.2rem;
    padding-left: 2.7rem;
    gap: 3rem;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li {
    font-size: 2.2rem;
    line-height: 2.1818181818;
    letter-spacing: 0;
    margin-block: -1.3rem;
    white-space: nowrap;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li .sp {
    display: block;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li .pc {
    display: none;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li span {
    display: inline;
    border-bottom: 1px dashed #B6AA96;
  }
  .page-feature .feature__process .feature__process-item .feature__process-header .feature__process-list li::before {
    content: "";
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    position: absolute;
    left: -2.7rem;
    top: 2.6rem;
    transform: translateY(-50%);
    background: #B6AA96;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content {
    padding: 16.3rem 0rem 7.4rem;
    margin-top: 13.7rem;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title {
    position: absolute;
    top: -6rem;
    width: 56rem;
    height: 13.1rem;
    gap: 1.8rem;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title .feature__process-item-content-title-main {
    font-size: 3rem;
    line-height: 1.4666666667;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-title .feature__process-item-content-title-sub {
    font-size: 2rem;
    line-height: 2;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-main {
    width: calc(100% - 5.6rem);
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col {
    width: calc(100% - 9rem);
    margin-top: 2.8rem;
    gap: 7rem;
    flex-direction: column;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col::before {
    width: 4rem;
    height: 4rem;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-col .feature__process-item-content-box-col-title {
    flex: none;
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.9090909091;
    padding-block: 3.5rem;
    margin: 0;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-text {
    font-size: 2.8rem;
    line-height: 1.5714285714;
    padding-block: 2.3rem 2.8rem;
    margin-top: 7.4rem;
  }
  .page-feature .feature__process .feature__process-item .feature__process-item-content .feature__process-item-content-text br {
    display: block;
  }
  .page-feature .feature__process .feature__process-item--02 {
    margin-top: 14.8rem;
  }
  .page-feature .feature__process .feature__process-item--02 .feature__process-item-content {
    padding-top: 8.5rem;
    padding-bottom: 0;
    margin-top: 0;
  }
  .page-feature .feature__process .feature__process-item--02 .feature__process-item-content .feature__process-item-content-box {
    width: 100%;
  }
  .page-feature .feature__process .feature__process-item--02 .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-main {
    max-width: 100%;
    width: 100%;
  }
  .page-feature .feature__process .feature__process-item--02 .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-sub {
    position: absolute;
    right: 0.8rem;
    bottom: -1.9rem;
    width: 25rem;
    height: 25rem;
  }
  .page-feature .feature__process .feature__process-item--03 {
    margin-top: 14.9rem;
  }
  .page-feature .feature__process .feature__process-item--03 .feature__process-item-content {
    padding: 0;
    background: transparent;
    margin-top: 8rem;
  }
  .page-feature .feature__process .feature__process-item--03 .feature__process-item-content .feature__process-item-content-box {
    width: 100%;
  }
  .page-feature .feature__process .feature__process-item--03 .feature__process-item-content .feature__process-item-content-box .feature__process-item-content-box-main {
    max-width: 100%;
    width: 100%;
  }
  .page-feature .cta.cta-common {
    background: url(../images/sp/cta-feature-bg.webp) no-repeat center center/cover;
  }
  .page-feature .cta.cta-common .cta__container {
    padding-bottom: 15rem;
    align-items: flex-start;
  }
  .page-feature .cta.cta-common .cta__text {
    margin-top: 5.8rem;
  }
  .page-feature .cta.cta-common .buttons {
    margin-top: 0;
    transform: translateY(0rem);
  }
}

.recruit {
  /*  &__button {
    width: 100%;
    background: #121212;
    border: 1px solid #121212;
    color: $white;
    padding: rem(25) rem(0);
    text-align: center;
    font-size: rem(18);
    line-height: 1;
    transition: 0.3s;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: rem(-20);
      width: 37px;
      height: 1px;
      background: $midasi-text;
      background-color: $white;
    }
    @media (hover: hover) and (pointer: fine) {
      &:hover {
        color: #121212;
        background-color: $white;
        transition: 0.3s;
      }
    }
  } */
}
.recruit__header-inner {
  background: url(../images/pc/recruit-parent-bg.webp) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 1920/530;
}
.recruit__header {
  padding-top: 14rem;
  padding-bottom: 12.1rem;
}
.recruit__header .recruit__subtitle--ja {
  letter-spacing: 0.2em;
}
.recruit__header .recruit__subtitle--disc {
  letter-spacing: 0.1em;
}
.recruit__buttons-wrapper {
  margin-block: 20rem;
}
.recruit__buttons {
  display: flex;
  gap: 5rem;
}
@media (hover: hover) and (pointer: fine) {
  .recruit .button:hover {
    color: #121212;
    background-color: var(--white);
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .recruit__header-inner {
    background: url(../images/sp/recruit-parent-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/632;
  }
  .recruit__header {
    padding-top: 14.9rem;
    padding-bottom: 0rem;
    padding-left: 8.6rem;
  }
  .recruit__buttons-wrapper {
    margin-block: 9.1rem 15rem;
  }
  .recruit__buttons {
    flex-direction: column;
    gap: 7.5rem;
  }
  .recruit__button {
    width: 58.6rem;
    margin-inline: auto;
  }
}

.sub-recruit__container {
  position: relative;
  margin-top: 15rem;
}
.sub-recruit__body {
  margin-top: 10rem;
}
.sub-recruit__title {
  position: relative;
  top: 3.7rem;
  font-size: 2.4rem;
  line-height: 1;
  padding: 2.4rem 7.5rem;
  display: block;
  background: var(--midasi-text);
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
}
.sub-recruit__list-wrapper {
  background: var(--white2);
  padding-block: 18rem 10rem;
}
.sub-recruit__list {
  width: 100%;
  padding-inline: 10.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.8rem;
}
.sub-recruit__item {
  padding: 5rem 3.5rem 3rem;
  background: var(--white);
  border-radius: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-recruit__item img {
  margin-top: 4.5rem;
  width: 18rem;
  margin-inline: auto;
}
.sub-recruit__item-title {
  font-size: 2rem;
  line-height: 1;
  color: var(--midasi-text);
  white-space: nowrap;
}
.sub-recruit__item-img-wrapper {
  height: 12rem;
}
.sub-recruit__item-text {
  margin-top: 4.5rem;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--text-brown2);
}
.sub-recruit__link-wrapper {
  margin-top: 10rem;
}
@media (768px < width < 1440px) {
  .sub-recruit__list {
    padding-inline: 5rem;
    gap: 3rem;
  }
  .sub-recruit__item {
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-recruit__body {
    margin-top: 7rem;
  }
  .sub-recruit__title {
    font-size: 2.6rem;
    padding: 2.1rem 4.4rem;
  }
  .sub-recruit__list-wrapper {
    padding-block: 19rem 14.5rem;
  }
  .sub-recruit__list {
    padding-inline: 6rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    grid-template-columns: 29.1rem 29.1rem;
  }
  .sub-recruit__item {
    padding: 4.5rem 3rem 3rem;
  }
  .sub-recruit__item img {
    margin-top: 5rem;
    width: 65%;
    display: block;
  }
  .sub-recruit__item-title {
    font-size: 2.4rem;
  }
  .sub-recruit__item-img-wrapper {
    height: 11.5rem;
  }
  .sub-recruit__item-text {
    margin-top: 3.6rem;
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
  .sub-recruit__link-wrapper {
    margin-top: 9.3rem;
  }
}

.faq {
  background: var(--white2);
  padding-block: 15rem;
}
.faq__content {
  margin-top: 12rem;
}
.faq__col {
  flex-direction: column;
  gap: 6rem;
}
.faq__item {
  background: var(--midasi-text);
}
.faq__item dt {
  padding-block: 2.5rem;
  font-size: 2.4rem;
  line-height: 1.8333333333;
  color: var(--white);
  max-width: min(1000px, 78%);
  margin-inline: auto;
  letter-spacing: 0.1em;
}
.faq__item p {
  text-align: justify;
  letter-spacing: 0.1em;
  color: var(--text-brown);
  max-width: min(1000px, 78%);
  margin-inline: auto;
  font-size: 2rem;
  line-height: 2.1;
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.faq__item p:not(:first-of-type) {
  margin-top: 1rem;
}
.faq__item p::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 50%;
  background: var(--midasi-text);
  flex-shrink: 0;
  margin-top: 1.2rem;
  margin-right: 0.5rem;
}
.faq__text-wrapper {
  background: var(--white);
  padding-block: 5rem;
}
.faq__item--last p:first-of-type::before {
  content: none;
}
.faq .pt-60::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-block: 14.5rem;
  }
  .faq__content {
    margin-top: 7.5rem;
    margin-inline: 4rem;
  }
  .faq__col {
    gap: 3.8rem;
  }
  .faq__item dt {
    padding-block: 2.2rem;
    max-width: 100%;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .faq__item p {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 2.0909090909;
  }
  .faq__item p:not(:first-of-type) {
    margin-top: 2rem;
  }
  .faq__text-wrapper {
    padding-block: 5.5rem;
    padding-inline: 3.9rem;
  }
  .faq .pt-60 {
    padding-left: 0rem;
  }
}

.flow {
  padding-block: 20rem;
}
.flow .flow__disc {
  margin-top: 8rem;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  color: var(--text-brown2);
}
.flow .flow__disc--small {
  margin-top: 2.5rem;
  font-size: 1.4rem;
  line-height: 3.4285714286;
  color: var(--text-brown2);
  text-align: center;
}
.flow .flow__list-wrapper {
  margin-top: 16rem;
}
.flow .flow__list {
  flex-direction: column;
  gap: 10rem;
}
.flow .flow__item {
  display: flex;
  align-items: center;
  gap: 4.2rem;
}
.flow .flow__item:last-of-type .flow__item-title::before {
  content: none;
}
.flow .flow__item-title {
  width: 41.8rem;
  border: 1px solid var(--midasi-text);
  background: var(--baige);
  text-align: center;
  padding-block: 2rem;
  font-size: 2rem;
  line-height: 1;
  color: #afa498;
  position: relative;
}
.flow .flow__item-title::before {
  content: "";
  display: block;
  background: url(../images/common/recruit-flow-icon.webp) no-repeat center center/contain;
  width: 3.7rem;
  height: auto;
  aspect-ratio: 37/41;
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
}
.flow .flow__item-text {
  flex: 1;
  color: var(--text-brown);
  font-size: 1.8rem;
  line-height: 1.8888888889;
  letter-spacing: 0.1em;
}
.flow .flow__item-text--small {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flow .flow__item-text--small span {
  display: block;
  font-size: 1.4rem;
  line-height: 2.4285714286;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 15.1rem 14.1rem;
  }
  .flow .flow__disc {
    margin-top: 6.7rem;
  }
  .flow .flow__disc--small {
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 2.4;
  }
  .flow .flow__list-wrapper {
    margin-top: 7.1rem;
    padding-inline: 6.65rem;
  }
  .flow .flow__list {
    gap: 11rem;
  }
  .flow .flow__item {
    flex-direction: column;
    gap: 3rem;
  }
  .flow .flow__item:nth-child(even) .flow__item-title::before {
	bottom: -13rem;
}
  .flow .flow__item-title::before {
    bottom: -17rem;
  }
  .flow .flow__item-title {
    width: 100%;
    font-size: 2.6rem;
  }
  .flow .flow__item-text {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    text-align: center;
  }
  .flow .flow__item-text--small {
    gap: 1.4rem;
  }
  .flow .flow__item-text--small span {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.ir-team .recruit__header-inner,
.investment-team .recruit__header-inner {
  background: url(../images/pc/recruit-child-bg.webp) no-repeat center center/cover;
  aspect-ratio: 1920/530;
}
.ir-team .sub-recruit__title-wrapper .sec-title__ja,
.investment-team .sub-recruit__title-wrapper .sec-title__ja {
  letter-spacing: 0.08em;
  border-bottom: none;
}
.ir-team .sub-recruit__title-wrapper .sec-title__ja::after,
.investment-team .sub-recruit__title-wrapper .sec-title__ja::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 42.4rem;
  background: url(../images/pc/recruit-title-line.webp) no-repeat center center/cover;
  height: 0.2rem;
}
.ir-team .cta,
.investment-team .cta {
  background: url(../images/pc/cta-recruit-bg.webp) no-repeat center center/cover;
}
.ir-team .cta .buttons,
.investment-team .cta .buttons {
  min-width: 50rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.ir-team .cta .buttons a,
.investment-team .cta .buttons a {
  padding-inline: 5rem;
}
@media screen and (max-width: 768px) {
  .ir-team .recruit__header-inner,
.investment-team .recruit__header-inner {
    background: url(../images/sp/recruit-child-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/773;
  }
  .ir-team .cta,
.investment-team .cta {
    background: url(../images/sp/cta-recruit-bg.webp) no-repeat center center/cover;
    aspect-ratio: 750/666;
  }
  .ir-team .cta .buttons,
.investment-team .cta .buttons {
    width: 64.8rem;
    margin-inline: auto;
  }
  .ir-team .cta .button__text,
.investment-team .cta .button__text {
    letter-spacing: 0.2em;
    line-height: 150%;
  }
}

.investment-team {
  /* .recruit__header-inner {
    background: url(../images/pc/recruit-child-bg.webp) no-repeat center center /
      cover;
  } */
}
.investment-team .sub-recruit__item:nth-of-type(6) img, .investment-team .sub-recruit__item:nth-of-type(7) img {
  margin-top: 3rem;
  width: 90%;
  margin-inline: auto;
}
.investment-team .sub-recruit__link {
  max-width: min(1280px, 86%);
  margin-inline: auto;
  padding-block: 10rem;
  margin-top: 10rem;
  border: 2px solid var(--midasi-text);
}
.investment-team .sub-recruit__link .sub-recruit__link-wrapper {
  max-width: min(1000px, 90%);
  margin-inline: auto;
  gap: 5rem;
  justify-content: space-between;
  margin-top: 0;
}
.investment-team .sub-recruit__link .sub-recruit__link-title {
  padding-top: 2.5rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text-brown);
}
.investment-team .sub-recruit__link .sub-recruit__link-list {
  max-width: 73rem;
  width: 100%;
  flex: 1;
}
.investment-team .sub-recruit__link .sub-recruit__link-item {
  border-bottom: 1px solid var(--midasi-text);
}
@media (hover: hover) and (pointer: fine) {
  .investment-team .sub-recruit__link .sub-recruit__link-item:hover a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
.investment-team .sub-recruit__link .sub-recruit__link-item-link {
  max-width: 73rem;
  width: 100%;
  padding-inline: 1.5rem;
  padding-block: 2.5rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease;
  position: relative;
  display: block;
}
.investment-team .sub-recruit__link .sub-recruit__link-item-link::after {
  content: "";
  background: url(../images/common/link-icon.webp) no-repeat center center/cover;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .investment-team .sub-recruit__item:nth-of-type(6) img, .investment-team .sub-recruit__item:nth-of-type(7) img {
    margin-top: 3rem;
    width: 85%;
    margin-inline: auto;
  }
  .investment-team .sub-recruit__link {
    max-width: 100%;
    background: var(--white2);
    border: none;
  }
  .investment-team .sub-recruit__link .sub-recruit__link-wrapper {
    max-width: 100%;
    flex-direction: column;
    margin-inline: 3.2rem;
    border: 2px solid var(--midasi-text);
    padding-block: 9.5rem 7rem;
    gap: 5rem;
    justify-content: space-between;
  }
  .investment-team .sub-recruit__link .sub-recruit__link-title {
    padding-top: 0;
    font-size: 3rem;
    line-height: 1.5;
    text-align: center;
  }
  .investment-team .sub-recruit__link .sub-recruit__link-list {
    max-width: 100%;
    padding-inline: 5.7rem;
  }
  .investment-team .sub-recruit__link .sub-recruit__link-item-link {
    max-width: 100%;
    padding-inline: 1.5rem;
    font-size: 2.2rem;
  }
}

.ir-team .sub-recruit__item:nth-of-type(5) img, .ir-team .sub-recruit__item:nth-of-type(6) img {
  margin-top: 3rem;
  width: 90%;
  margin-inline: auto;
}
.ir-team .sub-recruit__list-wrapper {
  padding-bottom: 15rem;
}
.ir-team .flow {
  padding-top: 16rem;
}
.ir-team .recruitment__item {
  position: relative;
}
.ir-team .recruitment__item-name {
  position: static;
}
@media screen and (max-width: 768px) {
  .ir-team .sub-recruit__item:nth-of-type(5) img, .ir-team .sub-recruit__item:nth-of-type(6) img {
    width: 85%;
  }
  .ir-team .sub-recruit__list-wrapper {
    padding-bottom: 15.5rem;
  }
  .ir-team .flow {
    padding-top: 14.6rem;
  }
  .ir-team .recruitment .badge {
    top: 3rem;
  }
}

.recruitment {
  margin-top: 14.7rem;
}
.recruitment__body {
  margin-top: 6.3rem;
}
.recruitment__title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.2666666667;
  color: var(--text-brown2);
}
.recruitment__title small {
  font-size: 2rem;
  line-height: 1.9;
  color: var(--text-brown2);
}
.recruitment__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 10rem;
}
.recruitment__item {
  display: flex;
  align-items: center;
  gap: 6.6rem;
  padding-block: 6rem 6.6rem;
  background-color: var(--white2);
  border: 1px solid var(--midasi-text);
}
.recruitment__item-name {
  width: 22rem;
  position: relative;
}
.recruitment__item-text-wrapper {
  flex: 1;
}
.recruitment__item-text {
  letter-spacing: 0.1em;
  color: var(--text-brown2);
  font-size: 2rem;
  line-height: 2.2;
  /* line-height: 1; */
}
.recruitment__item-text:not(:first-of-type) {
  margin-top: 1.5rem;
}
.recruitment .badge {
  display: inline-flex;
  align-items: center;
  padding-block: 1.5rem;
  padding-inline: 4.5rem 2.5rem;
  background-color: var(--midasi-text);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
  left: -2rem;
  font-weight: 600;
}
.recruitment .badge::after {
  content: "";
  position: absolute;
  right: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2.7rem solid transparent;
  border-bottom: 2.7rem solid transparent;
  border-left: 1.8rem solid var(--midasi-text);
}
@media screen and (max-width: 768px) {
  .recruitment__title {
    font-size: 3.4rem;
    line-height: 1.1176470588;
  }
  .recruitment__title small {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
  .recruitment__list {
    margin-inline: 2.5rem;
  }
  .recruitment__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 3.3rem 5.3rem;
    gap: 7.8rem;
  }
  .recruitment__item-name {
    width: 24.2rem;
  }
  .recruitment .badge {
    padding-block: 1.35rem;
    top: 0;
    transform: translateY(0%);
    left: -2.5rem;
  }
  .recruitment .badge::after {
    content: "";
    position: absolute;
    right: -1.6rem;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2.615rem solid transparent;
    border-bottom: 2.615rem solid transparent;
    border-left: 1.877rem solid var(--midasi-text);
  }
}

.list-style-circle {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.list-style-circle::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 50%;
  background: var(--midasi-text);
  flex-shrink: 0;
  margin-top: 1.5rem;
  margin-right: 0.5rem;
}

.layer-contents-article {
  padding: 5rem 0 10rem 0;
}

.list04 {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.list04 a {
  display: block;
  position: relative;
  padding: 1rem 0;
  margin: 0 0 0 1.6rem;
  font-size: max(1.8rem, 12px);
  font-weight: 500;
}
.list04 a::before {
  content: "・";
  margin: 0 0 0 -1.6rem;
}
.list04 a::after {
  content: url(../images/common/icon-pdf.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 768px) {
  .list04 {
    padding-block: 1.5rem;
    padding-inline: 3rem;
  }
  .list04 a {
    padding: 2rem 3rem 2rem 0;
  }
  .list04 a::after {
    transform: translateY(-60%);
  }
}

.history {
  background: var(--white2);
}
.history .history__title-wrapper {
  text-align: center;
  padding-top: 10rem;
}
.history .history__title-wrapper .sec-title__en {
  text-transform: uppercase;
}
.history .history__title-wrapper .sec-title__en:after {
  width: 22.9rem;
  background: url(../images/pc/page-history-line.webp) no-repeat center center/contain;
}
.history .history__subtitle--disc {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.018rem;
  color: var(--text);
  padding-top: 10rem;
  letter-spacing: 0.1em;
}
.history .history__content {
  position: relative;
  padding-block: 11.2rem 30.5rem;
  margin-top: 12.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8.8rem;
}
.history .history__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/pc/history-allow-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 28rem;
  height: 76.8rem;
  z-index: 1;
}
.history .history__item {
  display: flex;
  align-items: flex-start;
  gap: 13.6rem;
  position: relative;
  z-index: 2;
}
.history .history__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.history .history__item.history__item-02 {
  padding-top: 0.8rem;
}
.history .history__item.history__item-03 .history__item-num {
  color: var(--midasi-text);
}
.history .history__item.history__item-03 .history__item-num::after {
  display: none;
}
.history .history__item-num {
  width: 28rem;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.0068rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.history .history__item-num::before {
  content: "";
  position: absolute;
  width: 12.6rem;
  right: -8.8rem;
  background: #989898;
  height: 1px;
  z-index: 1;
}
.history .history__item-num::after {
  content: "";
  position: absolute;
  top: calc(100% + 7.6rem);
  width: 3.95rem;
  height: 4.25rem;
  background-image: url(../images/pc/history-allow.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.history .history__item-title {
  font-size: 3rem;
  line-height: 4.4rem;
  letter-spacing: 0.012rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.08em;
}
.history .history__item-text {
  font-size: 1.8rem;
  line-height: 4rem;
  letter-spacing: 0.004rem;
  color: var(--text);
  padding-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .history .history__inner {
    padding-inline: 2.2rem;
  }
  .history .history__title-wrapper {
    padding-top: 9rem;
  }
  .history .history__subtitle--disc {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    padding-top: 9rem;
  }
  .history .history__content {
    position: relative;
    padding-block: 5rem 27rem;
    margin-top: 9rem;
    gap: 7.5rem;
  }
  .history .history__content::before {
    background-image: url(../images/sp/history-allow-bg.webp);
    width: 18rem;
    height: 91.4rem;
  }
  .history .history__item {
    gap: 6rem;
  }
  .history .history__item.history__item-01 .history__item-num::after {
    top: 17.5rem;
  }
  .history .history__item.history__item-02 {
    padding-top: 0rem;
  }
  .history .history__item.history__item-02 .history__item-num::after {
    top: 15rem;
  }
  .history .history__item-body {
    flex: 1;
    padding-top: 1.8rem;
  }
  .history .history__item-num {
    width: 18rem;
  }
  .history .history__item-num::before {
    width: 5.6rem;
    right: -4rem;
    margin-top: 1rem;
  }
  .history .history__item-text {
    font-size: 2.2rem;
    line-height: 4.8rem;
    padding-top: 2.3rem;
  }
}

.member {
  padding-bottom: 10rem;
}
.member .member__title-wrapper {
  text-align: center;
  padding-top: 5rem;
}
.member .member__title-wrapper .sec-title__en:after {
  width: 29rem;
  background-image: url(../images/pc/page-member-line.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.member .member__title-wrapper .sec-title__ja {
  padding-top: 2.2rem;
  font-family: var(--mincho-font);
}
.member .member__inner {
  max-width: 160rem;
  width: 90%;
}
.member .member__title-link {
  display: flex;
  justify-content: center;
  gap: 4.8rem;
  padding-top: 9.6rem;
  max-width: 100rem;
  width: 100%;
  margin-inline: auto;
}
.member .member__title-link-item {
  width: calc(50% - 1.2rem);
  font-size: 1.8rem;
  line-height: 2.4444444444;
  letter-spacing: 0.24em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.3rem;
  background: #F3F1EE;
  border: 1px solid #B6AA96;
  color: #B6AA96;
}
.member .member__title-link-item:hover {
  background: #2F2725;
  color: var(--white);
  border-color: #2F2725;
}
.member .member__title-link-item.active {
  background: #2F2725;
  color: var(--white);
  border-color: #2F2725;
}
.member .member__subtitle--disc {
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 0.068em;
  color: var(--text-brown2);
  text-align: center;
  padding-top: 6.8rem;
}
.member .member__subtitle--disc br {
  display: none;
}
.member .member__content {
  padding-top: 6.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12.6rem 5rem;
}
.member .member__content-item {
  width: calc(25% - 3.75rem);
  display: flex;
  flex-direction: column;
}
.member .member__content-item .member__content-item-img {
  width: 100%;
  aspect-ratio: 359/275;
  overflow: hidden;
  background: #000;
}
.member .member__content-item .member__content-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.member .member__content-item .member__content-item-sp-body {
  display: contents;
}
.member .member__content-item .member__content-item-body {
  padding-top: 2.5rem;
  height: 34rem;
}
.member .member__content-item .member__content-item-role {
  font-size: 1.8rem;
  line-height: 2.4444444444;
  letter-spacing: 0.14em;
  color: var(--text-brown);
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  /*  &:not(:empty):after {
       content: "＊";
   } */
}
.member .member__content-item .member__content-item-role span {
  font-size: 0.5em;
  margin-top: 0.5em;
}
.member .member__content-item .member__content-item-name {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.member .member__content-item .member__content-item-name .member__content-item-name-ja {
  font-size: 3rem;
  line-height: 1.6;
  letter-spacing: 0.068em;
  color: var(--text-brown);
  font-weight: 400;
  white-space: nowrap;
}
.member .member__content-item .member__content-item-name .member__content-item-name-en {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.14em;
  color: var(--text-brown);
  font-weight: 400;
  white-space: nowrap;
  width: 100%;
}
.member .member__content-item .member__content-item-text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.068em;
  color: var(--text-brown);
  font-weight: 400;
  padding-top: 2.8rem;
}
.member .member__content-item .member__content-item-company {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.068em;
  color: var(--text-brown);
  font-weight: 400;
  padding-top: 1rem;
}
.member .member__content-item .member__content-item-works {
  margin-top: 2.4rem;
  border-top: 1px solid #B6AA96;
  padding-top: 2.4rem;
}
.member .member__content-item .member__content-item-works p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.068em;
  color: var(--text-brown);
  font-weight: 400;
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .member .member__content-item .member__content-item-name {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-ja {
    white-space: normal;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-en {
    white-space: normal;
    width: 100%;
  }
  .member .member__content-item .member__content-item-body {
    height: 39rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .member .member__content-item .member__content-item-name {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-ja {
    white-space: normal;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-en {
    white-space: normal;
    width: 100%;
  }
  .member .member__content-item .member__content-item-text {
    font-size: 1.5rem;
  }
  .member .member__content-item .member__content-item-company {
    font-size: 1.3rem;
  }
  .member .member__content-item .member__content-item-body {
    height: 39rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .member .member__inner {
    width: 95%;
  }
  .member .member__content {
    gap: 8rem 3rem;
  }
  .member .member__content-item {
    width: calc(33.3333333333% - 2rem);
  }
  .member .member__content-item .member__content-item-role {
    font-size: 2.2rem;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-ja {
    font-size: 3.4rem;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-en {
    font-size: 2.2rem;
  }
  .member .member__content-item .member__content-item-body {
    height: 38rem;
  }
  .member .member__content-item .member__content-item-text {
    font-size: 1.8rem;
  }
  .member .member__content-item .member__content-item-company {
    font-size: 1.6rem;
  }
  .member .member__content-item .member__content-item-works p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .member .member__title-wrapper {
    padding-top: 10rem;
  }
  .member .member__inner {
    width: 100%;
  }
  .member .member__title-link {
    max-width: inherit;
    gap: 0rem;
    padding-top: 9rem;
  }
  .member .member__title-link-item {
    width: 50%;
    font-size: 2.6rem;
    line-height: 1.1538461538;
    letter-spacing: 0.268em;
    padding-block: 4.9rem;
  }
  .member .member__subtitle--disc {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    padding-top: 9rem;
  }
  .member .member__subtitle--disc br {
    display: block;
  }
  .member .member__content {
    padding-top: 9rem;
    gap: 7.8rem 5rem;
  }
  .member .member__content-item {
    width: 100%;
    padding-inline: 3.4rem;
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "img name" "text text" "company company" "works works";
    gap: 0 2.2rem;
  }
  .member .member__content-item .member__content-item-img {
    width: 26.8rem;
    aspect-ratio: 268/205;
    grid-area: img;
  }
  .member .member__content-item .member__content-item-role {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    letter-spacing: 0.08em;
    padding-top: 0rem;
  }
  .member .member__content-item .member__content-item-name {
    margin-top: 2.3rem;
    justify-content: flex-start;
    gap: 2rem;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-ja {
    font-size: 4.2rem;
    line-height: 1.1428571429;
    letter-spacing: 0.068em;
    font-weight: 400;
    white-space: normal;
  }
  .member .member__content-item .member__content-item-name .member__content-item-name-en {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    white-space: normal;
  }
  .member .member__content-item .member__content-item-body {
    height: auto;
    display: contents;
    grid-area: name;
  }
  .member .member__content-item .member__content-item-sp-body {
    display: block;
  }
  .member .member__content-item .member__content-item-text {
    font-size: 2.2rem;
    line-height: 1.7272727273;
    padding-top: 2.5rem;
    grid-area: text;
  }
  .member .member__content-item .member__content-item-company {
    font-size: 2rem;
    line-height: 1.7272727273;
    padding-top: 1rem;
    grid-area: company;
  }
  .member .member__content-item .member__content-item-works {
    margin-top: 2.8rem;
    padding-top: 2rem;
    grid-area: works;
  }
  .member .member__content-item .member__content-item-works p {
    font-size: 2.2rem;
    line-height: 1.7272727273;
  }
}

.page-news {
  background: var(--white2);
  padding-bottom: 15rem;
}
.page-news .news__title-wrapper {
  margin-top: 10rem;
}
.page-news .news__title-wrapper .sec-title__en {
  text-transform: uppercase;
}
.page-news .news__title-wrapper .sec-title__en:after {
  width: 14.4rem;
  background: url(../images/pc/news-title-line.webp) no-repeat center center/cover;
}
.page-news .news__container {
  margin-top: 10rem;
  background: var(--white);
  padding-block: 12.2rem 15rem;
}
.page-news .news__list {
  width: 100rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.page-news .news__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4.2rem;
  padding-block: 2.8rem;
  padding-inline: 0rem 6.6rem;
  border-bottom: 1px solid var(--midasi-text);
}
.page-news .news__item::before {
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2.8rem;
  height: 3.7rem;
  background: url(../images/common/blank.svg) no-repeat center center/contain;
}
.page-news .news__date {
  width: 11rem;
  white-space: nowrap;
  color: var(--midasi-text);
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.0108rem;
}
.page-news .news__title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-news .news__title p {
  color: var(--text-brown);
  font-size: 2.2rem;
  line-height: 1.4545454545;
}
.page-news .news__pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
}
.page-news .news__pagenavi .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.page-news .news__pagenavi .wp-pagenavi .pages,
.page-news .news__pagenavi .wp-pagenavi .last,
.page-news .news__pagenavi .wp-pagenavi .first,
.page-news .news__pagenavi .wp-pagenavi .prev,
.page-news .news__pagenavi .wp-pagenavi .next,
.page-news .news__pagenavi .wp-pagenavi .nextpostslink,
.page-news .news__pagenavi .wp-pagenavi .previouspostslink {
  display: none;
}
.page-news .news__pagenavi .wp-pagenavi .current {
  color: var(--midasi-text);
  background: var(--midasi-text);
}
.page-news .news__pagenavi .wp-pagenavi a,
.page-news .news__pagenavi .wp-pagenavi span {
  width: 2rem;
  height: 2rem;
  background: var(--white);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: 1px solid var(--midasi-text);
}
@media screen and (max-width: 768px) {
  .page-news .news__title-wrapper {
    margin-top: 9rem;
  }
  .page-news .news__title-wrapper .sec-title__en:after {
    width: 43rem;
    background: url(../images/sp/company-title-line.webp) no-repeat center center/contain;
  }
  .page-news .news__container {
    margin-top: 9.3rem;
    padding-block: 13rem 9rem;
  }
  .page-news .news__list {
    width: 100%;
    padding-inline: 3.5rem;
  }
  .page-news .news__item {
    padding-block: 3.8rem;
    padding-inline: 1rem 8.4rem;
    gap: 2.4rem;
  }
  .page-news .news__item::before {
    right: 3.4rem;
    width: 3.7rem;
    height: 4.2rem;
  }
  .page-news .news__pagenavi {
    margin-top: 6.5rem;
  }
}

.page-contact {
  background: var(--white2);
  padding-bottom: 15rem;
}
.page-contact .contact__title-wrapper {
  margin-top: 10rem;
}
.page-contact .contact__title-wrapper .sec-title__en {
  text-transform: uppercase;
}
.page-contact .contact__title-wrapper .sec-title__en:after {
  width: 25.6rem;
  background: url(../images/pc/contact-title-line.webp) no-repeat center center/cover;
}
.page-contact .contact__text {
  text-align: center;
  font-size: 2rem;
  line-height: 2.1666666667;
  font-weight: 400;
  letter-spacing: 0.068em;
  color: var(--text-brown);
}
.page-contact .contact__list {
  border-block: 1px solid var(--text-brown);
  padding-block: 3.8rem;
  padding-inline: 5.4rem;
  margin-top: 6.4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-contact .contact__list li {
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-size: 1.8rem;
  line-height: 2.0909090909;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #5F5C5D;
  list-style: none;
}
.page-contact .contact__list li a {
  color: var(--text-brown);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  -webkit-text-decoration-color: var(--text-brown);
          text-decoration-color: var(--text-brown);
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.page-contact .contact__list li::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 2rem;
  background: #B6AA96;
  border-radius: 50%;
}
.page-contact .contact__container {
  margin-top: 10rem;
  max-width: 100%;
  width: 100rem;
  margin-inline: auto;
}
.page-contact .contact__form {
  max-width: calc(100% - 4rem);
  width: 100rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.page-contact .contact__form table {
  width: 100%;
}
.page-contact .contact__form table tbody {
  width: 100%;
}
.page-contact .contact__form table tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.8rem;
  padding: 2rem 0;
}
.page-contact .contact__form table tr .bg-brown03 {
  background: var(--midasi-text);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 400;
  margin-top: 1rem;
}
.page-contact .contact__form table tr th {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: normal;
  text-align: left;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  color: var(--text-brown);
}
.page-contact .contact__form table tr th.required:before {
  content: "必須";
  background: var(--midasi-text);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.18em;
  margin-right: 1.6rem;
  white-space: nowrap;
}
.page-contact .contact__form table tr th span:has(.color-brown) {
  width: 94%;
}
.page-contact .contact__form table tr th span:has(.color-brown--ml90) {
  width: 100%;
}
.page-contact .contact__form table tr th .color-brown {
  font-size: max(1.6rem, 12px);
  color: #B6AA96;
  margin-left: 5rem;
  /* width: 90%;
  text-align: right; */
}
.page-contact .contact__form table tr th .color-brown.color-brown--ml90 {
  margin-left: 5rem;
}
.page-contact .contact__form table tr td {
  width: 100%;
  display: block;
}
.page-contact .contact__form table tr td.flex-cell01 {
  display: flex;
  gap: 1.8rem;
}
.page-contact .contact__form table tr td.flex-cell01 br {
  display: none;
}
.page-contact .contact__form table tr td.flex-cell01 p {
  display: flex;
  justify-content: space-between;
}
.page-contact .contact__form table tr td.flex-cell01 p span {
  flex: 1;
}
.page-contact .contact__form table tr td.flex-cell01 .family-name {
  width: 49%;
}
.page-contact .contact__form table tr td.flex-cell01 .given-name {
  width: 49%;
}
.page-contact .contact__form table tr td.flex-cell01 .family-name-kana {
  width: 49%;
}
.page-contact .contact__form table tr td.flex-cell01 .given-name-kana {
  width: 49%;
}
.page-contact .contact__form table tr td.flex-cell02 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-contact .contact__form table tr td.flex-cell02.flex-cell-zipcode {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-contact .contact__form table tr td.flex-cell02 .p-postal-code {
  width: 19.4rem;
}
.page-contact .contact__form table tr td.flex-cell02 .mx-3 {
  font-size: max(1.8rem, 16px);
  color: var(--text-brown);
}
.page-contact .contact__form table tr td.flex-cell02 [data-name=zipcode1],
.page-contact .contact__form table tr td.flex-cell02 [data-name=zipcode2] {
  display: contents;
}
.page-contact .contact__form table tr td.flex-cell02 [data-name=address] {
  width: 100%;
}
.page-contact .contact__form table tr td.flex-cell02 .zipcode1 {
  width: 30%;
}
.page-contact .contact__form table tr td.flex-cell02 .zipcode2 {
  width: 30%;
}
.page-contact .contact__form table tr td.flex-cell02 .address {
  width: 100%;
}
.page-contact .contact__form table tr td .wpcf7-form-control-wrap {
  width: 100%;
}
.page-contact .contact__form table tr td .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.page-contact .contact__form table tr td select {
  width: 100%;
  padding: 1.5rem;
  height: 6rem;
  background: var(--white);
  font-size: max(1.8rem, 16px);
}
.page-contact .contact__form table tr td select::-moz-placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td select::placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td textarea {
  width: 100%;
  resize: vertical;
  padding: 1.5rem;
  height: 240px;
  background: var(--white);
  font-size: max(1.8rem, 16px);
}
.page-contact .contact__form table tr td textarea::-moz-placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td textarea::placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td input[type=text],
.page-contact .contact__form table tr td input[type=email],
.page-contact .contact__form table tr td input[type=file],
.page-contact .contact__form table tr td input[type=date],
.page-contact .contact__form table tr td input[type=tel],
.page-contact .contact__form table tr td [role=button] {
  background: var(--white);
  width: 100%;
  padding: 1.5rem;
  height: 6rem;
  font-size: max(1.8rem, 16px);
}
.page-contact .contact__form table tr td input[type=text]::-moz-placeholder, .page-contact .contact__form table tr td input[type=email]::-moz-placeholder, .page-contact .contact__form table tr td input[type=file]::-moz-placeholder, .page-contact .contact__form table tr td input[type=date]::-moz-placeholder, .page-contact .contact__form table tr td input[type=tel]::-moz-placeholder, .page-contact .contact__form table tr td [role=button]::-moz-placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td input[type=text]::placeholder,
.page-contact .contact__form table tr td input[type=email]::placeholder,
.page-contact .contact__form table tr td input[type=file]::placeholder,
.page-contact .contact__form table tr td input[type=date]::placeholder,
.page-contact .contact__form table tr td input[type=tel]::placeholder,
.page-contact .contact__form table tr td [role=button]::placeholder {
  color: #AEA6A4;
}
.page-contact .contact__form table tr td [role=button] {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: var(--white);
  height: auto;
  gap: 1rem;
}
.page-contact .contact__form table tr td input[type=file] {
  display: none;
}
.page-contact .contact__form table tr td .wpcf7-radio {
  margin-top: 2rem;
}
.page-contact .contact__form table tr td .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.page-contact .contact__form table tr td .wpcf7-radio label {
  display: inline-block;
  padding: 0 4.2rem;
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: var(--midasi-text);
}
.page-contact .contact__form table tr td .wpcf7-radio label input[type=radio] {
  display: none;
}
.page-contact .contact__form table tr td .wpcf7-radio label input[type=radio]:checked + span:after {
  display: block;
}
.page-contact .contact__form table tr td .wpcf7-radio label span:before {
  content: "";
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  background: var(--white);
  border-radius: 2.9rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-contact .contact__form table tr td .wpcf7-radio label span:after {
  content: "";
  display: none;
  width: 1.8rem;
  height: 1.9rem;
  background: var(--midasi-text);
  border-radius: 2.9rem;
  position: absolute;
  top: 50%;
  left: 0.55rem;
  transform: translateY(-50%);
}
.page-contact .contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.page-contact .contact__form .wpcf7-acceptance {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-contact .contact__form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.page-contact .contact__form .wpcf7-acceptance label {
  display: inline-block;
  padding: 0 4.2rem;
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: var(--midasi-text);
}
.page-contact .contact__form .wpcf7-acceptance label input[type=checkbox] {
  display: none;
}
.page-contact .contact__form .wpcf7-acceptance label input[type=checkbox]:checked + span:after {
  display: block;
}
.page-contact .contact__form .wpcf7-acceptance label span:before {
  content: "";
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  background: var(--white);
  border-radius: 0.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-contact .contact__form .wpcf7-acceptance label span:after {
  content: "";
  display: none;
  width: 1.2rem;
  height: 0.6rem;
  border-left: 0.3rem solid var(--midasi-text);
  border-bottom: 0.3rem solid var(--midasi-text);
  position: absolute;
  top: 45%;
  left: 0.8rem;
  transform: translateY(-50%) rotate(-45deg);
}
.page-contact .contact__form .buttons {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page-contact .contact__form .buttons::before {
  content: "";
  display: block;
  width: 37px;
  height: 1px;
  background: var(--white);
  position: absolute;
  top: 50%;
  right: -18.5px;
  transform: translateY(-50%);
  z-index: 1;
}
.page-contact .contact__form .buttons .button {
  margin-top: 8rem;
  text-align: center;
  width: 44.8rem;
  height: 7.2rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-contact .contact__form .buttons .button input[type=submit] {
  color: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .page-contact .contact__form .buttons .button:hover {
    color: #121212;
    background-color: var(--white);
    transition: 0.3s;
  }
}
.page-contact .contact__form .buttons .wpcf7-spinner {
  position: absolute;
  left: 50%;
  margin: 0;
  top: 120%;
  transform: translateX(-50%);
}
.page-contact .wpcf7 .wpcf7-response-output,
.page-contact .wpcf7 .wpcf7-response-output,
.page-contact .wpcf7 .wpcf7-response-output {
  border: none;
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page-contact .contact__form {
    display: block;
  }
  .page-contact .contact__form tbody {
    display: block;
    width: 100%;
  }
  .page-contact .contact__form tbody tr {
    width: 100%;
    padding: 3rem 0;
  }
  .page-contact .contact__form tbody tr th {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.3181818182;
  }
  .page-contact .contact__form tbody tr th.required:before {
    padding-block: 0.55rem;
  }
  .page-contact .contact__form tbody tr td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-contact .contact__title-wrapper {
    margin-top: 8rem;
  }
  .page-contact .contact__text {
    font-size: 2.4rem;
  }
  .page-contact .contact__list {
    padding-inline: 7.4rem 4rem;
    margin-bottom: 3rem;
  }
  .page-contact .contact__list li {
    font-size: 2.2rem;
  }
  .page-contact .contact__form table tr td select {
    height: 9.6rem;
  }
  .page-contact .contact__form table tr td textarea {
    height: 294px;
  }
  .page-contact .contact__form table tr td input[type=text],
.page-contact .contact__form table tr td input[type=email],
.page-contact .contact__form table tr td input[type=file],
.page-contact .contact__form table tr td input[type=date],
.page-contact .contact__form table tr td input[type=tel],
.page-contact .contact__form table tr td [role=button] {
    height: 9.6rem;
  }
  .page-contact .contact__form table tr td.flex-cell01 {
    max-width: 54rem;
    flex-direction: column;
  }
	.page-contact .contact__form table tr:nth-child(8) th {
		align-items: flex-start;
	}
  .page-contact .contact__form table tr th span:has(.color-brown) {
    width: 100%;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 6px;
  }
  .page-contact .contact__form table tr th span:has(.color-brown--ml90) {
    width: 100%;
  }
  .page-contact .contact__form table tr th .color-brown {
    font-size: max(1.6rem, 10px);
    color: #B6AA96;
    margin-left: 3rem;
    width: auto;
    text-align: left;
  }
	.page-contact .contact__form table tr:nth-child(8) th .color-brown {
		margin-left: 0rem;
	}
  .page-contact .contact__form table tr th .color-brown.color-brown--ml90 {
    margin-left: 3rem;
  }
  .page-contact .contact__form table tr th .align-top:has(.color-brown-column) {
    align-items: flex-start;
  }
  .page-contact .contact__form table tr th .color-brown-column {
    font-size: max(1.6rem, 12px);
    color: #B6AA96;
    margin-left: 0;
    display: block;
    text-align: left;
  }
  .page-contact .contact__form .buttons .button {
    margin-top: 6rem;
    width: 57rem;
    height: 13rem;
  }
}

.prpy-box-top-title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-brown);
  text-align: center;
  margin-bottom: 4rem;
}
.prpy-box-top-title a {
  color: var(--text-brown);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  -webkit-text-decoration-color: var(--text-brown);
          text-decoration-color: var(--text-brown);
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.prpy-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.prpy-box .prpy-box-title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-brown);
  text-align: center;
}
.prpy-box pre {
  max-width: 70rem;
  width: 100%;
  height: 40rem;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-brown);
  white-space: pre-wrap;
  background: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  overflow: auto;
}

#regist_popup {
  background: #fff;
  width: 90%;
  max-width: 770px;
  height: 500px;
  overflow-y: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#regist_popup p,
#regist_popup span,
#regist_popup a,
#regist_popup form,
#regist_popup label,
#regist_popup table,
#regist_popup caption,
#regist_popup tbody,
#regist_popup tfoot,
#regist_popup thead,
#regist_popup tr,
#regist_popup th,
#regist_popup td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
#regist_popup button,
#regist_popup input,
#regist_popup optgroup,
#regist_popup select,
#regist_popup textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
#regist_popup .mfp-close {
  font-size: 2.4rem;
}

#regist_popup .title {
  font-weight: bold;
  font-size: 26px;
  margin: 0 0 20px 0;
}

#regist_popup table {
  font-size: 15px;
  width: 100%;
  max-width: 470px;
}

#regist_popup table tr th {
  font-weight: normal;
  padding: 5px 0;
}

#regist_popup table tr th sup {
  font-size: 10px;
  color: #c71513;
}

#regist_popup table tr td {
  display: flex;
  justify-content: space-between;
  padding: 0 0 15px 0;
}

#regist_popup table tr td .family-name {
  width: 48%;
}

#regist_popup table tr td .given-name {
  width: 48%;
}

#regist_popup table tr td .your-email {
  width: 100%;
}

#regist_popup table tr td input {
  border: #d3d3d3 solid 1px;
  padding: 5px 10px;
  width: 100%;
}

#regist_popup table tr td input.lastname {
  width: 100%;
}

#regist_popup table tr td input.firstname {
  width: 100%;
}

#regist_popup input[type=checkbox] {
  margin-right: 0.5rem;
}

#regist_popup table tr.name p {
  display: flex;
  justify-content: space-between;
}

#regist_popup table tr.name p span {
  width: 48%;
}

#regist_popup .checkbox_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin: 0 0 20px 0;
}

#regist_popup .checkbox_wrap a {
  color: #1a77fb;
}

#regist_popup .checkbox_wrap sup {
  font-size: 10px;
  color: #c71513;
}

#regist_popup .your-acceptance input[type=checkbox] {
  position: relative;
  margin: -5px 12px 0 0;
}

#regist_popup .your-acceptance input[type=checkbox]::after {
  content: "※";
  font-size: 10px;
  color: #c71513;
  position: absolute;
  top: 0;
  right: -12px;
  line-height: 0;
}

#regist_popup .submitbtn {
  display: flex;
  justify-content: center;
}

#regist_popup .submitbtn input[type=submit] {
  background: #000;
  display: inline-block;
  border: none;
  padding: 10px 0 10px;
  width: 100%;
  max-width: 420px;
  color: #fff;
  font-weight: bold;
  font-size: max(1.8rem, 16px);
}

#regist_popup .submitbtn input[type=submit]:disabled {
  background: #f2f2f2;
  color: #b6b7b4;
}

@media (max-width: 767px) {
  #regist_popup {
    height: 380px;
  }
  #regist_popup .title {
    font-size: 18px;
  }
  #regist_popup table {
    font-size: 15px;
    width: 90%;
    margin: 0 auto;
  }
  #regist_popup .checkbox_wrap {
    font-size: 12px;
  }
  #regist_popup .submitbtn {
    text-align: center;
  }
  #regist_popup .submitbtn input[type=submit] {
    width: 90%;
    margin: 0 auto;
    max-width: none;
  }
}
.mfp-close-btn-in .mfp-close {
  background: #000;
  color: #fff;
  opacity: 1 !important;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  line-height: 34px;
}

@media (max-width: 767px) {
  .mfp-close-btn-in .mfp-close {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
  }
}
/*# sourceMappingURL=style.css.map */