@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
}

a {
  text-decoration: none;
  color: rgba(96, 96, 96, 1);
}
li {
  list-style: none;
}
img {
  width: 100%;
  object-fit: cover;
}
a {
  cursor: pointer;
}
/*header*/
header {
  height: 100vh;
  background-color: rgba(243, 243, 243, 1);
  position: relative;
}
.heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.headingText {
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
.fadeIn {
  animation: fadeIn 4.5s linear forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header nav {
  width: 100%;
  height: 100vh;
}
.grovalNav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 80%;
  row-gap: 80%;
  height: 100vh;
}
.grovalNav li {
  height: fit-content;
  padding: 0 0 0.5em;
}
.grovalNav li a {
  font-weight: bold;
  font-size: 28px;
}
.grovalNav li a:hover {
  opacity: 0.6;
}
.bar-top {
  width: 60%;
  border-top: 1px solid rgba(96, 96, 96, 1);
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%, 0);
}
.bar-right {
  height: 60%;
  border-right: 1px solid rgba(96, 96, 96, 1);
  position: absolute;
  right: 5%;
  bottom: 20%;
}
.bar-bottom {
  width: 60%;
  border-bottom: 1px solid rgba(96, 96, 96, 1);
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, 0);
}
.bar-left {
  height: 60%;
  border-left: 1px solid rgba(96, 96, 96, 1);
  position: absolute;
  left: 5%;
  bottom: 20%;
}
@media screen and (max-width: 1000px) {
  .headingText {
    font-size: 14px;
  }
  header nav {
    display: none;
  }
  /*hamburger-menu*/
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: rgba(79, 109, 88, 1);
  }
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    transition: 0.3s;
  }
  .menu-btn span::before {
    bottom: 8px;
  }
  .menu-btn span::after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .menu-content ul {
    padding: 90px 10px 70px;
  }
  .menu-content ul li {
    border-bottom: solid 3px rgba(255, 255, 255, 0.8);
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 24px;
    color: #fff;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 18px;
  }
  .menu-content {
    width: 100%;
    height: 350px;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(79, 109, 88, 0.7);
    transition: all 0.5s;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0;
  }
  #menu-btn-check {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  #menu-btn-check {
    display: none;
  }
  .menu-content {
    display: none;
  }
}
/*bg-green*/
.bg-green {
  height: 270px;
  background-color: rgba(79, 109, 88, 1);
  margin: 0 0 220px;
}
/* **************************************************************** */
/*main*/
/* aboutSec */

