@charset "UTF-8";
/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/*-- mixinフォルダの中の_index.scss --*/
html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
}

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

/*-- layoutフォルダの中の_index.scss --*/
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}
.header-wrapper_logo a {
  text-decoration: none;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  color: #000;
}
.header-wrapper_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 999;
}
.header-wrapper_menu.active {
  right: 0;
}
.header-wrapper_menu ul {
  list-style: none;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.header-wrapper_menu ul li a {
  font-size: clamp(2.8rem, 3.5vw, 3.5rem);
  text-decoration: none;
  font-weight: 700;
  color: #333;
}

/* ハンバーガーアイコン */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* アクティブ時（バツ印） */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* メニュー開いた状態 */
.header-wrapper_menu.active {
  right: 0;
}

.top-mv {
  margin: 10% 0 0 0;
  max-width: 1920px;
  position: relative;
  z-index: 1;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .top-mv {
    height: 25vh;
  }
}
@media screen and (max-width: 767px) {
  .top-mv {
    margin: 15% 0 0 0;
  }
}
.top-mv_base {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .top-mv_base {
    height: 25vh;
  }
}
.top-mv_base svg {
  width: 50%;
  position: absolute;
  z-index: 0;
  left: 20%;
}
@media screen and (max-width: 767px) {
  .top-mv_base svg {
    width: 62%;
    left: 14%;
  }
}
.top-mv_base_title-wrapper {
  position: absolute;
  z-index: 10;
  left: 25%;
  top: 24vw;
  width: 30%;
  height: clamp(28px, 6.3vw, 63px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: #000 6px solid;
  border-radius: 4px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-mv_base_title-wrapper {
    border: #000 4px solid;
    top: 23vw;
  }
}
@media screen and (max-width: 767px) {
  .top-mv_base_title-wrapper {
    top: 30vw;
  }
}
.top-mv_base_title-wrapper ul {
  display: flex;
  align-items: center;
  animation: marquee 10s linear infinite;
}
.top-mv_base_title-wrapper ul li {
  padding-right: 40rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: #000;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.top-work {
  margin: 0 auto 3% auto;
  padding-top: 3%;
  width: 82%;
}
@media screen and (max-width: 1024px) {
  .top-work {
    padding-top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .top-work {
    padding-top: 24%;
  }
}
.top-work_tab {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.top-work_tab button {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border: 3.5px solid #000;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}
@media screen and (max-width: 1024px) {
  .top-work_tab button {
    border: 2.5px solid #000;
  }
}
.top-work_tab button[aria-pressed=true] {
  border-color: #000;
  background: #000;
  color: #fff;
}
.top-work_tab button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}
.top-work_item_wrapper {
  display: grid;
  gap: 45px 8%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 5% 0;
}
.top-work_item_wrapper a.is-hidden {
  display: none !important;
}
.top-work_item_wrapper_inner {
  border: 4px solid #000;
  border-radius: 4px;
  width: 100%;
  display: inline-block;
  transition: transform 0.4s ease-in-out;
}
.top-work_item_wrapper_inner_img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom: 4px solid #000;
  overflow: hidden;
}
.top-work_item_wrapper_inner_tag_wrapper {
  display: flex;
  margin: 13px 0 13px 5px;
}
.top-work_item_wrapper_inner_tag {
  font-weight: 700;
  font-size: clamp(1.5rem, 1.4vw, 1.4rem);
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
  margin: 0 5px;
}
.top-work_item_wrapper_inner_name {
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin: 10px 10px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.top-work_item_wrapper_inner:hover {
  transform: scale(1.07);
}

.top-profile {
  width: 82%;
  margin: 15% auto;
}
.top-profile_wrapper {
  display: grid;
  gap: 45px 40px;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}
@media screen and (max-width: 767px) {
  .top-profile_wrapper {
    grid-template-columns: 1fr;
    order: 2;
  }
}
@media screen and (max-width: 1024px) {
  .top-profile_wrapper_desc {
    order: 2;
  }
}
.top-profile_wrapper_desc_txt {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  padding: 5% 0 8% 0;
}
@media screen and (max-width: 767px) {
  .top-profile_wrapper_desc_txt {
    white-space: normal;
  }
}
.top-profile_wrapper_desc .btn-wrapper {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .top-profile_wrapper_desc .btn-wrapper {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .top-profile_wrapper_img {
    width: 60%;
    margin: 0 auto;
  }
}

.top-contact {
  margin: 0 auto 8% auto;
  width: 82%;
}
.top-contact_txt {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  padding: 3% 0 8% 0;
}

.underpage_work {
  width: 82%;
  margin: 10% auto 15% auto;
}

.work_single {
  width: 82%;
  margin: 10% auto;
}
.work_single_ruby {
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1.8em;
}
.work_single_name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8em;
}
.work_single_img_main {
  display: flex;
  justify-content: center;
  width: 74%;
  margin: 5% auto;
}
.work_single_img_main img {
  width: 50%;
}
.work_single_img_sub {
  display: flex;
  justify-content: space-between;
  width: 74%;
  margin: 3% auto;
}
.work_single_img_sub img {
  width: 30%;
}
.work_single_desc_wrapper {
  width: 74%;
  margin: 5% auto;
  border-top: 2px solid #000;
  padding: 3% 0;
}
.work_single_desc_wrapper li {
  padding: 4px 0;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.work_single_desc_wrapper_name {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.5em;
  font-weight: 600;
}
.work_single_desc_wrapper a {
  color: #333;
  text-decoration: underline;
}
.work_single_desc_wrapper_desc {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
  .work_single .single_bnr {
    display: block;
    width: 90%;
  }
}
.work_single .single_bnr img {
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .work_single .single_bnr img {
    width: 90%;
    margin: 10px 0;
  }
}
.work_single .pamf_img img {
  width: 100%;
}
.work_single .single_pamf {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .work_single .single_pamf {
    width: 90%;
  }
}
.work_single .single_pamf img {
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .work_single .single_pamf img {
    width: 90%;
    margin: 10px 0;
  }
}

.profile_introduciton {
  width: 72%;
  display: grid;
  gap: 45px 40px;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  margin: 10% auto;
}
@media screen and (max-width: 767px) {
  .profile_introduciton {
    grid-template-columns: 1fr;
  }
}
.profile_introduciton_img {
  width: 100%;
  order: 2;
}
@media screen and (max-width: 1024px) {
  .profile_introduciton_img {
    width: 72%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .profile_introduciton_img {
    width: 84%;
    margin: 0 auto;
  }
}
.profile_introduciton_img svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.profile_introduciton_desc {
  padding: 15% 0 0 0;
}
@media screen and (max-width: 1024px) {
  .profile_introduciton_desc {
    width: 100%;
    margin: 0 auto 30px auto;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .profile_introduciton_desc {
    padding: 0;
    order: 2;
  }
}
.profile_introduciton_desc_name {
  font-size: clamp(4rem, 5vw, 5rem);
  font-weight: 700;
  padding: 0 0 5% 0;
}
.profile_introduciton_desc_text {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8em;
}

.profile_career {
  width: 72%;
  margin: 10% auto;
}
@media screen and (max-width: 1024px) {
  .profile_career {
    width: 82%;
  }
}
.profile_career_list {
  width: 80%;
  margin: 6% auto;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  font-weight: 500;
}
.profile_career_list td {
  padding: 0 5px 20px 5px;
}
@media screen and (max-width: 1024px) {
  .profile_career_list {
    width: 90%;
  }
}

.profile_tool {
  width: 72%;
  margin: 10% auto;
}
@media screen and (max-width: 1024px) {
  .profile_tool {
    width: 82%;
  }
}
.profile_tool_wrapper {
  width: 80%;
  margin: 3% auto;
}
@media screen and (max-width: 1024px) {
  .profile_tool_wrapper {
    width: 90%;
  }
}
.profile_tool_wrapper_inner {
  padding: 2% 0;
}
.profile_tool_wrapper_inner_icon {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
}
.profile_tool_wrapper_inner_text {
  padding: 10px 0;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8em;
}

.contact_lead {
  text-align: center;
  font-size: clamp(1.3rem, 1.2vw, 3rem);
  margin: 70px 0;
  font-weight: 500;
}

.form_wrap {
  max-width: 1920px;
  width: 42%;
  margin: 0 auto 8% auto;
}
@media screen and (max-width: 767px) {
  .form_wrap {
    width: 72%;
  }
}
.form_wrap_inner {
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .form_wrap_inner {
    display: block;
  }
}
.form_wrap_inner_index {
  line-height: 1.8;
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
  font-weight: 700;
}
.form_wrap_inner_txt_box {
  width: 75%;
  height: 42px;
  border: 3px #000 solid;
  border-radius: 5px;
  font-size: clamp(1.8rem, 1.2vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  .form_wrap_inner_txt_box {
    width: 100%;
  }
}
.form_wrap_inner_txt_area {
  width: 75%;
  height: 150px;
  resize: vertical;
  border: 3px #000 solid;
  border-radius: 5px;
  font-size: clamp(1.8rem, 1.2vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  .form_wrap_inner_txt_area {
    width: 100%;
  }
}
.form_wrap_inner_confirm {
  width: 75%;
  padding: 10px 12px;
  min-height: 42px;
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .form_wrap_inner_confirm {
    width: 100%;
    margin-top: 8px;
  }
}

.btn-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 8% auto;
}
@media screen and (max-width: 767px) {
  .btn-wrapper {
    margin: 20% auto;
  }
}

.thanks_wrap {
  display: flex;
  justify-content: space-between;
  width: 62%;
  margin: 8% auto;
}
@media screen and (max-width: 767px) {
  .thanks_wrap {
    display: block;
    width: 100%;
  }
}
.thanks_wrap_inner {
  margin: 7% 0;
}
@media screen and (max-width: 767px) {
  .thanks_wrap_inner {
    text-align: center;
  }
}
.thanks_wrap_inner h2 {
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 9rem);
}
.thanks_wrap_inner_txt {
  font-weight: 500;
  font-size: clamp(1.6rem, 1.5vw, 3rem);
  line-height: 1.8;
  padding: 2% 0 0 0;
}
.thanks_wrap_img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .thanks_wrap_img {
    width: 60%;
    margin: 0 auto;
  }
}

.footer_wrapper {
  background-color: #000;
  height: 260px;
}
@media screen and (max-width: 767px) {
  .footer_wrapper {
    height: auto;
  }
}
.footer_wrapper_inner {
  display: flex;
  gap: 20px 20%;
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer_wrapper_inner {
    width: 90%;
    gap: 20px 9%;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrapper_inner {
    width: 100%;
    flex-direction: column;
    order: 1;
  }
}
.footer_wrapper_inner_img {
  width: 40%;
  height: 260px;
  background-image: url(../../_common/img/top/footer_face.svg);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: -10%;
  opacity: 0.2;
}
@media screen and (max-width: 1024px) {
  .footer_wrapper_inner_img {
    width: 53%;
    background-position: -23%;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrapper_inner_img {
    order: 2;
    width: 100%;
    background-size: 100%;
  }
}
.footer_wrapper_inner_nav {
  color: #fff;
  font-weight: 700;
  padding: 7% 0 4% 0;
}
@media screen and (max-width: 767px) {
  .footer_wrapper_inner_nav {
    margin: 0 auto;
  }
}
.footer_wrapper_inner_nav_logo {
  font-weight: 700;
  font-size: clamp(2.8rem, 3vw, 3rem);
}
.footer_wrapper_inner_nav ul {
  display: flex;
  gap: 20px;
  padding: 4% 0;
}
.footer_wrapper_inner_nav ul li {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
}
.footer_wrapper p {
  font-size: clamp(1.3rem, 1vw, 1rem);
  color: #cecece;
  font-weight: 300;
}

/*-- jsフォルダの中の_index.scss --*/
/*-- フォルダの中の_index.scss --*/
.sec-title_wrapper {
  font-weight: 700;
}
.sec-title_wrapper_sub-title {
  display: inline-flex;
  background-color: #fff;
  border: 3.5px solid #000;
  border-radius: 3px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .sec-title_wrapper_sub-title {
    padding: 0 6px;
    border: 2.5px solid #000;
  }
}
.sec-title_wrapper_sub-title_num {
  padding: 3px 13px 3px 0;
  border-right: #000 3.5px solid;
}
@media screen and (max-width: 767px) {
  .sec-title_wrapper_sub-title_num {
    padding: 3px 7px 3px 0;
    border-right: #000 2.5px solid;
  }
}
.sec-title_wrapper_sub-title_en {
  padding: 3px 0 3px 13px;
}
@media screen and (max-width: 767px) {
  .sec-title_wrapper_sub-title_en {
    padding: 3px 0 3px 7px;
  }
}
.sec-title_wrapper_main-title {
  font-size: clamp(3rem, 10vw, 10rem);
}

.btn-wrapper {
  text-align: center;
}
.btn-wrapper .component-btn {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #000;
  padding: 10px 18px;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  transition: transform 0.6s ease, background-color 0.6s ease;
  border-radius: 30px;
}
.btn-wrapper .component-btn:hover {
  display: inline-block;
  background-color: #FFF;
  border: 3px solid #000;
  padding: 7px 15px;
  color: #000;
}

.underpage_component_wrapper {
  margin: 10% 0;
}
.underpage_component_wrapper_title {
  text-align: center;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 700;
}

.en {
  font-family: "Outfit", sans-serif;
}

.ja {
  font-family: 'Noto Sans JP", sans-serif';
}

.fade {
  opacity: 0;
  transform: translateY(30px);
}

.fade.is-show {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fade-1.is-show {
  animation-delay: 0s;
}

.fade-2.is-show {
  animation-delay: 0.3s;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}