/* CSS111 */
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #606060;
}
.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);

display:none;

z-index:9999;

align-items:center;
justify-content:center;
}

.modal-content{
background:white;
padding:40px;
}

.modal-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
/* ===== ヘッダー ===== */
.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: fit-content;
    padding-top: 150px;
}

.fv-inner{padding: auto 0;}

.fv-title__em{
font-weight:900;
}


.fv-sub{

position:absolute;
left:-9999px;
}


.hero {
  display: flex;
  gap: 25px;
  justify-content: center;
  
}


/* =========================
   カルーセル本体
========================= */

.carousel2{
  width:100%;
  overflow:hidden;
}
.carousel-track2{
  display:flex;
  gap:20px;
  width:max-content;

  transform:translateX(-50%);
  animation:carousel-right 100s linear infinite;

  display:flex;
  gap:20px;
  width:max-content;

  transform:translateX(-50%);

  animation:carousel-right 100s linear infinite;
}

/* =========================
   PC
========================= */

.carousel-item2{
  width:420px;
  height:260px;

  object-fit:cover;
  border-radius:15px;

  flex-shrink:0;
  display:block;
}

/* =========================
   タブレット
   1枚＋両サイド少し見える
========================= */

@media (max-width:1024px){

  .carousel-track2{
    gap:15px;
  }

  .carousel-item2{
    width:50vw;
    height:auto;
  }

}

/* =========================
   スマホ
   1枚＋両サイド少し見える
========================= */

@media (max-width:768px){

  .carousel-track2{
    gap:12px;
  }

  .carousel-item2{
    width:65vw;
    height:auto;

    border-radius:10px;
  }

}

/* =========================
   アニメーション
========================= */
@keyframes carousel-right{
  from{
    transform:translateX(-50%);
  }

  to{
    transform:translateX(0);
  }
}

.fv-title__em {
  position: relative;
  display: inline-block;
  font-weight:450;

  
}



.fv-title{
  text-align: center;
color: #3d3d3d;
font-size: clamp(14px, 5vw, 32px);
line-height: 1.4;
font-weight: 500;
letter-spacing: 0.12em;
word-break: keep-all;
}

.fv-text{
  text-align: center;
font-size: clamp(9px, 3vw, 14px);
line-height: 1.8;
font-weight: 450;
letter-spacing: 0.3em;
padding-top: 19px;
word-break: keep-all;
    margin-bottom:75px;
    padding: 19px 15px 0 15px;
}


@media (max-width:497px) {
  .fv-text{
    padding-top: 15px;
  }
  
}

.tablet-br{
  display: none;
}

@media (max-width: 499px){
  .tablet-br{
  display: block;
}
}


.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;
}

.seo-hidden{

position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(0 0 0 0);

}
/* コンセプト部 */
.concept {
  padding: 140px 0;


}
.concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}

@media (max-width:1024px){
.concept {
  padding: 0;
  }
.concept__inner{
flex-direction:column;
padding: 60px 0px 60px 0px;
gap: 5px;
}
}


@media (max-width:768px){
  .concept {
  padding: 0;
  }
.concept__inner{
flex-direction:column;
padding: 20px 0px 60px 0px;
gap: 5px;
}}

/* コンセプト左側わたしのモットー */

.concept__heading {
  padding: 25px;
flex:1;
  display: flex;
  flex-direction: column; 
  align-items: flex-start; /* ← これ重要 */
  gap: 5px;
}

.concept__accent__inner {
  display: flex;
  align-items: center;
  margin: 0 0 0 1px;
  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 {
  padding: 25px;
 flex:1;
}

.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;

}



.works__inner {
  max-width: 1100px;
  padding: 25px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}


@media (max-width:1024px){
.works__inner{
padding: 60px 20px 60px 20px;
gap: 5px;
}}


@media (max-width:768px){
.works__inner {
 padding: 60px 20px 60px 20px;
}}

.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;   ← これ絶対入れる */
}


@media (max-width:1024px){
  .works-title{
    font-size: 80px;
  }
}


@media (max-width:768px){
  .works-title{
    font-size: 70px;
  }
}

.works-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}


@media (max-width:1024px){
 .works-title::after {
    height: 8px;
    transform: translateY(18px);
  }
}


