@charset "UTF-8";
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond", serif;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
  font-weight: normal;
  vertical-align: auto;
  line-height: 1;
  font-size: 16px;
}

h3 {
  font-size: 1.5em;
}

table tr th {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #fafafa;
  width: 100%;
  position: fixed;
  z-index: 9999999999;
}
#header .h-logo a {
  height: 80px;
}
#header .h-logo img {
  width: 100%;
  max-width: 200px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .h-nav span {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .h-nav span {
    display: block;
    position: absolute;
    top: 80px;
    left: 200%;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 1s;
  }
}
#header .h-nav ul {
  display: flex;
  gap: 20px;
  transition: all 2s;
}
#header .h-nav ul li a {
  color: black;
  position: relative;
  width: 100%;
  display: inline-block;
}
#header .h-nav ul li a::before, #header .h-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 0.5px;
  background-color: black;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  #header .h-nav ul li a::before, #header .h-nav ul li a::after {
    opacity: 0;
  }
}
#header .h-nav ul li a::before {
  left: 50%;
}
#header .h-nav ul li a::after {
  right: 50%;
}
#header .h-nav ul li a:hover {
  opacity: 0.8;
}
#header .h-nav ul li a:hover::before {
  left: 5%;
  width: 45%;
}
#header .h-nav ul li a:hover::after {
  right: 5%;
  width: 45%;
}
@media screen and (max-width: 767px) {
  #header .h-nav ul {
    display: block;
    position: absolute;
    text-align: center;
    top: 80px;
    height: 100vh;
    right: -200%;
    background-color: #fafafa;
  }
  #header .h-nav ul li {
    padding-top: 30px;
  }
}
#header .h-humberger {
  display: none;
}
@media screen and (max-width: 767px) {
  #header .h-humberger {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
  }
  #header .h-humberger span {
    display: block;
    height: 5px;
    width: 100%;
    background-color: black;
    transition: all 1s;
  }
  #header .h-humberger span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .h-humberger span:nth-child(2) {
    position: absolute;
    top: 10px;
    left: 0;
  }
  #header .h-humberger span:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#header .humberger-open span:nth-child(1) {
  transform: rotate(225deg);
  top: 40%;
}
#header .humberger-open span:nth-child(2) {
  position: absolute;
  left: 1000%;
}
#header .humberger-open span:nth-child(3) {
  transform: rotate(-225deg);
  bottom: 40%;
}
#header .h-nav-open {
  top: 80px;
  right: 0 !important;
  width: 85%;
  background-color: #fafafa;
  padding-top: 10%;
}
#header .h-nav-span-open {
  left: 0 !important;
}

#main {
  padding-top: 80px;
  background-color: #fafafa;
  overflow-x: hidden;
}
#main .m-wrapper {
  padding: 80px 20px 0 20px;
}
#main .m-wrapper h2 {
  text-align: center;
  line-height: 2em;
  position: relative;
  font-size: 2em;
}
#main .m-wrapper h2::after {
  content: "~ web corder ~";
  display: block;
  text-align: center;
}
#main #works {
  padding: 80px 20px 80px 20px;
  max-width: 700px;
  margin: 0 auto;
}
#main #works h3 {
  text-align: left;
}
#main #works h3::after {
  content: "制作物";
  font-size: 0.5em;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #main #works h3 {
    text-align: center;
  }
}
#main #works .w-img-area {
  width: 90%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 15px 0px #7a7a7a;
  border-radius: 12px;
  overflow: hidden;
}
#main #works .w-img-area img {
  width: 100%;
  height: 254px;
  transition: all 1s;
  -o-object-fit: contain;
     object-fit: contain;
}
#main #works .w-img-area img:hover {
  opacity: 0.5;
  scale: 1.1;
}
#main #works .w-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
#main #works .w-about .w-detail {
  width: 320px;
}
#main #works .w-about .w-detail h4 {
  text-align: center;
  font-size: 1.4em;
}
#main #works .w-about .w-detail p {
  padding-top: 20px;
  line-height: 1.5em;
  text-align: center;
}
#main #works .w-about .w-detail .k-pro-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 24px;
  padding-top: 20px;
}
#main #works .w-about .w-detail .k-pro-btn a {
  line-height: 1.5em;
}
#main #works .w-about .w-detail .k-pro-btn .w-arrow {
  width: 40px;
  height: 100%;
  position: relative;
  transition: all 1s;
}
#main #works .w-about .w-detail .k-pro-btn .w-arrow span {
  display: block;
  background-color: black;
}
#main #works .w-about .w-detail .k-pro-btn .w-arrow span:nth-child(1) {
  width: 100%;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 7px;
}
#main #works .w-about .w-detail .k-pro-btn .w-arrow span:nth-child(2) {
  width: 10px;
  height: 2px;
  position: absolute;
  bottom: 11px;
  right: 0;
  transform: rotate(45deg);
}
#main #works .w-about .w-detail .k-pro-btn .w-arrow img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  #main #works .w-about .w-detail .k-pro-btn {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #main #works .w-about .w-detail {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  #main #works .w-about {
    flex-direction: column;
  }
}
#main .bunner {
  display: flex;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #main .bunner {
    flex-direction: column;
  }
}
#main #skills {
  width: 100%;
  border-bottom: 2px solid #d0d0d0;
}
#main #skills .s-inner {
  height: 200px;
  background-color: #dad0d0;
  transition: all 2s;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#main #skills .s-inner .s-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}
