/* ----------------------------------------------
カラー
----------------------------------------------- */
:root {
  --color-bk: #000;
  --color-wh: #fff;
  --color-yel: #fff352;
  --color-navy: #223a70;
  --color-gray: #a6a6a6;
  --color-transparent: rgba(11, 9, 9, 0.2);
}

/* ----------------------------------------------
フォント
----------------------------------------------- */

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-zen: "Zen Maru Gothic", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

/* ----------------------------------------------
TOPPAGE
----------------------------------------------- */

/* MV
----------------------------------------------- */
.p-topHeading__wrap {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: row-reverse;
}

.p-topHeading__leftBlock {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.p-topHeading__txtBox {
  position: absolute;
  z-index: 2;
}

.p-topHeading__txtBox h2 {
  text-align: left;
  color: var(--color-wh);
  font-family: var(--font-zen);
  line-height: 2;
  font-size: 1.75em;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.p-heading__imageSlide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.p-heading__imageSlide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.p-heading__imageSlide img.active {
  opacity: 1;
}

.p-topHeading__rightBlock {
  width: 50%;
  background: #fbfaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.p-topHeading__rightBlock h1 {
  max-width: 400px;
  text-align: left;
}

.p-topHeading__rightBlock h1 img {
  width: 100%;
  height: auto;
}

.p-topHeading__rightBlock span {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.1em;
  word-break: keep-all;
  margin-bottom: 15px;
  display: block;
}

@media screen and (min-width: 769px) {
  .p-topHeading__txtBox {
    top: calc(60vw / 14.4);
    left: calc(60vw / 14.4);
  }

  .p-topHeading__txtBox h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media screen and (max-width: 768px) {
  .p-topHeading__wrap {
    flex-direction: column-reverse;
  }

  .p-topHeading__txtBox {
    bottom: 40px;
    left: 40px;
  }

  .p-topHeading__txtBox h2 {
    font-size: 1.15em;
  }

  .p-topHeading__leftBlock {
    width: 100%;
    height: 50%;
  }

  .p-topHeading__rightBlock {
    width: 100%;
    height: 50%;
    padding: 40px;
  }
}

@media screen and (max-width: 480px) {
  .p-topHeading__rightBlock h1 {
    width: 100%;
  }

  .p-topHeading__rightBlock span {
    font-size: 0.5em;
    word-break: normal;
  }
}

/* read
----------------------------------------------- */

.p-topRead__wrap {
  padding-block: 80px;
}

.p-topRead__wrap .l-container {
  display: flex;
  align-items: flex-start;
  gap: 0 40px;
}

.p-topRead__leftBlock {
  width: 565px;
}

.p-topRead__leftBlock h2 {
  font-size: 1.75em;
  letter-spacing: 0.1em;
  line-height: 2.5;
  font-family: var(--font-zen);
  font-weight: 600;
  margin-bottom: 60px;
}

.p-topRead__leftBlock h2 span {
  background: linear-gradient(transparent 70%, #fff352 70%);
}

.p-topRead__leftBlock .c-text__primary {
  line-height: 2.5;
  font-weight: 500;
}

.p-topRead__rightBlock {
  width: 545px;
}

.p-topRead__pointList {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}

.p-topRead__pointItem {
  border-radius: 20px;
  background: var(--color-wh);
  padding-inline: 40px;
  padding-bottom: 30px;
  counter-increment: title;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.p-topRead__pointItem h3 {
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 0;
  position: relative;
  top: -25px;
}

.p-topRead__pointItem h3::before {
  content: "0" counter(title);
  display: block;
  font-family: var(--font-en);
  font-size: 2.75em;
  line-height: 1;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 30px;
}

.p-topRead__pointItem h3::after {
  content: "";
  width: 65px;
  height: 2px;
  background: var(--color-navy);
  position: absolute;
  top: 60px;
  left: 4px;
}

@media screen and (max-width: 768px) {
  .p-topRead__wrap {
    padding-block: 60px;
  }

  .p-topRead__wrap .l-container {
    flex-direction: column;
    gap: 40px 0;
  }

  .p-topRead__leftBlock {
    width: 100%;
  }

  .p-topRead__rightBlock {
    width: 100%;
  }

  .p-topRead__leftBlock h2 {
    font-size: 1.25em;
    margin-bottom: 40px;
  }

  .p-topRead__pointItem {
    padding-inline: 20px;
    padding-bottom: 20px;
  }

  .p-topRead__pointItem h3 {
    font-size: 1.15em;
    top: -15px;
  }

  .p-topRead__pointItem h3::before {
    font-size: 2em;
  }

  .p-topRead__pointItem h3::after {
    width: 40px;
    top: 40px;
  }
}

/* ABOUT
----------------------------------------------- */

.p-topAbout__wrap {
  padding-block: 0 80px;
}

.p-topAbout__messageBlock {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.p-topAbout__profImage {
  width: 300px;
}

.p-topAbout__comment {
  width: 780px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.p-topAbout__comment p {
  font-size: 1em;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.p-topAbout__comment .c-text__primary {
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.p-topAbout__correspondenceBlock {
  border-radius: 20px;
  background: var(--color-wh);
  max-width: 900px;
  margin-inline: auto;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.p-topAbout__correspondenceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
}

.p-topAbout__correspondenceList li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.875;
  letter-spacing: 0.05em;
  gap: 0 10px;
}

.p-topAbout__correspondenceList li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url(../img/check-icon.svg) no-repeat center center / cover;
}

@media screen and (max-width: 480px) {
  .p-topAbout__messageBlock {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
    margin-bottom: 40px;
  }

  .p-topAbout__profImage {
    width: 60%;
  }

  .p-topAbout__comment {
    width: 100%;
    gap: 20px 0;
    text-align: justify;
  }

  .p-topAbout__correspondenceBlock {
    padding: 20px;
  }

  .p-topAbout__correspondenceList {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .p-topAbout__correspondenceList li {
    font-size: 0.85em;
    gap: 0 5px;
  }

  .p-topAbout__correspondenceList li::before {
    width: 20px;
    height: 20px;
  }

  .p-topAbout__comment .c-text__primary br {
    display: none;
  }

  .p-topAbout__comment p {
    font-size: 0.85em;
  }

  .p-topAbout__comment br {
    display: none;
  }
}

/* SERVICE
----------------------------------------------- */

.p-topService__wrap {
  padding-block: 0 80px;
}

.p-topService__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.p-topService__listItem {
  border-radius: 20px;
  background: var(--color-wh);
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  counter-increment: title;
}

.p-topService__listItem h3 {
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.p-topService__listItem h3::before {
  content: "0" counter(title);
  font-family: var(--font-en);
  font-size: 1.75em;
  line-height: 1;
  font-weight: 600;
  color: var(--color-navy);
  border-left: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 20px;
}

.p-topService__listItem h3 span {
  background: var(--color-yel);
  font-size: 0.8em;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 10px;
}

.p-topService__listItem figure {
  margin-bottom: 30px;
  display: block;
}

.p-topService__listItem .detail {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--color-gray);
}

.p-topService__listItem .price {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  font-weight: 500;
}

.p-topService__listItem .price .yel {
  background: var(--color-yel);
  font-size: 0.8em;
  border-radius: 20px;
  padding: 8px 20px;
  margin-right: 10px;
  line-height: 1;
}

.p-topService__listItem .price .small {
  font-size: 0.8em;
  margin-top: 5px;
  margin-right: 10px;
  display: block;
}

@media screen and (max-width: 480px) {
  .p-topService__wrap {
    padding-block: 0 60px;
  }

  .p-topService__list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
    gap: 40px;
  }

  .p-topService__listItem {
    padding: 30px 20px;
  }

  .p-topService__listItem h3 {
    font-size: 1.1em;
  }

  .p-topService__listItem h3::before {
    font-size: 1.5em;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 15px;
  }

  .p-topService__listItem h3 span {
    padding: 5px 15px;
  }

  .p-topService__listItem .detail {
    font-size: 0.85em;
    text-align: justify;
  }

  .p-topService__listItem .detail br {
    display: none;
  }

  .p-topService__listItem .price {
    text-align: left;
    font-size: 1em;
  }

  .p-topService__listItem .price .yel {
    padding: 5px 15px;
  }
}

/* WORKS
----------------------------------------------- */

.p-topWorks__wrap {
  padding-block: 0 80px;
}

.p-topWorks__list {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.p-topWorks__list li {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 504px;
  margin-inline: 40px;
  padding: 0;
}

.p-topWorks__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  width: 100%;
}

.p-topWorks__list li picture {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 12 / 7.869;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.p-topWorks__list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.4s;
  transform: scale(1);
}

.p-topWorks__list li a:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 480px) {
  .p-topWorks__wrap {
    padding-block: 0 60px;
  }

  .p-topWorks__list {
    margin-bottom: 40px;
  }

  .p-topWorks__list li {
    width: 200px;
    margin-inline: 15px;
  }

  .p-topWorks__list li picture {
    border-radius: 10px;
  }

  .p-topWorks__list li a {
    font-size: 0.75em;
    line-height: 1.6;
  }
}

/* VOICE
----------------------------------------------- */

.p-topVoice__wrap {
  padding-block: 0 80px;
}

.p-topVoice__list {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}

.p-topVoice__listItem {
  display: flex;
  align-items: center;
  gap: 0 40px;
}

.p-topVoice__figure {
  width: 250px;
  text-align: center;
}

.p-topVoice__figure img {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
}

.p-topVoice__figure figcaption {
  font-size: 1.125em;
  font-weight: 600;
  font-family: var(--font-zen);
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-topVoice__figure .position {
  font-size: 0.75em;
  display: block;
  font-weight: 500;
}

.p-topVoice__figure .small {
  font-size: 0.75em;
}

.p-topVoice__listItem:nth-of-type(even) {
  flex-direction: row-reverse;
}

.p-topVoice__commentBlock {
  width: 850px;
  border-radius: 20px;
  background: var(--color-wh);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.p-topVoice__commentBlock h3 {
  font-family: var(--font-zen);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  line-height: 1.5em;
}

@media screen and (max-width: 480px) {
  .p-topVoice__wrap {
    padding-block: 0 60px;
  }

  .p-topVoice__list {
    gap: 40px 0;
  }

  .p-topVoice__listItem {
    flex-direction: column;
    gap: 20px 0;
  }

  .p-topVoice__figure {
    width: 100%;
  }

  .p-topVoice__commentBlock {
    width: 100%;
    padding: 20px;
  }

  .p-topVoice__commentBlock h3 {
    font-size: 1em;
  }

  .p-topVoice__listItem:nth-of-type(even) {
    flex-direction: column;
  }
}

/* CONTACT
----------------------------------------------- */

.p-topContact__wrap {
  padding-block: 0 80px;
}

.p-topContact__wrap .p-topAbout__correspondenceBlock {
  margin-block: 60px;
}

.p-topContact__bottomBlock {
  background: var(--color-yel);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: 120px;
  padding-inline: 40px 260px;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}

.p-topContact__bottomText {
  padding-block: 40px;
  max-width: 400px;
}

.p-topContact__bottomText .c-btn__center {
  margin-top: 20px;
}

@media screen and (min-width: 481px) {
  .p-topContact__bottomBlock figure {
    position: absolute;
    right: 46px;
    bottom: 0;
    width: 200px;
    height: 284px;
  }
}

@media screen and (max-width: 480px) {
  .p-topContact__wrap {
    padding-block: 0 60px;
  }

  .p-topContact__wrap .p-topAbout__correspondenceBlock {
    margin-block: 40px;
  }

  .p-topContact__bottomBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 0;
  }

  .p-topContact__bottomBlock figure {
    position: absolute;
    left: 47%;
    top: -80px;
    width: 120px;
    height: 171px;
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------
WORKS
----------------------------------------------- */

/* archives
----------------------------------------------- */

.p-works__wrap {
  padding-block: 0 120px;
}

.c-category__list li {
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 40px;
}

.c-category__list li.current {
  color: var(--color-navy);
  font-weight: 600;
}

.c-category__list li.current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-navy);
}

.c-category__list li a:hover {
  opacity: 1;
  color: var(--color-navy);
  font-weight: 600;
}

.p-works__list {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.p-works__listItem {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0;
}

.p-works__listItem a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  width: 100%;
}

.p-works__listItem h3 {
  line-height: 1.6;
}

.p-works__listItem picture {
  width: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 12 / 7.869;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.p-works__listItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.4s;
  transform: scale(1);
}

.p-works__listItem a:hover img {
  transform: scale(1.1);
}

.p-works__tagList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.p-works__tagList li {
  font-size: 0.75em;
  background: var(--color-yel);
  line-height: 25px;
  padding: 0 10px;
}

.c-pager__block {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-en);
  font-weight: 600;
}

a.page-numbers,
span.page-numbers {
  font-size: 1.4em;
  font-weight: 500;
  color: var(--color-navy);
}

ul.page-numbers .prev,
ul.page-numbers .next {
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-navy);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

ul.page-numbers .prev::after,
ul.page-numbers .next::after {
  content: "";
  top: 50%;
  left: 48%;
  position: absolute;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-navy);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(45deg);
}

ul.page-numbers .prev::after {
  left: 52%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.current.page-numbers {
  color: var(--color-gray);
}

@media screen and (min-width: 481px) {
  .c-category__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 80px;
  }

  .c-category__list li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: var(--color-bk);
  }

  .c-category__list li:last-child {
    border-right: 1px solid var(--color-bk);
  }

  .c-category__list li:only-child {
    border-right: 1px solid var(--color-bk);
  }
}

@media screen and (max-width: 480px) {
  .p-works__wrap {
    padding-block: 0 60px;
  }

  .c-category__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 0;
    margin-bottom: 40px;
  }

  .c-category__list li {
    font-size: 0.75em;
    line-height: 30px;
  }

  .c-category__list li:nth-of-type(odd)::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: var(--color-bk);
  }

  .c-category__list li:nth-of-type(even)::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: var(--color-bk);
  }

  .c-category__list li:nth-of-type(even) {
    border-right: 1px solid var(--color-bk);
  }

  .p-works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-bottom: 40px;
  }

  .p-works__listItem picture {
    border-radius: 10px;
  }

  .p-works__listItem h3 {
    font-size: 0.75em;
    line-height: 1.6;
  }

  .p-works__listItem a {
    gap: 10px 0;
  }

  .p-works__tagList {
    gap: 5px;
  }

  .p-works__tagList li {
    font-size: 10px;
    line-height: 20px;
    padding: 0 5px;
  }

  .c-pager__block {
    margin-top: 60px;
  }

  ul.page-numbers {
    gap: 20px;
  }

  a.page-numbers,
  span.page-numbers {
    font-size: 1.2em;
  }
}