@media (max-width:768px){
 .works-title::after {
     height: 5px;
     transform: translateY(15px);
  }
}


.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;
}


@media (max-width:1024px){
  .works__accent__text{
    font-size: 18px;}}




@media (max-width:1024px){
 .works__accent__text{
font-size: 18px;
  
}
}


@media (max-width:768px){
 .works__accent__text{
 font-size: 16px;
 line-height: 1.5;
  
}

.concept__title{
  font-size: 20px;
}

.works-title{
  padding-bottom: 0;
}

}

.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: 35px;
}

.portfolio_article{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 4px;
}

ul.portfolio_article{
  margin-bottom: 50px;
}
.portfolio_image {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  margin-bottom: 10px;
}

.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;
    gap: 40px;
  }
}

.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 a,.portfolio_image{
transition: transform 0.3s ease;
}

.portfolio_image:hover{
  transform: scale(1.1); /* 1.1倍に拡大 */
}

.portfolio_article li {
  overflow: hidden;
}




.archive_thumnail_box{
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 8px;
}

.portfolio_article img {
  width: 100%;
 
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.portfolio_article img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  height: 100% !important;
}
.portfolio_article li:hover img {
  transform: scale(1.1);
}

.header_archive_title{
  display: flex;
  gap: 7px;
}

.portfolio_image_box{
  overflow: hidden;
  border-radius: 10px;
}



.portfolio_article_title{
color: #3d3d3d;
font-size: 16px;
letter-spacing: 2px;}


@media (max-width: 1024px){
 .portfolio_article_title{
    font-size: 14px;
  }
}

/* スマホ */
@media (max-width: 600px){
 .portfolio_article_title{
    font-size: 14px;
  }
}




/* 実績もっと見るボタン */
.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;
}


.archive_thumnail_box img{
  transition: transform 0.4s ease; /* ← これが“ゆっくり”の正体 */
}

/* #e4d1e8 #d2d7eb */
.cta-blog-btn:hover .cta-portfolio-btn-box {
  background: #ffffff;
  color: #595959;
  transform: translateX(6px);
}

/* フロー */

.flow{
  background: #ffffff;
  border-radius: 50px;

  /* padding-top: 50px; */
  
}

.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
  padding: 25px;
}
.works__accent__text{
  padding-bottom: 0px;
}
.flow-title{
  color: #f4f4f4;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  padding-top: 80px;
}


@media (max-width:1024px){
  .flow-title{
    font-size: 80px;
  }
}


@media (max-width:768px){
  .flow-title{
    font-size: 70px;
  }
}
.flow-title::after {
  content: "";
  flex: 1;
  height: 6px;
  background-color: #f4f4f4;
  transform: translateY(5px);
  border-radius: 10px;
  
}
.flow-title::before {
  content: "";
  flex: 1;
  height: 6px;
  background-color: #f4f4f4;
  transform: translateY(5px);
  border-radius: 10px;
}

.flow_description{
  text-align: center;
}

.flow_description_p{
  display: inline-flex;
  gap: 5px;
  padding-bottom: 10px;
}

.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;
}

@media (max-width:1024px) {
  .cta-flow-btn-ja{
    font-size: 11px;

  }
  .cta-flow-btn{
    padding: 12px 15px;
    line-height: 110%;
    gap: 5px;
  }
  
}
.flow__inner {
  margin-top: 50px;
  padding-top: 0px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  align-items: flex-start; /* ← center → flex-start */
}

.flow_list{
  max-width: 100%;
  margin: 0 auto;
}
.flow_item{
  display: flex;
  gap: 20px;
  align-items: flex-start;
 border-bottom: 0.05px solid #858585; 
 padding-bottom: 30px;
 padding-top: 30px;
}
@media (max-width:780px) {
  .flow_item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    
    
  

}

  
}

@media (max-width:465px) {
  .flow_item{
    display: flex;
    align-items: center;
  padding-top: 25px;

}

  
}


.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;
}


@media (max-width:1024px){
  .step{
    font-size: 33px;
  }
  .step_number_item{
    font-size: 28px;
  }

  .flow_description_item{


  display: flex; 
  flex-direction: column;
  gap: 25px;
  align-items:flex-start;
}
}


