@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
  }
  
  header, footer, nav, section, article, main, aside, figure, figcaption {
    display: block;
  }
  
  ol, ul {
    list-style: none;
    list-style-type: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }

  /* スマホで非表示 */
.hidden-sp {
  display: none !important;
}
@media (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
  .hidden-sp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
  .hidden-pc {
    display: block !important;
  }
}

/* @charset "UTF-8"; */
.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.breadcrumb--contact {
  margin-top: 20px;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  color: #5a8a5a;
  margin-right: 8px;
  position: relative;
  display: inline-block;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  color: #5a8a5a;
  margin-left: 8px;
}

.breadcrumb__item a {
  color: #3e7e6d;
  text-decoration: underline;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.breadcrumb__item a:hover {
  color: #ff6b6b;
}

.privacy {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
}

.privacy__title {
  font-size: 2rem;
  color: #2a4d47;
  margin-bottom: 24px;
  text-align: center;
}

.privacy__section {
  margin-bottom: 24px;
}

.privacy__heading {
  font-size: 1.1rem;
  color: #3e7e6d;
  margin-bottom: 8px;
}

.privacy__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.privacy__link {
  color: #ff6b6b;
  text-decoration: underline;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.privacy__link:hover {
  color: #2a4d47;
}

body {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  color: #2a4d47;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f6f8fa;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.is-fixed {
  overflow: hidden;
}

.main-title {
  color: #2a4d47;
}

.subtitle {
  color: #3e7e6d;
}

.light-text {
  color: #5a8a5a;
}

.handwriting {
  font-family: "Oswald", sans-serif;
}

.section {
  padding: 48px 0;
}

.section__inner {
  padding: 0 32px;
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}

.section__head--center {
  text-align: center;
}

.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
}

.section__head-sub {
  font-size: 11px;
}

.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  margin: 0 auto;
  padding: 6px 16px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #ff6b6b;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button--border {
  border: 1px solid #ffffff;
}
.button--border .button__text {
  color: #ffffff;
}

.button--border-green {
  color: #2a4d47;
  border: 2px solid #2a4d47;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button--border-green:hover {
  background-color: #2a4d47;
  color: #ffffff;
}

.button__icon,
.button__text {
  color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

.button__icon {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
}

.button__text {
  font-size: 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2a4d47;
  z-index: 1000;
}

.header--sub {
  background-color: #3e7e6d;
  padding: 0;
}

.header__container {
  position: relative;
  width: 100%;
}

.header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  color: #ffffff;
}

.header__logo--sub {
  padding: 20px;
}

.header__menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}

.header__menu-button.is-active {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}

.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #ffffff;
  padding-top: 60px;
}

.header__nav-item.header__nav-item {
  margin-top: 24px;
}

/* --- WordPressメニュー用クラスで再現 --- */
.menu-item {
  margin-top: 24px; /* 旧.header__nav-item */
  text-align: center;
}
.menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  margin: 0 auto;
  padding: 6px 16px;
  color: #fff;
  border-radius: 0.1em;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.menu-item a:hover {
  background-color: #ff6b6b;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* メニューごとに異なるFont Awesomeアイコンを表示 */
.menu-item:nth-child(1) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f044"; /* fa-edit */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
.menu-item:nth-child(2) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f109"; /* fa-laptop */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
.menu-item:nth-child(3) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2bd"; /* fa-user-circle */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
.menu-item:nth-child(4) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f101"; /* fa-angle-double-right */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
.menu-item:nth-child(5) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f02d"; /* fa-book (Blog) */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
.menu-item:nth-child(6) > a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0"; /* fa-envelope (Mail) */
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}

.fv {
  position: relative;
}

.fv__image {
  display: block;
  width: 100%;
}

.fv__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
    object-fit: contain;
  display: block;
}

.fv__contents {
  position: absolute;
  padding: 32px 20px;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% 100%;
  text-align: center;
}

.fv__heading-main {
  display: block;
  font-size: 30px;
  letter-spacing: 0.1em;
}

.fv__heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.service {
  background: #f2f9f4;
}

.service__item + .service__item {
  margin-top: 40px;
}

.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item-img i {
  font-size: 48px;
  color: #f9e6ad;
}

.service__item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.works {
  background: #f2f9f4;
}

.works__item + .works__item {
  margin-top: 40px;
}

.works__item-img {
  margin-bottom: 12px;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
          box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
}

