:root {
    --color-text:#111111;
    ---color:#BAA8A2;
    --secondary-color:#afa39b;
    --font-size-base: 1rem;
    --font-size-small:0.875rem;
    font-family:sans-serif;
    font-style: normal;
    font-weight:400;
    
}
body {
    margin:0;
    padding:0;
    color:var(--color-text);
}
a {
    text-decoration: none;
    color:var(--text-color);
    word-wrap:break-word;
    overflow-wrap: break-word;
}
li {
    list-style: none;
}
:root {
  --text-bk-color: #111111;
  --text-wh-color:#ffffff;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/*ヘッダー*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 24px;
    z-index: 2;
    max-width: 1200px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
}
/*ヘッダーロゴ（トップページへのリンク）*/
.header-logo__a-design {
    width:45%;
}
/* ホバー時に透明度を下げて、クリックできることを視覚的に示す*/
.header-logo__a-design:hover {
    opacity: 0.5;
    transition: 0.3s;
}
/*ハンバーガーメニュー*/
.hamburger {
    display: none;
}
.header-nav {
    display: flex;
    gap:40px;
}
.header-nav__list {
    display: flex;
    gap:40px;
    align-items: center;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: .07em;
}
/*お問い合わせボタン　視覚的に示す*/
.header-nav__item:nth-child(5) {
    width:150px;
    height:40px;
    line-height:40px;
    text-align: center;
    background-color: var(--color-text);
    color:var(--text-wh-color);
}
.header-nav__item a {
    position: relative;
} 
.header-nav__item a::after {
    position: absolute;
    content:"";
    bottom:-2px;
    left:0;
    width:100%;
    height:1px;
    background: var(--color-text);
    transform: scale(0,1);
    transform-origin: center top;
    transition: transform 0.3s;
}
.header-nav__item a:hover::after {
    transform: scale(1,1);
}
.header.is-prepare {
  transform: translate(-50%, 16px); /* X: -50% を残し、Y: 16px だけ下げる */
  opacity: 0;
  will-change: transform, opacity;
}

