@charset "utf-8";

/* =============================================================

html & body




















*  ============================================================= */

html,
body {
  overflow-x: clip;
}

html {
  color: #0f172a;
  font-size: 62.5%;
  font-weight: 400;
  font-family:
    "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
}

body {
  padding-top: 10px;
  background-color: #f8f8f5;
  background-image: url("../img/home/main-bg.jpg");
  background-repeat: repeat;
  background-size: 100px 100px;
}

body img {
  display: block;
  height: auto;
  width: 100%;
}

.top-double-border {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 10px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    #0f172a 0%,
    #0f172a 50%,
    #e6e1d8 50%,
    #e6e1d8 100%
  );
}

/* =============================================================

layout（ lyt ）




















*  ============================================================= */

.lyt-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  container-name: layout;
}

.lyt-columns {
  display: flex;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.lyt-sidebar {
  position: sticky;
  top: 64px;
  width: 16%;
  flex-shrink: 0;
}

.lyt-main {
  width: 84%;
  min-width: 0;
}

@media (max-width: 1020px) {
  .lyt-sidebar {
    display: none;
  }
  .lyt-main {
    width: 100%;
  }
}

@supports (container-type: inline-size) {
  @container layout (max-width: 1020px) {
    .lyt-sidebar {
      display: none;
    }
    .lyt-main {
      width: 100%;
    }
  }
}

/* =============================================================

sidebar




















*  ============================================================= */

.sidebar {
  padding-left: 20%;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.sidebar__logo {
  width: 78px;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

ul.sidebar__list {
  position: relative;
  margin-top: 84px;
}

ul.sidebar__list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 112%;
  width: 0.5px;
  height: 100vh;
  background: #c4c4c4;
}

.sidebar__item {
  margin-bottom: 28px;
  color: #c4c4c4;
  font-size: 1.1rem;
  font-weight: 400;
  font-family:
    "Google Sans Flex", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.sidebar__item.is-active {
  color: #0f172a;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.sidebar__bh {
  margin-top: 40px;
}

.sidebar__arrow {
  width: 24px;
  transform: scaleX(-1);
}

.sidebar__bhtxt {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #0f172a;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sidebar__bhtxt:hover {
  opacity: 0.4;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.sidebar__policy {
  margin-top: 64px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}

/* =============================================================

header




















*  ============================================================= */

.header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 94%;
  margin-top: 52px;
}

@media (max-width: 1020px) {
  .header {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 40px auto 0;
    padding: 0 6%;
  }
}

@media (max-width: 800px) {
  .header {
    width: 88%;
    max-width: 480px;
    margin: 32px auto 0;
    padding: 0;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.header__logo {
  display: none;
}

@media (max-width: 1020px) {
  .header__logo {
    display: block;
    width: 76px;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.header__nav {
  display: flex;
  gap: 10px;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 160px;
  height: 40px;
  padding: 0 12px;
  color: #111;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(184, 134, 11, 0.1);
}

.header__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #eaab33;
  border-radius: 50%;
}

@media (max-width: 800px) {
  .header__btn {
    width: 92px;
    padding: 0 10px;
  }
  .header__btn::after {
    width: 6px;
    height: 6px;
  }
}

.header__btn-txt {
  font-size: 1.4rem;
  font-weight: 500;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.header__bh {
  display: none;
}

@media (max-width: 1020px) {
  .header__bh {
    display: block;
  }
  .header__bhtxt {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: #0f172a;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .header__bhtxt:hover {
    opacity: 0.4;
  }
  .header__arrow {
    display: inline-block;
    width: 24px;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.header__policy {
  display: none;
}

@media (max-width: 1020px) {
  .header__policy {
    display: block;
  }
  .header__policytxt {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
  }
}

/* =============================================================

footer




















*  ============================================================= */

.footer {
  width: 100%;
  margin-top: auto;
  padding-top: 160px;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 94%;
  padding-bottom: 20px;
}

@media (max-width: 1020px) {
  .footer__top {
    width: 100%;
    margin: 0 auto;
    padding: 0 6% 20px;
  }
}

@media (max-width: 800px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    width: 88%;
    max-width: 480px;
    padding: 0 0 20px 0;
  }
}

.footer__left {
  width: 40%;
}

@media (max-width: 800px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 800px) {
  .footer__logo {
    width: 80%;
  }
}

.footer__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 16px;
}

@media (max-width: 800px) {
  .footer__right {
    align-items: flex-start;
    width: 100%;
    padding-bottom: 0;
  }
}

.footer__nav {
  display: flex;
  gap: 10px;
}

@media (max-width: 800px) {
  .footer__nav {
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
  }
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 160px;
  height: 40px;
  padding: 0 12px;
  color: #111;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(184, 134, 11, 0.1);
}

.footer__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #eaab33;
  border-radius: 50%;
}

@media (max-width: 800px) {
  .footer__btn {
    width: 100%;
    max-width: 240px;
  }
}

.footer__btn-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.footer__message {
  margin-top: 10px;
  color: #0f172a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 1100px) {
  .footer__message {
    font-size: 1.4rem;
  }
}

@media (max-width: 800px) {
  .footer__message {
    margin-top: 16px;
    text-align: left;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer__line {
  width: 100%;
  height: 2px;
  background: #e6e1d8;
}

@media (max-width: 1020px) {
  .footer__line {
    margin-left: 6%;
  }
}

@media (max-width: 800px) {
  .footer__line {
    width: 88%;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer__partners {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}

@media (max-width: 1020px) {
  .footer__partners {
    width: 100%;
    margin: 0 auto;
    padding: 20px 6%;
  }
}

@media (max-width: 800px) {
  .footer__partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 88%;
    max-width: 480px;
    padding: 20px 0;
  }
}

.footer__partner-aws {
  width: 68px;
  flex: 0 0 auto;
}

.footer__partner-claude {
  width: 92px;
  flex: 0 0 auto;
}

.footer__partner-google {
  width: 164px;
  flex: 0 0 auto;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer__bottom-wrap {
  position: relative;
  z-index: 1000;
  width: 100%;
  padding: 26px 0 40px;
  background-color: #0f172a;
  border-top: 20px solid #e6e1d8;
}

.footer__bottom-wrap.footer__bottom-subpage {
  margin-top: 80px;
}

@media (max-width: 800px) {
  .footer__bottom-wrap {
    padding: 32px 0 40px;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5%;
}

@media (max-width: 1020px) {
  .footer__bottom {
    width: 100%;
    padding: 0 6%;
  }
}

@media (max-width: 800px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    width: 88%;
    max-width: 480px;
    padding: 0;
  }
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family:
    "Google Sans Flex", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}

.footer__copyright span {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(0.12em);
}

@media (max-width: 800px) {
  .footer__copyright {
    order: 2;
    margin-top: 24px;
  }
}

.footer__recruit {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .footer__recruit {
    order: 1;
  }
}

.footer__arrow {
  width: 24px;
}

/* =============================================================

only




















*  ============================================================= */

.pc-only {
  display: block;
}

br.pc-only,
a.pc-only,
span.pc-only {
  display: inline;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  br.pc-only,
  a.pc-only,
  span.pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

br.sp-only,
a.sp-only,
span.sp-only {
  display: none;
}

@media (max-width: 800px) {
  .sp-only {
    display: block;
  }
  br.sp-only,
  a.sp-only,
  span.sp-only {
    display: inline;
  }
}
