@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

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

figure {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  font-family: inherit;
  margin: 0;
  padding: 0;
}

*:focus-visible {
  outline: none;
}

:root {
  scroll-behavior: smooth;
  --darkGray: #333136;
  --lightGray: #333136;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --black: #1d1c1e;
  --peach: #e7816b;
  --lightPeach: #ffad9b;
  --beige: #fdf3f0;
  --headerH: 96px;
}
@media screen and (min-width: 768px) {
  :root {
    --headerH: 155px;
  }
}

* {
  /* clamp-sizeの変数 */
  /*  --min-size: 0;
    --max-size: 100;
    margin-block-start: var(--clamp-size) のように使う */
  --min-viewport: 375;
  --max-viewport: 1440;
  /* a 傾き */
  --slope: calc(
    (var(--max-size) - var(--min-size)) /
      (var(--max-viewport) - var(--min-viewport))
  );
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(
    var(--min-size) / 16 * 1rem,
    var(--fluid-size),
    var(--max-size) / 16 * 1rem
  );
}

body {
  color: var(--darkGray);
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

body.u-noScroll {
  overflow: hidden;
}

a {
  cursor: pointer;
}

p {
  line-break: strict;
}

p:empty {
  display: none;
}

.l-header {
  height: 96px;
  height: var(--headerH);
  position: relative;
  z-index: 20;
}

.l-header__container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.l-header__nav {
  left: 0;
  position: absolute;
  top: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    position: unset;
  }
}

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

.l-inner {
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    margin-inline: auto;
    max-width: 768px;
    padding-inline: 39px;
  }
}
@media screen and (min-width: 1112px) {
  .l-inner {
    margin-inline: auto;
    max-width: 1192px;
  }
}

.l-inner.--spFullWidth {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-inner.--spFullWidth {
    margin-inline: auto;
    max-width: 768px;
    padding-inline: 39px;
  }
}
@media screen and (min-width: 1112px) {
  .l-inner.--spFullWidth {
    margin-inline: auto;
    max-width: 1192px;
  }
}

.l-footer {
  background-color: var(--black);
  margin-top: 310px;
  padding-bottom: 64px;
  padding-top: 253px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 384px;
    padding-bottom: 80px;
    padding-top: 166px;
  }
}
@media screen and (min-width: 1112px) {
  .l-footer {
    margin-top: 380px;
    padding-bottom: 72px;
    padding-top: 144px;
  }
}
.l-footer .p-cta {
  left: 0;
  margin-inline: auto;
  max-width: 327px;
  position: absolute;
  right: 0;
  top: -190px;
}
@media screen and (min-width: 768px) {
  .l-footer .p-cta {
    max-width: 690px;
    top: -264px;
  }
}
@media screen and (min-width: 1112px) {
  .l-footer .p-cta {
    max-width: 1112px;
    top: -220px;
  }
}

.l-footer.--noCta {
  margin-top: 120px;
  padding-top: 64px;
}
@media screen and (min-width: 1112px) {
  .l-footer.--noCta {
    margin-top: 160px;
    padding-top: 72px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__top {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }
}
.l-footer__top .c-logo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline: auto;
  padding-bottom: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .l-footer__top .c-logo {
    border: none;
    margin-inline: unset;
    padding-bottom: unset;
  }
}
.l-footer__top .p-nav {
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer__top .p-nav {
    padding-top: unset;
  }
}

.l-footer__bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    align-items: flex-end;
    flex-direction: row;
    gap: unset;
    justify-content: space-between;
    margin-top: unset;
    padding-top: 31px;
  }
}

.l-footer__address {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    text-align: left;
  }
}

.l-footer__contact {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__contact {
    text-align: left;
  }
}
@media screen and (min-width: 1112px) {
  .l-footer__contact {
    margin-left: -62px;
  }
}
.l-footer__contact a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__sns ul {
  display: flex;
  gap: 16px;
}
.l-footer__sns a:hover path,
.l-footer__sns a:focus-visible path {
  fill: var(--lightPeach);
}

.l-contents {
  overflow: hidden;
}
.l-contents > .l-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (min-width: 1112px) {
  .l-contents > .l-inner {
    gap: 160px;
  }
}

