@charset "UTF-8";

:root {
  /* 色管理用の変数 */

  --black-color: #000;
  --white-color: #fcfcfc;
  --gray-color: #646464;
  --gray-color02: #d5d5d5;
  --gray-color03: #aeaeae;
  --blue-color: #171ac5;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 796px;
  --content-width: 1308px;
  --content-width-lg: 3000px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  background-color: var(--white-color);
  font-size: 14px;
  font-family: Helvetica, "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
/* button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
} */

a:hover {
  opacity: 0.3;
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u_md-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .u_lg-up {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 14px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .l_container-sm,
  .l_container,
  .l_container-lg {
    padding: 0 72px;
  }
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 28px);
}

.l_container {
  max-width: calc(var(--content-width) +28px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 28px);
}

.l_contents {
  padding-top: 126px;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding-top: 260px;
  }
  #works .l_contents {
    padding-top: 174px;
  }
}

.l_header {
  background: var(--white-color);
  height: 42px;
  width: 100%;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.Works .l_header {
  position: fixed;
  top: -100px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header {
    height: 54px;
    padding: 0 24px;
  }

  .Works header:last-of-type {
    opacity: 0;
    pointer-events: none;
  }
}

.l_header-logo_link {
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_header-logo_img {
    height: 18px;
  }
}

.l_header-nav {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 33%;
  left: 14px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    counter-reset: number 0;
    position: static;
    transform: none;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 46px;
  }
  .l_header-nav_item:nth-child(3) {
    margin-right: 0;
  }
  .l_header-nav_list li:last-of-type {
    display: none;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav_text {
  font-size: 35px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_text {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_text::before {
    counter-increment: number 1;
    content: "(0" counter(number) ")";
    font-size: 11px;
    position: absolute;
    top: 7px;
    left: -25px;
  }
}

.l_header-nav_link span {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  display: block;
  line-height: 0.8;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link span {
    font-size: 22px;
    display: inline;
  }
}

.l_header-nav_link span::before {
  content: "";
  margin: 0 4px 0 0;
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  background-image: url(../img/arrow.svg);
  background-size: contain;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link span::before {
    margin: 0 8px 0 7px;
  }
}

.l_header-nav_icon {
  display: flex;
  margin-top: 57px;
  gap: 15px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_icon {
    display: none;
  }
}

.l_header-fixed {
  position: fixed;
  top: -100px;
  z-index: var(--z-index-header);
  height: 56px;
  display: none;
  padding-right: 0;
}
@media screen and (min-width: 1080px) {
  .l_header-fixed {
    display: flex;
  }
  .l_header-fixed .l_header-nav_text {
    font-size: 16px;
  }
  .l_header-fixed .l_header-nav_text span {
    font-size: 18px;
  }
  .l_header-fixed .l_header-nav_link span::before {
    content: "";
    margin: 0 4px 0 8px;
    display: inline-block;
    height: 0.7em;
    width: 0.7em;
    background-image: url(../img/arrow-black.svg);
    background-size: contain;
  }
  .l_header-fixed .l_header-nav_item:last-child span::before {
    content: "";
    background-image: url(../img/arrow-white.svg);
  }
  .l_header-fixed .l_header-nav_text::before {
    content: "";
  }
  .l_header-fixed .l_header-logo_img {
    height: 24px;
  }
  .l_header-fixed .l_header-nav_item {
    margin-right: 32px;
  }
  .l_header-fixed .l_header-nav_list {
    display: flex;
    height: 56px;
  }

  .l_header-fixed .l_header-nav_list li:last-of-type {
    display: flex;
    margin-right: 0;
    background-color: var(--blue-color);
    color: var(--white-color);
    padding: 0 20px;
  }
}

.l_footer {
  border-top: 1px solid #000;
  font-family: "Playfair Display", serif;
  margin: 0 14px 20px;
  padding-top: 33px;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
  .l_footer {
    margin: 0 24px 20px;
    position: relative;
  }
  .l_footer_logo {
    width: 219.35px;
  }
}

.l_footer_adress {
  margin-top: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .l_footer_adress {
    margin-top: 86px;
  }
}

.l_footer_txt {
  margin-top: 40px;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .l_footer_txt {
    margin-top: 0;
    position: absolute;
    top: 33px;
    right: 0;
    text-align: right;
  }
}

.l_footer-copyright {
  margin-top: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .l_footer-copyright {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

/* ---------- module ---------- */

.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: #111;
  display: flex;
}

.m_opening_txt {
  text-align: center;
  margin: auto;
}

.m_opening_heading {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_opening_heading {
    font-size: 56px;
  }
}

.m_opening_desc {
  color: var(--white-color);
  font-weight: bold;
  font-size: 16px;
  margin-top: 16px;
  filter: hue-rotate(180deg);
}

.m_section_title {
  display: flex;
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  .top_team .m_section_title {
    justify-content: flex-end;
    font-size: 36.71px;
  }
}

.m_section_title_jp {
  font-size: 30px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .m_section_title_jp {
    font-size: 37px;
  }
}

.m_section_title_jp::after {
  content: "";
  margin: 0 3px;
  display: inline-block;
  height: 0.85em;
  width: 0.85em;
  background-image: url(../img/arrow.svg);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .m_section_title_jp::after {
    margin: 0 6px;
  }
}

.m_section_title_en {
  font-size: 32px;
  font-family: "Playfair Display", serif;
}

@media screen and (min-width: 768px) {
  .m_section_title_en {
    font-size: 40px;
  }
}

.m_cta_box {
  margin: 127px auto 138px;
  text-align: center;
  width: 347px;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
  .m_cta_box {
    width: auto;
    margin-top: 202px;
    margin-bottom: 267px;
  }
}

.Works .m_cta_box {
  margin: 110px auto 138px;
}

@media screen and (min-width: 768px) {
  .Works .m_cta_box {
    margin: 192px auto 193px;
  }
}

.m_cta_title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .m_cta_title {
    font-size: 72px;
  }
}

.m_cta_txt {
  margin: 26px auto 33px;
  font-weight: 300;
  max-width: 467px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .m_cta_txt {
    font-size: 17px;
    margin: 44px auto;
  }
}

.m_cta_mail {
  font-size: 32px;
  font-weight: 300;
  text-decoration: underline;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .m_cta_mail {
    font-size: 48px;
  }
}

.m_hamburger {
  display: flex;
  gap: 6px;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--black-color);
  left: 50%;
  transition: 0.3s;
}

@media screen and (min-width: 1080px) {
  .m_kv-inner {
    position: relative;
    height: 100%;
  }
}

.m_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .m_kv-box {
    left: 16px;
    transform: translate(0, -50%);
    text-align: left;
  }
}

.m_kv-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}