/* キーフレームも合成版に */
@keyframes adesign-header-rise {
  from { transform: translate(-50%, 16px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}

.header.is-prepare.is-animated {
  animation: adesign-header-rise .2s cubic-bezier(.25,1,.5,1)  forwards;
}

.main-visual {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
}
.main-visual__video {
    position:absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}
.main-visual__content {
    display: flex;
    flex-direction: column;
    margin:0 150px;
    z-index: 2;
    position: relative;
}
.main-visual__content img{
    width:55%;
    height:auto;
}
.main-visual__title {
    font-weight: 400;
    font-size: 20px;
    margin: 48px 0;
    letter-spacing: .22em;
}
.main-visual__ja {
    font-weight: 400;
    font-size: 18px;
}
/*ハンバーガーメニューのボタン*/
.btn-trigger {
    display: none;
}
/*お問い合わせフォームへのボタン*/
.main-visual > .main-visual__content > .works__btn:first-of-type {
    margin:0;
}
/*ロゴ+CTAボタンのフェードイン*/
.anim-content.slidein.is-animated {
    animation: slideIn 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  40% {
   opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*スクロールアニメーションここから*/
.vertical_text {
    font-size: 1rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
    writing-mode: vertical-rl;
    transform: rotate(360deg);
    position: absolute;
    bottom: 0;
    right: 30px;
    color:var(--color-text);
    z-index: 1;
}
.vertical_text::after {
    content: '';
    display: inline-block;
    position: relative;
    width: 1px;
    height: 80px;
    background-color: var(--color-text);
    bottom: 0;
    transform: translateX(-50%);
    animation: scroll 1.8s infinite;
    z-index: 1;
}
/*スクロール文字のアニメーション*/
@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
  /*スクロールアニメーションここまで*/

/*Serviceサービス*/
#service-top {
    margin:124px auto 0;
    max-width: 1100px;
}
.service-top__wrapper {  
    display: flex;
} 

.main-title  {
    font-size: 4.5rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 8px 0;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.05em;
    color:var(--secondary-color);
    text-align:left;
}
/*タイトルを下からふわっと表示させる*/
.reveal {
    opacity: 0;
    transition:
    opacity .7s ease,
    transform .7s ease, 
    clip-path 1s cubic-bezier(0.37,0,0.63,1);
    will-change: opacity, transform, clip-path;
}
.reveal--slide-up {
    transform: translateY(16px);
}
.reveal--slide-left {
    transform: translateX(-16px);
}
.reveal--slide-right {
    transform: translateX(16px);
}
/*お問い合わせセクションの表示時最終状態*/
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
/*背景左から右へ*/
.reveal--wipe {
    position: relative;
    overflow: hidden;
}
.reveal--wipe::before {
    content:"";
    position: absolute;
    inset: 0;
    background: var(---color);
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.37,0,0.63,1);
    will-change: transform;
}
.reveal--wipe.is-visible::before {
  transform: translateX(100%);
}

.service-top__description {
    text-align: left;
    align-content: space-around;
    width:54%;
    font-size: 1rem;
    margin: 40px 0;
}
.service-top__inner {
    justify-content: space-between;
    display: flex;
    margin: 0 0 96px 0;
    width:100%;
}
.service-top__inner img {
    align-items: flex-start;
    max-width: 100%;
    height:auto;
    object-fit: cover;
}
.service-top__inner:nth-child(2) {
    flex-direction: row-reverse;
}
.service-top__list img {
    width:100%;
    max-width: 480px;
    height:auto;
    box-shadow: 15px 15px 0 var(--secondary-color);
}
.service-top__list > .service-top__inner:nth-of-type(2) img {
  box-shadow: -15px 15px 0 0 var(--secondary-color);
}
.service-top__item {
    display: block;
    width: 46%;
    position: relative;
}
.service-top__num {
    text-align: right;
    display: flex;
    justify-content: left;
    font-size: 1.2rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    letter-spacing: .08em;
    align-items: center;
    color:var(--secondary-color);
}

/*2番目のみ入れ替える*/
.service-top__inner:nth-of-type(2) .service-top__num {
    flex-direction: row-reverse;
    justify-content: left;
}
.service-top__inner:nth-of-type(2) .service-top__num::before {
    margin: 0 0 0 16px;
}

.service-top__title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .07em;
    line-height: 1.4;
    margin: 8px 0 40px 0;
    display: inline-block;
}
/*ホバーアニメーション*/
.service-top__title::after {
    content:"";
    position: absolute;
    left:0;
    bottom:-5px;
    width:100%;
    background: var(--secondary-color);
    transform-origin: center;
    transition:transform 0.3s ease-out;
    height: 1px;
    transform: scaleX(0) scaleY(0.5);
}
.service-top__item:hover .service-top__title::after {
    transform: scaleX(1);
}
.service-top__txt {
    text-align: left;
    letter-spacing: .07em;
    font-weight: 400;
    line-height: 1.8;
}

/*Works実績*/
#works-top {
    margin: 120px auto;
    width:100%;
    background-color:var(--secondary-color);
}
.works__inner {
    padding:80px 0;
    margin:auto;
    max-width: 1100px;
}
#works-top .main-title {
    color:var(--text-wh-color);
    text-align: center;
}
.main-title-2 {
    font-size: 3rem;
    margin: 0 0 48px 0;
    text-align: center;
    font-family: serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.works-top__description {
    padding:24px 48px;
    text-align: center;
    color:var(--text-wh-color);
    letter-spacing: .07em;
    font-weight: 400;
    line-height: 1.8;
}
.works-top__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    margin:80px 0;
    padding:0;

}
.works-top__contents {
   display: flex;
    width: 30%;
}
.works-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.works-item__img {
    overflow: hidden;
}
.works-item {
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    width:100%;
}
.works-item img {
    width:100%;
    display: block;
    height:auto;
     overflow: hidden;
    transition: transform .6s ease;
}
.works-item:hover img {
    transform: scale(1.1);
} 
.works-item__body {
    padding:0 16px 16px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.works-item__categories {
    display:flex;
    flex-wrap: wrap;
    padding: 16px 0;
    gap: 8px;
}
.works-item__category {
    background-color: var(--secondary-color);
    color:var(--text-wh-color);
    padding: 4px 16px;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
     font-size: 0.8rem;
    letter-spacing: .07em;
}
.works-item__title {
    font-weight:500;
    font-size: 1rem;
    margin: 0;

}
.works-item__text {
    font-size: 0.9375rem;
}
.works-item__more-button {
    display: inline-block;
}

.works-item__more-button-link {
    position:relative;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    display: inline-block;
    line-height: 1;
    width: 100%;
    text-align: right;
}
/* 横線のベース。初期は幅0で非表示、hoverで右に向かって伸びる */
.works-item__more-button-link::before {
    content:"";
    position:absolute;
    left:0;
    top:50%;
    border-top: 1px solid var(--secondary-color);
    width:0;
    background: var(--secondary-color);
    transform: translateY(-50%);
    transition: width .45s ease;
} 
/* 先端の矢印。初期は先頭(左)・非表示、hoverで線の先端へ移動＆フェードイン */
.works-item__more-button-link::after {
  content: "";
  position: absolute;
  left: 0;             
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
  transform: translateY(-45%) rotate(45deg);
  opacity: 0;
  transition: left .45s ease,opacity .2s ease;
}
/* ホバーすると横線が伸び、先端に矢印が出てリンクであることを視覚的に示す */
.works-item__more-button:hover .works-item__more-button-link::before,
.works-item__more-button-link:hover::before {
    width: 180px; 
    height: 12.7px;
    background: var(--secondary-color);
    clip-path: polygon(0 46.1%, 96.5% 46.1%, 96.5% 0, 100% 50%, 96.5% 100%, 96.5% 53.9%, 0 53.9%); /* 左→右に線が伸びる */
}
/* ホバー時：矢印が線の先端まで移動し、フェードイン */
.works-item__more-button:hover .works-item__more-button-link::after,
.works-item__more-button-link:hover::after {
  left: calc(180px - 6px);/* 矢印が線の先端まで移動 */
  opacity:0;                 
}

/*制作実績一覧ボタン*/
.works__btn {
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-text);
    font-family: "futura-pt", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    margin: 80px auto;
    width:300px;
    height:60px;
}
.works__btn::after {
    content: "";
    width:0%;
    height:100%;
    background:var(--text-wh-color);
    position: absolute;
    transition: all .45s ease-in-out;
    right:0;
    z-index: 1;
    pointer-events: none;
}

.works__btn:hover::after {
    right:auto;
    left:0;
    width:100%;
}

.works__btn span {
    text-align: center;
    width:100%;
    padding:18px 25px;
    color:var(--text-wh-color);
    font-size: 1.125em;
    font-weight: 700;
    letter-spacing: 0.3em;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.works__btn:hover span {
    color:var(--color-text);
    animation:  scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
 0% {
  transform: scale(1);
 }

 50% {
  transform: scale(0.95);
 }

 100% {
  transform: scale(1);
 }
}

/*私について*/
#about-top {
    max-width: 1100px;
    width:100%;
    margin: 80px auto 60px;
}
.about__wire {
    display: flex;
    margin: 40px 0;
    width:100%;
}
.about__picture {
    width: 30%;
}
.about__picture img {
    width:300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 8px 8px 0 var(--secondary-color);
    overflow: hidden;
    object-position: center;
    object-fit: cover;
    display:block;
}
.about__content {
    margin:0 0 0 120px;
    width:60%;
}
.about__name-en {
    font-size: var(--font-size-small);
    color:var(--secondary-color);
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-size: 4rem;
    letter-spacing: .05em;
    margin: 0;
}
.about__name-ja {
    font-size: 2rem;
    margin: 4px 0 24px;
}
/*スキルリスト*/
.about__skills-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 48px 0;
    gap:8px;
    font-size: 1.25rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
}
.about__skills-item::after{
    content:"/";
    margin:0 4px;
}
.about__skills-item:last-child::after {
    content: none;
}
.about__message {
    margin:0;
    line-height: 2;
    font-weight: 400;
    letter-spacing: .07rem;
}
.about__skills-title {
    margin: 0 0 16px;
    font-size: 0.875em;
    letter-spacing: .07em;
    font-family: "futura-pt", sans-serif;
    font-weight:400;
}
/*お問い合わせ*/
#contact-cta {
    margin:80px auto 0;
}
.contact-cta-bg {
    background-image: url(./image/contact__bg.png);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    width: 100%;
    height: 360px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* position: relative; */
}
#contact-cta .main-title {
    text-align: center;
    margin: 0 0 32px;
}
#contact-cta .main-title  {
    font-size: 3rem;
    font-weight: 400;
    color:#111111;
}
.contact-cta-wrapper {
    position: static;
    transform: none;
}

.contact-cta__description {
    text-align: center;
    margin:32px 0;
}
#contact-cta .works__btn {
    margin:0 auto;
    text-align: center;
}
/*フッター*/
.footer {
    width:100%;
    margin:80px auto 0;
    background: var(--color-text);
    color:#fff;
}
.footer__wrapper {
    flex-wrap: wrap;
    display:flex;
    justify-content: space-between;
    max-width: 1100px;
    width:100%;
    align-items: center;
    margin: auto;
}
.footer__logo-link:hover {
    opacity: 0.5;
    transition: 0.3s;
}
.footer__nav {
    display: flex;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: .07em;
}
.footer__nav-list {
    display: flex;
    padding:0;
    gap:30px;
}
.footer__nav-item a {
    position: relative;
} 
.footer__nav-item a::after {
    position: absolute;
    content:"";
    bottom:-2px;
    left:0;
    width:100%;
    height:1px;
    background: var(--text-wh-color);
    transform: scale(0,1);
    transform-origin: center top;
    transition: transform 0.3s;
}
.footer__nav-item a:hover::after {
    transform: scale(1,1);
}
.copy-right {
    text-align: center;
    font-family: "futura-pt", sans-serif;
    font-size: 0.875rem;
    letter-spacing: .07em;
    font-weight: 300;
    margin:0;
    padding:0 0 16px 0;
}
/*Worksページ（実績一覧）*/
/*TOPページ以外は上部から余白を設ける*/
body:not(.top__page) main {
    padding:100px 0 0 0;
}
.page-visual {
    background-image: url(./image/a_design__header-bg.png);
    background-position: center;
    background-size: cover;
    width:100%;
    height:320px;
    position: relative;
    
}
.page-visual__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-visual__title-en {
    display: block;
    text-align: center;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
}
.page-visual__title-ja {
    display: block;
    font-size: 2rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
}
/*実績一覧*/
.works__page .works__inner .works-top__description {
    color:var(--color-text);
    line-height: 2;
}
/*各実績紹介ページ共通*/
body:not(.works__page) .page-visual__title-ja{
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}
.project-detail {
    margin:80px auto;
    max-width: 960px;
    display: block;
    text-align: center;
}
.project-detail__img {
    width:88%;
}
.project-detail__overview-en {
    font-size: 1.25rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    letter-spacing: .07em;
    color:var(--secondary-color);
    margin:120px 0 0 0;
}
.project-detail__overview {
    font-size: 2rem;
    font-weight:300;
    margin: 8px 0 0 0;
}
/*実績概要詳細*/
.project-detail__row {
    display: grid;
    grid-template-columns: 20% 80%;
  column-gap: 1rem;
    border-bottom: dotted 1px var(--secondary-color) ;
}
.project-detail__description {
    letter-spacing: .07em;
    font-weight: 400;
    line-height: 1.8;
    margin:56px auto;
}
.project-detail__list {
    display: grid;
    column-gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    width:100%;
    margin: 120px 0
}
.project-detail__title {
    padding:48px 0;
}
.project-detail__content {
    padding:48px 0;
    text-align: left;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
}
.project-detail__link {
    border-bottom :solid 1px var(--color-text);
}
.project-detail__link:hover {
    opacity: 0.5;
    transition: 0.3s;
}
.project-detail__title span {
    display: block;
    letter-spacing: .07em;
}
.project-detail__label-en {
    font-size: 1rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    color:var(--secondary-color);
    margin: 0 0 8px 0;
}
.project-detail__content-list {
    padding:0;
}
/*サイト全体の画像*/
.page-visual__full-bleed {
    margin: 160px auto;
    width:100%;
}
.project-detail__full-bleed-img {
    display: block;
    width: 100%;
    margin: auto;
}
/*サイト全体の画像をスクロールさせる場合*/
.page-visual__container {
    max-width: 960px;
    width:100%;
    margin:auto;
    margin:240px auto;
}
.page-visual__scroll {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}
/*料金・サービスページ*/
.price__wrapper {
    margin:80px auto;
    text-align: center;
}
.price__title {
    display: flex;
    flex-direction: column;
}
.price__title-en {
    font-size: 1.5rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    color:var(--secondary-color);
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}
.price__title-ja {
    font-weight: normal;
    letter-spacing:.05em;
}
.contact__lead.price {
    margin:40px auto;
    line-height: 2;
    letter-spacing: .05em;
}
/*プラン表*/
.price__plan {
    max-width: 1100px;
    width:100%;
    margin:80px auto 120px;
    display: flex;
}
.price__card-wrapper {
    display: flex;
    width:100%;
    gap:2%;
    padding: 0;  
}
.price__card {
    width:33%;
    padding: 24px 20px 88px;
    border: solid 1px var(---color);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    display:block;
}
.price__card-en {
    text-align: center;
    
    color:#fff;
    background: var(---color);
    padding: 8px;
    width: 100%;
    margin: auto;
    font-weight: 500;
    letter-spacing: 2px;
}
.price__card-heading {
    text-align: center;
    margin: 32px 0;
    font-size: 1rem;
    font-weight: 500;
} 
.price__card-price {
    text-align: center;
    color:var(---color);
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 0;
}
.yen {
    font-size:1.5rem;
}
.price__description {
    line-height: 1.6;
    letter-spacing:.05em;
}
.price__card-item {
    margin:40px 0 0 20px;
    padding:0;
    position: relative;
}
/* .price__card-wrapper >.price__card:nth-child(odd) .price__card-item {
    margin:60px 0 0 20px;
} */
.price__card-list {
    margin:0 0 8px 0;
    padding: 0 0 0 8px;
    position: relative;
    line-height:1.8;
}
.price__card-list::after {
content: '';
display: block;
position: absolute;
top: .5em;
left: -1.1em;
width: 16px;
height: 8px;
border-left: 3px solid var(--secondary-color);
border-bottom: 3px solid var(--secondary-color);
transform: rotate(-45deg);
}
/*リニューアルをお考えの方へ*/
.renewal {
    margin:80px auto 160px;
    width:100%;
    background: #faf7f2; 
    padding: 120px 0; 
}
.renewal__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.renewal__content {
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:40px;
    /* max-width:1110px; */
    margin:0 auto;
}
.renewal__wire {
    flex:0 0 45%;
    display: flex;
    gap:24px;
    flex-direction: column;
    align-items: flex-start;
}
.renewal__title {
    text-align: left;;
    margin: 0 0 48px 0;
}
.renewal__title-en {
    font-size:1.5rem;
    font-weight:500;
    color:var(--secondary-color);
    font-family:"futura-pt", sans-serif;
    letter-spacing: 0.05em;
}
.renewal__title-ja {
    font-size: 42px;
    line-height: 1.4;
    font-weight: normal;
    display: flex;
    flex-direction: column;
}
.renewal__description {
    line-height:1.8em;
    letter-spacing: .05em;
    text-align: left;
    max-width: 550px;
}
.renewal__description:nth-last-of-type(1) {
    margin:32px 0 0 0;
    display: block;
    content:"";
}
.renewal__img {
    flex:0 0 55%;
    display: flex;
    justify-content: flex-end;
}
.renewal__img img {
    width:100%;
    height:auto;
    object-fit: cover;
}
/*コーディング・ワードプレス構築*/
.price-section {
    margin:80px auto;
}
.price-section__wire {
    max-width: 1100px;
    width: 100%;
    border: solid 1px var(--secondary-color);
    background: #fff;
    padding: 80px 160px;
    margin: auto;
    position:relative;
}
.price-section__wire::before {
    position:absolute;
    content:"";
    top:-16px;
    left:16px;
    right: 16px;
    bottom: -16px;
    border: 1px solid var(--secondary-color);
    pointer-events: none;
}

.price-section__title {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 0 48px 0;
}
.price-section__title:nth-of-type(n+2){
    margin:104px auto 40px;
}
.price-section__title-en {
    font-size:1rem;
    font-weight:500;
    color:var(--secondary-color);
    font-family:"futura-pt", sans-serif;
    margin: 0 0 8px 0;
    letter-spacing: 0.05em;
}
.price-section__title-ja {
    font-size: 1.5rem;
    font-weight: 500;
}
.price-section__description {
    line-height: 2em;
    letter-spacing: .05em;
    text-align: center;
}
/*料金表*/
.price-table {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}
.price-table__item,.price-table__price {
    padding:24px 0;
}
.price-table__item {
    text-align: left;
    font-weight:normal;
}
.price-table__price {
    text-align: right;
    white-space: nowrap;
}
.price-table tr:first-child{
    border-top:none;
}
.price-table tr{
    border-top: 1px solid #f4f0ed; 
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.price-table th{
    display: flex;
    justify-content: space-between;
    padding: 0;
    font-weight: 500;
}
.price-table tr:last-child{
    border-bottom:1px solid #f4f0ed;
}
/*お問い合わせから制作までの流れ*/
.flow {
    margin: 120px auto;
    max-width: 1100px;
    width: 100%;
}
.flow-section__title {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.flow-section__title-en {
    font-size:2rem;
    font-weight: 500;
    color:var(--secondary-color);
    font-family:"futura-pt", sans-serif;
    margin: 0 0 8px 0;
    letter-spacing: 0.05em;
}
.flow-section__title-ja {
    font-size: 1.5rem;
    font-weight: normal;
    margin:0;
}
.flow__wire {
    margin:auto;
    padding:40px 80px;
}
dd {
  margin-left: 0;
}

/* 初期状態（非表示） */
.flow-list.reveal--slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}
/* 疑似要素も初期状態 */
.flow-list.reveal--slide-up::before {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}
/*表示後*/
.flow-list.reveal--slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*表示後疑似要素*/
.flow-list.reveal--slide-up.is-visible::before {
  opacity: 1;
  transform: translateY(0);
}
.flow-list {
  padding-left: 120px;
  position: relative;
}
.flow-list::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
.flow-list > li {
  position: relative;
}
.flow-list > li:not(:last-child) {
  margin-bottom: 8vh;
}
.flow-list > li .icon {
    font-size: 1rem;
    color: #fff;
    font-family:"futura-pt", sans-serif;
    font-weight:600;
    letter-spacing: 1px;
    background: var(--secondary-color);
    padding: 24px 40px;
    display: block;
    position: absolute;
    top: 0;
    left: -180px;
    z-index: 100;
}
.flow-list > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent var(--secondary-color);
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow-list > li dl {
  padding-left: 80px;
  position: relative;
}
.flow-list > li dl::before,
.flow-list > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow-list > li dl::before {
  width: 8px;
  height: 8px;
  margin-top: 16px;
  background:var(--secondary-color);
  border-radius: 50%;
  left: -4px;
}
.flow-list > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 4px;
  top: 36px;
}
.flow-list > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color:var(--secondary-color);
  margin-bottom: 1vh;
}

/*お問い合わせページ*・フォーム*/
.contact__lead {
    margin: 80px auto;
    text-align: center;
}
#contact_form {
    margin:67px auto 70px;
    max-width: 1110px;
    width:100%;
}
#contact_form p {
text-align: center;
color:var(--color-text);
font-size: 1rem;
}
.contact__form-container {
    margin: 80px auto;
    width:960px;
    max-width: 100%;
    background: #faf7f2;
}
.contact__form-inner {
    margin: auto;
    padding:80px 0;
    max-width: 592px;
    width:100%;
}
.required_label {
    display: flex;
} 

.required {
    display:flex;
    align-items: center;
    border: none;
    margin: 0;
    padding: 4px 0;
}
.required_mark {
    color: #9a827c;
    font-size: 12px;
    margin-left: 21px;
}
.last_required_mark {
    color: #9a827c;
    font-size: 12px;
    margin-left:82px;
}
input {
    margin-right: 3px;
}
label{
    margin: 0 1.5rem 0 0;
    font-size: 0.875rem;
    letter-spacing: .07em;
}
label:nth-child(4) {
    margin: 0;
}
.required_form {
    display:flex;
    padding-top: 2rem;
    align-items: center;
    font-size: 0.875rem;
    color:#333333;
    letter-spacing: 0.8px;
    margin: 0;
}
#name {
    max-width: 600px;
    width:100%;
    height: 40px;
    margin-top: 8px;
    padding: 16px 8px;
    border-radius: 6px;
    border: solid 1px #AAAAAA;
}
#company_name {
    max-width: 600px;
    width:100%;
    height: 40px;
    margin-top: 8px;
    border-radius: 6px;
    margin: 8px 0 0 0;
    padding: 16px 8px;
    border: solid 1px #AAAAAA;
}
#email {
    max-width: 600px;
    width:100%;
    height: 40px;
    margin-top: 8px;
    padding: 16px 8px;
    border-radius: 6px;
    border: solid 1px #AAAAAA;
}
#inquiry {
    width:100%;
    height: 255px;
    margin-top: 8px;
    padding: 16px 4px;
    border-radius: 6px;
    border: solid 1px #AAAAAA;
}
select {
    width:300px;
    height:40px;
    border-radius: 6px;
    border: solid 1px #AAAAAA;
}
select{
    padding:11px 0 10px 29px;
    margin-top: 8px;
}
#contact_form .more {
    text-align: center;
    margin: auto;
}
.form_btn {
    margin-top: 50px;
    text-align: center;
}
/*プライベートサイト*/
/*ヘッダーロゴ部分⇀テキストに変更*/
.top__page .private {
     font-size: 1.5rem;
    font-family: "futura-pt", sans-serif;
}
/*メインビジュアルロゴ⇀テキストに変更*/
.main-visual__private {
     font-family: "futura-pt", sans-serif;
     font-size: 2.5rem;
}
.private .about__picture {
    width:40%;
}
.private .footer__wrapper {
    justify-content: center;
}
@media screen and (max-width: 767px) {
    /*表示切替*/
.pc-only {
    display: none;
}
.sp-only {
    display: block;
}
    /*メインビジュアル*/
.main-visual__content {
    margin:0 30px; 
    z-index: 1;
  }
  .main-visual__content img {
    width:78%;
  }
  .main-visual__title,.main-visual__ja  {
    font-size: 1rem;
  }
  /*CTAボタン*/
  .works__btn  {
    width:240px;
    height: 45px;
    margin:40px auto;
  }
  
.works__btn span {
    font-size: 0.9375rem;
    letter-spacing: 0.2em;
}
/*SP時にはアニメーションさせない*/
.header.is-prepare {
  transform: none; 
  opacity: 1;
  will-change: auto;
}
/* SP時ボタンホバーアニメーションなし */
.works__btn:hover::after {
    width: 0;
  }
  .works__btn:hover span {
    color: var(--text-wh-color);
    animation: none;
  }

  .header {
    width:100%;
    max-width: 100%;
    left:0;
    transform: none;
    padding: 12px 16px;
  }
  .header.is-prepare.is-animated { 
    animation: none; 
}
.header-logo img {
    width: 30%;
}
  .header-nav {
    position: fixed;
    top:0;
    right:-100%;
    width:70%;
    height:100%;
    background: #ffffff;
    color:#111111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  }
  .header-nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    height: 100%;
    width: 100%;
  }
  .header-nav__item a::after {
    position: static;
}
/*ユーザーがタップしたことがわかるよう色を変更*/
.header-nav__item a:active,
.header-nav__item a:focus {
    color:var(--secondary-color);
    transition: color 0.3s ease;
}

  .header-nav.is-active {
    right:0;
  }
  /*ハンバーガーメニュー*/
.btn-trigger {
    position: absolute;
    right:16px;
    top:12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:8px;
    width: 45px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    border: none;
    z-index: 100;
  }

  .btn-trigger span {
    display: block;
    width:100%;
    height:2px;
    background:var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
  }
  .header-nav.is-active {
    display: block;
  }
  /* メニュー開いたときに×印に変化 */
  .btn-trigger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.btn-trigger.is-active span:nth-child(2) {
  opacity: 0;
}

.btn-trigger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  transform-origin: center;
}
/*サービス*/