#main #skills .s-inner .s-about p {
  font-size: 0.7em;
  padding-top: 10px;
}
#main #skills .s-inner .s-about a {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
#main #skills .s-inner .s-about a::before, #main #skills .s-inner .s-about a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 0.5px;
  background-color: black;
  transition: all 0.5s ease-in-out;
}
#main #skills .s-inner .s-about a::before {
  left: 50%;
}
#main #skills .s-inner .s-about a::after {
  right: 50%;
}
#main #skills .s-inner .s-about a:hover {
  opacity: 0.8;
}
#main #skills .s-inner .s-about a:hover::before {
  left: 5%;
  width: 45%;
}
#main #skills .s-inner .s-about a:hover::after {
  right: 5%;
  width: 45%;
}
#main #skills .s-inner .s-about .s-arrow img {
  height: 20px;
  width: 20px;
  transition: all 1s;
}
#main #skills .s-inner .s-about .s-arrow::after, #main #skills .s-inner .s-about .s-arrow::before {
  display: none;
}
#main #about {
  width: 100%;
  border-top: 2px solid #d0d0d0;
}
#main #about .a-inner {
  height: 200px;
  background-color: #dad0d0;
  transition: all 2s;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#main #about .a-inner .a-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}
#main #about .a-inner .a-about p {
  font-size: 0.7em;
  padding-top: 10px;
}
#main #about .a-inner .a-about a {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
#main #about .a-inner .a-about a::before, #main #about .a-inner .a-about a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 0.5px;
  background-color: black;
  transition: all 0.5s ease-in-out;
}
#main #about .a-inner .a-about a::before {
  left: 50%;
}
#main #about .a-inner .a-about a::after {
  right: 50%;
}
#main #about .a-inner .a-about a:hover {
  opacity: 0.8;
}
#main #about .a-inner .a-about a:hover::before {
  left: 5%;
  width: 45%;
}
#main #about .a-inner .a-about a:hover::after {
  right: 5%;
  width: 45%;
}
#main #about .a-inner .a-about .a-arrow {
  flex-shrink: 0;
}
#main #about .a-inner .a-about .a-arrow img {
  height: 20px;
  width: 20px;
  transition: all 1s;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