@media (max-width:768px){
  .step{
    font-size: 30px;
  }

  .step_number_item{
    font-size: 22px;
  }

}
.step_number_item{
  font-size: 80px;
  color: #ede7e7;
  font-weight: 900;
  line-height: 0.8;
  
}
.flow_description_item{


  display: flex; 
  flex-direction: column;
  gap: 10px;
  align-items:flex-start;
}


@media (max-width:463px){
  .step{
    font-size: 22px;
  }

  .step_number_item{
    font-size: 50px;
  }

  .flow_item{
    gap: 15px;
  }

 

}

@media (max-width:465px){


  .flow_description_item{


  display: flex; 
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.flow_item{
  padding:25px 5px 25px 5px;
  display: flex;
  align-items: flex-start;
}

.flow_description_item{
  gap:7px;
}

.flow__inner{
  padding:20px;
}

.price_title{
  padding:0 5px 0 5px;
}


}

.step_title{
  color: #3d3d3d;
  font-size: 22px;
  letter-spacing: 2.5px;
  font-weight: 450;

}

@media (max-width:1024px){
  .step_title{
    font-size: 18px;
  }
}


@media (max-width:768px){
  .step_title{
    font-size: 17px;
  }
}




.step_description{
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight:400;
  font-size: 13px;
}

@media (max-width:463px){
  .step_title{
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .step_description{
    font-size: 13px;
  letter-spacing: 1.2px;}
}

@media (max-width:1024px){
  .step_description{
    font-size: 13px;
  }
}


@media (max-width:450px){
  .step_description{
    width:100%;
    
  }
}




/* 料金セクション */




.price{
  background: #f4f4f4;
  border-radius: 50px ;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 80px;
}

@media (max-width:1024px) {
  .price{
  padding-top: 20px;}

}

.price__inner{
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  /* align-items: flex-start;  */
  padding: 25px;
}

.price-title{
  color: #ffffff;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
}


@media (max-width:1024px){
  .price-title{
    font-size: 80px;
  }
}


@media (max-width:768px){
  .price-title{
    font-size: 70px;
    
  }
  
}



@media (max-width:1024px){
  .price_title_en{
    font-size: 18px;
  }
}


@media (max-width:768px){
  .pprice_title_en{
    font-size: 10px;
  }
}
.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;
  
}



@media (max-width:768px){
  .price-title{
    font-size: 70px;
  }
}



@media (max-width:1024px){
  .price_title_en{
    font-size: 20px;
  }
}

.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;
}


@media (max-width:1024px){
 .price__accent__text{
font-size: 18px;
  
}
}


@media (max-width:768px){
 .price__accent__text{
 font-size: 16px;
 line-height: 1.5;
  
}
}

.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 25px 15px 25px;
  border-radius: 15px;
}
@media (max-width:1024px){
 .wrap_all{
padding: 15px 20px 15px 20px;
  
}
}


@media (max-width:768px){
 .pwrap_all{
padding: 10px 10px 10px 10px;
}
}

.wrap {
  border-bottom: 1px solid #747474;
}


/* ラベルは線じゃなく クリック領域だけ */
/* .wrap label {
  border: none;
  padding: 15px 20px;
}
 */





/* Web　Design　ホームページ制作 */
.price_title{
  display: flex;
  padding: 10px 10px;
  font-weight: 600;
  letter-spacing: 3px;
  gap: 20px;
  font-size: 20px;
  border-bottom: 1px solid #747474;
  
  /* border-bottom: 1px solid #222222; */
  background-color: #ffffff;
}


@media (max-width:768px){
 .price_title{
 display: flex;
 flex-direction: column-reverse;
 gap: 0px;
 }
 .price_title_ja{
  font-size: 13px;
  font-weight: 450;
 }
}


/* 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;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;

  transform-origin: center;
  transition: transform 0.3s;
}

@media (max-width:1024px) {
  .icon{
    width:15px;
  }
  
}
.accordion-label .icon{
  position: static;
  margin-left: auto;
  transform: none; /* ←回転の基準リセット */
}


