@charset "utf-8";
/* CSS Document */
body:not(.gjs-dashed) .fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #222;
}
.fv::before {
  display: none;
}
/* swiper */
.fv .swiper {
  position: relative;
  z-index: 1;
  height: 100%;
}
body.gjs-dashed .fv .swiper {
	height: auto;
}

body:not(.gjs-dashed) .fv .swiper-slide {
  width: 100% !important;
  height: 100vh;
  min-height: 760px;
}
body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
  width: 100% !important;
  height: 100vh;
  min-height: 760px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body:not(.gjs-dashed) .fv .swiper-slide img {
  display: block !important;
  width: 100%;
  height: auto;
  opacity: 0;
}
body:not(.gjs-dashed) .fv .swiper-slide-active .swiper-img, .fv .swiper-slide-duplicate-active .swiper-img, .fv .swiper-slide-prev .swiper-img {
  animation: fv-zoomUp 10s linear 0s normal both;
}
/* overlay */
body:not(.gjs-dashed) .fv .fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(120, 180, 95, 0.86) 0%, rgba(79, 158, 92, 0.74) 42%, rgba(74, 150, 175, 0.72) 100%);
}
body:not(.gjs-dashed) .fv .fv__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 22%, transparent 22%, transparent 100%);
}
/* txtbox */
body:not(.gjs-dashed) .fv .txtbox {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: min(70%, 700px);
  color: #fff;
  text-align: left;
}
.fv .fv__topline {
  display: inline-block;
  position: relative;
  margin: 0 0 38px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #fff;
}
body:not(.gjs-dashed) .fv .fv__topline::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.fv .fv__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 42px;
}
.fv .fv__copyLine {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.fv .fv__copyLine p {
  margin: 0;
}
.fv .fv__label {
  font-size: clamp(34px, 3vw, 54px);
}
.fv .fv__label--green {
  color: #6ea800;
}
.fv .fv__label--orange {
  color: #f57c20;
}
.fv .fv__text {
  color: #343233;
  letter-spacing: 0.04em;
}
.fv .fv__lead {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
/* person */
.fv .fv__person {
  position: absolute;
  left: 45%;
  bottom: 0;
  z-index: 4;
  height: 100%;
  max-height: 700px;
}
.fv .fv__person img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
}
.fv .fv__name {
  position: absolute;
  right: 60px;
  top: 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
}
.fv .fv__name p {
  margin: 0;
}
.fv .fv__company {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.fv .fv__personName {
  letter-spacing: 0.08em;
}
/* cta */
.fv .fv__cta {
  position: absolute;
  right: 7%;
  bottom: 9%;
  z-index: 6;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #ff7a13;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  transition: transform .3s ease, opacity .3s ease;
}
.fv .fv__cta:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}
.fv .fv__cta p {
  color: #fff;
}
.fv__cta .imgbox {
  width: 20px;
  height: 20px;
}
.fv .fv__ctaSmall {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  display: inline-block;
  padding: 0 28px;
}
.fv .fv__ctaSmall::before, .fv .fv__ctaSmall::after {
  content: "";
  position: absolute;
  top: 60%;
  width: 16px;
  height: 2px;
  background: #fff;
}
.fv .fv__ctaSmall::before {
  left: 0;
  transform: translateY(-50%) rotate(60deg);
}
.fv .fv__ctaSmall::after {
  right: 0;
  transform: translateY(-50%) rotate(-60deg);
}
.fv .fv__ctaBig {}
.fv .fv__ctaArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #ff7a13;
  line-height: 1;
}
.fv .fv__ctaArrow i {
  font-size: 14px;
  color: #ff7a13;
}
/* animation */
@keyframes fv-zoomUp {
  0% {
    filter: blur(6px);
    transform: scale(1);
  }
  30% {
    filter: blur(0);
  }
  100% {
    transform: scale(1.15);
  }
}
/* responsive */
@media screen and (max-width: 1080px) {
  .fv {
    height: auto;
    min-height: 980px;
  }
  body:not(.gjs-dashed) .fv .swiper-slide {
    height: 980px;
    min-height: 980px;
  }
  body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
    height: 980px;
    min-height: 980px;
  }
  .fv .txtbox {
    top: 140px;
    left: 6%;
    transform: none;
    width: 88%;
    max-width: none;
    text-align: center;
  }
  .fv .fv__copy {
    margin-bottom: 32px;
  }
  .fv .fv__copyLine {
    margin: auto;
  }
  .fv .fv__lead {
    max-width: 100%;
    text-align: left;
  }
  .fv .fv__person {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 48%;
    max-height: none;
  }
  .fv .fv__person img {
    width: auto;
    height: 100%;
    max-height: 100%;
  }
  .fv .fv__name {
    right: -36px;
    top: 40px;
  }
  .fv .fv__cta {
    right: 6%;
    bottom: 70px;
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 576px) {
  .fv {
    height: auto;
    min-height: 900px;
  }
  .fv {
    height: auto;
    min-height: 900px;
  }
  body:not(.gjs-dashed) .fv .swiper-slide {
    height: 900px;
    min-height: 900px;
  }
  body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
    height: 900px;
    min-height: 900px;
  }
  .fv .txtbox {
    text-align: left;
  }
  .fv .fv__topline {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .fv .fv__copy {
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .fv .fv__copyLine {
    margin: 0;
  }
  .fv .fv__label, .fv .fv__text {
    font-size: 25px;
  }
  .fv .fv__person {
    height: 100%;
    max-height: 350px;
    left: 0;
    bottom: 0;
    transform: none;
  }
  .fv .fv__name {
    right: 0px;
    top: 40px;
  }
  .fv .fv__cta {
    right: 10px;
    bottom: 10px;
    width: 150px;
    height: 150px;
  }
  .fv .fv__ctaSmall {
    display: none;
  }
}
.section01 {
  position: relative;
  overflow: hidden;
  background: #eef3eb;
}
.top_a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}
/* 背景SVG */
.top_a .top_a__bg {
  position: absolute;
  inset: 0;
  background: url("https://seishin-mishima.co.jp/system_panel/uploads/images/top1.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 3;
}
.top_a .top_a__leftbox, .top_a .top_a__txtbox, .top_a .top_a__rightbox {
  position: relative;
  z-index: 1;
}
/* レイアウト */
.top_a .top_a__leftbox, .top_a .top_a__rightbox {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.top_a .top_a__txtbox {
  width: clamp(500px, 36vw, 620px);
  align-items: center;
  text-align: center;
}
/* 画像共通 */
.top_a .top_a__imgbox img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
/* 左画像 */
.top_a .top_a__imgbox--leftMain {
  width: 72%;
  max-width: 300px;
  min-width: 150px;
}
.top_a .top_a__imgbox--leftSub {
  width: 42%;
  margin-top: 28px;
  margin-left: 35%;
  min-width: 150px;
  max-width: 180px;
}
.top_a .top_a__titleWrap {
  margin-bottom: 24px;
}
.top_a .top_a__titleLine {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.top_a .top_a__titleLine p, .top_a .top_a__titleLineSingle {}
.top_a .top_a__titleLineSingle {
  text-align: center;
}
.top_a .top_a__lead {
  margin: 0 0 28px;
  color: #333;
  line-height: 1.9;
}
.top_a .top_a__text {
  margin: 0;
  color: #333;
  line-height: 2.2;
}
/* 右画像 */
.top_a .top_a__rightbox {
  align-items: flex-end;
}
.top_a .top_a__imgbox--rightTop {
  width: 40%;
  min-width: 120px;
  max-width: 180px;
  margin-right: 0;
}
.top_a .top_a__imgbox--rightMiddle {
  width: 72%;
  min-width: 170px;
  max-width: 320px;
  margin-top: 24px;
  margin-right: 80px;
}
.top_a .top_a__imgbox--rightBottom {
  width: 44%;
  min-width: 120px;
  max-width: 250px;
  margin-top: 28px;
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .top_a .top_a__txtbox {
    width: clamp(290px, 30vw, 340px);
  }
  .top_a .top_a__txtbox .top_a__text {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .top_a {
    flex-direction: column;
    gap: 32px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .top_a .top_a__bg {
    background-size: contain;
    background-position: center top;
  }
  .top_a .top_a__leftbox, .top_a .top_a__rightbox, .top_a .top_a__txtbox {
    width: 100%;
    min-width: 0;
  }
  .top_a .top_a__txtbox {
    order: 3;
    padding: 0 20px;
  }
  .top_a .top_a__leftbox {
    order: 2;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .top_a .top_a__rightbox {
    order: 3;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
  }
  .top_a .top_a__imgbox--leftMain, .top_a .top_a__imgbox--leftSub, .top_a .top_a__imgbox--rightTop, .top_a .top_a__imgbox--rightMiddle, .top_a .top_a__imgbox--rightBottom {
    width: 30%;
    min-width: 0;
    max-width: none;
    margin: 0;
  }
  .top_a .top_a__titleWrap {
    margin-bottom: 18px;
  }
  .top_a .top_a__lead {
    margin-bottom: 18px;
  }
  .top_a .top_a__text {
    line-height: 1.9;
  }
}
.top_b {
  position: relative;
  max-width: 1280px;
  margin: auto;
}
/* 飾り */
.top_b .top_b__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.top_b .top_b__deco img {
  display: block;
  width: 100%;
  height: auto;
}
.top_b .top_b__deco--left {
  left: 0px;
  top: 50px;
  width: 170px;
  z-index: 3;
}
.top_b .top_b__deco--right {
  right: 20px;
  top: 40px;
  width: 180px;
  opacity: 0.18;
}
/* カード */
.top_b .top_b__card {
  position: relative;
  z-index: 2;
  width: calc(100% - 60px);
  margin: auto;
  background: #ff731a;
  border-radius: 20px;
  padding: 70px 50px 40px 100px;
  box-sizing: border-box;
}
.top_b .top_b__label {
  position: absolute;
  left: 125px;
  top: -22px;
  background: #fff;
  border: 2px solid #ff731a;
  border-radius: 10px;
  padding: 10px 18px;
}
.top_b .top_b__label p {
  margin: 0;
  color: #ff731a;
  line-height: 1.4;
}
/* 中身 */
.top_b .top_b__inner {
  flex-wrap: nowrap;
  gap: 40px;
}
/* 左情報 */
.top_b .top_b__info {
  width: 45%;
}
.top_b .top_b__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.top_b .top_b__row:last-child {
  margin-bottom: 0;
}
.top_b .top_b__row p {
  margin: 0;
  color: #fff;
  line-height: 1.8;
  font-weight: 500;
}
.top_b .top_b__head {
  width: 100px;
  flex: 0 0 100px;
}
.top_b .top_b__dots {
  width: 12px;
  flex: 0 0 12px;
  text-align: center;
}
.top_b .top_b__text {
  flex: 1 1 auto;
}
/* 右ビジュアル */
.top_b .top_b__visual {
  width: 42%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}
.top_b .top_b__photo {
  width: min(100%, 340px);
  margin-top: -150px;
}
.top_b .top_b__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.top_b .top_b__nameWrap {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.top_b .top_b__nameWrap p {
  color: #fff;
  line-height: 1;
}
.top_b .top_b__nameJp {
  letter-spacing: 0.08em;
}
.top_b .top_b__nameEn {
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}
/* 1080以下 */
@media screen and (max-width: 1080px) {
  .top_b .top_b__card {
    width: calc(100% - 40px);
    padding: 80px 34px 34px;
  }
  .top_b .top_b__label {
    left: 90px;
  }
  .top_b .top_b__inner {
    gap: 24px;
  }
  .top_b .top_b__info {
    width: 54%;
  }
  .top_b .top_b__visual {
    width: 46%;
    gap: 16px;
  }
  .top_b .top_b__photo {
    width: 280px;
  }
  .top_b .top_b__deco--left {
    width: 95px;
    left: 0;
    top: 30px;
  }
}
/* 768以下 */
@media screen and (max-width: 768px) {
  .top_b .top_b__photo {
    margin-top: 0px;
  }
  .top_b .top_b__deco--left {
    width: 72px;
    right: 70%;
    left: auto;
    top: 20px;
  }
  .top_b .top_b__deco--right {
    width: 110px;
    top: 30px;
    right: -10px;
  }
  .top_b .top_b__card {
    border-radius: 18px;
    padding: clamp(56px, 7vw, 76px) 20px clamp(32px, 4.8vw, 50px);
  }
  .top_b .top_b__label {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 40px);
    text-align: center;
  }
  .top_b .top_b__inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 28px;
  }
  .top_b .top_b__info, .top_b .top_b__visual {
    width: 100%;
  }
  .top_b .top_b__info {
    max-width: 450px;
  }
  .top_b .top_b__visual {
    justify-content: center;
    gap: 12px;
  }
  .top_b .top_b__photo {
    width: min(62vw, 250px);
  }
  .top_b .top_b__nameWrap {
    gap: 6px;
  }
  .top_b .top_b__row {
    gap: 6px;
    margin-bottom: 10px;
  }
  .top_b .top_b__dots {
    width: 10px;
    flex: 0 0 10px;
  }
}
/* 576以下 */
@media screen and (max-width: 576px) {
  .top_b .top_b__label {
    padding: 8px 14px;
  }
  .top_b .top_b__row p {
    line-height: 1.6;
  }
  .top_b .top_b__head {
    width: 70px;
    flex: 0 0 70px;
  }
  .top_b .top_b__photo {
    width: min(66vw, 220px);
  }
}
.section02 {
  background: #e8f2e2;
}
.top_c {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}
/* 見出し */
.top_c .top_c__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
.top_a__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  padding: 8px 20px;
  margin-bottom: 24px;
  border: 2px solid #ff6e1d;
  border-radius: 999px;
  background: #fffdf8;
  position: relative;
}
.top_a__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #ff6e1d;
}
.top_a__label h2 {
  margin: 0;
  font-weight: 500;
}
.top_c .top_c__titleWrap {
  margin-bottom: 22px;
}
.top_c .top_c__titleLine p {
  margin: 0;
  line-height: 1.35;
}
.top_c .top_c__titleGreen {
  margin-left: 4px;
  margin-right: 4px;
}
.top_c .top_c__lead {
  margin: 0;
  line-height: 2;
  color: #333;
}
/* カード共通 */
.top_c .top_c__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.top_c .top_c__card {
  width: calc((100% - 28px) / 2);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.top_c .top_c__cardImg {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.top_c .top_c__cardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 番号 */
.top_c .top_c__number {
  position: absolute;
  left: 20px;
  top: 30px;
}
.top_c .top_c__number p {
  margin: 0;
  color: #fff;
  line-height: 1;
  position: relative;
  padding-right: 34px;
}
.top_c .top_c__number p::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  width: 60px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
  transform-origin: right center;
}
.top_c .top_c__cardBody {
  padding: 24px 30px 40px;
}
.top_c .top_c__cardTitle {
  margin: 0 0 10px;
  color: #333;
  position: relative;
  padding-left: 20px;
}
.top_c .top_c__cardTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6e1d;
  transform: translateY(-50%);
}
.top_c .top_c__cardText {
  margin: 0 0 22px;
  color: #333;
  line-height: 2;
}
.top_c .top_c__subTitle {
  position: relative;
  text-align: center;
  margin-bottom: 18px;
}
.top_c .top_c__subTitle::before, .top_c .top_c__subTitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  border-top: 1px dotted #ffb287;
}
.top_c .top_c__subTitle::before {
  left: 0;
}
.top_c .top_c__subTitle::after {
  right: 0;
}
.top_c .top_c__subTitle p {
  margin: 0;
  display: inline-block;
  padding: 0 14px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.top_c .top_c__list {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}
.top_c .top_c__listCol {
  width: 50%;
}
.top_c .top_c__listItem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.top_c .top_c__listItem:last-child {
  margin-bottom: 0;
}
.top_c .top_c__listItem i {
  width: 22px;
  height: 22px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #ff6e1d;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  box-sizing: border-box;
  margin-top: 2px;
}
.top_c .top_c__listItem p {
  margin: 0;
  font-weight: 500;
}
/* 横長カード */
.top_c .top_c__card--wide {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 40px 50px 40px;
  box-sizing: border-box;
  overflow: visible;
}
.top_c .top_c__wideLeft {
  width: 46%;
  padding-right: 24px;
  box-sizing: border-box;
}
.top_c .top_c__wideRight {
  width: 54%;
  background: #fff3e9;
  border-radius: 10px;
  padding: 20px 18px 16px;
  box-sizing: border-box;
  align-self: center;
}
.top_c .top_c__btn--left a {
  margin-left: 0;
}
.top_c .top_c__circleWrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.top_c .top_c__circleItem {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
.top_c .top_c__circleImg {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
.top_c .top_c__circleImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top_c .top_c__circleItem p {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}
/* 1080以下 */
@media screen and (max-width: 1080px) {
  .top_c .top_c__card {
    width: 100%;
  }
  .top_c .top_c__card--wide {
    flex-direction: column;
    gap: 24px;
  }
  .top_c .top_c__wideLeft, .top_c .top_c__wideRight {
    width: 100%;
    padding-right: 0;
  }
  .top_c .top_c__btn--left a {
    margin-left: auto;
    margin-right: auto;
  }
}
/* 768以下 */
@media screen and (max-width: 768px) {
  .top_c .top_c__head {
    margin-bottom: 42px;
  }
  .top_c .top_c__titleLine {
    padding: 0 34px;
    gap: 4px;
  }
  .top_c .top_c__titleLine::before, .top_c .top_c__titleLine::after {
    font-size: 30px;
  }
  .top_c .top_c__lead {
    line-height: 1.8;
    text-align: left;
  }
  .top_c .top_c__cardBody {
    padding: 20px 30px 40px;
  }
  .top_c .top_c__list {
    flex-direction: column;
    gap: 8px;
  }
  .top_c .top_c__listCol {
    width: 100%;
  }
  .top_c .top_c__circleWrap {
    flex-direction: column;
    align-items: center;
  }
  .top_c .top_c__circleItem {
    width: 100%;
    max-width: 220px;
  }
}
/* 576以下 */
@media screen and (max-width: 576px) {
  .top_c .top_c__titleWrap {
    margin-bottom: 16px;
  }
  .top_c .top_c__titleLine {
    padding: 0;
  }
  .top_c .top_c__titleLine::before, .top_c .top_c__titleLine::after {
    display: none;
  }
  .top_c .top_c__card {
    border-radius: 14px;
  }
  .top_c .top_c__card--wide {
    padding: 40px 30px 40px;
  }
  .top_c .top_c__number p {
    font-size: 22px;
  }
  .top_c .top_c__btn a {
    max-width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
  }
  .top_c .top_c__subTitle::before, .top_c .top_c__subTitle::after {
    width: 20%;
  }
}
.newswrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
/* head */
.newswrap .titlebox1 {
  text-align: center;
}
.newswrap .newswrap__icon {
  width: 40px;
  margin: 0 auto 10px;
}
.newswrap .newswrap__icon img {
  width: 100%;
  display: block;
}
.newswrap .newswrap__title {
  margin: 0 0 20px;
}
.newswrap .newswrap__lead {
  margin: 0;
  line-height: 1.9;
}
/* list */
.newswrap .webgene-blog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  width: 100%;
}
/* card */
.newswrap .webgene-item {
  min-width: 0;
}
.newswrap .webgene-item a {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.newswrap .webgene-item .imgbox {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
}
.newswrap .webgene-item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.newswrap .webgene-item .txtbox {
  padding: 16px 16px 18px;
}
.newswrap .webgene-item .txtbox h3 {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #333;
  font-weight: 700;
}
.newswrap .webgene-item .txtbox p {
  margin: 0;
  color: #555;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 1080 */
@media screen and (max-width: 1080px) {
  .newswrap .webgene-blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
/* 768 */
@media screen and (max-width: 576px) {
  .newswrap {
    width: 100%;
    max-width: 100%;
  }
  .newswrap .webgene-blog {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .newswrap .webgene-item a {
    width: 100%;
    box-sizing: border-box;
  }
  .newswrap .newswrap__lead {
    line-height: 1.8;
    text-align: left;
  }
}
/* ---------- newstop_b ---------- */
.newstop_b .width-1280-max {
  margin: 0 auto;
}
/* list */
.newstop_b .webgene-blog {
  width: 100%;
}
.newstop_b .webgene-blog .webgene-item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d9ddd7;
}
.newstop_b .webgene-blog .webgene-item:first-child {
  border-top: 1px solid #d9ddd7;
  padding-top: 18px;
}
.newstop_b .webgene-blog .webgene-item:last-child {
  margin-bottom: 0;
}
.newstop_b .webgene-blog .webgene-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.newstop_b .webgene-blog .webgene-item a .item {
  width: 100%;
}
.newstop_b .webgene-blog .webgene-item a h3 {
  width: 100%;
  margin: 0 0 12px;
  line-height: 1.8;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newstop_b .webgene-blog .webgene-item a .label {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
}
.newstop_b .webgene-blog .webgene-item a .date {
  margin: 0;
  font-weight: 500;
}
.newstop_b .webgene-blog .webgene-item a .catelabel {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3dfcf;
  color: #ff6e1d;
  line-height: 1.4;
  font-size: 12px;
}
/* ---------- 576 ---------- */
@media (max-width: 576px) {
  .newstop_b .newstop_b__title {
    margin-bottom: 6px;
  }
  .newstop_b .webgene-blog .webgene-item {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .newstop_b .webgene-blog .webgene-item a h3 {
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }
  .newstop_b .webgene-blog .webgene-item a .item {
    flex-direction: column;
  }
  .newstop_b .webgene-blog .webgene-item a .label, .newstop_b .webgene-blog .webgene-item a h3 {
    width: 100%;
    justify-content: flex-start;
  }
  .newstop_b .webgene-blog .webgene-item a .label {
    gap: 10px;
  }
  .newstop_b .webgene-blog .webgene-item a .catelabel {
    font-size: 11px;
    padding: 4px 9px;
  }
}
.company_a .item p {
  font-weight: 500;
}
.contact-form_a {
  background: #fff;
  border-radius: 10px;
  padding-top: 80px;
}
.section06 {
  position: relative;
  overflow: hidden;
  background: #ff6e1d;
}
.section06 .contacthead {
  position: relative;
  width: 100%;
  min-height: 72px;
  background: #f85d12;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.section06 .sideicon2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 24px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section06 .contacthead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid #f85d12;
}
.section06 .section06__person {
  position: absolute;
  right: 6%;
  bottom: 0px;
  width: clamp(180px, 28vw, 350px);
  z-index: 3;
}
.section06 .section06__person img {
  display: block;
  width: 100%;
  height: auto;
}
.section06 .section06__balloon {
  position: absolute;
  top: 22px;
  right: -80px;
  width: 200px;
  height: 120px;
  background: url("https://seishin-mishima.co.jp/system_panel/uploads/images/balloon1.svg") no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 14px;
  box-sizing: border-box;
}
.section06 .section06__balloon p {
  margin: 0;
  color: #ff6e1d;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .section06 .section06__person {
    right: 6%;
    bottom: 0;
    width: clamp(180px, 24vw, 280px);
  }
  .section06 .section06__balloon {
    display: none;
  }
}
@media screen and (max-width:576px) {
  .section06 .section06__person {
    display: none;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  body:not(.gjs-dashed) .fv .txtbox{
    width: 90%;
    top: 40%;
  }
  .fv .fv__copyLine{padding: 8px 12px;}
  .fv .fv__label, .fv .fv__text{font-size: 22px;}
  .fv .fv__name{top: 60px;right: 80px}
  .fv .fv__person img{transform:translateY(70px) translateX(-50px);}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}