@charset "utf-8";

:root {
  --primary-color: #FF4213;
  --back-color: #F7F2F0;
}

* {
  color: var(--primary-color);
  background-color: var(--back-color);
  font-family: "Noto Serif JP", serif;
}


.header {
  width: 100%;
  /* height: 100vh; */

}

nav {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  position: fixed;
}

.logo {
  /* width: 150px; */
  margin: 0 auto 10px auto;
}

.logo a {
  font-size: 1.5rem;
  font-family: "Protest Strike", sans-serif;
  color: var(--primary-color);
}

nav ul {
  /* width: 100%; */
  border-top: var(--primary-color) solid 1px;
  border-bottom: var(--primary-color) solid 1px;
}

nav ul li {
  display: inline-block;
  margin: 5px 10px;
}

nav ul li a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-family: "Mitr", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text {
  padding: 20px 10%;

}

nav.sticky {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 3%;
  transition: 0.6s;
  border-top: var(--primary-color) solid 1px;
  border-bottom: var(--primary-color) solid 1px;
}

nav.sticky .logo {
  margin-top: 10px;
}

nav.sticky ul {
  background-color: transparent;
  font-size: 1.3rem;
  border: none;
}

nav.sticky ul li {
  margin: 5px 5px;
}

.title {
  padding: 200px 0 150px 0;
  margin: 0 8%;
  text-align: center;
}

.title__wrapper {
  border-bottom: var(--primary-color) solid 1px;
  width: 100%;
}

.title__name {
  width: 270px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: left;
}

.title__name span {
  font-family: "Protest Strike", sans-serif;
  font-size: 64px;
}

.titile__description {
  font-family: "Inter", sans-serif;
  padding: 30px 0;
  font-size: 1.2rem;
}

/* section */

section {
  padding-top: 60px;
}

.section__wrapper {
  padding: 0 8%;
}

.section-title {
  font-family: "Protest Strike", sans-serif;
  font-size: 40px;
  margin: 5px 0 20px;
}

.section__inner {
  padding: 0 8%;
}


/* works section */

.search-box__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* width: 30vw; */
  padding: 10px 0;
  border: var(--primary-color) solid 1px;
  /* row-gap: 10px; */
}

.search-box__wrapper {
  padding-bottom: 40px;
  width: 262px;
  margin: 0 auto;
}

.works-item-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.condate-image {
  width: 40%;
}

/* .search-box:nth-child(odd) {
  padding-left: 40px;
} */

/* リスト */

.is-hide {
  display: none;
}

/* リスト装飾ここから */

#works label {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: lighter;
}

input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  vertical-align: -8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 5px 10px;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--back-color);
  border-bottom: 2px solid var(--back-color);
  content: '';
}
/* リスト装飾 ここまで*/

.site-name {
  padding: 10px 0;
  font-size: 2rem;
  font-family: "Mitr", sans-serif;
}

.site-name__span {
  font-size: 1.2rem;
}

.site-description {
  padding: 10px 0;
  font-size: 1.2rem;
  font-family: "Mitr", sans-serif;
  line-height: 1.2;
}

.category__wrapper {
  display: flex;

}
.category__wrapper p {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: lighter;
  margin-right: 2px;
}

.works-item .thumbnail {
  display: block;
}

.list_item {
  padding: 30px 8%;

}

.works__border {
  width: 100%;
  height: auto;
  border-bottom: var(--primary-color) solid 1px;
}

/* about section */

.about-img {
  width: 50%;
  margin: 0 auto;
}
.about-text {
  width: 70%;
  margin: 30px auto;
  line-height: 1.8;
  font-size: 1.2rem;
}

