@charset "utf-8";
/*--------------------
	ＴＯＰページ（スマートフォン／タブレット用）
--------------------*/

/* ========================================
   基本設定
======================================== */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-size: 13px;
}

#WRAPPER {
  padding: 64px 0 0; /* ヘッダー高さ64px分だけ下げる */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ========================================
   フォントサイズとブレークポイント
======================================== */
.f_14px {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}
.f_15px {
  font-size: 13px;
}
.f_17px {
  font-size: 15px;
}
.f_23px {
  font-size: 18px;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}
.f_56px {
  font-size: 30px;
  line-height: 1.4em;
  letter-spacing: 0.08em;
}
.pc_br {
  display: none;
}
.sp_br {
  display: block;
}

/* ========================================
   ヘッダー
======================================== */
.site-header {
  height: 64px; /* SPヘッダーの高さを固定 */
  padding: 0 20px;
  background-color: #fff;
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.1); 20251208田形修正*/
  display: flex;
  align-items: center;
}

/* PC用ナビゲーションを非表示 */
.site-header-nav-pc {
  display: none !important;
}

.site-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: -25px;
}

.site-header-logo-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-header-logo {
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 0 5px;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.site-header-sublogo {
  font-size: 10px;
  margin: 4px 0 0 5px;
  line-height: 1.2;
  letter-spacing: 0;
}

.site-header-meta {
  display: none;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  top: 10px;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

/* デフォルト時：1本目・3本目は途中に切れ目を入れたデザインに */
/* 上の線：左寄りに切れ目 */
.hamburger-menu span:nth-child(1) {
  background-image: linear-gradient(
    to right,
    #0984d6 0 15%,
    /* 左側短めの実線 */ transparent 15% 25%,
    /* 左寄りに切れ目 */ #0984d6 28% 100% /* 右側長めの実線 */
  );
  background-color: transparent;
}

/* 真ん中の線：フルライン */
.hamburger-menu span:nth-child(2) {
  background-color: #0984d6;
}

/* 下の線：右寄りに切れ目 */
.hamburger-menu span:nth-child(3) {
  background-image: linear-gradient(
    to right,
    #0984d6 0 75%,
    /* 左側長めの実線 */ transparent 75% 85%,
    /* 右寄りに切れ目 */ #0984d6 85% 100% /* 右側短めの実線 */
  );
  background-color: transparent;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-image: none;
  background-color: #0984d6;
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-image: none;
  background-color: #0984d6;
}

a.site-header-logo-link {
  margin-top: 20px;
}

.site-header-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  background-color: #eff8ff;
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
  padding: 58px 0 20px;
  height: 100vh;
  display: block !important;
  align-items: unset !important;
}

.site-header-nav.active {
  right: 0;
}

.site-header-nav .nav-left {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: block !important;
  align-items: unset !important;
  padding-bottom: 84px; /*20251208田形修正*/
}

.site-header-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 17px 12px;
  margin: 0 auto;
  padding: 0;
  width: fit-content;
  max-width: calc(100% - 48px);
  justify-content: center;
}

.site-header-nav-list li {
  width: 100%;
  list-style: none;
}

.site-header-nav-list li a {
  display: block;
  font-size: 14px;
  padding: 0 12px;
  width: 100%;
  text-align: left;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.site-header-nav-list li a:hover {
  background-color: rgba(8, 116, 214, 0.05);
}

/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
  .site-header-nav-list {
    display: flex;
    flex-wrap: wrap;
  }
  .site-header-nav-list li {
    width: calc(100% / 4);
  }
}

.nav-item-main {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}

.nav-item-main::before {
  content: "・";
  font-size: 26px;
  color: #c5c5c5;
  line-height: 1;
  flex-shrink: 0;
}

.nav-en {
  font-size: 9px;
  color: #a1a1a1;
  font-weight: 400;
  display: block;
  margin-top: 3px;
  margin-left: 34px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.site-header-nav .btn-contact {
  display: none;
}

.nav-footer {
  display: grid !important;
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: 24px auto;
  padding: 0;
}

.nav-footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 38px;
}

.nav-footer-contact img {
  width: 40px;
  height: 48px;
}

.nav-footer-contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

/*20251208田形追加*/
.nav-footer-contact-text a img {
  width: 230px;
  height: 24px;
}

.nav-footer-phone {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

/*20251208田形修正*/
.nav-footer-hours {
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/*20251208田形修正*/
.nav-footer-hours span {
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.nav-footer-info {
  width: 312px;
  max-width: 100%;
}
/*20251208田形修正*/
.nav-footer-company {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 45px 0 4px 15px;
  text-align: left;
}
/*20251208田形修正*/
.nav-footer-subcompany {
  font-size: 10px;
  color: #666;
  margin: 0 0 12px 15px;
  text-align: left;
}

.nav-footer-address-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 8px 16px;
}

.nav-footer-address {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  text-align: left;
  position: relative;
  left: 0px;
}

.nav-footer-address2 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  text-align: left;
  position: relative;
  left: 15px;
  top: -5px;
}

.nav-footer-map {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #0874d6;
  text-decoration: none;
  white-space: nowrap;
}

.nav-footer-contact-bottom {
  margin-top: 16px;
  width: 312px;
  max-width: 100%;
}

.nav-footer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #333;
  background-color: #e0e0e0;
  padding: 11px;
  border-radius: 8px;
  box-sizing: border-box;
  width: 281px;
  margin: 0 15px 24px;
  font-weight: 700;
}

.nav-footer-tel span {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.nav-footer-privacy {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  text-decoration: underline;
  display: block;
  text-align: left;
  margin: 0 15px;
}

/* ========================================
   メインビジュアル（FV）
======================================== */
.fV {
  height: calc(750px - 116px);
  padding: 64px 0px 80px;
  box-sizing: border-box;
  border-radius: 0 0 40px 40px;
  max-height: inherit;
}

div.FV::after {
  border-radius: 0 0 40px 40px;
}

.fV img,
#slideshow,
#slideshow .item,
#slideshow .item img {
  /*height: 0px;*/
  object-fit: cover;
}
.fV .slick-slide img {
  border-radius: 0 0 40px 40px;
}

.slide.sp_br {
  display: block !important;
}

.slide.pc_br {
  display: none !important;
}

.fV-inner {
  /*margin-top: 765px;*/
  padding: 0;
}

.fV-inner::after {
  border-radius: 0 0 40px 40px;
}

.fV-text {
  /*position: static;
  margin-bottom: 40px;*/
  left: 5%;
  bottom: 80px;
}

.fV-lead {
  font-size: 29px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

.fV-sub {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}

/* SP：FV 内の PC 用お知らせカードは非表示 */
.fV > .fV-news {
  display: none;
}

/* SP：FV の直後に置いたお知らせカードを使用 */
.fV + .fV-news {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 0;
  background-color: #fff;
}

.fV-news-item {
  max-width: 349px;
  width: 100%;
  min-height: 84px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px 14px;
}
.fV-news-item:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 500px) {
  .fV-news-item {
    max-width: inherit;
    min-width: inherit;
    width: calc(100% - 28px);
    margin: 0 13px;
  }
}

.fV-news-label,
.fV-news-date,
.fV-news-title p {
  font-size: 14px;
}

.fV-news-title p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.scroll-down-text {
  display: none;
}

.scroll-down::after {
  display: none;
}

.section-label {
  font-size: 10px;
  margin-bottom: 48px;
}

/* ========================================
   Conceptセクション
======================================== */
.concept {
  padding: 60px 20px;
}

.concept-inner {
  flex-direction: column;
  gap: 35px;
  padding: 0;
}

.concept-left,
.concept-right {
  width: 100%;
}

.concept-text {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.015em;
}

.concept-text br {
  display: none;
}

.concept-text br.sp_br {
  display: block;
}

.concept-copy {
  font-size: 23px;
}

.concept-footer-text {
  font-size: 31px;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  margin-top: 60px;
  margin-bottom: 175px;
  margin-left: 6px;
  line-height: 1.5;
  white-space: normal;
}

/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
  .concept-inner {
    padding: 0 68px;
  }
  .concept-footer-text {
    font-size: 54px;
    margin-left: 59px;
  }
}

/* ========================================
   SP Fixed Footer
======================================== */
.sp-fixed-footer {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.sp-footer-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.sp-footer-btn img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.sp-footer-access {
  flex-direction: column;
  flex: 0.35;
  background-color: #e4e4e4;
  min-width: 64px;
}

.sp-footer-access img {
  margin-bottom: 0;
}

.sp-footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px; /* 行間もさらに少しだけ詰める */
  letter-spacing: -0.03em; /* 文字の間隔をもう少し詰める */
}

.sp-footer-hours {
  font-size: 9px;
  white-space: nowrap;
}

.sp-footer-tel {
  background-color: #eff8ff;
}

.sp-footer-mail {
  background-color: #faeddd;
  gap: 5px;
}

/* ========================================
   ページトップボタン（SP版）
======================================== */
.page-top-btn {
  position: fixed !important;
  right: 20px !important;
  left: auto !important;
  bottom: 100px;
  width: auto;
  height: auto;
  background-color: transparent;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  transform: none !important;
}

.page-top-btn:hover {
  transform: translateY(-2px) !important;
}

.page-top-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.page-top-arrow .arrow-line-vertical,
.page-top-arrow .arrow-dash-vertical {
  display: none;
}

.page-top-arrow .arrow-head-top {
  display: none;
}

.page-top-arrow .arrow-head-top-sp {
  display: block;
  width: 12px;
  height: 7px;
  transition: transform 0.3s ease;
}

.page-top-btn:hover .page-top-arrow {
  transform: translateY(-3px);
}

