@charset "uft-8";

/* 
Theme Name:new-portfolio
Description:久保彩佳のポートフォリオサイト
Version:1.0
Author:kubo sayaka
*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Futura PT', 'Jost', Avenir, "Avenir Next", Montserrat, "Helvetica Neue",
    Helvetica, '游ゴシックPr6N', 'Yu Gothic', '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--textcolor);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}


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

ul,
li {
  list-style: none;
}

button {
  all: unset;
  font: inherit;
  cursor: pointer;
}

img {
  vertical-align: bottom;
}

/* 各ページ共通 */

:root {
  --textcolor: #3B3C38;
  --btncolor: #D28F8F;
  --maincolor: #FFF9F8;
}

.l-container {
  max-width: 85vw;
  padding: 150px 0 0 0;
  margin: 0 auto;
}

/* CTAボタン */
.c-button {
  display: inline-block;
  background-color: var(--btncolor);
  color: #ffffff;
  padding: 6px 20px;
  text-align: center;
  font-family: 'Futura PT', 'Jost';
  letter-spacing: 0.9px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-weight: 300;
  position: relative;
}

.c-button:hover {
  background-color: #bf7c7c;
  transition: background-color 0.3s ease;
}

/* セクションタイトル */
/* 英語 */
.c-section__title-en {
  display: inline;
  font-family: 'Futura PT', 'Jost';
  font-size: 56px;
  font-weight: 400;
  position: relative;
  margin-left: 30px;
  margin-right: 0px;
}


.c-section__title-en::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--btncolor);

}

/* 日本語 */
.c-section__title-ja {
  display: inline-block;
  font-family: 'Futura PT', 'Jost';
  font-size: 16px;
  margin-left: 32px;
  position: relative;
}


.c-section__title-ja::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background-color: var(--textcolor);
}

.c-section__title-ja::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background-color: var(--textcolor);
}




/* ヘッダー */
.l-header {
  width: 100vw;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0%);
  transition: transform 0.3s ease;
  z-index: 100;
}

.l-header.scroll {
  transform: translateY(0%);
  transition: transform 0.3s ease;
  box-shadow: 0 1px 10px #debbbb25;
  background-color: #fff;
}


.l-header__inner {
  width: 85vw;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

/* ヘッダーロゴ */
.c-header__logo {
  width: 150px;
  vertical-align: middle;
}


/* ヘッダーナビ */
.l-header__nav-list {
  height: 100%;
  display: flex;
  gap: 36px;
  align-items: center;
}

.l-header__nav-item {
  font-family: 'Futura PT', 'Jost';
  letter-spacing: 0.9px;
  position: relative;
}

.l-hamburger__nav-item {
  width: fit-content;
  margin: 0 auto;
  font-family: 'Futura PT', 'Jost';
  letter-spacing: 0.9px;
  position: relative;
}


.c-btn__text-en {
  font-size: 18px;
}

.c-btn__text-ja {
  font-size: 12px;
  letter-spacing: 0px;
}


.l-nav__item--link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 110%;
  height: 4px;
  border-radius: 30px;
  background-color: var(--btncolor);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.5s ease;
}

.l-nav__item--link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}



/* ハンバーガー （PC非表示）*/
.c-hamburger,
.l-hamburger-menu {
  display: none;
}



/* 各ページのシェイプ装飾 */
.c-blob-container {
  position: relative;
  margin: 200px auto 0;
}

.c-blob__header {
  position: absolute;
  top: -500px;
  right: -5%;
}

.c-blob__footer {
  max-width: 550px;
  position: absolute;
  bottom: 0px;
  left: -10%;
  z-index: 1;
}


/* セクションの人のイラスト */
.c-person-illustration {
  width: 220px;
  height: auto;
}

/* =============================
トップぺージ
============================= */
/* メインビジュアル */
.p-hero {
  width: 100vw;
  height: 100vh;
  position: relative;
}


.p-hero__main-image {
  height: 90vh;
  width: auto;
  position: absolute;
  top: 0;
  right: -10%;
  animation: opacity 2s ease-in-out;
}