.accordion-label .icon{
  transform: none;
}
/* 
.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;
}

@media (max-width:768px){
  .content_list{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  padding: 20px 30px 30px 30px ;
  gap: 15px;
}
.content_item{
  font-size: 13px;
}
.content_total_ja{
  font-size: 13px;
}}

.p_content_list{
  padding: 10px 30px 20px 30px ;
  line-height: 1.9;
  letter-spacing: 2px;
}

@media (max-width:768px){
 .p_content_list{
  font-size: 12px;
 }  }
.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{
  display: flex;
  align-items: center;
  justify-content: space-between; /* ←これが超重要 */
  font-size: 15px;
 

  padding: 10px 10px;
  cursor: pointer;
  line-height: 1.5;
}

@media (max-width:1024px) {
  .accordion-label{
 font-size: 14px;}
  
}

.accordion-label .icon{
  position: static; /* ←これに変更 */
  margin-left: auto;
}
.accordion-toggle:checked + .accordion-label + .content {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}

.accordion-toggle:checked + .accordion-label .icon {
  transform: rotate(90deg);
}



/* お客様の声 */



.voice{
  background: #f4f4f4;
  border-radius: 0 0 50px 50px;
  padding-bottom: 100px;
}

@media (max-width:1024px) {
    .voice{
    padding-bottom: 20px;
  }
}

.voice__inner{
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
  /* align-items: flex-start;  */
  padding: 25px;
  padding-bottom: 90px;
}

.voice-title{
  color: #ffffff;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
}


@media (max-width:1024px){
  .voice-title{
    font-size: 80px;
  }
}


@media (max-width:768px){
  .voice-title{
    font-size: 70px;
    
  }

  .accordion-label,.price_title{
    padding-left: 0px;
    padding-right: 0px;
  }
  
}



@media (max-width:1024px){
  .voice_title_en{
    font-size: 18px;
  }
}


@media (max-width:768px){
  .voice_title_en{
    font-size: 10px;
  }
}
.voice-title::after {
  content: "";
  flex: 1;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(20px);
  border-radius: 10px;
}

.voice_description{
  display: flex;
  flex-direction: column;
  gap: 5px;
  
}



@media (max-width:768px){
  .voice-title{
    font-size: 70px;
  }
}



@media (max-width:1024px){
  .voice_title_en{
    font-size: 20px;
  }
}

.voice__accent {
  margin-top: 5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}


.voice__accent__text{
  /* margin: -1px; */
  font-size: 15px;
  letter-spacing: 3px;
  font-size: 24px;
  color: #3d3d3d;
}


@media (max-width:1024px){
 .voice__accent__text{
font-size: 18px;
  
}
}


@media (max-width:768px){
 .voice__accent__text{
 font-size: 16px;
 line-height: 1.5;
  
}
}

.voice-title__em {
  background: linear-gradient(
    transparent 70%,
    rgba(212,199,228,0.8) 40%
  );
}

.voice_ul{
  display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 15px;
}

.voice_description{
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 165%;
}

@media (max-width:889px) {
  .voice_ul{
  display: grid;
   grid-template-columns:1fr;
   gap: 15px;
}
  .voice_description{
    display: flex;
    /* align-items: center; */
  }

  .voice_main{
    display: flex;
    align-items: center;
  }
}

.voice_description_p{
  margin-top: 5px;
  display: flex;
  gap: 5px;
}

.voice__accent__text__en{
  letter-spacing: 2px;
  padding-bottom: 20px;
}

.voice_list{
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 28px;
  gap: 18px;
}

.voice_title{
  font-size: 19px;
  font-weight: 500;
  margin-top: -10px;
}

.voice_list_score_wrap,.voice_main{
  display: flex;
}
.voice_list_score_wrap{
  gap: 5px;
}
.voice_img_{
  width: 80px;
  height: auto;
  border-radius: 70%;
}
.voice_list_score{
  color: #d3cb39;
}
.voice_icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.voice_customer{
  font-size: 13px;
  font-weight: 450;
  display: flex;
  text-align: center;
}

.voice_main{
  gap: 15px;
}

.voice_list_title{

  color: #8c8621;
}



@media (max-width:772px) {
  
.voice_main{
  margin-top: 1px;
  display: flex;
  flex-direction: row;
  align-items:flex-start;
 
}}