.page-top-text {
  font-size: 0;
  font-weight: 500;
  color: #0299ff;
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.page-top-text::after {
  content: "Top";
  font-size: 12px;
  display: block;
}

/* ========================================
   PC/SP表示切り替え
======================================== */
.reason-pc,
.office-pc {
  display: none !important;
}

.reason-sp,
.office-sp {
  display: block !important;
}

/* ========================================
   共通セクションスタイル
======================================== */
.concept,
.faq,
.news {
  max-width: 100%;
  box-sizing: border-box;
}
.concept {
  padding: 60px 25px 80px;
}
.faq,
.news {
  padding: 60px 0 80px;
}

/* ========================================
   共通見出しスタイル（横書き）
======================================== */
.reason .section-heading-vertical,
.news .section-heading-vertical,
.footer-contact .section-heading-vertical,
.office .section-heading-vertical,
.faq .section-heading-vertical {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.reason .section-heading-en-wrap,
.news .section-heading-en-wrap,
.footer-contact .section-heading-en-wrap,
.office .section-heading-en-wrap,
.faq .section-heading-en-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}

.reason .section-heading-en,
.news .section-heading-en,
.footer-contact .section-heading-en,
.office .section-heading-en,
.faq .section-heading-en {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 10px;
  margin: 0;
  color: #333;
  display: block;
  font-family: "Montserrat", sans-serif;
}

.reason .section-heading-line-r,
.news .section-heading-line,
.footer-contact .section-heading-line,
.office .section-heading-line {
  margin-top: 0;
  height: auto;
}

.reason .vertical-line,
.news .vertical-line,
.footer-contact .vertical-line,
.office .vertical-line {
  transform: none;
  width: 30px;
  height: 2px;
}

.reason .section-heading-ja,
.office .section-heading-ja {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 17px;
  line-height: 1.4;
  word-break: break-word;
  max-width: 100%;
}

.faq .section-heading-en-wrap,
.footer-contact .section-heading-en-wrap {
  position: relative;
  left: 8px;
}

.section-heading-ja .pill {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  box-shadow: none;
  margin: 0 0 5px 0;
  font-size: 17px;
  letter-spacing: 0.25em;
}
.section-heading-ja .num {
  letter-spacing: 0.15em;
}
.reason .section-heading-ja br,
.footer-contact .section-heading-ja br {
  display: inline;
  content: "";
}

.section-heading-en-wrap {
  margin-left: 5px !important;
}

.section-heading-vertical {
  flex-direction: row;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading-ja {
  font-size: 17px;
  text-align: left;
  margin-left: 15px;
  margin-top: 40px;
}

.section-heading-ja .pill:first-child {
  margin: 0 0 5px 0;
}

.btn-more {
  justify-content: center;
  padding: 14px 48px;
}
/* ========================================
   Reasonセクション
======================================== */
.reason {
  padding: 10px 0 60px;
  position: relative;
  border-radius: 40px;
}

.reason-sp .reason-heading-section {
  margin-top: 80px;
  margin-left: 25px;
}

.reason-sp .reason-top-image {
  margin: -140px 0 30px 0;
  padding: 0;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: none;
  top: auto;
}

.reason-sp .reason-top-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.reason-inner {
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.reason-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.reason .section-heading-ja {
  position: relative;
  left: 0;
  margin-left: 0;
}

.reason-heading-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  h2.section-heading-ja {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-heading-ja .pill {
    font-size: 30px;
  }
}

/* スライダー対応（スマホのみ） */
.reason-slider-container {
  position: relative;
  width: 100%;
  max-width: 308px;
  margin: 0 auto;
  overflow: visible;
}

.reason-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.reason-slider {
  display: flex !important;
  transition: transform 0.3s ease;
  gap: 0;
  align-items: center;
  left: 0;
}

.reason-slider .reason-item {
  flex: 0 0 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 40px;
  box-sizing: border-box;
  width: 308px;
  height: 308px;
  margin: 0px auto;
}

.reason-text {
  font-size: 18px;
  color: #0299ff;
}

.reason-num {
  color: #0299ff;
}

.reason-slider-prev {
  position: absolute;
  left: -12px;
  top: 43%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0299ff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(2, 153, 255, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.reason-slider-prev:hover {
  background-color: #0277cc;
  box-shadow: 0 4px 12px rgba(2, 153, 255, 0.4);
}

.reason-slider-prev img {
  width: 8px;
  height: 8px;
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}

.reason-slider-prev.hidden {
  display: none;
}

.reason-slider-next {
  position: absolute;
  right: -12px;
  top: 43%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0299ff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(2, 153, 255, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.reason-slider-next:hover {
  background-color: #0277cc;
  box-shadow: 0 4px 12px rgba(2, 153, 255, 0.4);
}

.reason-slider-next img {
  width: 8px;
  height: 8px;
  filter: brightness(0) invert(1);
}

.reason-slider-next.hidden {
  display: none;
}

.reason-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  margin-top: -40px;
}

.reason-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reason-slider-dots .dot.active {
  background-color: #41b2ff;
  width: 8px;
  height: 8px;
}

/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
}

/* ========================================
   Serviceセクション
======================================== */
#service {
  /* SP時：固定ヘッダー(64px)分だけは常に確保（ページ外からの #service 遷移用の安定化） */
  scroll-margin-top: 64px;
}

.service {
  padding: 60px 7px;
  max-width: 100%;
  box-sizing: border-box;
}

.service-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-heading-vertical-r {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  order: -1;
  padding: 0 20px;
}

.service-heading-mobile {
  display: block !important;
}

.section-heading-vertical-r .section-heading-vertical-r-wrapper {
  flex-direction: row;
  padding-bottom: 40px;
  margin-top: 80px;
  justify-content: left;
}

.section-heading-vertical-r .section-heading-en-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.section-heading-vertical-r .section-heading-en {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 10px;
  margin: 0;
  letter-spacing: 0.03em;
}

.section-heading-vertical-r .section-heading-line {
  width: 30px;
  height: 2px;
  margin-top: 0;
}

.section-heading-vertical-r .vertical-line {
  width: 30px;
  height: 2px;
  transform: none;
}

.section-heading-vertical-r .section-heading-ja {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 18px;
  margin: 0 0 12px 0;
}

.section-heading-vertical-r .section-heading-ja .pill {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
  font-size: 17px;
  letter-spacing: 0.25em;
}

.section-heading-vertical-r .section-heading-sub {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0 0 0 20px;
}

.service-heading-lead {
  display: none;
}

.service-items {
  gap: 20px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-heading-vertical-r .section-heading-ja .pill {
    font-size: 30px;
  }
}

.staggered-5 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 175px));
  gap: 10px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.staggered-5 > * {
  width: 100% !important;
  max-width: 175px !important;
}

.staggered-5 > *:nth-child(1) {
  grid-column: 1;
}
.staggered-5 > *:nth-child(2) {
  grid-column: 2;
}
.staggered-5 > *:nth-child(3) {
  grid-column: 1 / span 2 !important;
  justify-self: center;
  width: 100% !important;
  max-width: 175px !important;
}
.staggered-5 > *:nth-child(4) {
  grid-column: 1;
}
.staggered-5 > *:nth-child(5) {
  grid-column: 2;
}

/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
  .staggered-5 {
    grid-template-columns: repeat(2, minmax(0, 260px));
    gap: 20px;
    padding: 0 20px;
  }
  .staggered-5 > * {
    max-width: 260px !important;
  }
  .staggered-5 > *:nth-child(3) {
    max-width: 260px !important;
  }
}

.service-title {
  font-size: 15px;
  padding: 15px 10px 5px;
}

.service-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  overflow: visible;
  max-height: 240px;
  box-sizing: border-box;
  margin: 0; /*20251208田形修正*/
}

.service-item > img {
  height: 130px !important;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.service-item .service-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 0;
}

.service-item .btn-more {
  font-size: 11px;
  padding: 10px 16px 10px 24px;
  margin: 0 auto 0;
  width: auto;
  min-width: auto;
  max-width: fit-content;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
}

.btn-text {
  font-size: 13px;
}

.service-item .btn-more .btn-text {
  flex: 0 1 auto;
  padding-right: 0;
}

.service-item .btn-arrow {
  flex: 0 0 auto;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 30px;
  display: flex;
  align-items: center;
}

/* ========================================
   Officeセクション
======================================== */
.office {
  padding: 115px 0 0 0;
  background: #f0f8ff;
  max-width: 100%;
  box-sizing: border-box;
}

.office-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 47px;
}

.office .section-heading-en-wrap {
  position: relative;
  left: -14px;
}

.office .section-heading-vertical {
  margin-bottom: 20px;
  position: relative;
  top: -15px;
  left: -15px;
}

.office .section-heading-ja {
  margin-left: -10px;
}

.office .section-heading-ja .pill {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: 17px;
  letter-spacing: 0.25em;
  margin: auto;
}

.office .section-heading-sub {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0;
  position: relative;
  top: 15px;
  left: 7px;
}

@media screen and (min-width: 768px) {
  .office .section-heading-ja .pill {
    font-size: 30px;
  }
}

.office-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.office-image picture,
.office-image img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: 0;
}

.circle-link-area {
  margin-top: -24px;
  margin-left: 0;
  margin-right: 20px;
  padding: 65px 40px 30px;
  background: #fff;
  border-radius: 0 16px 0 0;
  position: relative;
  z-index: 2;
}

.circle-link-area::after {
  position: absolute;
  right: -20px;
  top: 24px;
  background: #fff;
  width: 100%;
  height: calc(100% - 24px);
  z-index: -1;
  content: "";
}

.office-sp .circle-link-list {
  gap: 15px 15px;
  width: 100%; /*20251208田形修正*/
  margin: 0 auto 40px;
}

@media screen and (max-width: 500px) {
  .circle-link-item a,
  .circle-link-item {
    width: 100%;
  }
}

.circle-thumb {
  width: 100px;
  height: 100px;
}

.circle-label-ja {
  font-size: 17px;
}

