/* sp */
#mobile-menu,
.slicknav_menu,
#mobile-menu .site-name {
  display: none;
}

/* Header */
.site-header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  transition: .3s;
  z-index: 100;
}
.site-header.is-hide{
    border-top: 2px solid #E0481D;
}
.common-header {
  border-bottom: 1px solid #bbb;
}
.site-header__inner {
  display: flex;
	flex-wrap: wrap;
	align-items: center;
  justify-content: space-between;
  max-width: 124.0rem;
  margin: 0 auto;
	padding: 1.6rem 2.0rem 0;
}
.site-header__nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.site-header__logo {
	padding-bottom: 1.6rem;
  transition: .3s;
}
.is-hide .site-header__logo {
  transform: scale(0.8);
}
.site-header__unit {
  display: flex;
	align-items: center;
	column-gap: 2.4rem;
}
.site-header__font-size {
  display: flex;
  align-items: center;
  font-family: sans-serif;
}
.font-size-label {
  font-size: 1.4rem;
}
#fontSize {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: .8rem;
  background-color: #eff0ee;
  border-radius: 10rem;
  list-style: none;
  isolation: isolate;
}
.changeBtn {
  width: 5.6rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.changeBtn button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-size: 16px;
	line-height: 1.75;
  cursor: pointer;
  padding: 0;
}
.font-size-list__slider {
  position: absolute;
  width: 5.6rem;
  height: 100%;
  background-color: var(--color-limegreen);
  border-radius: 10rem;
  z-index: 1;
  transition: transform .8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
/* --- 1. 選択中（is-active）の位置 --- */
#fontSize:has(.changeBtn:nth-child(2).is-active) .font-size-list__slider { transform: translateX(0); }
#fontSize:has(.changeBtn:nth-child(3).is-active) .font-size-list__slider { transform: translateX(100%); }
#fontSize:has(.changeBtn:nth-child(4).is-active) .font-size-list__slider { transform: translateX(200%); }
/* --- 2. ホバー時：is-activeよりホバー位置を優先する --- */
#fontSize:has(.changeBtn:nth-child(2):hover) .font-size-list__slider { transform: translateX(0) !important; }
#fontSize:has(.changeBtn:nth-child(3):hover) .font-size-list__slider { transform: translateX(100%) !important; }
#fontSize:has(.changeBtn:nth-child(4):hover) .font-size-list__slider { transform: translateX(200%) !important; }

.toggle-search-button {
	width: 4.0rem;
	height: 4.0rem;
	background: url("/common/img/icon_search_on.svg") no-repeat;
	background-size: contain;
	cursor: pointer;
}
.toggle-search-button img {
	width: 100%;
	height: 100%;
}
.toggle-search-button img:hover {
	opacity: 0;
	transition: .3s;
}
.site-footer__nav .search-form {
	display: none !important;
}
.search-form {
	display: none;
  width: 100%;
	padding-bottom: 4.0rem;
}
.search-form__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.0rem;
  max-width: 63.2rem;
  margin: 0 auto;
}
.search-form__input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-form__input {
  width: 100%;
  padding: 1.4rem 6.0rem 1.4rem 1.5rem;
	background: var(--color-white);
  border: .1rem solid var(--color-limegreen);
  border-radius: .4rem;
}
.search-form__input::placeholder {
  color: #aaa;
}
.search-form__submit {
  position: absolute;
  right: 2.0rem;;
  background: none;
  border: none;
  color: #717171;
  font-weight: bold;
  font-size: 1.6rem;
	font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.search-form__close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid #ccc;
  border-radius: 10rem;
  background-color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
	transition: .3s;
}
.search-form__close-icon {
  position: relative;
  width: 2.0rem;
  height: 2.0rem;
}
.search-form__close-icon::before,
.search-form__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
  width: .2rem;
  height: 100%;
  background-color: var(--color-green);
	transition: .3s;
}
.search-form__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.search-form__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.search-form__close-button:hover {
  border: 1px solid var(--color-green);
  background-color: var(--color-green);
}
.search-form__close-button:hover .search-form__close-icon::before,
.search-form__close-button:hover .search-form__close-icon::after {
  background-color: var(--color-white);
}

/* G-Nav */
.site-header__nav {
  width: 100%;
	position: relative;
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
	column-gap: 4.0rem;
	margin: 1.6rem 0 2.4rem 2.4rem;
}
.site-header__nav li {
	margin-bottom: 1.2rem;
	position: relative;
}
.site-header__nav li button,
.site-header__nav li a {
  color: var(--color-text);
	font-size: 1.8rem;
	font-weight: 500;
	opacity: 1;
	position: relative;
}

.site-header__nav li>button::before,
.site-header__nav li>a::before,
.site-header__nav li>a:hover::before,
.site-header__nav li>a.is-active::before,
.site-header__nav li>a.active::before {
	content: '';
  display: inline-block;
  width: 6.4rem;
  height: .4rem;
  border-radius: 10rem;
  background: linear-gradient(90deg, var(--color-limegreen), var(--color-green3));
  position: absolute;
  left: 50%;
	transform: translateX(-50%);
  bottom: -1.2rem;
}
.site-header__nav li button::before,
.site-header__nav li a::before {
  opacity: 0; 
  visibility: hidden;
  transition: .3s;
}
.site-header__nav li button:hover::before,
.site-header__nav li button.is-active::before,
.site-header__nav li button.active::before,
.site-header__nav li a:hover::before,
.site-header__nav li a.is-active::before,
.site-header__nav li a.active::before {
  opacity: 1;
  visibility: visible;
}