.wrap {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
#about {
  font-size: 36px;
  text-align: center;
  color: rgba(96, 96, 96, 1);
}
.aboutSec {
  position: relative;
  margin-bottom: 50px;
}
.aboutSec p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  text-align: center;
}
.aboutSec p:nth-of-type(1) {
  font-size: 24px;
  padding: 50px 0;
}
.aboutSec p:nth-of-type(2) {
  padding-left: 40px;
}
.aboutSec .visualImg {
  width: 150px;
  padding-top: 50px;
  margin-left: auto;
}
.aboutSec .bg {
  width: 80%;
  height: 400px;
  background-color: rgba(249, 249, 249, 1);
  margin: 0 auto;
  position: absolute;
  z-index: -1;
  top: 100px;
}
/* レスポンシブ */
@media screen and (min-width: 768px) {
  #about {
    font-size: 70px;
    text-align: left;
  }
  /* .aboutSec {
    position: relative;
    margin-bottom: 50px;
  } */
  .aboutSec p {
    text-align: left;
  }
  .aboutSec p:nth-of-type(1) {
    font-size: 32px;
  }
  .aboutSec p:nth-of-type(2) {
    position: relative;
    left: 2em;
  }
  .aboutSec .visualImg {
    width: 350px;
    margin-bottom: 100px;
  }
  .aboutSec .bg {
    width: 80%;
    height: 600px;
    left: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .aboutSec p:nth-of-type(1) {
    font-size: 40px;
  }
  .aboutSec p:nth-of-type(2) {
    font-size: 28px;
    line-height: 2em;
  }
  .aboutSec .visualImg {
    width: 500px;
    margin-bottom: 200px;
  }
  .aboutSec .bg {
    width: 80%;
    height: 600px;
    left: 60px;
  }
}
/* profileSec */
section .heding {
  font-size: 30px;
  font-weight: bold;
  color: rgba(96, 96, 96, 1);
  padding: 10px 20px;
  border-left: 12px solid rgba(79, 109, 88, 1);
  margin-bottom: 50px;
}
.profileSec-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 2em;
  color: rgba(96, 96, 96, 1);
  padding: 0 20px;
}
.border {
  width: 80%;
  border-bottom: 1px solid #000;

  margin: 150px auto 150px;
}
.flexContainer {
  display: flex;
  justify-content: space-between;
  column-gap: 1%;
  padding: 0 32px;
}
.flexContainer .flexItem h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: rgba(79, 109, 88, 1);
  text-align: center;
  padding: 25px 0;
}
.flexContainer .flexItem {
  max-width: 300px;
  min-width: 250px;
  width: 30%;
  display: flex;
  flex-direction: column;
  background-color: rgba(249, 249, 249, 1);
  border: 3px solid rgba(96, 96, 96, 1);
  padding: 0 0 20px;
  flex-grow: 1;
  box-shadow: 7px 7px 12px 3px #6b6b6b;
}
.flexContainer .flexItem p {
  font-size: 16px;
  font-weight: bold;
  color: rgba(96, 96, 96, 1);
  padding: 0 20px;
  line-height: 2em;
}
.flexContainer .flexItem p:nth-of-type(1) {
  padding: 0 20px 20px;
}
.flexContainer .flexItem p:nth-of-type(2) {
  flex-grow: 1;
  font-size: 13px;
}
.skillSec {
  margin-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .wrap {
    width: 90%;
  }
  .careerSec .gridContainer {
    display: block;
  }
  .gridContainer dt {
    margin-bottom: 5px;
  }
  .gridContainer dd {
    margin-bottom: 30px;
  }
  .flexContainer {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .flexContainer .flexItem {
    width: 80%;
    margin: 0 auto;
    height: 390px;
  }
}
@media screen and (max-width: 500px) {
  .profileSec-text {
    font-size: 16px;
  }
  .careerSec .gridContainer dt {
    font-size: 16px;
  }
  .careerSec .gridContainer dd {
    font-size: 16px;
  }
  .flexContainer {
    padding: 0;
  }
  .flexContainer .flexItem {
    width: 100%;
  }
}

/* worksSec */
#works {
  font-size: 36px;
  text-align: center;
  color: rgba(96, 96, 96, 1);
  margin-bottom: 50px;
}
.bar {
  width: 1px;
  height: 100px;
  margin: 0 auto;
}
.works-inner-wrap {
  background-color: rgba(249, 249, 249, 1);
  padding: 100px 0 50px;
  margin: 100px 0;
}
.works-flex-container {
  width: 90%;
  margin: 0 auto;
}
.works-flex-item {
  margin-bottom: 50px;
}
.works-flex-item img {
  margin-bottom: 20px;
}
.works-flex-item h3 {
  margin-bottom: 10px;
  color: #6b6b6b;
  text-align: center;
}
.works-flex-item p {
  color: #a09f9f;
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  /* worksSec */
  #works {
    font-size: 70px;
  }
  .works-inner-wrap {
    margin-top: 100px;
  }
  .works-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5%;
    flex-wrap: wrap;
  }
  .works-flex-item {
    width: 45%;
    margin-bottom: 80px;
  }
  .works-flex-item img {
    margin-bottom: 20px;
  }
  .works-flex-item h3 {
    font-size: 1em;
    margin-bottom: 10px;
    color: #6b6b6b;
  }
  .works-flex-item p {
    color: #a09f9f;
    font-size: 14px;
  }
}
@media screen and (min-width: 950px) {
  .works-flex-item {
    width: 30%;
  }
}
/* ****************************************************************** */
/*footer*/
.footer-innerWrap {
  width: 90%;
  margin: 0 auto;
}
footer {
  background-color: rgba(79, 109, 88, 1);
  color: #fff;
}
footer a {
  color: #fff;
}

footer h2 {
  font-size: 32px;
  text-align: center;
  padding: 30px 0;
}
.footer-innerWrap p span {
  display: none;
}
.email {
  font-size: 20px;
  text-align: center;
  margin: 0 0 200px;
}
.localNav {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3px;
  margin: 0 0 70px;
}
.copy {
  text-align: center;
  padding: 0 0 10px;
}
@media screen and (min-width: 768px) {
  footer a {
    font-size: 30px;
  }
  footer h2 {
    font-size: 70px;
    text-align: left;
  }
  .footer-innerWrap p span {
    display: inline-block;
  }
  .sp-only {
    display: none;
  }
  .email {
    font-size: 30px;
    text-align: left;
    margin: 0 0 200px;
  }

  .localNav {
    align-items: flex-start;
  }
  .copy {
    font-size: 24px;
    text-align: right;
  }
}