#service-top{
    margin: 64px auto;
    padding: 0 20px;
    width: 100%;
}
.main-title {
    font-size: 2.5rem;
}
.service-top__txt {
    font-size: 0.875rem;
}
.service-top__description {
    margin: 24px 0 56px;
    font-size: 0.875rem;
    width:100%;

}
.service-top__inner {
    display: flex;
    flex-direction: column;
    margin:0;
}
.service-top__item {
    width: 100%;
    margin: 40px 0;
}
.service-top__inner:nth-child(3) .service-top__item  {
    margin:40px 0 0 0;
 }
.service-top__inner:nth-child(2) {
    flex-direction: column;
}
.service-top__num {
    font-size: 0.875rem;
}
.service-top__title {
    margin: 8px 0 16px 0;
    font-size: 1.2rem;
}
/*実績*/
#works-top {
    margin:0;
    padding:0 20px;
}
.works-top__description {
    padding:0;
    font-size: 0.875rem;
    text-align: left;
}

.works-top__wrapper {
    flex-direction: column;
}
.works-top__contents {
    width:100%;
}
.works__inner {
    padding:40px 0;
}
.works-top__wrapper {
    margin:24px 0;   
}
/*わたしについて*/
#about-top {
    padding:0 20px;
    margin: 40px 0;
}
.about__wire {
    flex-direction: column;
    margin: 16px 0;
}
.about__picture {
    width:100%;
    display: block;
    margin: auto;
}
.about__picture img {
    width:160px;
    height:160px;
    margin:0 auto;
    box-shadow: 6px 6px 0 var(--secondary-color);
}
.about__content {
    margin: 24px 0;
    width:100%;
}
.about__name-ja {
    font-size: 1.25rem;
}
.about__name-en {
    font-size: 1.8rem;
}
.about__skills-list {
    font-size: 1.2rem;
}
.about__message {
    font-size: 0.875rem;
}
.about__skills-title {
    margin:16px 0 8px;
    font-size: 0.9375rem;
    font-weight: 500;
}
/*お問い合わせ*/
#contact-cta {
    padding: 0 15px;
    margin: 0;
}
#contact-cta .main-title {
    font-size: 2rem;
    margin: 0;
}
.contact-cta-bg {
    width:100%;
    height:240px;
    padding: 40px 30px;
}
.contact-cta__description {
    margin: 16px 0;
    font-size: 0.875rem;
}
/*フッター*/
.footer__wrapper {
    justify-content: center;
}
.footer__nav {
    margin:0 auto;
    letter-spacing: normal;
}
.footer__logo {
    width: 80%;
    display: block;
    margin: auto;
}
.footer__nav-list {
    gap:20px;
    margin: 0 0 24px 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
}

/*各ページメインビジュアルの高さ、タイトル*/
.page-visual {
    height:240px;
}
.page-visual__title-en {
    font-size: 1.2rem;
}
.page-visual__title-ja {
    font-size: 1.25rem;
    text-align: center;
}

/*実績一覧ページ*/
.works__page .works__inner {
    padding:40px 20px;
}
/*実績詳細ページ*/
/*タイトル*/
body:not(.works__page) .page-visual__title-ja {
    font-size: 1.2rem;
    text-align: center;
}
.page-visual__title-en {
        font-size: 1rem;
}
.page-visual__title {
    width:100%;
}
.project-detail {
    margin:40px auto;
    padding:0 20px;
}
.project-detail__img {
    width:100%;
}
/*概要*/
.project-detail__overview-en {
    font-size: 0.875rem;
    margin: 40px 0 0 0;
}
.project-detail__overview {
    font-size: 1.5rem;
    margin:4px 0 0 0;
}
/*サイト全体の画像*/
.page-visual__full-bleed {
    margin:40px auto;
}
/*サイト全体の縦スクロール画像*/
.page-visual__container {
    margin:40px auto;
}
.project-detail__description {
    margin:32px auto;
    font-size: 0.875rem;
    text-align: left;
}
/*情報整理*/
.project-detail__list {
    margin:0;
}
.project-detail__title {
    padding: 24px 0;
}
.project-detail__content {
    padding: 24px 0;
    margin: 0 0 0 16px;
    font-size: 0.875rem;
}
.project-detail__title span {
    font-size: 0.875rem;
}
.project-detail__label-en {
    font-size: 0.875rem;
} 
/*情報整理セクション　表*/
.project-detail__row {
    justify-content: center;
    align-items: center;
    grid-template-columns: 30% 70%;
}

