
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #606060;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== ロゴ ===== */
.header-logo img {
  display: block;
}

/* ===== 右側まとめ ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===== ナビ ===== */
.global-nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-decoration: none;
  color: #222;

  transition: opacity 0.3s;
}

.global-nav-item a:hover {
  opacity: 0.6;
}

.nav-en {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-ja {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-top: 2px;
  font-weight: 450;
}

/* ===== お問い合わせボタン ===== */
.cta-btn {
  gap: 10px;
  display: inline-block;
  padding: 12px 28px;

  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;

  font-size: 13px;
  letter-spacing: 0.08em;
  /* text-decoration: none; */
 box-shadow: 4px 4px 0px #d5cbe6;
  transition: all 0.3s;
  border: solid 1px;
}

.cta-btn:hover {
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;      /* 影を小さく */
}


.cta-btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 8px;   
  /* ←ここがAUTO感の正体 */
  border-radius: 999px;

  background:linear-gradient(#e4d1e8,#d2d7eb) ;
  color: #ffffff;

  font-size: 14px;
  /* line-height: 1; */
  transition: transform 0.3s;
}

/* #e4d1e8 #d2d7eb */
.cta-btn:hover .cta-btn-box {
  background: #ffffff;
  color: #545454;
  transform: translateX(6px);
}


/* FV部分 */
.fv{
    height: 100vh;
    padding-top: 150px;
}

.fv-inner{padding: auto 0;}
.fv-title{text-align: center;
          /* padding: auto; */
          font-size:32px;
          letter-spacing:3px;
          font-weight: 400;
          color: #3d3d3d;
        }
.fv-text{text-align: center;
      font-size: 20px;
      color: #3d3d3d;

}



.hero {
  display: flex;
  gap: 25px;
  justify-content: center;
  
}


.hero-image{
    width: 30%;
    border-radius: 15px;
  
}
.fv-title{
    font-weight: 450;
    margin-bottom: 25px;
    line-height: 1.3;
}

.fv-title__em {
  position: relative;
  display: inline-block;
  font-weight:450;

  
}

.fv-text{
    font-weight: 440;
    margin-bottom:75px;
    font-size: 14px;
    letter-spacing:2px;
    line-height: 1.5;
}


.fv-title__em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.35em;
  background: rgba(212, 199, 228, 0.8);
  z-index: -1;
}


/* コンセプト部 */
.concept {
  padding: 80px 0;
}
.concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}


/* コンセプト左側わたしのモットー */

.concept__heading {
  width:50%;
  display: flex;
  flex-direction: column; 
  align-items: flex-start; /* ← これ重要 */
  gap: 3px;
}

.concept__accent__inner {
  display: flex;
  align-items: center;
  margin: 0 0 0 -10px;
  gap: 9px;
}



.concept__accent {
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}

.concept__accent__text{
  margin: -1px;
  font-size: 15px;
  letter-spacing: 3px;
}

.concept__title {
  font-size: 25px;
  font-weight: 450;
  letter-spacing: 0.1em;
  margin: 0;
}

/* コンセプト右側文章*/
.concept__body {
  width: 50%;
}

.concept__text {
  font-size: 15px;
  line-height: 2;
  margin: 0 0 24px 0;
  letter-spacing: 0.1em;

}

/* つなぎ目 */
.section-line{
  width: 100%;
}


/* workセクション */
.works{
  background-color: #f4f4f4;
  padding-bottom: 150px;
}



.works__inner {
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}
.works-title {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  font-size: 120px;
  color: #ffffff;
  font-weight: 900;
  padding-bottom: 20px;
  /* line-height: 1;   ← これ絶対入れる */
}
.works-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}

.works_description{
  display: flex;
  gap: 5px;
  
}

.works__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.works__accent__text{
  /* margin: -1px; */
  font-size: 15px;
  letter-spacing: 3px;
  font-size: 24px;
  color: #3d3d3d;
}
.works-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}

.pagination {
  margin-top: 60px;
  text-align: center;
}

.works_description_p{
  margin-top: 5px;
  display: flex;
  gap: 5px;
}

.works__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
}

.portfolio_article{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 80px;
}

.portfolio_image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.portfolio_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* タブレット */
@media (max-width: 1024px){
  .portfolio_article{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media (max-width: 600px){
  .portfolio_article{
    grid-template-columns: 1fr;
  }
}

.portfolio_article_item1{
  width: 100%;
  
}
    
.portfolio {
   padding-bottom: 10px;
   width:100%;
  border-radius: 10px; }


.portfolio_header{
  display: flex;
  gap: 5px;
}

.portfolio__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}
.portfolio_image{
  overflow: hidden;
  /* aspect-ratio: 4 / 3;   */
  border-radius: 10px;
  width: 100%;
}

.portfolio{
  /* width: 100%;
  height: 100%; */
  /* object-fit: cover; */
  transition: transform 0.4s ease;
}
.portfolio_article_item1:hover .portfolio{
  transform: scale(1.1);
}
.portfolio_article_title{
color: #3d3d3d;
font-size: 18px;
letter-spacing: 2px;}



/* 実績もっと見るボタン */
.cta-portfolio-section{
  text-align: center;
}
.cta-portfolio-btn {
  gap: 10px;
  display: inline-block;
  padding: 12px 28px;

  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;

  font-size: 13px;
  letter-spacing: 0.08em;
  /* text-decoration: none; */
 box-shadow: 4px 4px 0px #d5cbe6;
  transition: all 0.3s;
  border: solid 1px;
  
}

.cta-portfolio-btn:hover {
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;      /* 影を小さく */
}


.cta-portfolio-btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 8px;   
  /* ←ここがAUTO感の正体 */
  border-radius: 999px;

  background:linear-gradient(#e4d1e8,#d2d7eb) ;
  color: #ffffff;

  font-size: 14px;
  /* line-height: 1; */
  transition: transform 0.3s;
}

/* #e4d1e8 #d2d7eb */
.cta-portfolio-btn:hover .cta-portfolio-btn-box {
  background: #ffffff;
  color: #545454;
  transform: translateX(6px);
}



.flow{
  background: #ffffff;
  border-radius: 50px;
  margin-top: -100px;
  padding-top: 150px;
}

.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}
.works__accent__text{
  padding-bottom: 10px;
}
.flow-title{
  color: #f4f4f4;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  padding-top: 200px;
}
.flow-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #f4f4f4;
  transform: translateY(20px);
  border-radius: 10px;
  
}
.flow-title::before {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #f4f4f4;
  transform: translateY(20px);
  border-radius: 10px;
}

.flow_description{
  text-align: center;
}

.flow_description_p{
  display: inline-flex;
  gap: 5px;
  padding-bottom: 100px;
}

.flow__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.flow__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
}


/* FLOWセクションボタン */

.cta-flow-btn {
  gap: 10px;
  display: flex;
  padding: 12px 28px;
  justify-content: center;
  align-items: center;

  border-radius: 999px;
  background-color: #ebebeb;
  

  font-size: 13px;
  letter-spacing: 0.08em;
  /* text-decoration: none; */

  transition: all 0.3s;

  
}

.cta-flow-btn:hover {
  background:#888888 ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;      /* 影を小さく */
}


.cta-flow-btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 8px;   
  /* ←ここがAUTO感の正体 */
  border-radius: 999px;

  background:linear-gradient(#7c7c7c,#787878) ;
  color: #ffffff;

  font-size: 14px;
  /* line-height: 1; */
  transition: transform 0.3s;
}

/* #e4d1e8 #d2d7eb */
.cta-flow-btn:hover .cta-flow-btn-box {
  background: #ffffff;
  color: #161616;
  transform: translateX(6px);
}

.cta-flow-btn:hover .cta-flow-btn-ja{
  color: #ffffff;
}

.cta-flow-btn-ja{
  color: #222222;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}

.flow_list{
  max-width: 900px;
  margin: 0 auto;
}
.flow_item{
  display: flex;
  gap: 40px;
  align-items: center;
 border-bottom: 0.05px solid #858585; 
 padding-bottom: 30px;
 padding-top: 30px;
}

.step_number{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step{
  font-size: 35px;
  color: #ede7e7;
  font-weight: 900;
  line-height: 0.8;
}

.step_number_item{
  font-size: 100px;
  color: #ede7e7;
  font-weight: 900;
  line-height: 0.8;
  
}

.flow_description_item{


  display: flex; 
  flex-direction: column;
  gap: 10px;
  align-items: flex-start; 
}


.step_title{
  color: #3d3d3d;
  font-size: 22px;
  letter-spacing: 2.5px;
  font-weight: 450;

}

.step_description{
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight:400;
}





/* 料金セクション */




.price{
  background: #f4f4f4;
  border-radius: 50px;
  margin-top: 100px;
  padding-top: 150px;
  padding-bottom: 100px;
}

.price__inner{
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  /* align-items: flex-start;  */
}

.price-title{
  color: #ffffff;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
}



.price-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}

.price_description{
  display: flex;
  flex-direction: column;
  gap: 5px;
  
}

.price__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.price__accent__text{
  /* margin: -1px; */
  font-size: 15px;
  letter-spacing: 3px;
  font-size: 24px;
  color: #3d3d3d;
}
.price-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}



.price_description_p{
  margin-top: 5px;
  display: flex;
  gap: 5px;
}

.price__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
}



/* ～～～～～料金表～～～～～～～～～～～～～ */
.wrap_all {
  background: #fff;
  padding: 15px 30px 30px 30px;
  border-radius: 15px;
}

.wrap {
  border-bottom: 1px solid #747474;
}


/* ラベルは線じゃなく クリック領域だけ */
/* .wrap label {
  border: none;
  padding: 15px 20px;
}
 */





/* Web　Design　ホームページ制作 */
.price_title{
  display: flex;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 3px;
  gap: 20px;
  font-size: 20px;
  border-bottom: 1px solid #747474;
  
  /* border-bottom: 1px solid #222222; */
  background-color: #ffffff;
}
/* Web　Design　ホームページ制作 のスペース */
/* .wrap label {
  letter-spacing: 5px;
 
} */
/* .wrap{padding: 0 10px;} */

.wrap_all .accordion-label {
  letter-spacing: 5px;
}

/*チェックボックスを非表示にする*/

/* タイトルの箱 */
/* label {

  padding: 10px 20px;
  background: #ffffff;
  display: block;
 
  position: relative;
  cursor: pointer;
  /* border-bottom: 1px solid #222222; */
 


/*三角矢印アイコン*/
.icon {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.5s;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #969696;
}
.icon::before {
  left: 0;
  transform: rotate(45deg);
}
.icon::after {
  right: 0;
  transform: rotate(-45deg);
}
/* 
.wrap {
  border: 1px solid #000;
  margin-bottom: 10px;
} */

/*コンテンツ初めは非表示*/
.content {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
}
/* p {
  margin: 0;
  padding: 1em;
} */

.content_list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding: 20px 30px 30px 30px ;
  gap: 15px;
}

.p_content_list{
  padding: 10px 30px 20px 30px ;
  line-height: 1.9;
  letter-spacing: 2px;
}
.content_total{
  /* background-color: #121212; */
  display: flex;
  flex-direction: column;
  align-items: end;

 gap: 5px;
 padding: 20px 50px 30px 30px ;
}

.content_total_ja{height: 1;}

/*クリックするとコンテンツ表示*/
/* input:checked ~ .content {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
} */

/* アコーディオン表示の際に三角回転 */
/* input:checked ~ label .icon {
  transform: rotate(180deg);
} */

.accordion-toggle {
  display: none;
}

.accordion-label {
  padding: 10px 20px;
  background: #ffffff;
  display: block;
  position: relative;
  cursor: pointer;
}

.accordion-toggle:checked + .accordion-label + .content {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}

.accordion-toggle:checked + .accordion-label .icon {
  transform: rotate(180deg);
}

/* プロフとブログセクション */


.profile_blog{
  background-color: #ffffff;
  border-radius: 50px;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 100px;
}

.profile__heading{
  padding-right: 120px;
}

.blog__heading{
  padding-right: 120px;
}

.profile_blog_inner{
  max-width: 1100px;
  margin: 0 auto;
 gap:70px;
  /* align-items: flex-start;  */
  display: grid;
  grid-template-columns: 450px 1fr;
}


.profile-title{
  color: #e9e9e9;
  font-size: 65px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}


.profile_description{
  display: flex;
  flex-direction: column;
  /* width:500px ; */
  line-height: 1.7;
  letter-spacing: 2px;
}

.profile__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.profile__accent__text{
  /* margin: -1px; */
  
  letter-spacing: 3px;
  font-size: 20px;
  color: #3d3d3d;
   line-height: 1;

}
.profile-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}



.profile_description_p{
  margin-top: 5px;
  display: flex;
  gap: 5px;
}

.profile__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1;
}

.profile_img_inner{
  display: flex;
  padding-bottom: 5px;
  
}
.profile_img{
  width: 200px;

  
}





.profile-title::after {
  content: "";
  flex: 1;
  height: 5px;
  background-color: #ebebeb;
  transform: translateY(5px);
  border-radius: 10px;
}

.profile_main{
  padding: 15px 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile_name{
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 2px;
}

.profile_description{
letter-spacing: 3px;
line-height: 1.8;
padding-bottom: 5px;

}


.blog-title{
  color: #ebebeb;
  font-size: 55px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}

.blog_contents{
  width: 100%;
 
}

.blog_content{
  width: 100%;
}
.blog-title::after {
  content: "";
  flex: 1;
  height: 5px;
  background-color: #e3e3e3;
  transform: translateY(5px);
  border-radius: 10px;
}



/* blogのCSS */

.profile_blog_inner{
  max-width: 1100px;
  margin: 0 auto;
 
  /* align-items: flex-start;  */
  
  
}

.blog_inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.blog-title{
  color: #e9e9e9;
  font-size: 65px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}


.blog_description{
  display: flex;
  flex-direction: column;
 
  
}

.blog__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.blog__accent__text{
  /* margin: -1px; */
  
  letter-spacing: 3px;
  font-size: 20px;
  color: #3d3d3d;
   line-height: 1;

}
.blog-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}



.blog_description_p{
  /* margin-top: 1px; */
  display: flex;
  gap: 5px;
}

.blog__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
  font-size: 15px;
}

.blog_img_inner{
  display: flex;
  padding-bottom: 5px;
  
}
.blog_thumnail{
  width: 150px;

  
}





.blog-title::after {
  content: "";
  flex: 1;
  height: 5px;
  background-color: #ebebeb;
  transform: translateY(5px);
  border-radius: 10px;
}

.blog_main{
  padding: 15px 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog_name{
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 5px;
}

.blog_description{
letter-spacing: 2px;
line-height: 1.7;
padding-bottom: 5px;

}

/* ブログについて */

.blog_item a{
  display: flex;
  border-bottom: 1px solid #a3a2a2;
  padding: 25px 15px 30px 15px;
  gap:15px ;
  align-items: center;
}

.blog_thumnail{
  width:200px;
  border-radius: 5px;
}

.blog_title_box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.blog_day,
.blog_title{
  font-size: 18px;
  letter-spacing: 2px;
}
.blog_thumnail_box img{
  width: 150px;
  height: auto;
}

/* vligボタン */

.cta-blog-section{
  text-align: center;
}
.cta-blog-btn {
  gap: 10px;
  display: inline-block;
  padding: 12px 28px;

  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;

  font-size: 13px;
  letter-spacing: 0.08em;
  /* text-decoration: none; */
 box-shadow: 4px 4px 0px #d5cbe6;
  transition: all 0.3s;
  border: solid 1px;
  
}

.cta-blog-btn:hover {
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;      /* 影を小さく */
}


.cta-blog-btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 8px;   
  /* ←ここがAUTO感の正体 */
  border-radius: 999px;

  background:linear-gradient(#e4d1e8,#d2d7eb) ;
  color: #ffffff;

  font-size: 14px;
  /* line-height: 1; */
  transition: transform 0.3s;
}

/* #e4d1e8 #d2d7eb */
.cta-blog-btn:hover .cta-blog-btn-box {
  background: #ffffff;
  color: #545454;
  transform: translateX(6px);
}

/* フッター */
.footer_line{
  width: 100%;
}

.footer__heading{
  padding-bottom: 50px;
}

.site-footer{
  background: #f4f4f4;

  
}

.footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  /* align-items: flex-start;  */
}

.footer-title{
  color: #ffffff;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 5px;
}



.footer-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}



.footer-title::before {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}

.footer_description{
  display: flex;
  flex-direction: column;
  gap: 5px;
  
}

.footer__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.footer__accent__text{
  /* margin: -1px; */
  font-size: 15px;
  letter-spacing: 3px;
  font-size: 24px;
  color: #3d3d3d;
}
.footer-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}



.footer_description_p{
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.footer__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
}

.footer__accent__text{
  display: none;
}


/* footerbutton */


.cta-footer-section{
  text-align: center;
}
.cta-footer-btn {
  gap: 10px;
  display: inline-block;
  padding: 12px 28px;

  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;

  font-size: 13px;
  letter-spacing: 0.08em;
  /* text-decoration: none; */
 box-shadow: 4px 4px 0px #d5cbe6;
  transition: all 0.3s;
  border: solid 1px;
  
}

.cta-footer-btn:hover {
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;      /* 影を小さく */
}


.cta-footer-btn-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 8px;   
  /* ←ここがAUTO感の正体 */
  border-radius: 999px;

  background:linear-gradient(#e4d1e8,#d2d7eb) ;
  color: #ffffff;

  font-size: 14px;
  /* line-height: 1; */
  transition: transform 0.3s;
}