@media (max-width:440px) {
.voice_list{
  gap: 5px;
  padding: 20px 15px 20px 15px;
}


  .wrap_all{
    padding:13px;
  }
.voice_img_{
  width: 65px;
  height: auto;
  border-radius: 70%;
}

.voice_list_score_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}
.voice_main{
  margin-top: 11px;
  display: flex;
  flex-direction: row;
  /* align-items:center; */
  gap: 13px;
}
.voice_customer{
  font-size: 13px;
}
.voice_list_title{
  font-size: 12px;
  color: #8c8621;
}

.voice_list_score{
  font-size: 14px;
}

.voice_list{
  padding: 25px;
}

.voice_title{
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
}

@media (max-width:410px) {
  
.voice_main{
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 13px;
}}


/* プロフとブログセクション */


.profile_blog{
  background-color: #ffffff;
  border-radius: 50px;
  margin-top: 100px;
  padding-top: 20px;
  padding: 25px 25px 100px 25px;
}


.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_img_22{
  width: 150px;
  height: auto;
  object-fit: contain;
}
@media (max-width:1024px){
  .profile_inner{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 20px;
    /* padding-left: 15px; */
    padding-right: 25px;
    align-items: flex-start;
    
  }
  .profile_blog_inner{
    display: flex;
    flex-direction: column;
   }

 
}



.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: 16px;
  line-height: 1;
}



@media (max-width:390px){
  .profile_inner{
    display: flex;
    flex-direction: column;
   align-items: flex-start;}
 }

.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: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 2px;
}

.profile_description{
letter-spacing: 3px;
line-height: 1.8;
font-size: 16px;
padding-bottom: 5px;

}

@media (max-width:1024px) {
  .profile_description {
    font-size: 15px;
  }
  
}

.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%;
  /* padding-right: 25px; */
}
.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: 35px 0px 10px 0px;
  gap:20px ;
  align-items: center;
}
.blog_title_box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}


.blog_thumnail_box img{
  /* width: 100%; */
  width: 140px;
  height: auto;
}
@media (max-width:361px) {
  .blog_item a{
   flex-direction: column;
   align-items:flex-start;
    padding: 15px 0px 18px 0px;
  gap:15px ;
}
.blog_thumnail{
  width:100%;
  border-radius: 5px;
}

.blog_thumnail_box img {
    width: 100%;
  }
.blog_title_box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}}

@media(max-width:768px) {
  .blog_title_box{display: flex;
    flex-direction: column;
    align-items: flex-start;
 }
}




.blog_title{
  font-size: 16px;
  letter-spacing: 2px;
}

.blog_day{
  font-size: 16px;
  letter-spacing: 2px;
  display:flex;
  align-items:center;
  gap: 4px;
  justify-content:flex-end;
}

.blogicon{
  width: 15px;
}
@media(max-width:1024px) {
  .blog_day,
.blog_title{
  font-size: 14px;
  letter-spacing: 2px;
}}

.blog_day_p{
 color: #b3b3b3;
}

@media(max-width:350px) {
  .blog_thumnail_box {
    display: flex;
    flex-direction: column;     /* 縦並びにする */
    align-items: flex-start;        /* ←これで中央寄せ */
  }

  }

/* 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;
}


@media (max-width:1024px){
  .footer-title{
    font-size: 80px;
  }
}


@media (max-width:768px){
  .footer-title{
    font-size: 70px;
  }
}

.footer-title::after {
  content: "";
  flex: 1;
  height: 7px;
  background-color: #ffffff;
  transform: translateY(7px);
  border-radius: 10px;
}



.footer-title::before {
  content: "";
  flex: 1;
  height: 7px;
  background-color: #ffffff;
  transform: translateY(7px);
  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: 100px;
}

@media (max-width:1024px) {
  .footer_logo{
    width: 70px;
  }
  
}

.shop_name,.opentime{
  font-size: 14px;
  letter-spacing: 1.5px;
}

@media (max-width:1024px) {
.shop_name,.opentime{
  font-size: 11px;
}}

.author{
  font-size: 14px;

}

@media (max-width:1024px) {
  .author{
  font-size: 10px;}
  }

.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: #772222;
  color: #fff;
  pointer-events: none;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}






.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;      /* 影を小さく */
}










/* 数字ボタン */
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 50%;
  border: 1px solid #373737;
  box-shadow: 4px 4px 0px #d5cbe6;
  text-decoration: none;
  color: #343434;
  transition: 0.3s;
}