/* Mega Menu */
.megaMenu__link.is-active::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.megaMenu__link.is-active + .megaMenu__content {
  /*opacity: 1;
  visibility: visible;*/
	display: block;
}
.megaMenu__content {
  /*opacity: 0;
  visibility: hidden;*/
	display: none;
  position: absolute;
  top: 100%;
  left: 50%;
	transform: translateX(-50%);
  width: auto;
	padding: 2.4rem 1.6rem;
  background-color: var(--color-white);
	border-radius: 1em;
	box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .1);
  transition: .5s;
  z-index: 99999;
}
.g-nav .megaMenu__content {
  /*display: inherit;*/
  display: none;
	margin: 1.6rem 0 0;
}
.g-nav .megaMenu__content li {
	display: block;
	white-space: nowrap;
	margin-bottom: 1.6rem;
}
.g-nav .megaMenu__content li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.g-nav .megaMenu__content li a {
  display: block;
	padding-right: 3.2rem;
	font-size: 1.6rem;
	position: relative;
}
.g-nav .megaMenu__content li a:hover {
  color: var(--color-green);
}
.g-nav .megaMenu__content li a::before {
	display: block;
  content: ''; 
  width: .6rem;
  height: 1.0rem;
	background: url("/common/img/icon_arrow_limegreen.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: inherit;
  opacity: 1;
  visibility: visible;
}
.g-nav .megaMenu__content li a:hover::before {
  left: auto;
}
.g-nav .megaMenu__content li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.g-nav .megaMenu__content li a:hover::after {
  transform: scaleX(1);
}


/* Main */
.bg__cream {
	background-color: var(--color-cream);
}
.bg__lightblue {
	background-color: var(--color-lightblue);
}
.main-content__inner {
  max-width: 124.0rem;
  margin: 0 auto;
	padding-left: 2.0rem;
	padding-right: 2.0rem;
}
.main-content__clo2 {
  display: flex;
  flex-wrap: wrap;
	column-gap: 4.8rem;
}

/* Page Header H1 */
.main-content__header-outer,
.main-content__support .main-content__header-outer {
	width: 100%;
	background: linear-gradient(90deg, #fffef3 50%, #6fb965 50%);
}
.main-content__support .main-content__header-outer {
	background: linear-gradient(90deg, #fffef3 50%, #62b6d8 50%);
}
.main-content__header,
.main-content__support .main-content__header {
	max-width: 140.0rem;
	margin: 0 auto;
	margin-bottom: 2.4rem;
	background: linear-gradient(90deg, #fffef3 19.2%, #bdd73f 68.5%, #6fb965 100%);
}
.main-content__support .main-content__header {
	background: linear-gradient(90deg, #fffef3 18.2%, #dff6f7 43.3%, #75d1e3 67%, #62b6d8 100%);
}
.main-content__header-outer.not-found,
.not-found .main-content__header {
  background: #F0F0F0;
}
.not-found .main-content__header-inner {
  background: none;
}
.main-content__header-inner {
  display: flex;
  align-items: center;
	max-width: 124.0rem;
	margin: 0 auto;
	min-height: 17.0rem;
	padding: 0 2.0rem;
	background: url("/common/img/h1_bg.svg") center 1.2rem no-repeat;
	background-size: auto calc(100% - 1.2rem);
}
.main-content__title {
	margin: 0;
	padding: 0;
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1.5;
}

/* Content */
.main-content__clo1 .content {
	width: 100%;
	padding-bottom: 7.2rem;
}
.main-content__clo2 .content {
	width: calc(100% - 33rem);
	padding-bottom: 7.2rem;
}

/* Sidebar */
.main-content__clo2 .sidebar {
	width: 282px;
	padding: 7.2rem 0;
}



/* Pagetop */
.page-top {
	width: 100%;
  max-width: 124.0rem;
	margin: 4.0rem auto 0;
	padding-left: 2.0rem;
	padding-right: 2.0rem;
	text-align: right;
}

/* Footer */
.site-footer {
  padding: 3.2rem 0 6.4rem;
  background-color: #f6f6f4;
	border-top: 2px solid var(--color-limegreen);
}
.site-footer__inner {
  max-width: 124.0rem;
  margin: 0 auto;
	padding-left: 2.0rem;
	padding-right: 2.0rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
	column-gap: 3.2rem;
}
.site-footer__info {
  width: 306px;
}
.site-footer__logo {
	width: 152px;
	height: 100%;
	margin-bottom: .8rem;
	background-color: var(--color-white);
}
.site-footer__org-name {
	margin-bottom: 1.2rem;
  font-weight: 500;
	line-height: 1.5;
}
.site-footer__address {
	font-size: 1.4rem;
	font-style: normal;
	line-height: 1.5;
}
.site-footer__nav {
  width: calc(100% - 306px);
  display: flex;
  justify-content: space-between;
	column-gap: 7.2rem;
	margin-top: .8rem;
	line-height: 1.5;
}
.site-footer__nav-column {
	max-width: 22.4rem;
}
.site-footer__nav-title {
	/*display: block;*/
  margin-bottom: 1.6rem;
  padding-bottom: 1.0rem;
  border-bottom: 1px solid #ccc;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0;
}
.site-footer__nav-title--link {
  color: inherit;
  border-bottom: none;
	position: relative;
}
.site-footer__nav-group {
  margin-bottom: 2.4rem;
}
.site-footer__nav-group-title {
	margin-bottom: .4rem;
	/*color: var(--color-green);*/
	font-size: 1.6rem;
  font-weight: 500;
}
.site-footer__nav-list--main .site-footer__nav-item {
  margin-bottom: 1.6rem;
}
.site-footer__nav-item {
  margin-bottom: .8rem;
}
@media (max-width: 1140px) {
  .site-footer__nav-item .pc-only {
    display: none !important;
  }
}

.site-footer__link {
	display: inline-block;
	margin-left: 2.0rem;
	position: relative;
}
.site-footer__link:hover {
	color: var(--color-text);
}
.site-footer__nav-title .site-footer__link,
.site-footer__nav-list--main .site-footer__link {
	margin-left: 0;
}
.site-footer__link--bold {
  font-weight: 700;
  font-size: 1.6rem;
}
.site-footer__link::before {
	content: '－';
  margin-right: .4rem;
  color: var(--color-limegreen);
  font-weight: 700;
	position: absolute;
	top: 0;
	left: -2.0rem;
}
.site-footer__nav-title .site-footer__link::before,
.site-footer__link--bold::before,
.site-footer__nav-title--link::before {
  content: none;
}
.site-footer__link--external::after {
	display: inline-block;
  content: '';
	width: 1.4rem;
	height: 1.4rem;
	margin: .6rem 0 0 .6rem;
	background: url("/common/img/icon_window_green.svg") no-repeat;
	background-size: contain;
	position: relative;
}
.site-footer__nav-title--link::after,
.site-footer__link::after {
  content: '';
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.site-footer__nav-title--link::after {
  bottom: .8rem;
}
.site-footer__nav-title--link:hover::after,
.site-footer__link:hover::after {
  transform: scaleX(1);
}


/* Side Banner */
.side-banner {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}
.side-banner__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.0rem 1.2rem 1.6rem;
  background-color: var(--color-white);
  border: .2rem solid var(--color-blue);
  border-radius: 1.6rem 0 0 1.6rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
	position: relative;
}
.side-banner__link::before,
.side-banner__link::after {
	display: block;
	content: '';
	width: 2.3rem;
	height: 2.6rem;
	margin-bottom: 0.4rem;
	background: url("/common/img/icon_side_banner_on.svg") no-repeat;
	background-size: contain;
	transition: opacity 0.3s ease-in-out;
	position: absolute;
	top: 1.8rem;
	left: 50%;
	transform: translateX(-50%);
}
.side-banner__link::after {
	background: url("/common/img/icon_side_banner.svg") no-repeat;
}
.side-banner__link:hover {
  background-color: var(--color-blue);
	color: var(--color-white);
}
.side-banner__link:hover::after {
	opacity: 0;
}
.side-banner__text {
  writing-mode: vertical-rl;
	font-size: 2.4rem;
	font-weight: 500;
}


/* MV */
.main-visual {
  width: 100%;
	height: 560px;
	max-height: 40vw;
	margin-bottom: 17.6rem;
	padding: 2.4rem 0;
  background: url("/common/img/index/mv_bg.svg") no-repeat;
  background-size: cover;
	position: relative;
}
.main-visual__inner {
	max-width: 151.2rem;
	margin: 0 auto;
}
.main-visual__image h1 {
	margin: 0;
	padding: 0;
}
.main-visual__nav-container {
  display: flex;
	align-items: stretch;
  justify-content: center;
  gap: 1.6rem 4.0rem;
	width: 100%;
  position: absolute;
	bottom: -136px;
	left: 50%;
	transform: translateX(-50%);
}
.main-visual__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 46.0rem;
	padding: 3.2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 1.0rem 3.0rem rgba(0, 0, 0, 0.1);
	z-index: 2;
}
.main-visual__nav-header {
	margin-bottom: 1.6rem;
	letter-spacing: 0;
	line-height: 1.2;
	text-align: center;
}
.main-visual__nav-subtitle {
	display: block;
	margin-bottom: .8rem;
	font-size: 2.4rem;
  font-weight: 500;
}
.main-visual__nav-title {
	margin: 0;
	font-size: 4.5rem;
	font-weight: 700;
}
.main-visual__nav-body {
	display: flex;
	flex-direction: column;
	gap: .8rem;
}
.main-visual__nav--center {
	flex-grow: 1;
	justify-content: center;
}

.main-visual__nav-btn .button__kadomaru-limegreen {
	min-width: 100%;
  padding: 1.6rem 4.8rem;
	box-shadow: none;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5;
}
.main-visual__nav-btn .button__kadomaru-limegreen::before {
  transition: left .8s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-visual__nav-btn--large {
	margin-top: 4.8rem;
}
.main-visual__nav-btn--large .button__kadomaru-green2 {
	min-width: 100%;
  padding: 2.4rem 4.8rem;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.button__kadomaru-green2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 100%;
  padding: 1.6rem 4.0rem;
  background-color: var(--color-green2);
  border-radius: 10em;
	color: var(--color-text);
	font-weight: 500;
	letter-spacing: 0;
  overflow: hidden;
  z-index: 1;
  transition: .3s;
}
  .button__kadomaru-green2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-green3);
    border-radius: 10em;
    transition: left .8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
  }
@media (hover: hover) {
  .button__kadomaru-green2:hover::before {
    left: 0;
  }
  .button__kadomaru-green2:hover {
      color: var(--color-white);
  }
}
.button__kadomaru-green2::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url("/common/img/icon_arrow_maru_white.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 2.0rem;
}

/* TOP-News */
.top-news {
  padding-top: 4.0rem;
  padding-bottom: 3.2rem;
}
.top-news__inner {
  display: flex;
	align-items: center;
	column-gap: 3.2rem;
}
.top-news__header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
	padding-bottom: 4.0rem;
}
.top-news__sub-title {
  display: inline-block;
	margin-bottom: 1.6rem;
	padding-bottom: .8rem;
  font-size: 1.6rem;
  letter-spacing: .08em;
  position: relative;
}
.top-news__sub-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: .4rem;
  background: linear-gradient(to right, var(--color-limegreen), var(--color-green3));
	border-radius: 10rem;
}
.top-news__main-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: .08em;
	line-height: 1.4;
}
.top-news__body {
  flex-grow: 1;
}
.top-news__item {
	padding-right: 1.6rem;
  border-bottom: 1px solid #e6e6e6;
}
.top-news__link {
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
  color: var(--color-text);
}
.top-news__item:nth-of-type(1) .top-news__link {
  padding-top: 0;
}
.top-news__link .top-news__text {
  transition: .3s;
}
@media (hover: hover) {
  a.top-news__link:hover .top-news__text {
    color: var(--color-green);
  }
}
.top-news__date {
  width: 10.0rem;
	font-size: 1.8rem;
	font-weight: 500;
  flex-shrink: 0;
}
.top-news__category {
  display: inline-flex;
  align-items: center;
	justify-content: center;
	min-width: 13.2rem;
  height: 3.1rem;
	margin: 0 3.2rem 0 1.6rem;
  padding: 0 .4rem 0 1.8rem; 
  border: 1px solid var(--color-limegreen);
  border-right: 0;
  border-radius: .4rem 0 0 .4rem;
	font-size: 1.4rem;
  line-height: 1;
	position: relative;
}
.top-news__category::before {
  content: '';
  position: absolute;
  left: .8rem;
  width: .6rem;
  height: .6rem;
  border: 1px solid var(--color-limegreen);
  border-radius: 50%;
}
.top-news__category::after {
	content: '';
  position: absolute;
  top: calc(50% - 0rem);
  right: -1.1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-top: 1px solid var(--color-limegreen);
  border-right: 1px solid var(--color-limegreen);
  transform: rotate(45deg) skew(10deg, 10deg) scale(0.85);
  transform-origin: top right;
  z-index: 1;
}
.top-news__text {
  flex-grow: 1;
	font-size: 1.8rem;
  line-height: 1.6;
}