#main #about .a-inner .a-about .a-arrow::after, #main #about .a-inner .a-about .a-arrow::before {
  display: none;
}
#main #contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fafafa;
}
#main #contact p::after {
  content: "*";
  color: red;
}
#main #contact .c-inner {
  padding: 0 20px;
}
#main #contact .c-inner .c-about h3 {
  font-size: 2em;
  text-align: center;
  position: relative;
}
#main #contact .c-inner .c-about h3::after {
  content: "下記コンタクトフォームより、お気軽にお問い合わせください。";
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: 100%;
}
#main #contact .c-inner .c-about p {
  text-align: center;
}
#main #contact .c-inner .c-about .c-form {
  max-width: 500px;
  text-align: left;
  margin: 0 auto;
}
#main #contact .c-inner .c-about .c-form .c-lists {
  padding-top: 50px;
}
#main #contact .c-inner .c-about .c-form .c-lists .c-name {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .c-name {
    display: block;
  }
  #main #contact .c-inner .c-about .c-form .c-lists .c-name p {
    text-align: left;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .c-name .c-name-form {
  margin-left: 21%;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .c-name .c-name-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .c-name .c-name-form #f-name {
  margin-right: 20px;
}
#main #contact .c-inner .c-about .c-form .c-lists .c-name .c-name-form input {
  border: 1px solid #d0d0d0;
  width: 90px;
  margin-left: 10px;
}
#main #contact .c-inner .c-about .c-form .c-lists .person {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .person {
    display: block;
  }
  #main #contact .c-inner .c-about .c-form .c-lists .person p {
    text-align: left;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .person .c-person-form {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .person .c-person-form {
    text-align: center;
    margin-top: 20px;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .person .c-person-form input {
  accent-color: black;
}
#main #contact .c-inner .c-about .c-form .c-lists .person .c-person-form #corporation {
  margin-left: 20px;
}
#main #contact .c-inner .c-about .c-form .c-lists .works-content {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .works-content {
    display: block;
  }
  #main #contact .c-inner .c-about .c-form .c-lists .works-content p {
    text-align: left;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .works-content #content {
  margin: 0 auto;
  height: 30px;
  width: 150px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  outline: none;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .works-content #content {
    display: flex;
    justify-content: left;
    margin: 20px auto 0 auto;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .works-content #content option {
  text-align: center;
}
#main #contact .c-inner .c-about .c-form .c-lists .contact-detail {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .contact-detail {
    display: block;
  }
  #main #contact .c-inner .c-about .c-form .c-lists .contact-detail p {
    text-align: left;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .contact-detail #message {
  height: 100px;
  width: 300px;
  margin: 0 auto;
  border: 1px solid #fafafa;
}
@media screen and (max-width: 767px) {
  #main #contact .c-inner .c-about .c-form .c-lists .contact-detail #message {
    margin-top: 30px;
    width: 100%;
  }
}
#main #contact .c-inner .c-about .c-form .c-lists .submit {
  display: block;
  margin: 30px auto 0 auto;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #fafafa;
  transition: all 0.5s;
  background-color: #dad0d0;
}
#main #contact .c-inner .c-about .c-form .c-lists .submit:hover {
  opacity: 0.8;
}

#footer {
  background-color: black;
  color: white;
}
#footer .f-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #footer .f-wrapper {
    display: block;
  }
}
#footer .f-wrapper .copy {
  padding-top: 30px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  #footer .f-wrapper .copy {
    padding-top: 0;
  }
}
#footer .f-wrapper .copy small {
  display: inline-block;
  width: 200px;
  text-align: center;
}
#footer .f-wrapper .f-nav {
  padding: 30px 0;
}
#footer .f-wrapper .f-nav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #footer .f-wrapper .f-nav ul {
    text-align: center;
    display: grid;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
    padding-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 20px;
  }
  #footer .f-wrapper .f-nav ul li:nth-child(2n+1) {
    text-align: right;
  }
  #footer .f-wrapper .f-nav ul li:nth-child(2n) {
    text-align: left;
  }
}
#footer .f-wrapper .f-nav ul a {
  color: white;
  transition: all 0.5s;
}
#footer .f-wrapper .f-nav ul a:hover {
  opacity: 0.5;
}

