@charset "UTF-8";

.header__inner {
    background-color: #fcaa00;
}

.header__logo img {
    filter: invert(100%);
}


a.nav__link {
    color: #FFF;
}


.hamburger__line {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: #FFF;
}

.hamburger__line::before,
.hamburger__line::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    transition: transform 0.3s;
}


.works {
    padding-top: 120px;
}

.works__container {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

@media screen and (min-width:768px) {
    .works__container {
        justify-content: space-between;
    }
}

.works__title {
    font-size: 16vw;
    letter-spacing: 0.1rem;
    margin-bottom: 40px;
    text-align: left;
    color: transparent;
    -webkit-text-stroke: 2px #fcaa00;
    animation: slideinRight 1s ease forwards;
    line-height: 1.5;
}

   
@keyframes slideinRight {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
   


.works__title::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    transform: translate(0, 0);
    width: 75%;
    height: 20px;
    background-image: repeating-linear-gradient(45deg, #fcaa00 0px, #fcaa00 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
    background-size: 8px 8px;
}

.works__tabMenu {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 30px;
}


.tab__content {
    display: block;
    margin-bottom: 30px;
    width: 80%;
}

@media screen and (min-width:768px) {
    .tab__content {
        width: 45%;
        max-width: 450px;
    }
}

.tab__content p {
    font-size: 12px;
}


/* 非表示にするクラス */
.hidden {
    display: none;
}

.tabs {
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.1rem;
    font-weight: bold;
    color: #fcaa00;
}

/* アクティブなタブのスタイル */
.tabs.active {
    opacity: 0.5;
}


.tabs:first-child {
    letter-spacing: 0.2rem;
}

.tabs:not(:first-child) {
    margin-left: 1rem;
}

.slash::before {
    content: "| ";
    margin-right: 1rem;
}

/*---------------------------------------------
各作品ごとのページ設定
----------------------------------------------*/

.work__container {
    width: 100%;
    height: auto;
    text-align: left;
    padding-top: 60px;
}

@media screen and (min-width:768px) {
    .work__container {
        padding-top: 80px;
    }
}

.work__image {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.bgBlur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--banner-url) center/cover no-repeat;
    filter: blur(15px) brightness(70%);
    z-index: 1;
}

.workImg {
    position: absolute;
    width: 75%;
    height: auto;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 768px) {
    .workImg {
        width: 50%;
    }
}


@media screen and (min-width: 1024px) {
    .workImg {
        width: 40%;
    }
}

/* スクロールダウンの位置 */
.scrolldown {
    position: relative;
    text-align: center;
    padding-top: 100px;
  }
  /* 矢印のアニメーション部分 */
  .scrolldown::before {
    animation: scroll 2s infinite;
    border-bottom: 1px solid #432;
    border-left: 1px solid #432;
    content: "";
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
  }
  /* 矢印のアニメーション */
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: rotate(-45deg) translate(0, 0);
    }
    40% {
      opacity: 1;
    }
    80% {
      opacity: 0;
      transform: rotate(-45deg) translate(-50px, 50px);
    }
    100% {
      opacity: 0;
    }
  }



.work__name {
    display: flex;
	align-items: center;
    text-align: left;
    max-width: 1280px;
    font-size: 30px;
    letter-spacing: 0.3rem;
    padding:0px 15px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    color: #fcaa00;
}

.work__name span {
	font-size: 15px;
	font-weight: normal;
}
.work__name span::before {
	content: "/";
	font-size: 20px;
	margin: 0 14px;
}


.work__textContent {
    margin: 0 45px;
}

.work__item {
    display: block;
    padding: 30px 20px;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.markerBg {
    position: relative;
    display: block;
    padding: 10px 20px;
    border-left: 5px solid #432;
    overflow: hidden;
    font-size: 20px;
    letter-spacing: 0.7rem;
    font-weight: bold;
}
.markerBg::before {
    position: absolute;
    content: '';
    display: block;
    inset: 0;
    background: rgba(68, 51, 34, 0.1);
  }
  


/*
.work_itemName {
    font-size: 16px;
    letter-spacing: 0.7rem;
    position: relative;
}

.work_itemName::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: solid 1px #432;
    animation: border_anima 1.2s ease-out forwards;
}

@keyframes border_anima {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

*/

.work__item > p {
    padding-top: 10px;
    padding-left: 20px;
}

.btn-center {
    margin-top: 50px;
    margin-bottom: 50px;
}