@charset "UTF-8";
.inner {
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1180px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000;
  color: #f8f8f8;
  text-align: center;
  height: 58px;
  font-family: "Jost", sans-serif;
}
.button.is-white {
  background-color: #fff;
  color: #000;
}
@media (min-width: 768px) {
  .button {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    height: 90px;
  }
  .button:hover .button-arrow {
    transform: translateX(10px);
  }
}

@media (min-width: 768px) {
  .button-text {
    font-weight: bold;
  }
}

.button-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform ease 0.3s;
}
.button-arrow img {
  width: 23px;
  height: 23px;
}

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

.hidden {
  overflow: hidden;
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  z-index: 10;
}

.header-inner {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header-inner {
    height: 80px;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
}

.header-logo-image {
  width: 120px;
}

.drawer-button {
  width: 35px;
  height: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .drawer-button {
    display: none;
  }
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(2) {
  bottom: inherit;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-button-bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all ease 0.3s;
}
.drawer-button-bar:nth-of-type(1) {
  top: 0;
}
.drawer-button-bar:nth-of-type(2) {
  bottom: 0;
}

.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
}

.header-nav-list {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.header-nav-link {
  font-weight: bold;
  font-family: "Jost", sans-serif;
  position: relative;
  padding-bottom: 5px;
}
.header-nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-nav-link:hover::after {
  transform: scaleX(1);
}

/*==============================
drawer-contents
==============================*/
.drawer-contents {
  position: fixed;
  z-index: 5;
  background-color: #f8f8f8;
  width: 100%;
  height: 100vh;
  padding-top: 180px;
  top: -100%;
  left: 0;
  transition: top ease 0.3s;
}
.drawer-contents.is-open {
  top: 0;
}

.drawer-nav {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.drawer-link {
  font-family: "Jost", sans-serif;
  font-weight: bold;
}

/*==============================
fv
==============================*/
.fv {
  padding: 95px 0;
}
@media (min-width: 768px) {
  .fv {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}

.fv-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fv-text-main {
  font-size: 40px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .fv-text-main {
    font-size: 105px;
  }
}

.fv-text-main-border {
  color: #f8f8f8;
  -webkit-text-stroke: 3px #000;
  paint-order: stroke;
}

.fv-text-sub {
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .fv-text-sub {
    font-size: 40px;
  }
}

.fv-scroll {
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .fv-scroll {
    margin-right: 0;
  }
}

.fv-scroll-text {
  margin-bottom: -20px;
  font-size: 12px;
  font-family: "Jost", sans-serif;
}

.fv-scroll-arrow {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
}
.fv-scroll-arrow::before, .fv-scroll-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 1px) 50%;
}
.fv-scroll-arrow::before {
  transform: rotate(37.5deg);
}
.fv-scroll-arrow::after {
  transform: rotate(-37.5deg);
}

/*==============================
section共通
==============================*/
.section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section-title {
  font-size: 34px;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  margin-bottom: 50px;
}
.section-title.is-white {
  color: #fff;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 64px;
    margin-bottom: 70px;
  }
}

/*==============================
concept
==============================*/
.concept-image {
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .concept-image {
    padding: 0;
  }
}

.concept-text-wrapper {
  padding: 0 20px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .concept-text-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 55px;
  }
}

.concept-ja {
  font-weight: bold;
}

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

.concept-button {
  padding: 0 20px;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .concept-button {
    padding: 0;
    margin-top: 80px;
  }
}

/*==============================
works
==============================*/
.works-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .works-list {
    gap: 80px;
  }
}