#main .m-wrapper .skill-inner {
  max-width: 1000px;
  margin: 0 auto;
}
#main .m-wrapper .skill-inner h1 {
  font-size: 3em;
  position: relative;
  height: 100%;
  display: inline;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .skill-inner h1 {
    font-size: 2em;
  }
}
#main .m-wrapper .skill-inner h1::after {
  content: "~ 技術 ~";
  position: absolute;
  font-size: 0.3em;
  bottom: 10px;
  right: -60%;
}
#main .m-wrapper .skill-inner .s-about {
  margin-top: 30px;
  border-bottom: 2px solid #d0d0d0;
  padding-bottom: 30px;
}
@media screen and (min-width: 767px) {
  #main .m-wrapper .skill-inner .s-about {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
}
#main .m-wrapper .skill-inner .s-about h2 {
  font-size: 1em;
  text-align: left;
}
#main .m-wrapper .skill-inner .s-about h2::after {
  content: none;
}
#main .m-wrapper .skill-inner .s-about .hp-product {
  margin-top: 20px;
  max-width: 600px;
}
#main .m-wrapper .skill-inner .s-about .hp-product p {
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 767px) {
  #main .m-wrapper .skill-inner .s-about .hp-product {
    margin-top: 0;
  }
}
#main .m-wrapper .skill-inner .s-about .lp-product {
  margin-top: 20px;
  max-width: 600px;
}
#main .m-wrapper .skill-inner .s-about .lp-product p {
  margin-top: 10px;
  line-height: 1.5;
}
#main .m-wrapper .skill-inner .language-inner {
  padding: 30px 0;
  border-bottom: 2px solid #d0d0d0;
}
#main .m-wrapper .skill-inner .language-inner .l-about {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .skill-inner .language-inner .l-about {
    display: block;
  }
}
#main .m-wrapper .skill-inner .language-inner .l-about h2 {
  font-size: 1em;
  text-align: left;
  width: 64px;
}
#main .m-wrapper .skill-inner .language-inner .l-about h2::after {
  content: none;
}
#main .m-wrapper .skill-inner .language-inner .l-about table {
  width: 100%;
  max-width: 600px;
}
#main .m-wrapper .skill-inner .language-inner .l-about table tr {
  display: flex;
  justify-content: space-between;
  max-width: 200px;
}
#main .m-wrapper .skill-inner .language-inner .l-about table tr th {
  margin-top: 10px;
  display: inline-block;
  text-align: right;
}
#main .m-wrapper .skill-inner .language-inner .l-about table tr th span {
  font-family: "meiryo";
  font-size: 0.8em;
}
#main .bunner img {
  width: 20px;
  height: 20px;
}
#main #about {
  border-top: none;
  border-left: 2px solid #d0d0d0;
}
@media screen and (max-width: 767px) {
  #main #about {
    border-top: 2px solid #d0d0d0;
  }
}