/* 画像直下のアクションボタン */
.works__item-action {
  margin-bottom: 16px;
  text-align: center;
}

.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.works__item-tech {
  font-size: 14px;
  margin-block: 12px;
}

.works__item-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ボタンエリア */
.works__item-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.works__btn i {
  font-size: 13px;
}

.works__btn--primary {
  background-color: #3e7e6d;
  color: #ffffff;
}
.works__btn--primary:hover {
  background-color: #2a4d47;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(62, 126, 109, 0.3);
          box-shadow: 0 4px 12px rgba(62, 126, 109, 0.3);
}

.works__btn--secondary {
  background-color: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}
.works__btn--secondary:hover {
  background-color: #ff6b6b;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
          box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.works__item-voice-preview {
  margin-top: 16px;
  padding: 16px;
  background-color: #f2f9f4;
  border-radius: 8px;
  border-left: 4px solid #3e7e6d;
}

.works__voice-label {
  font-size: 14px;
  font-weight: bold;
  color: #2a4d47;
  margin-bottom: 8px;
}

.works__voice-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2a4d47;
  font-style: italic;
  margin: 0;
}

.voice-page {
  background: #ffffff;
}

/* パンくずリスト */
.breadcrumb {
  background: #f2f9f4;
  padding: 16px 0;
}

.breadcrumb--contact {
  margin-top: 20px;
}

/* ブログページ専用パンくずリスト */
.blog-layout .breadcrumb {
  background: rgba(168, 184, 153, 0.1);
}

.blog-layout .breadcrumb__link {
  color: #6b8e5a;
}
.blog-layout .breadcrumb__link:hover {
  color: #a8b899;
}

.blog-layout .breadcrumb__item--current {
  color: #4a5c3a;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb__item {
  font-size: 14px;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #5a8a5a;
}

.breadcrumb__link {
  color: #3e7e6d;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__link i {
  margin-right: 4px;
}

.breadcrumb__item--current {
  color: #2a4d47;
  font-weight: 600;
}

/* 案件情報 */
.voice-page__project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: #f2f9f4;
  border-radius: 12px;
  margin-bottom: 48px;
}

.voice-page__project-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.voice-page__project-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
          box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
}

.voice-page__project-title {
  font-size: 24px;
  font-weight: bold;
  color: #2a4d47;
  margin-bottom: 16px;
}

.voice-page__project-tech {
  margin-bottom: 16px;
  padding: 12px;
  background: #ffffff;
  border-radius: 6px;
  border-left: 4px solid #3e7e6d;
}

.voice-page__tech-label {
  font-weight: 600;
  color: #2a4d47;
  font-size: 14px;
  margin-right: 8px;
}

.voice-page__tech-list {
  color: #3e7e6d;
  font-weight: 500;
  font-size: 14px;
}

.voice-page__project-description {
  line-height: 1.8;
  color: #2a4d47;
  margin-bottom: 24px;
}

.voice-page__project-link {
  text-align: center;
}

/* お客様の声セクション */
.voice-page__content {
  margin-bottom: 48px;
}

.voice-page__voice-title {
  font-size: 20px;
  font-weight: bold;
  color: #2a4d47;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.voice-page__voice-title i {
  color: #ff6b6b;
  font-size: 18px;
}

.voice-page__testimonial {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  -webkit-box-shadow: 0 4px 20px rgba(51, 51, 51, 0.08);
          box-shadow: 0 4px 20px rgba(51, 51, 51, 0.08);
  border-left: 6px solid #ff6b6b;
  margin-bottom: 40px;
}

.voice-page__quote {
  margin: 0;
}

.voice-page__quote-section {
  margin-bottom: 32px;
}
.voice-page__quote-section:last-child {
  margin-bottom: 0;
}

.voice-page__quote-title {
  font-size: 18px;
  font-weight: bold;
  color: #3e7e6d;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f2f9f4;
}

.voice-page__quote-text {
  font-size: 16px;
  line-height: 1.8;
  color: #2a4d47;
  margin: 0;
}

/* 制作のポイント */
.voice-page__points {
  background: #f2f9f4;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
}

.voice-page__points-title {
  font-size: 18px;
  font-weight: bold;
  color: #2a4d47;
  margin-bottom: 20px;
}

.voice-page__points-list {
  list-style: none;
}

