@charset "UTF-8";
共通 html {
  scroll-behavior: smooth;
}

.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  vertical-align: baseline;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "League Spartan", "Satisfy", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .inner {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    margin-inline: auto;
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media screen and (min-width: 900px) {
  .inner {
    padding-left: 25px;
    padding-right: 0;
    margin-inline: auto;
  }
}

.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  margin-inline: auto;
  background: #FAFAFA;
  width: 100%;
  height: 90px;
}

.header__inner {
  max-width: 100%;
  height: inherit;
  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 (min-width: 900px) {
  .header__inner {
    max-width: 1512px;
    margin-inline: auto;
  }
}

.header__logo a img {
  display: block;
  width: 80px;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 150px;
  }
}

.header__works-inner {
  max-width: 100%;
  height: inherit;
  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 (min-width: 900px) {
  .header__works-inner {
    max-width: 1512px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav {
  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;
  text-align: right;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__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;
    gap: 15px;
  }
}

.header__link {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-right: 10px;
}
.header__link:hover {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #333;
  text-underline-offset: 4px;
  -webkit-transition: color 0.3s, text-decoration-color 0.2s;
  transition: color 0.3s, text-decoration-color 0.2s;
}

.button {
  display: inline-block;
  padding: 34px 25px 34px 25px;
  text-align: center;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  background: #333;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #333;
  background: linear-gradient(181deg, #FBED96 -26.86%, #ABECD6 99.05%);
}

@media screen and (min-width: 900px) {
  .header__button {
    max-width: 150px;
    height: 90px;
  }
}

.header__button:hover {
  color: #000;
  background: var(--, linear-gradient(181deg, #FBED96 -26.86%, #ABECD6 99.05%));
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 32px;
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #333333;
  -webkit-transition: top 0.6s, -webkit-transform 0.6s;
  transition: top 0.6s, -webkit-transform 0.6s;
  transition: top 0.6s, transform 0.6s;
  transition: top 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.drawer-icon__bar:nth-of-type(1) {
  width: 32px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-content {
  display: none;
  position: fixed;
  right: 0;
  top: 90px;
  z-index: 49;
  width: 100%;
  height: 100%;
  padding: 85px 40px;
  background-color: #FAFAFA;
}
.drawer-content.is-checked {
  display: block;
}

.drawer-content__link {
  display: block;
  width: 245px;
  padding-block: 20px;
  margin: 15px 40px 0 25px;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid #333;
}

.drawer-content__button {
  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: 30px;
}

.drawer-content__button .button {
  display: block;
  width: 245px;
  padding: 15px 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  text-align: center;
}
.drawer-content__button .button a {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12.529px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.376px;
}

.fv {
  position: relative;
  margin-inline: auto;
  margin-top: 90px;
  min-width: 375px;
  height: 650px;
}
@media screen and (min-width: 900px) {
  .fv {
    max-width: 1512px;
    height: 110vh;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    height: 100vh;
  }
}

.fv__inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 375px;
  height: 650px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    width: 770px;
    height: 100vh;
    padding-inline: 0;
  }
}
@media screen and (min-width: 900px) {
  .fv__inner {
    width: 110%;
    height: 100vh;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fv__inner {
    width: 1440px;
    padding-inline: 0;
  }
}

.fv__main-title {
  color: #333;
  font-family: "League Spartan";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
  letter-spacing: 1.1px;
  text-align: left;
  text-transform: uppercase;
  margin-top: 90px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .fv__main-title {
    position: absolute;
    top: -50px;
    left: 30px;
    font-size: 46px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 2.3px;
  }
}
@media screen and (min-width: 900px) {
  .fv__main-title {
    position: absolute;
    top: 480px;
    left: 100px;
    font-size: 46px;
    font-weight: 700;
    line-height: 130%; /* 59.8px */
    letter-spacing: 2.3px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__main-title {
    position: absolute;
    top: 400px;
    left: 100px;
    font-size: 46px;
    font-weight: 700;
    line-height: 130%; /* 59.8px */
    letter-spacing: 2.3px;
  }
}

.fv__sub-title {
  color: #333;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-right: 20px;
  margin-top: 70px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .fv__sub-title {
    position: absolute;
    top: 420px;
    right: 20px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 900px) {
  .fv__sub-title {
    position: absolute;
    top: 500px;
    right: -100px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1200px) {
  .fv__sub-title {
    position: absolute;
    top: 450px;
    right: 200px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

.fv__back-image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__back-image {
    position: relative;
  }
}
@media screen and (min-width: 900px) {
  .fv__back-image {
    position: relative;
    width: 1245px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__back-image {
    position: relative;
    width: 1335px;
  }
}

.fv__back-image img {
  position: absolute;
  width: 330px;
  height: 144px;
  top: -120px;
  left: -20px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .fv__back-image img {
    position: absolute;
    width: 745px;
    height: 144px;
    top: -120px;
    left: -20px;
    z-index: 0;
  }
}
@media screen and (min-width: 900px) {
  .fv__back-image img {
    position: absolute;
    width: 1255px;
    height: 288px;
    top: -245px;
    left: 55px;
    z-index: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fv__back-image img {
    position: absolute;
    width: 1338px;
    height: 280px;
    top: -300px;
    left: 10px;
    z-index: 0;
  }
}

.fv__back-image2 {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__back-image2 {
    position: relative;
    z-index: 10;
  }
}
@media screen and (min-width: 900px) {
  .fv__back-image2 {
    position: relative;
    z-index: 20;
  }
}

.fv__back-image2 img {
  position: absolute;
  width: 133px;
  height: 177px;
  top: -150px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .fv__back-image2 img {
    position: absolute;
    width: 150px;
    height: 200px;
    top: -165px;
    right: 10px;
  }
}
@media screen and (min-width: 900px) {
  .fv__back-image2 img {
    position: absolute;
    width: 260px;
    height: 344px;
    top: -290px;
    right: -260px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__back-image2 img {
    position: absolute;
    width: 260px;
    height: 344px;
    top: -350px;
    right: 50px;
  }
}

.fv__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 792px;
  margin-top: 85px;
  position: relative;
  right: 500px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    margin-top: 250px;
    margin-left: 20px;
    position: relative;
    z-index: 1;
    right: 15px;
  }
}
@media screen and (min-width: 900px) {
  .fv__image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1220px;
    position: relative;
    z-index: 1;
    right: -33px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__image-container {
    position: relative;
    top: -60px;
    left: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1338px;
    z-index: 1;
  }
}

.fv__image-container img {
  width: 198px;
  height: 146px;
  -webkit-animation: image01 4.5s ease-in-out infinite alternate;
          animation: image01 4.5s ease-in-out infinite alternate;
}
@media screen and (min-width: 900px) {
  .fv__image-container img {
    width: 325px;
    height: 240px;
    -webkit-animation: image01 4.5s ease-in-out infinite alternate;
            animation: image01 4.5s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes image01 {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes image01 {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.fv__scrolldown {
  display: none;
}
@media screen and (min-width: 900px) {
  .fv__scrolldown {
    display: block;
    position: absolute;
    bottom: 110px;
    right: -350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1200px) {
  .fv__scrolldown {
    display: block;
    position: absolute;
    bottom: 250px;
    right: 3.2258064516%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fv__scrolldown-text {
  font-size: 16px;
  font-style: normal;
  font-family: "League Spartan";
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 5px;
  margin-bottom: 25px;
}

.fv__scrolldown-bar {
  position: relative;
}
.fv__scrolldown-bar span {
  display: inline-block;
}
.fv__scrolldown-bar .bar {
  width: 2px;
  height: 70px;
  background: #000;
}
.fv__scrolldown-bar .circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background: #000;
  border-radius: 50%;
  -webkit-animation: 2s ease-in-out backwards infinite scrollDown;
          animation: 2s ease-in-out backwards infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 60px;
  }
  100% {
    top: 60px;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 60px;
  }
  100% {
    top: 60px;
  }
}

.about {
  position: relative;
  background: #333 url(../img/sp/about-bigAcon-sp.png) no-repeat left bottom/contain;
}
@media screen and (min-width: 768px) {
  .about {
    background: #333 url(../img/about-big_arrow.png) no-repeat left top/contain;
    width: 770px;
    height: 790px;
  }
}
@media screen and (min-width: 900px) {
  .about {
    background: #333 url(../img/about-big_arrow.png) no-repeat left top/contain;
    width: 1440px;
    height: 694px;
  }
}

.about__wrap {
  max-width: unset;
  width: 100%;
  height: 790px;
}
@media screen and (min-width: 768px) {
  .about__wrap {
    width: 770px;
    height: 790px;
  }
}
@media screen and (min-width: 900px) {
  .about__wrap {
    width: 1000px;
    height: 694px;
    padding-inline: 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__wrap {
    width: 1440px;
    height: 694px;
    padding-inline: 0;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  top: 160px;
  left: 235px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .heading {
    position: absolute;
    top: 0;
    left: 500px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (min-width: 900px) {
  .heading {
    position: absolute;
    top: 0;
    left: 875px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.heading__title {
  color: #575757;
  font-family: "League Spartan";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 62px */
  letter-spacing: 3.1px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .heading__title {
    color: #575757;
    font-family: "League Spartan";
    font-size: 132px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 132px */
    letter-spacing: 6.6px;
    text-transform: uppercase;
  }
}

.heading img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36.667px;
  height: 44px;
  margin: -15px 10px 0px 0;
}
@media screen and (min-width: 900px) {
  .heading img {
    width: 63.25px;
    height: 75.44px;
    margin: 0 30px 18px 0;
  }
}

.scroll-fade-up {
  scale: 0;
  -webkit-transform: translateY(250px);
          transform: translateY(250px);
  -webkit-transition: scale 0.8s, -webkit-transform 1s;
  transition: scale 0.8s, -webkit-transform 1s;
  transition: scale 0.8s, transform 1s;
  transition: scale 0.8s, transform 1s, -webkit-transform 1s;
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.scroll-fade-up.is-in-view {
  scale: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.about__text {
  padding: 160px 20px 160px 20px;
}
@media screen and (min-width: 768px) {
  .about__text {
    padding: 175px 30px 0px 10px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text {
    padding: 60px 75px 0px 100px;
  }
}

@media screen and (min-width: 768px) {
  .about__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .about__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 50px;
  }
}

.about__text-container02 {
  width: 290px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about__text-container02 {
    width: 370px;
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
}

.about__main-title {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.64px;
  text-transform: uppercase;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about__main-title {
    width: 385px;
    height: 152px;
    font-size: 24px;
    line-height: 180%; /* 75.6px */
    letter-spacing: 4.62px;
  }
}
@media screen and (min-width: 900px) {
  .about__main-title {
    width: 500px;
    height: 152px;
    font-size: 42px;
    line-height: 180%; /* 75.6px */
    letter-spacing: 4.62px;
    margin-right: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__main-title {
    width: 500px;
    font-size: 42px;
    line-height: 180%; /* 75.6px */
    letter-spacing: 4.62px;
    margin-right: 100px;
  }
}

.about__sub-title01 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  text-transform: none;
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .about__sub-title01 {
    font-size: 14px;
    line-height: 200%; /* 32px */
    letter-spacing: 0.8px;
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .about__sub-title01 {
    font-size: 14px;
    line-height: 200%; /* 32px */
    letter-spacing: 0.8px;
    width: 370px;
    text-align: left;
  }
}

.about__sub-title02 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  text-transform: none;
  margin-top: 40px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .about__sub-title02 {
    font-size: 14px;
    line-height: 200%; /* 32px */
    letter-spacing: 0.8px;
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .about__sub-title02 {
    font-size: 14px;
    line-height: 200%; /* 32px */
    letter-spacing: 0.8px;
    width: 370px;
    text-align: left;
  }
}

.works {
  position: relative;
  width: unset;
  height: 1059px;
  background: url("../img/sp/works_back-sp.png") no-repeat right top/contain;
}
@media screen and (min-width: 768px) {
  .works {
    background: url("../img/works-backimage.png") no-repeat right top/contain;
    position: relative;
    width: 100%;
    height: 1040px;
  }
}
@media screen and (min-width: 900px) {
  .works {
    background: url("../img/works-backimage.png") no-repeat right top/contain;
    position: relative;
    max-width: 1440px;
    width: 141%;
    height: 1040px;
  }
}

.works__inner {
  padding-inline: 0;
}

.heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (min-width: 900px) {
  .heading2 {
    position: absolute;
    top: 250px;
    left: -230px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.heading2 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36.667px;
  height: 44px;
  margin: -15px 10px 0px 0;
}
@media screen and (min-width: 900px) {
  .heading2 img {
    width: 63.25px;
    height: 75.44px;
    margin: 0 30px 18px 0;
  }
}

.works__headline {
  padding-top: 120px;
  padding-inline: 20px;
  padding-bottom: 100px;
}
@media screen and (min-width: 900px) {
  .works__headline {
    padding-top: 120px;
    padding-left: 200px;
    padding-bottom: 100px;
  }
}

.works-head__title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 39.6px */
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .works-head__title {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 46.8px */
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
}

.works-head__text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .works-head__text {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }
}

.works__content {
  text-align: center;
}

.works__gallery {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0;
  padding-left: 25px;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .works__gallery {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 900px) {
  .works__gallery {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    padding-left: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .works__gallery {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    padding-left: 160px;
  }
}

.gallery__slider {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .gallery__slider {
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) {
  .gallery__swiper {
    position: relative;
  }
}

.gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: flex-start;
          flex-direction: flex-start;
}

.gallery-card {
  max-width: 325px;
  background: #333;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.08);
  min-height: 395px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .gallery-card {
    max-height: 395px;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-card {
    max-height: 395px;
    height: 100%;
  }
}

.gallery-card__image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.gallery-card__image img {
  width: 100%;
  height: 240px;
}
@media screen and (min-width: 900px) {
  .gallery-card__image img {
    max-height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-card__image img {
    max-height: 240px;
  }
}

.gallery-card__image img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.gallery-card__content {
  max-width: 325px;
  padding: 15px;
}
@media screen and (min-width: 900px) {
  .gallery-card__content {
    max-height: 126px;
    padding: 15px;
  }
}

.gallery-card__title {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border: 1px solid #FAFAFA;
  padding: 0 1px;
}
@media screen and (min-width: 900px) {
  .gallery-card__title {
    font-size: 12px;
  }
}

.gallery-card__text {
  overflow: hidden;
  color: #FAFAFA;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .gallery-card__text {
    margin-top: 12px;
    padding-inline: 12px;
    font-size: 14px;
  }
}

.gallery__pagination {
  display: none;
}

.works__bottom {
  padding-inline: 30px;
  max-width: 1084px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .works__bottom {
    padding-inline: 30px;
    max-width: 1084px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .works__bottom {
    padding-inline: 30px;
    max-width: 1084px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .works__bottom {
    margin-top: 64px;
    padding-inline: 30px;
    max-width: 1084px;
    margin-inline: auto;
  }
}

.works__navigation-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 115px;
  height: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .works__navigation-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 120px;
    height: 50px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .works__navigation-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 120px;
    height: 50px;
    margin-inline: auto;
  }
}

.gallery__prev,
.gallery__next {
  z-index: 10;
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}

.gallery__prev {
  position: absolute;
  background: url(../img/slider-arrow01.png) no-repeat center center/contain;
  width: 41px;
  height: 41px;
}
@media screen and (min-width: 900px) {
  .gallery__prev {
    position: absolute;
    background: url(../img/slider-arrow01.png) no-repeat center center/contain;
    width: 41px;
    height: 41px;
    top: -10px;
    left: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery__prev {
    position: absolute;
    background: url(../img/slider-arrow01.png) no-repeat center center/contain;
    width: 41px;
    height: 41px;
    top: -80px;
    left: 450px;
  }
}

.gallery__next {
  position: absolute;
  background: url(../img/slider-arrow02.png) no-repeat center center/contain;
  width: 41px;
  height: 41px;
}
@media screen and (min-width: 900px) {
  .gallery__next {
    position: absolute;
    background: url(../img/slider-arrow02.png) no-repeat center center/contain;
    width: 41px;
    height: 41px;
    top: -10px;
    left: 520px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery__next {
    position: absolute;
    background: url(../img/slider-arrow02.png) no-repeat center center/contain;
    width: 41px;
    height: 41px;
    top: -80px;
    left: 520px;
  }
}

.works__button {
  position: relative;
  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: 60px;
}
.works__button ::after {
  position: absolute;
  top: 55px;
  right: 0;
  width: 50px;
  height: 2px;
  background: #333;
  content: "";
}

@media screen and (min-width: 768px) {
  .works__button {
    position: relative;
    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: 60px;
  }
  .works__button ::after {
    position: absolute;
    top: 55px;
    right: 185px;
    width: 50px;
    height: 2px;
    background: #333;
    content: "";
  }
}
@media screen and (min-width: 900px) {
  .works__button {
    position: relative;
    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: 60px;
  }
  .works__button ::after {
    position: absolute;
    top: 55px;
    right: 350px;
    width: 50px;
    height: 2px;
    background: #333;
    content: "";
  }
}

.works__button .button {
  display: block;
  width: 285px;
  padding: 15px 50px 15px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  text-align: center;
  border: 1px solid #333;
}

.works__button a {
  color: #333333;
  background-color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12.529px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.376px;
}

.services {
  background: url("../img/sp/services_back-sp.png") no-repeat right top/contain;
  position: relative;
  max-width: unset;
  width: 100%;
  height: 2450px;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .services {
    background: url("../img/services~profile-back01.png") no-repeat right top/contain;
    position: relative;
    max-width: 770px;
    width: 100%;
    height: 1720px;
  }
}
@media screen and (min-width: 900px) {
  .services {
    background: url("../img/services~profile-back01.png") no-repeat right top/contain;
    position: relative;
    max-width: 1440px;
    width: 141%;
    height: 2100px;
  }
}
@media screen and (min-width: 1200px) {
  .services {
    background: url("../img/services~profile-back01.png") no-repeat right top/contain;
    position: relative;
    max-width: 1440px;
    width: 100%;
    height: 2200px;
  }
}

.services__wrap {
  width: 100%;
  height: 976px;
}
@media screen and (min-width: 900px) {
  .services__wrap {
    width: 1440px;
    height: 976px;
  }
}
@media screen and (min-width: 1200px) {
  .services__wrap {
    width: 1440px;
    height: 1100px;
  }
}

.heading-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.heading-services img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.333px;
  height: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .heading-services img {
    width: 63.25px;
    height: 75.44px;
  }
}

.services__text {
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .services__text {
    margin-top: 0px;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .services__text {
    margin: 100px 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.services__text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 375px;
  padding: 0px 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .services__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    padding: 50px 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .services__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    padding: 50px 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.services__main-title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .services__main-title {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }
}

.services__container {
  max-width: 375px;
  width: 100%;
  height: 496px;
}
@media screen and (min-width: 768px) {
  .services__container {
    max-width: 770px;
    width: 100%;
    height: 639px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .services__container {
    max-width: 1435px;
    width: 100%;
    height: 639px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .services__container {
    max-width: 1440px;
    width: 100%;
    height: 639px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.services__content01 {
  -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;
  width: 375px;
  height: 496px;
}
@media screen and (min-width: 900px) {
  .services__content01 {
    max-width: 720px;
    width: 100%;
    height: 639px;
  }
}
@media screen and (min-width: 1200px) {
  .services__content01 {
    max-width: 750px;
    width: 100%;
    height: 639px;
  }
}

.service__content-image01 img {
  width: 100%;
  height: 100%;
}

.services__text-section01 {
  width: 328px;
  height: 303px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-left: 2px solid #333;
  margin-left: 20px;
}
@media screen and (min-width: 900px) {
  .services__text-section01 {
    width: 480px;
    height: 293px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-left: 2px solid #333;
    margin-left: 100px;
  }
}

.services__text-section02 {
  width: 328px;
  height: 303px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-left: 2px solid #333;
  margin-left: 20px;
}
@media screen and (min-width: 900px) {
  .services__text-section02 {
    width: 480px;
    height: 293px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-left: 2px solid #333;
    margin-left: -83px;
  }
}

.services__text-horder {
  padding: 30px 0;
  margin-left: 25px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .services__text-horder {
    padding: 40px 0;
    margin-left: 30px;
    text-align: left;
  }
}

.services__head {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 39.6px */
  letter-spacing: 1.1px;
}
@media screen and (min-width: 900px) {
  .services__head {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 46.8px */
    letter-spacing: 1.3px;
  }
}

.services__description {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 900px) {
  .services__description {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.7px;
  }
}

.profile__section {
  position: relative;
  width: 100%;
}

.profile__wrap {
  width: 375px;
  padding-top: 500px;
  padding-bottom: 200px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .profile__wrap {
    width: 1024px;
    padding: 140px 80px 140px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__wrap {
    width: 1440px;
    padding: 140px 80px 140px 0px;
  }
}

.heading-profile {
  position: absolute;
  top: 350px;
  right: 5px;
  width: 348.677px;
  height: 131px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .heading-profile {
    color: #000;
    position: absolute;
    top: -125px;
    right: 0;
    height: 339.24px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (min-width: 900px) {
  .heading-profile {
    position: absolute;
    top: 150px;
    right: 0;
    width: 900px;
    height: 339.24px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .heading-profile {
    position: absolute;
    top: 40px;
    right: 0;
    width: 898.371px;
    height: 339.24px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.profile__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 375px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .profile__container {
    position: relative;
    top: -650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 900px) {
  .profile__container {
    position: relative;
    width: 900px;
    height: 440px;
    top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .profile__container {
    position: relative;
    width: 1360px;
    height: 440px;
    top: 0;
  }
}

.profile__content {
  position: absolute;
  width: 375px;
  top: 50px;
  height: 625px;
}
@media screen and (min-width: 768px) {
  .profile__content {
    position: absolute;
    width: 768px;
    height: 440px;
    top: 144px;
    left: -440px;
  }
}
@media screen and (min-width: 900px) {
  .profile__content {
    position: absolute;
    width: 1440px;
    height: 440px;
    top: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__content {
    position: absolute;
    width: 1440px;
    height: 440px;
    top: 260px;
  }
}

.profile__grad-back {
  position: absolute;
  width: 335px;
  top: 120px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .profile__grad-back {
    position: absolute;
    top: 105px;
    left: 242px;
    width: 620px;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .profile__grad-back {
    position: absolute;
    top: 120px;
    left: -210px;
    width: 1440px;
    height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__grad-back {
    position: absolute;
    top: 120px;
    left: 0;
    width: 1420px;
    height: 240px;
  }
}

.profile__grad-back img {
  width: 100%;
  height: 240px;
}
@media screen and (min-width: 768px) {
  .profile__grad-back img {
    width: 100%;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .profile__grad-back img {
    width: 100%;
    height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__grad-back img {
    width: 100%;
    height: 240px;
  }
}

.profile__back {
  position: absolute;
  width: 315px;
  top: 100px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .profile__back {
    position: absolute;
    top: 85px;
    left: 242px;
    width: 600px;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .profile__back {
    position: absolute;
    top: 100px;
    left: -210px;
    width: 1445px;
    height: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__back {
    position: absolute;
    top: 100px;
    left: 0;
    width: 1420px;
    height: 240px;
  }
}

.profile__back img {
  width: 100%;
  height: 240px;
}
@media screen and (min-width: 768px) {
  .profile__back img {
    width: 100%;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .profile__back img {
    width: 98%;
    height: 240px;
  }
}

.profile__box {
  position: absolute;
  top: 50px;
  left: 15px;
  width: 345px;
  height: 700px;
}
@media screen and (min-width: 768px) {
  .profile__box {
    position: absolute;
    top: 150px;
    left: -70px;
  }
}
@media screen and (min-width: 900px) {
  .profile__box {
    position: absolute;
    top: 365px;
    left: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__box {
    position: absolute;
    top: 340px;
    left: 150px;
  }
}

.profile__photo img {
  width: 165px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .profile__photo img {
    width: 200px;
    border-radius: 50%;
  }
}

.profile__name {
  position: absolute;
  top: 220px;
  left: 20px;
  width: 300px;
}
@media screen and (min-width: 900px) {
  .profile__name {
    position: absolute;
    top: 100px;
    left: 330px;
    width: 475px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__name {
    position: absolute;
    top: 100px;
    left: 350px;
    width: 475px;
  }
}

.profile__name-en {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .profile__name-en {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 72px */
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

.profile__name-ja {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .profile__name-ja {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 32.4px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
  }
}

.profile__text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  text-transform: none;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .profile__text {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
    text-transform: none;
    padding-top: 60px;
  }
}
@media screen and (min-width: 900px) {
  .profile__text {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
    text-transform: none;
    padding-top: 100px;
  }
}

.profile__slide-bigIcon {
  position: absolute;
  top: 200px;
  right: 10px;
  width: 130px;
  height: 170px;
}
@media screen and (min-width: 768px) {
  .profile__slide-bigIcon {
    position: absolute;
    top: 240px;
    right: -100px;
  }
}
@media screen and (min-width: 900px) {
  .profile__slide-bigIcon {
    position: absolute;
    top: 410px;
    right: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__slide-bigIcon {
    position: absolute;
    top: 365px;
    right: 320px;
  }
}

.profile__slide-bigIcon img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .profile__slide-bigIcon img {
    width: 100%;
    height: 220px;
  }
}

.scroll-fade-slide {
  opacity: 0;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  -webkit-transition: 2000ms;
  transition: 2000ms;
}
.scroll-fade-slide.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.parallax__inner {
  width: min(1115px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
  width: 100%;
  height: 400px;
}

.parallax {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1240/800;
  background: url(../img/photo_para_sun.jpg) no-repeat center center/cover;
}

.contact {
  max-width: unset;
  width: 100%;
  height: 296px;
  background: #333333;
}
@media screen and (min-width: 768px) {
  .contact {
    max-width: 770px;
    width: 100%;
    height: 320px;
    background: #333333;
  }
}
@media screen and (min-width: 900px) {
  .contact {
    margin: 0 auto;
    max-width: 1440px;
    width: 141%;
    height: 384px;
    background: #333333;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    height: 384px;
    background: #333333;
  }
}

.heading-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.heading-contact img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.333px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 10px 10px 0;
}
@media screen and (min-width: 900px) {
  .heading-contact img {
    width: 63.25px;
    height: 75.44px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 20px 18px 0;
  }
}
@media screen and (min-width: 1200px) {
  .heading-contact img {
    width: 63.25px;
    height: 75.44px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 40px 18px 0;
  }
}

.heading__title05 {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 58px */
  letter-spacing: 2.9px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .heading__title05 {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 132px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 132px */
    letter-spacing: 6.6px;
    text-transform: uppercase;
  }
}

.contact__button {
  position: relative;
  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: 46.5px;
}
.contact__button ::after {
  position: absolute;
  top: 30px;
  right: 0px;
  width: 50px;
  height: 2px;
  background: #fafafa;
  content: "";
}

@media screen and (min-width: 900px) {
  .contact__button {
    position: relative;
    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: 60px;
  }
  .contact__button ::after {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 50px;
    height: 2px;
    background: #fafafa;
    content: "";
  }
}

.contact__button .button {
  display: block;
  width: 262px;
  height: 58px;
  padding: 16px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 2px solid #FAFAFA;
  background-color: #333333;
}
.contact__button .button:hover {
  color: #000;
  background: var(--, linear-gradient(181deg, #FBED96 -26.86%, #ABECD6 99.05%));
}
@media screen and (min-width: 900px) {
  .contact__button .button {
    display: block;
    width: 429px;
    height: 92px;
    padding: 25px 100px 25px 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    border: 2px solid #FAFAFA;
    background-color: #333333;
  }
}

.contact__button a {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 900px) {
  .contact__button a {
    color: #FAFAFA;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 32.4px */
    letter-spacing: 0.9px;
  }
}

.contact__container {
  width: 295px;
  height: 270px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact__container {
    width: 680px;
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 900px) {
  .contact__container {
    width: 1110px;
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.contact-message {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 24px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .contact-message {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 24px */
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-top: 40px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 900px) {
  .contact-message {
    width: 485px;
    text-align: left;
    padding-top: 15px;
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }
}

.contact__sns {
  margin-top: 30px;
  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;
}

.contact__sns-link a {
  display: inline-block;
  width: 30px;
  height: auto;
  margin-right: 0;
}
@media (any-hover: hover) {
  .contact__sns-link a:hover {
    cursor: pointer;
    opacity: 0.3;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
  }
}
@media screen and (min-width: 900px) {
  .contact__sns-link a {
    width: 50px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .contact__sns-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 900px) {
  .contact__sns-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1200px) {
  .contact__sns-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer {
  background: #333333;
  width: unset;
  height: 315px;
}
@media screen and (min-width: 768px) {
  .footer {
    background: #333333;
    width: 770px;
    height: 315px;
  }
}
@media screen and (min-width: 900px) {
  .footer {
    background: #333333;
    width: 1440px;
    height: 330px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    background: #333333;
    width: 1440px;
    height: 220px;
  }
}

.footer__inner {
  width: 375px;
  padding: 40px 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 45px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    width: 770px;
    height: 315px;
    padding: 40px 25px;
  }
}
@media screen and (min-width: 900px) {
  .footer__inner {
    width: 1440px;
    height: 142px;
    padding: 40px 220px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    width: 1440px;
    height: 220px;
    padding: 40px 220px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .footer__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 900px) {
  .footer__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .footer__area02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 900px) {
  .footer__area02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav {
    margin-left: 150px;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .footer__list {
    width: 316px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.footer__item {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-top: 45px;
  margin-bottom: 45px;
}
.footer__item:hover {
  color: #FAFAFA;
  text-decoration: underline;
  text-decoration-color: #FAFAFA;
  text-underline-offset: 4px;
  -webkit-transition: color 0.3s, text-decoration-color 0.2s;
  transition: color 0.3s, text-decoration-color 0.2s;
}
@media screen and (min-width: 900px) {
  .footer__item {
    color: #FAFAFA;
    text-align: right;
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.footer__privacy-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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 (min-width: 900px) {
  .footer__privacy-box {
    width: 126px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__privacy {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 21.6px */
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .footer__privacy {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 21.6px */
    letter-spacing: 0.6px;
    margin-bottom: 0;
  }
}

.footer__small {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 18px */
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .footer__small {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 18px */
    letter-spacing: 0.5px;
    margin-left: 350px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 900px) {
  .footer__small {
    height: 22px;
    color: #FAFAFA;
    text-align: right;
    font-family: "League Spartan";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 21.6px */
    letter-spacing: 0.6px;
  }
}

.main__works {
  background: #FAFAFA;
  width: 375px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .main__works {
    background: #FAFAFA;
    width: 768px;
    height: auto;
  }
}
@media screen and (min-width: 900px) {
  .main__works {
    background: #FAFAFA;
    width: 1440px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .main__works {
    background: #FAFAFA;
    width: 1440px;
    height: auto;
  }
}

.works__logo a img {
  display: block;
  width: 80px;
}
@media screen and (min-width: 900px) {
  .works__logo a img {
    position: relative;
    top: 5px;
    left: 80px;
    width: 100px;
  }
}

.works__sub-inner {
  width: 375px;
  padding: 20px 25px 32px 25px;
  -webkit-box-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works__sub-inner {
    width: 670px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 900px) {
  .works__sub-inner {
    width: 697px;
    height: auto;
    padding-inline: 25px;
    margin-top: 50px;
  }
}

.works__sub-inner2 {
  width: 375px;
  padding: 20px 25px 30px 25px;
  -webkit-box-align: center;
}
@media screen and (min-width: 768px) {
  .works__sub-inner2 {
    width: 768px;
    padding: 0px 10px 20px 20px;
  }
}
@media screen and (min-width: 900px) {
  .works__sub-inner2 {
    width: 840px;
    padding-inline: 25px;
    margin: 0 auto;
  }
}

.works__sub-headline {
  width: 325px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .works__sub-headline {
    width: 670px;
  }
}
@media screen and (min-width: 900px) {
  .works__sub-headline {
    width: 697px;
  }
}

.works__main-title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 1px;
}
@media screen and (min-width: 900px) {
  .works__main-title {
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 43.2px */
    letter-spacing: 1.2px;
  }
}

.works__line {
  display: inline-block;
  width: 325px;
  height: 2px;
  background: #999;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .works__line {
    display: block;
    width: 630px;
    height: 2px;
    background: #999;
  }
}
@media screen and (min-width: 900px) {
  .works__line {
    display: block;
    width: 633px;
    height: 2px;
    background: #999;
    margin-top: 12px;
    text-align: start;
  }
}

.works__image {
  width: 325px;
  height: 210px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .works__image {
    width: 670px;
    height: auto;
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .works__image {
    width: 697px;
    height: auto;
    margin: 0 auto;
  }
}

.works__image img {
  width: 100%;
  max-width: 675px;
  margin: 40px 0px;
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .works__image img {
    width: 100%;
    max-width: 675px;
    margin: 40px 0px;
    margin: 40px 0px 40px 50px;
  }
}
@media screen and (min-width: 900px) {
  .works__image img {
    width: 200%;
    max-width: 840px;
    margin: 35px 300px;
    padding: 0 25px;
  }
}
@media screen and (min-width: 1200px) {
  .works__image img {
    width: 200%;
    max-width: 840px;
    margin: 35px 300px;
    padding: 0 25px;
  }
}

.works__caption {
  width: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .works__caption {
    width: 670px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 900px) {
  .works__caption {
    width: 1440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.caption-first {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 21.6px */
  border: 1px solid #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 25px;
  margin-right: 14px;
}
@media screen and (min-width: 768px) {
  .caption-first {
    margin-left: 75px;
  }
}
@media screen and (min-width: 900px) {
  .caption-first {
    margin-left: 325px;
  }
}

.caption-sec {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 21.6px */
  border: 1px solid #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px 12px;
  -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 (min-width: 768px) {
  .caption-sec {
    margin-left: 20px;
  }
}

.works__detail {
  padding: 20px 25px;
  margin: 20px auto;
  display: inline-grid;
}
@media screen and (min-width: 768px) {
  .works__detail {
    width: 768px;
    display: inline-grid;
    text-align: left;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 20px 25px;
    margin: 20px auto;
  }
}
@media screen and (min-width: 900px) {
  .works__detail {
    width: 1024px;
    display: inline-grid;
    text-align: left;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0 25px;
    margin: 20px auto;
  }
}
@media screen and (min-width: 1200px) {
  .works__detail {
    width: 1440px;
    display: inline-grid;
    text-align: left;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 0 25px;
    margin: 20px auto;
  }
}

.works__info {
  width: 375px;
  margin-top: 40px;
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .works__info {
    width: 670px;
    margin-top: 40px;
    padding: 0 0 0 70px;
  }
}
@media screen and (min-width: 900px) {
  .works__info {
    width: 670px;
  }
}

.works__detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.works__detail dt {
  width: 35%;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .works__detail dt {
    width: 35%;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
    margin-bottom: 15px;
  }
}

.works__detail dd {
  width: 65%;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
}
@media screen and (min-width: 900px) {
  .works__detail dd {
    width: 65%;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.7px;
  }
}

.works__desc {
  width: 375px;
  margin-top: 40px;
  padding: 0 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .works__desc {
    width: 670px;
    margin-top: 40px;
    padding: 0 70px 0 0;
  }
}
@media screen and (min-width: 900px) {
  .works__desc {
    width: 670px;
    margin-top: 40px;
    margin-left: 180px;
  }
}

.works__desc dt {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
}

.works__desc dd {
  width: 325px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

.works__headline-section {
  width: 325px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .works__headline-section {
    width: 670px;
    margin-left: 50px;
  }
}
@media screen and (min-width: 900px) {
  .works__headline-section {
    width: 900px;
    margin-left: 0;
  }
}

.works__line2 {
  display: block;
  width: 325px;
  height: 2px;
  background: #999;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .works__line2 {
    display: block;
    width: 620px;
    height: 2px;
    background: #999;
    margin-left: 55px;
  }
}
@media screen and (min-width: 900px) {
  .works__line2 {
    display: block;
    width: 785px;
    height: 2px;
    background: #999;
    margin-top: 12px;
    text-align: start;
    margin-left: 0;
  }
}

.works__p-text01 {
  width: 325px;
  height: 174px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .works__p-text01 {
    width: 690px;
    display: inline-block;
    text-align: left;
    padding: 10px 0px 0px 50px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .works__p-text01 {
    width: 840px;
    height: 100px;
    display: inline-block;
    text-align: left;
    padding: 10px 0px 0px 0px;
    margin-top: 15px;
  }
}

.works__p-text02 {
  width: 325px;
  height: 174px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .works__p-text02 {
    width: 690px;
    display: inline-block;
    text-align: left;
    padding: 10px 0px 0px 50px;
  }
}
@media screen and (min-width: 900px) {
  .works__p-text02 {
    width: 840px;
    display: inline-block;
    text-align: left;
    padding: 10px 0px 0px 0px;
  }
}

.works__page {
  background: #333 url(../img/sp/works-page_bigIcon.png) no-repeat center right/contain;
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .works__page {
    position: relative;
    background-color: #333;
    background-image: none;
    width: 1440px;
    height: 225px;
    margin-top: 58px;
  }
}

.works__wrap {
  position: relative;
  width: 375px;
  height: 224px;
}
@media screen and (min-width: 768px) {
  .works__wrap {
    width: 770px;
    height: 225px;
  }
}
@media screen and (min-width: 900px) {
  .works__wrap {
    width: 1440px;
    height: 225px;
    padding-inline: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .works__wrap {
    width: 1440px;
    height: 225px;
    padding-inline: 0;
  }
}

.icon__box-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .icon__box-image {
    display: block;
    position: absolute;
    top: 15px;
    right: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .icon__box-image {
    display: block;
    position: absolute;
    top: 15px;
    right: 100px;
  }
}

.icon__box-image img {
  width: 100%;
  height: 100%;
}

.works__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-left: 10px;
}
@media screen and (min-width: 900px) {
  .works__heading {
    position: absolute;
    bottom: 65px;
    left: 85px;
  }
}

.heading__works-title {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 58px */
  letter-spacing: 2.9px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .heading__works-title {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 80px */
    letter-spacing: 4px;
    text-transform: uppercase;
  }
}

.works__heading img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36.667px;
  height: 44px;
  margin: -15px 10px 0px 0;
}
@media screen and (min-width: 900px) {
  .works__heading img {
    width: 63.25px;
    height: 75.44px;
    margin: 0 20px 18px 0;
  }
}

.works__text01 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .works__text01 {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding-top: 150px;
    padding-left: 180px;
  }
}

.works__nav-inner {
  display: block;
  text-align: center;
  width: 375px;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (min-width: 900px) {
  .works__nav-inner {
    display: block;
    text-align: center;
    width: 1440px;
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

.works__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .works__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}

.works-page_folio {
  margin-block: 100px;
}
@media screen and (min-width: 768px) {
  .works-page_folio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (min-width: 900px) {
  .works-page_folio {
    width: 1440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .works-page_folio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.works-page_folio a {
  display: inline-block;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .works-page_folio a {
    display: contents;
    margin-right: 40px;
  }
}
@media screen and (min-width: 900px) {
  .works-page_folio a {
    display: contents;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .works-page_folio a {
    display: contents;
    margin-right: 40px;
  }
}

.works__gallery__wrapper {
  width: 375px;
  padding: 0 25px;
  display: block;
}
@media screen and (min-width: 768px) {
  .works__gallery__wrapper {
    width: 770px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .works__gallery__wrapper {
    width: 1440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .works__gallery__wrapper {
    width: 1429px;
    height: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    margin-top: 100px;
  }
}

.gallery__slide {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .gallery__slide {
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .gallery__slide {
    margin-right: 20px;
  }
}

.gallery-card {
  max-width: 325px;
  background: #333;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.08);
  min-height: 395px;
}
@media screen and (min-width: 900px) {
  .gallery-card {
    max-height: 395px;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .gallery-card {
    max-height: 395px;
    height: 100%;
  }
}

.gallery-card__image img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .gallery-card__image img {
    max-height: 240px;
  }
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.gallery-card__content {
  max-width: 325px;
  padding: 15px;
}
@media screen and (min-width: 900px) {
  .gallery-card__content {
    max-height: 126px;
    padding: 15px;
  }
}

.gallery-card__title {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border: 1px solid #FAFAFA;
  padding: 0 1px;
  width: 110px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .gallery-card__title {
    font-size: 12px;
  }
}

.gallery__text-box p {
  overflow: hidden;
  color: #FAFAFA;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .gallery__text-box p {
    color: #FAFAFA;
    width: 294px;
    margin-top: 10px;
    padding-inline: 12px;
    font-size: 14px;
  }
}

.gallery-card__text {
  overflow: hidden;
  color: #FAFAFA;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .gallery-card__text {
    color: #FAFAFA;
    width: 294px;
    height: 106px;
    margin-top: 12px;
    padding-inline: 12px;
    font-size: 14px;
  }
}

.contact__page {
  background: #333 url(../img/sp/works-page_bigIcon.png) no-repeat center right/contain;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact__page {
    background: #333 url(../img/about-big_arrow.png) no-repeat left top/contain;
    width: 768px;
  }
}
@media screen and (min-width: 900px) {
  .contact__page {
    position: relative;
    background-color: #333;
    background-image: none;
    width: 1440px;
    height: 225px;
    margin-top: 58px;
  }
}

.contact__wrap {
  width: 375px;
  height: 224px;
}
@media screen and (min-width: 768px) {
  .contact__wrap {
    width: 770px;
    height: 225px;
  }
}
@media screen and (min-width: 900px) {
  .contact__wrap {
    width: 1024px;
    height: 225px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .contact__wrap {
    width: 1440px;
    height: 225px;
    padding-inline: 0;
  }
}

.contact__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-left: 10px;
}
@media screen and (min-width: 900px) {
  .contact__heading {
    position: absolute;
    top: -25px;
    left: 50px;
  }
}

.heading__contact-title {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 58px */
  letter-spacing: 2.9px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .heading__contact-title {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 80px */
    letter-spacing: 4px;
    text-transform: uppercase;
  }
}

.contact__heading img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36.667px;
  height: 44px;
  margin: -15px 10px 0px 0;
}
@media screen and (min-width: 900px) {
  .contact__heading img {
    width: 63.25px;
    height: 75.44px;
    margin: 0 30px 18px 0;
  }
}

.contact__text01 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding-left: 60px;
}
@media screen and (min-width: 900px) {
  .contact__text01 {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding-top: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__text01 {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding-top: 160px;
    padding-left: 150px;
  }
}

.contact-form {
  padding: 60px 25px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 130px 30px;
  }
}
@media screen and (min-width: 900px) {
  .contact-form {
    width: 1440px;
    padding: 130px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-form {
    width: 1440px;
    padding: 130px 30px;
  }
}

.p-contact__wrap {
  border: 1px solid #999;
  border-radius: 6px;
  padding: 6px 10px 7px;
}
@media screen and (min-width: 768px) {
  .p-contact__wrap {
    margin-inline: auto;
    background: #FAFAFA;
    padding: 64px 140px 72px;
    max-width: 800px;
  }
}
@media screen and (min-width: 900px) {
  .p-contact__wrap {
    margin-inline: auto;
    background: #FAFAFA;
    padding: 64px 140px 72px;
    max-width: 800px;
  }
}

.p-contact__lead {
  margin-top: 32px;
  letter-spacing: 0.48px;
  text-align: center;
}

.p-contact__form {
  margin-top: 48px;
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.form-field__label {
  font-size: 18px;
}

.form-field__required {
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #FC6B6B;
  width: 39px;
  height: 21px;
  color: #fff;
  font-size: 12px;
}

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-field__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.form-field__item--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
  height: 50px;
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
  display: block;
  border-radius: 5px;
  border: 1px solid #575757;
  background: #FFF;
  padding: 16px;
  width: 100%;
  font-size: 16px;
}
input[type=email]:hover,
input[type=tel]:hover,
input[type=text]:hover,
textarea:hover {
  opacity: 0.5;
}

textarea {
  height: 160px;
  resize: vertical;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.p-contact__privacy {
  margin-top: 32px;
  text-align: center;
}

.form-checkbox {
  cursor: pointer;
}

@media (hover: none) {
  .form-checkbox .form-checkbox__input {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}
.form-checkbox .form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-checkbox .form-checkbox__text {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.9px;
  text-align: center;
}
.form-checkbox .form-checkbox__text::before {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #4f4f4f;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  content: "";
}
.form-checkbox .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 10px;
  height: 18px;
  rotate: 45deg;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.form-checkbox .form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
  content: "";
  color: #000;
  position: absolute;
  top: 3px;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
}

.form-checkbox .form-checkbox__text a {
  color: #333;
  text-decoration-line: underline;
}

.p-contact__submit {
  margin-top: 40px;
  text-align: center;
}

@media (hover: none) {
  .c-button--submit {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}
.c-button--submit {
  display: inline-block;
  cursor: pointer;
  background: #333;
  padding: 15px 15px 14px;
  width: 100%;
  max-width: 239px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.9px;
  text-align: center;
}

.privacy__page {
  background: #333 url(../img/sp/works-page_bigIcon.png) no-repeat center right/contain;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .privacy__page {
    background: #333 url(../img/about-big_arrow.png) no-repeat/contain;
    width: 768px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 900px) {
  .privacy__page {
    position: relative;
    background-color: #333;
    background-image: none;
    width: 1440px;
    height: 240px;
  }
}

.privacy__wrap {
  width: 375px;
  height: 224px;
}
@media screen and (min-width: 768px) {
  .privacy__wrap {
    width: 770px;
    height: 225px;
  }
}
@media screen and (min-width: 900px) {
  .privacy__wrap {
    width: 1024px;
    height: 240px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .privacy__wrap {
    width: 1440px;
    height: 240px;
    padding-inline: 0;
  }
}

.privacy__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 110px;
  padding-left: 10px;
}
@media screen and (min-width: 900px) {
  .privacy__heading {
    position: absolute;
    bottom: 55px;
    left: 85px;
  }
}

.heading__privacy-title {
  color: #FAFAFA;
  font-family: "League Spartan";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 35px */
  letter-spacing: 1.75px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .heading__privacy-title {
    color: #FAFAFA;
    font-family: "League Spartan";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 80px */
    letter-spacing: 4px;
    text-transform: uppercase;
  }
}

.privacy__heading img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.331px;
  height: 40.003px;
  margin: -15px 10px 0px 0;
}
@media screen and (min-width: 900px) {
  .privacy__heading img {
    width: 63.25px;
    height: 75.44px;
    margin: 0 20px 18px 0;
  }
}

.privacy__text01 {
  color: #FAFAFA;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding-left: 50px;
}
@media screen and (min-width: 900px) {
  .privacy__text01 {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding-top: 190px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy__text01 {
    color: #FAFAFA;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding-top: 190px;
    padding-left: 175px;
  }
}

#js-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(124, 114, 108, 0.9);
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  line-height: 1.5;
}

.p-contact__modal-inner {
  margin: 64px auto;
  border: 4px solid #999;
  border-radius: 6px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-contact__modal-inner {
    margin: 24px auto;
    width: 80%;
  }
}
@media screen and (min-width: 900px) {
  .p-contact__modal-inner {
    margin: 64px 100px;
    width: 120%;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__modal-inner {
    margin: 64px auto;
    width: 90%;
  }
}

.p-contact__modal-contents {
  background-color: #f2f2f2;
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  .p-contact__modal-contents {
    padding: 64px 48px;
  }
}
@media screen and (min-width: 900px) {
  .p-contact__modal-contents {
    padding: 64px 48px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__modal-title {
    font-size: 32px;
  }
}

.p-contact__modal-text {
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-contact__modal-text {
    margin-top: 24px;
  }
}

.p-contact__modal-list {
  margin-top: 24px;
  padding-left: 1em;
}

.p-contact__modal-item {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .p-contact__modal-sub-title {
    font-size: 24px;
  }
}

.p-contact__modal-sub01-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub01-item {
  margin-top: 16px;
}

.p-contact__modal-sub02-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub02-item {
  margin-top: 16px;
}

.p-contact__modal-sub03-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-sub03-item {
  margin-top: 16px;
}

.p-contact__modal-info-list {
  margin-top: 16px;
  padding-left: 1em;
}

.p-contact__modal-end-text {
  margin-top: 24px;
  text-align: right;
}

.p-contact__modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  background-color: transparent;
  width: 40px;
  height: 40px;
}

.p-contact__modal-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  background-color: #f2f2f2;
  width: 90%;
  height: 1px;
}
.p-contact__modal-line:first-child {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-contact__modal-line:last-child {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}