#main .m-wrapper .about-inner {
  max-width: 1000px;
  margin: 0 auto;
}
#main .m-wrapper .about-inner h1 {
  font-size: 3em;
  position: relative;
  height: 100%;
  display: inline;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .about-inner h1 {
    font-size: 2em;
  }
}
#main .m-wrapper .about-inner h1::after {
  content: "~ 私について ~";
  position: absolute;
  font-size: 0.3em;
  bottom: 10px;
  right: -60%;
  right: -70%;
}
#main .m-wrapper .about-inner .a-about {
  margin-top: 80px;
}
#main .m-wrapper .about-inner .a-about h2 {
  font-size: 1em;
  text-align: left;
  position: relative;
  font-size: 2em;
}
#main .m-wrapper .about-inner .a-about h2::after {
  content: none;
}
#main .m-wrapper .about-inner .a-about h2::after {
  content: "";
  height: 0.3px;
  width: 50px;
  background-color: black;
  position: absolute;
  bottom: 50%;
  left: 100px;
}
#main .m-wrapper .about-inner .a-about .profile-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .about-inner .a-about .profile-about {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
#main .m-wrapper .about-inner .a-about .profile-about img {
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20%;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .about-inner .a-about .profile-about img {
    width: 30%;
  }
}
#main .m-wrapper .about-inner .a-about .profile-about .p-detail ul li {
  line-height: 2;
  position: relative;
}
#main .m-wrapper .about-inner .a-about .profile-about .p-detail ul li:first-child {
  font-weight: bold;
}
#main .m-wrapper .about-inner .a-about .profile-about .p-detail ul li:first-child::after {
  content: "name";
  position: absolute;
  top: -100%;
  left: 0;
  font-weight: normal;
  font-size: 1em;
}
#main .m-wrapper .about-inner .a-about .profile-about .p-detail ul li span {
  font-family: "meirio";
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  #main .m-wrapper .about-inner .a-about .profile-about .p-detail {
    margin-top: 50px;
    text-align: left;
  }
}
#main .m-wrapper .about-inner .office-inner {
  margin-top: 80px;
}
#main .m-wrapper .about-inner .office-inner .o-about h2 {
  font-size: 1em;
  text-align: left;
  font-size: 2em;
}
#main .m-wrapper .about-inner .office-inner .o-about h2::after {
  content: none;
}
#main .m-wrapper .about-inner .office-inner .o-about h2::after {
  content: "";
  height: 0.3px;
  width: 50px;
  background-color: black;
  position: absolute;
  bottom: 50%;
  left: 100px;
}
#main .m-wrapper .about-inner .office-inner .o-about table {
  line-height: 2;
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr {
  border-bottom: 2px solid #d0d0d0;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr:nth-child(2) td {
  display: block;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr:nth-child(2) td:nth-of-type(1) {
  padding-bottom: 0;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr th {
  text-align: left;
  padding: 30px 0;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr td {
  padding: 30px 0;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr td a {
  transition: all 1s;
  display: block;
}
#main .m-wrapper .about-inner .office-inner .o-about table tr td a:hover {
  opacity: 0.5;
}
#main .bunner .bunner-works {
  width: 100%;
  padding: 0;
}
#main .bunner .bunner-works .b-w-inner {
  height: 200px;
  background-color: #dad0d0;
  transition: all 2s;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#main .bunner .bunner-works .b-w-inner .b-w-about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#main .bunner .bunner-works .b-w-inner .b-w-about p {
  font-size: 0.7em;
  padding-top: 10px;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a::before, #main .bunner .bunner-works .b-w-inner .b-w-about a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 0.5px;
  background-color: black;
  transition: all 0.5s ease-in-out;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a::before {
  left: 50%;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a::after {
  right: 50%;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a:hover {
  opacity: 0.8;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a:hover::before {
  left: 5%;
  width: 45%;
}
#main .bunner .bunner-works .b-w-inner .b-w-about a:hover::after {
  right: 5%;
  width: 45%;
}
#main .bunner .bunner-works .b-w-inner .b-w-about .w-arrow {
  flex-shrink: 0;
}
#main .bunner .bunner-works .b-w-inner .b-w-about .w-arrow img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  transition: all 1s;
}
#main .bunner .bunner-works .b-w-inner .b-w-about .w-arrow::after, #main .bunner .bunner-works .b-w-inner .b-w-about .w-arrow::before {
  display: none;
}
#main .bunner #skills {
  border-left: 2px solid #d0d0d0;
}
@media screen and (max-width: 767px) {
  #main .bunner #skills {
    border-top: 2px solid #d0d0d0;
  }
}

.m-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.works-inner h1 {
  font-size: 3em;
  position: relative;
  height: 100%;
  display: inline;
}
@media screen and (max-width: 767px) {
  .works-inner h1 {
    font-size: 2em;
  }
}
.works-inner h1::after {
  content: "~ 制作物 ~";
  position: absolute;
  font-size: 0.3em;
  bottom: 10px;
  right: -60%;
}

.bunner img {
  width: 20px;
  height: 20px;
}

.about-inner.w-intro-inner h1::after {
  content: "";
  display: none;
}

.about-inner.w-intro-inner p {
  text-align: center;
}

.w-intro-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}
.w-intro-img img {
  width: 40%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-tabale-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.intro-tabale-wrapper .intro-table-inner table {
  line-height: 2;
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
}
.intro-tabale-wrapper .intro-table-inner table tbody {
  display: table-row-group;
  vertical-align: middle;
  unicode-bidi: isolate;
  border-color: inherit;
}
.intro-tabale-wrapper .intro-table-inner table tr {
  border-bottom: 2px solid #d0d0d0;
}
.intro-tabale-wrapper .intro-table-inner table th {
  text-align: left;
  padding: 30px 0;
}
.intro-tabale-wrapper .intro-table-inner table td {
  padding: 30px 0;
}/*# sourceMappingURL=style.css.map */