.p-contact__wrap {
  padding-block: 80px;
}

.p-contact__bottomBlock {
  background: var(--color-yel);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.p-contact__bottomText h2 {
  font-size: 1.563em;
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--color-navy);
  letter-spacing: 0.1em;
  text-align: center;
}

.p-contact__bottomText {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.p-contact__bottomBlock .c-btn__contact {
  width: 400px;
}

@media screen and (max-width: 480px) {
  .p-contact__wrap {
    padding-block: 60px;
  }

  .p-contact__bottomBlock {
    padding: 30px 20px;
  }

  .p-contact__bottomBlock .c-btn__contact {
    width: 100%;
  }

  .p-contact__bottomBlock .c-btn__center {
    margin: 0;
  }
}

/* single
----------------------------------------------- */

.p-works__detailWrap {
  padding-block: 0 80px;
}

.p-works__detailWrap .l-container {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}

.p-works__detailImage {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 12 / 8;
}

.p-works__detailImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-works__detailText .title {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 20px 0;
  margin-bottom: 40px;
}

.p-works__detailText .product {
  font-size: 1.25em;
  font-family: var(--font-zen);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.8;
}

.p-works__detailText .comment {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-bk);
  margin-bottom: 20px;
  font-size: 0.875em;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.p-works__detailText .info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 0.875em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  gap: 10px 10px;
}

