@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nothing+You+Could+Do&family=Noto+Sans+JP:wght@100..900&display=swap");

/* --------------------------------------------------
 * common
-------------------------------------------------- */
:root {
  font-size: 16px;
  --scrollbar: 0px;
  --main-color: #ffffff;
  --base-color: #000000;
  --base2-color: #222222;
  --accent-color: #3f5a90;
  --gray-color: #dcdcdc;
  --gray2-color: #a8a8a8;
  --gray3-color: #ececec;
  --fm-base: "BIZ UDPGothic", sans-serif;
  --fm-notojp: "Noto Sans JP", sans-serif;
  --fm-inter: "Inter", sans-serif;
  --fm-script: "Nothing You Could Do", cursive;
}
body {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  font-family: var(--fm-base);
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  opacity: 0.7;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  :root {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 12px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* parts
-------------------------------------------------- */
/* font-weight */
.cmn__fw-40 {
  font-weight: 400;
}
.cmn__fw-50 {
  font-weight: 500;
}
.cmn__fw-60 {
  font-weight: 600;
}
.cmn__fw-70 {
  font-weight: 700;
}

/* font-size */
.cmn__fw-10 {
  font-size: 0.625rem;
}
.cmn__fw-11 {
  font-size: 0.6875rem;
}
.cmn__fw-12 {
  font-size: 0.75rem;
}
.cmn__fw-13 {
  font-weight: 0.8125rem;
}
.cmn__fw-14 {
  font-size: 0.875rem;
}
.cmn__fw-15 {
  font-size: 0.9375rem;
}
.cmn__fw-16 {
  font-size: 1rem;
}
.cmn__fw-17 {
  font-weight: 1.0625rem;
}
.cmn__fw-18 {
  font-size: 1.125rem;
}
.cmn__fw-19 {
  font-size: 1.1875rem;
}
.cmn__fw-20 {
  font-size: 1.25rem;
}

/* tit */
.cmn__tit01 .en {
  display: block;
  line-height: 1;
  font-weight: 400;
  font-size: 5rem;
  color: var(--base2-color);
}
.cmn__tit01 .jp {
  display: block;
  line-height: 1;
  margin-top: 1.125em;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.cmn__head02 {
  padding: 0 6.5em;
  text-align: center;
}
.cmn__tit02 {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}
.cmn__tit02 span {
  display: block;
}
.cmn__tit02 .tit__name {
  line-height: 1;
  font-weight: 400;
  font-size: 5rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}
.cmn__tit02 .tit__company {
  line-height: 1.6;
  margin-top: 0.5em;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}
.cmn__tit02 .tit__company--script {
  position: absolute;
  top: -0.1em;
  left: 5%;
  font-weight: 400;
  font-family: var(--fm-script);
  font-size: 3.25rem;
  color: var(--base2-color);
  transform: translate(-50%, -50%) rotate(-15deg);
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .cmn__tit02 .tit__name {
    font-size: 6vw;
  }
  .cmn__tit02 .tit__company--script {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .cmn__tit01 .en {
    font-size: 11.33vw;;
  }
  .cmn__head02 {
    padding: 0 4%;
  }
  .cmn__tit02 .tit__name {
    font-size: 7.5vw;
  }
  .cmn__tit02 .tit__company--script {
    font-size: 4.5vw;
    top: -1em;
    left: 15%;
  }
}

/* content */
.cmn__content01 h2 {
  line-height: 1.6;
  padding-left: 0.545em;
  border-left: 6px solid var(--accent-color);
  font-weight: 500;
  font-family: var(--fm-notojp);
  font-size: 1.375rem;
  color: var(--accent-color);
}
.cmn__content01 h2 + * {
  margin-top: 2.325em;
}
.cmn__content01 p,
.cmn__content01 div {
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--fm-notojp);
  font-size: 1.125rem;
  color: var(--base2-color);
  letter-spacing: 0.1em;
  word-break: break-all;
}
.cmn__content01 p + p,
.cmn__content01 div + div {
  margin-top: 1.667em;
}
.cmn__content01 p span,
.cmn__content01 p a,
.cmn__content01 div span,
.cmn__content01 div a {
  font-weight: 700;
  color: var(--accent-color);
}
@media screen and (max-width: 768px) {
  .cmn__content01 h2 {
    font-size: 1.5rem;
  }
  .cmn__content01 p,
  .cmn__content01 div {
    font-size: 1.166rem;
  }
}

/* btn */
.cmn__more01 {
  display: inline-flex;
  max-width: 100%;
  gap: 0.675em;
  color: var(--base-color);
  cursor: pointer;
  transition: 0.3s;
}
.cmn__more01 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.75em;
  aspect-ratio: 4.76 / 1;
  border: 1px solid var(--base-color);
  border-radius: 3px;
  font-family: var(--fm-base);
  font-size: 0.875rem;
  font-weight: 400;
}
.cmn__more01:after {
  display: block;
  width: 3.125em;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--base-color);
  border-radius: 3.5px;
  content: "";
  background: url(../img/cmn/cmn__ico-arrow-tr--bk.svg) no-repeat center center;
  background-size: 0.875rem;
  z-index: 1;
}
.cmn__more01:hover {
  color: var(--main-color);
  opacity: 1;
}
.cmn__more01:hover span {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
}
.cmn__more01:hover:after {
  border: 1px solid var(--accent-color);
  background: url(../img/cmn/cmn__ico-arrow-tr--wh.svg) no-repeat center center,
    var(--accent-color);
  background-size: 0.875rem;
}
.cmn__more01--bl {
  display: inline-flex;
  max-width: 100%;
  gap: 0.675em;
  color: var(--main-color);
  cursor: pointer;
  transition: 0.3s;
}
.cmn__more01--bl span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.75em;
  aspect-ratio: 4.76 / 1;
  border: 1px solid var(--accent-color);
  border-radius: 3px;
  background: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 400;
}
.cmn__more01--bl:after {
  display: block;
  width: 3.125em;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--accent-color);
  border-radius: 3.5px;
  content: "";
  background: url(../img/cmn/cmn__ico-arrow-tr--wh.svg) no-repeat center center,
    var(--accent-color);
  background-size: 0.875rem;
  z-index: 1;
}
.cmn__more01--bl:hover {
  color: var(--base-color);
  opacity: 1;
}
.cmn__more01--bl:hover span {
  border: 1px solid var(--base-color);
  background: none;
}
.cmn__more01--bl:hover:after {
  border: 1px solid var(--base-color);
  background: url(../img/cmn/cmn__ico-arrow-tr--bk.svg) no-repeat center center,
    transparent;
  background-size: 0.875rem;
}
.cmn__more02 {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 8.25em;
  max-width: 100%;
  aspect-ratio: 3.45 / 1;
  padding: 0 1.25em 0 1.875em;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  color: var(--main-color);
  font-family: var(--fm-notojp);
  font-weight: 400;
  font-size: 0.875rem;
}
.cmn__more02:after {
  display: inline;
  width: 0.875em;
  aspect-ratio: 1 / 1;
  content: "";
  background: url(../img/cmn/cmn__ico-arrow-r--wh.svg) no-repeat center center;
  background-size: 0.875rem;
}
.cmn__more03 {
  display: inline-flex;
  gap: 0.675em;
  color: var(--base-color);
}
.cmn__more03 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5em;
  aspect-ratio: 4 / 1;
  border: 1px solid var(--base-color);
  border-radius: 3px;
  font-family: var(--fm-inter);
}
.cmn__more03.cmn__fw-10 {
  display: block;
  width: 3.125em;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--base-color);
  border-radius: 3.5px;
  content: "";
  background: url(../img/cmn/cmn__ico-arrow-tr--bk.svg) no-repeat center center;
  background-size: 0.875rem;
  z-index: 1;
}

