:root{
  --main-blue:#0d3f8c;
  --accent-blue:#0d4a96;
  --light-blue-bg:#E4EAF5;
  --light-blue-bg2:#F4F8FF;
  --cta-blue:#7fb4df;
  --cta-orange:#FA8B57;
  --dark-btn:#333333;
  --text-color:#222;

  --fv-heading-pc:40px;
  --section-heading-pc:34px;
  --section-heading-lg-pc:38px;
  --card-head-pc:18px;
  --card-title-pc:18px;

  --fv-heading-sp:20px;
  --section-heading-pc-tablet:30px;
  --section-heading-sp:24px;
  --card-head-sp:18px;
  --card-title-sp:18px;

  --text-md:16px;
  --text-sm:14px;

  --section-padding-pc:80px;
  --section-padding-sp:50px;
  --card-shadow:0 6px 18px rgba(0,0,0,.08);
  --card-shadow-sm:0 4px 12px rgba(0,0,0,.06);

  --cta-height:50px;
  --cta-font-size:18px;

  --container-narrow:1120px;
}

body{
  font-family:"Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  color:var(--text-color);
  line-height:1.75;
  background:#fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
  transition:all .3s ease;
}

.breadcrumb{ font-size:12px; }

.section-heading{
  margin-bottom:42px;
}

.section-heading h2{
  margin:0 0 16px;
  color:var(--main-blue);
  font-weight:800;
  line-height:1.35;
  letter-spacing:.01em;
}

.section-heading p{
  margin:0;
  font-size:16px;
  color:#444;
}

.img-placeholder{
  width:100%;
  height:200px;	
  display:block;
  align-items:center;
  justify-content:center;
  color:#777;
  font-weight:700;
  letter-spacing:.05em;
background-color: aliceblue;	
}

.img-placeholder.hero-bg{
  min-height:700px;
}


.img-placeholder.udemy-thumb{
  min-height:220px;
}

.btn-dark-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:40px;
  padding:0 26px;
  background:var(--dark-btn);
  color:#fff;
  font-size:14px;
  font-weight:700;
  border:none;
}

.btn-dark-custom:hover{
  color:#fff;
  opacity:.9;
}

.btn-dark-custom span{
  margin-left:14px;
  font-size:18px;
  line-height:1;
}

.cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:var(--cta-height);
  color:#fff;
  font-size:var(--cta-font-size);
  font-weight:700;
  box-shadow:var(--card-shadow-sm);
  padding:0 22px;
}

.cta-btn:hover{
  color:#fff;
  opacity:.92;
}

.cta-btn span{
  margin-left:12px;
  font-size:22px;
  line-height:1;
}

.cta-btn-blue{
  background:var(--cta-blue);
}

.cta-btn-orange{
  background:var(--cta-orange);
}

/* header */
.site-header{
  background:#fff;
  border-bottom:1px solid #ddd;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
}

.site-header .navbar{
  width:100%;
  display:flex;
  align-items:center;
}

.site-brand{
  flex:0 0 auto;
  color:#222;
}

.site-title {
margin: 0;	
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.site-logo-sub{
  font-size:13px;
  color:#444;
  line-height:1.2;
  font-weight:600;
  margin-bottom:4px;
}

.site-logo-main{
  font-size:16px;
  color:#222;
  font-weight:800;
  line-height:1.2;
}

.site-header .navbar-collapse{
  justify-content:flex-end;
}

.site-header .nav-link{
  color:#333;
  font-size:13px;
  font-weight:600;
  padding:8px 10px !important;
  white-space:nowrap;
}

.site-header .nav-link:hover{
  color:var(--main-blue);
}

.navbar-toggler:focus{
  box-shadow:none;
}

.dropdown-menu{
  border:1px solid #eee;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.dropdown-item{
  font-size:14px;
  padding:7px 16px;
}

.dropdown-item:hover{
  background:#f5f7fb;
  color:var(--main-blue);
}
@media (max-width: 991.98px){

  .dropdown-menu{
    border:none;
    box-shadow:none;
    padding-left:16px;
  }

  .dropdown-item{
    padding:10px 0;
    font-size:14px;
  }
}

.dropdown-header {
  font-size: 12px;
  font-weight: 700;
  color: rgba(26, 88, 170, .94) ;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px 4px;
  background: #F4F8FF;
  margin-top: 5px;
}
/* 固定ヘッダー用 */
.site-header.is-hidden{
  transform: translateY(-100%);
}

.site-header.is-scrolled{
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* hero */
.hero-section{
  position:relative;
  overflow:hidden;
  background:var(--light-blue-bg);
}

.hero-wrap{
  position:relative;
  min-height:700px;
}

.hero-bg-layer{
  position:absolute;
  inset:0;
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:3;
  min-height:700px;
}

.hero-copy{
  position:absolute;
  top:48px;
  left:0;
  width:64%;
  z-index:4;
}

.hero-copy-box{
  background:linear-gradient(90deg, rgba(10,64,136,.96) 0%, rgba(26,88,170,.94) 100%);
  color:#fff;
  padding:36px 54px 34px 54px;
  clip-path:polygon(0 0,100% 0,92% 100%,0 100%);
  box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.hero-title{
  font-size:var(--fv-heading-pc);
  line-height:1.25;
  font-weight:800;
  letter-spacing:.01em;
  margin:0 0 14px;
}

.hero-lead{
  margin:0;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
}



.hero-nameplate{
  position:absolute;
  left:43%;
  bottom:42px;
  z-index:5;
}

.hero-nameplate-inner{
  min-width:280px;
  background:rgba(255,255,255,.92);
  padding:18px;
  text-align:center;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.hero-bg-img{
  width:100%;
  height:100%;
  object-fit:cover;
object-position:80% center;	
}
.hero-nameplate-logo img{
  max-width:300px;
  height:auto;
  display:block;
  margin:0 auto 8px;
}
.hero-nameplate-sub{
  color:#666;
  font-size:13px;
  line-height:1.5;
  font-weight:600;
  margin-bottom:8px;
}

.hero-nameplate-name{
  color:var(--main-blue);
  font-size:28px;
  line-height:1.2;
  font-weight:800;
text-align:center;	
}

@media (max-width: 767.98px){

  .hero-wrap{
    min-height:auto;
  }

  .hero-bg-layer{
    position:relative;
    height:260px;
  }

  .hero-bg-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:80% center;
  }

  .hero-content{
    min-height:auto;
    display:block;
    padding:0;
  }

  .hero-copy{
    position:static;
    width:100%;
    margin-top:0;
  }

  .hero-copy-box{
    clip-path:none;
    padding:18px 16px;
  }

  .hero-title{
    font-size:var(--fv-heading-sp);
    line-height:1.4;
  }

  .hero-lead{
    font-size:15px;
    line-height:1.7;
  }
  .hero-nameplate{
    position:absolute;
    left:12px;
    bottom:230px;
    z-index:5;
  }

  .hero-nameplate-inner{
    background:rgba(255,255,255,.95);
    padding:10px 14px;
    min-width:auto;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
  }

  .hero-nameplate-inner img{
    max-width:200px;
    height:auto;
    display:block;
    margin-bottom:6px;
  }

  .hero-nameplate-name{
    font-size:14px;
    font-weight:800;
    color:var(--main-blue);
  }	
}
.cta-section{
  background:#fff;
  padding:40px 0 50px;
}

/* common sections */
.theme-section,
.reason-section,
.consult-section,
.price-section{
  background:var(--light-blue-bg);
  padding:var(--section-padding-pc) 0;
}

.first-section,
.company-section,
.voice-section,
.flow-section,
.profile-section{
  background:var(--light-blue-bg2);
  padding:var(--section-padding-pc) 0;
}

.theme-heading h2,
.company-heading h2{
  font-size:var(--section-heading-pc);
}

.reason-heading h2,
.consult-heading h2,
.price-heading h2,
.profile-heading h2{
  font-size:var(--section-heading-lg-pc);
}

/* theme */
.theme-card{
  height:100%;
  display:flex;
  flex-direction:column;
  background:#fff;

  box-shadow:var(--card-shadow);
  overflow:hidden;
}

.theme-card-head{
  background:var(--main-blue);
  color:#fff;
  text-align:center;
  font-size:var(--card-head-pc);
  font-weight:700;
  line-height:1.45;
  padding:16px 10px;
}

.theme-card-body{
  padding:20px 18px 18px;
  flex:1;
}

.theme-card-body h3{
  font-size:var(--card-title-pc);
  font-weight:700;
  line-height:1.65;
  color:var(--main-blue);
  margin:0 0 14px;
  padding-bottom:12px;
  border-bottom:2px solid #b7c8dc;
}

.theme-card-body ul{
  list-style:none;
  margin:0;
  padding:0;
}

.theme-card-body li{
  position:relative;
  font-size:var(--text-md);
  font-weight:600;
  line-height:1.7;
  color:#133d78;
  padding-left:22px;
  margin-bottom:8px;
}

.theme-card-body li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--main-blue);
  font-weight:800;
}

.theme-card-footer{
  padding:0 18px 18px;
}

.detail-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  background:var(--cta-orange);
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.detail-btn:hover{
  color:#fff;
  opacity:.92;
}

.detail-btn span{
  margin-left:10px;
  font-size:20px;
}

/* company */
.company-box,
.reason-box,
.consult-box,
.price-box,
.career-box,
.lecture-box,
.udemy-box{
  background:#fff;
  box-shadow:var(--card-shadow);
}

.company-box{
  max-width:var(--container-narrow);
  margin:0 auto;
  padding:30px 34px 18px;
}

.company-list{
  color:var(--main-blue);
  font-size:16px;
  line-height:1.9;
  font-weight:800;
}

.company-more-wrap{
  margin-top:10px;
  text-align:center;
}

.company-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px; /* ←追加 */
  min-width:132px;
  height:38px;
  border:1px solid var(--accent-blue);
  color:var(--main-blue);
  background:#fff;
  font-size:15px;
  font-weight:700;
  padding:0 18px;
  cursor:pointer; 
}