.p-hero__blom {
  height: 100vh;
  width: auto;
  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  animation: opacity 2s ease-in-out;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



.p-main__text {
  width: 100%;
  height: fit-content;
  position: absolute;
  bottom: 40%;
  left: 0;
  transform: translateY(50%);
}


.p-section__title {
  width: 100%;
  font-family: 'Futura PT', 'Jost';
  font-size: 85px;
  font-weight: 500;
  line-height: 1.1;
  transform: translateY(30px);
  opacity: 0;
}


.p-section__title.fade-up {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s ease-out;
}


.p-sub__text {
  margin-top: 24px;
  font-size: 15px;
  letter-spacing: 2px;
  transform: translateY(30px);
  opacity: 0;
}

.p-sub__text.fade-up {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s 0.5s ease-out;
}



/* スクロール */
.p-scroll {
  width: 20%;
  margin-top: 60px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.p-scroll.fade-up {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s 1s ease-out;
}



.p-scroll-text {
  font-family: 'Futura PT', 'Jost';
  font-size: 18px;
  text-align: center;
  transform: rotate(90deg);
}

.p-scroll-border {
  position: relative;
  top: 20px;
  width: 1px;
  height: 100px;
  background-color: #d5d5d5;
  overflow: hidden;
  margin: auto;
}

.p-scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}

@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}


/* サービス */

.p-service {
  position: relative;
}


.p-service__discription {
  max-width: 1000px;
  margin: 100px auto;
  position: relative;
}


.c-service-item {
  max-width: 700px;
  min-height: 250px;
  padding: 36px 24px;
  background-color: #fff;
  border-radius: 200px;
  box-shadow: 0 1px 10px #debbbb25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
}


.p-service__design {
  margin-left: auto;
}

.p-service__coding {
  flex-direction: row-reverse;
  margin-top: 100px;
}

.p-service__text-image {
  width: auto;
  height: 80px;
  position: absolute;
  top: -15%;
  right: 5%;
}

.p-service__text-image--cording {
  left: 5%;
}


.p-service__text-wrapper {
  width: 50%;
}

.p-service__illust {
  width: 110px;
}



.p-service__text-innner {
  font-size: 15px;
  line-height: 1.8;
}

.p-service__tool {
  font-size: 15px;
  margin-top: 16px;
  font-family: 'Futura PT', 'Jost';
}

.p-service__blob {
  position: absolute;
  bottom: -150px;
  left: -10%;
  z-index: -1;
}


.p-service__woman-illust {
  position: absolute;
  bottom: -200px;
  right: 0%;
}





/* 制作実績 */
.p-works {
  width: 100%;
  background-color: var(--maincolor);
  margin-top: 250px;
  border-radius: 100px 100px 0% 0%;
}

.p-works__container {
  max-width: 85vw;
  margin: 0 auto;
  padding: 80px 0 100px;
}

.p-works__title {
  display: block;
  text-align: right;
}

.p-works__list-wrapper {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p-works__list {
  width: 100%;
  margin-bottom: 24px;
}

.p-works__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* 例：横4 : 縦3 = 一般的な画像比率 */
  overflow: hidden;
}

.p-works__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

.p-works__thumb-img:hover {
  scale: 1.05;
  transition: 1s ease;
}



.p-works__item-text {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  align-items: flex-start;
  gap: 8px;
}

.p-works__item-link {
  flex: 1;
}


.p-works__category {
  font-size: 12px;
  min-width: 82px;
  text-align: center;
  border: 1px solid var(--textcolor);
  padding: 3px 12px;
  border-radius: 30px;
  margin-left: 16px;
}

.p-works__description {
  margin-top: 8px;
  font-size: 14px;
}


/* view moreボタン */
.p-works__button-wrapper {
  text-align: center;
  position: relative;
  margin-top:
    52px;
}

.p-works__button {
  display: inline-block;
  padding: 16px 40px;
}


/* flow 制作の流れ */
.p-flow {
  position: relative;
}


.p-flow__wrapper {
  max-width: 700px;
  margin: 64px auto;

}

.p-flow__item {
  width: 100%;
  min-height: 155px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 24px 48px;
  background-color: #ffffff;
  border-radius: 200px;
  box-shadow: 0 1px 10px #debbbb25;
  position: relative;
}

.p-flow__item-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.p-flow__item:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--btncolor);
}

.p-flow__item-text {
  font-size: 15px;
}


.p-flow__number {
  font-family: 'Futura PT', 'Jost';
  font-size: 32px;
  color: var(--btncolor);
}


