@charset "UTF-8";
:root {
  /* 背景色 */
  --primary-color: #4B555B;
  /* サブカラー */
  --sub-color: #E05E39;
  /* テキストメインカラー */
  --text-color: #FDEFD8;
}

body {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: var(--primary-color);
  overflow-x: clip;
}

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

.overview-text {
  font-family: "Noto Sans JP", sans-serif;
}

.title-img,
.overview-title,
.other-title {
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.custom-btn {
  color: var(--sub-color);
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 430px) {
  .custom-btn {
    gap: 2px;
  }
}
.custom-btn:hover .btn-text,
.custom-btn:hover .btn-arrow {
  background-color: var(--sub-color);
  color: var(--text-color);
  transition: 0.3s;
}
.custom-btn .btn-text {
  border: 2px solid var(--sub-color);
  background-color: var(--text-color);
  border-radius: 4px;
  padding: 2px 48px;
  font-size: 20px;
}
@media (max-width: 430px) {
  .custom-btn .btn-text {
    font-size: 14px;
    border: 1px solid var(--sub-color);
    padding: 2px 40px;
    border-radius: 2px;
  }
}
.custom-btn .btn-arrow {
  border: 2px solid var(--sub-color);
  background-color: var(--text-color);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 20px;
}
@media (max-width: 430px) {
  .custom-btn .btn-arrow {
    font-size: 12px;
    border: 1px solid var(--sub-color);
    padding: 4px 6px;
  }
}

.header {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 24px 0;
}
@media (max-width: 1024px) {
  .header {
    display: block;
    padding: 4px 0 8px 0;
  }
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 40px 0;
  animation: headerFadeIn 1s ease-out 1.8s forwards;
  opacity: 1;
  position: relative;
  z-index: 10001;
  isolation: isolate;
}
.header .header-inner .header-logo {
  width: 11.1111111111vw;
  min-width: 104px;
}
.header .header-inner .header-hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .header .header-inner .header-hamburger {
    display: flex;
    position: relative;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  .header .header-inner .header-hamburger span {
    width: 100%;
    height: 4px;
    background: var(--text-color);
    transition: 0.3s;
  }
  .header .header-inner .header-hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .header .header-inner .header-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header-inner .header-hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.header .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
@media (max-width: 1024px) {
  .header .header-right {
    animation: none;
    opacity: 1;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70vh;
    background: var(--primary-color);
    z-index: 9999;
    transform: translateY(-100%);
    transition: 0.5s;
    border: 4px solid var(--text-color);
    border-radius: 8px;
  }
}
@media (max-width: 1024px) {
  .header .header-right.active {
    transform: translateY(0);
  }
}
.header .header-right .header-nav {
  margin-right: 3.3333333333vw;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav {
    margin-right: 0;
  }
}
.header .header-right .header-nav .header-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav .header-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.header .header-right .header-nav .header-list li {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-color);
  position: relative;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav .header-list li {
    font-size: 44px;
  }
}
.header .header-right .header-nav .header-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--text-color);
  transition: width 0.4s ease;
}
.header .header-right .header-nav .header-list li:hover::after {
  width: 100%;
}
.header .header-right .header-sns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header .header-right .header-sns {
    margin-top: 24px;
  }
}
.header .header-right .header-sns .header-sns__inst {
  width: 32px;
}
.header .header-right .header-sns .header-sns__inst a :hover {
  opacity: 0.7;
  transition: 0.3s;
}
.header .header-right .header-sns .header-sns__x {
  width: 32px;
}
.header .header-right .header-sns .header-sns__x a :hover {
  opacity: 0.8;
  transition: 0.3s;
}