.company-more-btn:hover{
  color:var(--main-blue);
  background:#f6f9ff;
}

.company-list-more{
  display:none;
  margin-top:12px;
}

.company-box.is-open .company-list-more{
  display:block;
}

.company-more-arrow{
  font-size:12px;
  transition:transform .3s ease;
}

.company-box.is-open .company-more-arrow{
  transform:rotate(180deg);
}

/* reason */
.reason-box{
  max-width:var(--container-narrow);
  margin:0 auto;
  padding:18px 24px;
  border:1px solid #d7dce3;
}

.reason-list{
  list-style:none;
  margin:0 0 16px;
  padding:0;
}

.reason-list li{
  position:relative;
  font-size:20px;
  font-weight:700;
  line-height:1.6;
  color:var(--main-blue);
  padding:0 0 12px 28px;
  margin-bottom:12px;
  border-bottom:2px dotted #8eadd2;
}

.reason-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--main-blue);
  font-weight:800;
}

.reason-note{
  margin:0;
  font-size:15px;
  color:#333;
  line-height:1.8;
  font-weight:600;
}

.reason-cta{
  margin-top:32px;
}

/* voice */
.voice-section{
  padding-top:70px;
  padding-bottom:70px;
}

.voice-heading h2{
  font-size:var(--section-heading-lg-pc);
}

.voice-list{
  max-width:var(--container-narrow);
  margin:0 auto;
}

.voice-item{
  margin-bottom:24px;
}

.voice-toggle{
  width:100%;
  text-align:left;
  border:none;
  background:#fff;
  box-shadow:var(--card-shadow);
  padding:24px 74px 20px 22px;
  position:relative;
  cursor:pointer;
}

.voice-label{
  display:inline-block;
  background:#6db0e3;
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
  padding:8px 12px;
  margin-right:12px;
  margin-bottom:8px;
}

.voice-title{
  display:inline-block;
  font-size:16px;
  color:var(--main-blue);
  font-weight:700;
  margin-bottom:8px;
}

.voice-text{
  color:var(--main-blue);
  font-size:20px;
  line-height:1.6;
  font-weight:800;
  margin-bottom:6px;
}

.voice-meta{
  color:var(--main-blue);
  font-size:14px;
  font-weight:700;
}

.voice-icon{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:34px;
  color:var(--main-blue);
  line-height:1;
  font-weight:400;
}

.voice-answer{
  display:none;
  margin-top:0;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  padding:18px 22px;
  line-height: 32px;	
}

.voice-item.active .voice-answer{
  display:block;
}

.voice-item.active .voice-toggle{
  box-shadow:none;
}

/* consult */
.consult-box{
  max-width:var(--container-narrow);
  margin:0 auto;
  padding:18px 22px;
}

.consult-list{
  list-style:none;
  padding:0;
  margin:0 0 22px;
}

.consult-list li{
  position:relative;
  color:var(--main-blue);
  font-size:20px;
  font-weight:800;
  line-height:1.5;
  padding:0 0 12px 28px;
  margin-bottom:12px;
  border-bottom:2px dotted #8eadd2;
}

.consult-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--main-blue);
  font-weight:800;
}

.consult-btn{
  max-width:290px;
}

/* flow */
.flow-section{
  background:#fff;
}

.flow-heading h2{
  font-size:var(--section-heading-lg-pc);
}

.flow-card{
  height:100%;
  background:#fff;
  border:1px solid #7694bf;
  padding:18px 18px 22px;
text-align:center;	
}

.flow-step{
  display:block;
  width:fit-content;
  align-items:center;
  justify-content:center;
  min-width:68px;
  height:28px;
  background:var(--main-blue);
  color:#fff;
  font-size:14px;
  font-weight:700;
  border-radius:5px;
  margin:0 auto 12px; 
}

.flow-card h3{
  color:var(--main-blue);
  font-size:18px;
  line-height:1.5;
  font-weight:800;
  margin:0 0 12px;
text-align:center;
}

.flow-card p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#555;
  font-weight:500;
text-align:left;
}

/* price */
.price-heading .sub-note{
  color:var(--main-blue);
  font-size:16px;
  font-weight:700;
  margin-top:-6px;
}

.price-box{
  max-width:800px;
  margin:0 auto;
  padding:22px 28px;
}