/* link共通 */
.top-news__footer,
.event-banner__footer,
.top-case-study__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.4rem;
	padding-right: 2.0rem;
	position: relative;
}
.top-news__footer {
  margin-top: 1.6rem;
}
.top-news__footer::after,
.event-banner__footer::after,
.top-case-study__footer::after {
	display: block;
  content: ''; 
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_green.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.top-news__more-link,
.event-banner__link,
.top-case-study__link {
  display: flex;
  align-items: center;
	position: relative;
}
@media (hover: hover) {
  .top-news__more-link:hover,
  .event-banner__link:hover,
  .top-case-study__link:hover {
    color: var(--color-green);
  }
}



/* TOP-About */
.top-about {
  max-width: 1400px;
	min-height: 74.4rem;
  margin: 0 auto;
  padding: 6.4rem 0 0;
  background: url("/common/img/index/img_bg_about.svg") center 3em no-repeat;
}
.top-about__inner {
  max-width: 1240px;
  margin: 0 auto;
	padding-left: 2.0rem;
	padding-right: 2.0rem;
}

.top-about__header {
  text-align: center;
}
.top-about__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.1;
}
.top-about__title-main {
  margin-bottom: 1.6rem;
	font-size: 4.2rem;
}
.top-about__title-sub {
	margin-bottom: 5.6rem;
  font-size: 3.2rem;
}
.top-about__text {
  margin-bottom: 3rem;
  font-size: 2.0rem;
	font-weight: 500;
  line-height: 1.5;
}
.top-about__text:last-of-type {
  margin-bottom: 5.6rem;
}
.top-about__action .button__kadomaru-limegreen {
	min-width: 26.4rem;
	margin-bottom: 1.6rem;
  padding: 1.6rem 4.0rem;
	box-shadow: none;
}


/* TOP-Support */
.top-support {
  padding-top: 3.2rem;
  padding-bottom: 7.2rem;
}
.top-support__header {
  display: flex;
  align-items: center;
  margin-bottom: 4.0rem;
}
.top-support__logo {
  width: 30.4rem;
  margin-right: 3.0rem;
}
.top-support__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.top-support__lead {
  font-size: 2rem;
  font-weight: 500;
}

.c-card-list {
  display: flex;
  flex-wrap: wrap;
	gap: 3.2rem 4.0rem;
}
.c-card-list__item {
  width: calc((100% - 8.0rem) / 3);
}
.top-support .c-card {
  height: 100%;
  background: none;
  border-radius: 0;
  box-shadow: 0 0 0;
}
.top-support .c-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 373 / 249;
	border-radius: .8rem;
  overflow: hidden;
	border: 0;
}
.top-support .c-card__image {
	display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-support .c-card__body {
  padding: 1.2rem 0 0;
  flex-grow: 1;
}
.top-support .c-card__title {
	display: inline-block;
	margin-bottom: 1.2rem;
	padding-right: 2.0rem;
  font-size: 1.8rem;
  font-weight: 700;
	line-height: 1.3;
	position: relative;
}
.top-support .c-card__title::after {
  content: ''; 
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_green.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: .6rem;
	right: 0;
}
.top-support .c-card__text {
  line-height: 1.5;
  text-align: justify;
}

/*
.top-support .c-card__body {
  padding: 1.6rem 2.4rem 2.4rem;
  flex-grow: 1;
}
.top-support .c-card__title {
	margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
	line-height: 1.3;
}
.top-support .c-card__text {
  line-height: 1.5;
  text-align: justify;
}
*/

@media (hover: hover) {
.c-card .c-card__image,
.c-card .c-card__title {
  transition: .3s;
}
.top-case-study .c-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.c-card:hover .c-card__image {
  transform: scale(1.1);
}
.c-card:hover .c-card__title {
  color: var(--color-green);
}
}

/* TOP-Event Banner */
.event-banner {
	margin: 7.2rem auto;
	position: relative;
}
.event-banner::before {
	content: '';
	width: 12.2rem;
	height: 10.2rem;
	background: url("/common/img/index/icon_square01.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: -14.4rem;
	left: 0;
}
.event-banner__container {
  display: flex;
  align-items: center;
  justify-content: center;
	gap: 1.6rem 4.8rem;
  max-width: 97.6rem;
  margin: 0 auto;
  padding: 2.4rem 4.8rem 2.4rem 2.4rem;
	background-color: var(--color-limegreen);
}
.event-banner__image-wrapper {
  flex: 1;
}
.event-banner__image {
  width: 100%;
  height: auto;
	display: block;
	background-color: var(--color-limegreen);
  padding: 1px;
}
.event-banner__content {
  flex: 1;
  text-align: center;
}
.event-banner__title-sub {
	display: block;
  margin-bottom: .8rem;
  font-size: 2.0rem;
  font-weight: 500;
	line-height: 1;
}
.event-banner__title-main {
	display: block;
  margin-bottom: 1.6rem;
  font-size: 4.0rem;
  font-weight: 500;
  line-height: 1.2;
}
.event-banner__description {
	margin-bottom: 3rem;
  text-align: left;
}
.event-banner__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 26.4rem;
  padding: 1.6rem 4.0rem;
  background-color: var(--color-limegreen);
	border: 1px solid var(--color-white);
  border-radius: 10em;
	color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: .3s ease;
}
.event-banner__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 10em;
  transition: left .5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.event-banner__button::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_window_white.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 2.4rem;
}
@media (hover: hover) {
  .event-banner__button:hover::before {
    left: 0;
  }
  .event-banner__button:hover::after {
    background: url("/common/img/icon_window_green.svg") no-repeat;
  }
}