.p-flow__blob {
  position: absolute;
  top: 150px;
  right: -15%;
  z-index: -1;
}


.p-flow__woman-illust {
  position: absolute;
  bottom: -200px;
  left: 0%;
}



/* about　私について  */
.p-about {
  width: 100%;
  background-color: var(--maincolor);
  margin-top: 250px;
  padding: 100px 0;
  border-radius: 100px 100px 0% 0%;
}

.p-about__container {
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}

.p-about__image-wrapper {
  position: relative;
}


.p-about__image-box {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.p-about__me {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.p-about__text-wrapper {
  max-width: 470px;
  position: relative;
}

.c-section__title {
  margin-bottom: 48px;
}

.p-about__heading {
  margin-bottom: 24px;
  font-size: 18px;
}


.p-about__text {
  position: relative;
  font-size: 15px;
  z-index: 10;
}

.p-about__discription {
  font-size: 15px;
}

.p-about__camera-illust {
  width: 100px;
  position: absolute;
  top: 60px;
  right: -10%;
}

.p-about_blob-border {
  width: 120%;
  height: auto;
  position: absolute;
  top: -10%;
  left: -10%;
}

.p-about_blob-border:nth-last-of-type(2) {
  animation: rotateAnimation 15s linear infinite;
}


@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
    /* 初期状態 */
  }

  100% {
    transform: rotate(360deg);
    /* 360度回転 */
  }
}


.p-about__blob-image {
  width: 100%;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -10;
}



/* フッター */
.l-footer {
  width: 100vw;
  padding: 68px 0;
  position: relative;
  z-index: 0;
}

.l-footer__inner {
  width: 85vw;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.c-button--contact {
  padding: 8px 24px;
  border-radius: 50px;
  margin-top: 40px;
}

.p-footer__copyright {
  display: block;
  margin-top: 40px;
}

.c-btn__footertext-en {
  font-size: 22px;
}

.c-btn__footertext-ja {
  font-size: 13px;
}


/* 共通アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1s ease;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1s ease;
}



/* =============================
archiveページ
============================= */

.p-all-works {
  width: 100%;
  border-radius: 100px 100px 0% 0%;
  background-color: var(--maincolor);
}



.p-category__block {
  width: 100;
  text-align: right;
}

.p-category-title {
  color: var(--btncolor);
  font-family: 'Futura PT', 'Jost';
  margin-right: 16px;
}


.p-all-works__category {
  display: inline-block;
  min-width: 82px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 30px;
  font-size: 14px;
  margin-left: 16px;
  font-family: 'Futura PT', 'Jost';
}


.p-all-works__category:hover {
  background-color: var(--btncolor);
  color: #fff
}

.p-all-works__category.is-active {
  background-color: var(--btncolor);
  color: #fff
}



/* ページネーションボタン */
.c-button--pagenation {
  text-align: center;
  margin-top: 24px;
}

.page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 12px;
  line-height: 40px;
  color: var(--btncolor);
}

.page-numbers:hover {
  color: #fff;
  background-color: var(--btncolor);
}


.prev.page-numbers,
.next.page-numbers {
  display: none;
}

.page-numbers.current {
  color: #fff;
  background-color: var(--btncolor);
}

/* =============================
singleページ
============================= */
.p-works_single__detail {
  width: 100vw;
  margin: 0 auto;
  height: fit-content;
overflow: hidden;
}

.p-works_single__thumbnail-img {
  width: 100%;
  height: 100%;
}

.p-works_single__title {
  font-size: 16px;
}

.p-works_single__text-wrapper {
  max-width: 1050px;
  margin: 48px auto 100px;
  padding: 0 48px;
  position: relative;
}

.p-works_single__header {
  max-width: 1050px;
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 48px;
  border-radius: 60px;
  box-shadow: 0 1px 10px #debbbb25;
}


.p-works__single-text {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  position: relative;
}

.p-works__single-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 2px;
  height: 30px;
  background-color: var(--btncolor);
}

.p-works__single__title {
  flex: 1;
  margin-left: 10px;
}

.p-works__single__description {
  flex: 4;
}

.p-work-detail {
  width: 100vw;
  padding: 160px 0;
  background-color: var(--maincolor);
  border-radius: 100px 100px 0% 0%;
  position: relative;
}