main {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
main .title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 134px;
}
@media (max-width: 430px) {
  main .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 64px;
  }
}
main .title .title-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-color);
  font-size: 1.6666666667vw;
  transform: translateY(-8px);
  white-space: nowrap;
}
@media (max-width: 430px) {
  main .title .title-detail {
    font-size: 14px;
    gap: 8px;
  }
}
main .title .title-detail2 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-color);
  font-size: 1.6666666667vw;
  transform: translateY(-36px);
  white-space: nowrap;
}
@media (max-width: 430px) {
  main .title .title-detail2 {
    font-size: 14px;
    gap: 8px;
    transform: translateY(-24px);
  }
}
main .title .type {
  transform: translateY(1px);
}
main .title span {
  background-color: var(--text-color);
  width: 2px;
  height: 1.4em;
}
main .title .category {
  font-weight: 500;
}
main .mainvisual {
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  main .mainvisual {
    margin-bottom: 72px;
  }
}
main .overview {
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  main .overview {
    margin-bottom: 64px;
  }
}
main .overview .overview-title {
  width: 72.7777777778vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  main .overview .overview-title {
    margin-bottom: 32px;
  }
}
main .overview .overview-text {
  color: var(--text-color);
}
main .overview .overview-text .text-item {
  display: flex;
  -moz-column-gap: 8.8vw;
       column-gap: 8.8vw;
  font-size: 1.4vw;
  margin-left: 24vw;
  padding: 4.4vw 16vw 4.4vw 7.8vw;
  border-bottom: 2px solid var(--text-color);
  letter-spacing: 0.1vw;
}
@media (max-width: 1024px) {
  main .overview .overview-text .text-item {
    padding: 6.4vw 16vw 6.4vw 7.8vw;
  }
}
@media (max-width: 430px) {
  main .overview .overview-text .text-item {
    border-bottom: 1px solid var(--text-color);
    font-size: 12px;
    flex-direction: column;
    row-gap: 16px;
  }
}
main .overview .overview-text .text-item .text-title {
  width: 160px;
  font-weight: 600;
}
@media (max-width: 430px) {
  main .overview .overview-text .text-item .text-title {
    width: 64px;
  }
}
main .overview .overview-text .text-item .text-explanation {
  width: 502px;
  font-weight: 400;
  line-height: 1.8em;
}
@media (max-width: 430px) {
  main .overview .overview-text .text-item .text-explanation {
    width: 240px;
  }
}
main .overview .overview-text .text-item .text-explanation .period {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  -moz-column-gap: 2.2vw;
       column-gap: 2.2vw;
  row-gap: 1vw;
}
main .overview .overview-text .text-item .text-explanation .period span:nth-child(even) {
  text-align: right;
}