.circle-label-ja::before {
  width: 16px;
  height: 16px;
  left: calc(100% + 12px);
}

.circle-link-btn {
  text-align: center;
}

.circle-link-btn .btn-more {
  font-size: 13px;
  padding: 14px 24px;
  position: static;
  top: auto;
  left: auto;
  margin: 0 auto;
  justify-content: center;
}

.circle-link-item::after {
  margin-top: 13px;
}

@media screen and (max-width: 400px) {
  .circle-link-item::after {
    max-width: 140px;
  }
  .circle-link-area {
    padding: 65px 16px 80px 40px;
  }
}

/* ========================================
   FAQセクション
======================================== */
.faq {
  border-radius: 30px 30px 0 0;
}

.faq .section-heading-en-wrap {
  margin-left: 8px;
  margin-top: 10px;
}

.faq-inner {
  flex-direction: column !important;
  gap: 0;
  align-items: stretch !important;
}

.faq-body {
  flex-direction: column !important;
  gap: 30px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 20px auto 0 !important;
}

.faq-btn-wrap {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  text-align: center !important;
  width: 100% !important;
  margin-top: 0 !important;
}

.faq-list {
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  max-width: calc(100% - 66px);
}
/*20251209田形追加*/
.faq-item {
  border-radius: 37px;
}

.faq-question {
  font-size: 16px;
  padding: 24px;
  align-items: flex-start;
  gap: 5px;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
}

.faq-toggle-icon-img {
  width: 12px;
  height: 12px;
}

.faq-question-text {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.faq-q-icon {
  align-self: flex-start;
  margin-top: 0;
}

.faq-q-icon-img {
  width: 25px;
  height: 25px;
}

.faq-answer {
  font-size: 16px;
  padding: 0 18px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.5s ease-out 0.1s,
    padding 0.4s ease-out;
}

.faq-item.open .faq-answer {
  font-size: 16px;
  max-height: 1000px;
  opacity: 1;
  padding: 0 18px 24px; /*20251209田形修正*/
  transition: max-height 0.4s ease-out, opacity 0.5s ease-in,
    padding 0.4s ease-out;
}

.faq .btn-more {
  font-size: 13px;
  padding: 10px 24px;
}

.faq .section-heading-vertical {
  align-items: flex-start !important;
  margin-bottom: 40px;
}

.faq .section-heading-ja {
  order: 2 !important;
  display: inline-block;
  padding: 2px 16px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  box-shadow: none;
  margin: 0 0 8px 0;
  width: fit-content;
  font-size: 17px;
  position: relative;
  left: 15px;
  top: 25px;
}

@media screen and (min-width: 768px) {
  .faq .section-heading-ja {
    font-size: 30px;
  }
}

/* ========================================
   Newsセクション
======================================== */
.news-inner {
  flex-direction: column;
  gap: 0px;
  max-width: 100%;
  margin: 0 auto;
}

.news-body {
  flex-direction: column;
  gap: 20px;
  /*max-width: 375px;*/
  margin: 10px auto 0;
  width: 100%;
}

.news .section-heading-vertical,
.faq .section-heading-vertical {
  padding: 0 20px;
}

.news .section-heading-ja {
  font-size: 17px;
  font-weight: 700;
  order: 2 !important;
  margin-top: 40px;
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .news .section-heading-ja {
    font-size: 30px;
    font-weight: 500;
  }
}

.news .section-heading-en-wrap,
.faq .section-heading-en-wrap,
.footer-contact .section-heading-en-wrap {
  order: 1 !important;
}

.news-filter-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  position: relative;
}

.news-filter-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}

.news-filter-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
  justify-content: center;
}

.news-filter-list li {
  flex-shrink: 0;
  margin-bottom: 0;
}

.news-filter-list a {
  font-size: 12px;
  white-space: nowrap;
  color: #666;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 10px;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}

.news-filter-list a:hover {
  color: #0299ff;
}

.news-filter-list a.active {
  color: #0299ff;
  font-weight: 500;
}

.news-filter-list a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #0299ff;
}

@media screen and (min-width: 768px) {
  .news-filter-list a {
    font-size: 16px;
    padding: 0 20px 10px;
  }
  .news-body {
    max-width: inherit;
  }
}