/* --------------------------------------------------
 * header
-------------------------------------------------- */

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--main-color);
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 2.5em;
}
.header__inner .header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 25%;
  padding: 0.675em 0;
  z-index: 999;
}
.header__inner .header__logo .logo {
  position: absolute;
  top: 1.125em;
  font-size: 16px;
  margin: 0;
}
.header__inner .header__logo .logo img {
  width: auto;
  height: auto;
  max-height: 8.375em;
  aspect-ratio: 1 / 1;
  transition: 0.3s;
}
.header__inner.header--scrolled .header__logo .logo {
  top: 0.675em;
}
.header__inner.header--scrolled .header__logo .logo img {
  max-height: 4em;
}
.header__inner .header__nav {
  display: flex;
  justify-content: flex-end;
  width: 75%;
  padding: 1.125em 0;
}
.header__inner .header__nav > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 3% 0.375em;
  gap: 0.625em;
  border-left: 2px solid var(--gray-color);
}
.header__inner .header__nav > div > p {
  width: 100%;
  line-height: 1;
  margin: 0;
  font-weight: 300;
  font-size: 0.8125rem;
}
.header__inner .header__nav > div ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  gap: 1.675em;
}
.header__inner .header__nav > div ul li {
  line-height: 1;
}
.header__inner .header__nav > div ul a {
  line-height: 1;
  font-family: var(--fm-base);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--base2-color);
}
.header__inner .header__nav > div.nav__other {
  flex-direction: row;
  align-items: flex-end;
  padding: 0 0 0.375em 3%;
}
.header__inner .header__nav .other__list {
  gap: 1.675em;
}
.header__inner .header__nav .other__la-list {
  gap: 1em;
  margin-left: 1em;
}
.header__inner .header__nav .other__la-item {
  position: relative;
}
.header__inner .header__nav .other__la-item + .other__la-item:before {
  display: block;
  position: absolute;
  left: -0.5em;
  content: "|";
  transform: translateX(-50%);
}
.header__inner .header__nav .other__la-item a {
  color: var(--gray2-color);
}
.header__inner .header__nav .other__la-item.current a {
  color: var(--base-color);
}
.header__inner .header__nav .other__search {
  width: 1.125em;
  line-height: 0;
  margin-left: 1.25em;
}
.header__inner .header__nav .nav__cta {
  margin-left: 2.25em;
}
.header__inner .header__nav .nav__cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.5em;
  aspect-ratio: 67 / 24;
  line-height: 1;
  border-radius: 1.5em;
  font-weight: 700;
  font-size: 1rem;
  color: var(--main-color);
  background: var(--base-color);
}
.header__inner .header__hm {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 2.625rem;
  height: 1.625rem;
  margin: 1.991em 0;
  border: 0;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  font-size: 16px;
  background: none;
  z-index: 999;
}
.header__inner .header__hm span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--base2-color);
  transition: 0.3s;
}
.header__inner .header__hm .hm__top {
  top: 0;
}
.header__inner .header__hm .hm__mid {
  top: 50%;
  transform: translateY(-50%);
}
.header__inner .header__hm .hm__btm {
  bottom: 0;
}
#header .modal {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
#header .modal.active {
  opacity: 1;
  pointer-events: auto;
}
#header .modal-content {
  position: relative;
  background: #fff;
  width: 70%;
  max-width: 1000px;
  padding: 4.5em 2em;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#header .modal-content .modal-search__tit {
  line-height: 1.6;
  margin-bottom: 0.5em;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent-color);
}
#header .modal-content form {
  display: flex;
  justify-content: space-between;
}
#header form input {
  width: calc(100% - 4.5em);
  padding: 0.875em;
  border: 1px solid #a5a5a5;
  border-radius: 5px;
}
#header form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4em;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  color: var(--main-color);
  background: var(--accent-color);
}
#header .close__btn {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2.5em;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
#header .close__btn:before {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 1em;
  right: 0;
  content: "";
  background: var(--base-color);
  transform: rotate(45deg);
}
#header .close__btn:after {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 1em;
  right: 0;
  content: "";
  background: var(--base-color);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1280px) {
  .header__inner .header__logo .logo img {
    max-height: 6.5em;
  }
}
@media screen and (max-width: 1080px) {
  .header__inner {
    position: relative;
  }
  .header__inner {
    padding: 0 4% 0 2.3%;
  }
  .header__inner .header__logo .logo {
    top: 0.9375em;
  }
  .header__inner .header__hm {
    display: flex;
  }
  .header__inner .header__nav {
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    transition: 0.3s;
    padding: 88.5px 16%;
    border-bottom: 2px solid var(--gray-color);
    z-index: 10;
  }
  .header__inner .header__nav > div {
    align-items: flex-start;
    padding: 2.5em 0;
    gap: 1em;
    border-left: none;
  }
  .header__inner .header__nav > div:first-of-type {
    padding-bottom: 0;
  }
  .header__inner .header__nav > div > p {
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--base-color);
    font-size: 1.75rem;
    text-align: left;
  }
  .header__inner .header__nav > div ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
  .header__inner .header__nav > div ul a {
    font-size: 1.5rem;
  }
  .header__inner .header__nav > div.nav__other {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5em 0;
    border-top: 1px solid var(--base-color);
    gap: 4.75em;
  }
  .header__inner .header__nav .other__list {
    gap: 1em;
  }
  .header__inner .header__nav .other__la-list {
    flex-direction: row;
    margin-left: 0;
  }
  .header__inner .header__nav .other__search,
  .header__inner .header__nav .nav__cta {
    margin-left: 0;
  }
  .header__inner .header__nav .other__search {
    position: absolute;
    width: 2rem;
    aspect-ratio: 1 / 1;
    top: 1.991em;
    right: 6.125em;
    font-size: 16px;
  }
  .header__inner .header__nav .other__search img {
    width: 100%;
    height: auto;
  }
  .header__inner .header__nav .other__la-list {
    gap: 2.5em;
  }
  .header__inner .header__nav .other__la-item + .other__la-item:before {
    left: -0.875em;
    font-size: 1.5rem;
  }
  .header__inner .header__nav .nav__cta {
    width: 100%;
  }
  .header__inner .header__nav .nav__cta a {
    width: 100%;
    height: 2.93em;
    border-radius: 50vw;
    aspect-ratio: auto;
    font-size: 1.25rem;
  }
  .header__inner .header__nav.open {
    right: 0;
  }
  .header__inner .header__hm.open .hm__top {
    transform: rotate(45deg);
    transform-origin: center;
    top: 50%;
  }
  .header__inner .header__hm.open .hm__mid {
    opacity: 0;
  }
  .header__inner .header__hm.open .hm__btm {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header__inner .header__logo .logo img {
    max-height: 5.25em;
  }
  .header__inner {
    padding: 0 4% 0 2.3%;
  }
  .header__inner .header__logo .logo {
    top: 0.9375em;
  }
  .header__inner .header__nav .other__search {
    right: 4.125em;
  }
  #header .modal-content {
    width: 90%;
  }
}

