/* Theme portfolio */
:root {
  --themaColor: #1F2A44;
  --headerTextColor: #fff;
  --textColor: #4F4F4F;
  --textColorBlack: #333;
  --backGroundColor: #F3F4ED;
  --borderColor: #E0E0E0;
  --inputBgColor: #F1EFEF;
  --headerHeight: 70px;
}

/* Theme portfolio */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

main {
  margin: calc(var(--headerHeight) + 50px) auto;
}

.headerFixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--themaColor);
  color: var(--headerTextColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  height: var(--headerHeight);
  z-index: 4;
}
@media (any-hover: hover) {
  .headerFixed h1:hover {
    opacity: 0.6;
  }
}
.headerFixed .headerNav {
  opacity: 1;
  visibility: visible;
}
.headerFixed .headerNav ul {
  display: flex;
  gap: 50px;
}
@media (any-hover: hover) {
  .headerFixed .headerNav ul li:hover {
    opacity: 0.6;
  }
}
.headerFixed .hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}
.headerFixed .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px 0;
  background-color: var(--headerTextColor);
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}

@media (max-width: 767px) {
  .headerFixed .headerNav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 50px;
    padding: 30px;
    border: 1px solid var(--borderColor);
    color: var(--textColorBlack);
    background-color: #fff;
    translate: 0 calc(-1 * (var(--headerHeight)));
    z-index: 3;
    transition: 0.3s;
  }
  .headerFixed .headerNav ul {
    display: grid;
    font-size: 20px;
  }
  .headerFixed .headerNav.active {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
  .headerFixed .hamburger {
    display: block;
  }
}
@media (max-width: 767px) and (any-hover: hover) {
  .headerFixed .hamburger:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .headerFixed .hamburger.active span:nth-child(1) {
    rotate: 45deg;
    translate: 0 8px;
  }
  .headerFixed .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .headerFixed .hamburger.active span:nth-child(3) {
    rotate: -45deg;
    translate: 0 -8px;
  }
}
main.mainVisualArea {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}
main.mainVisualArea .mainVisual {
  position: absolute;
  top: var(--headerHeight);
  left: 0;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
}
main.mainVisualArea .mainContents {
  max-width: 1000px;
  margin: var(--headerHeight) auto 0;
}
main.mainVisualArea .mainContents .mainText {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  margin-top: 10px;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  main.mainVisualArea {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1000px) {
  main.mainVisualArea .mainContents .mainText {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  main.mainVisualArea .mainContents .mainText {
    font-size: 28px;
  }
}
.aboutPage {
  width: 100vw;
}
.aboutPage .aboutContents {
  max-width: 1000px;
  margin: 0 auto;
}
.aboutPage .aboutContents .profile h1 {
  font-size: 48px;
  font-weight: bold;
}
.aboutPage .aboutContents .profile p {
  margin-top: 50px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 40px;
  color: var(--textColor);
  letter-spacing: 0.2em;
}
.aboutPage .aboutContents .skills h2 {
  margin-top: 100px;
  font-size: 36px;
  font-weight: bold;
}
.aboutPage .aboutContents .skills .skillList {
  display: grid;
  gap: 100px;
  margin-top: 100px;
  padding: 0;
}
.aboutPage .aboutContents .skills .skillList li {
  display: grid;
  grid-template-columns: minmax(100px, 220px) minmax(60px, 150px) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
}
.aboutPage .aboutContents .skills .skillList li .skillName {
  font-size: 26px;
  font-weight: bold;
  max-width: 270px;
}
.aboutPage .aboutContents .skills .skillList li .skillIconWrapper {
  max-width: 150px;
}
.aboutPage .aboutContents .skills .skillList li .skillIconWrapper img {
  width: 50px;
  height: 50px;
}
.aboutPage .aboutContents .skills .skillList li .skillDesc {
  font-size: 26px;
}

@media screen and (max-width: 1100px) {
  .aboutPage {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .aboutPage .aboutContents .profile h1 {
    font-size: 36px;
  }
  .aboutPage .aboutContents .profile p {
    font-size: 16px;
    line-height: 30px;
  }
  .aboutPage .aboutContents .skills h2 {
    font-size: 30px;
  }
  .aboutPage .aboutContents .skills .skillList li {
    display: block;
    gap: 20px;
  }
  .aboutPage .aboutContents .skills .skillList li .skillName {
    font-size: 20px;
  }
  .aboutPage .aboutContents .skills .skillList li .skillIconWrapper {
    margin: 20px 0;
  }
  .aboutPage .aboutContents .skills .skillList li .skillDesc {
    font-size: 20px;
  }
}
.worksPage {
  width: 100vw;
}
.worksPage .worksContents {
  max-width: 1000px;
  margin: 0 auto;
}
.worksPage .worksContents h1 {
  font-size: 48px;
  font-weight: bold;
}
.worksPage .worksContents p {
  margin-top: 50px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--textColor);
  letter-spacing: 0.2em;
}
.worksPage .worksContents h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 150px 0 100px;
}
.worksPage .worksContents .worksList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 100px;
}
.worksPage .worksContents .worksList li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  font-size: 30px;
  height: 100%;
}
.worksPage .worksContents .worksList li a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  align-items: center;
}
.worksPage .worksContents .worksList li a h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.worksPage .worksContents .worksList li a img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1100px) {
  .worksPage {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .worksPage .worksContents h1 {
    font-size: 36px;
  }
  .worksPage .worksContents p {
    font-size: 16px;
    line-height: 30px;
  }
  .worksPage .worksContents h2 {
    font-size: 30px;
  }
  .worksPage .worksContents .worksList li a h2 {
    font-size: 26px;
  }
  .worksPage .worksContents .worksList li a img {
    max-height: 300px;
  }
}
.contactPage {
  width: 100vw;
}
.contactPage .contactWrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.contactPage .contactWrapper h1 {
  font-size: 48px;
  font-weight: bold;
}
.contactPage .contactWrapper p {
  margin-top: 50px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--textColor);
  letter-spacing: 0.2em;
  line-height: 40px;
}
.contactPage .contactWrapper .contactForm {
  max-width: 700px;
  margin: 0 auto;
}
.contactPage .contactWrapper .contactForm label {
  width: 100%;
}
.contactPage .contactWrapper .contactForm label span {
  color: red;
}
.contactPage .contactWrapper .contactForm label input, .contactPage .contactWrapper .contactForm label textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--borderColor);
  background-color: var(--inputBgColor);
  font-size: 16px;
}
.contactPage .contactWrapper .contactForm input[type=submit] {
  background-color: var(--themaColor);
  color: var(--headerTextColor);
  padding: 5px 50px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 1100px) {
  .contactPage {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .contactPage {
    margin: calc(var(--headerHeight) + 50px) auto 0;
  }
  .contactPage .contactWrapper h1 {
    font-size: 36px;
  }
  .contactPage .contactWrapper p {
    font-size: 16px;
    line-height: 30px;
  }
  .contactPage .contactWrapper .contactForm label {
    font-size: 14px;
  }
  .contactPage .contactWrapper .contactForm label input, .contactPage .contactWrapper .contactForm label textarea {
    padding: 2px 10px;
  }
  .contactPage .contactWrapper .contactForm input[type=submit] {
    padding: 5px 20px;
    font-size: 16px;
  }
}
.singlePage {
  width: 100vw;
}
.singlePage .singleContents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
.singlePage .singleContents .singleArticle h1 {
  font-size: 48px;
  font-weight: bold;
}
.singlePage .singleContents .singleArticle .singleContent {
  width: 100%;
}
.singlePage .singleContents .singleArticle .singleContent img {
  width: 100%;
  margin-top: 100px;
}
.singlePage .singleContents .singleArticle .singleContent p {
  margin-top: 50px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 40px;
  color: var(--textColor);
  letter-spacing: 0.2em;
}
.singlePage .singleContents .singleArticle .singleContent p strong {
  font-size: 26px;
  color: var(--textColorBlack);
  margin-top: 20px;
}
.singlePage .singleContents .singleArticle .singleContent p:first-of-type {
  margin-top: 150px;
}
.singlePage .singleContents .singleArticle .singleContent p:has(strong) {
  margin-top: 100px;
}

@media screen and (max-width: 1100px) {
  .singlePage {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .singlePage .singleContents .singleArticle h1 {
    font-size: 36px;
  }
  .singlePage .singleContents .singleArticle .singleContent p {
    font-size: 16px;
    line-height: 30px;
  }
}/*# sourceMappingURL=style.css.map */