.price-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.price-row:last-child{
  margin-bottom:0;
}

.price-tag{
  flex:0 0 66px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  background:var(--main-blue);
  color:#fff;
  font-size:14px;
  font-weight:700;
  margin-top:4px;
}

.price-main{
  color:var(--main-blue);
  font-size:20px;
  line-height:1.7;
  font-weight:800;
}

.price-note{
  color:var(--main-blue);
  font-size:14px;
  line-height:1.8;
  font-weight:700;
}

/* profile */
.profile-section{
  padding-top:70px;
}

.profile-inner{
  max-width:900px;
  margin:0 auto;
}

.profile-main-copy{
  color:var(--main-blue);
  font-size:18px;
  line-height:1.7;
  font-weight:800;
  margin:14px 0 12px;
}

.profile-text p{
  margin:0 0 10px;
  font-size:15px;
  line-height:2;
  color:#444;
  font-weight:500;
}

.profile-highlight{
  color:var(--main-blue) !important;
  font-weight:800 !important;
}

.profile-logo-row{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:8px;
justify-content:center;	
}

.profile-logo img{
  width: 220px;	
  font-weight:800;
  color:#000;
}
.profile-logo{
	text-align:center;
	font-weight:800;
}

@media (max-width: 767.98px){
.profile-img{
    width:50%;
    margin:0 auto;
    display:block;
  }
  .profile-logo-row{
    display:flex;
    flex-direction:column; /* ←縦並び */
    align-items:center;   /* ←中央揃え */
    gap:10px;
  }

  .profile-logo{
    display:flex;
    align-items:center;
    justify-content:center; /* ←中身も中央 */
    gap:6px;
    text-align:center;
  }

  .profile-logo img{
    max-width:230px;
    height:auto;
  }
}
.career-box{
  max-width:850px;
  margin:30px auto 28px;
  padding:24px 26px;
  border:1px solid #6e8db8;
  box-shadow:none;
}

.career-box h3{
  color:var(--main-blue);
  font-size:20px;
  line-height:1.5;
  font-weight:800;
  margin:0 0 14px;
}

.career-box p{
  margin:0;
  color:var(--main-blue);
  font-size:14px;
  line-height:2;
  font-weight:700;
}

.profile-bottom-btn{
  text-align:center;
  margin-bottom:28px;
}

.profile-cta{
  margin-top:10px;
}

/* white sections */
.faq-section,
.news-section,
.blog-section,
.lecture-section,
.udemy-section,
.profile-page{
  background:#fff;
  padding:var(--section-padding-pc) 0;
}
.contact-section{
  padding-top:50px;
}
.faq-heading h1,.faq-heading h2,.contact-heading h1,
.news-heading h2,
.blog-heading h2{
  font-size:var(--section-heading-lg-pc);
  text-align:center;
}

/* FAQ */
.faq-list{
  max-width:var(--container-narrow);
  margin:0 auto;
}

.faq-item{
  margin-bottom:12px;
}

.faq-toggle{
  width:100%;
  border:none;
  background:#dfe6ef;
  color:var(--main-blue);
  text-align:left;
  padding:16px 22px;
  font-size:18px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.faq-toggle span{
  font-size:32px;
  line-height:1;
  font-weight:400;
}

.faq-answer{
  display:none;
  padding:16px 22px 18px;
  background:#f7f9fc;
  border:1px solid #dfe6ef;
  font-size:15px;
  color:#444;
  line-height:1.9;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-more{
  text-align:center;
  margin-top:34px;
}

/* news */
.news-list{
  max-width:var(--container-narrow);
  margin:0 auto 34px;
}

.news-line{
  height:1px;
  background:#7d98bf;
  margin-bottom:62px;
}

.news-line:last-child{
  margin-bottom:0;
}

.news-more{
  text-align:center;
}

/* blog */
.blog-grid{
  max-width:var(--container-narrow);
  margin:0 auto 30px;
}

.blog-card h3{
  color:var(--main-blue);
  font-size:18px;
  line-height:1.5;
  font-weight:800;
  margin:14px 0 8px;
}

.blog-card p{
  color:#555;
  font-size:14px;
  line-height:1.9;
  margin:0;
}

.blog-more{
  text-align:center;
}

/* lecture */
.lecture-box{
  max-width:850px;
  margin:0 auto;
  padding:30px 34px;
  border:4px solid #c6d7ef;
  box-shadow:none;
}

.lecture-box h3{
  color:var(--main-blue);
  font-size:22px;
  line-height:1.5;
  font-weight:800;
  margin:0 0 12px;
}

.lecture-box p{
  color:#444;
  font-size:16px;
  line-height:2;
  margin:0 0 18px;
}

.lecture-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  max-width:320px;
  min-height:48px;
  padding:0 20px;
  background:var(--cta-orange);
  color:#fff;
  font-size:17px;
  font-weight:700;
  margin:0 auto;
	width:fit-content;
}

.lecture-btn:hover{
  color:#fff;
  opacity:.92;
}

.lecture-btn span{
  margin-left:10px;
  font-size:20px;
}

/* udemy */
.udemy-box{
  max-width:850px;
  margin:0 auto;
  padding:20px 22px;
  background:#dfeee6;
  box-shadow:none;
  border-radius:0;
}

.udemy-copy h3{
  color:var(--main-blue);
  font-size:18px;
  line-height:1.5;
  font-weight:800;
  margin:0 0 12px;
}

.udemy-copy p{
  color:#444;
  font-size:15px;
  line-height:2;
  margin:0 0 18px;
}

.udemy-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:30px;
  border:1px solid var(--main-blue);
  background:#fff;
  color:#111;
  padding:0 70px;
  width:270px;
	margin:0 auto;	
}

.udemy-link:hover{
  color:#111;
  background:#fff;
}

.udemy-link .arrow{
  color:var(--main-blue);
  font-size:28px;
  line-height:1;
}

/* footer */
.site-footer{
  background:#efefef;
  padding:42px 0 26px;
}

.footer-company{
  font-size:16px;
  line-height:1.6;
  font-weight:800;
  color:#333;
  margin-bottom:12px;
}

.footer-address{
  color:#444;
  font-size:13px;
  line-height:2;
}

.footer-cta-wrap{
  text-align:right;
}

.copyright{
  text-align:center;
  color:#444;
  font-size:12px;
  margin-top:34px;
}