/* ホバー */
.pagination:hover {
  background: #ffffff;
  ransform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;}


.page-numbers:hover{
 
  box-shadow: 0 0px 0px #d0c1e8;
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8; 

}

/* 現在ページ */
.pagination .current {
  background: #ffffff;
  color: rgb(156, 155, 155);
  border-color: #333;
  border-radius: 50%;
  transition: 0.3s;
}

.current:hover{
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;
} 

/* 前へ・次へ */
.pagination .prev,
.pagination .next {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  border-radius: 25px;
  color: #969696;
  font-size: 13px;
 line-height: normal;
  align-items: center;
  transition: 0.3s;
}

.pagination .prev:hover,
.pagination .next:hover{
  background:#ffffff ;
  color: #4d4d4d;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8;
} 
.pagination .prev:hover,
.pagination .next:hover{
   background:#7d7d7d ; 
  color: #ffffff;

  transform: translateY(5px);         /* 少し下に動く */
  box-shadow: 0 0px 0px #d0c1e8; */
} */ 


.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: 0px;
  

}

.blog_section{
  padding-top: 0px;
}

.img_description_area_{
  display: flex;
  flex-direction: column;
  gap: 25px;
}


.img_description_area_ p{
  letter-spacing: 1.5px;
  line-height: 1.5em;
  font-size: 16px;
}

@media (max-width:1024px) {
  .img_description_area_ p{
    font-size: 16px;
  }

}


@media (max-width:765px) {
  .img_description_area_ p{
    font-size: 13px;
  }

}



.img_description_area_ h2 {
  
  font-size: 24px;
  position: relative;
  padding-left: 22px;
  padding-bottom: 2px;
  line-height: 100%;
  
}
.img_description_area_ h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 95%;
  background: linear-gradient(#e4d1e8,#d2d7eb);
  border-radius: 2px;}

.img_description_area_ img{
   width: 100% !important;
  height: auto;
  /* margin: 20px 0; */
  border-radius: 15px;}
  .img_description_area_ img {
  width: 100vw;
  max-width: 100%;

}



@media (max-width:1024px) {


  .img_description_area_ h2 {
    font-size: 18px;
    line-height: 120%;
 }
.blog_day{
  margin-bottom: 0px;
}
  
}


.work_area_wrap_{
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
  
}