/* TOP-Case */
.top-case-study {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
.top-case-study__header {
	margin-bottom: 4.8rem;
  text-align: center;
}
.top-case-study__sub-title {
  display: block;
  font-weight: 500;
  letter-spacing: .08em;
}
.top-case-study__sub-title::after {
  content: '';
  display: block;
  width: 6.0rem;
  height: .4rem;
	margin: .8rem auto 0;
  background: linear-gradient(to right, var(--color-limegreen), var(--color-green3));
	border-radius: 10rem;
}
.top-case-study__main-title {
  margin-top: .4rem;
  font-size: 3.2rem;
  font-weight: 700;
}
.top-case-study__main-title span {
	display: block;
  font-size: 2.4rem;
  letter-spacing: 0.07em;
}

.c-card {
  height: 100%;
  background: var(--color-white);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: .3s;
}
.c-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 4px solid var(--color-limegreen);
}
.c-card__image {
	display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-case-study .c-card__image-wrapper {
  border: 0;
}
.top-case-study .c-card__body {
  flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 2.4rem;
	position: relative;
}
.top-case-study .c-card__label {
  position: absolute;
  top: -1.6rem;
  left: 1.0rem;
  background-color: var(--color-limegreen);
	border-radius: .2rem;
  padding: .6rem 1.6rem;
  font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
  z-index: 2;
}
.top-case-study .c-card__title {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.top-case-study .c-card__text {
	/* margin-top: auto; */
  line-height: 1.5;
}


/* TOP-Links */
.top-related-links {
  padding: 7.2rem 2.0rem;
	position: relative;
}
.top-related-links::before {
	content: '';
	width: 11.0rem;
	height: 12.0rem;
	background: url("/common/img/index/icon_square02.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 8.8rem;
	right: 16.0rem;
}
.top-related-links__inner {
  max-width: 80.0rem;
  margin: 0 auto;
  position: relative;
}
.top-related-links__header {
  text-align: center;
  margin-bottom: 5.0rem;
}
.top-related-links__header {
	margin-bottom: 4.8rem;
  text-align: center;
}
.top-related-links__sub-title {
  display: block;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.top-related-links__sub-title::after {
  content: '';
  display: block;
  width: 6.0rem;
  height: .4rem;
	margin: .8rem auto 0;
  background: linear-gradient(to right, var(--color-limegreen), var(--color-green3));
	border-radius: 10rem;
}
.top-related-links__main-title {
  margin-top: .4rem;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.top-related-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	column-gap: 2.0rem;
}
.top-related-links__list ul {
  width: calc(50% - 2.0rem);
}
.top-related-links__item {
  margin-bottom: 1.6rem;
}
.top-related-links__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (hover: hover) {
	.top-related-links__item a:hover {
    color: var(--color-green);
  }
}

/* TOP-Banner */
.related-banner {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
.related-banner__inner {
  max-width: 97.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
.related-banner__title {
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.related-banner__list {
  display: flex;
  flex: 1;
  gap: 3.2rem 2.4rem;
}
.related-banner__item {
  flex: 1;
}
.related-banner__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 0.8rem;
  height: 8.0rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
@media (hover: hover) {
  .related-banner__link:hover {
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
  }
}
.related-banner__icon {
  max-width: 14.0rem;
  height: auto;
  object-fit: contain;
}




/*----------------------------------------------------------------------
   下層ページ
----------------------------------------------------------------------*/

/* リンク・ホバー */
.link-text {
  display: inline-flex;
  align-items: center;
	color: var(--color-darkgreen2);
	position: relative;
}
.main-content__support .link-text {
	color: var(--color-blue);
}
.link-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-content__support .link-text::before {
  background-color: var(--color-blue);
}
@media (hover: hover) {
  .link-text:hover::before {
    transform: scaleX(1);
  }
}

.more-link {
	position: relative;
}
.more-link::after,
.main-content__support .more-link::after {
	display: block;
  content: ''; 
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_green.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -2.0rem;
}
.main-content__support .more-link::after {
	background: url("/common/img/icon_arrow_maru_blue.svg") no-repeat;
}
@media (hover: hover) {
  .more-link:hover {
    color: var(--color-green);
  }
  .main-content__support .more-link:hover {
    color: var(--color-blue);
  }
}

/* btn */
.button__kadomaru-limegreen,
.button__kadomaru-skyblue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 30.0rem;
  padding: 1.6rem 4.0rem;
  background-color: var(--color-limegreen);
	box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
  border-radius: 10em;
	color: var(--color-text);
	font-weight: 500;
	letter-spacing: 0;
  overflow: hidden;
  z-index: 1;
  transition: .3s;
}
.button__kadomaru-skyblue {
  background-color: var(--color-skyblue);
}
.button__kadomaru-limegreen::before,
.button__kadomaru-skyblue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  border-radius: 10em;
  transition: left .5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.button__kadomaru-skyblue::before {
  background-color: var(--color-blue);
}
@media (hover: hover) {
	.button__kadomaru-limegreen:hover::before,
  .button__kadomaru-skyblue:hover::before {
    left: 0;
  }
	.button__kadomaru-limegreen:hover,
  .button__kadomaru-skyblue:hover {
      color: var(--color-white);
  }
}
.button__kadomaru-limegreen::after,
.button__kadomaru-skyblue::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_white.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 2.0rem;
}

/* 外部リンク */
.related-links__icon {
  display: inline-block;
	position: relative;
}
.related-links__icon::after {
  content: '';
	width: 1.6rem;
	height: 1.6rem;
	margin: .5rem 0 0 .8rem;
	background: url("/common/img/icon_window_green.svg") no-repeat;
	background-size: contain;
	position: absolute;
}
.body__support .related-links__icon::after,
.main-content__support .related-links__icon::after {
	background: url("/common/img/icon_window_blue.svg") no-repeat;
}
@media (hover: hover) {
  .related-links__icon:hover {
    color: var(--color-green);
  }
  .main-content__support .related-links__icon:hover {
    color: var(--color-blue);
  }
  .body__support .related-links__icon:hover {
    color: var(--color-blue);
  }
}

/* Topic Ppath */
.topic-path {
	margin-bottom: 4.0rem;
}
.topic-path__list {
  display: flex;
  flex-wrap: wrap;
}
.topic-path__item {
  display: flex;
  align-items: center;
}
.topic-path__item:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: .8rem;
  height: .8rem;
  margin: 0 .8rem;
  border-top: 1px solid var(--color-text);
  border-right: 1px solid var(--color-text);
  transform: rotate(45deg);
  vertical-align: middle;
}
.topic-path__link {
  text-decoration: none;
}


/* Content Common */
.content h2 {
	margin-bottom: 4.0rem;
	padding: 0 0 0 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	letter-spacing: 0.072em;
	line-height: 1.4;
	position: relative;
}
.content h2::before,
.main-content__support .content h2::before {
	content: '';
	width: 3.0rem;
	height: 3.0rem;
	background: url("/common/img/h2_icon_square.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: .8rem;
	left: 0;
}
.main-content__support .content h2::before {
	background: url("/common/img/h2_icon_square_support.svg") no-repeat;
}
.content h3 {
	margin: 0rem 0 1.6rem;
	padding: 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.content p {
	margin-bottom: 1.6rem;
}

.content__text {
	margin-bottom: 2.4rem;
	line-height: 1.75;
}


/* 事業承継について */
.p-about__image {
	margin-bottom: 1.6rem;
	text-align: center;
}

.dialogue {
	display: flex;
	margin: 8.8rem 0 0;
	padding: 0 5.6rem;
	position: relative;
}
.dialogue::before,
.dialogue::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 204px;
	background: url("/common/img/about/img_dialogue_ichimatsu_left.svg") no-repeat;
	background-size: contain;
}
.dialogue::after {
	background: url("/common/img/about/img_dialogue_ichimatsu_right.svg") no-repeat;
}
.dialogue::before { left: 0; }
.dialogue::after { right: 0; }

.dialogue__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3.2rem;
}
.dialogue__content {
	flex: 1;
}
p.dialogue__text {
	margin: 0;
}
.dialogue__text {
	color: var(--color-darkgreen2);
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.072;
	line-height: 1.75;
}
.dialogue__image-container {
	flex: 1;
	position: relative;
	height: 32.0rem;
}
.dialogue__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}







.info-section {
  padding: 8.0rem 0 4.4rem;
}
.info-section.info-section__about02 {
	padding-top: 6.8rem;
}
.info-section__inner {
  max-width: 96.0rem;
  margin: 0 auto;
}
.info-section__header-group {
  display: flex;
  justify-content: center;
  gap: 3.2rem 4.0rem;
  margin-bottom: 4.0rem;
}
.info-section__item {
  text-align: center;
}
.info-section__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
	margin-bottom: 1.6rem;
  font-size: 2.0rem;
  font-weight: 700;
	line-height: 1.2;
}
.info-section__title-sub {
	margin-left: .2rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.info-section__content-box {
  background-color: var(--color-white);
  padding: 4.0rem 4.8rem;
  text-align: center;
}
.info-section__description {
  display: inline-block;
  margin-bottom: 2.4rem;
	line-height: 1.75;
  text-align: left;
}
.info-section__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48.0rem;
  padding: 4.0rem;
  background-color: var(--color-green2);
  border-radius: 10rem;
  box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
  color: var(--color-text);
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
  overflow: hidden;
  z-index: 1;
  transition: .5s;
}
.info-section__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-green3);
  border-radius: 10rem;
  transition: left .8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) {
  .info-section__btn:hover::before {
    left: 0;
  }
  .info-section__btn:hover {
      color: var(--color-white);
  }
}
.info-section__btn::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_white.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 4.0rem;
}


/* 親族内承継支援について */
/* 支援の流れ（図） */
.support-flow__sp {
	display: none;
}
.support-flow {
	margin-top: 4.0rem;
  padding: 3.2rem 6.4rem 6.4rem;
	background-color: #F8F8F8;
	border-radius: .8rem;
}
.support-flow__title {
	margin-bottom: 3.2rem !important;
  font-size: 24px;
  font-weight: 700;
	line-height: 1.5 !important;
	text-align: center;
}
.support-flow__target {
	padding: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-limegreen);
	border-radius: .4rem;
	font-size: 16px;
  font-weight: 700;
	line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 10;
}

.support-flow__grid {
  display: flex;
  justify-content: space-between;
  /*margin-top: -1px; */
}
.support-flow__route--left {
  width: 36.2rem;
	margin-left: 5.8rem;
}
.support-flow__route--right {
  width: 310px;
  display: flex;
  justify-content: flex-end;
}

/* 矢印コンテナ（背景画像） */
.support-flow__arrow-box {
  display: flex;
  align-items: center;
	position: relative;
}
.support-flow__arrow-box02 {
  display: flex;
  align-items: center;
  justify-content: center;
	position: relative;
}
.support-flow__arrow-box--up {
  height: 100px;
	background: url("/common/img/about/supporting_flow-arrow-up.svg") left 40px top no-repeat;
}
.support-flow__arrow-box--down-long01 {
  height: 120px;
}
.support-flow__route--left {
  height: 314px;
	background: url("/common/img/about/supporting_flow-arrow-down.svg") right 100px top no-repeat;
}
.support-flow__arrow-box--down-long02 {
  width: 100%;
  height: 314px;
  background: url("/common/img/about/supporting_flow-arrow-down.svg") center top no-repeat;
}

/* 診断*/
.support-flow__arrow-box--diagnosis {
  margin-left: 4.0rem;
}
/* 相談1*/
.support-flow__arrow-box--consult-left {
  margin-top: -2.2rem;
	margin-left: 13.2rem;
}
/* 相談2 */
.support-flow__arrow-box--consult-right {
}

