@charset "UTF-8";
/* ====================================
   Template Page Sections
   ==================================== */

/* ==========================================================================
   Base & Common Settings (Service Page Specific)
   ========================================================================== */
main {
  padding-top: 225px;
}

.section-padding {
  padding-top: 0;
  padding-bottom: 180px;
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .section-padding {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   Page Header (Title)
   ========================================================================== */
.page-header {
  padding-bottom: 130px;
  background-color: #fff;
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.page-title .ja {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 24px;
  color: #008fcc;
  margin-top: 25px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-bottom: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  font-weight: 700;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}
.breadcrumbs span:not(.current) {
  font-size: 0;
  display: inline-block;
  width: 75px;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding-bottom: 50px;
  }

  .page-header__inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
  }
  
  .page-title {
    font-size: 60px;
  }
  
  .breadcrumbs {
    margin-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  
  .breadcrumbs span:not(.current) {
    width: 30px;
    margin: 0 10px;
  }
}


/* ====================================
   Template Page Styles
   ==================================== */

/* ------------------------------------
   Category Navigation
   ------------------------------------ */
.template-category-nav {
}

.template-category-nav .container {
  background-color: #eaf8ff;
  padding: 50px 60px;
  border-radius: 4px;
  display: flex;
  align-items: stretch;
}

.cat-label {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  padding-right: 50px;
  margin-right: 70px;
  border-right: 1px solid #000;
  line-height: 1;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center; 
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  align-content: center;
}

.cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 25px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  box-sizing: border-box;
}

.cat-btn:hover,
.cat-btn.active {
  background-color: #000;
  color: #fff;
}

/* ------------------------------------
   Responsive (max-width: 768px)
   ------------------------------------ */
@media (max-width: 768px) {
  .template-category-nav .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .cat-label {
    border-right: none;
    border-bottom: 1px solid #000;
    padding-right: 0;
    padding-bottom: 15px;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    font-size: 32px;
    display: block; 
  }

  .cat-text {
    display: block;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .cat-btn {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
  }
}


/* --------------------------------------------------
   Grid エリア
-------------------------------------------------- */
.template__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* --------------------------------------------------
   各アイテム
-------------------------------------------------- */
.template-item {
  width: auto;
  max-width: none;
  text-align: center;
}

.template-item__title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #000;
  line-height: 1;
}

.template-item__sub {
  font-size: 17px;
  margin: 0 0 20px;
  color: #000;
  line-height: 1;
}

.template-item__figure {
  width: 100%;
  margin-bottom: 20px;
}

.template-item__figure img {
  width: auto;
  height: auto;
  max-width: none;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .template-item__figure img {
    width: 90%;
  }
}
.template-item__caption {
  font-size: 17px;
  color: #eb6877;
  font-weight: bold;
  margin: 0 0 30px;
  line-height: 1;
}

/* --------------------------------------------------
   ボタン周り
-------------------------------------------------- */
.template-item__actions {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 230px;
  height: 56px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff !important;
  /* border-radius: 4px; */
  transition: opacity 0.3s;
  background-color: #434343;
  padding: 0 15px;
  letter-spacing: 0.05em;
}

.btn:hover {
  opacity: 0.8;
}

.icon-ai, .icon-pdf {
  display: inline-flex;
  margin-right: 8px;
  width: 28px;
  height: 28px;
}