.voice-page__points-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.voice-page__points-item:last-child {
  margin-bottom: 0;
}
.voice-page__points-item i {
  color: #3e7e6d;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 戻るボタン */
.voice-page__back {
  text-align: center;
  margin-top: 48px;
}

.about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.about__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
          box-shadow: 0 4px 15px 0 rgba(51, 51, 51, 0.15);
}

.about__personal {
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid #3e7e6d;
}

.about__personal-text {
  font-size: 14px;
  line-height: 1.8;
  color: #3e7e6d;
  margin: 0;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 24px;
}

/* blog */

.blog {
  background: #f2f9f4;
}

/* work flowセクション */

.flow__list {
  margin-top: 64px;
}

.flow__item {
  position: relative;
  border: 1px solid #3e7e6d;
  padding: 46px 16px 24px;
  background-color: #ffffff;
}
.flow__item + .flow__item {
  margin-top: 40px;
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background: #2a4d47;
  color: #ffffff;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}
.flow__item-img i {
  font-size: 48px;
  color: #3e7e6d;
}

.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.page-bottom {
  color: #ffffff;
}

.page-bottom__item {
  padding: 40px;
}

.page-bottom__item--contact {
  background-color: #4ab8a2;
}

.page-bottom__item--sns {
  background-color: #3e7e6d;
}

.footer {
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
}

.footer__copy {
  font-size: 11px;
  color: #2a4d47;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 900;
  background-color: #ffffff;
  border: 2px solid #ffd93d;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.pagetop i {
  color: #ffd93d;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 2px;
}
.pagetop .pagetop__text {
  color: #ffd93d;
  font-size: 8px;
  font-weight: bold;
  line-height: 1;
}
.pagetop:hover {
  border-color: #e6c200;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.pagetop:hover i,
.pagetop:hover .pagetop__text {
  color: #e6c200;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.blog-page {
  padding: 40px 0 60px;
  min-height: 80vh;
  background-color: #f5f2eb;
}

.blog-page__head {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2a4d47;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.2;
}

.blog-page__title {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a4d47;
  letter-spacing: 0.05em;
}

.blog-page__title-sub {
  display: block;
  font-size: 1rem;
  color: #6b8e5a;
  margin-top: 8px;
  font-weight: 400;
}

.blog-article {
  background-color: #f5f2eb;
  padding: 40px 0 60px;
}

.blog-article__header {
  margin-bottom: 2rem;
  text-align: center;
  padding: 1rem 0;
}

.blog-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-article__date {
  font-size: 14px;
  color: #a8b899;
  font-weight: 500;
}

.blog-article__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(200, 185, 156, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
}
.blog-article__category a {
  color: inherit;
  text-decoration: none;
}

.blog-article__title {
  font-size: 22px;
  line-height: 1.3;
  color: #4a5c3a;
  margin-bottom: 1rem;
  padding: 0;
}

.blog-article__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.blog-article__eyecatch {
  margin-bottom: 40px;
  text-align: center;
}

.blog-article__eyecatch-placeholder {
  background: rgba(168, 184, 153, 0.1);
  border: 2px dashed rgba(168, 184, 153, 0.3);
  border-radius: 8px;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.blog-article__eyecatch-placeholder i {
  font-size: 48px;
  color: #a8b899;
  margin-bottom: 16px;
  display: block;
}
.blog-article__eyecatch-placeholder p {
  color: #4a5c3a;
  font-size: 14px;
  margin: 0;
}

.blog-article__content {
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(168, 184, 153, 0.1);
          box-shadow: 0 4px 15px rgba(168, 184, 153, 0.1);
  line-height: 1.8;
  color: #4a5c3a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 1rem 0;
}
.blog-article__content h2 {
  font-size: 18px;
  color: #6b8e5a;
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid rgba(168, 184, 153, 0.3);
}
.blog-article__content h2:first-child {
  margin-top: 0;
}
.blog-article__content h3 {
  font-size: 16px;
  color: #6b8e5a;
  margin: 20px 0 10px;
}
.blog-article__content p {
  margin-bottom: 16px;
}
.blog-article__content p:last-child {
  margin-bottom: 0;
}
.blog-article__content pre {
  background: #f5f2eb;
  border: 1px solid rgba(168, 184, 153, 0.3);
  border-radius: 6px;
  padding: 1rem;
  overflow-x: auto;
  margin: 16px 0;
}
.blog-article__content pre code {
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #4a5c3a;
}

.blog-article__lead {
  background: rgba(168, 184, 153, 0.1);
  padding: 1rem 0.75rem;
  border-radius: 8px;
  border-left: 4px solid #a8b899;
  margin-bottom: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog-article__lead p {
  font-size: 14px;
  font-weight: 500;
  color: #6b8e5a;
  margin: 0;
  line-height: 1.6;
}

.blog-article__share {
  margin-top: 48px;
  padding: 32px;
  background: rgba(168, 184, 153, 0.05);
  border-radius: 8px;
  text-align: center;
}
.blog-article__share h3 {
  margin-bottom: 24px;
  color: #6b8e5a;
  font-size: 18px;
}

.share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share-btn--twitter {
  background: #000000;
  color: white;
}
.share-btn--twitter:hover {
  background: #333;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.share-btn--facebook {
  background: #1877f2;
  color: white;
}
.share-btn--facebook:hover {
  background: #166fe5;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.share-btn--line {
  background: #06c755;
  color: white;
}
.share-btn--line:hover {
  background: #05b04b;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog-article__related {
  margin-top: 64px;
}
.blog-article__related h2 {
  text-align: center;
  color: #6b8e5a;
  margin-bottom: 32px;
  font-size: 24px;
}

.related-posts {
  display: grid;
  gap: 24px;
}

.related-post {
  background: white;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(168, 184, 153, 0.1);
          box-shadow: 0 2px 8px rgba(168, 184, 153, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.related-post:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.related-post__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
  background: rgba(168, 184, 153, 0.1);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-post__image i {
  font-size: 24px;
  color: #6b8e5a;
}

.related-post__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.related-post__category {
  font-size: 11px;
  color: #a8b899;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.related-post__title {
  margin-bottom: 8px;
}
.related-post__title a {
  color: #4a5c3a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.related-post__title a:hover {
  color: #6b8e5a;
}

.related-post__date {
  font-size: 12px;
  color: #a8b899;
}

.blog-category .category-info {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
  -webkit-box-shadow: 0 4px 15px rgba(168, 184, 153, 0.1);
          box-shadow: 0 4px 15px rgba(168, 184, 153, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.blog-category .category-info__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
  background: rgba(168, 184, 153, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-category .category-info__icon i {
  font-size: 28px;
  color: #6b8e5a;
}
.blog-category .category-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog-category .category-info__content h2 {
  color: #6b8e5a;
  margin-bottom: 12px;
  font-size: 20px;
}
.blog-category .category-info__content p {
  color: #4a5c3a;
  line-height: 1.6;
  margin: 0;
}

.sidebar__categories .current-category a {
  background: #6b8e5a;
  color: white;
}
.sidebar__categories .current-category a .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.sidebar__tags .tag-cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.sidebar__tags .tag-link {
  padding: 6px 12px;
  background: rgba(168, 184, 153, 0.1);
  color: #4a5c3a;
  border-radius: 16px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar__tags .tag-link:hover {
  background: #a8b899;
  color: white;
}
.sidebar__tags .tag-link.tag-size-1 {
  font-size: 11px;
}
.sidebar__tags .tag-link.tag-size-2 {
  font-size: 12px;
  font-weight: 600;
}
.sidebar__tags .tag-link.tag-size-3 {
  font-size: 14px;
  font-weight: 700;
}

.sidebar__recent .recent-posts,
.sidebar__recent .learning-resources,
.sidebar__resources .recent-posts,
.sidebar__resources .learning-resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.recent-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(168, 184, 153, 0.05);
  border-radius: 6px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.recent-post:hover {
  background: rgba(168, 184, 153, 0.1);
}

.recent-post__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  height: 40px;
  background: rgba(168, 184, 153, 0.15);
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recent-post__image i {
  font-size: 16px;
  color: #6b8e5a;
}

.recent-post__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.recent-post__title {
  margin-bottom: 6px;
}
.recent-post__title a {
  color: #4a5c3a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.recent-post__title a:hover {
  color: #6b8e5a;
}

.recent-post__date {
  font-size: 10px;
  color: #a8b899;
}

.resource-item {
  padding: 16px;
  background: rgba(168, 184, 153, 0.05);
  border-radius: 6px;
  border-left: 3px solid #a8b899;
}
.resource-item h4 {
  color: #6b8e5a;
  font-size: 14px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.resource-item h4 i {
  color: #a8b899;
}
.resource-item p {
  font-size: 12px;
  color: #4a5c3a;
  line-height: 1.4;
  margin: 0;
}

.blog-page__content {
  margin-top: 40px;
}

.blog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.blog__card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(168, 184, 153, 0.3);
          box-shadow: 0 4px 15px rgba(168, 184, 153, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.blog__card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 30px rgba(107, 142, 90, 0.25);
          box-shadow: 0 12px 30px rgba(107, 142, 90, 0.25);
}

.blog__card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog__card-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog__card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(245, 242, 235, 0.95);
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 14px;
  color: #6b8e5a;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.blog__card-category {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(200, 185, 156, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.cat-icon-web { color: #4ab8a2; }
.cat-icon-learning { color: #ffb347; }
.cat-icon-diary { color: #ff6b6b; }
.cat-icon-unauthorized { color: #a8b899; }

.blog__card-content {
  padding: 24px;
}

.blog__card-date {
  display: block;
  font-size: 13px;
  color: #a8b899;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog__card-title {
  margin-bottom: 12px;
}

.blog__card-link {
  color: #4a5c3a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.blog__card-link:hover {
  color: #6b8e5a;
}

.blog__card-excerpt {
  color: #4a5c3a;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 14px;
}

.blog__tag--pickup {
  background: #ff6b6b;
  color: #fff;
  font-weight: bold;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  display: inline-block;
}

.blog__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 60px;
}

.blog__pagination-current {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #6b8e5a;
  color: white;
  border-radius: 50%;
  font-weight: 600;
}

.blog__pagination-link,
.blog__pagination-next {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #4a5c3a;
  text-decoration: none;
  border: 1px solid rgba(168, 184, 153, 0.3);
  border-radius: 50%;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog__pagination-link:hover,
.blog__pagination-next:hover {
  background-color: rgba(168, 184, 153, 0.15);
  color: #6b8e5a;
}

.blog-page__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 60px;
}

.blog-layout {
  display: block;
  max-width: 100vw;
  margin: 0;
  padding: 0 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}
.blog-layout .section__inner {
  padding: 0;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.blog-layout .blog-page .section__inner {
  padding: 0 1rem;
}
.blog-layout .main {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sidebar {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 1rem 0 0 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sidebar__widget {
  margin-bottom: 1rem;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(168, 184, 153, 0.1);
          box-shadow: 0 2px 8px rgba(168, 184, 153, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.sidebar__widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6b8e5a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(168, 184, 153, 0.2);
}

.sidebar__profile {
  text-align: center;
}
.sidebar__profile .profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #a8b899;
}
.sidebar__profile h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6b8e5a;
  margin-bottom: 0.5rem;
}
.sidebar__profile p {
  font-size: 0.9rem;
  color: #4a5c3a;
  line-height: 1.6;
  text-align: left;
}

.sidebar__categories ul {
  list-style: none;
  padding: 0;
}
.sidebar__categories li {
  margin-bottom: 0.8rem;
}
.sidebar__categories a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4a5c3a;
  text-decoration: none;
  padding: 0.6rem 1rem;
  background: rgba(168, 184, 153, 0.1);
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar__categories a:hover {
  background: #a8b899;
  color: white;
}
.sidebar__categories a:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.sidebar__categories .count {
  background: rgba(200, 185, 156, 0.3);
  color: #4a5c3a;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar__contact {
  background: linear-gradient(135deg, #6b8e5a, #a8b899);
  color: white;
  text-align: center;
  border: none;
  padding: 1rem 0.75rem;
}
.sidebar__contact h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.sidebar__contact p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-align: left;
  padding: 0;
}
.sidebar__contact .btn {
  background: white;
  color: #6b8e5a;
  padding: 0.7rem 0.9rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sidebar__contact .btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #f5f2eb;
}

.sidebar__sns .sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sidebar__sns .sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.sidebar__sns .sns-link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.sidebar__sns .sns-link.x-twitter {
  background: #000000; /* Xの公式ブランドカラー */
  /* fa-x-twitterアイコンがない場合の代替表示 */
  /* 万が一アイコンフォントが表示されない場合 */
}
.sidebar__sns .sns-link.x-twitter i.fa-x-twitter::before {
  content: "𝕏"; /* Unicode X文字 */
  font-family: serif;
  font-weight: bold;
  font-size: 0.9em;
}
.sidebar__sns .sns-link.x-twitter i.fa-x-twitter {
  font-style: normal;
  font-family: serif;
}

@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
  .header--sub {
    padding: 0;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__logo--sub {
    padding: 40px;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    border: none;
    display: block;
  }
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head-main {
    font-size: 60px;
  }
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 160px;
    text-align: left;
  }
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service__item + .service__item {
    margin-top: 0;
  }
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works__item + .works__item {
    margin-top: 0;
  }
  .about__container {
    max-width: 800px;
    margin: 0 auto;
  }
  .about__personal {
    max-width: 600px;
    margin: 24px auto 48px;
  }

  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow__item + .flow__item {
    margin-top: 0;
  }
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .pagetop {
    right: 20px;
    bottom: 30px;
    width: 70px;
    height: 70px;
  }
  .pagetop i {
    font-size: 20px;
    margin-bottom: 3px;
  }
  .pagetop__text {
    font-size: 10px;
  }
  .works__item-action {
    margin-bottom: 20px;
  }
  .voice-page__project {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .voice-page__project-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .voice-page__project-link {
    text-align: left;
  }
  .blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .blog-layout .section__inner {
    padding: 0;
  }
  .blog-layout .blog-page .section__inner {
    padding: 0 2rem;
  }
  .blog-layout .main {
    min-width: 0;
  }
  .sidebar {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .sidebar__widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  .sidebar__contact {
    padding: 2rem 1.5rem;
  }
  .sidebar__contact .btn {
    width: auto;
    max-width: none;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
  }
  .blog-article__content {
    padding: 3rem 2.5rem;
    border-radius: 12px;
  }
  .blog-article__content h2 {
    font-size: 24px;
    margin: 48px 0 24px;
    padding-bottom: 12px;
  }
  .blog-article__content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
  }
  .blog-article__content pre {
    padding: 2rem;
  }
  .blog-article__content pre code {
    font-size: 14px;
  }
  .sidebar__sns .sns-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__contents {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  .section__head-main {
    font-size: 40px;
  }
  .about__img {
    max-width: 250px;
    margin: 0 auto;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .flow__item {
    min-height: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow__item-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .blog-page {
    padding: 60px 0 80px;
  }
  .blog__card-image {
    height: 240px;
  }
  .blog__card-content {
    padding: 32px;
  }
  .blog__card-link {
    font-size: 18px;
  }
  .blog__card-excerpt {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .blog__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.about-detail {
  padding-bottom: 48px;
}

/* about-detail */

.profile-section {
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 2em auto;
  max-width: 600px;
  padding: 2em 1.5em;
}

.profile-section-title {
  font-size: 1.2em;
  color: #f7b731;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-section-title i {
  margin-right: 0.5em;
  font-size: 1.3em;
  color: #ffb6b9;
}

.profile-section-detail {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1.2em 1.5em;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.profile-section-detail-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.7em;
  color: #0077cc;
  display: flex;
  align-items: center;
}
.profile-section-detail-title i {
  margin-right: 0.5em;
  font-size: 1.2em;
}
.profile-section-detail p {
  margin: 0 0 0.7em 0;
  line-height: 1.7;
}

.qa-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}

.qa-q, .qa-a {
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.3em 1.5em;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.08em;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-q {
  background: #ffe4ec;
  font-weight: bold;
  text-align: left;
}

.qa-a {
  background: #fff;
  font-weight: normal;
  text-align: left;
}

.qa-icon {
  font-size: 1.3em;
  margin-right: 0.7em;
}

.contact {
  padding: 20px;
  background: #f6f8fa;
}

.contact__title {
  text-align: center;
  font-size: 2.2rem;
  color: #2a4d47;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact__description {
  text-align: center;
  color: #3e7e6d;
  margin-bottom: 28px;
  font-size: 1rem;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
}


@media screen and (min-width: 1024px) {
  .contact__form {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.contact__label {
  font-size: 1rem;
  color: #2a4d47;
  margin-bottom: 6px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #5a8a5a;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 24px;
    width: auto;           /* 必要に応じてmax-widthも指定 */
  min-width: 140px;      /* 最小幅を設定（例） */
  max-width: 240px;      /* 最大幅を設定（例） */
  padding: 0.7em 2em;    /* 内側余白でバランス調整 */
  display: inline-block; /* 横幅を内容に合わせる */
  margin: 0 auto; 
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: 10px;
}

.contact__button:hover {
  background: #2a4d47;
}

.contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0 0 0;
  font-size: 0.95rem;
}

.contact__privacy input[type=checkbox] {
  margin-right: 8px;
  accent-color: #2a4d47;
}

.contact__privacy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__privacy-link {
  color: #3e7e6d;
  text-decoration: underline;
  margin-right: 4px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.contact__privacy-link:hover {
  color: #ff6b6b;
}

/* プラグイン用パンくずリストスタイル */

/* パンくずリスト（BreadcrumbNavXT用） */
.breadcrumb {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb ol,
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  position: relative;
  list-style: none;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
}
.breadcrumb a:hover {
  background: #f0f0f0;
  color: #0077cc;
}
.breadcrumb .current,
.breadcrumb li:last-child span {
  background: #0077cc;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  padding: 4px 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.breadcrumb .separator {
  margin: 0 8px;
  color: #bbb;
  font-size: 1em;
  font-weight: bold;
}
.breadcrumb i.fa-home {
  margin-right: 4px;
  font-size: 1em;
  color: #0077cc;
}


.breadcrumb__item--current,
.current-item {
  margin-left: 8px; /* お好みの余白に調整 */
}

/* スクロールダウン演出 */
.fv__scrolldown {
  position: absolute;
  left: 80px;
  top: 120px;
  bottom: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fv__scrolldown-text {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
  position: absolute;
  left: -60px;
  top: 0;
  margin: 0;
  white-space: nowrap;
  /* アニメーション指定なし：テキストは固定 */

  
}
.fv__scrolldown-arrow {
  position: relative;
  width: 1px;
  height: 60px;
  background: #fff;
  display: block;
  margin-top: 32px;
}
.fv__scrolldown-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: #fff;
  transform: rotate(-30deg);
  transform-origin: left top;
}
@keyframes scrollDown {
  0%,10% {
    bottom: 60px;
    height: 60px;
  }
  90%,100% {
    bottom: 10px;
    height: 100px;
  }
}
.fv__scrolldown-arrow {
  animation: scrollDown 2s ease-in-out infinite;
}
/* ブログカード全体リンク用 */
a.blog__card-link-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a.blog__card-link-wrap:hover {
  opacity: 0.8;
}

.form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
}
.form__fields {
  margin-bottom: 1.5em;
}
.form-field {
  margin-bottom: 1.2em;
}
.form-field__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.3em;
}
.form-field__label {
  font-weight: bold;
  margin-right: 0.5em;
}
.form-field__tag {
  color: #fff;
  background: #e57373;
  font-size: 0.8em;
  padding: 0.1em 0.5em;
  border-radius: 4px;
}
.form-field__item input,
.form-field__item textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form__privacy {
  margin-bottom: 1em;
  font-size: 0.95em;
}
.form-btn {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 0.8em 2em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}
.form-btn:hover {
  background: #388e3c;
}

.form__privacy-text a {
  color:#e57373;
  text-decoration: underline;
}

.form__submit {
  text-align: center;
}
.form-btn {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}


/* 768px以上でprofile-section-detail-title横のウサギ画像を非表示 */

/* ボタン左右のウサギ画像（768px以上のみ表示） */
.about-btn-rabbit {
  display: none;
}
@media (min-width: 768px) {
  .about-btn-rabbit {
    display: inline-block;
    width: 56px;
    height: auto;
    vertical-align: middle;
    margin: 0 1.5em;
  }
}
/* profile-section-detail-title 右側にキャラ画像配置 */
.profile-section-detail--withimg .profile-section-detail-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-detail-img {
  margin-left: 1em;
  width: 48px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .profile-detail-img {
    width: 32px;
    margin-left: 0.5em;
  }
}
/* about-detail ゆるキャラ画像配置（absoluteでスクロール追従しない） */
.about-character-wrap {
  position: relative;
}
.about-character {
  position: absolute;
  z-index: 10;
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.3s;
}
.about-character--left {
  left: 24px;
  bottom: 32px;
  width: 80px;
}
.about-character--right {
  right: 24px;
  bottom: 40px;
  width: 80px;
}
.about-character--center {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 90px;
}
@media (max-width: 768px) {
  .about-character--left {
    left: 8px;
    bottom: 8px;
    width: 48px;
  }
  .about-character--right {
    right: 8px;
    bottom: 8px;
    width: 48px;
  }
  .about-character--center {
    left: 50%;
    bottom: 0;
    width: 56px;
    transform: translateX(-50%);
  }
}

