@charset "UTF-8";
img {
  max-width: 100%;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  letter-spacing: 0.2rem;
}

main {
  padding-top: 91px;
  overflow: hidden;
}
@media screen and (max-width: 590px) {
  main {
    padding-top: 57px;
  }
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 77px;
}
@media screen and (max-width: 590px) {
  .inner {
    padding: 0 40px;
  }
}

.flex__item {
  display: flex;
  justify-content: space-between;
}

.title {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  font-weight: 400;
  text-align: center;
  padding: 100px 0 70px;
  letter-spacing: 1.5rem;
}
@media screen and (max-width: 1100px) {
  .title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 920px) {
  .title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 590px) {
  .title {
    font-size: 4.5rem;
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .title {
    letter-spacing: 0.6rem;
    font-size: 4rem;
  }
}

.title span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px); /* 下に少しズラしておく */
}

.btn {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 12px 40px;
  transition: color 0.4s, border-color 0.4s;
  text-transform: uppercase;
  overflow: hidden;
}
@media screen and (max-width: 590px) {
  .btn {
    font-size: 2rem;
    padding: 12px 30px;
  }
}
@media screen and (max-width: 400px) {
  .btn {
    font-size: 1.8rem;
  }
}
.btn .arrow {
  position: relative;
  z-index: 1;
  width: auto;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #debbc4;
  transition: left 0.4s ease;
  z-index: 0;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  left: 0;
}
.btn span {
  position: relative;
  z-index: 1;
  padding-bottom: 5px;
}

.workflow,
.price {
  display: none;
}

.footer {
  background-color: #fff;
  width: 100%;
  font-family: "Lato", sans-serif;
  position: relative;
}

.footer__inner {
  padding: 50px 10%;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  font-size: 3.6rem;
  font-weight: 600;
  margin: 55px 0 80px 0;
}

.footer__list {
  width: 50%;
  font-size: 2rem;
  font-weight: 600;
  gap: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 70px;
}
.footer__list li:nth-child(3) {
  display: none;
}
.footer__list a:hover {
  color: #ba7083;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .footer__list {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 920px) {
  .footer__list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }
}
@media screen and (max-width: 590px) {
  .footer__list {
    padding-left: 0;
  }
}

.footer__border {
  width: 100%;
  height: 1px;
  background-color: #333333;
}