@media (max-width: 767.98px){
  .header-inner{
    min-height:auto;
    padding:10px 0;
  }

  .site-logo-sub{
    font-size:11px;
  }

  .site-logo-main{
    font-size:16px;
  }

  .site-header .navbar{
    flex-wrap:wrap;
  }

  .site-brand{
    max-width:calc(100% - 56px);
  }

  .site-header .navbar-toggler{
    margin-left:auto;
  }

  .site-header .navbar-collapse{
    width:100%;
    flex-basis:100%;
    margin-top:12px;
    background:#fff;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    padding:0;
  }

  .site-header .navbar-nav{
    width:100%;
    align-items:stretch !important;
  }

  .site-header .nav-item{
    width:100%;
    border-bottom:1px solid #eee;
  }

  .site-header .nav-item:last-child{
    border-bottom:none;
  }

  .site-header .nav-link{
    display:block;
    width:100%;
    padding:14px 16px !important;
    font-size:15px;
    background:#fff;
  }

  .site-header .nav-link:hover{
    background:#f7f9fc;
    color:var(--main-blue);
  }

  .section-heading h2,
  .theme-heading h2,
  .company-heading h2,
  .reason-heading h2,
  .consult-heading h2,
  .voice-heading h2,
  .flow-heading h2,
  .price-heading h2,
  .profile-heading h2,
  .faq-heading h1,.faq-heading h2,
.contact-heading h1,
  .news-heading h2,
  .blog-heading h2{
    font-size:var(--section-heading-pc-tablet);
  }

  .hero-wrap,
  .hero-content,
  .img-placeholder.hero-bg{
    min-height:auto;
  }

  .hero-content{
    padding:28px 16px 0;
  }

  .hero-copy{
    position:relative;
    width:100%;
    top:auto;
    left:auto;
    margin-bottom:20px;
  }

  .hero-copy-box{
    clip-path:none;
    padding:24px 22px;
  }

  .hero-title{
    font-size:38px;
  }

  .hero-lead{
    font-size:18px;
  }


.hero-nameplate-inner{
  min-width:260px;
  padding:16px 20px;
}
	.first-section,
  .theme-section,
  .company-section,
  .reason-section,
  .voice-section,
  .consult-section,
  .flow-section,
  .price-section,
  .profile-section,
  .faq-section,
	.contact-section,	
  .news-section,
  .blog-section,
  .lecture-section,
  .udemy-section{
    padding:64px 0;
  }

.consult-section .consult-btn{
  display:flex;
  justify-content:center;
  margin:20px auto 0; /* ←中央＋上余白 */
  width:fit-content;  /* ←幅を中身に合わせる */
}
	
  .voice-toggle{
    padding-right:64px;
  }

  .price-box{
    max-width:100%;
  }

  .footer-cta-wrap{
    text-align:left;
    margin-top:24px;
  }
}

@media (max-width: 767.98px){
	.first-section
	.theme-section,
  .company-section,
  .reason-section,
  .voice-section,
  .consult-section,
  .flow-section,
  .price-section,
  .profile-section,
  .faq-section,
.contact-section,	
  .news-section,
  .blog-section,
  .lecture-section,
  .udemy-section{
    padding:var(--section-padding-sp) 0;
  }

  .section-heading{
    margin-bottom:28px;
  }

  .section-heading h2,
  .theme-heading h2,
  .company-heading h2,
  .reason-heading h2,
  .consult-heading h2,
  .voice-heading h2,
  .flow-heading h2,
  .price-heading h2,
  .profile-heading h2,
  .faq-heading h2,
  .news-heading h2,
  .blog-heading h2{
    font-size:var(--section-heading-sp);
    line-height:1.4;
  }

  .hero-title{
    font-size:var(--fv-heading-sp);
    line-height:1.4;
  }

  .hero-lead{
    font-size:15px;
    line-height:1.7;
  }

  .hero-person{
    width:80%;
  }

  .hero-nameplate-inner{
    min-width:210px;
    padding:14px 16px;
  }

  .hero-nameplate-logo{
    font-size:26px;
  }

  .hero-nameplate-name{
    font-size:22px;
  }

  .cta-btn{
    min-height:60px;
    font-size:16px;
  }

  .cta-btn span{
    font-size:20px;
  }

  .company-box,
  .reason-box,
  .consult-box,
  .price-box,
  .career-box,
  .lecture-box,
  .udemy-box{
    padding-left:16px;
    padding-right:16px;
  }

  .company-list{
    font-size:15px;
    text-align:left;
  }

  .theme-card-head{
    font-size:var(--card-head-sp);
  }

  .theme-card-body h3{
    font-size:var(--card-title-sp);
  }

  .theme-card-body li,
  .reason-list li,
  .consult-list li{
    font-size:18px;
  }

  .voice-text{
    font-size:16px;
  }

  .voice-title{
    display:block;
    margin-top:4px;
  }

  .voice-icon{
    font-size:28px;
    right:16px;
  }

  .faq-toggle{
    font-size:15px;
    padding:14px 16px;
  }

  .faq-toggle span{
    font-size:26px;
  }

  .btn-dark-custom{
    min-width:190px;
    min-height:40px;
    font-size:16px;
  }

  .udemy-link{
    font-size:22px;
  }

  .footer-company{
    font-size:16px;
  }

  .footer-address{
    font-size:14px;
  }


}

/* ========================================
下層ページ共通
======================================== */
.training-detail-page{
  background:#fff;
}

.subpage-section{
  padding:80px 0;
}

.subpage-section-blue{
  background:var(--light-blue-bg);
}

.subpage-section-light{
  background:#eef3f8;
}


.subpage-box{
  background:#fff;
  border:1px solid #d9e0ea;
  padding:34px 38px;
}
.subpage-box .prize{
	font-size: 18px;
	font-weight: 700;
	color: var(--main-blue);
}

/* ========================================
下層FV
======================================== */
.subpage-fv{
  background:#cfd7e5;
}

.subpage-fv-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height:220px;
}
.subpage-fv-image{
  height:350px; 
}
.subpage-fv-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.subpage-fv-title{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#7d93b5;
  padding:20px;
  text-align:center;
}

.subpage-fv-title h1{
  margin:0;
  color:#fff;
  font-size:40px;
  font-weight:800;
  line-height:1.35;
  text-shadow:2px 2px 4px rgba(0,0,0,.25);
}

/* ========================================
キャッチ帯
======================================== */
.subpage-catch{
  padding:26px 0;
  border-top:1px solid #d8dde6;
  border-bottom:1px solid #d8dde6;
}

.subpage-catch p{
  margin:0;
  text-align:center;
  color:var(--main-blue);
  font-size:30px;
  font-weight:800;
  line-height:1.5;
}

/* ========================================
導入
======================================== */
.subpage-intro-box{
  max-width:980px;
  margin:0 auto;
}

.subpage-intro-box p{
  margin:0 0 18px;
  font-size:16px;
  line-height:2;
  color:#333;
}

.subpage-intro-box p:last-child{
  margin-bottom:0;
}

/* ========================================
ねらい
======================================== */
.subpage-goal-box{
  max-width:980px;
  margin:0 auto;
}

.subpage-text{
  margin:0 0 18px;
  font-size:16px;
  line-height:2;
  color:#333;
}

.subpage-check-list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  border-bottom:1px dotted #9cb4d1;
}

.subpage-check-list li{
  position:relative;
  margin-bottom:0;
  padding:10px 0 10px 18px;
  color:var(--main-blue);
  font-size:18px;
  font-weight:700;
  line-height:1.9;
  border-bottom:1px dotted #9cb4d1; 
}

.subpage-check-list li::before{
  content:"・";
  position:absolute;
  left:0;
  top:10px; /* ←ここが重要 */
  color:var(--main-blue);
  font-weight:700;
}

.subpage-check-list li:last-child{
  border-bottom:none;
}

/* ========================================
効果
======================================== */
.subpage-effect-box{
  max-width:980px;
  margin:0 auto;
}

.subpage-effect-left p{
  margin:0 0 14px;
  font-size:15px;
  color:#333;
  line-height:1.9;
}