.p-works_single__man-illust {
  position: absolute;
  top: -250px;
  right: 0px;
}


.p-work-detail__container {
  max-width: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: relative;
}

.p-work-detail__pc {
  flex: 3;
}

.p-work-detail__sp {
  flex: 1;
}

.p-work-detail__img {
  width: 100%;
  height: auto;
}



/* =============================
contactページ
.============================= */

.p-contact {
  max-width: 90vw;
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-contact__lead_box {
  display: inline-block;
  text-align: center;
  margin-bottom: 52px;
  position: relative;
}


.p-contact__form {
  width: 100%;
}

.p-contact__field {
  width: 100%;
  margin: 0 auto 32px;
}

.p-contact__label {
  display: block;
  font-size: 14px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.p-contact__input {
  width: 100%;
  max-width: 700px;
  height: 80px;
  border-radius: 10px;
  padding: 8px;
  border: none;
  background-color: var(--maincolor);
}

.p-contact__textarea {
  width: 100%;
  max-width: 700px;
  height: 250px;
  border-radius: 10px;
  padding: 8px;
  border: none;
  background-color: var(--maincolor);
  resize: none;
}

.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border: 2px solid var(--btncolor);
}

.p-contact__input,
.p-contact__textarea {
  color: #333;
  caret-color: #333;
}

.p-contact__button {
  font-size: 16px;
  letter-spacing: 1.2;
  padding: 14px 40px;
  display: inline-block;
}

.p-contact__illust {
  width: 110px;
  height: auto;
  position: absolute;
  top: -50px;
  left: -180px;
}


/* 送信後のメッセージ */
.wpcf7-response-output {
  border: none !important;
  margin-top: 36px !important;
}

/* =============================
404ページ
.============================= */
.p-404 {
  max-width: 90vw;
  margin-bottom: 150px;
  text-align: center;
  position: relative;
  z-index: 2;
}


.p-section__header,
.p-404__leadwrapper,
.p-404__lead--jp {
  margin-bottom: 32px;
}

.c-button--back {
  margin-top: 16px;
  padding: 16px 24px;
}




/* ==========================================
レスポンシブ(タブレット)
========================================== */
@media(max-width:900px) {

  /* 各ページ共通 */
  .l-container {
    max-width: 90vw;
    padding: 100px 0 0 0;
    margin: 0 auto;
  }

  /* 各ページのシェイプ装飾 */
  .c-blob-container {
    position: relative;
    margin: 150px auto 0;
  }

  .c-blob__header {
    max-width: 500px;
    position: absolute;
    top: -350px;
    right: -5%;
  }

  .c-blob__footer {
    max-width: 400px;
    position: absolute;
    bottom: 0px;
    left: -10%;
    z-index: -1;
  }

  .l-header__nav-list {
    display: none;
  }


  /*ハンバーガー*/

  .l-header__nav {
    display: none;
  }

  .c-hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    z-index: 9999;
  }

  .l-hamburger-menu {
    display: block;
  }

  /* ピンクボタン（開くボタン） */
  .c-hamburger__icon--pink {
    width: 60px;
    display: block;
    z-index: 1000;
  }

  /* 白の3本線 */
  .c-hamburger .line {
    position: absolute;
    right: 13px;
    width: 30px;
    height: 4px;
    background: white;
    border-radius: 4px;
  }

  .line:nth-child(1) {
    top: 20px;
  }

  .line:nth-child(2) {
    top: 30px;
  }

  .line:nth-child(3) {
    top: 40px;
  }

  /* 開いた時の ✕マーク */
  .c-hamburger.open .line:nth-child(1) {
    transform: rotate(45deg);
    top: 30px;
  }

  .c-hamburger.open .line:nth-child(2) {
    opacity: 0;
  }

  .c-hamburger.open .line:nth-child(3) {
    transform: rotate(-45deg);
    top: 30px;
  }



  /* --------------------
  メニュー本体
  -------------------- */
  .l-hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--maincolor);
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 120;
    padding: 100px 20px;
  }

  .l-hamburger-menu.open {
    transform: translateX(0);
  }

  .l-hamburger-menu ul li {
    margin-bottom: 40px;
    text-align: center;
  }


  .l-header__hamburger.open {
    transform: translateX(0%);
  }




  /* =============================
トップぺージ
============================= */
  /* サービス */
  .p-service__illust {
    width: 100px;
  }

  .c-service-item {
    gap: 24px;
  }


  .p-service__blob {
    width: 70vw;
    height: auto;
    position: absolute;
    bottom: -100px;
    left: -10%;
    z-index: -1;
  }



  /* 制作実績 */
  .p-works__container {
    max-width: 90vw;
  }



  .p-works__list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


  /* flow 制作の流れ */
  .p-flow__blob {
    width: 70vw;
    height: auto;
  }


  /* about　私について  */
  .p-about__container {
    flex-direction: column;
  }

  .p-about__image-box {
    margin: 0 auto;
  }

  .p-about__text-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .p-about__image-box {
    width: 250px;
    height: 250px;
  }


  .p-about_blob-border {
    width: auto;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }


  .p-about_blob-border:nth-last-of-type(2) {
    animation: rotateAnimation 15s linear infinite;
  }


  @keyframes rotateAnimation {
    0% {
      transform: translate(-50%, 0) rotate(0deg);
    }

    100% {
      transform: translate(-50%, 0) rotate(360deg);
    }
  }


  .p-about__text-wrapper {
    margin-top: 60px;
  }


  /* =============================
archiveページ
============================= */
  /* カテゴリー */
  .p-category__block {
    text-align: left;
    margin-right: auto;
  }

  .p-all-works__category {
    padding: 4px 10px;
    font-size: 13px;
    margin-left: 0px;
  }

  /* =============================
singleページ
============================= */
  /* .p-works_single__detail {
    width: 85vw;
  } */


  .p-works_single__header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .p-works_single__text-wrapper {
    padding: 0 32px;
  }



  /* =============================
contactページ
============================= */
  .p-contact__illust {
    display: none;
  }


}