@media screen and (min-width: 1080px) {
  .m_kv-title {
    font-size: 32px;
  }
}

.m_kv-desc {
  font-weight: bold;
  color: var(--white-color);
  margin-top: 16px;
}

.m_detail {
  display: flex;
  font-size: 17px;
  margin-top: 40px;
  justify-content: flex-end;
}

@media screen and (min-width: 1080px) {
  .m_detail {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.top_service_item.package .m_detail {
  margin-top: 10px;
}

@media screen and (min-width: 1080px) {
  .top_service_item.package .m_detail {
    margin-top: 0;
    top: 42px;
  }
}

.m_detail::after {
  content: "";
  margin: auto 0 0 10px;
  display: inline-block;
  height: 1em;
  width: 1em;
  background-image: url(../img/more-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.m_detail_text {
  font-weight: 300;
  border-bottom: 1px solid var(--black-color);
}

/* ---------- .top_kv ---------- */

.top_kv {
  padding-top: 42px;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    padding-top: 60px;
  }
}

.m_kv-inner {
  padding: 0 14px;
}

@media screen and (min-width: 1080px) {
  .m_kv-inner {
    padding: 0 24px;
  }
}

.top_kv_box {
  /* border-bottom: 1px solid var(--black-color); */
  font-size: 12px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}

@media screen and (min-width: 1080px) {
  .top_kv_box {
    /* border-bottom: 2px solid var(--black-color); */
    font-size: 12px;
    padding-bottom: 20px;
    margin-top: 14px;
  }
}

.top_kv_logo_inner {
  padding-left: 14px;
}

@media screen and (min-width: 1080px) {
  .top_kv_logo_inner {
    padding: 0 24px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.top_kv_logo {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.top_kv_logo_items {
  display: inline-block;
  white-space: nowrap;
}

.top_kv_logo_items.pc {
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_kv_logo_items.sp {
    display: none;
  }
}

.top_kv_logo_img {
  width: 778px;
  height: 83px;
}

@media screen and (min-width: 1080px) {
  .top_kv_logo_img {
    width: calc(100vw - 48px);
    height: auto;
  }
}

.scroll-left {
  animation: infinity-scroll-left 10s infinite linear 0.5s both;
}

@media screen and (min-width: 1080px) {
  .scroll-left {
    animation: none;
  }
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .top_kv_sub-logo_sp {
    display: none;
  }
}

.top_kv_sub-logo_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_kv_sub-logo_pc {
    display: block;
  }
}

.top_kv_video {
  margin-top: 23px;
}

@media screen and (min-width: 768px) {
  .top_kv_video {
    margin-top: 22px;
    aspect-ratio: 1464 / 552;
  }
}

.top_kv_video_item {
  background-image: url(../img/fv-video.jpg);
  background-size: cover;
  background-position: top;
  animation: parallax linear both;
  animation-timeline: view();
}

@keyframes parallax {
  from {
    background-position: center 40%;
  }

  to {
    background-position: center 60%;
  }
}

.top_kv_video_item {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 347/520;
}

@media screen and (min-width: 768px) {
  .top_kv_video_item {
    aspect-ratio: auto;
  }
}

.top_about_title {
  margin-top: 107px;
  position: relative;
  width: 231px;
  aspect-ratio: 231 / 212;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .top_about_title {
    margin-top: 24px;
    width: 100%;
    aspect-ratio: 1464 / 90;
  }
}

.top_about_title svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_about_title_sp {
  display: inline-block;
}
.top_about_title_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_about_title_sp {
    display: none;
  }
  .top_about_title_pc {
    display: inline-block;
  }
}

.m_about_text {
  margin-top: 41px;
}

@media screen and (min-width: 768px) {
  .m_about_text {
    margin: 223px 176px 257px;
  }
}

.m_about_text-en {
  font-size: 16px;
  font-weight: lighter;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .m_about_text-en {
    font-size: 24px;
  }
}

.m_about_text-jp {
  font-size: 12px;
  font-weight: 300;
  margin-top: 26px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m_about_text-jp {
    font-size: 15px;
    margin-top: 28px;
  }
}

.top_about_office {
  margin: 40px 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_about_office {
    margin: 0 58px;
  }
}

.top_about_office_wrapper {
  background-image: url(../img/top_office.jpg);
  background-size: cover;
  background-position: center;
  aspect-ratio: 347 / 203;
}

@media screen and (min-width: 768px) {
  .top_about_office_wrapper {
    aspect-ratio: 1368 / 638;
  }
}

.top_about_office_text {
  color: var(--white-color);
  font-family: "Playfair Display", serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .top_about_office_text {
    font-size: 47px;
  }
}

.top_kv_btn-wrapper {
  width: 264px;
  height: 60px;
  margin: 40px auto 0;
}

@media screen and (min-width: 1200px) {
  .top_kv_btn-wrapper {
    margin: 64px 0 0;
  }
}

/* ---------- .top_kv-scroll ---------- */

.top_kv-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.top_kv-scroll_txt {
  font-size: 12px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

.top_kv-scroll_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 8px auto 0;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

/* ---------- .top_team ---------- */

.top_team_member {
  margin-top: 30px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_team_member {
    margin-top: 44px;
    position: relative;
  }
}

.top_team_list {
  width: 100%;
  border-top: 1px solid #000;
  padding: 9px 6px;
}

@media screen and (min-width: 1080px) {
  .top_team_list {
    border-top: 2px solid #000;
    padding: 12px 6px;
    &:hover {
      pointer-events: all;
    }
    &:active {
      pointer-events: none;
    }
  }
  .top_team_list_box:hover {
    opacity: 0.3;
  }
  .top_team_member_img {
    position: absolute;
    z-index: 1;
    border-radius: 2%;
    width: 100%;
  }
  .top_team_member_img:nth-child(1)::after {
    content: "";
    position: absolute;
    transform: rotate(15deg);
    background-image: url(../img/Team1.jpg);
    background-size: contain;
  }
  .top_team_member_img:nth-child(2)::after {
    content: "";
    position: absolute;
    transform: rotate(30deg);
    background-image: url(../img/Team2.jpg);
    background-size: contain;
  }
  .top_team_member_img:nth-child(3)::after {
    content: "";
    position: absolute;
    transform: rotate(-15deg);
    background-image: url(../img/Team3.jpg);
    background-size: contain;
  }
  .top_team_member_img:nth-child(4)::after {
    content: "";
    position: absolute;
    transform: rotate(5deg);
    background-image: url(../img/Team4.jpg);
    background-size: contain;
  }
  .top_team_member_img:nth-child(5)::after {
    content: "";
    position: absolute;
    transform: rotate(-20deg);
    background-image: url(../img/Team5.jpg);
    background-size: contain;
  }

  .top_team_member_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 40%;
    opacity: 0;
    transition: 1s;
    overflow: hidden;
    width: 16.82%;
    aspect-ratio: 230.7/288.38;
  }

  /* 1番目のリスト項目の::afterを非表示にするクラス */
  .top_team_member_img.hide-after::after {
    opacity: 0;
  }

  /* ホバーしたリスト項目の::afterを表示するクラス */
  .top_team_member_img.show-after::after {
    opacity: 1;
  }
}

.top_team_list:last-child {
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 1080px) {
  .top_team_list:last-child {
    border-bottom: 2px solid #000;
  }
}

.top_team_list_box {
  width: 100%;
}

.top_team_list_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_team_list_ttl {
  font-size: 20px;
  font-family: "Playfair Display", serif;
}

@media screen and (min-width: 768px) {
  .top_team_list_ttl {
    font-size: 24px;
  }
}

.top_team_list_txt {
  font-size: 14px;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .top_team_list_txt {
    font-size: 16px;
  }
}

.top_team_list_open {
  opacity: 0;
  line-height: 0;
  pointer-events: none;
  text-align: center;
}

.top_team_list_img {
  border-radius: 10px;
  object-fit: cover;
  transform: rotate(6deg);
  width: 63%;
  margin: 7% 0 6%;
}

/* ---------- .top_service ---------- */

.top_service_menu {
  margin-top: 26px;
}

.top_service_item {
  /* border-top: 1px solid #000; */
  padding: 44px 0 80px 0;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_service_item {
    /* border-top: 2px solid #000; */
    display: flex;
    gap: 48px;
    padding: 42px 0 158px;
  }
}

.top_service_item.package {
  padding: 28px 0 52px 0;
}

@media screen and (min-width: 1080px) {
  .top_service_item.package {
    display: block;
    padding: 46px 0 0;
  }
}

.top_service_box:last-child .top_service_item {
  padding-bottom: 0;
}

.top_service_item_img {
  border-radius: 2%;
}
@media screen and (min-width: 1080px) {
  .top_service_item_img {
    width: 498px;
  }

  .top_service_item_content {
    max-width: 42%;
  }
}

.top_service_item_title {
  font-size: 16px;
  line-height: 1.1;
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .top_service_item_title {
    margin-top: 0;
  }
}

.package .top_service_item_title {
  margin-top: 0;
}

@media screen and (min-width: 1080px) {
  .top_service_item_title {
    position: relative;
  }
}

.top_service_item_title.design::after {
  content: "(ブランド/グラフィックデザイン)";
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.44;
}

.top_service_item_title.website::after {
  content: "( Webデザイン)";
  display: block;
  font-size: 12px;
  line-height: 1.44;
}

.top_service_item_title.design-sprint::after {
  content: "( スターター )";
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.44;
}
.top_service_item_title.design-intensive::after {
  content: "( トータルブランディング )";
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.44;
}

@media screen and (min-width: 1140px) {
  .top_service_item_title.design::after {
    display: inline;
    padding-left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1080px) {
  .top_service_item_title.website::after {
    display: inline;
    padding-left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .top_service_item_title.design-sprint::after {
    display: inline;
    padding-left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .top_service_item_title.design-intensive::after {
    display: inline;
    padding-left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.top_service_item-example {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.07;
  margin-top: 14px;
}

@media screen and (min-width: 1080px) {
  .top_service_item-example {
    line-height: 1.05;
    margin-top: 15px;
  }
}

.top_service_item.package .top_service_item-example {
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .top_service_item-example {
    font-size: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .top_service_item.package .top_service_item-example {
    font-size: 24px;
  }
}

.top_service_price {
  font-size: 17px;
  font-weight: 300;
  margin-top: 4px;
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_service_price {
    display: block;
  }
}

.top_service_item_txt-en {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 5px;
}

@media screen and (min-width: 1080px) {
  .top_service_item_txt-en {
    font-size: 17px;
  }
}

.top_service_item_txt-jp {
  color: var(--gray-color03);
  font-size: 11px;
  font-weight: lighter;
  letter-spacing: 0.08em;
  line-height: 1.44;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .top_service_item_txt-jp {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-top: 4px;
  }
}

.top_service_item.package .top_service_item_txt-en {
  margin-top: 15px;
}
.package .top_service_item_txt-jp {
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .top_service_item.package .top_service_item_txt-en {
    margin-top: 8px;
  }
  .package .top_service_item_txt-jp {
    margin-top: 6px;
  }
}

.top_service_menu_title {
  font-size: 24px;
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.02em;
  padding-bottom: 22px;
}

@media screen and (min-width: 1080px) {
  .top_service_menu_title {
    font-size: 40px;
    padding-bottom: 53px;
  }
}

@media screen and (min-width: 1080px) {
  .top_service_package {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ---------- .top_works ---------- */

.top_works_posts {
  margin-top: 21px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  /* .top_works_posts {
    display: flex;
    flex-direction: column;
  } */

  .top_works_posts_container {
    display: grid;
    grid-template-columns: 1fr 1.56fr 1fr;
    column-gap: 24px;
    margin-top: 38px;
  }
  .top_works_posts_container:nth-child(2) {
    grid-template-columns: 1fr 1fr 1.56fr;
    margin-top: 85px;
  }
  .top_works_posts_container:nth-child(3) {
    grid-template-columns: 1fr 1.56fr 1fr;
    margin-top: 85px;
  }

  .top_works_posts_container:nth-child(2) {
    order: 3;
  }
  .top_works_posts_container:nth-child(3) {
    order: 2;
  }

  .top_works_item:nth-child(1) {
    grid-column: 1;
  }
  .top_works_item:nth-child(2) {
    grid-column: 2;
  }
  .top_works_item:nth-child(3) {
    grid-column: 3;
  }

  .top_works_item_img {
    aspect-ratio: 4/5;
  }

  .top_works_item_img.wide {
    aspect-ratio: 5/4;
  }
}
.top_works_item {
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .top_works_item {
    margin-top: 0px;
  }
}

.top_works_posts_container:nth-child(1) .top_works_item:nth-child(1),
.top_works_posts_container:nth-child(2) .top_works_item:nth-child(1),
.top_works_posts_container:nth-child(2) .top_works_item:nth-child(2),
.top_works_posts_container:nth-child(3) .top_works_item:nth-child(2),
.top_works_posts_container:nth-child(3) .top_works_item:nth-child(3) {
  display: none;
}

.top_works_posts_container:nth-child(1) .top_works_item:nth-child(2) {
  margin-top: 0;
}

.top_works_item_content {
  display: flex;
  font-weight: 300;
  justify-content: space-between;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .top_works_item_content {
    margin-top: 20px;
  }
}

.top_works_item_content-long {
  font-weight: 300;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .top_works_item_content-long {
    margin-top: 24px;
  }
}

.top_works_item_title {
  font-size: 14px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .top_works_item_title {
    font-size: 16px;
  }
}

.top_works_item_text {
  color: var(--gray-color);
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .top_works_item_text {
    font-size: 16px;
  }
}

.top_works_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.top_works_item_content-long .top_works_item_text {
  margin-top: 4px;
}

@media screen and (min-width: 768px) {
  .top_works_item_content-long .top_works_item_text {
    margin-top: 16px;
  }
}

/* ---------- .top_column ---------- */

.top_column_title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.09;
}

@media screen and (min-width: 1080px) {
  .top_column_title {
    font-size: 96px;
    line-height: 1.13;
  }
}

.top_column_title span {
  font-style: italic;
}

.top_column_desc {
  margin-top: 37px;
}

@media screen and (min-width: 768px) {
  .top_column_desc {
    margin: 88px auto 0;
    display: grid;
    grid-template-columns: 62.4% 1fr;
    grid-template-rows: auto;
    column-gap: 32px;
    row-gap: 81px;
    max-width: calc(750px + 420px + 32px);
  }
}

.top_column_text_en {
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.22;
}

@media screen and (min-width: 768px) {
  .top_column_text_en {
    font-size: 24px;
  }
}

.top_column_text_jp {
  font-size: 11px;
  margin-top: 29px;
  line-height: 1.64;
}

@media screen and (min-width: 768px) {
  .top_column_text_jp {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .top_column_desc p:nth-of-type(1) {
    grid-row: 1;
    grid-column: 1;
  }
  .top_column_desc p:nth-of-type(2) {
    grid-row: 1;
    grid-column: 2;
  }
  .top_column_desc p:nth-of-type(3) {
    grid-row: 3;
    grid-column: 1;
  }
  .top_column_desc p:nth-of-type(4) {
    grid-row: 3;
    grid-column: 2;
  }
  .top_column_text_jp {
    margin-top: 0;
  }
}

.top_column_img-wrapper {
  padding: 37px 0;
}

@media screen and (min-width: 768px) {
  .top_column_img-wrapper {
    grid-row: 2;
    grid-column: 1;
    padding: 0 2.7% 0 0;
  }
}

/* ---------- works ---------- */
.works_kv_img {
  aspect-ratio: 375/182;
}

.works_disc {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .works_disc {
    margin-top: 52px;
  }
}

@media screen and (min-width: 768px) {
  .works_title {
    display: flex;
    justify-content: space-between;
  }
}

.works_title_text {
  position: relative;
  width: 11.7em;
  aspect-ratio: 389 / 88;
  z-index: 1;
}
#works-2 .works_title_text {
  width: 10em;
}
#works-3 .works_title_text {
  width: 100%;
}
#works-4 .works_title_text {
  width: 20em;
}

@media screen and (min-width: 768px) {
  .works_title_text {
    width: 28em;
  }
  #works-2 .works_title_text {
    width: 23em;
  }
}

@media screen and (min-width: 1080px) {
  #works-3 .works_title_text {
    width: 65em;
  }
  #works-4 .works_title_text {
    width: 44em;
  }
}

.top_about_title svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works_title_info {
  font-weight: 300;
  line-height: 1;
  margin-top: 21px;
}

@media screen and (min-width: 768px) {
  .works_title_info {
    font-size: 18px;
    text-align: right;
    margin-top: 0;
    max-width: 300px;
  }
}

.works_title_date {
  display: block;
  padding-bottom: 6px;
}

@media screen and (min-width: 768px) {
  .works_title_date {
    display: block;
    padding-bottom: 18px;
  }
}

.works .m_about_text {
  margin-top: 74px;
}

@media screen and (min-width: 768px) {
  .works .m_about_text {
    margin: 298px 186px 306px;
  }
}

.works_posts {
  padding-top: 77px;
}

@media screen and (min-width: 768px) {
  .works_posts {
    padding-top: 0;
  }

  .works_posts_container {
    display: grid;
    grid-template-columns: 1.56fr 1fr 1fr;
    gap: 24px;
  }

  .works_posts_container:nth-child(2) {
    padding-top: 28px;
    grid-template-columns: 1fr 1.56fr 1fr;
  }

  #works-2 {
    .works_posts_container {
      grid-template-columns: 1fr 1fr 1.56fr;
    }
    .works_posts_container:nth-child(2) {
      grid-template-columns: 1.56fr 1fr 1fr;
    }
    .works_posts_container:nth-child(3) {
      padding-top: 28px;
      grid-template-columns: 1fr 1fr 1.56fr;
    }
  }
  #works-4 {
    .works_posts_container {
      grid-template-columns: 1.56fr 1fr 1fr;
    }
    .works_posts_container:nth-child(2) {
      grid-template-columns: 1fr 1fr 1.56fr;
    }
  }
  #works-3 {
    .works_posts_container {
      grid-template-columns: 1fr 1.56fr 1fr;
    }
  }
}

.works_item {
  padding-top: 24px;
}

.works_posts_container:first-of-type .works_item:first-of-type {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .works_item {
    padding-top: 0;
  }
}

.works_item_img {
  aspect-ratio: 4/5;
}

.works_item_img.wide {
  aspect-ratio: 5/4;
}

.works_post_nav {
  margin-top: 43px;
  padding-left: 41px;
  display: grid;
}

@media screen and (min-width: 768px) {
  .works_post_nav {
    margin-top: 74px;
    padding-left: 52px;
    display: flex;
    justify-content: space-between;
  }
}

.works_post_nav_sub-text {
  font-size: 19.71px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 768px) {
  .works_post_nav_sub-text {
    font-size: 24px;
  }
}

.works_post_nav_text {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

@media screen and (min-width: 768px) {
  .works_post_nav_text {
    font-size: 56px;
  }
}

.nav-next {
  text-align: right;
  margin-top: 50px;
  padding-right: 43px;
}

@media screen and (min-width: 768px) {
  .nav-next {
    text-align: right;
    margin-top: 0;
    padding-right: 54px;
  }
}

.arrow {
  position: relative;
}

.arrow::before {
  content: "";
  width: 42px;
  height: 42px;
  border-top: solid 2px var(--black-color);
  border-right: solid 2px var(--black-color);
  position: absolute;
}

@media screen and (min-width: 768px) {
  .arrow::before {
    width: 50px;
    height: 50px;
  }
}

.nav-pre.arrow::before {
  transform: rotate(-135deg);
  left: -34px;
  top: 18%;
}

@media screen and (min-width: 768px) {
  .nav-pre.arrow::before {
    left: -44px;
    top: 18%;
  }
}

.nav-next.arrow::before {
  transform: rotate(45deg);
  right: 8px;
  top: 16%;
}

@media screen and (min-width: 768px) {
  .nav-next.arrow::before {
    right: 10px;
    top: 18%;
  }
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.js_success-swiper {
  position: relative;
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}

.js_fixed-header {
  transition: 0.5s;
}

.js_fixed-header.is-show {
  top: 0;
}

.js_border {
  background-color: var(--black-color);
  height: 1px;
  width: 0%;
  transition: 1s;
}

@media screen and (min-width: 1080px) {
  .js_border {
    height: 2px;
  }
}

.js_border.is-active {
  width: 100%;
}

.js-text span {
  opacity: 0;
  transform: translateY(20px);
}