.subpage-dot-list{
  list-style:none;
  margin:0;
  padding:0;
}

.subpage-dot-list li{
  position:relative;
  margin-bottom:8px;
  padding-left:18px;
  font-size:15px;
  line-height:1.9;  
font-weight: 700;	
}

.subpage-dot-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#333;
  font-weight:700;
}

.subpage-effect-right{
  border:1px solid #bfd0e4;
  background:#f8fbff;
  padding:18px 22px;
}

.subpage-effect-right-head{
  margin-bottom:14px;
  text-align:center;
  color:var(--main-blue);
  font-size:18px;
  font-weight:800;
}

.subpage-line-list{
  list-style:none;
  margin:0;
  padding:0;
}

.subpage-line-list li{
  position:relative;
  padding:10px 0 10px 24px;
  border-bottom:1px dotted #9cb4d1;
  color:var(--main-blue);
  font-size:18px;
  font-weight:700;
  line-height:1.7;
}

.subpage-line-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:10px;
  color:var(--main-blue);
  font-weight:700;
}


.subpage-effect-note{
  margin-top:28px;
  text-align:center;
  color:#333;
  font-size:20px;
  line-height:1.9;
  font-weight:500;
}

.subpage-effect-note strong{
  color:#333;
  font-weight:800;
}

/* ========================================
詳細プログラム
======================================== */
.subpage-program-wrap{
  max-width:980px;
  margin:0 auto;
}

.subpage-program-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid #d3dbe7;
}

.subpage-program-table thead th{
  background:#9fb8d6;
  color:#fff;
  text-align:center;
  font-size:15px;
  font-weight:700;
  padding:12px 10px;
  border:1px solid #d3dbe7;
}

.subpage-program-table thead th:first-child{
  width:auto;
}

.subpage-program-table thead th:last-child{
  width:130px;
}

.subpage-program-table tbody td{
  padding:18px 18px;
  border:1px solid #d3dbe7;
  vertical-align:top;
  background:#fff;
}

.program-item{
  font-size:15px;
  line-height:1.9;
  color:#333;
}

.program-title{
  margin-bottom:8px;
  color:#222;
  font-size:18px;
  font-weight:700;
  line-height:1.7;
}

.program-item ul{
  margin:0;
  padding-left:1.2em;
}

.program-item li{
  margin-bottom:2px;
}
.program-item ul ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.program-method{
  text-align:center;
  vertical-align:middle !important;
  color:#222;
  font-size:16px;
  font-weight:700;
  line-height:1.8;
  white-space:nowrap;
}

.subpage-program-note{
  margin:18px 0 0;
  font-size:13px;
  line-height:1.8;
  color:#444;
}

.subpage-cta-wrap{
  margin-top:28px;
}

/* ========================================
下部
======================================== */
.subpage-bottom-contact{
  margin-top:40px;
  text-align:right;
}
.subpage-program-wrap{
  max-width:980px;
  margin:0 auto;
}

/* ========================================
見出しサイズの微調整
======================================== */
.training-detail-page .section-heading{
  margin-bottom:40px;
}

.training-detail-page strong{
  color: var(--main-blue); 
  font-weight: 700;
}

/* ========================================
SP
======================================== */
@media (max-width: 991.98px){

  .subpage-section{
    padding:56px 0;
  }

  .subpage-box{
    padding:24px 20px;
  }

  .subpage-fv-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .subpage-fv-image{
    height:260px;
  }

  .subpage-fv-title{
    min-height:180px;
  }

  .subpage-fv-title h1{
    font-size:34px;
  }

  .subpage-catch{
    padding:18px 0;
  }

  .subpage-catch p{
    font-size:24px;
    line-height:1.6;
  }

  .training-detail-page .section-heading h2{
    font-size:22px;
  }

  .subpage-effect-note{
    font-size:17px;
    line-height:1.8;
  }

  .subpage-program-table thead th:last-child{
    width:90px;
  }

  .program-title{
    font-size:16px;
  }

  .program-item{
    font-size:14px;
    line-height:1.8;
  }

  .program-method{
    font-size:14px;
  }

  .subpage-bottom-contact{
    text-align:center;
  }
}

@media (max-width: 767.98px){

  .subpage-fv-image{
    height:200px;
  }

  .subpage-fv-title{
    padding:15px;
    min-height:120px;
  }

  .subpage-fv-title h1{
    font-size:26px;
    line-height:1.4;
  }

  .subpage-catch p{
    font-size:20px;
  }

  .subpage-intro-box p,
  .subpage-text,
  .subpage-check-list li,
  .subpage-dot-list li,
  .subpage-line-list li{
    font-size:16px;
  }

  .subpage-effect-right-head{
    font-size:16px;
  }

  .subpage-effect-note{
    font-size:15px;
  }

  .subpage-section .container{
    padding-left:15px;
    padding-right:15px;
  }

  .subpage-program-wrap{
    max-width:100%;
    margin:0 auto;
    padding:0;
    overflow:hidden;
  }

  .subpage-program-table,
  .subpage-program-table thead,
  .subpage-program-table tbody,
  .subpage-program-table th,
  .subpage-program-table td,
  .subpage-program-table tr{
    display:block;
    width:100%;
  }

  .subpage-program-table{
    min-width:0;
    width:100% !important;
    border:none;
    background:transparent;
  }

  .subpage-program-table thead{
    display:none;
  }

  .subpage-program-table tr{
    margin:0 0 20px 0;
    border:1px solid #d3dbe7;
    background:#fff;
    box-sizing:border-box;
  }

  .subpage-program-table td{
    width:100%;
    border:none;
    padding:16px;
    box-sizing:border-box;
  }

  .subpage-program-table td:first-child{
    border-bottom:1px dotted #d3dbe7;
  }

.subpage-program-table td.program-method{
  display: flex;
  align-items: center;
  gap: 10px;        
  padding-top: 0px;            
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--main-blue);
  white-space: normal;
  position: static;
}

.subpage-program-table td.program-method::before{
  content:"手法";
  position: static;
  font-size: 12px;
  margin-top:10px;	
  padding: 3px 8px;
  background: #e3ecf8;
  color: var(--main-blue);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.subpage-program-table td.program-method{
  display: flex;
  align-items: flex-start; 
}

.subpage-program-table td.program-method::before{
  margin-top: 0;
}

.subpage-program-table td.program-method{
  padding-top: 4px; 
}

  .program-title{
    font-size:16px;
    line-height:1.6;
  }

  .program-item{
    font-size:14px;
    line-height:1.8;
  }

  .subpage-bottom-contact{
    text-align:center;
  }
}

/* 研修一覧 */
.training-list-card{
  margin-bottom: 28px;
}

.training-list-card .theme-card-head{
  text-align: left;
  background: #9fb8d6;
  padding: 12px 28px;
}

.training-list-card-body{
  padding: 18px 28px;
}

.training-list-catch{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--main-blue);
}

.training-list-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.training-list-card-footer{
  padding: 0 28px 24px;
  text-align: center;
}

.training-list-card-footer .detail-btn{
  display: inline-flex;
  min-width: 212px;
}