.news-list {
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  max-width: calc(100% - 66px);
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-label {
  display: inline-block;
  font-size: 12px;
  margin: 0;
  padding: 4px 12px;
  background-color: #0299ff;
  color: #fff;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-date {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin: 0;
}

.news-title {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333;
  width: 100%;
}

.news-btn-wrap {
  margin-top: 40px;
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  text-align: center;
  width: 100%;
}

/* ========================================
   フッター
======================================== */

.footer-contact {
  padding-top: 0;
  padding-bottom: 100px;
  text-align: left;
}

.footer-bg {
  background-image: url("../images/footer/footer_sp.jpg");
  top: 60px;
}

.footer-panel {
  padding: 90px 20px 0;
  border-radius: 30px;
  margin: 45px auto 0;
  width: 85%;
}

.footer-contact-inner {
  padding: 0 20px;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

.footer-contact .section-heading-vertical {
  align-items: flex-start;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  gap: 0;
}

.footer-contact .vertical-line {
  top: -17px;
  position: relative;
}

.footer-contact .section-heading-ja {
  order: 2 !important;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  margin-left: 0; /*20251208田形修正*/
}

.footer-contact .section-heading-ja .pill {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  box-shadow: none;
  margin: 0 0 5px 0;
  font-size: 17px;
  letter-spacing: 0.2em; /*20251208田形修正*/
  box-sizing: border-box;
  line-height: 1.4em; /*20251208田形修正*/
}

.contact-columns {
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.contact-tel {
  padding: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-top: 25px;
}

.contact-tel-header {
  display: block;
  margin-bottom: 15px;
}

.contact-label-ja {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: block;
  text-align: left;
}

.contact-tel-icon {
  display: none;
}

.contact-label-en {
  font-size: 11px;
  margin-bottom: 10px;
  color: #999;
}

.contact-number {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  letter-spacing: 0.05em;
}

.contact-number img {
  width: 237px;
}

.contact-number::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../images/footer/sp_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-right: 8px;
}

.contact-hours {
  /*20251208田形修正*/
  font-size: 15px;
  text-align: left;
  font-weight: 500;
  top: 0;
}

.contact-form-box {
  /*20251208田形修正*/
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: inherit;
  background: #fff;
  border-radius: 12px;
  margin: 0 0 40px;
}

.contact-form-icon {
  width: 50px;
  height: 35px;
  margin: 0 auto 10px;
}

.contact-form-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
}

.contact-form-label {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 10px;
  margin-top: 0px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.btn-form {
  max-width: 200px;
}

.btn-form-text {
  font-size: 11px;
}

.footer-links ul {
  flex-direction: column;
  gap: 10px;
}

/* フッター（ボトム） */
.footer-bottom {
  padding: 30px 20px 20px;
  border-top: none;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  align-items: stretch;
}

.footer-left {
  width: 100%;
  order: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-sublogo {
  font-size: 10px;
  color: #666;
  margin-bottom: 20px;
}

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

.footer-address-full {
  font-size: 14px;
  margin-bottom: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0299ff;
  text-decoration: none;
}

.map-icon {
  width: 14px;
  height: 14px;
}

.footer-center {
  width: 100%;
  min-width: auto;
  order: 2;
  display: flex;
  flex-direction: column;
  margin-top: -100px;
  flex-shrink: 0;
  gap: 0;
}

.footer-nav {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 15px;
  margin-bottom: 40px;
  padding-top: 40px;
  display: grid;
  order: 3;
}

.footer-nav li:nth-child(5) {
  grid-column: 1;
  grid-row: 4;
}

.footer-nav li:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
}

.footer-nav li:nth-child(7) {
  grid-column: 1;
  grid-row: 5;
}

.footer-cert-contact-wrap {
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
  order: 1;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.footer-contact-bar {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  text-align: center;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin: 15px 0 0;
  order: 1;
  align-self: stretch;
}

.footer-telnote,
.footer-hours {
  font-size: 10px;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

.footer-hours span {
  font-size: 12px;
}

.footer-telnote {
  font-weight: 700;
}

.footer-telnote span,
.footer-hours span {
  font-size: 12px;
}

.footer-hours span.f_14px {
  font-size: 10px;
}

.privacy-link-sp {
  order: 2;
  font-size: 12px;
  text-decoration: underline;
  color: #333;
  cursor: pointer;
  align-self: flex-start;
  margin: 0;
  margin-top: 24px;
  display: block !important;
}

/* PC版のプライバシーポリシーを非表示（SP用の新しい要素を使用） */
.footer-left .privacy-link {
  display: none !important;
  position: absolute !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.footer-cert-section {
  width: 100%;
  min-width: auto;
  text-align: left;
  order: 3;
  margin-top: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dadada;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer-cert-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.footer-cert-logo {
  height: 35px;
  flex-shrink: 0;
}

.footer-cert-logo:nth-child(1) img {
  width: 66px;
  display: block;
}

.footer-cert-logo:nth-child(2) img {
  width: 29px;
  display: block;
}

.footer-cert {
  font-size: 11px;
  color: #666;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-nav li {
  align-items: flex-start;
  gap: 6px;
}

.footer-nav li:nth-child(3),
.footer-nav li:nth-child(4),
.footer-nav li:nth-child(6),
.footer-nav li:nth-child(7) {
  left: 0;
}

.footer-nav li a {
  font-size: 14px;
  font-weight: 500;
}

.footer-nav li a span {
  font-size: 9px;
  font-weight: 500;
}

.footer-contact-divider {
  display: none;
}

.footer-contact-info {
  display: none;
  order: 0;
}

.footer-contact-icon {
  display: none;
}

.footer-contact-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* コピーライト（SP用） */
footer .footer-copyright {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin: 33px 0 0;
  padding: 0;
  position: relative;
  z-index: 10;
}

.footer-contact-phone {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

.footer-contact-hours {
  font-size: 11px;
  color: #666;
  margin: 0;
  white-space: nowrap;
}

/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
  .footer-contact .section-heading-ja .pill {
    font-size: 30px;
  }
  .contact-hours {
    top: 0;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
}

/*--------------------

	サブページ
	
--------------------*/

/*-------- サブページ共通 --------*/
.sub_page h2 {
  font-size: 28px;
  padding: 0 13px 3px 13px;
}

.double-line-ttl {
  font-size: 18px;
  line-height: 27px;
}
.double-line-ttl::before,
.double-line-ttl::after {
  width: 14px;
  height: 20px;
  background-size: contain;
}

/*アコーディオンメニュー*/
.page-menu ul {
  flex-wrap: wrap;
}
.page-menu li {
  margin: 8px;
  height: 54px;
}
.page-menu li a {
  font-size: 16px;
}

/*チェックリスト*/
.check-list {
  padding-left: 30px;
}
.check-list li {
  font-size: 16px;
  margin-bottom: 16px;
}
.check-list li::before {
  top: 6px;
  width: 18px;
  height: 11px;
  background-size: contain;
}

/*左に青線タイトル*/
.left-blue-ttl {
  font-size: 18px;
}
.left-blue-ttl::after {
  height: calc(100% - 4px);
  top: 3px;
}

/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .sub-top {
    max-height: 230px;
  }
  .title-block{
    height: 54px;
    padding: 15px 30px 20px;
    top: 140px;
  }
  .title-block > p {
    font-size: 11px;
  }
  .title-block > span {
    height: 3px;
    margin-bottom: 8px;
  }
  .title-block > h1 {
    font-size: 26px;
  }
  .sub_page h2 {
    font-size: 21px;
    line-height: 1.4em;
    left: -10px;
  }
  .sub_page h2::after {
    width: 16px;
    height: 24px;
    right: -16px;
  }
  .under-line-ttl {
    font-size: 18px;
    padding-bottom: 2px;
    border-bottom: 4px solid #41b2ff;
  }
}

/*-------- 経営支援 --------*/
.sub-top .breadcrumbs {
  height: 40px;
  border-radius: 40px 40px 0 0;
}
.sub-top .breadcrumbs ol {
  padding: 20px 0 0 40px;
}
.page-intro {
  display: block;
  max-width: none;
  padding: 20px 0;
}
.page-intro .intro-left {
  width: auto;
  margin: 0 0 20px 0;
}
.page-intro .intro-left p.intro-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.page-intro .intro-left p.intro-text {
  font-size: 16px;
}
.page-intro .intro-right {
  text-align: center;
}
.page-intro .intro-right img {
  border-radius: 40px;
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .page-intro {
    padding: 20px 0 20px 20px;
  }
}
.page-menu {
  display: block;
  padding: 20px;
  margin: 0;
}
.page-menu ul {
  max-width: unset;
  margin: 0;
}
.page-menu ul li {
  margin: 0 10px 20px 0;
  height: auto;
}
.page-menu li a {
  padding: 8px 10px;
}
.page-menu li a.internal-link {
  padding: 8px 12px 8px;
}
a.internal-link .internal-text {
  font-size: 16px;
  margin-right: 8px;
}
a.internal-link .internal-arrow {
  padding-top: 5px;
}
.page-menu li a img {
  margin-left: 5px;
  height: 12px;
}
.service_cont2_wrap .service_cont2_inner {
  width: 90%;
  padding: 50px 0;
  margin: 0 auto 30px auto;
}
.service_cont2_wrap .service_cont2_inner .page-menu {
  display: block;
  padding: 0;
  margin: 0;
}

/*-------- 経営支援 --------*/
/*経営力評価*/
.manage-area .manage-title {
  margin-bottom: 40px;
}
.manage-area .manage-content .content-title {
  padding: 20px;
}
.manage-area .manage-content .content-title h3 {
  font-size: 20px;
  line-height: 1.2em;
}
.manage-area .manage-content .content-title h3 span {
  font-size: 16px;
}
.manage-area .manage-content .content-title p {
  font-size: 15px;
}
/* 768px以下のスマホ向け */
@media screen and (max-width: 768px) {
  .manage-area .manage-content .content-title h3 br {
    display: block;
  }
  .manage-area .manage-content .content-title h3 span {
    margin-left: -10px;
    letter-spacing: 0.05em;
  }
}
.content-1.flow-about figcaption,
.content-3.flow-about figcaption {
  width: 640px;
  min-width: inherit;
  margin-left: -20%;
}
.content-1.flow-about .flow-list li dl dt,
.content-3.flow-about .flow-list li dl dt {
  font-size: 32px;
  margin-right: 15px;
  padding-right: 18px;
}
.content-1.flow-about .flow-list li dl dd,
.content-3.flow-about .flow-list li dl dd {
  font-size: 18px;
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .content-1.flow-about,
  .content-3.flow-about {
    flex-direction: column;
  }
  .content-1.flow-about figure,
  .content-3.flow-about figure {
    width: 95%;
  }
  .content-1.flow-about figcaption,
  .content-3.flow-about figcaption {
    width: calc(95% - 48px);
    min-width: unset;
    margin-left: 5%;
    margin-top: 20px;
    padding: 30px 24px;
    border-radius: 36px 0 0 36px;
  }
  .content-1.flow-about figcaption .flow-list-ttl,
  .content-3.flow-about figcaption .flow-list-ttl {
    margin-bottom: 20px;
  }
  .content-1.flow-about .flow-list li,
  .content-3.flow-about .flow-list li {
    padding: 8px 16px 8px 20px;
    margin-bottom: 8px;
  }
  .content-1.flow-about .flow-list li dl dd,
  .content-3.flow-about .flow-list li dl dd {
    font-size: 16px;
  }
  .content-1.flow-about figcaption::after,
  .content-3.flow-about figcaption::after {
    display: none;
  }
}

.manage-area .manage-content .content-2 {
  padding-right: 0;
}
.content-2-element {
  padding: 30px 30px 10px 30px;
  border-radius: 0;
}
.content-2 .element-title {
  margin: 0 auto 30px auto;
  width: 160px;
}
.content-2 .element-title p {
  font-size: 20px;
}
.content-2 .element-block ul li {
  width: calc((100% - 15px) / 2);
  border-radius: 40px 10px 10px 10px;
  padding: 30px 0;
}
.content-2 .element-block li .element-box span {
  margin-bottom: 5px;
}
.content-2 .element-block li .element-box span img {
  width: 40%;
}
.content-2 .element-block li .element-box {
  margin-bottom: 15px;
}
.content-2 .element-block li .element-box p {
  font-size: 15px;
}
.content-2 .element-block li .element-text {
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .content-2 .element-block ul li {
    width: calc((100% - 40px) / 4);
    border-radius: 40px 10px 10px 10px;
    padding: 30px 0;
  }
}
.content-3.flow-about .flow-list li dl dt {
  font-size: 32px;
  margin-right: 15px;
  padding-right: 18px;
}
.content-3.flow-about .flow-list li dl dd {
  font-size: 18px;
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .content-3.flow-about {
    flex-direction: column;
  }
  .content-3.flow-about figure {
    width: 95%;
  }
  .content-3.flow-about figcaption {
    width: calc(95% - 48px);
    min-width: unset;
    margin-left: 5%;
    margin-top: 20px;
    padding: 30px 24px;
    border-radius: 36px 0 0 36px;
  }
  .content-3.flow-about figcaption .flow-list-ttl {
    margin-bottom: 20px;
  }
  .content-3.flow-about .flow-list li {
    padding: 8px 16px 8px 20px;
    margin-bottom: 8px;
  }
  .content-3.flow-about .flow-list li dl dd {
    font-size: 16px;
  }
  .content-3.flow-about figcaption::after {
    display: none;
  }
}
.manage-area .manage-content .content-4 {
  padding-right: 0;
}
.content-4-step {
  padding: 30px 30px 10px 30px;
  border-radius: 0;
}
.content-4 .step-title {
  margin: 0 auto 30px auto;
  width: 160px;
}
.content-4 .step-title p {
  font-size: 20px;
}
.content-4 .step-block ul {
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.content-4 .step-block ul::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 50%;
  width: 3px;
  height: 80%;
  border-left: 3px dotted #0299ff;
  border-bottom: 0;
  border-top: 0;
}
.content-4 .step-block ul li {
  width: 278px;
  border-radius: 40px 10px 10px 10px;
  padding: 30px 0;
}
.content-4 .step-block li .step-box span {
  margin-bottom: 5px;
}
.content-4 .step-block li .step-box span img {
  width: 40%;
}
.content-4 .step-block li .step-box {
  margin-bottom: 15px;
}
.content-4 .step-block li .step-box p {
  font-size: 15px;
}
.content-4 .step-block li .step-text {
  font-size: 16px;
  line-height: 1.4em;
}
.content-4 .step-block li .step-label {
  margin-bottom: 20px;
}
.content-4 .step-block li .step-box span {
  font-size: 14px;
}
.content-4 .step-block li .step-box span img {
  width: 25%;
}
@media screen and (min-width: 768px) {
  .manage-area .manage-content .content-4 {
    padding-right: 30px;
  }
  .content-4-step {
    border-radius: 0 72px 72px 0;
    padding: 60px 52px 60px 83px;
  }
  .content-4 .step-block ul {
    max-width: 278px;
    margin: auto;
  }
}
.manage-area .manage-content .content-wrap-3 {
  margin-bottom: 100px;
}
.manage-area .manage-content .content-5 {
  padding-left: 0px;
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .content-5-detail {
    padding: 30px;
    border-radius: 0;
  }
  .content-5 .detail-title {
    margin: 0 auto 30px auto;
    width: 160px;
  }
  .content-5 .detail-title p {
    font-size: 20px;
  }
  .content-5 .detail-block ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .content-5 .detail-block li {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  .content-5 .detail-block li .detail-label span {
    font-size: 16px;
  }
  .content-5 .detail-block li .detail-text {
    border-radius: 10px;
    padding: 15px;
  }
  .content-5 .detail-block li .detail-text span p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .content-5 .detail-block li .detail-text.icon-bg1,
  .content-5 .detail-block li .detail-text.icon-bg2,
  .content-5 .detail-block li .detail-text.icon-bg3,
  .content-5 .detail-block li .detail-text.icon-bg4 {
    background-size: 100px;
    background-position: bottom 15px right 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .content-5 .detail-block li .detail-label span {
    font-size: 18px;
  }
  .content-5 .detail-block li .detail-text {
    padding: 20px 15px;
    min-height: 100px;
  }
  .content-5 .detail-block li .detail-text span p {
    font-size: 14px;
  }
}
.manage-area .manage-content .content-6 {
  padding-right: 0;
}
.content-6-detail {
  padding: 30px;
  border-radius: 0;
}
.content-6 .detail-title {
  margin: 0 auto 30px auto;
  width: 160px;
}
.content-6 .detail-title p {
  font-size: 20px;
}
.content-6 .detail-block {
  margin-top: 30px;
  padding: 40px 20px;
}
.content-6 .detail-block dl dt {
  font-size: 18px;
}
.content-6 .detail-block dl dd figure img {
  width: 30%;
  height: auto;
  object-fit: contain;
}
.content-6 .detail-block dl dd figcaption ul li {
  font-size: 16px;
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .content-6 .detail-block {
    flex-direction: column;
  }
  .content-6 .detail-block dl {
    width: 100%;
  }
  .content-6 .detail-block dl:nth-of-type(2) {
    border-left: none;
    border-right: none;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0;
    margin: 20px 0;
  }
  .content-6 .detail-block dl dd figure {
    height: fit-content;
  }
  .content-6 .detail-block dl dd figcaption ul {
    padding-left: 8px;
  }
}
.content-6 .detail-btn .btn-more {
  padding: 14px 18px;
  justify-content: flex-start;
}
.content-6 .detail-btn .btn-more .btn-arrow {
  right: 2px;
}
.content-6 .detail-btn .btn-more .bizup-icon {
  margin-right: 2px;
}

.difference-content .content-wrap ul {
  display: block;
  justify-content: space-between;
}
.difference-content .content-wrap ul li {
  display: block;
  width: 100%;
}
.difference-content .content-wrap ul li .image-box1,
.difference-content .content-wrap ul li .image-box2,
.difference-content .content-wrap ul li .image-box3 {
  width: auto;
  height: 300px;
  border-radius: 10px 10px 40px 40px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.difference-content .content-wrap ul li .text-box {
  padding: 30px 20px;
  width: auto;
  text-align: justify;
}
.difference-content .content-wrap ul li .text-box h3 {
  font-size: 23px;
}
.difference-content .content-wrap ul li .text-box p {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.015em;
  margin-top: 20px;
}
.difference-content .content-wrap ul li .text-box h3 br,
.difference-content .content-wrap ul li .text-box p br {
  display: none;
}
/* 768px以上のタブレット・大きめのスマホ向け */
@media screen and (min-width: 768px) {
  .difference-content .content-wrap ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .difference-content .content-wrap ul li {
    display: block;
    width: calc((100% - 30px) / 2);
  }
}
.massage-content figcaption {
  padding: 40px 40px 50px;
}
.massage-content figcaption .figcaption-wrap {
  width: 100%;
}
.massage-content h3 {
  font-size: 21px;
}
.massage-content .end-txt {
  width: calc(100% - 480px);
  font-size: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .massage-content figure.strength-cont-img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .massage-content {
    flex-direction: column;
  }
  .massage-content figcaption {
    width: calc(95% - 80px);
  }
  .massage-content .end-txt {
    width: 100%;
  }
  .massage-content figure.strength-cont-img img {
    height: 320px;
  }
}

/*-------- お知らせ一覧 --------*/
.info_archive_inner,
.info_single_inner {
  padding: 30px 5%;
  width: 90%;
}
.info_cat_list li {
  width: calc((100% - 60px) / 4);
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .info_cat_list li {
    width: calc((100% - 16px) / 2);
    height: 40px;
    margin-right: 16px;
  }
  .info_cat_list li:nth-of-type(3),
  .info_cat_list li:nth-of-type(4) {
    margin-top: 16px;
  }
}

.info_list_wrap {
  padding: 30px;
  margin: 30px auto;
}

.info_list_ul li a .news-title {
  width: calc(100% - 48px - 263px);
}
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .info_list_ul li a {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .info_list_ul li a .news-meta .news-date,
  .info_sigle_cont .news-date {
    font-size: 14px;
  }
  .info_list_ul li a .news-meta .news-label,
  .info_sigle_cont .news-label {
    padding: 1px 16px;
    margin-left: 16px;
  }
  .info_list_ul li a .news-title {
    margin-top: 8px;
    width: calc(100% - 32px);
  }

  .info_pager_wrap .pager_current,
  .info_pager_wrap .pager_larger,
  .info_pager_wrap .pager_nextpostslink,
  .info_pager_wrap .pager_last,
  .info_pager_wrap .pager_prevpostslink, /* 20251224甲佐追加 */
  .info_pager_wrap .pager_first { /* 20251224甲佐追加 */
    width: 32px; /* 20251224甲佐変更 */
    height: 32px; /* 20251224甲佐変更 */
    border-radius: 17px; /* 20251224甲佐追記 */
    font-size: 11px; /* 20251224甲佐追記 */
    margin: 2px 3px; /* 20251224甲佐追記 */
  }

  /* 20251224甲佐追加 */
  .info_pager_wrap .pager_nextpostslink::after,
  .info_pager_wrap .pager_prevpostslink::after{
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    background-size: contain;
  }

  .info_pager_wrap .pager_last::after,
  .info_pager_wrap .pager_first::after{
    width: 6px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 3px);
    background-size: contain;
  }
}

@media screen and (max-width: 360px) {

  .info_pager_wrap .pager_current,
  .info_pager_wrap .pager_larger,
  .info_pager_wrap .pager_nextpostslink,
  .info_pager_wrap .pager_last,
  .info_pager_wrap .pager_prevpostslink, 
  .info_pager_wrap .pager_first { 
    width: 28px; 
    height: 28px;
    border-radius: 15px;
  }
}
/*-------- お知らせ詳細 --------*/
/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  .info_single_ttl_area {
    padding: 30px;
    border-radius: 56px 56px 0 0;
  }
  .info_sigle_cont .news-title {
    margin-top: 10px;
  }
  .info_sigle_cont .news-title h1 {
    padding: 6px 16px;
    font-size: 21px;
    line-height: 1.4em;
    letter-spacing: 0.03em;
  }
  .info_sigle_cont .news-title h1 img {
    width: 16px;
    height: auto;
    background-size: contain;
    margin-right: 6px;
  }
  .info_single_dtl_area {
    padding: 30px;
    border-radius: 0 0 56px 56px;
  }
  .info_single_dtl_area p {
    font-size: 16px;
  }
  .info_single_dtl_area h2 {
    font-size: 18px;
    line-height: 20px;
    padding-left: 6px;
    border-left: 5px solid #41b2ff;
  }
  .info_single_dtl_area ol li,
  .info_single_dtl_area ul li {
    padding-left: 20px;
    font-size: 16px;
    margin: 6px 0;
  }
  .info_single_dtl_area ol li::after,
  .info_single_dtl_area ul li::after {
    font-size: 16px;
    left: 6px;
  }
  .info_single_dtl_area figure {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }
  .info_single_dtl_area figure .figure-scroll-inner {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .info_single_dtl_area figure::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.08) 100%
    );
    transition: opacity 0.2s ease;
  }
  .info_single_dtl_area figure.hide-gradient::after {
    opacity: 0;
  }
  .info_single_dtl_area table {
    width: 600px;
    border-collapse: collapse;
  }

  .info_single_nav {
    margin-top: 30px;
  }
  .info_single_nav > div {
    height: 40px;
    width: 85px;
  }
  .info_single_nav > div a {
    font-size: 15px;
  }
  .info_single_nav > div.single_nav_back a {
    padding-left: 10px;
    width: calc(100% - 10px);
  }
  .info_single_nav > div.single_nav_back a::after {
    left: 12px;
  }
  .info_single_nav > div.single_nav_next a {
    padding-right: 10px;
    width: calc(100% - 10px);
  }
  .info_single_nav > div.single_nav_next a::after {
    right: 12px;
  }
  .info_single_nav > div.single_nav_all {
    width: 120px;
  }
}
@media screen and (max-width: 400px) {
  .info_single_ttl_area {
    padding: 20px;
    border-radius: 40px 40px 0 0;
  }
  .info_single_dtl_area {
    padding: 20px;
    border-radius: 0 0 40px 40px;
  }
}

/*-------- お問い合わせ --------*/
.contact_form_inner form .f_14px {
  font-size: 14px;
}
@media screen and (max-width: 895px) {
  .contact_form_inner {
    width: 94%;
    padding: 40px 3%;
  }
  .contact_form_inner_bg {
    padding: 40px 40px 50px;
    border-radius: 40px;
  }
  .contact_form_inner_bg > p.txt-strong {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: fit-content;
  }
  .contact_form_inner form {
    padding-top: 40px;
  }
  .contact-privacy-area {
    width: calc(90% - 48px);
  }
}
@media screen and (max-width: 400px) {
  .contact_form_inner_bg > p.txt-strong {
    display: inline;
  }
  .contact_form_inner form {
    padding: 50px 0 0;
    width: 100%;
  }
  .contact_form_inner form dd input:nth-of-type(n + 2) {
    margin-left: 20px;
  }
  .contact-privacy-area {
    width: calc(100% - 32px);
    padding: 24px 16px;
  }
  .contact-privacy-area-inner {
    padding: 20px;
  }
  .contact-privacy-check {
    font-size: 15px;
    padding-left: 0;
    padding-top: 30px;
  }
  .contact-privacy-check.hissu::after {
    top: 0px;
    left: calc(50% - 18px);
  }
  .contact-privacy-area-inner .ssp_br {
    display: block;
  }
}

/*-------- よくある質問 --------*/
.faq_cont_inner .faq-list {
  max-width: inherit;
}
@media screen and (max-width: 1000px) {
  .faq_cont_inner {
    width: 90%;
    padding: 60px 5% 80px;
  }
  .faq_block {
    margin-bottom: 50px;
  }
  .faq_cont h3 {
    font-size: 19px;
    margin-bottom: 20px;
  }
}

/*-------- 選ばれる理由 --------*/
.reason_cont_inner {
  width: 90%;
  padding: 50px 5% 80px;
}
.reason_cont_inner h2 {
  margin-bottom: 40px;
}
dl.reason_block {
  margin-bottom: 36px;
}
.reason_ttl {
  font-size: 21px;
  line-height: 1.6em;
}
dl.reason_block dt {
  width: 280px;
}
dl.reason_block dd {
  width: calc(100% - 240px - 176px);
}
.reason_block figcaption {
  width: calc(100% - 100px - 50px);
}
.reason_catch {
  font-size: 18px;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.reason_block figcaption > p {
  width: 100%;
}
.reason_other_fukidashi {
  font-size: 16px;
  padding: 24px 24px 0;
}

@media screen and (max-width: 1000px) {
  img.rason_other2-1 {
    width: 128px;
    margin: 0 12px;
  }
  img.rason_other2-6 {
    width: 183px;
    margin: 0 12px;
  }
  .reason_other_dec {
    width: 315px;
    margin: 0 12px;
  }
  .reason_other_dec img.rason_other2-4 {
    width: 263px;
  }
  .reason_other_fukidashi {
    margin: 0 12px;
    width: calc(300px - 48px);
    height: calc(215px - 24px);
  }
  .slider-reason {
    width: 100%;
    overflow: hidden;
  }
  .slider-reason__item {
    display: inline-flex !important;
    align-items: center;
    flex: none;
    width: auto !important;
  }
  .slick-slide {
    display: inline-block;
    vertical-align: middle;
  }
  .reason_other_wrap {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 895px) {
  dl.reason_block {
    flex-direction: column;
  }
  dl.reason_block dd {
    width: calc(100% - 80px);
    padding: 60px 40px 40px;
    top: -40px;
    left: 0;
  }
  .reason_block figcaption {
    width: calc(100% - 100px - 30px);
  }
  .reason_cont_inner h2 {
    text-align: center;
  }
  .reason_cont_inner br.ssp_br {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  dl.reason_block dt {
    padding-bottom: 30px;
  }
  .reason_sub_ttl {
    margin-bottom: 10px;
  }
  .reason_ttl {
    font-size: 18px;
  }
  dl.reason_block dd {
    flex-direction: column-reverse;
  }
  .reason_block figure {
    margin-bottom: 20px;
  }
  .reason_block figure img {
    width: 80px;
  }
  .reason_block figcaption {
    width: 100%;
  }
  dl.reason_block dd {
    width: calc(100% - 60px);
    padding: 60px 30px 40px;
  }
  dl.reason_block {
    margin-bottom: 10px;
  }
}

/*-------- 事業承継支援 --------*/
.succession_cont1_inner,
.support_cont1_inner,
.opening_cont1_inner,
.flow_cont1_inner,
.taxation_cont1_inner,.service_cont1_inner {
  width: 95%;
}
.succession_cont1_wrap .page-intro,
section.support_cont1_wrap .page-intro,
section.opening_cont1_wrap .page-intro,
section.taxation_cont1_wrap .page-intro,section.service_cont1_wrap .page-intro {
  padding-left: 0;
}
.succession_cont1_wrap .page-intro .page-intro-text,
.support_cont1_wrap .page-intro .page-intro-text,
.opening_cont1_wrap .page-intro .page-intro-text,
.flow_cont1_wrap .page-intro .page-intro-text,
.taxation_cont1_wrap .page-intro .page-intro-text,.service_cont1_wrap .page-intro .page-intro-text {
  width: calc(100% - 50% - 16px);
}
.succession_cont1_wrap .page-intro-img,
.support_cont1_wrap .page-intro-img,
.opening_cont1_wrap .page-intro-img,
.flow_cont1_wrap .page-intro-img,
.taxation_cont1_wrap .page-intro-img,.service_cont1_wrap .page-intro-img {
  width: 50%;
}
.succession_cont1_wrap .page-intro h3,
.support_cont1_wrap .page-intro h3,
.opening_cont1_wrap .page-intro h3,
.flow_cont1_wrap .page-intro h3,
.taxation_cont1_wrap .page-intro h3,.service_cont1_wrap .page-intro h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.succession_cont1_wrap .page-intro p,
.support_cont1_wrap .page-intro p,
.opening_cont1_wrap .page-intro p,
.flow_cont1_wrap .page-intro p,
.taxation_cont1_wrap .page-intro p,.service_cont1_wrap .page-intro p {
  font-size: 16px;
}

.succession_cont .succession_cont2_inner {
  width: 90%;
  padding: 50px 0;
  margin: 0 auto;
}
.succession_cont3_inner h2 {
  margin-bottom: 40px;
}
.succession_cont3_inner {
  width: 90%;
  padding: 50px 20px 60px;
}
.succession_case {
  margin-top: 30px;
  padding: 40px 20px;
}
.succession_case dl dt {
  font-size: 18px;
}
.succession_case dl dd figure img {
  width: 170px;
  height: auto;
  object-fit: contain;
}
.succession_case dl dd figcaption ul li {
  font-size: 16px;
}
.flow-about figcaption {
  width: 640px;
  min-width: inherit;
  margin-left: -20%;
}
.flow-list li dl dt {
  font-size: 32px;
  margin-right: 15px;
  padding-right: 18px;
}
.flow-list li dl dd {
  font-size: 18px;
}
.succession_cont4_inner {
  padding: 80px 0;
}
.succession-tab-inner {
  width: 90%;
}
.succession-tab-inner ul.tab {
  flex-direction: column;
}
.succession-tab-inner ul.tab li {
  width: 100%;
  padding: 12px 8px;
  border-radius: 0;
  position: relative;
  border-bottom: 1px solid #d7d7d7;
}
.succession-tab-inner ul.tab li::after {
  background: url(../images/succession/arrow_down.svg) no-repeat;
  content: "";
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 17px;
  position: absolute;
}
.succession-tab-inner ul.tab li a {
  font-size: 17px;
  line-height: 1em;
}
.area .succession-tab-content {
  padding: 20px 30px 30px;
}
.area .succession-tab-content h3 {
  margin-bottom: 20px;
}
.taisaku-list li {
  font-size: 17px;
  padding: 0 8px 10px;
  margin-bottom: 16px;
}
.taisaku-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 10px;
}
.succession_cont5_inner h2 {
  margin-bottom: 60px;
}
.strength-cont figcaption.strength-cont-txt_wrap {
  width: 90%;
  min-width: inherit;
  padding: 40px 0 60px;
}
.strength-cont-txt_inner {
  width: 90%;
  padding: 0;
}
.strength-cont .under-line-ttl {
  margin-bottom: 20px;
}
.point-list li {
  width: calc(((100% - 40px) / 3) - 40px);
  padding: 20px 20px 30px;
  border-radius: 24px;
}
.point-list dl dd figure {
  height: 100px;
}
.point-list dl dd figure img {
  width: 100px;
}
.point-list dl dd figcaption {
  font-size: 17px;
}
.strength-cont-txt_inner h3.blue-line-ttl {
  font-size: 21px;
}
.strength-cont-txt_inner .end-txt {
  font-size: 16px;
  margin-top: 24px;
}
figure.strength-cont-img {
  width: 460px;
}

@media screen and (max-width: 900px) {
  .strength-cont {
    flex-direction: column;
    align-items: flex-start;
  }
  figure.strength-cont-img {
    width: 90%;
    margin: 30px auto 0px;
  }
  figure.strength-cont-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 90px;
  }
}

/* 768px以下のタブレット・スマホ向け */
@media screen and (max-width: 768px) {
  section.succession_cont1_wrap,
  section.support_cont1_wrap,
  section.opening_cont1_wrap,
  section.taxation_cont1_wrap,section.service_cont1_wrap, section.flow_cont1_wrap {
    justify-content: center;
  }
  .succession_cont1_inner,
  .support_cont1_inner,
  .opening_cont1_inner,
  .taxation_cont1_inner,.service_cont1_inner, .flow_cont1_inner {
    width: 90%;
  }
  .succession_cont1_wrap .page-intro,
  section.support_cont1_wrap .page-intro,
  section.opening_cont1_wrap .page-intro,
  section.taxation_cont1_wrap .page-intro,section.service_cont1_wrap .page-intro, section.flow_cont1_wrap .page-intro {
    flex-direction: column;
  }
  .succession_cont1_wrap .page-intro .page-intro-text,
  .support_cont1_wrap .page-intro .page-intro-text,
  .opening_cont1_wrap .page-intro .page-intro-text,
  section.taxation_cont1_wrap .page-intro .page-intro-text,section.service_cont1_wrap .page-intro .page-intro-text, section.flow_cont1_wrap .page-intro .page-intro-text {
    width: 100%;
  }
  .succession_cont1_wrap .page-intro h3,
  .support_cont1_wrap .page-intro h3,
  .opening_cont1_wrap .page-intro h3,
  section.taxation_cont1_wrap .page-intro h3,section.service_cont1_wrap .page-intro h3, section.flow_cont1_wrap .page-intro h3 {
    margin-bottom: 20px;
  }
  .succession_cont1_wrap .page-intro h3 br,
  section.taxation_cont1_wrap .page-intro h3 br,section.service_cont1_wrap .page-intro h3 br, section.flow_cont1_wrap .page-intro h3 br {
    display: none;
  }
  .succession_cont1_wrap .page-intro p,
  .support_cont1_wrap .page-intro p,
  .opening_cont1_wrap .page-intro p,
  section.taxation_cont1_wrap .page-intro p,section.service_cont1_wrap .page-intro p, section.flow_cont1_wrap .page-intro p {
    margin-bottom: 20px;
  }
  .succession_cont1_wrap .page-intro-img,
  .support_cont1_wrap .page-intro-img,
  .opening_cont1_wrap .page-intro-img,
  section.taxation_cont1_wrap .page-intro-img,section.service_cont1_wrap .page-intro-img, section.flow_cont1_wrap .page-intro-img {
    width: 100%;
  }
  .succession_cont1_wrap .page-intro-img img,
  .support_cont1_wrap .page-intro-img img,
  .opening_cont1_wrap .page-intro-img img,
  section.taxation_cont1_wrap .page-intro-img img,section.service_cont1_wrap .page-intro-img img, section.flow_cont1_wrap .page-intro-img img {
    border-radius: 72px;
    width: 100%;
  }
  .succession_case {
    flex-direction: column;
  }
  .succession_case dl {
    width: 100%;
  }
  .succession_case dl:nth-of-type(2) {
    border-left: none;
    border-right: none;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0;
    margin: 20px 0;
  }
  .succession_case dl dd figure {
    height: fit-content;
  }
  .succession_case dl dd figcaption ul {
    padding-left: 8px;
  }
  .succession_cont3_inner .ssp_br {
    display: block;
  }
  .succession_cont4_inner {
    padding: 80px 0;
  }
  .succession_cont4_inner h2 {
    margin-bottom: 50px;
  }
  .flow-about {
    flex-direction: column;
  }
  .flow-about figure {
    width: 95%;
  }
  .flow-about figcaption {
    width: calc(95% - 48px);
    margin-left: 5%;
    margin-top: 20px;
    padding: 30px 24px;
    border-radius: 36px 0 0 36px;
  }
  .flow-about figcaption .flow-list-ttl {
    margin-bottom: 20px;
  }
  .flow-list li {
    padding: 8px 16px 8px 20px;
    margin-bottom: 8px;
  }
  .flow-list li dl dd {
    font-size: 16px;
  }
  .flow-about figcaption::after {
    display: none;
  }
  .strength-cont figcaption.strength-cont-txt_wrap {
    width: 95%;
  }
  .point-list {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .point-list li {
    width: calc(100% - 40px);
    margin-bottom: 16px;
  }
  .point-list li:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  figure.strength-cont-img {
    margin-top: -40px;
  }
  figure.strength-cont-img img {
    height: 200px;
  }
}

/*-------- 事務所案内 --------*/
section.company_cont1_wrap .company_cont1_inner {
  padding-bottom: 40px;
  width: 90%;
  margin: 0 auto;
}
.greeting-profile-name {
  padding: 5px 12px 3px;
}
.greeting-profile-cont {
  padding: 24px;
}
.greeting-profile {
  width: 90%;
  margin: 0 auto 60px;
}
.company_cont2_inner {
  padding-bottom: 80px;
}
.company_cont3_inner {
  padding: 50px 0 180px;
  width: 90%;
}
.company_cont3_inner h2 {
  margin-bottom: 40px;
}
.about-group-block {
  margin-top: 60px;
  padding: 30px 30px 30px 40px;
  width: calc(100% - 70px);
}
.about-group-block > dl {
  height: auto;
}
.about-group-block > dl > dt {
  font-size: 18px;
  padding-right: 40px;
  margin-right: 30px;
  line-height: 200px;
}
.about-group-block .about-group-block-ttl.txt-strong {
  font-size: 18px;
}
.about-group-block-list {
  margin-top: 16px;
}
.about-group-block-list li {
  margin-bottom: 24px;
}
.about-group-block-list li dl dt {
  width: 100px;
  margin-right: 16px;
  font-size: 16px;
}
.about-group-block-list li dl dd {
  width: calc(100% - 100px - 16px);
  font-size: 16px;
}
.company_cont4_wrap::after {
  height: 70px;
  top: -70px;
}
.company_cont4_inner {
  padding-bottom: 80px;
  width: 90%;
  padding: 0 0 80px;
}
.company_cont4_inner h2 {
  margin-bottom: 40px;
  margin-top: -30px;
}
.map-iframe iframe {
  height: 500px;
}
.access-list li dl dt {
  font-size: 16px;
  width: 80px;
  margin-right: 16px;
}
.access-list li dl dd {
  font-size: 16px;
  width: calc(100% - 80px - 16px);
}
.access-way-cont {
  margin-top: 60px;
}
.access-way-list li {
  overflow-x: auto;
  width: 100%;
}
.access-way-wrap {
  width: 1040px;
  border-collapse: collapse;
}
@media screen and (max-width: 1000px) {
  .greeting-block {
    width: 90%;
  }
  .greeting-block figcaption {
    width: 100%;
    padding: 30px 0 40px;
  }
  .greeting-block figcaption .greeting-catch {
    font-size: 24px;
  }
  .greeting-block figcaption .greeting-catch span {
    margin: 0 8px;
  }
  .greeting-block figcaption .greeting-txt {
    width: calc(100% - 120px - 32px);
  }
  .greeting-txt > p:nth-of-type(2) .greeting-name {
    font-size: 18px;
    margin-left: 16px;
  }

  .about-block {
    flex-direction: column-reverse;
  }
  .about-block figure {
    flex-direction: row;
    margin-bottom: 32px;
    justify-content: center;
  }
  .about-block figure img:nth-of-type(1) {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .about-block figcaption {
    width: 100%;
  }
  .about-block figure img {
    width: calc((100% - 20px) / 2);
  }

  .about-group-block {
    padding: 30px 20px;
    width: calc(100% - 40px);
  }
  .about-group-block > dl {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-group-block > dl > dt {
    line-height: 1.2em;
    padding-right: 0;
    padding-bottom: 16px;
    margin-right: 0;
    margin-bottom: 16px;
    border-right: none;
    border-bottom: 2px solid #e8e8e8;
    width: 100%;
  }
  .about-group-block-list li dl {
    flex-direction: column;
  }
  .about-group-block-list li dl dd {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .philosophy-block {
    flex-direction: column;
  }
  .philosophy-block figure {
    margin-left: 5%;
    margin-top: 30px;
    width: calc(95% - 100px);
    max-width: inherit;
    border-radius: 32px 0 0 32px;
    padding: 30px 50px;
  }
  .philosophy-block figcaption {
    width: calc(95% - 80px);
    padding: 40px 40px 50px;
    margin-right: 5%;
    border-radius: 0 32px 32px 0;
  }
  .philosophy-list {
    margin-top: 40px;
  }
  .philosophy-list li {
    font-size: 16px;
  }

  .about-list li dl dt {
    width: 100px;
    margin-right: 20px;
    font-size: 16px;
  }
  .about-list li dl dd {
    width: calc(100% - 100px - 20px);
    font-size: 16px;
  }
  .about-service-list li::before {
    top: 8px;
  }

  .map-cont {
    padding: 20px 20px 30px;
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 450px) {
  .greeting-block figcaption {
    flex-direction: column;
  }
  .greeting-block figcaption .greeting-catch {
    writing-mode: inherit;
    margin-top: inherit;
  }
  .greeting-block figcaption .greeting-catch span {
    margin: 0;
  }
  .greeting-block figcaption .greeting-catch span:nth-of-type(2),
  .greeting-block figcaption .greeting-catch span:nth-of-type(3) {
    margin-top: 10px;
  }
  .greeting-block figcaption .greeting-txt {
    width: 100%;
    margin-top: 20px;
  }
  .map-iframe iframe {
    height: 300px;
  }
}

/*-------- プライバシーポリシー --------*/
.privacy_cont1_inner ul li,
.privacy_cont1_inner ol li {
  font-size: 15px;
}

@media screen and (max-width: 1000px) {
  .privacy_cont1_inner {
    width: calc(90% - 80px);
    margin: 40px auto;
    padding: 40px;
    border-radius: 32px;
  }
  .privacy_cont1_inner h3 {
    font-size: 18px;
  }
}

/*-------- 確定申告・相続支援 --------*/
.support_cont1_inner,
.opening_cont1_inner,
.flow_cont1_inner {
  padding-bottom: 60px;
}
.support_cont3_inner {
  width: 90%;
  padding: 60px 0 80px;
}
.support_cont4_inner figcaption,
.taxation_cont6_inner figcaption {
  padding: 40px 40px 50px;
}
.support_cont4_inner figcaption .figcaption-wrap,
.taxation_cont6_inner figcaption .figcaption-wrap {
  width: 100%;
}
.support_cont4_inner h3,
.taxation_cont6_inner h3 {
  font-size: 21px;
}
.support_cont4_inner .end-txt,
.taxation_cont6_inner .end-txt {
  width: calc(100% - 480px);
  font-size: 16px;
  margin-top: 24px;
}

@media screen and (max-width: 1000px) {
  .support_cont2_inner {
    width: 90%;
    padding: 40px 0 50px;
  }
  .life-support-list > li {
    width: calc(((100% - 30px) / 2) - 40px);
    padding: 30px 20px;
  }
  .life-support-list .block-list li {
    width: 100%;
  }
  .support_cont4_inner figure.strength-cont-img,
  .taxation_cont6_inner figure.strength-cont-img {
    margin-top: 30px;
  }
}

@media screen and (max-width: 900px) {
  .support_cont4_inner,
  .taxation_cont6_inner {
    flex-direction: column;
  }
  .support_cont4_inner figcaption,
  .taxation_cont6_inner figcaption {
    width: calc(95% - 80px);
  }
  .support_cont4_inner .end-txt,
  .taxation_cont6_inner .end-txt {
    width: 100%;
  }
  .support_cont4_inner figure.strength-cont-img img,
  .taxation_cont6_inner figure.strength-cont-img img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .inheritance-list {
    flex-direction: column;
  }
  .inheritance-list li {
    width: calc(100% - 40px);
    margin-bottom: 30px;
  }
  .inheritance-list li:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 625px) {
  .life-support-list {
    flex-direction: column;
  }
  .life-support-list > li {
    width: calc(100% - 40px);
  }
  .life-support-list > li:first-of-type {
    margin-bottom: 30px;
  }
  .block-list {
    height: auto;
  }
}

/*-------- 開業支援 --------*/
.opening_cont2_inner {
  width: 90%;
  padding: 40px 0 50px;
}
.opening-support-list .block-list {
  height: auto;
}
.opening_cont2_inner h2 {
  margin-bottom: 60px;
}
.opening-support-list > li dl dt {
  width: 90%;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  left: calc(50% - 45%);
}
.opening-support-list .block-list li {
  font-size: 15px;
}
.opening-limeit {
  font-size: 15px;
  width: 70px;
  height: 70px;
  top: 5px;
}
.opening_cont3_content_inner {
  width: calc(90% - 40px);
  padding: 40px 20px;
}
.opening_cont3_content_inner h3 {
  font-size: 18px;
  margin-bottom: 24px;
}
.opening_cont3_cta {
  width: 90%;
  padding: 30px 0;
}
.opening_cont3_cta p {
  font-size: 17px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .opening-support-list > li {
    width: calc(((100% - 25px) / 2) - 80px);
  }
  .opening-support-list > li:nth-of-type(3),
  .opening-support-list > li:nth-of-type(4),
  .opening-support-list > li:nth-of-type(5) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .opening_cont3_content_inner {
    margin-top: -30px;
  }
  .opening_cont3_content {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 625px) {
  .opening-support-list > li {
    width: 100%;
    margin: 0 auto;
  }
  .opening-support-list > li:nth-of-type(2) {
    margin-top: 30px;
  }
  .opening-limeit {
    left: calc(50% - 120px);
  }
  .opening_cont3_cta {
    width: 100%;
  }
  .opening_cont3_cta .btn-contact {
    width: 90%;
    font-size: 16px;
    padding: 10px 10px 11px;
  }
  .opening_cont3_cta br.ssp_br {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .opening_cont3_bg img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
}

/*-------- 支援の流れ --------*/
.flow_cont2_inner {
  padding: 40px 0 80px;
}
.flow_cont2_inner h2 {
  margin-bottom: 60px;
}
.step-list-wrap {
  width: 95%;
}
.step-list-wrap .step-list {
  padding: 70px 30px 70px 5%;
  width: calc(100% - 5% - 30px);
}
.step-list-wrap .step-list::after {
  top: 70px;
  left: calc(44px + 5%);
  height: calc(100% - 566px);
}
.step-list-cont-wrap {
  height: auto;
  margin-bottom: 313px;
}
.step-list-cont-wrap > figure {
  right: -10%;
  top: inherit;
  bottom: -340px;
  max-width: inherit;
  width: 100%;
  height: 313px;
  border-radius: 90px;
}
.step-list-cont-wrap > figure img {
  border-radius: 90px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.step-cta-wrap {
  width: 85%;
  margin-bottom: 80px;
}
.step-cta-contact-flex {
  flex-direction: column;
  gap: 30px;
}
.step-cta-inner {
  padding: 40px 40px 50px;
}
.step-contact-form-box {
  width: calc(100% - 40px);
  padding: 30px 20px;
  max-width: 520px;
}

.flow_cont3_inner {
  padding: 40px 0;
  width: 90%;
}
.flow-support-list {
  margin-top: 40px;
  flex-wrap: wrap;
}
.flow-support-list li {
  width: calc((100% - 40px) / 3);
}
.flow-support-list figcaption {
  padding: 24px 10px;
  font-size: 16px;
}
.flow-end-txt {
  font-size: 18px;
  padding: 16px;
  width: calc(100% - 32px);
}
.flow-end-cta {
  width: 460px;
  border-radius: 60px 0 0 60px;
}
.flow-end-cta .flow-end-cta-ttl {
  font-size: 17px;
  padding: 20px 0;
  border-radius: 60px 0 0 0;
}
.flow-end-cta-cont {
  padding: 30px 0;
}
.flow-end-cta-txt {
  font-size: 16px;
  margin-bottom: 16px;
}
.flow-end-cta-btn {
  line-height: 1em;
}
.flow-end-cta-cont .btn-form {
  padding: 10px 10px;
}
.flow-end-cta-txt2 {
  margin-top: 10px;
}

@media screen and (max-width: 1000px) {
  .flow_cont4_wrap {
    background: url(../images/flow/sec4-1.webp) no-repeat -100px center;
  }
}

@media screen and (max-width: 768px) {
  .flow-support-list li {
    width: 100%;
    margin-bottom: 30px;
  }
  .flow-support-list li:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 625px) {
  .step-list-wrap .step-list {
    padding: 40px 30px 50px 5%;
  }
  .step-list-inner > img {
    width: 50px;
    height: auto;
    margin-right: 20px;
  }
  .step-list-wrap .step-list li {
    margin-bottom: 60px;
  }
  .step-list-cont .step-list-no {
    margin-bottom: 3px;
  }
  .step-list-cont .step-list-ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .step-list-wrap br.ssp_br {
    display: block;
  }
  .step-list-cont .step-list-txt {
    width: 100%;
  }
  .step-list-cont-wrap {
    margin-bottom: 170px;
  }
  .step-list-cont-wrap > figure {
    width: 100%;
    height: 150px;
    bottom: -170px;
    right: 0;
  }
  .step-cta-inner {
    padding: 20px 20px 30px;
  }
  .step-cta-wrap {
    margin: 40px 0 40px auto;
    width: 86%;
  }
  .step-contact-tel-header {
    margin-bottom: 10px;
  }
  .step-cta-ttl {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
  .step-contact-label-ja {
    font-size: 14px;
    margin-right: 10px;
    font-weight: 500;
  }
  .step-contact-number {
    margin-bottom: 10px;
  }
  .step-contact-hours {
    font-size: 15px;
  }
  .step-contact-form-text {
    font-size: 16px;
    letter-spacing: 0;
  }
  .step-list-wrap .step-list::after {
    top: 40px;
    left: calc(25px + 5%);
    width: 1px;
    height: calc(100% - 470px);
  }
  .flow_cont4_wrap .ssp_br {
    display: block;
  }
  .flow-end-txt {
    font-size: 16px;
  }
  .flow_cont4_wrap {
    background: url(../images/flow/sec4-1-sp.webp) no-repeat center center;
    height: 710px;
  }
  .flow_cont4_inner {
    align-items: center;
  }
  .flow-end-cta {
    border-radius: 48px;
    margin-bottom: 40px;
  }
  .flow-end-cta .flow-end-cta-ttl {
    border-radius: 48px 48px 0 0;
  }
}

/*-------- 決算・税務申告 --------*/
.taxation_cont2_inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 50px;
}
.taxation_cont3_inner {
  width: 90%;
  padding-bottom: 40px;
}
.sub_page h2 {
  margin-bottom: 40px;
}
.service-content-block p {
  margin-top: 18px;
}
.service-content-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.service-content-block-strong {
  font-size: 17px;
  margin-bottom: 10px;
}
.service-content-diagnosis {
  width: calc(90% - 80px);
  padding: 30px 40px 40px;
}
.service-content-diagnosis-flex {
  margin-top: 40px;
}

.taxation-diagnosis-list {
  width: 96%;
}
.taxation_cont .opening_cont3_content_inner .double-line-ttl {
  margin: 20px auto 20px;
}
.taxation-diagnosis-list li {
  padding: 20px 5px;
  width: calc(((100% - 45px) / 4) - 10px);
}
.taxation-diagnosis-list li dl dt {
  font-size: 18px;
  margin-bottom: 10px;
}
.taxation_cont5_inner {
  padding: 60px 0;
}
.taxation_cont5_content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.difference-list {
  flex-direction: column;
  width: calc((100% - 30px) / 2);
  border-radius: 10px;
}
.difference-list figure img {
  width: auto;
  height: 300px;
  border-radius: 10px 10px 40px 40px;
  background-position: 50%;
  background-repeat: no-repeat;
  object-fit: cover;
}
.difference-list figcaption {
  padding: 40px 20px;
  width: calc(100% - 40px);
  margin-left: 0;
}
.difference-ttl {
  font-size: 23px;
}
.difference-list figcaption dl dd {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.015em;
}

@media screen and (max-width: 768px) {
  .service-content-block-strong {
    font-weight: 600;
  }
  .service-content-diagnosis {
    width: calc(100% - 40px);
    padding: 30px 20px 40px;
  }
  .service-content-diagnosis-flex {
    flex-direction: column;
  }
  .service-content-diagnosis-flex ul:last-of-type {
    margin-top: 16px;
  }
  .taxation-diagnosis-list {
    flex-wrap: wrap;
  }
  .taxation-diagnosis-list li {
    width: calc(((100% - 15px) / 2) - 10px);
  }
  .taxation-diagnosis-list li:nth-of-type(n + 3) {
    margin-top: 15px;
  }
  .difference-list {
    width: 100%;
  }
  .difference-list figure img {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .taxation-diagnosis-list li {
    width: calc(100% - 10px);
  }
  .taxation-diagnosis-list li:nth-of-type(n + 2) {
    margin-top: 15px;
  }
}