.support-flow__label {
	padding: .4rem 2.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-limegreen);
  border-radius: .4rem;
  font-size: 24px;
	font-weight: 700;
	letter-spacing: .2em;
	line-height: 1.2;
	text-indent: .2em;
  white-space: nowrap;
  z-index: 5;
}
.support-flow__box {
	padding: 1.6rem 2.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-green);
  border-radius: .4rem;
  position: relative;
  z-index: 10;
}
.content p.support-flow__text {
  margin-bottom: 0;
	padding-left: 1em;
  color: var(--color-darkgreen2);
  font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
	text-indent: -1em;
}
.support-flow__center {
	margin-bottom: 6.0rem;
	padding: 2.4rem 3.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-limegreen);
	border-radius: .4rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.support-flow__center::after {
	content: '';
	width: 2.4rem;
	height: 2.4rem;
	background: url("/common/img/icon_arrow_bottom_black.svg") no-repeat;
	position: absolute;
	bottom: -4.8rem;
	left: 50%;
	transform: translateX(-50%);
}
.support-flow__center-title {
	margin-bottom: .4rem;
  font-size: 20px;
  font-weight: 700;
	line-height: 1.2;
}
.support-flow__center-sub {
	margin-bottom: 1.6rem;
  font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}
.content p.support-flow__center-desc {
	margin-bottom: 0;
  font-size: 16px;
	line-height: 1.75;
  text-align: left;
}
.support-flow__footer {
  background: var(--color-white);
  border-radius: .4rem;
  overflow: hidden;
}
.support-flow__footer-head {
	padding: 1.2rem;
  background-color: var(--color-limegreen);
  border: 1px solid var(--color-limegreen);
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
	line-height: 1.2;
  letter-spacing: .4em;
  text-indent: .4em;
	text-align: center;
}
.support-flow__footer-body {
  padding: 2.4rem 3.2rem;
	border: 1px solid #ccc;
	border-top: 0;
	border-radius: 0 0 .4rem .4rem;
}
.content p.support-flow__footer-text {
	margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}


































/* 第三者承継支援について */

/* 見出し-ポイント */
.heading-point {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 2.4rem;
  background-color: var(--color-white);
	border: 1px solid var(--color-darkgreen2);
}
.heading-point__label {
  display: flex;
  justify-content: center;
  align-items: center;
	min-width: 14.8rem;
	padding: 1.6rem 2.4rem;
  background-color: var(--color-darkgreen2);
  color: var(--color-white);
  font-size: 2.0rem;
	font-weight: 700;
	line-height: 1;
}
.heading-point__title {
	flex: 1;
  color: var(--color-darkgreen2);
  font-size: 2.0rem;
  font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.sodankensu-box {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
	justify-content: center;
	gap: 3.2rem 10.6rem;
	margin-bottom: 4.8rem;
}
.sodankensu-box__item {
	text-align: center;
}
.sodankensu-box__title {
	margin-bottom: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
}

.seiyakujoto-box {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
	gap: .8rem 1.6rem;
	margin: 3.2rem 0 1.6rem;
}
.seiyakujoto-box__item {
	width: calc((100% - 3.2rem) / 3);
	text-align: center;
}
.seiyakujoto-box__image {
	width: 100%;
}

.advice-box {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
	gap: 2.4rem;
	margin-bottom: 4.8rem;
}
.advice-box__item {
	width: calc((100% - 7.2rem) / 4);
	text-align: center;
}
.advice-box__image {
	width: 100%;
}
.advice-box__title {
	margin-top: 1.6rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.support-box {
  display: flex;
	flex-wrap: wrap;
	gap: 2.4rem;
	margin: 4.8rem 0;
}
.support-box__item {
	width: calc((100% - 4.8rem) / 3);
}
.support-box__title {
  display: flex;
  flex-direction: column;
  align-items: center;
	margin-bottom: 1.6rem;
	line-height: 1.2;
	text-align: center;
}
.support-box__title-number {
  display: flex;
  align-items: center;
	justify-content: center;
  width: 49px;
  height: 49px;
  margin-bottom: .8rem;
  background-color: var(--color-limegreen);
  border-radius: 50%;
  font-size: 2.0rem;
  font-weight: 700;
}
.support-box__title-text {
	font-size: 2.0rem;
	font-weight: 700;
}

.support-box__image {
	width: 100%;
}
.support-box__text {
	margin-top: 1.6rem;
	line-height: 1.75;
}

.human-resources {
	margin-top: 5.6rem;
	padding: 4.0rem 5.6rem 5.6rem;
	background-color: #F8F8F8;
}
h2.human-resources__title {
	margin: 0 0 3.2rem;
	padding: 0;
	color: var(--color-darkgreen2);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.42;
}
h2.human-resources__title::before {
	content: none;
}
p.human-resources__text {
	font-size: 1.8rem;
	margin-bottom: 1.8rem;
}
.human-resources__image {
	margin-bottom: 4.0rem;
}
.merit-box__group {
	margin-bottom: 4.0rem;
}
.merit-box__group:nth-last-of-type(1) {
	margin-bottom: 0;
}
.merit-box__title {
	margin-bottom: 3.2rem;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.42;
	text-align: center;
}
.merit-box__title-green {
	color: var(--color-darkgreen2);
	font-weight: 700;
}
.merit-box__item {
  display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
}
.merit-box__block {
	width: calc((100% - 3.2rem) / 2);
	background: var(--color-white);
	border: 1px solid #D7D7D7;
	border-radius: .4rem;
}
.merit-box__block.block__disadvantages {
	border-color: #949494;
}
.merit-box__block-title {
	margin: 0;
	padding: 1.6rem 2.4rem;
	background: var(--color-limegreen);
	border: 1px solid var(--color-limegreen);
	border-radius: .4rem .4rem 0 0;
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
}
.merit-box__block-title.block-title__disadvantages {
	background: #949494;
	border: 1px solid #949494;
	color: var(--color-white);
}
.merit-box__block-list {
	padding: 2.4rem 3.2rem;
}
.merit-box__block-list .list-disc {
	margin-left: 1.2rem;
	list-style-type: disc;
}
.merit-box__block-list .list-disc li {
	margin-bottom: 1.6rem;
	line-height: 1.75;
}
.merit-box__block-list .list-disc li:nth-last-of-type(1) {
	margin-bottom: 0;
}

.matching-flow__sp {
	display: none;
}
.matching-flow {
	margin-bottom: 4.0rem;
	padding: 4.2rem 6.4rem 6.4rem;
	background-color: #F0F0F0;
}
.matching-flow__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.matching-flow__title {
	margin-bottom: 3.2rem !important;
	font-size: 2.4rem !important;
	font-weight: 700;
  letter-spacing: 0.072em !important;
}
.matching-flow__top-row {
	display: flex;
	gap: 1.6rem;
	width: 100%;
	z-index: 99;
}
.matching-flow__card {
	flex: 1;
	min-height: 180px;
	padding: 1.6rem 2.4rem 2.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-limegreen);
	border-radius: .4rem;
	text-align: center;
}
.matching-flow__card-title {
	display: block;
	margin-bottom: 1.6rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
}
.matching-flow__card-text {
	display: inline-block;
	font-size: 1.6rem;
	line-height: 1.75;
	text-align: left;
}
.matching-flow__bridge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4.0rem;
	width: 100%;
	min-height: 120px;
	position: relative;
}
.matching-flow__bridge::before {
	content: '';
	width: 197px;
	height: 120px;
	background: url("/common/img/about/matching_flow_arrow.svg") center center no-repeat;
	position: absolute;
  top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}
.matching-flow__label {
	padding: .4rem 8.0rem;
  background: var(--color-white);
  border: 1px solid #A9D681;
	border-radius: .4rem;
	color: var(--color-darkgreen2);
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1.2;
	position: relative;
	z-index: 2;
}
.matching-flow__bank-card {
  max-width: 49.6rem;
	margin-bottom: 6.0rem;
	padding: 2.4rem 2.4rem 3.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-limegreen);
	border-radius: .4rem;
  text-align: center;
	position: relative;
	z-index: 99;
}
.matching-flow__bank-card::after {
	content: '';
	width: 2.4rem;
	height: 2.4rem;
	background: url("/common/img/icon_arrow_bottom_black.svg") no-repeat;
	position: absolute;
	bottom: -4.8rem;
	left: 50%;
	transform: translateX(-50%);
}
.matching-flow__bank-title {
	margin-bottom: .4rem;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.2;
}
.content p.matching-flow__bank-subtitle {
	margin-bottom: 1.6rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
}
.content p.matching-flow__bank-text {
	display: inline-block;
	margin-bottom: 0;
	font-size: 1.6rem;
	line-height: 1.75;
	text-align: left;
}
.matching-flow__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	position: relative;
}
.matching-flow__result {
	width: 100%;
	padding: 1.6rem;
  background: var(--color-limegreen);
  color: var(--color-text);
	border-radius: .4rem;
	font-size: 2.0rem;
  font-weight: 700;
	line-height: 1.5;
  text-align: center;
}