.p-works__detailText .info dt {
  width: 200px;
  font-weight: 400;
  position: relative;
  padding-right: 1em;
}

.p-works__detailText .info dt::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}

.p-works__detailText .info dd {
  width: calc((100% - 200px) - 10px);
  word-break: break-all;
}

.p-works__detailText .info dd a {
  text-decoration: underline;
}

.p-works__wrap02 {
  padding-block: 0 20px;
}

@media screen and (max-width: 480px) {
  .p-works__detailWrap .l-container {
    gap: 40px 0;
  }

  .p-works__detailText .title {
    margin-bottom: 20px;
    gap: 10px 0;
  }

  .p-works__detailText .product {
    font-size: 1em;
  }

  .p-works__wrap02 .c-title02 {
    margin-bottom: 40px;
  }

  .p-works__detailText .info {
    font-size: 0.75em;
    flex-direction: column;
  }

  .p-works__detailText .info dt {
    padding-right: 0;
  }

  .p-works__detailText .info dt,
  .p-works__detailText .info dd {
    width: 100%;
  }

  .p-works__detailText .info dd + dt {
    margin-top: 10px;
  }

  .p-works__detailText .info dt::after {
    position: relative;
    right: auto;
  }

  .p-works__detailText .comment {
    padding-bottom: 20px;
    font-size: 0.75em;
  }
}