/* #e4d1e8 #d2d7eb */
.cta-footer-btn:hover .cta-footer-btn-box {
  background: #ffffff;
  color: #545454;
  transform: translateX(6px);
}

.footer_content{
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.footer_logo_opentime{
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer_logo{
  width: 120px;
}

.footer_opentime{
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.final{
  display: flex;
  justify-content: center;
}






/* ページネーション */

/* ===============================
   Pagination
================================ */

.pagination {
  margin-top: 60px;
  text-align: center;
  padding-bottom: 50px;
}

.pagination-list {
  display: inline-flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-list li {
  display: block;
}

.pagination-list a {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  width: 42px;
  height: 42px;

  border: 1px solid #333;
  text-decoration: none;
  color: #333;

  font-size: 14px;
  transition: all 0.3s ease;
}

/* hover */
.pagination-list a:hover {
  background: #979797;
  color: #fff;
}

/* 現在ページ（WPで自動付与される用） */
.pagination-list .current,
.pagination-list .current a {
  background: #333;
  color: #fff;
  pointer-events: none;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* 数字ボタン */
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

/* ホバー */
.pagination .page-numbers:hover {
  background: #f5f5f5;
}

/* 現在ページ */
.pagination .current {
  background: #333;
  color: white;
  border-color: #333;
}

/* 前へ・次へ */
.pagination .prev,
.pagination .next {
  font-weight: bold;
}


.work_title_box__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}

.work_article_innner{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  
  
}

.thmbnail_img{
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  
}

.work_card_a{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work_thumnail{
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.work_card:hover .work_thumnail{
  transform: scale(1.1);
}


.card_wrap{
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}



.work_title_box{
  display: flex;
  align-items: center;
  gap: 5px;
}

/* blog一覧 */

.blog_inner_list{
  max-width: 800px;
  
  display: flex;
  flex-direction: column;

  gap: 20px;
  margin: 0 auto;

  padding-bottom: 150px;
  

}

.blog_section{
  padding-top: 200px;
}


.work_section{
   
}


/* 実績記事各種詳細 */
.work_area_wrap{
  display: flex;
  align-items: stretch;
  gap: 5px;
  margin-bottom: 15px;
  
}

.work_wrap_area{
  margin-bottom: 150px;
}
.work_area{
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.work_area_title_ja{
  font-size: 29px;
  
}

.work_area__accent {
  width: 12px;
 
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}

h6{
  font-size: 36px;
  line-height: 0.8;
 

}

.img_description_area{
  display: flex;
  
  gap: 50px;
}
.work_img_area{
  flex: 0 0 500px;   /* 固定幅 */
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 100%;
}

.work_img{
  width: 100%;
  height: auto;
  display: block;
}

.work_main_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work_main_list_item{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.work_main_list_item_title{
  display: block;
  font-size: 18px;
  background-color: #f1f1f1;
  padding: 10px 15px;
  font-weight: 500;
  letter-spacing: 6px;
}
.work_main_list_item_destriction{
  letter-spacing: 3px;
  font-size: 16px;
  line-height: 1.8;
    margin-left: 15px;
}
.work_main_list_item_{
  font-size: 17px;
  letter-spacing: 8px;
  line-height: 1.5;

  display: flex;
}

.work_main_left_list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work_main_left_list_item{
  display: flex;
  flex-direction: row;
  
  gap: 15px;
}

.work_main_left_list_item_title ,.work_main_left_list_item_{
  font-size: 18px;
  letter-spacing: 2px;
}
.work_main_left_list_item_title{
  
  width: 120px;
}


/* BLOG詳細P */
.blog_area_title_ja{
  font-size: 25px;
}

/* コンタクトフォーム */
.contact{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 1行 */
.form_item{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* textarea行だけ上揃え */
.textarea_item{
  align-items: flex-start;
  margin-bottom: 50px;
}

/* 必須タグ */
.required{
  width: 60px;
  text-align: center;
  padding: 6px 0;
  background: #d3d3d3;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  flex-shrink: 
}

/* ラベル幅固定 */
.label{
  width: 140px;
  flex-shrink: 0;
}

/* 入力欄 */
input,
textarea{
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

/* ボタン */
.contact_btn{
  align-self: flex-start;
  padding: 10px 30px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cta-footer-btn-ja.button{
  font-size: 25px;
}

.cta-footer-btn.button{
display: inline-flex;}