/*リンクURLの下線*/
.project-detail__link {
    border-bottom :none
}
.project-detail__link {
    overflow-wrap: break-word;
    word-break: break-all;
    display: inline;
    text-decoration: underline;
    text-decoration-color: var(--color-text); 
}
/*お問い合わせページ・フォーム*/
.contact__lead {
    padding: 0 16px;
}
.required_label {
    flex-direction: column;
}
.contact__form-inner {
    padding:24px 20px;
}
.required_mark  {
    margin:0 0 0 8px;
}
/*プライベートサイト*/
/*ヘッダーロゴ部分⇀テキストに変更*/
.top__page .private {
     font-size: 1rem;
    font-family: "futura-pt", sans-serif;
}
/*メインビジュアルロゴ⇀テキストに変更*/
.main-visual__private {
     font-family: "futura-pt", sans-serif;
     font-size: 2rem;
}
.private .main-visual__content {
    z-index: 1;
}
/*About*/
.private .about__picture{
    width:100%;
}
/*フッター*/
.private .footer__nav-list {
    margin:20px auto;
}
/*料金・サービス*/
.price__wrapper {
    margin:40px auto 0;
    padding: 0 20px;
}
.price__title-en {
    font-size:1rem;
}
.price__title-ja {
    font-size: 1.3rem;
}
.contact__lead.price {
    text-align: left;
    letter-spacing: 0;
}
.price__plan {
    margin:40px auto;
}
.price__card-wrapper {
    flex-direction: column;
    gap: 16px;
    margin: 0 16px;
}
.price__card {
    width:100%;
}
.price__plan {
    padding:0 20px;
    margin: 80px auto 0;
}
/*リニューアルをお考えの方へ*/
.renewal  {
    padding:40px 20px;
    margin: 80px auto 0;
}
.renewal__content {
    flex-direction: column;
}
.renewal__description:nth-last-of-type(1) {
    margin:0;
}
.renewal__title {
    text-align: center;
    margin:0;
}
.renewal__title-en {
    font-size: 1rem;
    margin: 0 0 8px 0;
    display: block;
}
.renewal__title-ja {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
}
.renewal__description {
    font-size: 0.9375rem;
    letter-spacing: .02em;
    margin: 24px 0 0;
    
}
/*コーディング・Wordpress*/
.price-section__wire {
    padding:30px;
}
.price-section {
    padding:0 16px;
    margin:40px auto;
}
.price-section__wire::before {
    top:-8px;
    left:8px;
    right: 8px;
    bottom: -8px;
}
.price-section__title-ja {
    font-size: 1.2rem;
}
.price-section__title {
    margin: 0 0 24px 0;
}
.price-section__title:nth-of-type(n+2){
    margin: 40px auto;
}
.price-table__price {
    white-space: normal;
}

.price-section__description {
    font-size: 0.9375rem;
    letter-spacing: .02em;
}
.price-table tr {
    display: block;
}
.price-table th {
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 0 0;
}
.price-table td{
    border :none;
    padding: 8px 0;
    font-size: 0.875rem;
    letter-spacing: .05em;
}
/*お問い合わせから制作までの流れ*/
.flow  {
    margin:80px auto;
    padding: 0 20px;
}
.flow-section__title-ja {
    font-size: 1.2rem;
}
.flow__wire {
    padding:64px 0px;
}
.flow-list {
    margin: 0 auto;
    padding: 0
}
.flow-list > li .icon {
    padding:8px 16px;
    font-size: 0.875rem;
    top:-58px;
    left: 0;
    position: absolute;
}
.flow-list.reveal--slide-up.is-visible::before {
    display:none;
}
.flow-list > li:not(:last-child) {
    margin-bottom: 96px;
}
/*下向き三角の向き*/
.flow-list > li .icon::after {
    border-color: var(--secondary-color) transparent transparent transparent;
   border-width: 8px 6px 0 6px;
    transform: translateX(-50%);
    top:100%;
    left:50%;
}
/*点の位置*/
.flow-list > li dl::before {
    left:0;
}
.flow-list > li dl dt {
    position: relative;
    top:-4px;
    font-size: 1.125rem;
}
dd {
    font-size: 0.9375rem;
    letter-spacing: .05em;
}
}