.works-item:nth-child(2n) .works-link {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .works-link {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .works-link:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .works-link:hover .works-item-image img {
    transform: scale(1.2, 1.2);
  }
  .works-link:hover .works-item-link::after {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .works-item-image {
    width: 54.5454545455%;
    overflow: hidden;
  }
  .works-item-image img {
    transition: transform 0.3s ease;
  }
}

.works-item-text-contents {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .works-item-text-contents {
    flex: 1;
  }
}

.works-item-tags {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.works-item-tag {
  font-size: 14px;
  padding: 0 4px;
  color: #fff;
  background-color: #000;
  font-weight: bold;
}

.works-item-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}

.works-item-text {
  margin-top: 10px;
  line-height: 1.18;
}

.works-item-sub {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.works-item-link {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  display: inline-block;
  position: relative;
}
.works-item-link::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #000;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.works-item-link-text {
  font-size: 14px;
}

.works-item-link-icon img {
  width: 20px;
}

.works-button {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .works-button {
    margin-top: 80px;
  }
}

/*==============================
service
==============================*/
@media (min-width: 768px) {
  .service-contents {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .service-list {
    gap: 100px;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .service-item {
    flex-direction: row;
    gap: 40px;
  }
}

.service-item-title {
  font-size: 24px;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  padding-left: 60px;
  position: relative;
}
.service-item-title::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #000;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .service-item-title::before {
    width: 110px;
    transform: translateY(0);
    top: 20px;
  }
}
@media (min-width: 768px) {
  .service-item-title {
    width: 46.2222222222%;
    padding-left: 120px;
    font-size: 48px;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .service-item-text {
    width: 49.4444444444%;
  }
}

/*==============================
footer
==============================*/
.footer {
  background-color: #000;
}

.footer-title {
  text-align: center;
}

.footer-contact-text {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

.footer-burron {
  margin-top: 50px;
}

.footer-copyright {
  background-color: #f8f8f8;
  text-align: right;
  padding-top: 100px;
  padding-bottom: 15px;
}

.copyright {
  font-size: 12px;
  font-family: "Jost", sans-serif;
}

/*==============================
下層ページ共通
==============================*/
.page-title {
  padding-top: 125px;
}
@media (min-width: 768px) {
  .page-title {
    padding-top: 160px;
  }
}

.page-title-text {
  font-size: 40px;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-title-text {
    font-size: 64px;
  }
}

.page-section {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 100px 0;
  }
}

.page-section-title {
  margin-bottom: 30px;
}
.page-section-title h3 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  color: #000;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-section-title h3 {
    font-size: 40px;
  }
}

/*==============================
about-concept
==============================*/
@media (min-width: 768px) {
  .about-concept-inner {
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-main-text {
  font-size: 23px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .about-main-text {
    font-size: 24px;
  }
}

.about-concept-text {
  margin-top: 30px;
}

/*==============================
about-profile
==============================*/
.about-profile-inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .about-profile-inner {
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-profile-name {
  display: flex;
  flex-direction: row;
  gap: 15px;
  font-family: "Jost", sans-serif;
  align-items: center;
}

.about-profile-name-sub {
  font-size: 18px;
  font-weight: bold;
}

.about-profile-name-main {
  font-size: 24px;
  font-weight: bold;
}

.about-profile-text {
  margin-top: 30px;
}

/*==============================
about-skill
==============================*/
@media (min-width: 768px) {
  .about-skill-inner {
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-skill-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-skill-item {
  display: flex;
  flex-direction: column;
}

.about-skill-main {
  font-size: 24px;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}

/*==============================
works
==============================*/
.works-button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.works-filter .works-button {
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  border: 1px solid currentColor;
  background-color: #f8f8f8;
  width: 83px;
  height: 26px;
  margin-top: 0;
  transition: all ease 0.3s;
}
.works-filter .works-button.is-active {
  color: #f8f8f8;
  background-color: #000;
}
@media (min-width: 768px) {
  .works-filter .works-button:hover {
    color: #f8f8f8;
    background-color: #000;
  }
}

@media (min-width: 768px) {
  .works-page-list {
    margin-left: -25px;
    margin-right: -25px;
    margin-top: 80px;
  }
}
.works-page-list .work-item {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .works-page-list .work-item {
    width: calc(50% - 50px);
    margin: 25px;
  }
}
.works-page-list .works-item-image {
  width: 100%;
}
@media (min-width: 768px) {
  .works-page-list .works-link {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*==============================
contact
==============================*/
@media (min-width: 768px) {
  .contact-inner {
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-text {
  font-weight: bold;
}

.contact-text-attention {
  margin-top: 30px;
  font-size: 14px;
}

.text-red {
  color: #dd0404;
}

.contact-form {
  margin-top: 50px;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.contact-form-field {
  padding: 20px 10px;
  border-bottom: 1px solid #a6a6a6;
}
@media (min-width: 768px) {
  .contact-form-field {
    display: flex;
    gap: 150px;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .contact-textarea {
    align-items: start;
  }
}

.contact-form-name {
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact-form-name {
    width: 180px;
  }
}

.contact-form-input {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .contact-form-input {
    flex: 1;
  }
}

.input-text {
  border: none;
  background-color: transparent;
  outline: none;
  width: 100%;
}

.input-textarea {
  border: none;
  background-color: transparent;
  outline: none;
  height: 200px;
  width: 100%;
}

.contact-form-button {
  margin-top: 50px;
}
.contact-form-button .button {
  border: 1px solid currentColor;
  background-color: #f8f8f8;
  color: #000;
  font-weight: bold;
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .contact-form-button .button {
    margin-top: 80px;
  }
  .contact-form-button .button:hover {
    background-color: #000;
    color: #f8f8f8;
    cursor: pointer;
  }
}

/*==============================
single-works
==============================*/
@media (min-width: 768px) {
  .single-works-inner {
    max-width: 980px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.single-works-title {
  margin-top: 0;
}

.single-works-tags {
  margin-top: 10px;
}

.single-works-image {
  margin-top: 50px;
  width: 100%;
}

.single-works-info {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .single-works-info {
    margin-top: 50px;
  }
}

.single-works-dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  border-bottom: 1px solid #a6a6a6;
}
@media (min-width: 768px) {
  .single-works-dl {
    flex-direction: row;
    gap: 60px;
  }
}

.single-works-dt {
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .single-works-dt {
    width: 150px;
  }
}

.single-works-dd {
  line-height: 1;
  line-height: 1.8;
}
.single-works-dd a {
  font-weight: bold;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .single-works-dd {
    flex: 1;
  }
  .single-works-dd a {
    transition: opacity ease 0.3s;
  }
  .single-works-dd a:hover {
    opacity: 0.7;
  }
}

.single-works-button {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .single-works-button {
    margin-top: 80px;
  }
}

/*==============================
comingsoon（上のbody確認）
==============================*/
body {
  background-color: #ededed;
  color: #666;
  font-family: "Jost", sans-serif;
  position: relative;
  width: 100%;
  height: 100vh;
}

.comingsoon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comingsoon h1 {
  width: 480px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .comingsoon h1 {
    width: 200px;
  }
}
.comingsoon__text {
  text-align: center;
  font-size: 128px;
}
@media (max-width: 767px) {
  .comingsoon__text {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */