/* ==============================================
CSS Variables
============================================== */
:root {
  --color-primary: #036eb8;
  --color-primary-dark: #004999;
  --color-primary-light: #0088FF;
  --color-accent: #FF6600;
  --color-accent-green: #009244;
  --color-dark: #1A1A2E;
  --color-text: #1a1a1a;
  --color-text-white: #fff;
  --color-text-light: #0171bc;
  --color-bg: #FFFFFF;
  --color-bg-light: #F0F6FF;
  --color-bg-dark: #003366;
  --color-border: #DDDDDD;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --max-width: 104rem;
  --transition: 0.3s ease;
  --content-width: 92rem;
  --side-padding: 2rem;
  --content-width-news: 67rem;
  --color-tag-info:     #2779b5; /* お知らせ：青 */
  --color-tag-company:  #009245; /* 企業誘致：緑 */
  --color-tag-support:  #00a99d; /* 支援制度：黄緑 */
  --voice-width: 97rem;
  --voice-detail-width: 97.5rem;
  --companies-width: 92rem;
  --sdt-width: 92rem;
  --sdt-pad: 2rem;
  --rsn-width: 79rem;
  --rsn-pad: 2rem;
  --spd-width: 92rem;
  --spd-pad: 2rem;
  --tok-width: 85rem;
  --tok-pad: 2rem;
}


html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.sp-display {
  display: none;
}

.pc-display {
  display: block;
}

/* ==============================================
HEADER
============================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header__inner {
  /* max-width: var(--max-width); */
  max-width: 116rem;
  margin: 0 auto;
  padding: 3rem 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-text {
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 1.0rem + 1.33vw, 3.2rem);
  font-weight: bold;
  color: var(--color-text-white);
  white-space: nowrap;
}

.header__logo-text--blue {
  color: #2573b0;
}

.header__nav {
  flex: 1;
}

.header__cta {
  display: inline-block;
  background: var(--color-bg);
  color: #231816;
  padding: 0.8rem 3rem;
  font-size: clamp(1.55rem, 0.9rem + 0.3vw, 1.8rem);
  font-weight: 500;
  text-align: center;
  border-radius: 2.5rem;
  line-height: 1.4;
  transition: background var(--transition);
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}

.header__cta:hover {
  background: var(--color-primary);
  opacity: 1;
  color: #fff;
}