/* ==========================================
レスポンシブSP（スマホ）
========================================== */
@media(max-width:530px) {

  /* 各ページ共通 */


  /* 各ページのシェイプ装飾 */
  .c-blob__header {
    max-width: 350px;
    position: absolute;
    top: -300px;
    right: -5%;
  }

  .c-blob__footer {
    max-width: 350px;
    position: absolute;
    bottom: 0px;
    left: -10%;
  }


  /* セクションの人のイラスト */
  .c-person-illustration {
    width: 150px;
    height: auto;
  }

  /* トップページ */
  /* スクロール */
  .p-scroll {
    width: 100%;
    margin-top: 60px;
    position: relative;
  }


  /* メインビジュアル*/
  .p-hero__main-image {
    width: auto;
    height: 50vh;
  }

  .p-hero__blom {
    width: auto;
    height: 60vh;
  }

  .p-section__title {
    font-size: 64px;
  }

  /* サービス */

  .c-service-item {
    flex-direction: column-reverse;
    border-radius: 120px;
  }


  .p-service__text-wrapper {
    width: 80%;
  }

  .p-service__illust {
    width: 75px;
  }

  .p-service__text-image {
    width: auto;
    height: 60px;
    position: absolute;
    top: -8%;
    right: 5%;
  }


  /* 制作実績 */
  .p-works__list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .p-works__list {
    margin-bottom: 32px;
  }


  /* flow 制作の流れ */
  .p-flow__item {
    padding: 24px 24px;
  }

  /* about 私について */
  .p-about__image-box {
    width: 250px;
    height: 250px;
  }


  /* =============================
archiveページ
============================= */
  /* カテゴリー */
  .p-category__block {
    text-align: center;
    margin: 0 auto;
  }

  .p-category-title {
    display: block;
    margin: 0 0 12px 0;
  }

  /* =============================
singleページ
============================= */
  .p-works_single__text-wrapper {
    padding: 0 24px;
    font-size: 14px;
  }

  .p-works_single__header {
    padding: 16px 24px;
    justify-content: center;
  }

  .p-works_single__title {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .p-works__category {
    display: inline;
    margin-left: 0;
    margin-bottom: 4px;
  }

  .p-works__single-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 52px;
    position: relative;
  }


  .p-work-detail {
    padding: 80px 0;
  }



  .p-works_single__man-illust {
    position: absolute;
    top: -150px;
    right: 0px;
  }


  .p-work-detail__container {
    max-width: 90vw;
    gap: 24px;
  }

}