.l-contents > .l-inner > div:first-child {
  margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .l-contents > .l-inner > div:first-child {
    border-radius: 15px;
    margin-inline: unset;
  }
}

.l-contents.--top::before {
  display: none;
}
@media screen and (min-width: 1112px) {
  .l-contents.--top::before {
    display: block;
    top: 270px;
    transform: rotate(0);
  }
}
@media screen and (min-width: 1112px) {
  .l-contents.--top .p-projectCategories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 308px 308px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 24px;
  }
  .l-contents.--top .p-projectCategories .p-projectCategories__item:first-child {
    grid-row: 1/3;
    height: auto;
  }
}
.l-contents.--top .p-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-contents.--top .p-cards {
    gap: 32px;
  }
}
@media screen and (min-width: 1112px) {
  .l-contents.--top .p-cards {
    flex-direction: row;
  }
}
.l-contents.--top + .l-footer::before {
  left: unset;
  right: calc(50% - min(720px, 50vw));
  top: -678px;
}

.l-contents.--works::before {
  top: 126px;
  transform: rotate(0);
}
.l-contents.--works .l-inner {
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .l-contents.--works .l-inner {
    gap: 120px;
  }
}
@media screen and (min-width: 1112px) {
  .l-contents.--works .l-inner {
    gap: 160px;
  }
}

.l-contents.--about::before {
  top: 320px;
  transform: rotate(0);
}
.l-contents.--about .p-cards {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-block: 120px;
}
@media screen and (min-width: 768px) {
  .l-contents.--about .p-cards {
    padding-block: 0;
  }
}
@media screen and (min-width: 1112px) {
  .l-contents.--about .p-cards {
    flex-direction: row;
  }
}
.l-contents.--about .p-cards::before {
  left: unset;
  right: -561px;
  top: 182px;
  transform: rotate(0);
}
.l-contents.--about .c-card {
  max-width: 350px;
}
.l-contents.--about .p-feature:nth-of-type(2) .p-feature__body::before {
  left: 0;
}

.l-contents.--contact .p-cards {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1112px) {
  .l-contents.--contact .p-cards {
    flex-direction: row;
  }
}
.l-contents.--contact .c-card {
  max-width: 350px;
}
.l-contents.--contact + .l-footer::before {
  left: unset;
  right: calc(50vw - min(720px, 50%));
  top: -434px;
  transform: rotate(0);
}

.c-heading1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px; /* 112.5% */
}
@media screen and (min-width: 768px) {
  .c-heading1 {
    font-size: 48px;
    line-height: 1;
  }
}

.c-heading2 {
  color: var(--black);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
}

