@charset "UTF-8";
.page-about {
  margin-bottom: 60px;
}
.page-about__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .page-about__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-about__profile-box {
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .page-about__profile-box {
    margin-bottom: 40px;
  }
}
.page-about__name {
  position: relative;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 1000px) {
  .page-about__name {
    font-size: 20px;
  }
}
.page-about__name::after {
  content: "小宮明彦";
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .page-about__name::after {
    font-size: 13px;
    top: -14px;
  }
}
.page-about__img {
  max-width: 150px;
  margin: 0 auto;
  border-radius: 24%;
  overflow: hidden;
}
.page-about__message {
  line-height: 4;
  letter-spacing: 3px;
  margin-right: 8%;
}
@media screen and (max-width: 1000px) {
  .page-about__message {
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .page-about__message {
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 2.6;
  }
}
.page-about__contents {
  margin: 0 auto;
  max-width: 700px;
}
.page-about__contents__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  min-height: 50px;
}
.page-about__contents__tab .tab-list {
  width: 125px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid;
  border-bottom: none;
  margin-right: 4px;
  position: relative;
  background: #ddd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-about__contents__tab .tab-list {
    width: 90px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
}
.page-about__contents__tab .tab-list::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  z-index: 1;
}
.page-about__contents__tab .action {
  background: #fff;
  width: 140px;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .page-about__contents__tab .action {
    width: 110px;
    height: 42px;
    line-height: 42px;
  }
}
.page-about__contents__main {
  position: relative;
  height: 392px;
  overflow: hidden;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-about__contents__main {
    height: 500px;
  }
}
.page-about__contents__main__body {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 32px;
  border: 1px solid;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.page-about__contents__main__body span {
  margin-bottom: 8px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page-about__contents__main__body {
    font-size: 14px;
    grid-template-columns: 70px 1fr;
    padding: 24px 15px 15px;
  }
}
.page-about__contents__main .action {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.page-works__items {
  margin-bottom: 80px;
}
.page-works__item {
  max-width: 800px;
  margin: 0 auto 96px auto;
}
@media screen and (max-width: 1000px) {
  .page-works__item {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 767px) {
  .page-works__item {
    margin-bottom: 60px;
  }
}
.page-works__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1001px) {
  .page-works__item__img a {
    -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .page-works__item__img a::before {
    content: "";
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
  }
  .page-works__item__img a:hover::before {
    opacity: 0.2;
  }
  .page-works__item__img a:hover::after {
    opacity: 1;
  }
}
.page-works__item .link {
  position: relative;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page-works__item .link {
    font-size: 13px;
  }
}
.page-works__item .link::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -1.1rem;
  top: 0;
}
.page-works__item__content {
  margin-top: 1rem;
}
.page-works__item__content p {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .page-works__item__content p {
    font-size: 14px;
    margin-top: 8px;
  }
}

.page-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 767px) {
  .page-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-contact__form {
  width: 52%;
}
@media screen and (max-width: 1000px) {
  .page-contact__form {
    width: 100%;
  }
}
.page-contact__text {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .page-contact__text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .wpcf7-form {
    width: 90%;
    margin: 0 auto;
  }
}
.wpcf7-form .form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .form__flex {
    display: block;
  }
}
.wpcf7-form .form__flex label {
  margin-right: 20px;
  min-width: 70px;
}
.wpcf7-form .form__flex input,
.wpcf7-form .form__flex textarea {
  border: 1px solid #333;
  padding: 2px 10px;
  width: 100%;
}
.wpcf7-form .form__flex input:focus,
.wpcf7-form .form__flex textarea:focus {
  outline: none;
}
.wpcf7-form .form__flex textarea {
  max-width: 350px;
  max-height: 200px;
}
.wpcf7-form .form__flex input {
  margin-bottom: 20px;
}
.wpcf7-form input[type=submit] {
  display: block;
  margin: 20px 0 0 90px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .wpcf7-form input[type=submit] {
    margin-right: auto;
    margin-left: auto;
  }
}

body {
  color: #333;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.9;
  font-family: "Lato", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

.container {
  max-width: 1180px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .container {
    max-width: 85%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 90%;
    padding: 0;
  }
}

a {
  display: block;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.btn {
  position: relative;
  padding: 0.8em 3em;
  text-align: center;
  background: rgba(44, 34, 222, 0.7294117647);
  color: #fff;
  display: inline-block;
  border-radius: 48px;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  opacity: 0.8;
}
.btn::after {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .btn::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

#wpadminbar {
  margin-top: 200px !important;
}

.logo {
  width: 160px;
}
@media screen and (max-width: 1000px) {
  .logo {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .logo {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }
}

.header {
  height: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header {
    height: 44px;
  }
}
.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .header__items {
    margin-top: 16px;
  }
}
.header__logo {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 18px;
  }
}
.header .sns-li {
  cursor: not-allowed;
}
.header .sns-icon {
  pointer-events: none;
}
.header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__sns {
    display: none;
  }
}
.header__facebook {
  width: 16px;
  margin-left: 20px;
}
.header__twitter {
  width: 32px;
}
.header__nav {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.header__nav__list li {
  margin-left: 56px;
}
.header__nav__list li:last-child a {
  margin-right: 0;
}
.header__nav__list a {
  padding-top: 15px;
  position: relative;
}
.header__nav__list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: rgb(176, 176, 176);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__nav__list a:hover::before {
  width: 100%;
}
.header__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp {
    display: block;
    position: absolute;
    right: 0;
    top: 6px;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }
  .header__sp__bar {
    background: #333;
    height: 2px;
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header__sp .bar1 {
    top: 0;
  }
  .header__sp .bar2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__sp .bar3 {
    top: 100%;
  }
}
.header .action .bar1 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.header .action .bar2 {
  top: 50%;
  opacity: 0;
}
.header .action .bar3 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header__sp-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp-nav {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #333;
    z-index: 99;
  }
  .header__sp-nav nav {
    text-align: center;
    color: #fff;
  }
  .header__sp-nav ul {
    margin-top: 80px;
  }
  .header__sp-nav li {
    width: 100px;
    margin: 0 auto 20px auto;
  }
  .header__sp-nav li a {
    padding: 8px;
  }
  .header__sp-nav__sns {
    position: absolute;
    top: 375px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__sp-nav__twitter {
    margin-right: 30px;
    width: 46%;
  }
  .header__sp-nav__facebook {
    width: 80%;
  }
}
.header .sp-nav-action {
  left: 0%;
}

.top__visual {
  background: #ecebeb;
}
.top__visual__lg {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__visual__lg {
    display: none;
  }
}
.top__visual__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__visual__sp {
    display: block;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}

.scrollDown {
  height: 60px;
  width: 2px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 60px 0;
}
.scrollDown:before {
  content: "";
  width: 2px;
  height: 60px;
  background: #333;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.scrollDown::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid;
  background: rgb(255, 255, 255);
  position: absolute;
  bottom: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  -webkit-animation: circle 1.3s ease-in-out infinite, circle-hide 1.3s ease-in-out infinite;
          animation: circle 1.3s ease-in-out infinite, circle-hide 1.3s ease-in-out infinite;
}
@-webkit-keyframes circle {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: 0%;
  }
}
@keyframes circle {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: 0%;
  }
}
@-webkit-keyframes circle-hide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes circle-hide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrollDown__text {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 2px;
  font-size: 12px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 16;
}