.work_area_{
  max-width: 800px;
}
.work_wrap_area_{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 実績記事各種詳細 */




.work_area_wrap{
  display: flex;
  margin-bottom: 15px;
  gap: 5px;
  
}
.work_area__accent{
  
  width: 12px;
  height: auto;
  background: linear-gradient(#e4d1e8,#d2d7eb) ;
  border-radius: 2px;
  flex-shrink: 0;
}

.work_area_title_ja{
  font-size: 29px;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}



.work_img_area img{
  width: 480px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 35px;
}

.work_main_left_list{
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.work_main_left_list_item{
  display: flex;
  gap: 3px;
  align-items: flex-start; /* ← これに変更 */
}

/* URL */
.work_main_left_list_item_title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  width:150px;
    flex-shrink: 0; /* ←これ重要 */
}

/* URL詳細 */
.work_main_left_list_item_{
  font-size: 17px;
  letter-spacing: 1.5px;
  align-items: flex-start; /* ← これに変更 */
    flex: 1; /* ←残り全部使う */
    line-height: 150%;
}
.work_area{
   padding: 0 15px;
}

.img_description_area{
  display: flex;
 
  gap: 25px;
}

.img_description_area p{
  letter-spacing: 1.5px;
  line-height: 1.5em;
}
.work_main_list_area{
  display: flex;
  flex-direction: row;
}
.work_main_list{
  display: flex;
  flex-direction: column;
 

}

.back-btn{
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

/* 目的と課題 */
.work_main_list_item_title{
  display: flex;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 450;
  background-color: #f1f1f1;
  letter-spacing: 2.5px;
  color: #4d4d4d;
}
/* 目的と課題詳細 */
.work_main_list_item_destriction{
  font-size: 17px;
  letter-spacing: 1.2px;
  line-height: 1.8;
  padding: 4px 10px;

}

@media (max-width:1024px) {
.work_area_wrap{
  margin-top: 150px;
}
  
.work_area_title_ja{
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
  .work_wrap_area{
    display: flex;
    justify-content: center;
  }
  .work_area{
    width: 800px;
  }
  .img_description_area{
    display: flex;
    flex-direction: column;
  }

  .work_img_area img{
  width: 100%;
  height: auto;
  flex-shrink: 0; /* ← 画像潰れ防止 */
  border-radius: 10px;
  margin-bottom: 35px;
}
  .work_main_left_list_item{
    display: flex;
    flex-direction: column;
    
    align-items: flex-start;
  }

  .work_main_left_list{
    margin-bottom: 0px;
    padding-left: 10px;
  }

  .img_description_area{
    gap: 35px;
  }

 .blog_area_title_ja{
  font-size: 24px;
 }
}




/* BLOG詳細P */
.blog_area_title_ja{
  font-size: 27px;

}

@media (max-width:765px) {
  .blog_area_title_ja{
    font-size: 18px;
  }
  
}

.contact {
  max-width: 700px;
  margin: 40px auto;
}

.form_item {
  margin-bottom: 20px;
}

.form_item label {
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}

/* 必須バッジ */
.required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 10px;
  font-size: 12px;
  background: #c1c1c1;
  color: #fff;
  border-radius: 3px;
}

/* 入力欄 */
.form_input,
.form_textarea {
  width: 100%;
  padding: 10px;
  margin-top: -15px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* CF7ラッパー対策 */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ボタン */
/* 親は中央寄せだけ */
.contact_btn {
  text-align: center;
  margin-top: 100px;
}
.contact_btn {
  text-align: center;
}

.contact_btn p {
  margin: 0;
  align-items: center;
  display:flex;
  
}

/* ボタン本体（cta-btn風） */
.submit_btn {
  display: inline-block;
  padding: 12px 28px;
  border: solid 1px;

  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;
  border: 2px solid #333;

  font-size: 13px;
  letter-spacing: 0.08em;

  
  box-shadow: 4px 4px 0px #d5cbe6;

  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #4b4b4b ;

}

.cta-btn {
  display: inline-flex; /* ←ここ重要 */
  align-items: center;
  gap: 10px;

  padding: 12px 28px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #121212;

  font-size: 13px;
  letter-spacing: 0.08em;

  box-shadow: 4px 4px 0px #d5cbe6;
  transition: all 0.3s;
  border: solid 1px;

  cursor: pointer; /* ←button用 */
}


.cta-btn:hover {
  background:#7d7d7d ;
  color: #ffffff;

  transform: translateY(5px);
  box-shadow: 0 0px 0px #d0c1e8;
}

/* ホバー */
.submit_btn:hover {
  background: #7d7d7d;
  color: #ffffff;

  transform: translateY(5px);
  box-shadow: 0 0px 0px #d0c1e8;
}

.wpcf7-spinner {
  display: none;
}



.cta-btn {
  margin: 0 auto;
  display: flex;
  width: fit-content;
}


.wpcf7 form .wpcf7-response-output{
  max-width: 700px;
      margin: 40px auto;
    
}

.wpcf7 form.sent .wpcf7-response-output {
 border-color: #848e35 !important; 
}


/* モーダルハンバーガー */




.nav{
  position: fixed;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgb(255, 255, 255);
  transition: 0.3s;
  border-radius: 15px 0 0 15px;
  z-index:100;
  display: flex;
}

.nav.active{
  right: 0;
}

.close{
  position: absolute;
  top: 20px;
  right: 20px
}

.overlay{
  position: fixed;
  
  top:0;
  left:0;
  width:100%;
  height:100vh;

  background: rgba(0,0,0,0.5);

  opacity:0;
  visibility:hidden;

  transition:0.3s;
   z-index:90;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

.modal-nav{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
.global-nav-item{
   display:block;
  margin:0 auto;
  
}



.modal-logo{
  width: 120px;
  display:block;
  margin:0 auto;
  margin-bottom: 50px;
 
}

.cta-btn{
  width:fit-content;
  
}


.hamburger{
  display: none;
}


@media (max-width:1024px) {
  .hamburger{
  display: flex;
}
  .global-nav,
  .header-right > .cta-btn{
    display: none;
  }
}