/* About Sidebar */
.sidebar .related-links {
	position: sticky;
	margin: 0;
	padding: 0;
}
.sidebar .related-links__heading {
	margin: 0 0 1.6rem;
	padding: .4rem .8rem .4rem 1.6rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
}
.sidebar .related-links__heading::before,
.main-content__support .sidebar .related-links__heading::before {
	content: '';
	width: 1.0rem;
	height: 3.2rem;
	background: linear-gradient(90deg,var(--color-limegreen) 0%, var(--color-limegreen) 80%, var(--color-green) 80%, var(--color-green) 100%);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.main-content__support .sidebar .related-links__heading::before {
	background: linear-gradient(90deg,var(--color-skyblue) 0%, var(--color-skyblue) 80%, var(--color-navyblue) 80%, var(--color-navyblue) 100%);
}
.sidebar .related-links__item {
	margin-bottom: 3.2rem;
	line-height: 1.5;
}
.sidebar .related-links__item:nth-last-of-type(1) {
	margin-bottom: 0;
}
.sidebar .related-links__item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 4.0rem;
}
.sidebar .related-links__title {
	flex: 1;
	font-size: 1.6rem;
	font-weight: 700;
}
.sidebar .related-links__image {
	width: 106px;
}
.sidebar .related-links__image img {
	width: 100%;
	height: auto;
}
.sidebar .related-links__text {
	width: 100%;
	margin: .8rem 0 1.2rem;
	font-size: 1.4rem;
	font-weight: 400;
}
.sidebar .related-links__item .related-links__title {
  transition: .3s;
}
@media (hover: hover) {
  .sidebar .related-links__item a:hover .related-links__title {
    color: var(--color-green);
  }
  .main-content__support .sidebar .related-links__item a:hover .related-links__title {
    color: var(--color-blue);
  }
  .sidebar .related-links__item:hover .related-links__text {
		text-decoration: underline;
  }
}






/* 事業承継・引継ぎ支援センター */
.content__supportcenter {
	max-width: 86.4rem;
	margin: 0 auto;
}
.p-supportcenter__image {
	margin-bottom: 3.2rem;
	text-align: center;
}


.c-tab {
	margin-top: 4rem;
}
.c-tab__list {
  display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	padding: 0;
  border-bottom: 2px solid var(--color-gray);
  overflow-x: auto;
  scrollbar-width: none; /* Firefox用 */
}
.c-tab__list::-webkit-scrollbar {
  display: none; /* Chrome/Safari用 */
}
.c-tab__item {
  flex: 1;
  min-width: 120px;
  padding: 1.6rem 1.0rem;
	background-color: #E9F0B0;
  border: none;
	border-radius: .8rem .8rem 0 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  transition: .3s;
}
.c-tab__item--active {
  background-color: var(--color-limegreen);
	font-weight: 700 !important;
}
/* キーボードフォーカス時のスタイル（アクセシビリティ）*/
.c-tab__item:focus-visible {
  outline-offset: -2px;
} 
.c-tab__panel {
  animation: fadeIn .3s;
}
.c-tab__panel[hidden] {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(0); }
  to { opacity: 1; transform: translateY(0); }
}

.accordion .c-tab__title {
  display: block;
	width: 100%;
	padding: 2.4rem 6.4rem 2.4rem 2.4rem;
	border-top: 1px solid #ddd;
  cursor: pointer;
	color: var(--color-text);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
	text-align: left;
	transition: .3s;
  position: relative;
}
.accordion:nth-of-type(1) .c-tab__title {
	border-top: 0;
}
@media (hover: hover) {
  .accordion .c-tab__title:hover {
    color: var(--color-green);
  }
}
.accordion .c-tab__title::before {
	content: '';
	width: 1.0rem;
	height: 4.2rem;
	background: linear-gradient(90deg,var(--color-limegreen) 0%, var(--color-limegreen) 80%, var(--color-green) 80%, var(--color-green) 100%);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.accordion .c-tab__title::after,
.accordion .c-tab__title.active::after {
  content: '＋';
	color: var(--color-green);
	font-size: 2.8rem;
  position: absolute;
  top: 50%;
	transform: translateY(-50%);
  right: 1.6rem;
}
.accordion .c-tab__title.active::after {
  content: '－';
}

.support-center {
  display: none;
	margin-top: 0;
}

.support-center__description {
  display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
	margin-bottom: 2.4rem;
}
.support-center__description.description-col1 {
  flex-direction: column;
}
.support-center__image {
	width: 28.2rem;
}
.support-center__text {
	width: calc(100% - 28.2rem - 1.6rem);
	font-size: 1.6rem;
	line-height: 1.75;
}
.description-col1 .support-center__text {
	width: 100%;
}
.support-center__info {
	margin-bottom: 2.4rem;
}
.support-center__info-group {
  display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin-bottom: .8rem;
}
.support-center__info-group dt,
.support-center__info-group dd {
	padding: 1.2rem 1.6rem;
	font-size: 1.6rem;
	line-height: 1.75;
}
.support-center__info-group dt {
	width: 25.2rem;
	background: #f0f0f0;
	font-weight: 500;
}
.support-center__info-group dd {
	width: calc(100% - 25.2rem - .4rem);
	background: #fafafa;
}
.area-coordinator__list {
	padding: .4rem 0;
	border-bottom: 1px dashed #ddd;
}
.area-coordinator__list:nth-of-type(1) {
	padding-top: 0;
}
.area-coordinator__list:nth-last-of-type(1) {
	padding-bottom: 0;
	border: 0;
}


/* 関連イベント */
.event-list {
  max-width: 87.2rem;
  margin: 0 auto 6.4rem;
}
.event-list__item {
	margin-bottom: 2.4rem;
}
.event-list__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: .3s;
}
.event-list__content {
  flex: 1;
}