.section {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .section {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 60px;
  }
}

.page {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .page {
    margin-top: 20px;
  }
}

.section__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .section__title {
    font-size: 40px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.skill__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .skill__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.skill__item {
  width: 27%;
}
@media screen and (max-width: 1000px) {
  .skill__item {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  .skill__item {
    width: 85%;
    max-width: 360px;
    margin-bottom: 60px;
  }
  .skill__item:last-child {
    margin-bottom: 0;
  }
}
.skill__item__ttl {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .skill__item__ttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .skill__item__ttl {
    margin-bottom: 38px;
  }
}
.skill__item .design:after,
.skill__item .coding:after,
.skill__item .wordpress:after {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .skill__item .design:after,
.skill__item .coding:after,
.skill__item .wordpress:after {
    bottom: -22px;
  }
}
@media screen and (max-width: 767px) {
  .skill__item .design:after,
.skill__item .coding:after,
.skill__item .wordpress:after {
    bottom: -18px;
  }
}
.skill__item .design:after {
  content: "DESIGN";
  position: absolute;
}
.skill__item .coding:after {
  content: "CODING";
}
.skill__item .wordpress:after {
  content: "WordPress";
}
.skill__item__img {
  max-width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .skill__item__img {
    margin-bottom: 32px;
  }
}

.works__items {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 5rem 3rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .works__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .works__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.works__item {
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.works__item:hover {
  opacity: 0.8;
}
.works__btn {
  text-align: center;
}

.top-scroll {
  width: 26px;
  margin: 0 auto;
  margin-bottom: 60px;
  cursor: pointer;
}

.footer {
  height: 120px;
}
@media screen and (max-width: 1000px) {
  .footer {
    height: 90px;
  }
}
@media screen and (max-width: 1000px) {
  .footer {
    height: 64px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav__list {
    display: none;
  }
}
.footer__nav__list a {
  padding: 20px 0;
  margin-right: 56px;
}