@media (max-width: 991.98px){
  .training-list-card .theme-card-head{
    padding: 12px 20px;
  }

  .training-list-card-body{
    padding: 18px 20px 10px;
  }

  .training-list-card-footer{
    padding: 0 20px 22px;
  }
}

@media (max-width: 767.98px){
  .training-list-card{
    margin-bottom: 20px;
  }

  .training-list-card .theme-card-head{
    padding: 10px 16px;
  }

  .training-list-card-body{
    padding: 16px 16px 8px;
  }

  .training-list-catch,
  .training-list-text{
    font-size: 14px;
  }

  .training-list-card-footer{
    padding: 0 16px 16px;
  }

  .training-list-card-footer .detail-btn{
    min-width: 180px;
  }
}

/* ========================================
研修の詳細ページ
======================================== */


.subpage-fv-title h1 span{
  display:block;
  font-size:25px;
  line-height:1.4;
  margin-bottom:6px;
}
@media (max-width: 767.98px){
  .subpage-fv-title h1 span{
    font-size:18px;
    margin-bottom:4px;
  }
}

.training-logo-cta-box{
  border: 6px solid #d8e3f1;
}

.training-logo-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-bottom:20px;
}

.training-logo-top img{
  display:block;
  max-height:42px;
  width:auto;
}

.training-logo-cta-main{
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:24px;
  align-items:center;
}

.training-logo-cta-copy h3{
  margin:0 0 12px;
  color:var(--main-blue);
  font-size:25px;
  font-weight:800;
  line-height:1.4;
  text-align:center;
}

.training-logo-cta-copy p{
  margin:0;
  text-align:center;
  font-size:16px;
  line-height:1.9;
  color:#333;
  font-weight:700;
}

.training-logo-cta-profile{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.training-logo-cta-profile img{
  max-width:150px;
  height:auto;
  display:block;
}

.training-logo-cta-name{
  margin-top:8px;
  color:var(--main-blue);
  font-size:18px;
  font-weight:800;
  letter-spacing:0.05em;
}

.target-person-box{
  border:1px solid #173f7a;
max-width: 980px;
  margin: 0 auto;	
}

.training-program-meta{
  margin-top:20px;
}

.training-program-meta-row{
  display:grid;
  grid-template-columns:140px 1fr;
  border:1px solid #d3dbe7;
}

.training-program-meta-row + .training-program-meta-row{
  margin-top:12px;
}

.training-program-meta-head{
  background:#9fb8d6;
  color:#fff;
  font-size:15px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 12px;
}

.training-program-meta-body{
  background:#fff;
  color:#333;
  font-size:15px;
  line-height:1.9;
  padding:14px 18px;
  font-weight:700;
}

.bottom-cta-box{
  border:4px solid #d8e3f1; /* 6 → 4 に */
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 30px; /* 少し詰める */
	
}

.bottom-cta-box h2{
  margin:0 0 20px;
  color:var(--main-blue);
  font-size:27px;
  font-weight:800;
  line-height:1.4;
}

.bottom-cta-box p{
  margin:0;
  color:var(--main-blue);
  font-size:16px;
  line-height:2;
  font-weight:700;
}

@media (max-width: 991.98px){
  .training-logo-cta-main{
    grid-template-columns:1fr;
  }

  .training-logo-cta-copy h3{
    font-size:25px;
  }

  .bottom-cta-box h2{
    font-size:28px;
  }

  .bottom-cta-box p{
    font-size:16px;
    line-height:1.9;
  }
}

@media (max-width: 767.98px){

  .training-logo-cta-main{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  /* 順番指定 */
  .training-logo-cta-profile{
    order:1;
    margin-bottom:16px;
  }

  .training-logo-cta-copy{
    order:2;
  }

  /* ロゴは一番上 */
  .profile-logo-row{
    order:-1;
    margin-bottom:16px;
  }

  .training-logo-top{
    gap:14px;
  }

  .training-logo-top img{
    max-height:30px;
  }

  .training-logo-cta-copy h3{
    font-size:22px;
  }

  .training-logo-cta-copy p{
    font-size:14px;
  }

  .training-program-meta-row{
    grid-template-columns:1fr;
  }

  .training-program-meta-head{
    justify-content:flex-start;
  }

  .bottom-cta-box h2{
    font-size:22px;
  }

  .bottom-cta-box p{
    font-size:14px;
  }
}

 .print-action{
  margin: 10px 0 20px;
  text-align: right;
}

/* =========================
   小さめ印刷ボタン
========================= */
.print-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #333;
  color: #fff;
  margin-top:10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;

  transition: all .2s ease;
}

/* アイコン */
.print-icon{
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;

  -webkit-mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M6 9V3h12v6h2a2 2 0 012 2v6h-4v4H6v-4H2v-6a2 2 0 012-2h2zm2-4v4h8V5H8zm8 14v-4H8v4h8zm2-6a1 1 0 100-2 1 1 0 000 2z'/>\
</svg>") no-repeat center / contain;

  mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M6 9V3h12v6h2a2 2 0 012 2v6h-4v4H6v-4H2v-6a2 2 0 012-2h2zm2-4v4h8V5H8zm8 14v-4H8v4h8zm2-6a1 1 0 100-2 1 1 0 000 2z'/>\
</svg>") no-repeat center / contain;
}

/* ホバー */
.print-btn:hover{
  background: #f5f5f5;
  border-color: #999;
}

/* 押したとき */
.print-btn:active{
  transform: scale(0.96);
}
@media (max-width:768px){
  .print-action{
    display: none !important;
  }
}

/* 講演についてページ：既存CSSベースの最小調整 */

/* 強調コピー（中央＋下線） */
.training-note{
  text-align: center;
  font-weight: 800;
  color: #333;
  line-height: 1.8;
  font-size:18px; 	
}
.training-note span{
  display: inline-block;
  border-bottom: 4px solid #9fb8d6;
  padding-bottom: 4px;
}

.lecture-theme-list-wrap{
  max-width: 980px;
}

.training-detail-page .training-list-card .d-flex > a{
  color: #355b8c;
  line-height: 1;
}

.training-detail-page .training-list-card .d-flex > a:hover{
  opacity: .7;
}
@media (max-width:768px){
  .training-note{
    font-size:16px;
  }
}



/* よくある質問 */
.faq-page{
	max-width:980px;
	margin:0 auto;
}
.faq-category-title{
  font-size:18px;
  font-weight:700;
  margin:40px 0 15px;
  padding:8px 15px;
  background-color: var(--main-blue);
  color:#fff;
}

/* ブログ */
.blog-box {
  height: 82px;
  border: 1px solid #E8E8E8;
  position: relative;
  display: flex;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .blog-box {
    height: 100%;
    display: block;
  }
}


.blog-img {
  width: 25%;
  height: 80px;
  position: relative; }
  @media (min-width: 768px) {
    .blog-img {
      width: 100%;
      height: 190px; } }
  .blog-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover; }

.blog-detail {
  padding: 8px;
  width: 75%; }
  @media (min-width: 768px) {
    .blog-detail {
      padding: 15px;
      width: 100%; } }

.blog-title {
  font-size: 13px;
  line-height: 1.4; 
color:var(--main-blue);
font-weight:700;}

  @media (min-width: 768px) {
    .blog-title {
      font-size: 16px;
      padding-bottom: 20px; } }

