@charset "UTF-8";
/* ブレークポイント */
/* A Modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* ul[class],
ol[class] {
  padding: 0;
} */
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Lato", sans-serif;
  color: #505050;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #505050;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .container {
    width: 90%;
  }
}

h2 {
  font-size: 48px;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  font-weight: 300;
}

h4 {
  font-size: 20px;
  font-weight: 300;
}

.br-sp {
  display: block;
}
@media (min-width: 641px) {
  .br-sp {
    display: none;
  }
}

header {
  height: 50px;
}
@media (min-width: 641px) {
  header {
    height: 200px;
  }
}
header .headerCotainer {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1080px;
  margin: 0 auto;
}
header .headerCotainer .headerSnsContainer {
  font-size: 24px;
  display: flex;
  align-items: center;
}
@media (min-width: 641px) {
  header .headerCotainer .headerSnsContainer {
    height: 100px;
    padding-top: 30px;
    font-size: 24px;
  }
}
header .headerCotainer .headerSnsContainer a {
  margin-right: 15px;
}
header .headerCotainer .headerSnsContainer a:last-of-type {
  margin-right: unset;
}
header .headerCotainer .c-navMenu {
  height: 100px;
}

footer {
  padding-bottom: 50px;
}

.c-navMenu {
  display: none;
}
@media (min-width: 641px) {
  .c-navMenu {
    display: block;
  }
}
.c-navMenu ul {
  display: flex;
  text-align: center;
}
.c-navMenu ul li {
  margin-right: 20px;
}
.c-navMenu ul li:last-of-type {
  margin-right: unset;
}
.c-navMenu ul li a {
  display: block;
}
.c-navMenu ul li a span {
  display: block;
  font-size: 14px;
  font-style: italic;
}
.c-navMenu ul li a:hover {
  color: #000;
  transform: scale(1.1);
}

.footerNav {
  display: block;
}
.footerNav ul {
  flex-wrap: wrap;
}
@media (min-width: 641px) {
  .footerNav ul {
    flex-wrap: unset;
  }
}
.footerNav ul li {
  width: 50%;
  margin-right: unset;
  margin-bottom: 10px;
}
@media (min-width: 641px) {
  .footerNav ul li {
    width: unset;
    margin-right: 20px;
    margin-bottom: unset;
  }
}

