@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "NOTO SANS JP";
  line-height: 1.5;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main404 {
  margin-top: 100px;
}

.u-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 40px;
}

@media screen and (max-width: 768px) {
  .u-wrapper {
    padding: 80px 25px;
    max-width: 768px;
  }
  .main {
    margin-top: 10px;
  }
}
.title {
  font-size: 6.4rem;
  display: inline-block;
  padding-left: 140px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
  position: relative;
  line-height: 1;
  margin-bottom: 80px;
  font-family: "Zen Old Mincho", serif;
}

.title::before {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #000000;
  left: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.title::first-letter {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 3.2rem;
    margin-bottom: 50px;
    padding-left: 80px;
  }
  .title::before {
    width: 60px;
  }
}
.header {
  height: 100px;
  padding: 10px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  z-index: 1500;
  background-color: #fff;
  width: 100%;
}

.header__logo {
  max-height: 90px;
}

.header__logo img {
  width: 100%;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  text-align: center;
  margin-right: 10px;
}

.header__item {
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  color: #777777;
  font-weight: bold;
}

.header__item:hover {
  color: #000000;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* PCでは非表示 */
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
    border: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 1700;
    margin-left: auto;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #777777;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hamburger.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
            transform: translateY(14px) rotate(45deg);
  }
  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(-45deg);
            transform: translateY(-14px) rotate(-45deg);
  }
  .header__list {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    background: #fff;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    padding-top: 100px;
    gap: 20px;
    margin: 0;
  }
  .header__list.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 10px;
    height: 70px;
  }
  .header__item {
    font-size: 1.2rem;
  }
  .header__list {
    gap: 5px;
    padding-left: 0;
  }
  .header__logo {
    max-width: 60px;
  }
}
.footer {
  height: 100px;
  padding: 10px 40px;
}

.footer__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 5px 10px;
  }
  .footer p {
    font-size: 1.2rem;
  }
}
.works__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  gap: 40px;
  justify-items: center;
}
@media (max-width: 900px) {
  .works__lists {
    grid-template-columns: repeat(2, 1fr); /* タブレット2列 */
  }
}
@media (max-width: 600px) {
  .works__lists {
    grid-template-columns: 1fr; /* スマホ1列 */
  }
}

.works__item {
  width: 100%;
  max-width: 350px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.works__item a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.works__item img {
  height: 300px;
}

.h2 {
  font-size: 32px;
  padding: 5px;
}

.works__thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.works__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.works__thumb:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.works__title {
  color: #333;
}

.works__type {
  display: inline-block;
  color: #000;
  border-radius: 10px;
  margin: 5px 0;
  background-color: #EEEEEE;
  font-size: 14px;
  text-align: left;
  padding: 5px 10px;
}

/* ページネーション */
.pagination {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #555;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.pagination .page-numbers:hover {
  background: #eee;
}
.pagination .page-numbers.current {
  background: #333;
  color: #fff;
  border-color: #333;
}

.works-single .works-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.works-single .works-detail__title {
  padding-top: 100px;
}
.works-single .works-detail__images-wrapper {
  width: 100%;
  background-color: #e0e0e0;
  padding: 100px 20px;
  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;
  margin-top: 50px;
  overflow: hidden;
}
.works-single .works-detail__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}
.works-single .works-detail__images .works-detail__imgPC {
  max-width: 700px;
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 0;
}
.works-single .works-detail__images .works-detail__imgTB {
  max-width: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 0;
}
.works-single .works-detail__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.works-single .works-detail__title a {
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.works-single .works-detail__title a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-single .works-detail__title a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.works-single .works-detail__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  padding: 0 100px;
}
.works-single .works-detail__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.works-single .works-detail__contents, .works-single .works-detail__description {
  text-align: center;
}
.works-single .works-detail__skills {
  text-align: center;
  margin-top: 20px;
}
.works-single .works-detail__skills-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 24px;
  color: white;
  -webkit-text-stroke: 1px #000;
  text-shadow: 1px 1px 0 #000;
}
.works-single .works-detail__skills-text {
  display: inline-block;
  padding-left: 40px;
}
.works-single .works-detail {
  /* === レスポンシブ === */
}
@media screen and (max-width: 768px) {
  .works-single .works-detail__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works-single .works-detail__images .works-detail__imgPC {
    max-width: 400px;
  }
  .works-single .works-detail__images .detail__imgTB {
    max-height: 400px;
  }
  .works-single .works-detail__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
  .works-single .works-detail__skills-text {
    padding: 10px 0;
  }
}

.aboutpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.aboutpage__container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aboutpage__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aboutpage__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  position: relative;
  padding: 10px;
}

.profile::before {
  content: "";
  height: 100%;
  width: 5px;
  background-color: #333333;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.profile::after {
  content: "";
  background-color: #333333;
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.aptext {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.apimage {
  width: 400px;
  max-width: 45%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px dotted #333333;
  padding: 10px;
}

.apname {
  font-size: 34px;
  font-weight: bold;
  margin: 0;
}

.aplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.apitem {
  position: relative;
}

.apitem__text {
  position: relative;
  padding: 1.4em 1.6em;
  line-height: 1.8;
  color: #333;
  z-index: 1;
}

.apitem__text::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
  background: radial-gradient(circle at 30% 30%, #f2f2f2, #e9e9e9 60%);
  border-radius: 50%;
  -webkit-filter: blur(14px);
          filter: blur(14px);
  z-index: -1;
}

.ap__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ap__pictureimg {
  border-radius: 30%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}

.ap__boxtext {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  border-bottom: 2px solid #333333;
}

.ap__boxtext::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -13px;
  width: 30px;
  height: 2px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #333333;
}

.ap__boxtext::after {
  content: "";
  position: absolute;
  right: -23px;
  bottom: -28px;
  width: 8px;
  height: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ffffff; /* 背景色と同じ色を指定 */
  border-radius: 50%;
  background-color: #333333;
}

@media screen and (max-width: 768px) {
  .aboutpage {
    gap: 50px;
  }
  .aboutpage__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .aboutpage__content {
    display: block;
  }
  .apname {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .aptext {
    clear: both;
    padding-top: 10px;
  }
  .apimage {
    width: 150px;
    float: left;
  }
  .aplist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ap__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.firstview {
  max-width: 100%;
  height: 100vh;
  max-height: 900px;
  min-height: 400px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}

.fv__container {
  margin-right: 5%;
  text-align: left;
  max-width: 600px;
}

.fv__copy {
  font-size: 6.4rem;
  margin: 0;
}

.fv__sbtitle {
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fv__copy {
    font-size: 2.4rem;
  }
  .fv__img {
    height: 300px;
  }
  .firstview {
    height: 400px;
  }
}
.message__container {
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .message__container {
    font-size: 1.6rem;
    text-align: left;
  }
}
.works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
}

.works__btn {
  display: block;
  border: 1px solid #000;
  margin: 100px auto;
  padding: 10px 100px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.works__btn:hover {
  background-color: #777777;
  color: #fff;
}

.works__slider {
  position: relative;
  overflow: visible;
}
.works__slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #777777;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: #777777;
  font-size: 2rem;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  scale: 1.1;
  color: #000;
}

.swiper-button-next {
  right: -2%;
}

.swiper-button-prev {
  left: -2%;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .works__btn {
    margin: 50px auto;
  }
}
@media screen and (max-width: 1023px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
.service {
  background-color: #EEEEEE;
}
.service__container {
  border: 4px dotted #000;
  padding: 3rem;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__list {
  gap: 2rem;
}
.service__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
.service__title {
  font-weight: bold;
  font-size: 2rem;
}
.service__price {
  font-weight: 500;
  font-size: 1.8rem;
}
.service__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service__monitor, .service__plan {
  height: 280px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .service__container {
    padding: 1.6rem;
  }
  .service__box {
    display: block;
  }
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.about__left {
  max-width: 700px;
  min-width: 400px;
}

.about__left img {
  width: 100%;
}

.about__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  padding: 30px;
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.about__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: bold;
}

.about__btn {
  display: block;
  border: 1px solid #000;
  margin: 100px auto;
  padding: 10px 100px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about__btn:hover {
  background-color: #777777;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .about__container {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: auto;
  }
  .about__box {
    margin-top: 30px;
  }
  .about__list {
    gap: 30px;
  }
  .about__btn {
    padding: 10px 40px;
    margin: 20px auto;
  }
}
.contact {
  background-color: #EEEEEE;
}

.contact__text {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 100px;
}

.contact__toggle {
  display: block;
  margin: 0 auto;
  border: 1px solid #000000;
  text-align: center;
  padding: 20px 200px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}

.contact__toggle:hover {
  background-color: #777777;
  color: #fff;
}

.contact__accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.contact__accordion.active {
  max-height: 700px;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
}

.wpcf7-submit {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 80px;
}

.wpcf7-submit:hover {
  background-color: #777777;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact__form {
    max-width: 400px;
  }
  .contact__toggle {
    padding: 10px 100px;
  }
  .contact__text {
    font-size: 1.8rem;
  }
}