.about-name {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* skills section */

.skills {
  padding-bottom: 20px;
}

.skills-item__box {
  text-align: center;
  margin: 30px 10px;
}

.skills-item__box ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.skills-item {
    font-size: 1.2rem;
    width: 140px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    display: inline-block;
    color: var(--back-color);
    border-radius: 50px;
    background: linear-gradient(230deg,#FF4213,#f68051,#FF4213);
    background-size: 300% 300%;
    animation: 15s sky ease infinite;
  }

  @keyframes sky{
    0%{
      background-position: 0% 84%;
    }
    50%{
      background-position: 100% 16%;
    }
    100%{
      background-position: 0% 84%;  
    }  
  }


/* experience section */

.experience {
  padding-bottom: 100px;
}

.timeline {
  width: 96%;
  margin: 28px auto;
}

.timeline-list {
  padding: 40px 0;
}

.timeline-list-item {
  display: flex;
  line-height: 1.5;
  font-size: 1.3rem;
}

.timeline-list-item .date {
  width: 20%;
  padding: 0 0 0 20px;
  color: var(--primary-color);
}

.timeline-list-item .content {
  position: relative;
  width: 80%;
  padding: 0 20px 60px 30px;
  border-left: 1px solid #FF4213;
}

.timeline-list-item .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px; 
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* footer */

footer {
  padding: 50px 0 30px 0;
  text-align: center;
}

/* works page */

.works-title {
  padding: 100px 0 50px 0;
  margin: 0 8%;
  text-align: center;
  font-family: "Protest Strike", sans-serif;
  font-size: 40px;
}

.site-details {
  margin: 20px 8%;
  font-size: 1.5rem;
}

.site-details li {
  margin: 10px 0 5px
}

.site-details li span {
  font-family: "Mitr", sans-serif;
  font-weight: bold;
  display: inline-block;
  padding-right: 5px;
}

.site-details li a {
  color: var(--primary-color);
  text-decoration: underline;
}

.product-name {
  font-family: "Mitr", sans-serif;
  font-size: 2.5rem;
  margin: 10px 0;
}


.site-image {
  width: 80%;
  margin: 50px 8%;
}

.site-concept {
  width: 80%;
  margin: 0 8%;
  font-size: 1.2rem;
  line-height: 1.5;
}


.site-concept p {
  margin: 10px 0 30px;
}

.site-concept dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.site-concept dt,
.site-concept dd {
  padding: 10px;
}

.site-concept dt {
  font-size: 1.2rem;
  font-weight: bold;
  width: 20%;
}
.site-concept dd {
  width: 70%;
}

.site-concept__inner {
  border: var(--primary-color) solid 1px;
}

/* works page --weather-blend */

.wb-logo {
  width: 60%;
  margin: 0 auto;
}

.wb-image {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 40px;
}

.wb-image img {
  width: 30%;
}

.wb-banner {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 30px auto;
  justify-content: space-between;
}
.wb-banner1,
.wb-banner2 {
  padding: 0 5px;
}

/* works page --CONDATE */

.condate-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.condate-logo .logo {
  width: 40%;
}

.condate-logo .icon {
  margin: 0 20px;
  text-align: center;
  width: 40%;
}

.site-image.condate h3 {
  font-family: "Mitr", sans-serif;
  margin: 20px 0;
  font-size: 1.5rem;
}


.condate-page {
  text-align: center;
}

@media screen and (min-width: 1000px) {

body {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-left: var(--primary-color) solid 1px;
  border-right: var(--primary-color)solid 1px;
}

section {
  margin-bottom: 80px;
}

/* header */
nav {
  position: initial;
}

nav.sticky {
  left: initial;
  top: 0;
  width: 998px;
  justify-content: space-between;
  padding: 10px 3%;
}

nav.sticky .logo {
  margin: 10px 0;
  text-align: left;
}

/* nav.sticky ul {
  width: 90%;
} */

nav.sticky ul li {
  margin: 5px 20px;
}

.logo a {
  font-size: 2.5rem;
  /* width: 200px; */
}
nav ul li a {
  font-size: 1.8rem;
}
/* works section */

#works {
  border-bottom: var(--primary-color) solid 1px;
}

#works label {
  font-size: 1.5rem;
}

.search-box__wrapper {
  width: initial;
}

.search-box__inner {
  display: flex;
  flex-wrap: wrap;
  gap: initial;
  width: 50%;
  margin: 0 auto;
  padding: 10px 30px;
}

.search-box {
  width: calc(100% / 2)
}

.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list_item {
  width: 50%;
}


.works__border {
  display: none;
}

/* about section */

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

.about-img {
  padding: 40px;
}

.about-name {
  font-weight: bold;
}
.about-text {
  font-size: 1.3rem;
}

/* skills section */

.skills-item__box {
  width: 700px;
  margin: 0 auto;
}

.timeline-list-item .date {
  font-weight: bold;
}

/* works page */

.works-title {
  padding: 50px 50px 100px;
}

.site-concept {
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 10px 0 100px;
  margin: 20px auto;
}

.site-concept dl {
  width: 100%;
}

.site-concept dt {
  width: 20%;
}

.site-concept dd {
  width: 70%;
}

.site-concept dt,
.site-concept dd {
  padding: 20px 10px;
  font-size: 1.5rem;
}

/* works --weather blend  */

.wb-image {
  display: flex;
}


}