.c-hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 641px) {
  .c-hamburger-menu {
    display: none;
  }
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:first-child {
  top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}

.hamburger-menu__bar:last-child {
  top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}
.c-navigation {
  display: none;
  background: #242424;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 9999;
}
.c-navigation .navigation__list {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-navigation .navigation__list-item {
  border-bottom: solid 1px #474747;
  width: 50%;
}
.c-navigation .navigation__list-item:first-child {
  border-top: solid 1px #474747;
}
.c-navigation .navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  transition: 0.5s;
}
.c-navigation .navigation__link span {
  display: block;
  font-size: 14px;
  font-style: italic;
  line-height: 0.8;
}

.c-codingCard {
  display: flex;
  margin-bottom: 70px;
  flex-direction: column-reverse;
}
@media (min-width: 641px) {
  .c-codingCard {
    flex-direction: row;
  }
}
.c-codingCard .cardContent {
  margin-right: 5%;
}
@media (min-width: 641px) {
  .c-codingCard .cardContent {
    width: 60%;
  }
}
.c-codingCard .cardContent h4 {
  display: inline-block;
  border-bottom: 2px solid #505050;
  margin-bottom: 30px;
}
.c-codingCard .cardContent h4 span {
  color: #333333;
  font-weight: 500;
  margin-right: 5px;
  font-size: 24px;
}
.c-codingCard .cardContent p {
  line-height: 2;
}
.c-codingCard img {
  width: 100%;
  max-width: 380px;
  max-height: 280px;
  margin-bottom: 20px;
}
@media (min-width: 641px) {
  .c-codingCard img {
    margin-bottom: unset;
    width: 35%;
  }
}
.c-codingCard:last-of-type {
  margin-bottom: unset;
}
.c-codingCard.reverse {
  flex-direction: column-reverse;
}
@media (min-width: 641px) {
  .c-codingCard.reverse {
    flex-direction: row-reverse;
  }
}
.c-codingCard.reverse .cardContent {
  margin-right: unset;
  margin-left: 5%;
}

.c-portfolioCard {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 641px) {
  .c-portfolioCard {
    flex-direction: row;
  }
}
.c-portfolioCard img {
  width: 100%;
  max-width: 480px;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 30px;
}
@media (min-width: 641px) {
  .c-portfolioCard img {
    width: 45%;
    margin-right: 5%;
    margin-bottom: unset;
  }
}
.c-portfolioCard .portfolioContent h3 {
  margin-bottom: 30px;
}
.c-portfolioCard .portfolioContent table {
  text-align: left;
  margin-top: 30px;
  width: 100%;
}
.c-portfolioCard .portfolioContent table tr {
  display: flex;
}
.c-portfolioCard .portfolioContent table, .c-portfolioCard .portfolioContent table th, .c-portfolioCard .portfolioContent table td {
  border: 1px solid #505050;
  border-collapse: collapse;
  padding: 3px 5px;
}
@media (min-width: 641px) {
  .c-portfolioCard .portfolioContent table, .c-portfolioCard .portfolioContent table th, .c-portfolioCard .portfolioContent table td {
    padding: 5px 10px;
  }
}
.c-portfolioCard .portfolioContent table th {
  width: 30%;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 641px) {
  .c-portfolioCard .portfolioContent table th {
    width: 25%;
  }
}
.c-portfolioCard .portfolioContent table td {
  width: 70%;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 641px) {
  .c-portfolioCard .portfolioContent table td {
    width: 75%;
  }
}
.c-portfolioCard .portfolioContent table td a {
  text-decoration: underline;
}
.c-portfolioCard:last-of-type {
  margin-bottom: unset;
}

.c-skillCard {
  width: 120px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 641px) {
  .c-skillCard {
    width: 20%;
    margin: 0 auto 50px;
    max-width: 150px;
    margin-bottom: 50px;
  }
}
.c-skillCard img {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}
@media (min-width: 641px) {
  .c-skillCard img {
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 20px;
  }
}
.c-skillCard p {
  text-align: center;
  font--weight: bold;
}

.p-mainVisual {
  height: 320px;
  display: block;
  margin-bottom: 150px;
}
@media (min-width: 641px) {
  .p-mainVisual {
    height: 500px;
  }
}
.p-mainVisual h1 {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  height: 100%;
  max-height: 480px;
}
.p-mainVisual h1 img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.p-mainVisual h1 span {
  display: block;
  text-align: right;
  font-size: 10px;
}

.p-service {
  margin-bottom: 150px;
}
.p-service h2 {
  text-align: center;
  margin-bottom: 100px;
}
.p-service a:hover {
  opacity: 0.6;
}
.p-service .serviceContetns {
  display: block;
  margin: 0 auto;
}
.p-service .serviceContetns h3 {
  text-align: center;
  margin-bottom: 70px;
}
.p-service .serviceContetns img {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 70px;
}
.p-service .serviceContetns p {
  text-align: center;
  margin-bottom: 50px;
}
.p-service .serviceContetns .textContent {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .p-service .serviceContetns .textContent {
    max-width: 70%;
  }
}

.p-portfolio {
  margin-bottom: 150px;
}
.p-portfolio h2 {
  text-align: center;
  margin-bottom: 100px;
}
.p-portfolio .portfoliContents {
  display: flex;
  justify-content: center;
}
@media (min-width: 641px) {
  .p-portfolio .portfoliContents img {
    margin-bottom: unset;
  }
}
.p-portfolio .portfoliContents a:hover {
  opacity: 0.8;
}

.p-contact {
  margin-bottom: 100px;
}
.p-contact h2 {
  text-align: center;
  margin-bottom: 100px;
}
.p-contact .contactBtn {
  display: block;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  background-color: #505050;
  color: #fff;
  text-align: center;
  line-height: 50px;
}
.p-contact .contactBtn:hover {
  opacity: 0.8;
}

.p-coding {
  margin-bottom: 150px;
}
.p-coding .codingTop {
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .p-coding .codingTop {
    width: 70%;
  }
}
.p-coding .codingTop h2 {
  text-align: center;
  margin-bottom: 100px;
}
.p-coding .codingTop img {
  display: block;
  margin: 0 auto;
  margin-bottom: 70px;
}
.p-coding .codingTop p {
  line-height: 2;
  margin-bottom: 100px;
}
.p-coding .codingContents {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}
.p-coding .codingContents h3 {
  text-align: center;
  margin-bottom: 70px;
}

.p-portfolioDetail {
  margin-bottom: 100px;
}
.p-portfolioDetail .portfolioDetailContainer h2 {
  text-align: center;
  margin-bottom: 50px;
}
.p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents img {
  display: block;
  width: 480px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents .textContent, .p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents .annotation {
  margin: 0 auto;
  line-height: 2;
}
@media (min-width: 641px) {
  .p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents .textContent, .p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents .annotation {
    width: 80%;
  }
}
.p-portfolioDetail .portfolioDetailContainer .portfoliDetailContents .annotation {
  margin-top: 10px;
  font-size: 14px;
}

.p-portfolioList {
  margin-bottom: 100px;
}
.p-portfolioList h2 {
  text-align: center;
  margin-bottom: 60px;
}

.p-profile {
  margin-bottom: 150px;
}
.p-profile .profileTop {
  margin-bottom: 150px;
  position: relative;
}
.p-profile .profileTop h2 {
  margin-bottom: 70px;
  text-align: center;
}
@media (min-width: 641px) {
  .p-profile .profileTop h2 {
    text-align: unset;
  }
}
.p-profile .profileTop p {
  line-height: 2;
}
.p-profile .skill {
  margin-bottom: 150px;
}
.p-profile .skill h3 {
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 641px) {
  .p-profile .skill h3 {
    text-align: unset;
  }
}
.p-profile .skill .skillList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (min-width: 641px) {
  .p-profile .skill .skillList {
    justify-content: space-around;
    max-width: 898px;
    margin: 0 auto 50px;
  }
}
.p-profile .skill .skill-Detail h4 {
  margin-bottom: 30px;
}
.p-profile .skill .skill-Detail .skillExplanation dl {
  display: flex;
  flex-direction: column;
  padding: 10px;
  line-height: 2;
  border-bottom: 1px solid #333;
}
@media (min-width: 641px) {
  .p-profile .skill .skill-Detail .skillExplanation dl {
    flex-direction: row;
  }
}
.p-profile .skill .skill-Detail .skillExplanation dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 641px) {
  .p-profile .skill .skill-Detail .skillExplanation dl dt {
    margin-bottom: unset;
    width: 20%;
  }
}
@media (min-width: 641px) {
  .p-profile .skill .skill-Detail .skillExplanation dl dd {
    width: 80%;
  }
}
.p-profile .certified h3 {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 641px) {
  .p-profile .certified h3 {
    text-align: unset;
  }
}
.p-profile .certified .certifiedList li {
  margin-bottom: 5px;
}
.p-profile .certified .certifiedList li:last-of-type {
  margin-bottom: unset;
}
.p-profile .certified .certifiedList li span {
  display: inline-block;
  font-size: 10px;
  padding: 5px 10px;
  line-height: 1;
  margin-right: 10px;
  color: #fff;
  border-radius: 5px;
  vertical-align: text-bottom;
}
.p-profile .certified .certifiedList li span.national {
  background: #EB4566;
}
.p-profile .certified .certifiedList li span.private {
  background: #B6EC45;
}
.p-profile .u-decoration {
  margin-left: unset;
  text-align: center;
}
@media (min-width: 641px) {
  .p-profile .u-decoration {
    text-align: unset;
    margin-left: 10px;
    display: inline-block;
  }
}

.p-contactDetail {
  margin-bottom: 150px;
}
.p-contactDetail .contactTop {
  margin-bottom: 100px;
}
.p-contactDetail .contactTop h2 {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 641px) {
  .p-contactDetail .contactTop p {
    text-align: center;
  }
}
.p-contactDetail form label {
  display: block;
  margin-bottom: 10px;
}
.p-contactDetail form input[type=text], .p-contactDetail form input[type=email] {
  width: 100%;
  max-width: 400px;
}
.p-contactDetail form textarea {
  width: 100%;
  height: 100px;
}
.p-contactDetail form input[type=submit] {
  display: block;
  margin: 80px auto 0;
  padding: 20px 40px;
}
.p-contactDetail form div {
  margin-bottom: 25px;
}
.p-contactDetail form div:last-of-type {
  margin-bottom: unset;
}
.p-contactDetail form .error {
  color: red;
}

.u-decoration {
  display: block;
  font-size: 18px;
  font-style: italic;
  line-height: 0.5;
}
.u-decoration:before, .u-decoration:after {
  content: " - ";
}

h3 .u-decoration {
  font-size: 16px;
  line-height: 0.8;
}

/*# sourceMappingURL=style.css.map */