.footer__copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 590px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 400px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.footer__message {
  width: 250px;
  position: absolute;
  right: 17%;
  bottom: 110px;
  overflow: hidden;
}
.footer__message img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .footer__message {
    bottom: 130px;
  }
}
@media screen and (max-width: 770px) {
  .footer__message {
    width: 200px;
    bottom: 150px;
  }
}
@media screen and (max-width: 590px) {
  .footer__message {
    right: 5%;
  }
}
@media screen and (max-width: 400px) {
  .footer__message {
    width: 150px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 91px;
  padding: 25px 5%;
  background-color: #fff;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
  z-index: 1000;
  overflow-x: hidden;
}
@media screen and (max-width: 590px) {
  .header {
    padding: 15px 5%;
    height: auto;
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 3.6rem;
  font-weight: 600;
  min-width: 0;
}
.header__logo .highlight {
  color: inherit;
  transition: color 0.3s ease;
}
.header__logo:hover .highlight {
  color: #ba7083;
}
@media screen and (max-width: 1100px) {
  .header__logo {
    font-size: 3rem;
  }
}
@media screen and (max-width: 590px) {
  .header__logo {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 400px) {
  .header__logo {
    font-size: 2rem;
  }
}

.header__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 25px;
}
.header__list li:nth-child(3) {
  display: none;
}
.header__list a {
  position: relative;
}
.header__list a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header__list a:hover {
  color: #ba7083;
}
.header__list a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  .header__list {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 920px) {
  .header__list {
    flex-direction: column;
    gap: 50px;
    padding: 80px 20px;
    font-size: 2rem;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 920px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333333;
    border-radius: 2px;
    transition: 0.3s;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
}

@media screen and (max-width: 920px) {
  .header__nav {
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 920px) and (max-width: 590px) {
  .header__nav {
    top: 57px;
  }
}
@media screen and (max-width: 920px) {
  .header__nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }
}

.fv {
  background-image: url("../img/sakura/sakura.png");
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 50;
  height: 90vh;
  height: 90dvh;
}
@media screen and (max-width: 770px) {
  .fv {
    background-size: contain;
  }
}

.fv__wrapper {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  position: relative;
  height: 100%;
}

.fv__title-wrapper {
  text-align: center;
  padding: 50vh 0 20vh;
}
.fv__title-wrapper .fv__title {
  font-size: 9.6rem;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 920px) {
  .fv__title-wrapper .fv__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 770px) {
  .fv__title-wrapper .fv__title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 590px) {
  .fv__title-wrapper .fv__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 400px) {
  .fv__title-wrapper .fv__title {
    font-size: 3rem;
  }
}
.fv__title-wrapper .fv__subtitle {
  font-size: 3.6rem;
  padding-top: 50px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.2s ease;
}
@media screen and (max-width: 920px) {
  .fv__title-wrapper .fv__subtitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 770px) {
  .fv__title-wrapper .fv__subtitle {
    font-size: 2.4rem;
    padding-top: 15px;
  }
}
@media screen and (max-width: 590px) {
  .fv__title-wrapper .fv__subtitle {
    font-size: 1.8rem;
    padding-top: 5px;
  }
}
@media screen and (max-width: 400px) {
  .fv__title-wrapper .fv__subtitle {
    font-size: 1.4rem;
  }
}

.fv__message {
  width: 25%;
  position: absolute;
  right: 50px;
  top: 50px;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .fv__message {
    width: 40%;
  }
}
@media screen and (max-width: 590px) {
  .fv__message {
    right: 20px;
  }
}

.fv__message img {
  width: 100%;
}

.fv__line {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}
.fv__line img {
  width: 100%;
  display: block;
}

.fv__title span {
  opacity: 0;
  display: inline-block;
}

.works {
  padding-bottom: 100px;
}

.works__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 1100px) {
  .works__inner {
    padding: 0 10%;
  }
}

.card__title {
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

.card__tag {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 10px 10px;
  gap: 5px;
  font-size: 1.1rem;
}
.card__tag .nLinkTag {
  background-color: rgba(51, 51, 51, 0.1);
  padding: 3px 10px;
  border-radius: 5px;
}
@media screen and (max-width: 920px) {
  .card__tag {
    font-size: 1rem;
  }
}
@media screen and (max-width: 770px) {
  .card__tag {
    font-size: 1.2rem;
  }
}

.btn__more {
  color: #333333;
  border: 1px solid #333333;
  width: 300px;
}
@media screen and (max-width: 590px) {
  .btn__more {
    width: 250px;
  }
}

.service {
  background-image: url("../img/bgi_diagmonds747474.png");
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.service__container {
  display: flex;
  flex-wrap: wrap;
  gap: 85px;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 770px) {
  .service__container {
    flex-direction: column;
    align-items: center;
  }
}
.service__container .service__item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 55px);
}
@media screen and (max-width: 770px) {
  .service__container .service__item {
    width: 70%;
  }
}
@media screen and (max-width: 590px) {
  .service__container .service__item {
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .service__container .service__item {
    width: 100%;
  }
}
.service__container .service__item .service__item-title {
  font-size: 3.2rem;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 920px) {
  .service__container .service__item .service__item-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 590px) {
  .service__container .service__item .service__item-title {
    font-size: 2rem;
  }
}
.service__container .service__item .service__item-img {
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 400px) {
  .service__container .service__item .service__item-img img {
    width: 50%;
  }
}
.service__container .service__item .service__item-text {
  font-size: 1.8rem;
  letter-spacing: 0.6rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 590px) {
  .service__container .service__item .service__item-text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 770px) {
  .workflow__title {
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 400px) {
  .workflow__title {
    letter-spacing: 0rem;
    font-size: 4rem;
  }
}

.workflow__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 100px;
  max-width: 1000px;
}
.workflow__container .workflow__item {
  width: 1000px;
  height: 180px;
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 1100px) {
  .workflow__container .workflow__item {
    width: 90%;
    height: auto;
  }
}
.workflow__container .workflow__item .workflow__item-num {
  font-family: "Lato", sans-serif;
  font-size: 5.5rem;
  padding-left: 80px;
}
@media screen and (max-width: 1100px) {
  .workflow__container .workflow__item .workflow__item-num {
    padding-left: 5%;
  }
}
@media screen and (max-width: 920px) {
  .workflow__container .workflow__item .workflow__item-num {
    font-size: 4rem;
  }
}
@media screen and (max-width: 400px) {
  .workflow__container .workflow__item .workflow__item-num {
    font-size: 3.5rem;
  }
}
.workflow__container .workflow__item .workflow__item-textarea {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  align-items: center;
  padding: 5px 80px 35px;
}
@media screen and (max-width: 1100px) {
  .workflow__container .workflow__item .workflow__item-textarea {
    padding: 5px 5% 35px;
  }
}
@media screen and (max-width: 770px) {
  .workflow__container .workflow__item .workflow__item-textarea {
    flex-direction: column;
    align-items: flex-start;
  }
}
.workflow__container .workflow__item .workflow__item-title {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .workflow__container .workflow__item .workflow__item-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 770px) {
  .workflow__container .workflow__item .workflow__item-title {
    padding: 15px 0;
  }
}
@media screen and (max-width: 400px) {
  .workflow__container .workflow__item .workflow__item-title {
    font-size: 1.8rem;
  }
}
.workflow__container .workflow__item .workflow__item-text {
  font-size: 2rem;
  max-width: 530px;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}
@media screen and (max-width: 1100px) {
  .workflow__container .workflow__item .workflow__item-text {
    width: 60%;
  }
}
@media screen and (max-width: 920px) {
  .workflow__container .workflow__item .workflow__item-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 770px) {
  .workflow__container .workflow__item .workflow__item-text {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .workflow__container .workflow__item .workflow__item-text {
    font-size: 1.6rem;
  }
}

.price {
  background-image: url("../img/bgi_diagmonds747474.png");
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.price__note {
  font-size: 2.4rem;
  letter-spacing: 0.6rem;
  line-height: 3.5rem;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 920px) {
  .price__note {
    font-size: 2rem;
  }
}
@media screen and (max-width: 590px) {
  .price__note {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .price__note {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}

.price__container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 920px) {
  .price__container {
    flex-direction: column;
    align-items: center;
    width: 90%;
  }
}
.price__container .price__item {
  width: 40%;
}
@media screen and (max-width: 920px) {
  .price__container .price__item {
    width: 70%;
  }
}
@media screen and (max-width: 590px) {
  .price__container .price__item {
    width: 100%;
  }
}
.price__container .price__item .price__item-title {
  font-size: 3.2rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 770px) {
  .price__container .price__item .price__item-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 590px) {
  .price__container .price__item .price__item-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 400px) {
  .price__container .price__item .price__item-title {
    font-size: 2rem;
  }
}
.price__container .price__item .price__item-cost {
  font-size: 4rem;
  font-weight: 600;
  padding: 30px 0;
}
@media screen and (max-width: 590px) {
  .price__container .price__item .price__item-cost {
    font-size: 3rem;
  }
}
@media screen and (max-width: 400px) {
  .price__container .price__item .price__item-cost {
    font-size: 2.6rem;
  }
}
.price__container .price__item .price__item-table {
  font-size: 2rem;
  margin: 0 auto;
  padding-bottom: 45px;
}
.price__container .price__item .price__item-table th {
  padding: 0 20px 15px 0;
}
@media screen and (max-width: 590px) {
  .price__container .price__item .price__item-table th {
    padding: 0 15px 5px 0;
  }
}
@media screen and (max-width: 400px) {
  .price__container .price__item .price__item-table th {
    padding: 0 0 10px 0;
  }
}
@media screen and (max-width: 590px) {
  .price__container .price__item .price__item-table {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 400px) {
  .price__container .price__item .price__item-table tr {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 15px;
  }
}
.price__container .price__item .price__item-note {
  font-size: 1.6rem;
  padding: 30px 0;
}
@media screen and (max-width: 770px) {
  .price__container .price__item .price__item-note {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 590px) {
  .price__container .price__item .price__item-note {
    font-size: 1.2rem;
  }
}
.price__container .price__item ul {
  text-align: left;
  font-size: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 400px) {
  .price__container .price__item ul {
    font-size: 1.6rem;
    gap: 15px;
  }
}

.about__item {
  position: relative;
  display: flex;
  padding-bottom: 80px;
}
@media screen and (max-width: 920px) {
  .about__item:nth-last-of-type(2) {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 770px) {
  .about__item {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
}
.about__item .about__item-photo1 {
  width: 300px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 770px) {
  .about__item .about__item-photo1 {
    margin: 0 auto;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 400px) {
  .about__item .about__item-photo1 {
    width: auto;
  }
}
.about__item .about__profile {
  padding-left: 50px;
}
@media screen and (max-width: 770px) {
  .about__item .about__profile {
    padding-left: 0;
  }
}
.about__item .about__profile .name {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  padding-bottom: 50px;
}
@media screen and (max-width: 770px) {
  .about__item .about__profile .name {
    text-align: center;
  }
}
.about__item .about__profile .about__text-1 {
  font-size: 1.6rem;
  line-height: 4rem;
  letter-spacing: 0.1rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 770px) {
  .about__item .about__profile .about__text-1 {
    width: 90%;
    margin: 0 auto;
    letter-spacing: 0;
  }
}
.about__item .about__message-name img {
  width: 15%;
  position: absolute;
  z-index: 10;
  left: 25%;
  top: 200px;
}
@media screen and (max-width: 770px) {
  .about__item .about__message-name img {
    left: 65%;
    top: 250px;
  }
}
.about__item .about__text-2 {
  font-size: 1.6rem;
  line-height: 4rem;
  letter-spacing: 0.1rem;
  height: auto;
  position: relative;
  z-index: 5;
  padding-top: 50px;
}
@media screen and (max-width: 770px) {
  .about__item .about__text-2 {
    width: 90%;
    height: auto;
    margin: 0 auto;
    font-size: 1.5rem;
    padding-top: 20px;
  }
}
.about__item .about__item-photo2 {
  width: 80%;
  order: 2;
  position: absolute;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 770px) {
  .about__item .about__item-photo2 {
    bottom: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .about__item .about__item-photo2 {
    bottom: -50px;
  }
}

.about__skill-wrapper {
  background-image: url("../img/bgi_diagmonds747474.png");
  color: #fff;
  display: flex;
  gap: 2.5rem;
  padding: 25px 65px;
  justify-content: space-between;
  margin: 100px 0;
}
@media screen and (max-width: 770px) {
  .about__skill-wrapper {
    padding: 25px;
    flex-direction: column;
    width: 90%;
    margin: 50px auto 100px;
  }
}
@media screen and (max-width: 400px) {
  .about__skill-wrapper {
    margin: 100px auto;
  }
}
.about__skill-wrapper .about__skill-item {
  width: 300px;
}
@media screen and (max-width: 770px) {
  .about__skill-wrapper .about__skill-item {
    width: 100%;
  }
}

.about__skill-item:not(:last-of-type) {
  border-right: 0.5px solid #ffffff;
}
@media screen and (max-width: 770px) {
  .about__skill-item:not(:last-of-type) {
    border-bottom: 0.5px solid #ffffff;
    border-right: none;
    padding-bottom: 20px;
  }
}

.about__skill-item-title {
  font-size: 2rem;
  padding-bottom: 15px;
}
@media screen and (max-width: 770px) {
  .about__skill-item-title {
    font-size: 1.6rem;
  }
}

.about__skill-item-description {
  font-size: 1.6rem;
}
@media screen and (max-width: 770px) {
  .about__skill-item-description {
    font-size: 1.4rem;
  }
}

.contact {
  background-image: url("../img/bgi_diagmonds747474.png");
  color: #fff;
  padding-bottom: 100px;
}

@media screen and (max-width: 400px) {
  .contact__title {
    letter-spacing: 0.4rem;
  }
}

.contact__text {
  font-size: 2.4rem;
  letter-spacing: 0.6rem;
  line-height: 3.5rem;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 770px) {
  .contact__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 590px) {
  .contact__text {
    font-size: 1.4rem;
    padding-bottom: 50px;
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 400px) {
  .contact__text {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}

.btn__form {
  color: #fff;
  border: 1px solid #fff;
  width: 380px;
}
@media screen and (max-width: 590px) {
  .btn__form {
    width: 330px;
  }
}
@media screen and (max-width: 400px) {
  .btn__form {
    width: 260px;
    font-size: 1.6rem;
  }
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 150px;
  max-width: 1100px;
  margin: 0 auto;
}
.works__list:first-child {
  padding-top: 50px;
}
@media screen and (max-width: 1100px) {
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 770px) {
  .works__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}

.works__list-item {
  width: 100%;
  height: 350px;
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.3);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .works__list-item {
    height: auto;
  }
}

.works__list-item img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 1s ease;
}
.works__list-item img:hover {
  filter: grayscale(0%);
}

.btn__top {
  color: #333333;
  border: 1px solid #333333;
  width: 300px;
}
@media screen and (max-width: 590px) {
  .btn__top {
    width: 250px;
  }
}

.single-works__item img {
  width: 100%;
  height: auto;
  margin: 100px 0;
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 590px) {
  .single-works__item img {
    margin: 50px 0;
  }
}

.single-works__title {
  padding: 20px 0;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 590px) {
  .single-works__title {
    font-size: 1.8rem;
  }
}

.single-works__tag {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
  gap: 5px;
  font-size: 1.4rem;
}
.single-works__tag .nLinkTag {
  background-color: rgba(51, 51, 51, 0.1);
  padding: 3px 10px;
  border-radius: 5px;
}

.single-works__description {
  padding-bottom: 150px;
}
@media screen and (max-width: 590px) {
  .single-works__description {
    padding-bottom: 80px;
  }
}

.single-works__description-list {
  display: flex;
  gap: 10px;
  padding-bottom: 25px;
}
.single-works__description-list:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 770px) {
  .single-works__description-list {
    flex-direction: column;
    gap: 5px;
  }
}
.single-works__description-list .single-works__description-title {
  font-size: 2rem;
  width: 30%;
  font-weight: 500;
}
@media screen and (max-width: 770px) {
  .single-works__description-list .single-works__description-title {
    width: 100%;
    font-size: 1.6rem;
  }
}
.single-works__description-list .single-works__description-text {
  font-size: 1.6rem;
  width: 70%;
  line-height: 4rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 770px) {
  .single-works__description-list .single-works__description-text {
    width: 100%;
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

.single-works__description-text.note {
  display: block;
  margin-left: 0;
  padding-left: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 770px) {
  .single-works__description-text.note {
    font-size: 1.2rem;
  }
}

.contact__form {
  margin: 0 auto;
}

.contact__heading {
  font-size: 1.8rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 590px) {
  .contact__heading {
    font-size: 1.6rem;
  }
}
.contact__heading span {
  font-size: 1.2rem;
  background-color: #debbc4;
  color: #333333;
  padding: 2px 10px;
  border-radius: 5px;
  margin-left: 15px;
}
@media screen and (max-width: 590px) {
  .contact__heading span {
    font-size: 1rem;
  }
}

.contact__item {
  margin-bottom: 30px;
}

.contact__type {
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  color: #333333;
}

.contact__type-textarea {
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 250px;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px;
  color: #333333;
}

.contact__type-select {
  margin-bottom: 30px;
}
.contact__type-select label {
  font-size: 1.8rem;
  font-weight: 300;
}

.wpcf7-list-item-label {
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 160%;
  letter-spacing: 0.7px;
  position: relative;
}
@media screen and (max-width: 590px) {
  .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
}
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 18px;
  height: 18px;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  -o-border-image: initial;
     border-image: initial;
  border-radius: 3.5px;
}
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 5px;
  height: 15px;
  rotate: 45deg;
  opacity: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: opacity 0.3s;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1 !important;
}

.contact__textbox,
.contact-textarea {
  font-size: 2rem;
  width: 100%;
  height: 100%;
}

.contact__select-item {
  background-color: #fff;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px;
  color: #333333;
  font-size: 2rem;
}

.contact__privacy .contact__privacy-text {
  font-size: 1.8rem;
  font-weight: 300;
  padding: 0 0 30px;
}
@media screen and (max-width: 590px) {
  .contact__privacy .contact__privacy-text {
    font-size: 1.6rem;
  }
}
.contact__privacy label {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 590px) {
  .contact__privacy label {
    font-size: 1.6rem;
  }
}

.contact__submit {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  text-align: center;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  padding: 12px 40px;
  color: #fff;
  border: 1px solid #fff;
  width: 300px;
  position: relative;
  transition: color 0.4s, border-color 0.4s;
  text-transform: uppercase;
  overflow: hidden;
}
@media screen and (max-width: 590px) {
  .contact__submit {
    font-size: 2rem;
    padding: 12px 30px;
  }
}
@media screen and (max-width: 400px) {
  .contact__submit {
    font-size: 1.8rem;
    width: 260px;
  }
}
.contact__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #debbc4;
  transition: left 0.4s ease;
  z-index: 0;
}
.contact__submit input {
  padding-bottom: 5px;
  width: auto;
}
.contact__submit .arrow {
  position: relative;
  z-index: 1;
  width: auto;
}
.contact__submit:hover {
  color: #fff;
}
.contact__submit:hover::before {
  left: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  padding-top: 15px;
  font-size: 1.6rem;
}

.wpcf7-spinner {
  display: none !important;
}

.sakura {
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sakura li {
  overflow: hidden;
  width: 100%;
  position: absolute;
  list-style: none;
  top: 0;
  animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 770px) {
  .sakura li img {
    width: 5%;
  }
}

@keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}
@keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
.sakura li:nth-child(1) {
  left: 0;
  animation: fall 15s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(2) {
  left: 5vw;
  animation: fall 20s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.sakura li:nth-child(3) {
  left: 15vw;
  animation: fall 14s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(4) {
  left: 30vw;
  animation: fall 13s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(5) {
  left: 40vw;
  animation: fall 15s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(6) {
  left: 55vw;
  animation: fall 16s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(7) {
  left: 65vw;
  animation: fall 12s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(10) {
  left: 50vw;
  animation: fall 12s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(11) {
  left: 0;
  animation: fall 15s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(12) {
  left: 5vw;
  animation: fall 20s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.sakura li:nth-child(13) {
  left: 15vw;
  animation: fall 14s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(14) {
  left: 30vw;
  animation: fall 13s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(15) {
  left: 40vw;
  animation: fall 15s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(16) {
  left: 55vw;
  animation: fall 16s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(17) {
  left: 65vw;
  animation: fall 12s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(18) {
  left: 50vw;
  animation: fall 12s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-img {
  animation: rotate 25s linear infinite;
}

.works__swiper-container {
  overflow: hidden;
  max-width: 1300px;
}

.swiper {
  width: 100%;
  height: 500px;
  max-width: 1200px; /* 必要なら調整、例えば1000pxとか */
  margin: 0 auto; /* 中央寄せ */
  position: relative; /* ボタン位置調整のため必要 */
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 590px) {
  .swiper {
    margin-bottom: 0;
  }
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: 360px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 590px) {
  .swiper-slide {
    width: 300px;
  }
}
@media screen and (max-width: 400px) {
  .swiper-slide {
    width: 250px;
  }
}

.swiper-slide-inner {
  margin: 10px;
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.3);
}
.swiper-slide-inner img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 1s ease;
}
.swiper-slide-inner img:hover {
  filter: grayscale(0%);
}

/* 矢印のデフォルトスタイル消す */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* ナビボタン（カスタム） */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  top: 50%;
}

/* ボタンの位置調整 */
.swiper-button-prev {
  left: 0; /* swiperの外側にちょっと出す */
}

.swiper-button-next {
  right: 0;
}/*# sourceMappingURL=style.css.map */