.content h3.event-list__title {
	margin: 0;
	font-size: 1.6rem;
}
.content h3.event-list__title {
  display: flex;
  align-items: center;
	width: 100%;
	min-height: 4.2rem;
	padding: 0 4.0rem 0 2.0rem;
  background-color: #f2f2f2;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
	transition: .3s;
}
@media (hover: hover) {
  .event-list__title:hover {
    color: var(--color-green);
  }
}
.event-list__title::before {
	content: '';
	width: 1.0rem;
	height: 4.2rem;
	background: linear-gradient(90deg,var(--color-limegreen) 0%, var(--color-limegreen) 80%, var(--color-green) 80%, var(--color-green) 100%);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.event-list__icon-pdf::after,
.event-list__related-links::after,
.event-list__arrow::after {
	content: '';
	width: 2.0rem;
	height: 2.2rem;
	background: url("/common/img/icon_pdf.svg") no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1.6rem;
}
.event-list__related-links::after {
	width: 1.6rem;
	height: 1.6rem;
	background: url("/common/img/icon_window_green.svg") no-repeat;
}
.event-list__arrow::after {
  width: 1.2rem;
  height: 1.2rem;
	background: url("/common/img/icon_arrow_black.svg") no-repeat;
}

.event-list__body {
  display: flex;
	align-items: flex-start;
  justify-content: space-between;
}
.event-list__text-group {
  display: flex;
	flex-wrap: wrap;
  gap: .8rem 3.2rem;
	padding-top: 1.6rem;
}
.content .event-list__text-group p {
	margin: 0;
	line-height: 1.5;
}
.event-list__target {
	width: 100%;
}
.event-list__thumbnail {
  width: 12.8rem;
  height: auto;
  margin: 1.6rem 0 0 2.4rem;
}
.event-list__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.forum-list {
	padding-top: 4.0rem;
	border-top: 1px solid #ccc;
}
.forum-list ul {
  display: flex;
	flex-wrap: wrap;
	gap: 2.4rem 4.0rem;
}
.forum-list__item {
	width: calc((100% - 12.0rem) / 4);
}


/* お知らせ */
.news_filter_wrap{
  display: flex;
    flex-direction: column;
    padding: 0;
    border-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
    width: 17.6rem;
       flex-wrap: wrap;
    gap: .4rem;
}
.news_filter{
    margin-bottom: .4rem;
    min-width: auto;
    padding: 1.6rem;
    border: none;
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 500;
        cursor: pointer;
            text-align: center;
    white-space: nowrap;
    transition: .3s;
        background-color: #E9F0B0;
}
.news_filter--active{
    background-color: var(--color-limegreen);
    font-weight: 700 !important;

}

.main-content__support .news_filter{
    background-color: #E4F6FC;
}
.main-content__support .news_filter--active{
    background-color: var(--color-skyblue);
}

.c-tab.c-tab__news {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
	column-gap: 4.8rem;
	margin-top: 0;
}
.c-tab__news .c-tab__news-nav {
	width: 282px;
	order: 2;
}
.c-tab__news .c-tab__news-content {
	width: calc(100% - 33rem);
	order: 1;
}
.c-tab__news .c-tab__panel {
  padding: 0;
}
.news-item {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid #BABABA;
	line-height: 1.5;
}
.news-item:nth-last-of-type(1) {
  border: 0;
}
.news-item__date {
  min-width: 10.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.news-item__content {
  flex-grow: 1;
}
.news-item__title {
  margin-bottom: .8rem;
}
@media (hover: hover) {
  .news-item__link:hover {
    color: var(--color-green);
  }
}
.news-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.news-item__tag {
  display: inline-flex;
  align-items: center;
  height: 3.1rem;
  padding: 0 .6rem 0 1.8rem; 
  background-color: var(--color-white);
  border: 1px solid var(--color-limegreen);
  border-right: 0;
  border-radius: .4rem 0 0 .4rem;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
	position: relative;
}
.news-item__tag::before {
  content: '';
  position: absolute;
  left: .8rem;
  width: .6rem;
  height: .6rem;
  border: 1px solid var(--color-limegreen);
  border-radius: 50%;
}
.news-item__tag::after {
	content: '';
  position: absolute;
  top: calc(50% - 0rem);
  right: -1.1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-top: 1px solid var(--color-limegreen);
  border-right: 1px solid var(--color-limegreen);
  transform: rotate(45deg) skew(10deg, 10deg) scale(0.85);
  transform-origin: top right;
  z-index: 1;
}
.c-tab__news .c-tab__list {
  display: flex;
	flex-direction: column;
	padding: 0;
  border-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
	
	width: 17.6rem;
}

.c-tab__news .c-tab__item {
	margin-bottom: .4rem;
  min-width: auto;
  padding: 1.6rem;
  border: none;
	border-radius: .8rem;
  font-size: 1.8rem;
  font-weight: 500;
}


/* サイトマップ */
.sitemap {
  max-width: 59.2rem;
  margin: 0 auto;
}
.sitemap h2 {
	margin-bottom: 1.6rem;
}
.sitemap__inner {
  display: flex;
  flex-direction: column;
  gap: 4.0rem;
}
.sitemap__group--green {
  --accent-color: var(--color-limegreen);
}
.sitemap__group--blue {
  --accent-color: #00a0e9;
}
p.sitemap__title {
	margin-bottom: 0;
	padding: 2.4rem 0 1.6rem;
	font-size: 1.8rem;
  font-weight: 700;
	line-height: 1.45;
}
.sitemap__list {
	padding-bottom: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}
.sitemap__group--blue .sitemap__list {
	padding-bottom: 0;
  border-bottom: 0;
}
.item-continuou .sitemap__link {
	padding-bottom: 2.0rem;
}
.item-continuou .sitemap__item:nth-last-of-type(1) .sitemap__link {
	padding-bottom: .8rem;
}
.sitemap__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1.6rem;
  border-left: 3px solid var(--accent-color);
  color: var(--color-text);
	font-size: 1.8rem;
  font-weight: 700;
	line-height: 1.45;
  transition: .3s;
}
.sitemap__link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .sitemap__link:hover {
    color: var(--color-green);
  }
  .sitemap__link:hover::after {
    border-color: var(--color-green);
  }
}


/* 404 */
.error {
  max-width: 113.6rem;
  margin: 0 auto -6.4rem;
  padding-top: 2.4rem;
}
.error__inner {
  min-height: 42.0rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url("/common/img/errors/error_img.svg") left center no-repeat;
  background-size: 100% 100%;
}
.error__content {
  flex: 1;
  max-width: 54%;
  padding: 0 7.2rem 8.0rem 0;
}
.content p.error__text {
  margin-bottom: 6.4rem;
  line-height: 1.75;
}
.error__button {
  display: flex;
  justify-content: flex-start;
}






/*----------------------------------------------------------------------
   支援機関の方へ
----------------------------------------------------------------------*/
.bg__lightblue {
	background-color: #EBF9FC;
}

/* サイドバナー */
.main-content__support .side-banner__link {
	padding: 4.8rem 1.2rem 2.4rem;
}
.main-content__support .contact {
	margin-bottom: .8rem;
}
.main-content__support .contact .side-banner__link {
  border: .2rem solid #aaa;
}
.main-content__support .contact .side-banner__link::before,
.main-content__support .contact .side-banner__link::after {
	width: 2.9rem;
	height: 2.9rem;
	background: url("/common/img/support/icon_inquiry_side_on.svg") no-repeat;
	top: 1.7rem;
}
.main-content__support .contact .side-banner__link::after {
	background: url("/common/img/support/icon_inquiry_side.svg") no-repeat;
}
.main-content__support .contact .side-banner__link:hover {
  background-color: #aaa;
	color: var(--color-text);
}
.main-content__support .merumaga .side-banner__link {
  border: .2rem solid #49C2EB;
}
.main-content__support .merumaga .side-banner__link::before,
.main-content__support .merumaga .side-banner__link::after {
	width: 2.9rem;
	height: 2.9rem;
	background: url("/common/img/support/icon_mail_on.svg?260217") no-repeat;
	top: 1.7rem;
}
.main-content__support .merumaga .side-banner__link::after {
	background: url("/common/img/support/icon_mail.svg?260217") no-repeat;
}
.main-content__support .merumaga .side-banner__link:hover {
  background-color: #49C2EB;
	color: var(--color-text);
}

/* MV */
.mv-support {
	width: 100%;
	min-height: 41.6rem;
	background: url("/common/img/support/support_mv_bg.svg") no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.mv-support::after {
	content: '';
	width: 140.0rem;
	height: 36.4rem;
  background: url("/common/img/support/support_mv.svg") right center no-repeat;
  background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mv-support__inner {
	display: flex;
  max-width: 124.0rem;
  margin: 0 auto;
	padding: 4.8rem 2.0rem 0;
}
.mv-support__content {
  background-color: var(--color-white);
	margin-left: 3.2rem;
  padding: 3.2rem 4.0rem;
  border-radius: 1.5rem;
  max-width: 46.4rem;
  box-shadow: 0 .2rem .4rem rgba(0, 0, 0, .15);
	z-index: 2;
}
.mv-support__title {
	margin: 0 0 .8rem;
	font-size: 3.6rem;
	font-weight: 700;
  text-align: center;
}
.mv-support__text {
  margin-bottom: 1.6rem;
	font-weight: 500;
  line-height: 1.5;
}
.mv-support__action {
  text-align: center;
}
.mv-support__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 31.2rem;
  padding: 1.2rem 4.0rem;
  background-color: var(--color-white);
	border: 1px solid var(--color-blue);
  border-radius: 10em;
	color: var(--color-blue);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: .3s ease;
}
.mv-support__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  border-radius: 10em;
  transition: left .5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.mv-support__link::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_arrow_maru_blue.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 2.0rem;
	transform: rotate(90deg);
}
@media (hover: hover) {
  .mv-support__link:hover {
    color: var(--color-white);
  }
  .mv-support__link:hover::before {
    left: 0;
  }
  .mv-support__link:hover::after {
    background: url("/common/img/icon_arrow_maru_white_blue.svg") no-repeat;
  }
}


/* お知らせ */
.main-content__support .top-news {
  padding-top: 2.4rem;
}
.main-content__support .top-news__sub-title::after {
  background: linear-gradient(to right, #3BBEDA, #616FBD);
}
.main-content__support .top-news__category,
.main-content__support .top-news__category::before,
.main-content__support .top-news__category::after {
  border-color: var(--color-skyblue);
}
.main-content__support .top-news__footer::after,
.main-content__support .top-case-study__footer::after {
	background: url("/common/img/icon_arrow_maru_blue.svg") no-repeat;
}
@media (hover: hover) {
  .main-content__support .news-item__link:hover,
  .main-content__support .top-news__link:hover .top-news__text,
  .main-content__support .top-news__more-link:hover,
  .main-content__support .top-case-study__link:hover {
    color: var(--color-blue);
  }
}


/* 支援機関支援 */
.support-content {
  max-width: 124.0rem;
  margin: 0 auto;
  padding: 2.0rem 2.0rem 7.2rem;
}
.support-content__header {
	min-height: 21.1rem;
	margin-left: -2.0rem;
	margin-right: -2.0rem;
	margin-bottom: 2.4rem;
	background: url("/common/img/support/support_content_bg.svg") center top no-repeat;
	background-size: 100% 100%;
  text-align: center;
}
.support-content__title {
  display: flex;
  flex-direction: column;
	padding-top: 6.8rem;
  font-weight: 700;
	line-height: 1.2;
}
.support-content__title-sub {
  margin-bottom: .8rem;
  font-size: 3.2rem;
}
.support-content__title-main {
	color: var(--color-blue2);
	font-size: 4.0rem;
}
.support-content__lead {
	max-width: 87.0rem;
	margin: 0 auto 4.8rem;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.75;
}
.support-content__container {
	display: flex;
	gap: 3.2rem;
}
.support-content__botton {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.support-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 4.0rem;
	background: var(--color-white);
	border-radius: 1.6rem;
	overflow: hidden;
}
.support-card__title {
	margin-bottom: 2.4rem;
	color: var(--color-blue);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}
.support-card__right-image {
	margin-top: 1.6rem;
}
.support-card__right-image img {
	width: 100%;
}
.support-item {
	margin-bottom: 4.8rem;
}
.support-item:last-child {
	margin-bottom: 0;
}
.support-item a {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem 3.2rem;
}
.support-item__text-content {
	flex: 1;
}
.support-item__title {
	display: inline-block;
	margin-bottom: 1.6rem;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5;
	transition: .3s;
}
.support-item__description {
	font-size: 1.6rem;
	text-align: justify;
}
.support-item__image {
	width: 14.0rem;
}
.support-item__image img,
.support-card__right-image {
	box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
	transition: .3s;
}
.support-card__right-image {
	max-width: 42.4rem;
	margin: 3.2rem auto 0;
}
@media (hover: hover) {
.support-item a:hover .support-item__title {
	color: var(--color-blue);
}
.support-item a:hover .support-item__image img,
.support-card__right-image a:hover {
	box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.3);
}
}