/* ----------------------------------------------
CONTACT
----------------------------------------------- */

.p-contactForm__wrap {
  padding-block: 0 80px;
}

.p-contactForm__wrap p + p {
  margin-top: 40px;
}

.p-contact__form {
  max-width: 740px;
  margin-inline: auto;
  padding-block: 60px;
}

.p-contact__group {
  display: flex;
  align-items: flex-start;
  gap: 0 40px;
}

.p-contact__group + .p-contact__group {
  margin-top: 40px;
}

.p-contact__title {
  width: 200px;
  line-height: 40px;
  font-weight: 500;
  font-size: 0.875em;
}

.p-contact__input {
  width: calc(100% - 240px);
}

.p-contact__privacyBlock {
  margin-top: 60px;
}

.p-contact__privacyBlock > p {
  font-size: 0.875em;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 16px;
}

.p-contact__privacyScloll {
  padding: 40px 30px;
  overflow-y: scroll;
  height: 300px;
  border-radius: 10px;
  font-size: 1em;
  line-height: 1.9;
  font-weight: 400;
  margin-block: 40px;
  background: var(--color-wh);
}

.p-contact__privacyScloll h2 {
  font-size: 1.12em;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.p-contact__privacyScloll p + h2,
.p-contact__privacyScloll ol + h2 {
  margin-top: 40px;
}

.p-contact__privacyScloll ol {
  padding-left: 1em;
  list-style-type: decimal;
  margin-top: 20px;
  font-size: 1em;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.p-contact__form .req {
  background: var(--color-navy);
  color: var(--color-wh);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.p-contact__form .no-req {
  background: var(--color-gray);
  color: var(--color-wh);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.p-contact__form .wpcf7-spinner {
  display: none;
}

.p-contact__privacyBlock .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.p-contact__privacyBlock .wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.p-contact__privacyBlock .wpcf7-list-item label {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}

.p-contact__privacyBlock .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  border: none;
  background: var(--color-wh);
  transform: translateY(-50%);
}

.p-contact__privacyBlock input[type="checkbox"] {
  display: none;
}

.p-contact__privacyBlock
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 8px;
  left: 5px;
  width: 20px;
  height: 10px;
  border-left: 4px solid var(--color-navy);
  border-bottom: 4px solid var(--color-navy);
  transform: rotate(-45deg);
}
.c-table__wrap {
  margin-block: 40px;
}

.c-table__primary,
.c-table__primary tbody {
  width: 100%;
}

.c-table__primary {
  border-collapse: collapse;
  border-spacing: 10px;
}

.c-table__primary thead {
  background: var(--color-gray);
  color: var(--color-wh);
}

.c-table__primary tr {
  border-bottom: 1px solid var(--color-bk);
}

.c-table__primary th {
  width: calc(320vw / 9.3);
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.c-table__primary td {
  width: calc(610vw / 9.3);
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  vertical-align: middle;
}

.c-table__primary th,
.c-table__primary td {
  padding: 20px 20px;
}

.p-contactForm__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #dc3232;
  margin-top: 16px;
  display: block;
}

.conf .c-form__inputText {
  padding-top: 10px;
}

@media screen and (max-width: 480px) {
  .p-contactForm__wrap {
    padding-block: 0 60px;
  }

  .p-contactForm__wrap p + p {
    margin-top: 20px;
  }

  .p-contact__group {
    flex-direction: column;
    gap: 10px 0;
  }

  .p-contact__title {
    width: 100%;
  }

  .p-contact__input {
    width: 100%;
  }

  .p-contact__privacyScloll {
    margin-top: 10px;
    padding: 20px;
  }

  .p-contact__privacyScloll h2 {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .c-table__primary th,
  .c-table__primary td {
    padding: 10px;
    font-size: 12px;
  }

  .p-contact__privacyScloll ol {
    font-size: 0.85em;
  }

  .p-contact__privacyBlock .wpcf7-list-item label {
    font-size: 1em;
  }

  .p-contact__privacyBlock .wpcf7-form-control-wrap {
    margin-bottom: 40px;
  }

  .p-contact__privacyBlock
    input[type="checkbox"]:checked
    + .wpcf7-list-item-label::after {
    top: 5px;
  }
}