/* --------------------------------------------------
 * footer
-------------------------------------------------- */
#footer {
  position: relative;
  top: 84px;
  margin-top: auto;
  background: var(--accent-color);
}
.footer__up {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 3.125em;
}
.footer__up .footer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 25%;
  padding: 2.5em 3.125em 0 0;
}
.footer__up .footer__logo .logo {
  margin: 0;
}
.footer__up .footer__logo .logo a {
  display: block;
  background: var(--accent-color);
}
.footer__up .footer__nav {
  display: flex;
  justify-content: flex-end;
  width: 75%;
}
.footer__up .footer__nav > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% / 3);
  padding: 2.5em 3% 5.25em;
  gap: 1.5em;
  border-left: 1px solid #b6c1d5;
}
.footer__up .footer__nav > div.nav__other {
  padding-top: 4.9375em;
}
.footer__up .footer__nav > div > p {
  width: 100%;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__up .footer__nav > div ul {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.footer__up .footer__nav > div ul li {
  line-height: 1;
}
.footer__up .footer__nav > div ul a {
  line-height: 1.8;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--main-color);
}
.footer__btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 3.125em;
  border-top: 1px solid #b6c1d5;
}
.footer__btm .copy {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__btm .sns__list {
  display: flex;
  justify-content: center;
  gap: 0.675em;
}
.footer__btm .sns__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  aspect-ratio: 1 / 1;
  padding: 0.35em;
  border-radius: 1em;
  background: var(--main-color);
}
@media screen and (max-width: 768px) {
  .footer__up {
    flex-wrap: wrap;
    padding: 0;
  }
  .footer__up .footer__logo {
    width: 100%;
    padding: 2em 5% 4.166em;
  }
  .footer__up .footer__nav {
    position: relative;
    width: 100%;
    margin: 0 0 4em;
    padding: 0 5%;
  }
  .footer__up .footer__nav > div {
    width: calc((100% - 2px) / 3);
    padding: 0;
    gap: 1em;
  }
  .footer__up .footer__nav > div > p {
    font-size: 1rem;
  }
  .footer__up .footer__nav .nav__portfolio {
    border-left: none;
  }
  .footer__up .footer__nav .nav__pod {
    padding: 0 5% !important;
  }
  .footer__up .footer__nav .nav__other {
    padding: 1.9375em 0 0 5% !important;
  }
  .footer__up .footer__nav > div ul a {
    font-size: 1rem;
  }
  .footer__btm {
    padding: 1.25em 5%;
  }
  .footer__btm .copy {
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------------
 * main
-------------------------------------------------- */
#main {
  position: relative;
  top: 84px;
}
#main > section {
  padding: 0 4.375em;
}
#main > section:first-of-type {
  margin-top: 12em;
}
#main > section:last-of-type {
  margin-bottom: 7.5em;
}
@media screen and (max-width: 768px) {
  #main > section {
    padding: 0 4%;
  }
  #main > section:first-of-type {
    margin-top: 8.75em;
  }
  #main > section:last-of-type {
    margin-bottom: 6em;
  }
}