.c-heading3 {
  color: var(--darkGray);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.c-heading4 {
  color: #333136;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 14px; /* 100% */
}

.c-heading5 {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px; /* 112.5% */
}
@media screen and (min-width: 768px) {
  .c-heading5 {
    font-size: 40px;
    line-height: 40px; /* 100% */
  }
}

.c-heading2.--spSm {
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 36px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-heading2.--spSm {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2; /* 120% */
  }
}

.c-textSpSm {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
}
@media screen and (min-width: 768px) {
  .c-textSpSm {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
}

.c-buttonPrimary {
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding-block: 17px;
  transition: background-color 0.3s;
  width: 152px;
}
.c-buttonPrimary:hover, .c-buttonPrimary:focus-visible {
  background-color: var(--lightPeach);
}
.c-buttonPrimary:hover span, .c-buttonPrimary:focus-visible span {
  color: var(--white);
}
.c-buttonPrimary span {
  color: var(--darkGray);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 22px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.c-buttonPrimary.--rev {
  background-color: var(--peach);
}
.c-buttonPrimary.--rev span {
  color: var(--white);
}
.c-buttonPrimary.--rev:hover, .c-buttonPrimary.--rev:focus-visible {
  background-color: var(--lightPeach);
}

.c-designCard {
  border-radius: 15px;
  container-type: inline-size;
  cursor: pointer;
  overflow: hidden;
}
.c-designCard:hover .c-designCard__title,
.c-designCard:hover .c-designCard__text {
  color: var(--white);
}
.c-designCard:hover .c-designCard__body {
  background-color: var(--peach);
}

.c-designCard__inner {
  display: flex;
  flex-direction: column;
}
@container (min-width:400px) {
  .c-designCard__inner {
    flex-direction: row;
    height: 310px;
  }
}

.c-designCard__img {
  align-items: flex-end;
  border-radius: inherit;
  display: flex;
  height: 320px;
}
@container (min-width:400px) {
  .c-designCard__img {
    flex: 1 0 49.2017416546%;
  }
}
.c-designCard__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-designCard__body {
  align-items: center;
  background-color: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 32px;
  padding-inline: 30px;
  transition: all 0.3s;
}
@container (min-width:400px) {
  .c-designCard__body {
    gap: 14px;
    justify-content: center;
    padding-block: unset;
  }
}

.c-designCard__title {
  transition: all 0.3s;
}

.c-designCard__text {
  text-align: center;
  transition: all 0.3s;
}

.c-designCard.--app:first-child figure {
  background-color: #2e3947;
}
.c-designCard.--app:nth-child(2) figure {
  background-color: #34b7a2;
}
.c-designCard.--app:nth-child(3) figure {
  background-color: #3f2f83;
}
.c-designCard.--app:nth-child(4) figure {
  background-color: #40125a;
}
.c-designCard.--app:nth-child(5) figure {
  background-color: #853a4d;
}
.c-designCard.--app img {
  display: block;
  height: auto;
  margin-inline: auto;
  max-width: 172px;
}

.c-card {
  container-type: inline-size;
  display: block;
  height: auto;
  width: 100%;
}

.c-card__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.c-card__img {
  flex-shrink: 0;
  width: 202px;
}

.c-card__body {
  text-align: center;
}
.c-card__body a {
  display: inline-block;
  margin-top: 32px;
}

.c-card__title {
  margin-top: 48px;
}

.c-card__text {
  margin-top: 32px;
}

@container (min-width:351px) {
  .c-card__inner {
    flex-direction: row;
    gap: 48px;
  }
  .c-card__body {
    text-align: left;
  }
  .c-card__title {
    margin-top: unset;
  }
  .c-card__text {
    margin-top: 16px;
  }
}
.c-logo {
  font-family: "League Spartan", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 27px;
  padding-left: 40px;
  position: relative;
}
.c-logo::before {
  background-image: conic-gradient(from 0deg at 50% 50%, rgba(231, 129, 107, 0) 0deg, #e7816b 359.7434520721deg);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 24px;
  left: 0;
  position: absolute;
  transform: scaleX(-1);
  width: 24px;
}

.c-hamburger {
  height: 20px;
  position: relative;
  width: 24px;
}

.c-hamburger__bar {
  background-color: var(--black);
  bottom: 0;
  height: 4px;
  margin-block: auto;
  position: absolute;
  top: 0;
  width: 24px;
}
.c-hamburger__bar:first-child {
  top: -16px;
}
.c-hamburger__bar:last-child {
  top: 16px;
}

@keyframes open2nd {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes openFirst {
  0% {
    top: -16px;
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(45deg);
  }
}
@keyframes openLast {
  0% {
    top: 16px;
    transform: rotate(0);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(-45deg);
  }
}
@keyframes close2ed {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes closeFirst {
  0% {
    top: 0;
    transform: rotate(45deg);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: -16px;
    transform: rotate(0);
  }
}
@keyframes closeLast {
  0% {
    top: 0;
    transform: rotate(-45deg);
  }
  50% {
    top: 0;
    transform: rotate(0);
  }
  100% {
    top: 16px;
    transform: rotate(0);
  }
}
.c-hamburger.openAnim .c-hamburger__bar {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.c-hamburger.openAnim .c-hamburger__bar:nth-child(2) {
  animation-name: open2nd;
}
.c-hamburger.openAnim .c-hamburger__bar:first-child {
  animation-name: openFirst;
}
.c-hamburger.openAnim .c-hamburger__bar:last-child {
  animation-name: openLast;
}

.c-hamburger.closeAnim .c-hamburger__bar {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.c-hamburger.closeAnim .c-hamburger__bar:nth-child(2) {
  animation-name: close2nd;
}
.c-hamburger.closeAnim .c-hamburger__bar:first-child {
  animation-name: closeFirst;
}
.c-hamburger.closeAnim .c-hamburger__bar:last-child {
  animation-name: closeLast;
}

.c-bgCircles {
  position: relative;
}
.c-bgCircles::before {
  background: url(../../assets/img/bgCircles.svg) no-repeat top left/contain;
  content: "";
  display: block;
  height: 584px;
  left: -240px;
  position: absolute;
  top: -102px;
  width: 876px;
}
@media screen and (min-width: 768px) {
  .c-bgCircles::before {
    left: -20px;
    top: -117px;
  }
}
@media screen and (min-width: 1112px) {
  .c-bgCircles::before {
    left: 235px;
    top: -146px;
  }
}

.c-bg1 {
  position: relative;
}
.c-bg1::before {
  background: url(../../assets/img/img_bg.svg) no-repeat;
  background-size: min(1006px, 100%) 594px;
  content: "";
  display: none;
  height: 594px;
  left: calc(50vw - min(720px, 50%));
  max-width: 1006px;
  position: absolute;
  transform: rotate(180deg);
  transform-origin: center;
  width: 100%;
  z-index: -5;
}
@media screen and (min-width: 1112px) {
  .c-bg1::before {
    display: block;
  }
}

.p-projectCategories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1112px) {
  .p-projectCategories {
    flex-direction: row;
  }
}
.p-projectCategories h2 {
  text-transform: uppercase;
}

.p-projectCategories__item {
  align-items: center;
  background-color: var(--peach);
  border-radius: 15px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 12px;
  height: 250px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-projectCategories__item {
    height: 200px;
  }
}
@media screen and (min-width: 1112px) {
  .p-projectCategories__item {
    height: 308px;
  }
}
.p-projectCategories__item.web {
  background: url(../../assets/img/img_category_sp-min.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-projectCategories__item.web {
    background-image: url(../../assets/img/img_category_tb-min.png);
  }
}
@media screen and (min-width: 1112px) {
  .p-projectCategories__item.web {
    background-image: url(../../assets/img/img_category_pc-min.png);
  }
}
.p-projectCategories__item.app {
  background: url(../../assets/img/img_category2_sp-min.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-projectCategories__item.app {
    background-image: url(../../assets/img/img_category2_tb-min.png);
  }
}
@media screen and (min-width: 1112px) {
  .p-projectCategories__item.app {
    background-image: url(../../assets/img/img_category2_pc-min.png);
  }
}
.p-projectCategories__item.graphic {
  background: url(../../assets/img/img_category3_sp-min.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-projectCategories__item.graphic {
    background-image: url(../../assets/img/img_category3_tb-min.png);
  }
}
@media screen and (min-width: 1112px) {
  .p-projectCategories__item.graphic {
    background: url(../../assets/img/img_category3_pc-min.png);
  }
}
.p-projectCategories__item:hover::before, .p-projectCategories__item:focus-visible::before {
  opacity: 1;
  transition: all 0.3s;
  visibility: visible;
}
.p-projectCategories__item span {
  background: url(../../assets/img/arrow_right_peach.svg) no-repeat center right/4px;
  font-size: 15px;
  letter-spacing: 5px;
  line-height: 22px;
  padding-right: 20px;
}
.p-projectCategories__item::before {
  background: rgba(231, 129, 107, 0.5);
  content: "";
  display: block;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  width: 100%;
}

.p-nav.--header {
  background-color: var(--black);
  color: var(--white);
  opacity: 0;
  padding: 48px 24px;
  transition: all 0.3s;
  visibility: hidden;
  width: 100vw;
}
.p-nav.--header.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .p-nav.--header {
    background-color: transparent;
    color: var(--darkGray);
    opacity: 1;
    visibility: visible;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-nav.--header ul {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-nav.--header ul {
    flex-direction: row;
    gap: 42px;
  }
}
.p-nav.--header a {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 25px; /* 104.167% */
}
@media screen and (min-width: 768px) {
  .p-nav.--header a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 14px; /* 100% */
  }
}

.p-nav {
  color: var(--white);
}
.p-nav ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-nav ul {
    flex-direction: row;
    gap: 42px;
  }
}
.p-nav a {
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 14px; /* 100% */
  transition: border 0.3s;
}
.p-nav a:hover, .p-nav a:focus-visible {
  border-bottom: 1px solid currentColor;
}

.p-cta {
  align-items: center;
  background-color: var(--peach);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  padding: 64px 24px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding: 57px 60px;
  }
}
@media screen and (min-width: 1112px) {
  .p-cta {
    flex-direction: row;
    justify-content: space-between;
    padding: 72px 95px;
  }
}
.p-cta a {
  position: relative;
}

.p-cta__body {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1112px) {
  .p-cta__body {
    max-width: 459px;
    text-align: left;
  }
}

.p-cta__text {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-top: 16px;
  }
}

.p-MV {
  background-color: var(--peach);
  color: var(--white);
  overflow: hidden;
  padding: 80px 24px 451px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-MV {
    padding: 60px 58px 457px;
  }
}
@media screen and (min-width: 1112px) {
  .p-MV {
    padding: 145px 98px 145px 95px;
  }
}
.p-MV::before {
  background: linear-gradient(90deg, rgba(93, 2, 2, 0) 0%, rgba(93, 2, 2, 0.5) 100%);
  border-radius: 640px;
  bottom: 0;
  content: "";
  display: block;
  height: 640px;
  left: 0;
  margin-block: auto;
  opacity: 0.3089;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 640px;
}
@media screen and (min-width: 768px) {
  .p-MV::before {
    left: 171px;
  }
}
@media screen and (min-width: 1112px) {
  .p-MV::before {
    left: unset;
    right: 0;
  }
}
.p-MV::after {
  background: url(../../assets/img/img_MV-min.png) no-repeat top center/cover;
  bottom: 0;
  content: "";
  display: block;
  height: 371px;
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
  width: 279px;
}
@media screen and (min-width: 1112px) {
  .p-MV::after {
    height: 491px;
    left: unset;
    margin-inline: unset;
    right: 0;
  }
}
@media screen and (min-width: 1112px) {
  .p-MV::after {
    bottom: -72px;
    height: 573px;
    right: 98px;
  }
}
.p-MV a {
  position: relative;
}

.p-MV__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
@media screen and (min-width: 1112px) {
  .p-MV__body {
    align-items: flex-start;
    gap: 40px;
    max-width: 540px;
    text-align: left;
  }
}

.p-MV__heading {
  position: relative;
}

.p-MV__text {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-MV__text {
    padding-inline: 64px;
  }
}
@media screen and (min-width: 1112px) {
  .p-MV__text {
    max-width: 445px;
    padding-inline: unset;
  }
}

.p-designCards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-designCards {
    gap: 32px;
  }
}
@media screen and (min-width: 1112px) {
  .p-designCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.p-worksTop {
  background-color: var(--peach);
  color: var(--white);
  padding: 105px 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-worksTop {
    padding-block: 64px;
  }
}
.p-worksTop > * {
  position: relative;
}
.p-worksTop p {
  margin-top: 24px;
}

.p-worksTop.--web,
.p-worksTop.--app,
.p-worksTop.--graphic {
  overflow: hidden;
  position: relative;
}
.p-worksTop.--web::before,
.p-worksTop.--app::before,
.p-worksTop.--graphic::before {
  background: url(../../assets/img/bg_circles-works-sp.svg) no-repeat top right/contain;
  content: "";
  display: block;
  height: 292px;
  position: absolute;
  right: 0;
  top: 0;
  width: 584px;
}
@media screen and (min-width: 768px) {
  .p-worksTop.--web::before,
  .p-worksTop.--app::before,
  .p-worksTop.--graphic::before {
    background: url(../../assets/img/bg_circles-works.svg) no-repeat top left/contain;
    bottom: 0;
    height: 584px;
    left: calc(50% - 50vw);
    margin-block: auto;
    top: 0;
    width: 876px;
  }
}
@media screen and (min-width: 1112px) {
  .p-worksTop.--web::before,
  .p-worksTop.--app::before,
  .p-worksTop.--graphic::before {
    left: unset;
    right: 0;
  }
}

@media screen and (min-width: 1112px) {
  .p-worksTop.--app::before {
    background: url(../../assets/img/bg_circles-works2.svg) no-repeat top left/contain;
  }
}

@media screen and (min-width: 1112px) {
  .p-worksTop.p-worksTop.--graphic::before {
    background: url(../../assets/img/bg_circles-works3.svg) no-repeat top left/contain;
  }
}

.p-aboutTop {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-aboutTop {
    border-radius: 15px;
  }
}
@media screen and (min-width: 1112px) {
  .p-aboutTop {
    display: flex;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1112px) {
  .p-aboutTop__img {
    flex: 1 0 42.8057553957%;
  }
}

.p-aboutTop__body {
  background-color: var(--peach);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 80px 24px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1112px) {
  .p-aboutTop__body {
    padding-block: 135px;
  }
}
.p-aboutTop__body > * {
  position: relative;
}
.p-aboutTop__body::before {
  background: url(../../assets/img/bg_circles-works-sp.svg) no-repeat top right/contain;
  content: "";
  display: block;
  height: 292px;
  position: absolute;
  right: 0;
  top: -146px;
  width: 584px;
}
@media screen and (min-width: 768px) {
  .p-aboutTop__body::before {
    background: linear-gradient(90deg, rgba(93, 2, 2, 0) 0%, rgba(93, 2, 2, 0.5) 100%);
    border-radius: 640px;
    height: 640px;
    left: -124px;
    opacity: 0.4;
    top: -430px;
    width: 640px;
  }
}
@media screen and (min-width: 1112px) {
  .p-aboutTop__body::before {
    bottom: 0;
    left: unset;
    right: 0;
    top: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-feature {
    border-radius: 15px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1112px) {
  .p-feature {
    display: flex;
  }
}

@media screen and (min-width: 1112px) {
  .p-feature__img {
    flex: 1 0 42.8057553957%;
  }
}

.p-feature__body {
  background-color: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 80px 24px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-feature__body {
    padding-inline: 58px;
  }
}
@media screen and (min-width: 1112px) {
  .p-feature__body {
    justify-content: center;
    padding-inline: 96px;
    text-align: left;
  }
}
.p-feature__body::before {
  background: url(../../assets/img/bg_circles-about.svg) no-repeat left top/contain;
  content: "";
  display: block;
  height: 584px;
  left: 0;
  position: absolute;
  top: 0;
  width: 584px;
}
@media screen and (min-width: 768px) {
  .p-feature__body::before {
    left: 94px;
    top: -212px;
  }
}
@media screen and (min-width: 1112px) {
  .p-feature__body::before {
    bottom: 0;
    left: -146px;
    top: unset;
  }
}

.p-locations {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-locations {
    gap: 120px;
  }
}
@media screen and (min-width: 1112px) {
  .p-locations {
    gap: 32px;
  }
  .p-locations .p-locationCard:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
  }
}

.p-locationCard {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-locationCard {
    gap: 31px;
  }
}
@media screen and (min-width: 1112px) {
  .p-locationCard {
    flex-direction: row;
    height: 326px;
    justify-content: space-between;
  }
}

.p-locationCard__iframe {
  height: 320px;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-locationCard__iframe {
    border-radius: 15px;
    height: unset;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .p-locationCard__iframe iframe {
    aspect-ratio: 689/326;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1112px) {
  .p-locationCard__iframe iframe {
    aspect-ratio: 175/163;
  }
}

.p-locationCard__body {
  background-color: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding-block: 80px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-locationCard__body {
    align-items: flex-start;
    border-radius: 15px;
    padding: 88px 75px;
  }
}
@media screen and (min-width: 1112px) {
  .p-locationCard__body {
    flex-basis: 64.7482014388%;
    padding: 88px 95px;
  }
}
.p-locationCard__body::before {
  background: url(../../assets/img/bg_circles-about.svg) no-repeat left top/contain;
  content: "";
  display: block;
  height: 584px;
  left: 0;
  position: absolute;
  top: 0;
  width: 584px;
}
@media screen and (min-width: 768px) {
  .p-locationCard__body::before {
    bottom: 0;
    top: unset;
  }
}

.p-locationCard__contactInfo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-locationCard__contactInfo {
    flex-direction: row;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-locationCard__office {
    flex: 0 1 calc(50% - 15px);
  }
}

.p-locationCard__contact > * {
  display: block;
}

.p-contactTop {
  background-color: var(--peach);
  color: var(--white);
  overflow: hidden;
  padding: 72px 24px;
  position: relative;
  text-align: center;
}
.p-contactTop > * {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contactTop {
    padding: 71px 58px;
    text-align: left;
  }
}
@media screen and (min-width: 1112px) {
  .p-contactTop {
    display: flex;
    padding: 54px 96px;
  }
}
.p-contactTop::before {
  background: url(../../assets/img/bg_circles-works-sp.svg) no-repeat top right/contain;
  content: "";
  display: block;
  height: 292px;
  left: -116px;
  position: absolute;
  top: 0;
  width: 584px;
}
@media screen and (min-width: 768px) {
  .p-contactTop::before {
    background: linear-gradient(180deg, rgba(93, 2, 2, 0) 0%, rgba(93, 2, 2, 0.5) 100%);
    border-radius: 640px;
    bottom: 0;
    height: 640px;
    left: -122px;
    opacity: 0.4;
    top: -83px;
    width: 640px;
  }
}
@media screen and (min-width: 1112px) {
  .p-contactTop::before {
    top: -160px;
  }
}

@media screen and (min-width: 1112px) {
  .p-contactTop__body {
    flex-shrink: 0;
    margin-top: 80px;
    width: 540px;
  }
}

.p-contactTop__text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-contactTop__text {
    margin-top: 32px;
  }
}

@media screen and (min-width: 1112px) {
  .p-contact__form {
    flex: 1 1 auto;
  }
}

.p-form {
  padding-top: 23px;
}
.p-form textarea {
  line-height: 1.5;
}

.p-form__item {
  margin-top: 25px;
  position: relative;
  width: 100%;
}

.p-form__item span {
  font-size: 12px;
  font-style: italic;
  opacity: 0;
  padding-right: 29px;
  position: absolute;
  right: 0;
  top: 0;
}
.p-form__item span::after {
  background: url(../../assets/img/icon_attention.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
}
.p-form__item span.is-active {
  opacity: 1;
}

.p-form__input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: "Jost", sans-serif;
  padding-bottom: 11px;
  padding-left: 14px;
  transition: border-color 0.3s;
  width: 100%;
}

.p-form__input:focus {
  border-bottom-width: 3px;
  outline: none;
}

.p-form__input::-moz-placeholder {
  color: transparent;
}

.p-form__input::placeholder {
  color: transparent;
}

.p-form__input::-webkit-contacts-auto-fill-button {
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.p-form__label {
  color: var(--white);
  left: 14px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform-origin: left center;
  transition: transform 0.3s;
}

.p-form__input:not(:-moz-placeholder) + .p-form__label {
  transform: translateY(-100%) scale(0.75);
}

.p-form__input:focus + .p-form__label,
.p-form__input:not(:placeholder-shown) + .p-form__label {
  transform: translateY(-100%) scale(0.75);
}

.p-form__submit {
  cursor: pointer;
  margin-inline: auto;
  margin-top: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-form__submit {
    margin-inline: unset;
    margin-left: auto;
    margin-top: 24px;
  }
}

.p-form__submitError {
  display: none;
  margin-top: 8px;
}
.p-form__submitError.is-show {
  display: inline-block;
}

.p-contactThanks {
  padding-block: 64px;
  text-align: center;
}

.u-textPeach {
  color: var(--peach);
}

.u-textWhite {
  color: var(--white);
}

.u-overlay {
  background: #000;
  bottom: 0;
  height: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 10;
}
.u-overlay.is-active {
  height: calc(100% - var(--headerH));
  opacity: 0.5;
}

.u-hiddenSp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hiddenSp {
    display: block;
  }
}

.u-flexRowRev {
  flex-direction: row-reverse;
}