.blog-date {
  color: #C7C7C7;
  font-size: 13px; }
  @media (min-width: 768px) {
    .blog-date {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%); } }

@media (max-width: 767px) {
  .blog-section .row {
    --bs-gutter-y: 0.5rem;
  }
}

/* ======= 記事ページ ======= */
.main {
  width: 100%;}
@media (min-width: 992px) {
 .main {
   width: calc( 100% - 390px);
   margin-right: 40px; } }
.side-bar {
   width: 100%; } 
@media (min-width: 992px) {
 .side-bar {
   width: 350px; } }

.single-head, .single-image-wrap, .hello, .recommend-for, .menu {
  margin-bottom: 30px; }

.single-ttl {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5; 
color:var(--main-blue);}

.single-image-wrap {
  width: 100%;
  height: 280px; }
  @media (min-width: 768px) {
    .single-image-wrap {
      height: 450px; } }
  .single-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
#ez-toc-container {
	width: 90% !important;
	margin: 0 auto 30px !important;
	border-radius: 0 !important;
	}
@media (min-width: 768px) {
	#ez-toc-container {
		width: 83% !important;}}
.single-ttl {
	font-size: 20px;}
.recommend-for, #ez-toc-container {
  background-color: #F8F8F8 !important;
  border: #373737 1px solid !important;
  padding: 15px !important; }
  .recommend-for h2, .ez-toc-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 1em !important;}
    @media (min-width: 768px) {
      .recommend-for h2, .ez-toc-title {
        font-size: 20px !important; } }
	.ez-toc-title-container {
		margin-bottom: 1em !important;}
  .recommend-for .recommend-content, #ez-toc-container {
    font-size: 16px !important;
    font-weight: 600 !important; }
    .recommend-for .recommend-content a, #ez-toc-container a {
			color: #373737 !important;
      display: block !important;
      text-decoration: underline !important;
      margin-bottom: 0.5em !important; }
.recommend-content ul {
	margin-left: 1.5em;
}
.recommend-content li {
	list-style: none;
	position: relative;
}
.recommend-content li::before {
	color: #c0b283;
	content: '\f00c';
	font-family: "Font Awesome 5 Free";
	position: absolute;
	top: 0;
	left: -1.5em;
}

.post-content h2, .post-content h3, .post-content h4 {
  margin-bottom: 20px;}
.post-content p {
	 margin-bottom: 20px;}
.post-content h2 {
  font-size: 24px;
	line-height: 1.6em;
  font-weight: 600;
  border-top: #373737 2px solid;
  border-bottom: #373737 2px solid;
  padding: 0.5em; }

.post-content h3 {
  font-size: 20px;
	line-height: 1.6em;
  font-weight: 600;
  border-left: #373737 5px solid;
  padding-left: 0.6em; }

.post-content h4 {
  font-size: 20px;
	line-height: 1.6em;
  font-weight: 600;
  border-bottom: #373737 2px solid;
  padding: 0.4em; }

.post-content img {
	display: block;
  max-width: 90%;
  height: auto;
	margin: 0 auto 30px;}


.page-ttl,.archive-ttl {
	color: #fff;
	font-size: 20px;
	text-align: center;
	background-color: #545454;
	padding: 20px 0;}