.seminar-list {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 2.4rem;
	margin-top: 2.4rem;
	padding: 0 4.0rem;
}
.seminar-list__item {
	width: calc((100% - 2.4rem) / 2);
	padding-left: 1.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	position: relative;
}
.seminar-list__item::before {
	content: '';
	width: .8rem;
	height: .8rem;
	background: url("/common/img/support/icon_maru_navy.svg") no-repeat;
	position: absolute;
	top: 1.2rem;
	left: 0;
}

.support-content__footer {
	margin-top: 7.2rem;
	text-align: center;
}
.support-content__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 48.0rem;
  padding: 3.2rem 4.0rem;
  background-color: var(--color-skyblue);
	box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
  border-radius: 50em;
	color: var(--color-text);
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0;
  overflow: hidden;
  z-index: 1;
  transition: .3s;
}
.support-content__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  border-radius: 10em;
  transition: left .5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) {
  .support-content__button:hover::before {
    left: 0;
  }
  .support-content__button:hover {
      color: var(--color-white);
  }
}
.support-content__button::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_window_white.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 4.0rem;
}

/* 事例 */
.main-content__support .top-case-study__sub-title::after {
  background: linear-gradient(to right, #3BBEDA, #616FBD);
}
.main-content__support .top-case-study .c-card__label {
  background-color: var(--color-skyblue);
}
@media (hover: hover) {
  .main-content__support .c-card:hover .c-card__title {
    color: var(--color-blue);
  }
}

/* 中小機構 地域本部・事業所 */
.support-regional-hq {
  max-width: 124.0rem;
  margin: 0 auto;
  padding: 12.8rem 2.0rem 19.2rem;
}
.support-regional-hq__inner {
  padding: 6.4rem;
	border: 1px solid #ccc;
	border-radius: 1.5rem;
	position: relative;
}
.support-regional-hq__box {
  display: flex;
}
.support-regional-hq__box-header {
  display: flex;
  flex-direction: column;
	width: 33.6rem;
}
.support-regional-hq__box-title {
	margin-bottom: 1.6rem;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.3;
}
.support-regional-hq__box-image {
	position: absolute;
	top: -12.8rem;
	right: 8.0rem;
}
.support-regional-hq__box-image img {
	filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, .07));
}

/* お問い合わせ/メルマガ */
.support-contact {
  max-width: 124.0rem;
  margin: 0 auto;
  padding: 6.4rem 2.0rem;
}
.support-contact__container {
  display: flex;
	flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 3.2rem;
}
.support-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
	width: calc(50% - 1.6rem);
	padding: 4.0rem 6.4rem 4.8rem;
  background-color: var(--color-white);
  border-radius: 1.6rem;
  text-align: center;
}
.support-contact__icon-wrapper {
  display: flex;
  align-items: center;  
  height: 56px;
	margin-bottom: 2.0rem;
}
.support-contact__icon {
  display: block;
  height: auto;
}
.support-contact__title {
	margin-bottom: 1.6rem;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
}
.support-contact__text {
	margin-bottom: 2.4rem;
  line-height: 1.75;
  text-align: left;
}
.support-contact__button-wrapper {
	width: 100%;
  margin-top: auto;
}
.support-contact__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	min-width: 30.0rem;
  padding: 1.6rem 4.0rem;
  background-color: var(--color-skyblue);
	box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
  border-radius: 10em;
	color: var(--color-text);
	font-weight: 500;
	letter-spacing: 0;
  overflow: hidden;
  z-index: 1;
  transition: .3s;
}
.support-contact__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  border-radius: 10em;
  transition: left .5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) {
  .support-contact__button:hover::before {
    left: 0;
  }
  .support-contact__button:hover {
		color: var(--color-white);
  }
}
.support-contact__button::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
	background: url("/common/img/icon_window_white.svg") no-repeat;
	background-size: contain;
  position: absolute;
  right: 2.0rem;
}

/* 下層お知らせ */
.main-content__support .c-tab__news .c-tab__item {
	background-color: #E4F6FC;
}
.main-content__support .c-tab__news .c-tab__item--active {
	background-color: var(--color-skyblue);
}
.main-content__support .news-item__tag,
.main-content__support .news-item__tag::before,
.main-content__support .news-item__tag::after {
  border-color: var(--color-skyblue);
}




/* Accessibility */
.sr-only {
  position: absolute; 
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.map_link{
  display: block;
  transition: .3s;
}

.map_link:hover{
  opacity: 0.5;
}


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

.top_information_countermeasures{
  width: 790px;
  max-width: 100%;
  margin: 0 auto;
  border: 2px var(--color-limegreen) solid;
  padding: 40px 80px;
}
.top_information_countermeasures_title{
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
  margin: 0 0 40px;
}
.top_information_countermeasures_sub{
 font-size: 2rem; 
 font-weight: 500;
 margin: 0 0 17px;
     transition: .3s;
}
.top_information_countermeasures_img{
box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
    transition: .3s;
}
.top_information_countermeasures_inner{
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}
.top_information_countermeasures_inner>div:nth-child(1){
  flex: 1;
}
.top_information_countermeasures_inner>div:nth-child(2){
  width: 23.7%;
  max-width: 148px;
}
.top_information_countermeasures a{
  display: block;
}
.top_information_countermeasures a:hover .top_information_countermeasures_img{
          box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.3);
}
.top_information_countermeasures a:hover .top_information_countermeasures_sub {
          color: var(--color-green);
}
/* ----------------------------- */
/* ----------------------------------------------- */
.main-content__support .no_support{
    display: none!important;
}
main:not(.main-content__support) .on_support{
    display: none!important;
}
/* ----------------------------------------------- */
.body__support .no_support{
    display: none!important;
}
body:not(.body__support) .on_support{
    display: none!important;
}
/* ----------------------------------------------- */





/* ----------------------------------------------- */
.nav_center_modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.nav_center_modal_backdrop{
      position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
}
.nav_center_modal_inner{
  /* overflow: auto; */
  position: absolute;
  /* padding: 32px 64px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* height: calc(100dvh - 100px); */
  /* max-height: calc(100dvh - 190px); */
  width: 1200px;
  max-width: calc(100% - 40px);
  background-color: #fff;
  border-radius: 10px;
}
.nav_center_modal_scroll{
  overflow: auto;
  max-height: calc(100dvh - 150px);
  padding: 32px 64px;
}
.nav_center_moda-close_btn{
     position: absolute;
    top: -66px;
    right: 0;
    z-index: 1;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    cursor: pointer;

}
.nav_center_modal_title{
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #1257A5;
  margin: 0 0 15px;
          line-height: normal;
}
.nav_center_modal_subtitle{
  text-align: center;
}
.nav_center_modal_list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 0;
}
.nav_center_modal_list:not(:last-child){
  border-bottom: 1px #C7C7C7 solid;
}
.nav_center_modal_list_head{
  width: 150px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.nav_center_modal_list .nav_center_modal_list_head a{
  font-size: 2rem;
  font-weight: bold;
}
.nav_center_modal_list_region{
  flex: 1;
}
.nav_center_modal_list_tel{
  width: 160px;
}
/* ----------------------------------------------- */
@media screen and (max-width: 834px) {
.nav_center_modal_list{
  display: block;
  
}
.nav_center_modal_scroll{
  padding: 32px 16px 16px;
}
.nav_center_moda-close_btn{
    top: -50px;
    right: -2px;
    width: 40px;
    height: 40px;
    font-size: 38px;
}
.nav_center_modal_title{
  font-size: 2.4rem;
      margin: 0 0 8px;
}
.nav_center_modal_subtitle {
  margin: 0 0 8px;
}
.nav_center_modal_list{
      padding: 16px 0;
}
.nav_center_modal_list_region {
  margin: 8px 0;
}
}
/* ----------------------------------------------- */