.header__cta--blue {
  color: #fff;
  background: linear-gradient(to right, #184f92, #2779b5);
}

.header__gnav-list {
max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.6rem;
}

.header__gnav-list li a {
  display: block;
  color: #fff;
  font-size: clamp(1.15rem, 0.68rem + 0.18vw, 1.3rem);
  padding: 0.6rem;
  font-weight: 500;
  font-family: “Noto Sans JP”, sans-serif;
}

.header__gnav-list li a:hover {
  font-weight: 800;
  border-bottom: 2px solid #fff;
}
.header__gnav-list--bl li a {
  color: #231816;
}

.header__gnav-list--bl li a:hover {
  border-bottom: 2px solid #000;
}


/* ==============================================
HERO
============================================== */
.hero {
  position: relative;
  min-height: 71rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-pagination {
  top: 12rem !important;
  bottom: auto !important;
  left: auto !important;
  right: 13% !important;

  transform: translateY(-50%);
  display: flex;
  gap: 0.2rem;
  width: auto !important;
  z-index: 50 !important;
}

.hero-swiper .swiper-pagination-bullet {
  margin: 0 !important;
  background: transparent;
  border: 1px solid #fff;
  /* opacity: 0.6; */
  width: 1rem;
  height: 1rem;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  border: 1px solid #fff;
  margin: 0;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 2rem;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero__title {
  font-size: clamp(3.2rem, 0.92rem + 4.61vw, 7.0rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3rem;
  text-shadow: 0 0.2rem 2rem rgba(0,0,0,0.5);
  letter-spacing: normal;
  font-style: italic;
}

.hero__sub {
  font-size: clamp(2.1rem, 1.0rem + 1.33vw, 3.2rem);
  color: #fff;
  line-height: 1.8;
  text-shadow: 0 0.1rem 0.8rem rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
  font-weight: bold;
}

/* ==============================================
FEATURES NAV
============================================== */
.feat {
  background: #fff;
  padding: 3rem 0;
}

.feat__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.feat__list {
  display: flex;
  justify-content: center;
  gap: 0 5.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.feat__list--sub {
  margin-bottom: 0;
}

.feat__item {
  position: relative;
  flex: 0 0 auto;
}

.feat__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.6rem 1rem;
  background: #3fa9f5;
  color: #fff;
  min-width: 20.8rem;
  min-height: 20.8rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  font-weight: bold;
  font-size: clamp(1.9rem, 1.58rem + 0.85vw, 2.6rem);
  line-height: 1.4;
}

.feat__link:hover {
  background: var(--color-primary-dark);
}

.feat__icon {
  width: auto;
  height: 7rem;
}

.feat__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feat__item::before {
  position: absolute;
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  right: 1.4rem;
  bottom: 0.8rem;
  background: var(--color-bg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: block;
}

/* ==============================================
NEWS
============================================== */
.news {
  padding: 2.4rem 0 2.6rem;
  background: #fff;
}
.news .div_tag,
.news__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  float: none !important;
}

.news__inner--list {
  display: block;
}

.news__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__title {
  font-size: clamp(3.0rem, 1.19rem + 2.91vw, 5.4rem);
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.news__title-sub {
  display: block;
  font-size: clamp(1.7rem, 0.92rem + 0.6vw, 2.2rem);
  color: var(--color-text-light);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.news__more {
  position: relative;
  display: inline-block;
  max-width: 16rem;
  background: #046eb8;
  color: #fff;
  padding: 1rem 4.5rem 1rem 3rem;
  font-size: clamp(1.25rem, 1.18rem + 0.18vw, 1.4rem);
  border-radius: 1.6rem;
  font-weight: bold;
  transition: background var(--transition);
}

.news__more::before {
  position: absolute;
  content: "";
  background: var(--color-bg);
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  top: 1.3rem;
  right: 2.2rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  vertical-align: middle;
}

.news__more:hover {
  background: var(--color-primary-dark);
  opacity: 1;
}
.news .title-list .tab{
  border: none !important;
}
.news__list,
.news .title-list .tab u{
  max-width: 67rem;
  width: 100%;
  margin: 0 auto;
}
.news .title-list .tab ul li{
    font-size: clamp(1.55rem, 1.44rem + 0.3vw, 1.8rem);
    color: var(--color-text);
    margin-bottom: 20px;
    flex: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    transition: color 0.3s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news__link-wrapper {
  display: flex;
  align-items: center;
  padding: 0.9rem 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
  flex-wrap: wrap;
}

.news__link-wrapper:hover {
  background-color: rgba(63, 169, 245, 0.03);
}

.news__item:first-child .news__link-wrapper {
  padding-top: 0;
}

.news__item:last-child .news__link-wrapper {
  padding-bottom: 0;
}

.news__date {
  font-size: clamp(1.55rem, 1.44rem + 0.3vw, 1.8rem);
  color: #000;
  min-width: 12.2rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.news__tag {
  max-width: 20.4rem;
  width: 100%;
  height: 3.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3.3rem;
  font-size: clamp(1.55rem, 1.44rem + 0.3vw, 1.8rem);
  font-weight: bold;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}

.news__tag {
  color: #fff;
}
.news__inner .title-list .tab{
  border: none !important;
}

.news__text,
.news__inner .title-list .tab ul li {
  font-size: clamp(1.55rem, 1.44rem + 0.3vw, 1.8rem) !important;
  color: var(--color-text) !important;
  flex: 1 !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400 !important;
  transition: color 0.3s !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  margin-bottom: 20px !important;
}

.news__link-wrapper:hover .news__text {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ==============================================
5 REASONS
============================================== */
.reasons {
  background: var(--color-primary);
  padding: 2.5rem 0 3rem 0;
  overflow: hidden;
}

.reasons__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.reasons__badge {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.reasons__title {
  color: #fff;
  font-size: clamp(3.0rem, 2.8vw + 1.8rem, 4.2rem);
  line-height: 1.2;
  font-weight: bold;
}

.reasons__title strong {
  font-size: clamp(5.0rem, 10vw + 1.2rem, 13.2rem);
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: bold;
  vertical-align: -webkit-baseline-middle;
  transform: rotate(-5deg);
}

.reasons__title.reasonPage strong {
  line-height: 1.5;
  vertical-align: middle;
  transform: rotate(0);
}

.reasons__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: -4rem;
  background: #fff;
  color: var(--color-primary);
  width: 16rem;
  height: 4.2rem;
  border-radius: 2.1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 1;
}

.reasons__btn-arrow {
  width: 0; height: 0;
  border-left: 0.6rem solid var(--color-primary);
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  margin-left: 0.8rem;
}

.reasons__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  column-gap: 4%;
  row-gap: 2.5rem;
  width: 100%;
}

.reasons__card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  background: var(--color-bg);
  transition: transform var(--transition);
}

.reasons__card--00 {
  background: none;
}

.reasons__introImg {
  margin-bottom: 2rem;
}

.reasons__introImg.reasonPage {
  margin-bottom: -3rem;
}

.reasons__card-title {
  padding: 2.2rem 0;
  font-size: clamp(2.0rem, 1.54rem + 1.17vw, 2rem);
  color: #000000;
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
}

.reasons__triangle {
  width: 0;
  height: 0;
  border-left: 1.2rem solid var(--color-primary);
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.reasons__card__img {
  flex: 1;
  position: relative;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 318 / 180;
  width: 100%;
}

.reasons__card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reasons__card-num {
  position: absolute;
  right: 1.5rem;
  bottom: 0.5rem;
  font-size: clamp(6rem, 8vw + 1rem, 8.0rem);
  font-weight: bold;
  color: #fff;
  line-height: 0.8;
  letter-spacing: 0.1em;
}

/* ==============================================
BATTERY VALLEY
============================================== */
.battery {
  position: relative;
  background: #0a1628;
  padding: 7.8rem 0 9.4rem;
  text-align: center;
  overflow: hidden;
}

.battery__bg-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(6.0rem, 3.27rem + 8.53vw, 12.6rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

.battery__bg-text {
  top: 0;
}

.battery__bg-text--bottom {
  top: auto;
  bottom: 0;
}

.battery__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.battery__title {
  font-size: clamp(2rem, 3vw, 4.2rem);
  color: #fff;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  letter-spacing: 0.04em;
}

.battery__title strong {
  font-weight: 900;
}

.battery__btn {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.8rem 5.4rem 1rem 3.6rem;
  max-height: 3.5rem;
  font-size: clamp(1.2rem, 1.13rem + 0.23vw, 1.4rem);
  font-weight: bold;
  border-radius: 1.4rem;
  margin-bottom: 3rem;
  transition: background var(--transition);
}

.battery__btn:hover {
  background: var(--color-primary-light);
}

.battery__btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  top: 1.2rem;
  right: 3.4rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #000;
}

.battery__desc {
  color: #fff;
  font-size: clamp(1.2rem, 1.2rem + 0.47vw, 2.0rem);
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 2.3;
}

/* ==============================================
SUPPORT
============================================== */
.support {
  background: var(--color-bg-light);
  padding: 6.8rem 0 4rem;
}

.support__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.support__title {
  margin-bottom: 1.5rem;
  font-size: clamp(3.0rem, 1.19rem + 2.91vw, 5.4rem);
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

.support__title-sub {
  font-size: clamp(1.7rem, 0.92rem + 0.6vw, 2.2rem);
  font-weight: bold;
  color: var(--color-text-light);
  display: inline-block;
  letter-spacing: 0.1em;
}

.support__desc {
  margin-bottom: 3.8rem;
  font-size: clamp(1.55rem, 1.44rem + 0.3vw, 1.8rem);
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.support__btns {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.support__btn {
  display: inline-block;
  background: #046eb8;
  color: #fff;
  padding: 2.5rem 3.2rem 1.6rem;
  letter-spacing: 0.1em;
  font-size: clamp(2.0rem, 1.62rem + 0.94vw, 2.8rem);
  font-weight: bold;
  border-radius: 0;
  text-align: center;
  line-height: 1.5;
  transition: background var(--transition);
}

.support__btn small {
  position: relative;
  display: block;
  max-height: 3.5rem;
  padding: 0.8rem 5.4rem 1rem 2.6rem;
  font-size: clamp(1.2rem, 1.11rem + 0.24vw, 1.4rem);
  font-weight: bold;
  margin-top: 1.4rem;
  background: #fff;
  color: #036eb8;
  border-radius: 1.5rem;
}

.support__btn small::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  top: 1.2rem;
  right: 3.4rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #036eb8;
}

.support__btn:hover {
  background: var(--color-primary-dark);
  opacity: 1;
}

.support__img {
  width: clamp(24.0rem, 21.0rem + 6.25vw, 32.6rem);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.support__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================================
VOICE
============================================== */
.voice {
  background: #c5e9f7;
  padding: 3.5rem 0 6.6rem;
}

.voice--list {
  padding: 4.4rem 0 12rem;
  background:#edf8fd;
}

.voice__inner {
  max-width: var(--voice-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.voice__title {
  font-size: clamp(3.0rem, 1.19rem + 2.91vw, 5.4rem);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.voice__title-sub {
  font-size: clamp(1.7rem, 0.92rem + 0.6vw, 2.2rem);
  font-weight: bold;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

.voice__more {
  position: relative;
  display: block;
  max-width: 16rem;
  max-height: 3.5rem;
  padding: 0.8rem 5.4rem 1rem 2.8rem;
  font-size: clamp(1.2rem, 1.11rem + 0.24vw, 1.4rem);
  font-weight: bold;
  background: #fff;
  border-radius: 1.5rem;
  letter-spacing: 1.2px;
  transition: .2s ease-in;
}

.voice__more::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  top: 1.2rem;
  right: 3.4rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #036eb8;
  transition: .2s ease-in;
}

.voice__more:hover {
  background: var(--color-primary-dark);
  opacity: 1;
  color: #fff;
}

.voice__more:hover::before {
  background: #fff;
}

.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.voice__card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.voice__card-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 225 / 188;
}

.voice__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__card-body {
  padding: 0.8rem 0 0;
}

.voice__card-quote {
  font-size: clamp(1.5rem, 1.37rem + 0.35vw, 1.8rem);
  font-weight: bold;
  color: #231816;
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.voice__card-company,
.voice__card-name {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #231815;
  font-size: clamp(1.4rem, 1.31rem + 0.24vw, 1.6rem);
}


/* ==============================================
SATELLITE & COWORKING
============================================== */
.office__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.office__item {
  position: relative;
  min-height: 40rem;
}

.office__itemLink {
  display: block;
  width: 100%;
  height: 100%;
}

.office__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.office__itemTxt {
  text-align: center;
}

.office__content {
  position: relative;
  padding-bottom: 6.4rem;
}

.office__bg--satellite {
  background-image: url(/man/file/img/1043585.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.office__bg--coworking{
  background-image: url(/man/file/img/1043586.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.office__title--sate {
  color: #29abe2;
}

.office__title--coworking {
  color: #036eb8;
}

.office__title {
  margin-top: -4rem;
  font-size: clamp(3rem, 5vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-stroke: 1.5rem #fff;
  text-stroke: 1.5rem #fff;
  paint-order: stroke;
  text-align: center;
}

.office__subtitle {
    font-size: clamp(2.0rem, 1.62rem + 0.94vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1;
}

.office__subtitle--sate {
  color: #29abe2;
}

.office__subtitle--coworking {
  color: #036eb8;
}

.office__btn {
  display: inline-block;
  min-height: 4.8rem;
  color: #fff;
  padding: 1.4rem 5.6rem 1.4rem 4.4rem;
  font-size: clamp(1.6rem, 0.5vw + 1.4rem, 1.9rem);
  font-weight: bold;
  border-radius: 5rem;
  transition: background var(--transition);
  align-self: anchor-center;
}

.office__btn:hover {
  background: var(--color-primary-dark);
  opacity: 1;
}

.office__btn--sate {
  background: #29abe2;
}

.office__btn--coworking {
  background: #036eb8;
}

/* ==============================================
CTA
============================================== */
.cta {
  background: linear-gradient(to right, #195194, #2779b5);
  padding: 3rem 0 3.5rem;
  margin-bottom: 6rem;
}

.cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cta__title {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
}

.cta__desc {
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 0.4vw + 1.45rem, 1.9rem);
  color: #fff;
  font-weight: bold;
}

.cta__btns {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  font-weight: bold;
  border-radius: 40px;
  text-align: center;
  line-height: 1.4;
  transition: all var(--transition);
}

.cta__btn {
  max-width: 45rem;
  max-height: 7.3rem;
  height: 100%;
  display: inline-block;
  padding: 1.4rem 5.5rem 1.5rem 5.5rem;
  font-size: clamp(1.8rem, 0.4vw + 1.65rem, 2.1rem);
  font-weight: 700;
  border-radius: 40px;
  text-align: center;
  line-height: 1.2;
  transition: all var(--transition);
  background: #fff;
  color: var(--color-primary);
}

.cta__btn:hover {
  color: #fff;
  background: var(--color-primary-dark);
}

/* ==============================================
  FOOTER
============================================== */
.footer {
  background: linear-gradient(
    to bottom,
    #cce0f4,
    #1e9cd7,
    #0075be,
    #005b97
  );
  padding: 3rem 0 0;
  margin: 0 auto !important;
}

.footer__inner {
  max-width: 122rem;
  margin: 0 auto;
  padding: 0 2rem 6.6rem;
}

.footer__logo {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 2vw + 1.65rem, 3.2rem);
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.footer__nav-list li a {
  color: #fff;
  font-size: clamp(1.5rem, 0.3vw + 1.4rem, 1.6rem);
  font-weight: 400;
  transition: color var(--transition);
}

.footer__nav-list li:last-child a {
  border-right: none;
}

.footer__nav-list li a:hover {
  color: #000;
  transition: .2s ease-in;
}

.footer__bottom {
  background: var(--color-primary-dark);
  padding: 12px 20px;
  text-align: right;
}

.footer__pagetop {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-family: var(--font-base);
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  line-height: 1.4;
  transition: background var(--transition);
}

.footer__pagetop:hover {
  background: #cc5500;
}


/* =====================================================
ページヒーロー
===================================∂================== */
.page-hero {
  padding-top: 12.5rem;
  text-align: center;
}

.page-heroBg {
  position: relative;
  min-height: 27rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-heroBg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(/man/file/img/1043588.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(2.4rem, 2vw + 1.65rem, 3.2rem);
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}


/* =====================================================
お問い合わせセクション
===================================================== */
.contact__inner,
.operator__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}


.contact {
    padding-block: 6rem;
    width: 100% !important;
    border: none !important;
    margin: 0 auto 30px !important;
    font-family: "Noto Sans JP", sans-serif !important;
}

.contact__inner,
.contact > div{
    font-size: 100%;
    max-width: 66rem;
    width: 100%;
    margin: 0 auto;
}
.pamphlet__inner,
.guidebook__inner {
  max-width: 95rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact__lead {
  text-align: center;
  margin-bottom: 4.5rem;
  font-size: clamp(1.4rem, 0.2vw + 1.35rem, 1.6rem);
  line-height: 2;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form {
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form__row,
.contact .input.text{
  display: flex;
  align-items: center;
  min-height: 6rem;
}

.contact-form__row:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.contact-form__row--align-top {
  align-items: flex-start;
  padding-block: 1.6rem;
}
.qinput {
  width: 100% !important;
}
.contact-form__label,
.contact > div .qmain{
  display: block;
  width: 20.6rem !important;
  flex-shrink: 0 !important;
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  font-weight: 400;
  padding-right: 1.6rem;
  color: #1a1a1a;
  line-height: 1.67;
}

.contact-form__label--required::before {
  content: "※";
  color: #f3160d;
  margin-right: 0.5rem;
}

.contact-form__field {
  flex: 1;
}

.contact-form__input,
.contact > div .qinput > input[type='text']{
  width: 100% !important;
  padding: 0.8rem 1.2rem;
  background-color: #f0f0f0;
  border: none;
  font-size: 1.4rem;
  border: none;
}

.contact-form__textarea {
  width: 100%;
  height: 31.4rem;
  padding: 1rem 1.2rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  font-family: inherit;
  resize: vertical;
  outline: none;
}

.contact-form__textarea:focus {
  background-color: #dce8f5;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.contact-form__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form__check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  font-weight: 400;
}

.contact-form__check-input {
  width: 1.6rem;
  height: 1.6rem;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-form__submit-wrap {
  margin-top: 3.2rem;
  text-align: center;
}

.contact-form__privacy {
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.contact-form__privacy-link {
  color: var(--color-link);
  text-decoration: underline;
}

.contact-form__privacy-link:hover {
  text-decoration: none;
}
.contact .submit{
    margin-top: 3.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guidance{
  color: #ff0000;
}

.contact-form__btn,
.contact .submit input[type="submit"]{
  display: inline-block;
  padding: 1.2rem 4rem;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s;
  box-sizing: border-box;
  border: 1px solid var(--color-bg);
}

.contact-form__btn:hover {
  color: var(--color-primary);
  background-color: var(--color-bg);
  border: 1px solid var(--color-primary);
}


/* =====================================================
電子パンフレット
===================================================== */
.pamphlet {
  padding-block: 6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.pamphlet__title {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  font-weight: 700;
  color: #1f8be2;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 4.4rem;
  letter-spacing: 0.1em;
}

.pamphlet__desc {
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  line-height: 1.67;
  margin-bottom: 4rem;
  font-weight: 400;
}

.pamphlet__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.pamphlet__link {
  color: #1a1a1a;
  text-decoration: underline;
  font-size: clamp(1.8rem, 0.5vw + 1.6rem, 2.2rem);
  font-weight: 400;
  line-height: 1.36;
}

.pamphlet__link:hover {
  text-decoration: none;
}


/* =====================================================
企業立地優遇制度の手引き
===================================================== */
.guidebook {
  padding-block: 2.5rem 6.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.guidebook__title {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  font-weight: 700;
  color: #1f8be2;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2.8rem;
  letter-spacing: 0.1em;
}

.guidebook__desc {
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  line-height: 1.67;
  margin-bottom: 3.4rem;
  font-weight: 400;
}

.guidebook__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.guidebook__link {
  color: #1a1a1a;
  text-decoration: underline;
  font-size: clamp(1.8rem, 0.5vw + 1.6rem, 2.2rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.1em;
}

.guidebook__link:hover {
  text-decoration: none;
}


/* =====================================================
運営全体
===================================================== */
.operator {
  font-family: "Noto Sans JP", sans-serif;
}

.operator__inner {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-block: 2.5rem 2.2rem;
  border: 7px solid #edf8fd;
  margin-block: 6.5rem 11rem;
}

.operator__title {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  font-weight: 700;
  color: #1f8be2;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.operator__name {
  font-size: clamp(1.7rem, 0.4vw + 1.55rem, 2.0rem);
  margin-bottom: 1.6rem;
  font-weight: bold;
}

.operator__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.operator__add,
.operator__mail {
  font-size: clamp(1.3rem, 0.3vw + 1.35rem, 1.8rem);
  line-height: 1.67;
  font-weight: 400;
}

.operator__tel-link {
  position: relative;
  font-size: clamp(3.0rem, 2.5vw + 2.1rem, 4.0rem);
  font-weight: bold;
  color: #1a1a1a;
}

.operator__tel-link::before {
  position: absolute;
  content: "";
  width: 4rem;
  height: 5.6rem;
  top: 1rem;
  left: -5.2rem;
  background-image: url(/man/file/img/1043589.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.operator__tel-link:hover {
  color: #1f8be2;
}

.news__tag--info {
  background-color: var(--color-tag-info);
}

.news__tag--company {
  background-color: var(--color-tag-company);
}

.news__tag--support {
  background-color: var(--color-tag-support);
}

.news__tag-placeholder {
  display: inline-block;
  width: 10rem;
  flex-shrink: 0;
}

.news--list {
  padding-block: 4rem 13rem;
}

/* =====================================================
絞り込みタブ
===================================================== */
.news__filter {
  margin-bottom: 6.6rem;
  border-bottom: 0.1rem solid #036eb8;
}

.news__tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 auto;
  padding: 0;
  max-width: 618px;
  width: 100%;
}

.news__tab-item {
  width: 100%;
}

.news__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 20.4rem;
  max-height: 3.4rem;
  width: 100%;
  padding: 1rem 2.8rem;
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.news__tab--active {
  opacity: 1;
  border-bottom-color: currentColor;
}

.news__tab--info {
  background-color: var(--color-tag-info);
}

.news__tab--company {
  background-color: var(--color-tag-company);
}

.news__tab--support {
  background-color: var(--color-tag-support);
}

/* =====================================================
ページネーション
===================================================== */
.pagination {
  margin-top: 11.5rem;
  display: flex;
  justify-content: center;
}

.voice-detailPage .pagination {
  margin-top: 7.3rem;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding-inline: 0.8rem;
  font-size: clamp(2.0rem, 0.5vw + 1.8rem, 2.4rem);
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.pagination__link:hover {
  color: #29abe2;
}

.pagination__item--current .pagination__link {
  background-color: #29abe2;
  color: var(--color-text-white);
  font-size: clamp(2.0rem, 0.5vw + 1.8rem, 2.4rem);
  font-weight: bold;
  cursor: default;
  font-family: "Noto Sans JP", sans-serif;
}

.pagination__item + .pagination__item:not(.pagination__item--next)::before {
  content: " ・ ";
  color: #000;
  font-size: clamp(2.0rem, 0.5vw + 1.8rem, 2.4rem);
}

.pagination__next {
  color: var(--color-text);
  font-size: 1.2rem;
}

.pagination__next:hover {
  color: var(--color-primary);
}

.cta--bgWhite {
  padding: 4rem 0 6.5rem;
  margin-bottom: 0;
  background: #fff;
}

.cta__title--blue,
.cta__desc--blue {
  color: #208be2;
}

.cta__btn--bgWhite {
  color: #fff;
  background: #208be2;
}

.cta__btn--tel {
  padding: 2.4rem 5.5rem 2.4rem 5.5rem;
}


/* =====================================================
記事ヘッド
===================================================== */
.article__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem 10rem;
}

.article__head {
  margin-bottom: 4rem;
}

.article__meta {
  display: flex;
  align-items: center;
}

.article__date {
  margin-right: 1rem;
  font-size: clamp(1.3rem, 0.1vw + 1.25rem, 1.4rem);
  white-space: nowrap;
}

.article__title {
  margin-bottom: 3.5rem;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.news-category {
  width: initial;
  height: initial;
  display: inline-block;
  padding: 0.2rem 1rem;
  margin: 0;
  font-size: clamp(1.1rem, 0.1vw + 1.05rem, 1.2rem);
}


/* =====================================================
記事本文（CMSリッチテキスト出力領域）
===================================================== */
.article__body {
  line-height: 1.9;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.article__body p {
  font-size: clamp(1.4rem, 0.25vw + 1.3rem, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.article__body h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-primary);
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-primary);
  line-height: 1.4;
}

.article__body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.4;
}

.article__body ul,
.article__body ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.article__body ul {
  list-style: disc;
}

.article__body ol {
  list-style: decimal;
}

.article__body li {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.article__body strong {
  font-weight: 700;
  color: var(--color-primary);
}

.article__body em {
  font-style: italic;
}

.article__body a {
  color: var(--color-primary);
  text-decoration: underline;
}

.article__body a:hover {
  text-decoration: none;
}


/* =====================================================
記事内の画像（figure）
===================================================== */
.article__figure {
  margin-block: 3.2rem;
}

.article__img {
  height: auto;
  display: block;
  margin: 0 auto;
}

.article__caption {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: var(--color-text-sub);
  line-height: 1.6;
  text-align: center;
}

.article__figure--float-right {
  float: right;
  width: 40%;
  margin-left: 3.2rem;
  margin-bottom: 2rem;
  margin-top: 0.4rem;
}

.article__figure--float-left {
  float: left;
  width: 40%;
  margin-right: 3.2rem;
  margin-bottom: 2rem;
  margin-top: 0.4rem;
}

.article__body::after {
  content: "";
  display: block;
  clear: both;
}

/* =====================================================
前後ナビ
===================================================== */
.article-nav {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 2px solid var(--color-border);
}

.article-nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.article-nav__item {
  flex: 1;
}

.article-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 2rem;
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, background-color 0.2s;
}

.article-nav__link:hover {
  border-color: var(--color-primary);
  background-color: #eef4fb;
}

.article-nav__label {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.article-nav__item--prev .article-nav__label::before {
  content: "◀ ";
}

.article-nav__item--next .article-nav__label::after {
  content: " ▶";
}

.article-nav__item--next .article-nav__link {
  align-items: flex-end;
  text-align: right;
}

.article-nav__text {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* =====================================================
一覧へ戻るリンク
===================================================== */
.article__back {
  margin-top: 3.2rem;
  text-align: center;
}

.article__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: var(--color-primary);
  text-decoration: underline;
}

.article__back-link::before {
  content: "◀";
  font-size: 1rem;
}

.article__back-link:hover {
  text-decoration: none;
}

/* =====================================================
立地企業の声詳細ページ
===================================================== */

.voice-detail__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-block: 23.2rem 4rem;
}

.voice-detail__hero {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  background-color: var(--color-bg-hero);
  margin-bottom: 1rem;
}

.voice-detail__hero-body {
  flex: 1;
}

.voice-detail__quote {
  font-size: clamp(2.0rem, 0.5vw + 1.8rem, 2.4rem);
  font-weight: bold;
  line-height: 1.58;
  color: var(--color-text);
  margin-bottom: 4rem;
  letter-spacing: 0.06em;
  color: #231815;
}

.voice-detail__person {
  padding-left: 0.4rem;
}

.voice-detail__company-name {
  font-size: clamp(1.4rem, 0.25vw + 1.3rem, 1.6rem);
  color: #231815;
  margin-bottom: 2.4rem;
  font-weight: bold;
}

.voice-detail__role {
  font-size: clamp(1.5rem, 0.4vw + 1.35rem, 1.8rem);
  color: #231815;
  margin-bottom: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.voice-detail__name {
  font-size: clamp(2.1rem, 0.6vw + 1.85rem, 2.6rem);
  font-weight: bold;
  color: #231815;
  letter-spacing: 0.06em;
}

.voice-detail__hero-img {
  flex-shrink: 0;
  width: 34em;
  height: auto;
}

.voice-detail__hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* =====================================================
インタビュー本文（Q&A）
===================================================== */
.voice-detail__interview {
  margin-bottom: 10rem;
}

.voice-detail__qa {
  margin-bottom: 4rem;
}

.voice-detail__qa:last-child {
  margin-bottom: 0;
}

.voice-detail__question {
  font-size: clamp(1.7rem, 0.4vw + 1.55rem, 2.0rem);
  font-weight: 500;
  color: #231815;
  margin-bottom: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.voice-detail__answer p {
  font-size: clamp(1.4rem, 0.25vw + 1.3rem, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #231815;
  margin-bottom: 1.2rem;
}

.voice-detail__answer p:last-child {
  margin-bottom: 0;
}

.voice-detail__answer ul,
.voice-detail__answer ol {
  margin: 1.2rem 0;
  padding-left: 2rem;
}

.voice-detail__answer li {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* =====================================================
会社概要 ＋ 建物写真
===================================================== */
.voice-detail__company {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.voice-detail__info {
  flex: 1;
}

.voice-detail__info-row {
  display: block;
  padding-block: 1.5rem;
  font-size: clamp(1.4rem, 0.25vw + 1.3rem, 1.6rem);
  line-height: 1;
}

.voice-detail__info-row:first-child {
  padding-top: 0;
}

.voice-detail__info-label {
  display: inline;
  color: #231815;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.voice-detail__info-value {
  display: inline;
  margin-left: 0;
  color: #231815;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.voice-detail__info-valueLong {
  line-height: 3;
}

.voice-detail__info-link {
  color: #231815;
  text-decoration: underline;
  word-break: break-all;
}

.voice-detail__info-link:hover {
  text-decoration: none;
}

.voice-detail__building-img {
  flex-shrink: 0;
  width: 31rem;
  height: auto;
}

.voice-detail__building-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* =====================================================
サテライトオフィス一覧
===================================================== */
.satellite {
  padding-block: 11.2rem 5.2rem;
}

.satellite__inner {
  max-width: var(--companies-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

/* =====================================================
絞り込みタブ
===================================================== */
.satellite__filter {
  margin-bottom: 3.2rem;
}

.satellite__tabs {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.satellite__tab-item {
  flex: 1;
}

.satellite__tab {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: inherit;
  color: #246eb8;
  background-color: var(--color-bg-tab);
  border: 2px solid #246eb8;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.satellite__tab:hover:not(.satellite__tab--active) {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.satellite__tab--active {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-bg-tab-act);
  border: 2px solid #246eb8;
}

/* =====================================================
カードグリッド
===================================================== */
.satellite__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.satellite__card-item--hidden {
  display: none;
}

.satellite__card-item {
  border: 1px solid var(--color-primary);
}

.satellite__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: background-color 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}

.satellite__card:hover {
  background-color: #f5f8fc;
}

.satellite__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14rem;
  padding: 2rem;
}

.satellite__card-logo img {
  max-width: 100%;
  max-height: 8rem;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.satellite__card-body {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.satellite__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-white);
  background: var(--color-primary);
  align-self: flex-start;
}

.satellite__card-name {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
}


/* =====================================================
絞り込みエリア
===================================================== */
.space-filter {
  background-color: var(--color-bg-filter);
  padding-block: 6rem 5rem;
}

.space-filter__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

.space-filter__notice {
  font-size: 1.3rem;
  color: var(--color-text);
  font-weight: bold;
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.space-filter__divider {
  border: none;
  border-top: 1px solid var(--color-primary);
  margin-block: 2rem;
}

.space-filter__group {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

.space-filter__label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  padding-top: 0.6rem;
  flex-shrink: 0;
  min-width: 14rem;
  font-family: "Noto Sans JP", sans-serif;
}

.space-filter__label-sub {
  font-size: 1.4rem;
  font-weight: bold;
}

.space-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.space-filter__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.6rem;
  font-size: 1.3rem;
  font-family: inherit;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 10rem;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}

.space-filter__chip:hover:not(.space-filter__chip--active) {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.space-filter__chip--active {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

.space-filter__action {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0.4rem;
}

.space-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--color-text-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.space-filter__btn:hover {
  color: var(--color-primary);
  background-color: transparent;
  border: 2px solid var(--color-primary);
}

.space-filter__btn-icon {
  font-size: 1.4rem;
}


/* =====================================================
カード一覧エリア
===================================================== */
.space-list {
  padding-block: 5rem;
}

.space-list__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 5.6rem;
}

.space-card-item--hidden {
  display: none;
}

.space-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid var(--color-primary);
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow 0.2s;
}

.space-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.space-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 430 / 240;
}

.space-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.space-card:hover .space-card__img {
  transform: scale(1.03);
}

.space-card__region-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-text-white);
  background-color: var(--color-primary);
  font-family: "Noto Sans JP", sans-serif;
}

.space-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  flex-grow: 1;
  border-top: 2px solid var(--color-primary);
}

.space-card__name {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}

.space-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.space-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  color: var(--color-text);
  border: 1px solid var(--color-primary);
  border-radius: 10rem;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}


/* =====================================================
コスト面
===================================================== */
.cost {
  padding-block: 3.4rem 5rem;
}

.cost__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cost__body {
  flex: 1;
}

.cost__title {
  font-size: clamp(2.0rem, 1.33rem + 1.33vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.55;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}

.cost__lead {
  font-size: 1.4rem;
  line-height: 2.125;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  color: #000000;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.cost__img {
  flex-shrink: 0;
  width: 33.4rem;
  align-self: center;
}

.cost__img img {
  width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
補助金制度セクション
===================================================== */
.cost__inner,
.subsidy__inner,
.property__inner {
  max-width: 104rem;
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

.subsidy__title,
.property__title {
  font-size: clamp(2.0rem, 1.33rem + 1.33vw, 3.2rem);
  font-weight: 700;
  color: #29abe2;
  padding-left: 1.6rem;
  border-left: 1rem solid #29abe2;
  line-height: 1.4;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy {
  padding-block: 6.6rem 6rem;
  background: #e0f2fc;
}

.subsidy__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.75;
  color: #000000;
  margin-bottom: 2.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy__acc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.subsidy__acc-trigger {
  position: relative;
  max-width: 44.8rem;
  width: 100%;
  max-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: #29abe2;
  color: var(--color-text-white);
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  font-family: "Noto Sans JP", sans-serif;
  border: 2px solid #29abe2;
}

.subsidy__acc-trigger:hover {
  background: var(--color-bg);
  color: #29abe2;
  border: 2px solid #29abe2;
}

.subsidy__acc-trigger::before {
  position: absolute;
  content: "";
  background: var(--color-bg);
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  top: 0.9rem;
  right: 2.5rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  vertical-align: middle;
}

.subsidy__acc-trigger:hover::before {
  background: #29abe2;
}

.subsidy__acc-label {
  flex: 1;
}

.subsidy__acc-item.is-open .subsidy__acc-icon::before {
  transform: translate(-50%, -60%) rotate(90deg);
}

.subsidy__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.subsidy__acc-item.is-open .subsidy__acc-panel {
  max-height: 100rem;
}

.subsidy__acc-content {
  padding: 2rem 1.6rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--color-text);
}

.subsidy__acc-content p {
  margin-bottom: 1.2rem;
}
.subsidy__acc-content p:last-child {
  margin-bottom: 0;
}
.subsidy__acc-content ul,
.subsidy__acc-content ol {
  padding-left: 2rem;
  margin-bottom: 1.2rem;
}
.subsidy__acc-content li {
  margin-bottom: 0.4rem;
}
.subsidy__acc-content a {
  color: var(--color-primary-text);
  text-decoration: underline;
}
.subsidy__acc-content a:hover {
  text-decoration: none;
}


/* =====================================================
物件情報セクション
===================================================== */
.property {
  padding-block: 9rem;
  padding-top: 0;
  background: #e0f2fc;
}

.property__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.75;
  color: #000000;
  margin-bottom: 2.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.property__grid {
  display: flex;
  gap: 3.2rem;
}

.property__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 22.5rem;
  min-height: 15.2rem;
  padding: 2rem 1.6rem;
  background: #29abe2;
  color: var(--color-text-white);
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s;
  box-shadow: 1.2px 1.8px 3px 0 rgba(159, 160, 160, 0.75);

}

.property__card:hover {
  color: #39abe2;
  background-color: var(--color-primary-dk);
  border: 1px solid #39abe2;
}

.property__card:hover .property__card-btn {
  background: #29abe2;
  color: var(--color-text-white);
}

.property__card:hover .property__card-btn::before {
  background: var(--color-bg);
}

.property__card-title {
  font-size: clamp(1.8rem, 1.2rem + 0.83vw, 2.8rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.property__card-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  min-width: 16rem;
  background: var(--color-bg);
  color: #29abe2;
  font-size: clamp(1.2rem, 1.07rem + 0.27vw, 1.4rem);
  font-weight: bold;
  border-radius: 10rem;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.property__card-btn::before {
  position: absolute;
  content: "";
  background: #29abe2;
  display: inline-block;
  width: 1.2rem;
  height: 1.4rem;
  top: 1.3rem;
  right: 2rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  vertical-align: middle;
}


/* =====================================================
物件情報【オフィス・工場をお考えの方】
===================================================== */
.bukken-hero__inner,
.bukken-list__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

/* .sat-type__inner {
  max-width: 104rem;
  margin-inline: auto;
  padding-inline: var(--side-padding);
} */

.bukken-hero {
  padding: 4rem 10rem 8rem;
}

.bukken-hero__title {
  font-size: clamp(2.0rem, 1.33rem + 1.33vw, 3.2rem);
  font-weight: 700;
  color: #1f8be2 ;
  line-height: 1.5;
  margin-bottom: 5rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-hero__lead {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-hero__filter {
  display: none;
  margin-top: 2.4rem;
}

.bukken-list {
  padding-bottom: 8rem;
}

.bukken-category {
  margin-bottom: 5.6rem;
}

.bukken-category:last-child {
  margin-bottom: 0;
}

.bukken-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 2px solid var(--color-border);
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  padding-bottom: 1rem;
  color: var(--color-primary);
  margin-bottom: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.sentence p,
.sentence li {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem) !important;
  line-height: 1.9 !important;
  color: var(--color-text) !important;
  font-weight: 500 !important;
  font-family: "Noto Sans JP", sans-serif !important;
}

.sentence a {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: #0000ee;
  text-decoration: underline;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.sentence h4 {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.8rem);
  line-height: 1.9;
  color: #00316c;
  margin-top: 2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-category__title {
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-category__toggle {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background-color: var(--color-accent);
  color: var(--color-text);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-category__toggle:hover {
  opacity: 0.8;
}

.bukken-area {
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--color-border-area);
}

.bukken-area:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bukken-area__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-primary);
  line-height: 1.4;
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.indust-area__title{
  margin-top: 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-primary);
  line-height: 1.4;
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-area__list {
  list-style: disc;
  padding-left: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bukken-area__link {
  font-size: 1.4rem;
  color: var(--color-link);
  /* text-decoration: underline; */
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
  font-family: "Noto Sans JP", sans-serif;
}

.bukken-area__link:hover {
  opacity: 0.7;
  text-decoration: none;
}


/* =====================================================
補助金制度
【市町村の支援情報】
===================================================== */
.shichoson-intro__inner,
.shichoson-map__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}

.shichoson-nav__inner {
  padding: 0;
}

.shichoson-map__inner {
  display: flex;
}


/* =====================================================
タイトル・リード・絞り込み（shichoson-intro）
===================================================== */
.shichoson-intro {
  padding-block: 4.8rem;
}

.shichoson-intro__title {
  font-size: clamp(2.0rem, 1.33rem + 1.33vw, 3.2rem);
  font-weight: 700;
  color: #1f8be2;
  line-height: 1.5;
  margin-bottom: 5rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.shichoson-intro__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.manu-intro__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.shichoson-intro__filter {
  display: none;
  margin-top: 2.4rem;
}

.shichoson-map {
  padding-block: 2rem 4rem;
}

.shichoson-map__body {
  display: flex;
  justify-content: center;
  max-width: 45rem;
  margin: 0;
  flex-shrink: 0;
}

.shichoson-nav {
  width: 50%;
  flex-shrink: 0;
}

.shichoson-map__img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.shichoson-nav {
  padding-bottom: 8rem;
}
.shichoson-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}


.shichoson-nav__item {
  border: 1px solid var(--color-border);
}

.shichoson-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.4rem);
  color: #000;
  text-align: center;
  text-underline-offset: 0.2em;
  transition: background-color 0.15s, color 0.15s;
  min-height: 3rem;
  height: 100%;
}

.shichoson-nav__link:hover {
  background-color: #EEF4FB;
  text-decoration: none;
}

.shichoson-tag {
  font-size: clamp(1.4rem, 1.4rem + 1.2vw, 1.4rem) !important;
  margin-bottom: 1rem;
}

.shichoson-nav__list {
  margin-bottom: 2.4rem;
}

.cms-public .parts {
  width: 100%;
}
.cms-public .block {
  width: 100%;
}

.fontsize_change .fontsize p.fontsize_title {
  margin: 0;
  display: inline-block;
}

button#smaller,
button#medium,
button#larger,
button#smaller-btn,
button#medium-btn,
button#larger-btn {
  font: 400 1em Arial;
}


/* table */
.cms-public .table{
	margin: 0;
}

.cms-public .table table,
.cms-public .html table {
	width: 100%;
	margin: 0 0 3rem;
	border: 1px solid #ccc;
	border-collapse: collapse;
}

.cms-public .table table tr th,
.cms-public .html table tr th {
  border: 1px solid #ccc;
  background-color: #cfe6f0;
}

.cms-public .table table tr th,
.cms-public .table table tr td,
.cms-public .html table tr th,
.cms-public .html table tr td {
  padding: 1rem 1.5rem;
  border: 1px solid #ccc;
  vertical-align: middle;
  font-size: clamp(1.2rem, 1rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.cms-public .html table tr td a {
  color: #282def;
  text-decoration: underline;
}

.manu__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-padding);
}
.parts.manu__inner{
  float: none !important;
}
.subsidy-section {
  margin-bottom: 2.4rem;
}

.subsidy-section:last-child {
  margin-bottom: 0;
}

.subsidy-section__mainTitle {
  margin-bottom: 4rem;
  padding: 0.8rem 1.8rem;
  color: var(--color-text-white);
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  background: #29abe2;
}

.subsidy-section__title {
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: bold;
  color: #00316c;
  border-bottom: 2px solid #00316c;
  margin-bottom: 2.4rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy-section__body {
  padding-inline: 0.4rem;
}

.subsidy-section__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy-section__text {
  font-size: clamp(1.4rem, 1rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy-section__text:last-child {
  margin-bottom: 0;
}

.subsidy-section__note {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.5;
  color: var(--color-text-note);
  margin-top: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.subsidy-section__ol {
  list-style: decimal;
  padding-left: 2.4rem;
  margin-block: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.subsidy-section__li {
  line-height: 1.5;
  color: var(--color-text);
  padding-left: 0.4rem;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}


/* =====================================================
補助率テーブル
===================================================== */
.subsidy-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.8rem;
}

.subsidy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  min-width: 52rem;
  border: 1px solid #ccc;
}

.subsidy-table__th {
  background: #cfe6f0;
  color: var(--color-text);
  font-weight: 700;
  padding: 1.2rem 2rem;
  border: 1px solid #ccc;
  text-align: center;
  white-space: nowrap;
}

.subsidy-table__th--wide {
  width: 86%;
}

.subsidy-table__th--small {
  width: 24%;
}

.subsidy-table__td {
  padding: 1rem;
  border: 1px solid #ccc;
  vertical-align: middle;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-white);
  text-align: left;
  font-weight: 500;
  font-size: clamp(1.2rem, 1rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  }

.subsidy-table__td--condition {
  text-align: left;
  width: 62%;
}

.subsidy-table__note {
  display: block;
  color: var(--color-text-note);
  font-weight: 700;
  font-size: clamp(1.2rem, 1rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__inner {
  margin-inline: auto;
}


.info-table__tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__tbl th[scope="row"] {
  width: var(--it-th-width);
  background: #cfe6f0;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 1.4rem 1.2rem;
  border: 1px solid #ccc;
  word-break: keep-all;
  white-space: normal;
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__tbl td {
  background-color: var(--it-color-td-bg);
  vertical-align: middle;
  padding: 1.4rem 2rem;
  border: 1px solid #ccc;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__tbl td p {
  margin-bottom: 0.8rem;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__tbl td p:last-child {
  margin-bottom: 0;
}


/* =====================================================
右列内の共通パーツ
===================================================== */
.info-table__ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem 0;
}

.info-table__ul:last-child {
  margin-bottom: 0;
}

.info-table__ul li {
  position: relative;
  padding-left: 1.2em;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  margin-bottom: 0.2rem;
}

.info-table__ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.9;
  color: var(--it-color-text);
}

.info-table__ul--compact li {
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__note {
  display: block;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__note:last-child {
  margin-bottom: 0;
}

.info-table__contact {
  font-size: 1.4rem;
  color: var(--it-color-text);
  margin-top: 0.8rem;
}

.info-table__contact-block {
  margin: 0;
}

.info-table__contact-block dt {
  margin-bottom: 0.6rem;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__contact-block dd {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__contact-block dd p {
  margin-bottom: 0.8rem;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__contact-block dd p:last-of-type {
  margin-bottom: 0;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__link {
  color: #0000ee;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
}

.info-table__link:hover {
  text-decoration: none;
}

.list-style-white-space {
  padding-left: 2rem;
}

.list-style-white-space a {
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  margin-bottom: 1.2rem;
  font-weight: 500;
  color: #0000ee;
  font-family: "Noto Sans JP", sans-serif;
}

.cms-public .parts {
  width: 100%;
}
.cms-public .block {
  width: 100%;
}

.fontsize_change .fontsize p.fontsize_title {
  margin: 0;
  display: inline-block;
}

button#smaller,
button#medium,
button#larger,
button#smaller-btn,
button#medium-btn,
button#larger-btn{
  font: 400 1em Arial;
}


.qa-box .heading {
  position: relative;
}

body:not(.dev-mb) .qa-box .heading h3{
  padding: 0 10px;
  margin: 0;
  border-left: none;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  position: relative;
  top: -15px;
  background: #fff;
  display: inline-block;
}

.qa-box .note {
  margin-block: 4rem;
  padding: 0 2rem 1rem;
  border: 1px solid #ccc;
  box-shadow: 0 5px 5px #f2f2f2;
}

.qa-box a {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  font-size: clamp(1.2rem, 1rem + 0.27vw, 1.6rem);
  text-decoration: underline;
  color: #0000ee;
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.qa-box li {
  display: flex;
  align-items: center;
}

.qa-box p {
  font-size: clamp(1.2rem, 1rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.regionalfuture-list .bukken-area__item{
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.regionalfuture-text {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.regionalfutureArea {
  margin-bottom: 3rem;
}

.regionalfutureArea:last-child {
  margin-bottom: 0;
}

.regionalfuture-subTtl {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn {
  padding-block: 4rem 8rem;
}

.rsn__inner {
  max-width: 85.2rem;
  margin-inline: auto;
  padding-inline: var(--rsn-pad);
  display: flex;
  flex-direction: column;
  gap: 20.4rem;
}

.rsn-item {
  position: relative;
  max-width: 63.6rem;
  background: #fff;
}

.rsn-item--01 {
  margin: -56rem auto 0;
}

.rsn-item--02 {
  margin: -41rem auto 0;
}

.rsn-item--03 {
  margin: -36rem auto 0;
}

.rsn-item--04 {
  margin: -46rem auto 0;
}

.rsn-item--05 {
  margin: -36rem auto 0;
}

.rsn-item__num {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8rem;
  font-weight: bold;
  color: #d3edfb;
  line-height: 1;
  letter-spacing: 0.1em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.rsn-item__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.rsn-item__card--dark {
  background-color: var(--rsn-dark);
}

.rsn-item__head {
  padding: 2.4rem 2rem 0;
}

.rsn-item__head--center {
  text-align: center;
}

.rsn-item__title {
  font-size: clamp(2.4rem, 1.95rem + 1.25vw, 3.3rem);
  font-weight: bold;
  color: #036eb8;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.06em;
}

.rsn-item__subtitle {
  font-size: clamp(1.7rem, 1.55rem + 0.4vw, 1.9rem);
  color: #000;
  margin-top: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.rsn-item__body {
  padding: 2.4rem 2.8rem;
}

.rsn-item__body--04 {
  padding: 2.4rem 4rem;
}

.rsn-item__body--02 {
  padding: 2.4rem 5rem;
}

.rsn-item__body--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsn-item__text {
  /* padding: 0 3.8rem; */
  margin-top: 3.6rem;
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.5rem);
  line-height: 1.625;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.rsn-item__text--white {
  color: #000;
}

.rsn-item__link a {
  display: block;
  font-size: clamp(1.1rem, 1.1rem + 0.4vw, 1.8rem);
  color: #29abe2;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: left;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-item__link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.rsn-item__link {
  display: block;
  margin: 0 auto 0 0;
  padding: 0;
  display: block;
  font-size: clamp(1.2rem, 1.2rem + 0.4vw, 1.8rem);
  color: #29abe2;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: left;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-item__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.2rem;
  align-self: flex-start;
  width: 100%;
}

.rsn-item__more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -9rem;
}

.rsn-item__head--03 {
  padding: 5.5rem 2.5rem 2.5rem;
}

.rsn-item__body--03 {
  padding: 2.4rem 2.8rem 5.3rem;
}

.rsn-item__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #036eb8;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5rem;
  text-decoration: none;
  line-height: 1.5;
  width: 10.5rem;
  height: 10.5rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: opacity 0.2s;
}

.rsn-item__more:hover {
  opacity: 0.85;
}

.rsn-cost {
  margin-bottom: 2rem;
}

.rsn-cost__label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rsn-text);
  margin-bottom: 1rem;
}

.rsn-cost__row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rsn-cost__icon {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  background-color: #e8f0f8;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.rsn-cost__icon--factory::before { content: "🏭"; }
.rsn-cost__icon--water::before   { content: "🚰"; }

.rsn-cost__prices {
  display: flex;
  align-items: flex-end;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.rsn-cost__prices--water {
  gap: 1.6rem;
}

.rsn-cost__ref {
  font-size: 1.1rem;
  color: var(--rsn-text-sub);
  margin-top: 0.6rem;
}

.rsn-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rsn-price--main {
  background-color: var(--rsn-price-bg);
  padding: 1rem 1.6rem;
  border-radius: 0.4rem;
}

.rsn-price--main .rsn-price__unit,
.rsn-price--main .rsn-price__num,
.rsn-price--main .rsn-price__per {
  color: var(--rsn-white);
}

.rsn-price--main .rsn-price__label {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-top: 0.4rem;
  font-weight: 700;
}

.rsn-price--compare .rsn-price__label {
  font-size: 1.2rem;
  color: var(--rsn-text-sub);
  margin-top: 0.2rem;
}

.rsn-price--water {
  background-color: var(--rsn-price-bg);
  padding: 1rem 1.4rem;
  border-radius: 0.4rem;
  align-items: flex-start;
}

.rsn-price--water .rsn-price__water-name {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.rsn-price--water .rsn-price__unit,
.rsn-price--water .rsn-price__num,
.rsn-price--water .rsn-price__per {
  color: var(--rsn-white);
}

.rsn-price__unit {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rsn-text);
}

.rsn-price__num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--rsn-text);
  letter-spacing: -0.02em;
}

.rsn-price--main .rsn-price__num,
.rsn-price--water .rsn-price__num {
  font-size: 2.8rem;
}

.rsn-price__per {
  font-size: 1.1rem;
  color: var(--rsn-text-sub);
  margin-top: 0.2rem;
}

.rsn-price__label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rsn-text);
}

.rsn-bb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  padding: 2rem 0 1.6rem;
  flex-wrap: wrap;
  width: 100%;
}

.rsn-bb__text {
  text-align: center;
}

.rsn-bb__label {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}

.rsn-bb__pct {
  font-size: 7.2rem;
  font-weight: 900;
  color: var(--rsn-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rsn-bb__mark {
  font-size: 4rem;
}

.rsn-bb__map img {
  display: block;
  border-radius: 0.4rem;
}

.rsn-sub-list {
  width: 100%;
  border: 1px solid var(--rsn-border);
  border-radius: 0.4rem;
  overflow: hidden;
}

.rsn-sub-item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--rsn-border);
}

.rsn-sub-item:last-child {
  border-bottom: none;
}

.rsn-sub-item__head {
  background-color: var(--rsn-sub-bg);
  padding: 1.2rem 0;
  min-width: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rsn-sub-item__category {
  font-size: clamp(1.7rem, 1.55rem + 0.4vw, 1.9rem);
  color: #29abe2;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-sub-item__amount {
  font-size: clamp(2.2rem, 1.8rem + 1.25vw, 3.1rem);
  font-weight: bold;
  color: #29abe2;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-sub-item__desc {
  flex: 1;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.8;
  font-weight: 400;
  color: #000;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  width: 100%;
  padding: 2rem 0;
}

.rsn-tech-item {
  background-color: #29abe2;
  border-radius: 3rem;
  padding: 4rem 2rem 2.4rem;
  text-align: center;
}

.rsn-tech-item__label {
  font-size: clamp(2.0rem, 1.6rem + 1.25vw, 2.8rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-tech-item__sub {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: bold;
  line-height: 1.28;
}

.rsn-tech-item__num {
  font-size: clamp(2.0rem, 1.6rem + 1.25vw, 2.8rem);
  font-weight: 900;
  color: #ffff00;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
}

.rsn-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem 3.6rem;
  width: 100%;
  padding: 0 5.6rem;
}

/* .rsn-support-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #29abe2;
  color: #fff;
  font-size: clamp(1.8rem, 1.4rem + 1.25vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  padding: 1.5rem;
  border-radius: 2.4rem;
  text-decoration: none;
  line-height: 1.25;
  min-height: 8.8rem;
  transition: opacity 0.2s;
  background-repeat: no-repeat;
  z-index: 1;
} */


/* .rsn-support-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: auto;
  height: 6.6rem;
  background-size: 100% 100%;
  z-index: -1;
} */

/* .rsn-support-btn--01::before {
  width: 5.0rem;
  height: 6.8rem;
  top: 1rem;
  left: 1rem;
  background-image: url(/man/file/img/1043590.svg);
} */

/* .rsn-support-btn--02::before {
  width: 9rem;
  height: 5.8rem;
  top: 2rem;
  left: 0.4rem;
  background-image: url(/man/file/img/1043593.svg);
} */

.rsn-support-btn--03::before {
  width: 6rem;
  height: 6.6rem;
  top: 1rem;
  left: 1rem;
  background-image: url(/man/file/img/1043591.svg);
}

.rsn-support-btn--04::before {
  width: 5.5rem;
  height: 7.5rem;
  top: 0.4rem;
    left: 1rem;
  background-image: url(/man/file/img/1043592.svg);
}

/* サテライトオフィス 詳細ページ */
.sdt {
  padding-bottom: 9rem;
}

.sdt__inner {
  max-width: var(--sdt-width);
  margin-inline: auto;
  padding-inline: var(--sdt-pad);
}

.sdt-hero {
  padding-block: 6rem;
  text-align: center;
}

.sdt-hero__name {
  font-size: clamp(1.8rem, 1.65rem + 0.4vw, 2.0rem);
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.sdt-hero__logo img {
  /* max-width: 40rem; */
  width: 100%;
  height: auto;
  display: inline-block;
}
.sdt-info {
  padding-block: 6rem;
}

.sdt-info__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px dotted #000;
}

.sdt-info__row {
  border-bottom: 1px dotted #000;
}

.sdt-info__th {
  width: 16.8rem;
  padding-block: 2rem;
  padding-right: 1rem;
  font-size: clamp(1.6rem, 1.45rem + 0.4vw, 1.8rem);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.sdt-info__td {
  padding-block: 2rem;
  font-size: clamp(1.6rem, 1.45rem + 0.4vw, 1.8rem);
  line-height: 1.7;
  font-weight: 500;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.sdt-info__link {
  color: var(--sdt-color-link);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-all;
}

.sdt-info__link:hover {
  text-decoration: none;
}

.sdt-article {
  padding-top: 5.6rem;
}

.sdt-article__title {
  position: relative;
  font-size: clamp(2.0rem, 1.6rem + 1.25vw, 2.8rem);
  font-weight: 700;
  color: var(--sdt-color-primary);
  padding-bottom: 1.6rem;
  line-height: 1.4;
  margin-bottom: 5rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.sdt-article__title::before {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 0.3rem;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sdt-article__desc {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  line-height: 1.9;
  color: var(--sdt-color-text);
  margin-bottom: 0;
}

.sdt-article__desc p {
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.sdt-article__desc p:last-child {
  margin-bottom: 0;
}

/* 企業紹介画像 */
.sdt-article__img {
  text-align: center;
  margin-top: 2rem;
}

.sdt-article__img img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  display: inline-block;
}

.sdt-article__sections {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.sdt-article__section-title {
  font-size: clamp(1.6rem, 1.45rem + 0.4vw, 1.8rem);
  font-weight: 700;
  color:#000;
  margin-bottom: 2rem;
  padding-block: 2rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.sdt-article__section-body {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #000;
}

.sdt-article__section-body p {
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  font-family: "Noto Sans JP", sans-serif;
}

.sdt-article__section-body p:last-child {
  margin-bottom: 0;
}

.sdt-article__section-body ul,
.sdt-article__section-body ol {
  padding-left: 2rem;
  margin-bottom: 1.2rem;
}

.sdt-article__section-body li {
  margin-bottom: 0.4rem;
}

.sdt-article__section-body a {
  color: var(--sdt-color-link);
  text-decoration: underline;
}

.sdt-article__section-body a:hover {
  text-decoration: none;
}


/* =====================================================
コワーキングスペース 詳細ページ
===================================================== */
.spd-hero__inner,
.spd-facility__inner,
.spd-flow__inner,
.spd-back__inner {
  max-width: var(--spd-width);
  margin-inline: auto;
  padding-inline: var(--spd-pad);
}

.spd-facility__title,
.spd-flow__title {
  position: relative;
  font-size: clamp(2.0rem, 1.6rem + 1.25vw, 2.8rem);
  font-weight: 700;
  color: var(--sdt-color-primary);
  padding-bottom: 1.6rem;
  line-height: 1.4;
  margin-bottom: 5rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-facility__title::before,
.spd-flow__title::before {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 0.3rem;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.spd-hero {
  padding-block: 5.6rem 4rem;
}

.spd-hero__metaInfo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px dotted #000;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.spd-hero__meta {
  gap: 1rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.spd-hero__region {
  display: block;
  margin-right: 2rem;
  background: var(--color-primary);
  border: 1px solid #000;
  font-size: clamp(1.7rem, 1.55rem + 0.47vw, 2.0rem);
  padding: 0.3rem 0.6rem;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-hero__category {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 2.2rem;
  color: #000;
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  font-weight: 700;
  border-radius: 0.2rem;
  border: 1px solid #000;
  border-radius: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-hero__name {
  font-size: clamp(2.2rem, 1.7rem + 1.56vw, 3.2rem);
  font-weight: 700;
  color: var(--spd-text);
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-hero__lead {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2;
  color: var(--spd-text);
  margin-bottom: 3.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-hero__lead p {
  margin-bottom: 0;
}

.spd-hero__content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 5rem;
}

.spd-hero__gallery {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spd-hero__dots.swiper-pagination {
  position: static;
  margin-top: 1.0rem;
}

.swiper-pagination-bullet {
  background: #808080;
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin-left: 1.5rem !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.spd-hero__slides {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.spd-hero__slide {
  flex-shrink: 0;
  width: 100%;
}

.spd-hero__slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 800 / 466;
  object-fit: cover;
}

.spd-hero__slides:not(.slick-initialized):not(.swiper-wrapper) .spd-hero__slide:not(:first-child) {
  display: none;
}

.spd-hero__dots {
  text-align: center;
  margin-top: 1.2rem;
}

.spd-facility {
  background-color: var(--spd-facility-bg);
  padding-block: 5.6rem;
}

.spd-facility__dl {
  display: flex;
  flex-direction: column;
}

.spd-facility__row {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.spd-facility__row:last-child {
  border-bottom: 1px solid #ccc;
}

.spd-facility__dt {
  flex-shrink: 0;
  width: 20rem;
  text-align: center;
  padding: 1.6rem 2rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.7;
  background: var(--color-primary);
  font-size: clamp(1.4rem, 1.45rem + 0.4vw, 1.8rem);
  font-family: "Noto Sans JP", sans-serif;
}

.spd-facility__dd {
  flex: 1;
  line-height: 1.7;;
  padding: 1.7rem 4rem;
  font-size: clamp(1.4rem, 1.45rem + 0.4vw, 1.4rem);
  font-family: "Noto Sans JP", sans-serif;
}

.spd-facility__link {
  color: var(--spd-link);
  text-underline-offset: 0.15em;
}

.spd-facility__link:hover {
  text-decoration: none;
}

.spd-flow {
  padding-block: 5.6rem;
}

.spd-flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: flow-step;
}

.spd-flow__item {
  position: relative;
  padding-bottom: 3.2rem;
  padding-top: 3.2rem;
  margin-bottom: 0;
}
.spd-flow__item:first-child {
  margin-bottom: 5rem;
}

.spd-flow__item:not(:last-child)::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.2rem 5rem 0;
  border-color: var(--color-primary) transparent transparent;
  left: 0;
  right: 0;
  bottom: -4rem;
  margin: 0 auto;
}

.spd-flow__item-head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: center;
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  background-color: var(--spd-flow-num-bg);
  color: var(--spd-white);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__step-title {
  font-size: clamp(1.8rem, 1.7rem + 0.3vw, 2.0rem);
  font-weight: 700;
  color: var(--spd-text);
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__step-body {
  padding-left: 5.6rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--spd-text);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__step-body p {
  margin-bottom: 1.2rem;
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__step-body p:last-child {
  margin-bottom: 0;
}

.spd-flow__link {
  color: var(--spd-link);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-flow__link:hover {
  text-decoration: none;
}

.spd-back {
  padding-block: 2.4rem 6rem;
  text-align: center;
}

.spd-back__btn {
  max-width: 21rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 4rem;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: clamp(1.8rem, 1.7rem + 0.3vw, 2.0rem);
  font-weight: 700;
  border: 2px solid var(--color-primary);
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}

.spd-back__btn:hover {
  background-color: var(--spd-primary);
  color: var(--color-primary);
}

.js-space-slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.spd-hero__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.spd-hero__dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
}

.header__hamburger {
  display: none;
}

.header__gnaviLogo,
.c-btn02__inner {
  display: none;
}

.tok {
  padding-bottom: 8rem;
}

.tok__inner {
  max-width: 101rem;
  margin-inline: auto;
  padding-inline: var(--tok-pad);
}

.tok-intro {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 5rem 3.6rem 0;
}

.tok-intro__title {
  font-size: clamp(2.4rem, 1.8rem + 2.5vw, 4.0rem);
  font-weight: bold;
  color: #000;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-intro__txt {
  flex-shrink: 0;
}

.tok-intro__img {
  max-width: 41.2rem;
  height: auto;
  flex-shrink: 0;
}

.tok-intro__img img {
  width: 100%;
}

.tok-intro__title-em {
  color: #29abe2;
  letter-spacing: 0.14em;
  font-size: clamp(3.2rem, 2.5rem + 3.5vw, 5.2rem);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-intro__lead {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.875;
  color: var(--tok-text);
  max-width: 56rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-traffic {
  margin-bottom: 3.2rem;
}

.tok-traffic h3 {
  background: #02b1eb;
  color: var(--color-text-white);
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: bold;
  padding: 0.8rem 1.6rem;
}


.tok-traffic__img img {
  width: 100%;
}

.tok-highway {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  border: 1px solid #b8d4e8;
  border-radius: 0.4rem;
  padding: 2rem 2.4rem;
  margin-bottom: 7rem;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-highway__body {
  flex: 1;
}

.tok-highway__title {
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem);
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-highway__text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--tok-text);
}

.tok-highway__img {
  flex-shrink: 0;
}

.tok-highway__img img {
  display: block;
  width: 28rem;
  height: auto;
  border-radius: 0.4rem;
}

.tok-movie {
  margin-bottom: 4.5rem;
}

.tok-movie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.tok-movie__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  background-color: #000;
}

.tok-movie__thumb a {
  display: block;
}

.tok-movie__thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 0.2s;
}

.tok-movie__thumb a:hover img {
  opacity: 0.85;
}

.tok-movie__play::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tok-life {
  margin-bottom: 2rem;
}

.tok-life__title {
  font-size: clamp(2.0rem, 1.6rem + 1.5vw, 3.2rem);
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-life__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tok-life__item {
  display: flex;
  flex-direction: column;
}

.tok-life__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.2rem;
  margin-bottom: 1.2rem;
}

.tok-life__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tok-life__keyword {
  font-size: clamp(2.0rem, 1.6rem + 1.5vw, 3.2rem);
  font-weight: bold;
  color: #29abe2;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #29abe2;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-life__text {
  font-size: clamp(1.3rem, 1.2rem + 0.3vw, 1.5rem);
  padding-top: 1rem;
  line-height: 1.9;
  color: #000;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area {
  background: #d3edfb;
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
}

.tok-area__head {
  text-align: center;
  margin-bottom: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area__title {
  font-size: clamp(3.0rem, 2.2rem + 4vw, 4.8rem);
  font-weight: bold;
  color: #29abe2;
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area__title em {
  color: #7dd4f8;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area__lead {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  color: #000;
  line-height: 1.625;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
}

.tok-area__map {
  text-align: center;
}

.tok-area__map img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 0.4rem;
}

.tok-area-desc {
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--tok-border);
}

.tok-area-desc:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tok-area-desc__head {
  margin-bottom: 1.2rem;
}

.tok-area-desc__tag {
    max-width: 16rem;
    max-height: 3.6rem;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.6rem;
    border-radius: 2rem;
    font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem);
    font-weight: bold;
    color: #fff;
}

.tok-area-desc__tag--west  { background: #29abe2; }
.tok-area-desc__tag--east  { background: #23b574; }
.tok-area-desc__tag--south { background: #f7931d; }

.tok-area-desc__title {
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem);
  font-weight: bold;
  color: #29abe2;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area-desc__body {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 1.875;
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

.tok-area-desc__body:last-child {
  margin-bottom: 0;
}

.tok-area-desc__map {
  max-width: 64rem;
  margin: 5.6rem auto 0;
}

.tok-area-desc__map img {
  max-width: 100%;
  height: auto;
  display: block;
}

.battery-valley {
  padding-bottom: 8rem;
}

.batte-valley__inner {
  max-width: 104rem;
  margin-inline: auto;
  padding-inline: var(--tok-pad);
}

.battery__body {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 0 3rem;
}

.battery__left {
  width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex-shrink: 0;
}

/* .battery__img--01 {
  margin-top: 18rem;
} */

.battery__img--02 {
  margin-left: -3.4em;
}

.battery__left > div:first-child img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__desc {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.185;
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}


.battery__imgArea {
  /* flex: 0 0 22rem; */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 1.2rem; */
}

.battery__img {
  width: 32rem;
}

.battery__img img {
  width: 100%;
  height: auto;
  display: block;
}

.battery-linkList {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 1.6rem 0;
}

.battery-linkItem,
.bbattery-linkItem {
  display: contents;
}

.battery-link {
  position: relative;
  max-width: 44.8rem;
  width: 100%;
  max-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: #29abe2;
  color: var(--color-text-white);
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  font-family: "Noto Sans JP", sans-serif;
  border: 2px solid #29abe2;
}

.battery-link:hover {
  background: var(--color-bg);
  color: #29abe2;
  border: 2px solid #29abe2;
}

.battery-link::after {
  content: '';
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top:    0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left:   0.7rem solid #fff;
}

.battery-link:hover::after {
  border-top:    0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left:   0.7rem solid #29abe2;
}


/* ==========================================================
PROMO SECTION  .batte-promo
========================================================== */

.batte-promo {
  padding: 4rem 0 2rem;
}

.batte-promo__inner {
  margin-bottom: 1.6rem;
}

.initiatives {
  padding: 4rem 0 2rem;
}

.batte-promo__title {
  font-size: clamp(3rem, 1rem + 4vw, 5.5rem);
  color: #1d538b;
  font-weight: 900;
  margin-bottom: 2.4rem;
  line-height: 1.3;
  font-style: italic;
  font-family: "Noto Sans JP", sans-serif;
}

.batte-promor__desc {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.125;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.batte-promo .battery-linkList {
  padding: 0;
}


/* ==========================================================
SUPERIORITY  .superiority
========================================================== */
.superiority {
  padding: 4rem 0 2rem;
}

.superiority__title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}


/* ==========================================================
SUB SECTION  .sub-section
========================================================== */

.sub-section {
  margin-bottom: 3.2rem;
}

.sub-section:last-child {
  margin-bottom: 5.6rem;
}

.sub-section__title {
  position: relative;
  max-width: 38rem;
  letter-spacing: 0.1em;
  font-size: clamp(2.0rem, 1.4rem + 1.5vw, 3.2rem);
  font-weight: 700;
  color: #29abe2;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

.sub-section__title::before {
  position: absolute;
  content: "";
  width: 62rem;
  height: 0.1rem;
  top: 24px;
  right: -62rem;
  background: #29abe2;
}

.sub-section__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

.sub-section__body {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.125;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.poster-item {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.125;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

/* ==========================================================
INITIATIVES  .initiatives / .init__inner
========================================================== */


.initiative {
  margin-bottom: 3.2rem;
}

.initiative--seminar {
  display: grid;
  grid-template-columns: 1fr 24rem;
  gap: 3rem;
  align-items: start;
}

.initiative__seminar-detail {
  font-size: 1.35rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.initiative__note {
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.125;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}


/* ==========================================================
PR  .pr / .pr__inner / .pr-sub
========================================================== */
.pr {
  padding: 4rem 0 4rem;
}

.pr-sub {
  margin-bottom: 3.5rem;
}

.pr-movie {
  display: grid;
  grid-template-columns: 1fr 28rem;
  gap: 3rem;
  align-items: start;
}

.pr-movie__body {
  font-size: 1.35rem;
  line-height: 1.85;
  color: var(--color-text);
}

.pr-movie__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(1.4rem, 1.3rem + 0.3vw, 1.6rem);
  line-height: 2.125;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.pr-movie__link:hover {
  text-decoration: underline;
}

.initiative__media-col {
  position: relative;
  aspect-ratio: 320 / 186;
  cursor: pointer;
}

.initiative__media-col iframe {
  width: 100%;
  height: 100%;
}

.pr-movie__thumb {
  aspect-ratio: 320 / 186;
  position: relative;
  cursor: pointer;
}

.pr-movie__thumb iframe {
  width: 100%;
  height: 100%;
}

.poster-grid {
  max-width: 74.6rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 1.6rem;
}

.poster-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.poster-item__img {
  width: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}

.poster-item__caption {
  font-size: 1.2rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.55;
}

.initiative__text-col {
  width: 88%;
}

.sub-section__body--movie {
  width: 78%;
}

.docu-item {
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.file-extension {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}

.batteryDetail__inner {
  padding-block: 6rem;
}

/* ============================================================
滞在型 / 循環型カード
============================================================ */
.sat-type {
  padding: 0 2rem 7rem;
}
.sat-type__inner {
  max-width: 104rem;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  padding-inline: var(--side-padding);
}


.sat-type__card {
  flex: 1;
  padding: 2rem 3.6rem;
  border: 2px solid var(--color-primary);
}

.sat-type__card-title {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.sat-type__card-body {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

/* ============================================================
効果セクション
============================================================ */
.sat-effect {
  background: #eaf8fe;
  padding: 6rem 2rem 8rem;
}

.sat-effect__inner {
  max-width: 102rem;
  margin: 0 auto;
  padding-inline: var(--side-padding);
}

.sat-effect__heading {
  position: relative;
  padding-bottom: 1rem;
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.sat-effect__heading::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 0.8rem;
  background: var(--color-primary);
  bottom: -1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sat-effect__divider {
  width: 40px;
  height: 3px;
  background: var(--sat-blue);
  margin: 0 auto 36px;
}
.sat-effect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sat-effect__item {
  background: var(--color-bg);
  border-radius: var(--sat-radius);
  padding: 2.4rem 1.6rem 2.8rem;
}
.sat-effect__item-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: clamp(1.6rem, 1.4rem + 0.83vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.sat-effect__item-title::before {
  position: absolute;
  content: "";
  width: 14rem;
  height: 0.4rem;
  background: var(--color-primary);
  bottom: 0rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sat-effect__item-text {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}


/* ============================================================
エリア選定セクション
============================================================ */
.sat-area {
  padding: 70px 20px;
}
.sat-area__inner {
  max-width: 104rem;
  margin: 0 auto;
  padding-inline: var(--side-padding);
}
.sat-area__heading {
  position: relative;
  padding-bottom: 1rem;
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.sat-area__body {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.sat-area__cta-wrap {
  text-align: center;
}
.sat-area__cta-btn {
  max-width: 40rem;
  width: 100%;
  max-height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  background: #29abe2;
  color: var(--color-text-white);
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  border: 2px solid #29abe2;
  transition: background 0.2s;
}
.sat-area__cta-btn:hover {
  color: #29abe2;
  background: var(--sat-blue-dark);
}
.sat-area__cta-btn-arrow {
  font-size: 1.1rem;
  padding-left: 2rem;
}

/* ============================================================
実証実験サポートセクション
============================================================ */
.sat-support {
  background: var(--sat-blue-light);
  padding: 4rem 2rem;
}
.sat-support__inner {
  max-width: 104rem;
  margin: 0 auto;
  padding-inline: var(--side-padding);
}
.sat-support__heading {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.sat-support__body {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 2.125;
  color: #000;
  margin-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.sat-support__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.sat-support__card {
  background: var(--sat-blue);
  color: var(--sat-white);
  border-radius: var(--sat-radius);
  width: 200px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.sat-support__card:hover {
  background: var(--sat-blue-dark);
}
.sat-support__card-icon {
  width: 64px;
  height: 64px;
}
.sat-support__card-label {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
ナビゲーターカード（会社情報）
============================================================ */
.sat-navigator {
  padding: 4rem 2rem;
  background: #eaf8fe;
}
.sat-navigator__inner {
  max-width: var(--sat-max-w);
  margin: 0 auto;
}
.sat-navigator__card {
  text-align: center;
}
.sat-navigator__tag {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  color: #000;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.sat-navigator__role {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  color: #000;
  margin-bottom: 1rem;
  font-weight: 400;
}
.sat-navigator__company {
  font-size: clamp(1.8rem, 1.4rem + 0.83vw, 2.4rem);
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}
.sat-navigator__info {
  font-size: clamp(1.3rem, 1.27rem + 0.27vw, 1.6rem);
  color: #000;
  line-height: 2;
  font-weight: 400;
}
.sat-navigator__info a {
  color: var(--sat-blue);
  text-decoration: none;
}
.sat-navigator__info a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .operator__tel-link {
    pointer-events: none;
    color: #000000;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}
/* ==============================================
RESPONSIVE — Mobile First (max 1024px)
============================================== */
@media (max-width: 1024px) {
  .feat__list {
    gap: 0 3.5rem;
    margin-bottom: 3.5rem;
  }

  .news__inner {
    gap: 0;
  }

  .reasons__btn {
    margin-top: 0;
  }

  .contact,
  .pamphlet,
  .guidebook {
    padding-block: 2rem;
  }

  .operator__tel-link {
    font-size: 3.2rem;
  }

  .operator__tel-link::before {
    top: 0.4rem;
  }

  .operator__inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .article__figure--float-right,
  .article__figure--float-left {
    width: 45%;
  }

  .voice-detail__hero-img {
    width: 24rem;
  }

  .voice-detail__building-img {
    width: 24rem;
  }

  .voice-detail__inner {
    padding-inline: var(--side-padding);
  }

  .satellite__card-logo {
    height: 12rem;
  }

  .cost__img {
    width: 28rem;
  }

  .spd-hero {
    padding-block: 4rem 3.2rem;
  }

  .spd-hero__name {
    font-size: 2rem;
  }

  .spd-facility {
    padding-block: 3rem;
  }

  .spd-facility__title,
  .spd-flow__title {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }

  .spd-flow {
    padding-block: 3rem;
  }

  .spd-flow__step-title {
    font-size: 1.5rem;
  }

  .spd-flow__step-body {
    font-size: 1.3rem;
  }

}



/* ==============================================
RESPONSIVE — Mobile First (max 768px)
============================================== */
@media (max-width: 768px) {

  /* HEADER */
  .header__inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 16px;
  }

  .header__logo-text {
    margin-bottom: 0;
  }

  .header__nav {
    order: 3;
    flex-basis: 100%;
  }

  .header__cta {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .header__gnav-list {
    gap: 0;
    padding: 0;
  }

  .header__gnav-list li a {
    font-size: 0.7rem;
    padding: 8px 8px;
  }

  .hero {
    min-height: 320px;
  }

  .hero__inner {
    padding: 60px 16px;
  }
  
  .header__left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .header__inner > .header__cta {
    display: none; 
  }

  .feat__list {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .feat__link {
    min-width: 16rem;
    min-height: 16rem;
    padding: 1.2rem 0.8rem;
  }

  .news__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news .div_tag{
    flex-direction: column !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    float: none !important;
  }

  .news__head {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
    flex-shrink: 0;
  }

  .news__item {
    gap: 8px;
  }

  .news__date {
    min-width: 10rem;
  }

  .news__tag {
    max-width: 12rem;
    height: 2.4rem;
    margin-right: 1.5rem;
  }

  .reasons__inner {
    flex-direction: column;
    align-items: center;
  }

  .reasons__grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .reasons__card:nth-child(n) {
    grid-column: auto;
    margin-left: 0;
    width: 100%;
  }

  .support__inner {
    grid-template-columns: 1fr;
  }

  .news__list {
    margin: 0;
  }

  .voice__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer__nav-list li a {
    border-right: none;
    gap: 1rem 1.4rem;
    padding: 8px 0;
  }

  .support__btn small {
    padding: 0.8rem 4rem 1rem 2.6rem;
  }

  .support__btn small::before{
    right: 2.4rem;
  }

  .office__item {
    min-height: 18rem;
  }

  .office__btn {
    max-width: 30rem;
    min-height: 2.8rem;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 1.3rem;
  }

  .office__content {
    padding-bottom: 5rem;
  }

  .office__title {
    margin-top: -2rem;
  }

  .cta__btns {
    gap: 1rem;
  }

  .cta__btn {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    font-size: 1.2rem;
  }

  .cta {
    margin-bottom: 4rem;
  }

  .footer__nav-list {
    gap: 1rem 1.4rem;
  }

  .news {
    padding: 2.4rem 0;
  }

  .support {
    padding: 3rem 0;
  }

  .voice__title {
    gap: 1.2rem;
  }

  .voice {
    padding: 3rem 0;
  }


  .reasons__btn {
    margin-top: 0;
  }

  .contact__lead {
    text-align: left;
    font-size: 1.3rem;
  }

  .contact-form__row {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 1.2rem;
    min-height: auto;
    gap: 0.6rem;
  }

  .contact-form__row--align-top {
    padding-block: 1.2rem;
  }

  .contact-form__label {
    width: auto;
    padding-right: 0;
    font-size: 1.3rem;
  }

  .contact-form__field {
    width: 100%;
    padding-block: 0;
  }

  .contact-form__input {
    font-size: 1.6rem;
  }

  .contact-form__textarea {
    font-size: 1.6rem;
    height: 16rem;
  }

  .contact-form__submit-wrap {
    margin-top: 2.4rem;
  }

  .contact-form__privacy {
    font-size: 1.2rem;
  }

  .contact-form__btn {
    max-width: 36rem;
    width: 100%;
    font-size: 1.5rem;
  }

  .pamphlet,
  .guidebook {
    padding-block: 2rem;
  }

  .pamphlet__title,
  .guidebook__title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .pamphlet__desc,
  .guidebook__desc {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }

  .pamphlet__links,
  .guidebook__links {
    align-items: flex-start;
  }

  .pamphlet__link,
  .guidebook__link {
    font-size: 1.3rem;
  }

  .operator {
    margin-block: 3.2rem 6rem;
    padding-block: 0;
  }

  .operator__name {
    font-size: 1.3rem;
  }

  .operator__tel-link {
    font-size: 2.8rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .footer-nav {
    gap: 0.4rem 1.6rem;
  }

  .footer__cta {
    align-self: flex-end;
  }

  .operator__tel-link::before {
    width: 2.5rem;
    height: 3.6rem;
    top: 1rem;
    left: -3.5rem;
  }

  .news--list {
    padding-block: 3.2rem;
  }

  .news__filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2.4rem;
  }

  .news__tab {
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
  }

  .pagination {
    margin-top: 3.2rem;
  }

  .pagination__link {
    min-width: 3.2rem;
    height: 3.2rem;
    font-size: 1.3rem;
  }


  .article {
    padding-block: 4rem;
  }

  .article__head {
    margin-bottom: 0;
    padding-bottom: 2.4rem;
  }

  .article__title {
    margin-bottom: 1.5rem;
  }

  .article__body p,
  .article__body li {
    font-size: 1.3rem;
  }

  .article__body h2 {
    font-size: 1.8rem;
    margin-top: 3.2rem;
  }

  .article__body h3 {
    font-size: 1.6rem;
    margin-top: 2.4rem;
  }

  .article__figure--float-right,
  .article__figure--float-left {
    float: none;
    width: 100%;
    margin-inline: 0;
  }

  .article-nav__list {
    flex-direction: column;
    gap: 1.2rem;
  }

  .article-nav__item--next .article-nav__link {
    align-items: flex-start;
    text-align: left;
  }

  .article__inner {
    padding: 0rem 2rem 2rem;
  }

  .article-nav {
    margin-top: 0;
  }

  .voice-detail {
    padding-block: 4rem;
  }

  .voice-detail__hero {
    gap: 0;
    margin-bottom: 3rem;
  }

  .voice-detail__hero-img {
    width: 100%;
    max-width: 20em;
    margin-inline: auto;
  }

  .voice-detail__quote {
    margin-bottom: 2rem;
  }

  .voice-detail__name {
    font-size: 1.8rem;
  }

  .voice-detail__question {
    margin-bottom: 1.2rem;
  }

  .voice-detail__answer p {
    font-size: 1.4rem;
  }

  .voice-detail__company {
    flex-direction: column;
    gap: 0rem;
    margin-bottom: 4rem;
  }

  .voice-detail__info-row {
    flex-direction: column;
    padding-block: 0.8rem;
  }

  .voice-detail__info-label {
    min-width: auto;
  }

  .voice-detail__company-name {
    margin-bottom: 1.4rem;
  }

  .voice-detail__qa {
    margin-bottom: 2rem;
  }

  .voice-detail__inner {
    padding-block: 0 2rem;
  }

  .voice-detail__interview {
    margin-bottom: 5rem;
  }

  .voice-detail__info-valueLong {
    line-height: 2;
  }

  .satellite {
    padding-block: 4rem;
  }

  .satellite__tab {
    padding: 1rem 0.8rem;
    font-size: 1.3rem;
  }

  .satellite__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .satellite__card-logo {
    height: 11rem;
    padding: 1.6rem;
  }

  .satellite__card-body {
    padding: 1rem 1rem 1.4rem;
  }

  .satellite__card-name {
    font-size: 1.3rem;
  }

  .space-filter__group {
    flex-direction: column;
    gap: 1.2rem;
  }

  .space-filter__label {
    padding-top: 0;
    min-width: auto;
  }

  .space-filter__btn {
    padding: 1.2rem 3.2rem;
    font-size: 1.5rem;
  }

  .space-grid {
    gap: 1.6rem;
    margin-bottom: 4rem;
  }

  .space-card__name {
    font-size: 1.6rem;
  }

  .subsidy {
    padding-block: 4rem;
  }

  .subsidy__acc-trigger {
    padding: 1rem 1.4rem;
  }

  .property {
    padding-block: 4rem;
    padding-top: 0;
  }

  .property__lead {
    font-size: 1.3rem;
  }

  .cost {
    padding-block: 4rem;
  }

  .cost__inner {
    flex-direction: column;
    gap: 2.8rem;
  }

  .cost__img {
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
    order: -1;
  }


  .bukken-hero {
    padding: initial;
    padding-block: 3.6rem;
  }

  .bukken-list {
    padding-bottom: 2rem;
  }

  .bukken-category {
    margin-bottom: 4rem;
  }

  .bukken-category__head {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .bukken-category__toggle {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }

  .bukken-area__link {
    font-size: 1.3rem;
  }


  .shichoson-intro {
    padding-block: 3.6rem;
  }

  .shichoson-map {
    padding-block: 1.6rem 3.2rem;
  }

  .shichoson-nav {
    --nav-cols: 2;
    padding-bottom: 6rem;
  }

  .shichoson-nav__link {
    font-size: 1.4rem;
    padding: 1.2rem 1rem;
    min-height: 4.8rem;
  }

  .bukken-hero__title,
  .shichoson-intro__title {
    margin-bottom: 2rem;
  }

  .shichoson-nav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cms-public .table table tr th,
  .cms-public .table table tr td,
  .cms-public .html table tr th,
  .cms-public .html table tr td {
    padding: 0.6rem;
  }

  .subsidy-section {
    margin-bottom: 2rem;
  }

  .subsidy-table__th,
  .subsidy-table__td {
    padding: 1.2rem 1.4rem;
  }


  .info-table__tbl th[scope="row"] {
    padding: 1.2rem 1rem;
  }

  .info-table__tbl td {
    padding: 1.2rem 1.4rem;
  }

  .rsn-item__num {
    font-size: 5rem;
    right: 0;
  }

  .rsn-item__head {
    padding: 3.6rem 0 0;
  }

  .rsn-item__body {
    padding: 2rem;
  }

  .rsn-cost__row {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .rsn-price__num {
    font-size: 2.4rem;
  }

  .rsn-bb {
    flex-direction: column;
    gap: 1.2rem;
  }

  .rsn-bb__pct {
    font-size: 5.6rem;
  }

  .rsn-sub-item {
    flex-direction: column;
  }

  .rsn-sub-item__head {
    min-width: unset;
    padding: 0;
  }

  .rsn-tech-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .rsn-support-grid {
    grid-template-columns: 1fr;
    padding: 0 4.6rem;
    gap: 1.6rem 3.6rem;
    margin-bottom: 2rem;
  }

  .rsn {
    padding-block: 4rem;
  }

  .reasons__introImg.reasonPage {
    margin-bottom: 0;
  }


  .rsn-item--01{
    margin: 0 auto;
  }

  .rsn-item--02{
    margin: 0 auto;
  }

  .rsn-item--03{
    margin: 0 auto;
  }

  .rsn-item--04{
    margin: 0 auto;
  }

  .rsn-item--05{
    margin: 0 auto;
  }

  .rsn__inner {
    gap: 5rem;
  }

  .rsn-sub-item__desc {
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }

  .rsn-item__more-wrap {
    margin-top: 1rem;
  }

  .rsn-item__text {
    margin-top: 1rem;
  }

  .rsn-sub-item {
    margin-bottom: 1rem;
  }

  .rsn-sub-item:last-child {
    margin-bottom: 0;
  }

  .rsn-tech-item {
    padding: 2rem;
  }

  /* .rsn-support-btn {
    min-height: 6.6rem;
  } */

  /* .rsn-support-btn--01::before {
    width: 4rem;
    height: 4.4rem;
  } */

  /* .rsn-support-btn--02::before {
    width: 7rem;
    height: 3.8rem;
  } */

  .rsn-support-btn--03::before {
    width: 4rem;
    height: 4.6rem;
    left: 2rem;
  }

  .rsn-support-btn--04::before {
    width: 3.5rem;
    height: 6rem;
    top: 0.4rem;
    left: 2rem;
  }

  .sdt {
    padding-bottom: 6rem;
  }

  .sdt-hero {
    padding-block: 4rem;
  }

  .sdt-hero__name {
    margin-bottom: 3.2rem;
  }

  .sdt-info {
    padding-block: 3rem;
  }

  .sdt-info__th {
    width: 12rem;
  }

  .sdt-info__td {
    font-size: 1.4rem;
  }

  .sdt-article {
    padding-top: 3rem;
  }

  .sdt-article__section-title {
    padding-block: 1rem;
  }

  .sdt-article__title {
    margin-bottom: 3rem;
  }

  .sdt-article__sections {
    padding-top: 3rem;
  }

  .spd-hero__region {
    margin-right: 1rem;
  }

  .spd-hero__metaInfo {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .spd-hero__content {
    flex-direction: column;
    margin-top: 2rem;
    gap: 3rem;
  }

  .spd-hero__lead {
    margin-bottom: 0;
  }

  .spd-facility__row {
    flex-direction: column;
    padding-block: 0;
  }

  .spd-facility__dd {
    width: 100%;
    padding: 1.2rem 4rem;
    text-align: center;
  }

  .spd-facility__dt {
    width: 100%;
    padding: 1.2rem 2rem;
  }

  .spd-flow__step-body p {
    text-align: center;
  }

  .spd-flow__item:first-child {
    margin-bottom: 3rem;
  }

  .spd-flow__item {
    padding-block: 2.2rem;
  }

  .spd-flow__item:not(:last-child)::after {
    bottom: -3rem;
    border-width: 2.2rem 4rem 0;
  }

  .spd-back {
    padding-block: 0 4rem;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    overflow: visible;
  }

  .header__inner {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header__logo-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1001;
  }

  .header__hamburger {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 0;
    outline: none;
  }

  /* 三本線のデザイン */
  .header__hamburger span {
    display: block;
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.4s;
    border-radius: 2px;
  }

  .header__hamburger span:nth-child(1) { top: 14px; }
  .header__hamburger span:nth-child(2) { top: 21px; }
  .header__hamburger span:nth-child(3) { top: 28px; }

  /* 閉じるボタン（Active時） */
  .header__hamburger.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
    background: #fff;
  }

  /* 2本目：消す */
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
    left: -10px;
  }

  /* 3本目：-45度回転して「/」にする */
  .header__hamburger.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
    background: #fff;
  }

  /* メニュー本体（スマホ時） */
  .header__gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #393939;
    z-index: 1000;
    transition: right 0.4s ease;
    display: block !important;
    padding: 1rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: block !important;

  }

  .header .header__gnav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .header__gnaviLogo {
    color: var(--color-text-white);
    font-size: clamp(1.2rem, 1.0rem + 1.33vw, 3.2rem);
  }

  .header__gnav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__gnav-list li {
    position: relative;
    padding-left: 2rem;
    width: 100%;
  }

  .header__gnav-list li::before {
    position: absolute;
    content: "ー";
    display: block;
    top: 2rem;
    left: 0;
    color: #fff;
  }

  .header__gnav-list li a {
    padding: 15px 0;
    font-size: 1.6rem;
    color: #fff !important;
  }

  .c-btn02__inner {
    position: relative;
    display: block;
    width: 17rem;
    margin: 4rem auto;
    background: #fff;
    border: 2px solid #fff;
    background: var(--color-primary);
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-align: center;
    padding: 9px 10px;
    font-family: "Noto Sans JP", sans-serif;
  }
  
  .page-hero {
    padding-top: 0;
  }

  .header__logo-text--blue {
    color: #fff;
  }

  .header__gnaviLogo,
  .c-btn02__inner {
    display: block;
  }

  .bukken-area {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .subsidy-section__mainTitle {
    margin-bottom: 2rem;
  }

  .tok-intro__catchjp {
    position: static;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 1.2rem;
    display: block;
  }


  .tok-highway {
    flex-direction: column;
  }

  .tok-highway__img img {
    width: 100%;
  }

  .tok-movie__grid {
    grid-template-columns: 1fr;
  }

  .tok-life__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .tok-intro {
    flex-direction: column;
    padding: 5rem 0;
  }

  .battery__body {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .battery__left {
    flex: 0 0 100%;
  }

  /* .battery__imgArea {
    flex: 0 0 100%;
    flex-direction: row;
  } */

  .battery-linkList {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .initiative--seminar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pr-movie {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .poster-grid {
    grid-template-columns: 1fr;
    max-width: 40rem;
  }

  .battery__img {
    width: 54%;
    margin: 0 auto;
  }

  .battery-link {
    padding: 1.2rem 1rem;
    font-size: clamp(1.2rem, 1.1rem + 0.27vw, 1.6rem);
  }

  .superiority {
    padding: 2rem 0;
  }

  .sub-section:last-child {
    margin-bottom: 2rem;
  }

  .sub-section {
    margin-bottom: 2.2rem;
  }

  .initiative {
    margin-bottom: 2.2em;
  }

  .pr {
    padding: 0 0 2rem;
  }

  .sub-section__body--leaf {
    margin-bottom: 1.6rem;
  }

  .sub-section__body--movie {
    width: 100%;
  }

  .initiative__text-col {
    width: 100%;
  }

  .pr-sub {
    margin-bottom: 2.5rem;
  }

  .pr-sub:last-child {
    margin-bottom: 0;
  }

  .battery-valley {
    padding-bottom: 2rem;
  }

  .initiative__media-col,
  .pr-movie__thumb {
    aspect-ratio: 16 / 9;
  }

  .sub-section__title::before {
    display: none;
  }

  .batteryDetail__inner {
    padding-block: 4rem;
  }

  .sat-type__inner {
    padding-right: 0;
    padding-left: 0;
    flex-direction: column;
  }

  .sat-effect__grid {
    grid-template-columns: 1fr;
  }

  .sat-support__cards {
    flex-direction: column;
    align-items: center;
  }

  .sat-type__card {
    padding: 2rem 1.6rem;
  }

  .sat-type {
    padding: 0px 2rem 4rem;
  }

  .sat-effect {
    padding: 4rem 2rem;
  }

  .sat-effect__inner,
  .sat-area__inner,
  .sat-support__inner,
  .feat__inner {
    padding-right: 0;
    padding-left: 0;
  }

  .sat-area {
    padding: 4rem 2rem;
  }
  .shichoson-map__inner {
    flex-direction: column;
  }
  .shichoson-nav {
    width: 100%;
  }

}

@media (max-width: 480px) {
  .feat__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .reasons__inner {
    display: block;
  }

  .feat__link {
    min-width: 90px;
    padding: 10px 10px;
    font-size: 1.4rem;
  }

  .news__link-wrapper {
    display: block;
    padding: 0.8rem 0;
  }

  .news__tag {
    max-width: 7rem;
    height: 1.8rem;
    margin-right: 0;
    font-size: 1rem;
  }

  .news__text,
  .news__date {
    font-size: 1.4rem;
  }

  .news__more {
    max-width: 18rem;
    padding: 0.8rem 3.5rem 0.8rem 2rem;
    font-size: 10px;
  }

  .news__more::before {
    width: 1rem;
    height: 1rem;
    top: 1rem;
    right: 1.6rem;
  }

  .voice__grid {
    grid-template-columns: 1fr;
  }
  /* 3番目以降のカードを非表示にする */
  .voice__grid .voice__card:nth-child(n+3) {
      display: none;
  }

  .reasons__card--01,
  .reasons__card--02,
  .reasons__card--03,
  .reasons__card--04,
  .reasons__card--05 {
    grid-column: span 1;
  }

  .reasons__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(2, 32rem);
    gap: 2rem;
  }

  .support__btns {
    flex-direction: column;
  }

  .office__grid {
    grid-template-columns: 1fr;
  }

  .office__item {
    min-height: 18rem;
  }

  .office__content {
    padding-bottom: 4.4rem;
  }

  .office__btn {
    max-width: 30rem;
    min-height: 2.8rem;
    padding: 1rem 2rem 1rem 2.4rem;
    font-size: clamp(1.6rem, 0.5vw + 1.4rem, 1.9rem);
  }

  .sp-display {
    display: block;
  }

  .pc-display {
    display: none;
  }

  .cta__btns {
    flex-direction: column;
  }

  .cta__btn {
    max-width: 31rem;
    width: 100%;
    padding: 1.2rem 4.5rem 1.2rem 4.5rem;
    font-size: clamp(1.8rem, 0.4vw + 1.65rem, 2.1rem);
  }

  .footer__nav-list {
    flex-direction: column;
  }

  .footer__inner {
    padding: 0 2rem 3.6rem;
  }

  .reasons__btn {
    margin-top: 2rem;
  }

  .contact {
    padding-block: 3.2rem;
  }

  .contact__lead {
    margin-bottom: 2.4rem;
  }

  .contact-form__checklist {
    gap: 0.8rem;
  }

  .contact-form__check-label {
    font-size: 1.3rem;
  }

  .pamphlet,
  .guidebook {
    padding-block: 3.2rem;
  }

  .pamphlet__title,
  .guidebook__title {
    font-size: 1.8rem;
  }

  .operator {
    margin-block: 2.4rem;
    padding-block: 2.4rem;
  }

  .operator__title {
    font-size: 1.8rem;
  }

  .operator__tel {
    flex-direction: column;
    gap: 0.4rem;
  }

  .operator__tel-link {
    font-size: 2.4rem;
  }

  .footer__inner {
    gap: 1.2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer__cta {
    align-self: stretch;
    text-align: center;
  }

  .operator__tel-link::before {
    top: 0.4rem;
  }

  .news__tab {
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
  }

  .news__text {
    padding-left: 0;
  }

  .pagination__item + .pagination__item:not(.pagination__item--next)::before {
    font-size: 1.2rem;
  }

  .article__title {
    font-size: 1.8rem;
  }

  .article__meta {
    gap: 1.2rem;
  }

  .article__body h2 {
    font-size: 1.6rem;
  }

  .article__body h3 {
    font-size: 1.5rem;
  }

  .article-nav__link {
    padding: 1.2rem 1.6rem;
  }

  .page-heroBg {
    min-height: 20rem;
  }

  .voice-detail {
    padding-block: 3.2rem;
  }

  .voice-detail__hero {
    flex-direction: column;
    gap: 2.4rem;
  }

  .voice-detail__quote {
    padding: 0;
    font-size: 1.7rem;
  }

  .voice-detail__interview {
    margin-bottom: 3rem;
  }

  .voice-detail__name {
    font-size: 1.6rem;
  }

  .operator__inner {
    margin-block: 0 3rem;
  }

  .satellite {
    padding-block: 3.2rem;
  }

  .satellite__filter {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin-inline: calc(var(--side-padding) * -1);
    padding-inline: var(--side-padding);
  }

  .satellite__filter::-webkit-scrollbar {
    display: none;
  }

  .satellite__tabs {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
  }

  .satellite__tab-item {
    flex: 0 0 auto;
  }

  .satellite__tab {
    width: auto;
    min-width: 10rem;
    font-size: 1.3rem;
    padding: 1rem 1.2rem;
    white-space: nowrap;
  }

  .satellite__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .satellite__card-logo {
    height: 7rem;
    padding: 1rem;
  }

  .satellite__card-logo img {
    max-height: 6rem;
  }

  .satellite__card-name {
    font-size: 1.2rem;
  }

  .space-filter {
    padding-block: 2rem;
  }

  .space-filter__chips {
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }

  .space-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .space-card__region-tag {
    font-size: 1.1rem;
  }

  .subsidy {
    padding-block: 3.2rem;
  }

  .subsidy__acc-trigger {
    font-size: 1.3rem;
  }

  .property {
    padding-block: 3.2rem;
    padding-top: 0;
  }

  .property__grid {
    flex-direction: column;
    gap: 1.2rem;
  }

  .property__card {
    width: 100%;
    min-height: 10rem;
    gap: 1rem;
    padding: 1.6rem 2rem;
  }

  .cost {
    padding-block: 3.2rem;
  }

  .cost__title {
    margin-bottom: 1rem;
  }


  .bukken-hero {
    padding-block: 2.8rem;
  }

  .bukken-category__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bukken-category__toggle {
    align-self: flex-end;
  }

  .bukken-area__list {
    padding-left: 2.4rem;
    gap: 0.6rem;
  }

  .bukken-area__link {
    font-size: 1.3rem;
  }

  .shichoson-intro {
    padding-block: 2.8rem;
  }

  .shichoson-nav {
    --nav-cols: 2;
    padding-bottom: 2rem;
  }

  .shichoson-nav__link {
    font-size: 1.3rem;
    padding: 1.2rem 0.8rem;
    min-height: 4.4rem;
  }

  .shichoson-nav__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .subsidy-section__title {
    margin-bottom: 1rem;
  }

  .subsidy-section__ol {
    padding-left: 2rem;
  }

  .subsidy-table {
    min-width: 44rem;
  }

  .subsidy-table__th,
  .subsidy-table__td {
    padding: 1rem 0.5rem;
  }

  .info-table__tbl,
  .info-table__tbl tbody,
  .info-table__tbl tr,
  .info-table__tbl th,
  .info-table__tbl td {
    display: block;
    width: 100%;
  }

  .info-table__tbl tr {
    border-bottom: 1px solid var(--it-color-border);
  }

  .info-table__tbl th[scope="row"] {
    width: 100%;
    text-align: left;
    padding: 0.4rem 1rem;
    border-bottom: none;
    white-space: nowrap;
  }

  .info-table__tbl th[scope="row"] br {
    display: none;
  }

  .info-table__tbl th[scope="row"]::after {
    content: "";
  }

  .info-table__tbl td {
    border-top: none;
    padding: 0.4rem 1rem;
  }

  .info-table__ul li {
    line-height: 1.5;
  }

  .list-style-white-space {
    padding-left: 0;
  }

  .qa-box a {
    padding-right: 0;
  }

  .qa-box .note {
    padding: 0 0.5rem 1rem;
  }


  .rsn-item__num {
    font-size: 4rem;
  }

  .rsn-item__body {
    padding: 1rem;
  }

  .rsn-price--main,
  .rsn-price--water {
    padding: 0.8rem 1.2rem;
  }

  .rsn-price__num {
    font-size: 2rem;
  }

  .rsn-bb__pct {
    font-size: 4.8rem;
  }

  .rsn__inner {
    gap: 4rem;
  }

  .rsn-item__more {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
  }

  .rsn-item__text {
    margin-top: 0;
  }

  .rsn-item__body--04 {
    padding: 2.4rem 2rem;
  }

  .sdt-hero__name {
    margin-bottom: 2.4rem;
  }

  .sdt-info__table,
  .sdt-info__table tbody,
  .sdt-info__row,
  .sdt-info__th,
  .sdt-info__td {
    display: block;
    width: 100%;
  }

  .sdt-info__th {
    padding-bottom: 0.4rem;
    padding-block: 1.4rem 0.4rem;
    border-bottom: none;
  }

  .sdt-info__td {
    padding-block: 0 1.4rem;
  }

  .sdt-article__sections {
    gap: 2.2rem;
  }

  .sdt-article__section-title {
    font-size: 1.5rem;
  }

  .spd-hero__name {
    font-size: 1.8rem;
  }

  .spd-hero__lead {
    font-size: 1.3rem;
  }

  .spd-flow__item:not(:last-child)::after {
    left: 1.8rem;
  }

  .spd-flow__step-body {
    padding-left: 0;
    text-align: left;
  }

  .spd-flow__step-num {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.2rem;
  }

  .hero-swiper .swiper-pagination {
    top: 6rem !important;
    right: 4% !important;
  }

  .spd-flow__title {
    margin-bottom: 0;
  }


  .tok-area {
    padding: 2.8rem 1.6rem;
  }


}