.category-hpb .archive-ttl {
	background-color: #BF2B80;}
.category-attracting-customers .archive-ttl {
	background-color: #5BB11C;}
.category-recommend .archive-ttl {
	background-color: #c0b283;}

/* ======= サイドバー ======= */

.author_profile {
  padding: 20px 15px; 
  margin-bottom: 30px;
  border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .author_profile {
      padding: 40px; } }

.avatar-box {
  width: 130px;
  height: 130px;
  margin: 0 auto 1em; }
  .avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; }

.info .name {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em; }

.side-bar-post-list {
  margin-bottom: 30px;}

.side-bar-post-list .side-bar-ttl {
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 0 18px;
  margin: 0 0 20px 0;
  height: 40px;
  line-height: 40px;
  border-left: 4px solid var(--main-blue); }

.side-bar-post-list .post-box-wrap {
  margin-bottom: 1em; }
  @media (min-width: 768px) {
    .side-bar-post-list .post-box-wrap {
      margin-bottom: 30px; } }

.side-bar-post-list .post-box {
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #ddd;
  margin-bottom: 10px;}

.side-bar-post-list .image-wrap {
  width: 80px;
  height: 80px; }
  .side-bar-post-list .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.side-bar-post-list .post-inner {
  width: calc( 100% - 80px);
  padding-left: 10px; }

.side-bar-post-list .post-ttl {
  font-size: 14px;
color:#333;
font-weight:700;}

.side-bar-post-list .post-content p {
  font-size: 14px;
  margin-bottom: 0;}

.side-bar-post-list ul {
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  border-bottom: none;}

.side-bar-post-list li {
  list-style: none;}

.side-bar-post-list li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

/* ======= ページネーション ======= */
.pagenation {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.pagenation ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.pagenation li {
  list-style: none;
}

/* 通常ボタン */
.pagenation li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: #4b5d70;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* hover */
.pagenation li a:hover {
  background: #f5f7fa;
  border-color: #bfc9d6;
  color: #2c3e50;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 現在ページ */
.pagenation li.active {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: #2c3e50;
  color: #fff;
  font-weight: 600;
}

/* 前へ・次へ */
.pagenation li.prev a,
.pagenation li.next a {
  padding: 0 16px;
  font-weight: 600;
}

/* スマホ */
@media (max-width: 767px) {
  .pagenation ul {
    gap: 6px;
  }

  .pagenation li a,
  .pagenation li.active {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}
.post-time{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.post-time::before{
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;

  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='4' width='18' height='18' rx='2'/>\
<line x1='8' y1='2' x2='8' y2='6'/>\
<line x1='16' y1='2' x2='16' y2='6'/>\
<line x1='3' y1='10' x2='21' y2='10'/>\
</svg>");
}
/* ======= 前後記事ナビ（アイコン強調） ======= */
.d-flex.justify-content-between.py-5 {
  gap: 16px;
  border-top: 1px solid #e5e7eb;
}

/* ボタン */
.d-flex.justify-content-between.py-5 a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 64px;
  background: #fff;
  color: var(--main-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
  position: relative;
}

/* 左（前） */
.d-flex.justify-content-between.py-5 a:first-child {
  justify-content: flex-start;
}

/* 右（次） */
.d-flex.justify-content-between.py-5 a:last-child {
  justify-content: flex-end;
}

/* アイコン */
.d-flex.justify-content-between.py-5 a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:var(--main-blue);
  color: #fff;
  font-size: 12px;
  transition: all 0.25s ease;
}

/* 左アイコン余白 */
.d-flex.justify-content-between.py-5 a:first-child i {
  margin-right: 10px;
}

/* 右アイコン余白 */
.d-flex.justify-content-between.py-5 a:last-child i {
  margin-left: 10px;
}


/* 片方だけ */
.d-flex.justify-content-between.py-5 a:only-child {
  justify-content: center;
}

/* スマホ */
@media (max-width: 767px) {
  .d-flex.justify-content-between.py-5 {
    flex-direction: column;
    gap: 10px;
  }

  .d-flex.justify-content-between.py-5 a,
  .d-flex.justify-content-between.py-5 a:first-child,
  .d-flex.justify-content-between.py-5 a:last-child {
    justify-content: center;
    min-height: 54px;
    font-size: 13px;
  }
}
/* ニュース */
.news-box a {
  display: block; }

.news-box-head {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E8A5AE;
  padding: 0.5em 1em; }
  .news-box-head a {
    color: #fff; }
    .news-box-head a:hover {
      color: #fff; }

.news-box-detail {
  padding: 10px 0;
  border-bottom: #D1D1D1 1px solid; }

.news-data {
  color: #E8A5AE;
  font-size: 14px;
  font-weight: bold; }

.page .news-box-detail {
  border-left: none;
  border-right: none; }

/* =========================
   お問い合わせフォーム全体
========================= */
.mw_wp_form {
  max-width: 100%;
}

.mw_wp_form .form-group {
  margin-bottom: 1.5rem;
}

.mw_wp_form .form-head {
  font-weight: 700;
  color: #1f2d3d;
  font-size: 15px;
  line-height: 1.7;
  padding-top: 10px;
}

.mw_wp_form .form-detail {
  color: #333;
  font-size: 15px;
}

/* =========================
   必須・任意バッジ
========================= */
.mw_wp_form .required,
.mw_wp_form .any {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
}

.mw_wp_form .required {
  background: #d94b64;
  color: #fff;
}

.mw_wp_form .any {
  background: #eef2f7;
  color: #5f6b7a;
}

/* =========================
   入力欄
========================= */
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea,
.mw_wp_form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #fff;
  padding: 12px 16px;
  font-size: 15px;
  color: #222;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.mw_wp_form textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

.mw_wp_form input[type="text"]::placeholder,
.mw_wp_form input[type="email"]::placeholder,
.mw_wp_form input[type="tel"]::placeholder,
.mw_wp_form textarea::placeholder {
  color: #9aa5b1;
}

.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus,
.mw_wp_form select:focus {
  border-color: #1f4e8c;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 78, 140, 0.12);
}

/* =========================
   ラジオボタン
========================= */
.mw_wp_form .form-detail .horizontal-item + .horizontal-item {
  margin-left: 20px;
}

.mw_wp_form input[type="radio"] {
  margin-right: 6px;
  accent-color: #1f4e8c;
}

.mw_wp_form .mwform-radio-field-text {
  font-size: 15px;
  color: #333;
}

/* MW WP Form のラジオ表示補助 */
.mw_wp_form .horizontal-item {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
  margin-bottom: 10px;
}

/* =========================
   フォーム全体の箱感
========================= */
.contact-form-wrap,
.mw_wp_form {
  background: #fff;
max-width:980px;
	margin:0 auto;
}

.mw_wp_form .form-group {
  padding-bottom: 20px;
}

.mw_wp_form .form-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* =========================
   「営業メールはお断りします」
========================= */
.mw_wp_form .form-group:first-child .col-lg-8 {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* =========================
   ボタン
========================= */
.mw_wp_form .btn,
.mw_wp_form input[type="submit"],
.mw_wp_form input[type="button"] {
  min-width: 180px;
  height: 52px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.12);
}

.mw_wp_form .btn:hover,
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form input[type="button"]:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.mw_wp_form .bg-navy {
  background: linear-gradient(135deg, #1f4e8c, #163b68);
}

.mw_wp_form .text-white {
  color: #fff !important;
}

/* 戻るボタンの間隔 */
.mw_wp_form .mr-5 {
  margin-right: 16px !important;
}

/* =========================
   エラー表示
========================= */
.mw_wp_form .error,
.mw_wp_form .mwform-error {
  display: block;
  margin-top: 8px;
  color: #d92d20;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

/* 空のエラー要素は非表示 */
.mw_wp_form .error:empty,
.mw_wp_form .mwform-error:empty {
  display: none;
  margin-top: 0;
}

/* バリデーションエラー時だけ入力欄を赤く */
.mw_wp_form .mwform-invalid input,
.mw_wp_form .mwform-invalid textarea,
.mw_wp_form .mwform-invalid select {
  border-color: #d92d20;
  background: #fffafa;
}
/* 不要な空span対策 */
.mw_wp_form span.error:empty,
.mw_wp_form span.mwform-error:empty {
  display: none !important;
}
/* =========================
   スマホ対応
========================= */
@media (max-width: 767.98px) {
  .mw_wp_form .form-head {
    padding-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .mw_wp_form .form-detail {
    font-size: 14px;
  }

  .mw_wp_form input[type="text"],
  .mw_wp_form input[type="email"],
  .mw_wp_form input[type="tel"],
  .mw_wp_form textarea,
  .mw_wp_form select {
    min-height: 48px;
    font-size: 14px;
    padding: 11px 14px;
  }

  .mw_wp_form textarea {
    min-height: 150px;
  }

  .mw_wp_form .btn,
  .mw_wp_form input[type="submit"],
  .mw_wp_form input[type="button"] {
    min-width: 140px;
    height: 48px;
    font-size: 14px;
    padding: 0 18px;
  }

  .mw_wp_form .mr-5 {
    margin-right: 10px !important;
  }

  .mw_wp_form .horizontal-item {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .mw_wp_form .form-group:first-child .col-lg-8 {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.faq-heading h1, .contact-heading h1{
		color:var(--main-blue);
		font-weight:700;
	}
.contact-page{
	background:var(--light-blue-bg2);
}
.contact-section-inner{
	padding:0 20px;
}
.profile-detail h3{
	color: var(--main-blue);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
    margin: 20px 0 10px;
	padding:5px;
	text-align:center;
	background-color:var(--main-blue);
	color:#fff;
}
.profile-detail li{
	font-weight:700;
	color:var(--main-blue);
	line-height: 2;
}
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d3f8c; /* ブランドカラーに変更OK */
  font-weight: bold;
}

/* フッター固定 */
.fixed-footer-cta{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

/* 中身 */
.fixed-footer-cta .cta-inner{
  display: flex;
  gap: 12px;
  padding: 12px;
}

/* ボタン */
.fixed-footer-cta .cta-btn{
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size:18px;	
}


/* ===== PC調整 ===== */
@media (min-width: 768px){
.fixed-footer-cta .cta-inner{
    max-width: 700px; 
    margin: 0 auto;
  }
  body{
    padding-bottom: 85px; /* CTA高さに合わせる */
  }
}
@media (max-width: 767px){
.fixed-footer-cta .cta-inner{
    gap: 0; 
    padding: 0;
	font-size: 0;
  }

.fixed-footer-cta .cta-btn{
    flex: 1;
    padding: 16px 0;
    font-size: 15px;
	display: block;
  }

}

.form-group .section-heading{
  margin-bottom:25px;
}

.form-group .section-heading h2{
  margin:0 0 16px;
  color:var(--main-blue);
  font-weight:800;
  line-height:1.35;
  letter-spacing:.01em;
  font-size:22px;	
}

.form-group .box{
  border:1px solid var(--main-blue); 
}