.works-img {
  width: 100vw;
  background-color: var(--text-color);
}
.works-img .works-inner {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 160px;
  display: flex;
  justify-content: center;
  gap: 11vw;
  padding: 160px 0;
}
@media (max-width: 430px) {
  .works-img .works-inner {
    margin-bottom: 80px;
    padding: 80px 0;
  }
}
.works-img .works-inner .product-img {
  box-shadow: 8px 8px 8px 0 rgba(46, 46, 46, 0.8);
}
@media (max-width: 430px) {
  .works-img .works-inner .product-img {
    box-shadow: 4px 4px 4px 0 rgba(46, 46, 46, 0.4);
  }
}
.works-img .works-inner2 {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 160px;
}
@media (max-width: 430px) {
  .works-img .works-inner2 {
    padding-bottom: 40px;
  }
}
.works-img .works-inner2 .title-img2 {
  width: 77.7777777778vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .title-img2 {
    margin-bottom: 40px;
  }
}
.works-img .works-inner2 .works-product {
  display: flex;
  justify-content: start;
  gap: 80px;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product {
    flex-direction: column;
    margin-bottom: 80px;
    gap: 16px;
  }
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product .product-img2 {
    width: 80%;
    transform: translateX(38px);
  }
}
.works-img .works-inner2 .works-product .branding-textblock {
  width: 31.9444444444vw;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product .branding-textblock {
    width: 80%;
    margin: 0 auto;
  }
}
.works-img .works-inner2 .works-product .branding-textblock .branding-title {
  font-size: 2.7777777778vw;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product .branding-textblock .branding-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.works-img .works-inner2 .works-product .branding-textblock .branding-txt {
  font-size: 1.3888888889vw;
  line-height: 1.8em;
  font-weight: 0;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product .branding-textblock .branding-txt {
    font-size: 14px;
  }
}
.works-img .works-inner2 .title-img {
  margin-bottom: 80px;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .title-img {
    margin-bottom: 40px;
  }
}
.works-img .works-inner2 .works-product2 {
  display: flex;
  justify-content: end;
  gap: 80px;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 {
    flex-direction: column;
    margin-bottom: 80px;
    gap: 8px;
  }
}
.works-img .works-inner2 .works-product2 .product-img2 {
  order: 2;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 .product-img2 {
    order: 1;
    width: 80%;
    transform: translateX(44px);
  }
}
.works-img .works-inner2 .works-product2 .branding-textblock {
  order: 1;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 .branding-textblock {
    order: 2;
  }
}
.works-img .works-inner2 .works-product2 .branding-textblock {
  width: 31.9444444444vw;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 .branding-textblock {
    width: 80%;
    margin: 0 auto;
  }
}
.works-img .works-inner2 .works-product2 .branding-textblock .branding-title {
  font-size: 2.7777777778vw;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 .branding-textblock .branding-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.works-img .works-inner2 .works-product2 .branding-textblock .branding-txt {
  font-size: 1.3888888889vw;
  line-height: 1.8em;
  font-weight: 0;
}
@media (max-width: 430px) {
  .works-img .works-inner2 .works-product2 .branding-textblock .branding-txt {
    font-size: 14px;
  }
}
.works-img .works-inner3 {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
.works-img .works-inner3 .title-img {
  width: 70.8333333333vw;
}
@media (max-width: 430px) {
  .works-img .works-inner3 .title-img {
    margin-bottom: 40;
  }
}
.works-img .works-inner3 .works-img__block {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
  grid-template-areas: "img1 img2 img3" "img4 img5 img5" "img6 img7 .";
}
@media (max-width: 430px) {
  .works-img .works-inner3 .works-img__block {
    gap: 16px 8px;
    padding: 40px 0;
  }
}
.works-img .works-inner4 {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media (max-width: 430px) {
  .works-img .works-inner4 {
    padding-bottom: 40px;
  }
}
.works-img .works-inner4 .title-img {
  width: 70.8333333333vw;
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  .works-img .works-inner4 .title-img {
    margin-bottom: 24px;
  }
}
.works-img .t-shrit-img {
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  .works-img .t-shrit-img {
    margin-bottom: 80px;
  }
}
.works-img .title-img {
  width: 70.8333333333vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  .works-img .title-img {
    margin-bottom: 0px;
  }
}

.other {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
.other .other-title {
  width: 44.4444444444vw;
  margin-bottom: 72px;
}
@media (max-width: 430px) {
  .other .other-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 430px) {
  .other .swiperslide-other {
    overflow: hidden;
  }
}
.other .swiperslide-other .swiper-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .other .swiperslide-other .swiper-wrapper {
    margin-bottom: 24px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--text-color);
  padding: 24px 32px 0 32px;
  box-shadow: 4px 4px 4px 0 rgba(46, 46, 46, 0.8);
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card {
    padding: 16px 20px 0 16px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card.show {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card p {
  color: var(--sub-color);
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__type {
  font-size: 20px;
  padding-top: 16px;
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__type {
    font-size: 16px;
    padding-top: 4px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__title {
  font-size: 2.0833333333vw;
  font-weight: 600;
  padding-bottom: 160px;
  font-family: "Noto sans JP";
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__title {
    font-size: 20px;
    padding-bottom: 80px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .custom-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: auto;
  padding-bottom: 16px;
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .custom-btn {
    padding-bottom: 8px;
  }
}
.other .slide-btn {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  .other .slide-btn {
    gap: 16px;
    margin-bottom: 80px;
  }
}
.other .slide-btn .swiper-button-prev,
.other .slide-btn .swiper-button-next {
  position: static !important;
  margin: 0;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-prev,
  .other .slide-btn .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.other .slide-btn .swiper-button-prev {
  background-image: url(../img/button-left.svg);
  border-radius: 8px;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-prev {
    border-radius: 4px;
  }
}
.other .slide-btn .swiper-button-prev::after {
  display: none;
}
.other .slide-btn .swiper-button-prev:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.other .slide-btn .swiper-button-next {
  background-image: url(../img/button-right.svg);
  border-radius: 8px;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-next {
    border-radius: 4px;
  }
}
.other .slide-btn .swiper-button-next::after {
  display: none;
}
.other .slide-btn .swiper-button-next:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.footer {
  color: var(--sub-color);
  background-color: var(--text-color);
}
.footer .footer-container {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 64px 0 128px 0;
}
@media (max-width: 430px) {
  .footer .footer-container {
    padding: 24px 0 48px 0;
  }
}
.footer .footer-container .footer-nav .footer-list li {
  font-size: 5vw;
  line-height: 1.6;
}
.footer .footer-container .footer-nav .footer-list li a {
  position: relative;
}
.footer .footer-container .footer-nav .footer-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.6944444444vw;
  width: 0;
  height: 6px;
  background-color: var(--sub-color);
  transition: width 0.4s ease;
}
@media (max-width: 430px) {
  .footer .footer-container .footer-nav .footer-list li a::after {
    height: 2px;
  }
}
.footer .footer-container .footer-nav .footer-list li a:hover::after {
  width: 100%;
}
.footer .footer-container .sns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-container .sns .sns-block {
  display: flex;
  justify-content: end;
  gap: 32px;
}
@media (max-width: 430px) {
  .footer .footer-container .sns .sns-block {
    gap: 20px;
  }
}
.footer .footer-container .sns .sns-block .sns__inst a :hover {
  opacity: 0.8;
  transition: 0.3s;
}
.footer .footer-container .sns .sns-block .sns__x a :hover {
  opacity: 0.8;
  transition: 0.3s;
}
.footer .footer-container .sns small {
  font-size: 18px;
  line-height: 2.6;
}
@media (max-width: 430px) {
  .footer .footer-container .sns small {
    font-size: 10px;
  }
}
.footer .footer-contact {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
.footer .footer-contact .footer-contact__link:hover {
  opacity: 0.8;
  transition: 0.3s;
}/*# sourceMappingURL=works.css.map */