@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
.whitebox {
  background: #fff;
  border: 2px solid #FF6E1D;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: flex-start;
  position: relative;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.step_row {
  flex-wrap: wrap;
  gap: 40px clamp(18px, 2.5vw, 28px);
  align-items: flex-start;
}
.step_row .merit_card {
  width: calc(100% / 3 - (clamp(18px, 2.5vw, 28px) * 2 / 3));
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 画像 */
.step_row .merit_card .imgbox {
  width: 100%;
  aspect-ratio: 4 / 3; /* 必要なら 16/9 に変更 */
  overflow: hidden;
  border-radius: 4px;
  background: #f2f4f7;
}
.step_row .merit_card .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 下の青いラベル */
.step_row .merit_card .merit_txt {
  margin: 12px 0 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #FF6E1D;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 92%;
  white-space: normal;
  line-height: 1.3;
}
/* 1080px以下：2列 */
@media (max-width: 1080px) {
  .step_row .merit_card {
    width: calc(100% / 2 - (clamp(18px, 2.5vw, 28px) / 2));
  }
}
@media (max-width: 576px) {
  .step_row .merit_card {
    width: 100%;
    max-width: 520px;
  }
}
.boxwrap1 {
  max-width: 1280px;
  display: flex;
  gap: 60px;
}
.boxwrap1 .leftbox {
  width: calc((100% - 60px) * 0.52);
  position: relative;
}
.boxwrap1 .leftbox::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom:  -20px;
  width: 90%;
  height:100%;
  background: url("https://seishin-mishima.co.jp/system_panel/uploads/images/boxwrap1.svg") no-repeat left bottom / contain;
  pointer-events: none;
}
.boxwrap1 .leftbox .imgbox {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.boxwrap1 .leftbox .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.boxwrap1 .rightbox {
  width: calc((100% - 60px) * 0.48);
}
.boxwrap1 .rightbox .txtbox h2 {
  margin: 0 0 28px;
  line-height: 1.4;
  font-weight: 700;
}
.boxwrap1 .rightbox .txtbox p {
  margin: 0;
  line-height: 2;
  color: #333;
}
/* =========================
   boxwrap2
   ========================= */
.boxwrap2 {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.boxwrap2 .feature_item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 40px;
  border: 2px solid #ff6e1d;
  border-radius: 12px;
  background: #fff3e8;
}
.boxwrap2 .feature_item .leftbox {
  width: clamp(200px, 20vw, 280px);
  flex: 0 0 clamp(200px, 20vw, 280px);
}
.boxwrap2 .feature_item .leftbox .imgbox {
  width: 100%;
  aspect-ratio: 7/5;
  border-radius: 8px;
  overflow: hidden;
}
.boxwrap2 .feature_item .leftbox .imgbox img {
  display: block;
  width: 100%;
  height: auto;
}
.boxwrap2 .feature_item .rightbox {
  flex: 1 1 auto;
}
.boxwrap2 .feature_item .rightbox .txtbox h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
}
.boxwrap2 .feature_item .rightbox .txtbox h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6e1d;
  transform: translateY(-50%);
}
.boxwrap2 .feature_item .rightbox .txtbox p {
  margin: 0;
  color: #333;
  line-height: 2;
}
/* =========================
   responsive
   ========================= */
@media screen and (max-width: 1080px) {
  .boxwrap1 {
    gap: 30px;
  }
  .boxwrap2 .feature_item {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .boxwrap1 {
    flex-direction: column;
    margin-bottom: 70px;
  }
  .boxwrap1 .leftbox, .boxwrap1 .rightbox {
    width: 100%;
  }
  .boxwrap1 .rightbox .txtbox h2 {
    text-align: center;
  }
  .boxwrap2 .feature_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .boxwrap2 .feature_item .leftbox {
    width: 100%;
    flex: none;
  }
  .boxwrap2 .feature_item .leftbox .imgbox {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .boxwrap1 {
    margin-bottom: 50px;
  }
  .boxwrap2 {
    gap: 18px;
  }
  .boxwrap2 .feature_item {
    padding: 18px;
  }
  .boxwrap2 .feature_item .rightbox .txtbox p, .boxwrap1 .rightbox .txtbox p {
    line-height: 1.8;
  }
}
.pagetitle {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 320px;
  max-height: 640px;
  aspect-ratio: 2.25 / 1;
  display: flex;
  align-items: center;
  padding: clamp(30px, 6vw, 80px);
  overflow: hidden;
  color: #333;
}
.pagetitle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(77, 63, 54, 0.4);
  z-index: 0;
  pointer-events: none;
}
body.gjs-dashed .pagetitle::after {
  display: none;
}
.pagetitle .titlebox {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  top: 60px;
}
.pagetitle .titlebox p, .pagetitle .titlebox .en {
  color: #fff;
}
.pagetitle .titlebox .en, .pagetitle .titlebox p {
  opacity: 0;
}
body.gjs-dashed .pagetitle .titlebox .title, body.gjs-dashed .pagetitle .titlebox p {
  opacity: 1;
}
.pagetitle .titlebox p {
  animation-name: pagetitle1;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
  text-transform: uppercase;
}
@keyframes pagetitle1 {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
    letter-spacing: -0.2rem;
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 576px) {
  .pagetitle h1 {
    font-size: 20px;
  }
  .pagetitle p {
    font-size: 14px;
  }
}
.pagetitle.pagetitle2 {
  min-height: 250px;
  max-height: 450px;
  background: #79b300;
}
.pagetitle.pagetitle2 .titlebox {
  top: 30px;
}
.pagetitle.pagetitle2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 11%, transparent 11%, transparent 89%, rgba(255, 255, 255, 0.18) 89%, rgba(255, 255, 255, 0.18) 100%);
  z-index: 0;
  pointer-events: none;
}
.pagetitle.pagetitle2::after {
  background: none;
}
.pagetitle.pagetitle2 img {
  display: none;
}
@media screen and (max-width: 576px) {}
.top_c__btn a {
  width: 100%;
  max-width: 290px;
  min-height: 52px;
  margin: auto;
  border: 1.5px solid #ff6e1d;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  background: #fff;
  transition: .3s;
}
.top_c__btn a:hover {
  background: #ff6e1d;
}
.top_c__btn a:hover p {
  color: #fff;
}
.top_c__btn a:hover .top_c__btnIcon {
  background: #fff;
  color: #ff6e1d;
}
.top_c__btn a:hover .top_c__btnIcon i {
  color: #ff6e1d;
}
.top_c__btn p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.top_c__btnIcon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6e1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex: 0 0 auto;
}
.top_c__btnIcon i {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.header .default_txt2 {
  font-weight: 600;
}
.header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  z-index: 9999;
  min-height: 80px;
}
.header .header_left {
  width: 100%;
  max-width: 230px;
}
.header .header_left a{
  width: 100%;
}
.header .header_logo a {
  display: block;
}
.header .header_logo img {
  display: block;
  height: 52px;
  width: auto;
}
.header .header_center {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}
/* header top row */
.header .topbox {
  margin-right: 0;
  margin-left: auto;
  gap: clamp(0px, 1.5vw, 30px);
  flex-wrap: nowrap;
}
.header_links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_links .header_link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  white-space: nowrap;
  transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}
.header_links .header_link p {
  margin: 0;
  line-height: 1;
  font-size: clamp(13px, 1.5vw, 15px);
}
.header_links .header_link .icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #5BAE07;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  transition: transform 0.25s ease;
}
.header_links .header_link:hover .icon {
  transform: translateX(3px);
}
.header_links .header_link .icon i {
  color: #fff;
  line-height: 1;
  font-size: 12px; /* ←ここで調整 */
}

.contact_cta_btns {
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}
.contact_cta_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 999px;
  height: 50px;
  padding: 0 clamp(0px, 3vw, 20px);
}
.contact_cta_btn_tel .imgbox {
  width: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_cta_btn_tel {
  background: #71AD00;
  color: #fff;
}
.contact_cta_btn_tel .imgbox {
  width: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_cta_btn_mail {
  background: #f57c00;
  color: #fff;
}
.contact_cta_btn_mail .imgbox {
  width: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* header nav */
.header .header_nav {
  width: 100%;
}
.header .header_nav_inner {
  padding: 0 16px;
}
.header .header_nav_items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  padding-bottom: 6px;
}
.header .header_nav_items .li a {
  text-decoration: none;
  color: #343233;
  display: block;
  padding: 6px 0;
  white-space: nowrap;
}
/* header menu btn */
.header .header_menu_btn {
  padding: 20px 20px 10px;
  background: #5BAE07;
  display: none;
}
.header .menu-bt {
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.header .menu-bt .line {
  width: 30px;
}
.header .menu-bt .line div {
  height: 2px;
  background: #fff;
  margin: 6px 0;
}
.header .menu-bt .line div {
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
/* active の時：× */
.header .menu-bt.active .line div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header .menu-bt.active .line div:nth-child(2) {
  opacity: 0;
}
.header .menu-bt.active .line div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* burger menu overlay */
.menu-wrap.burgermenu_e {
  display: none;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu-wrap.burgermenu_e::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #2C2C2C;
  opacity: 0.6;
}
.menu-wrap.burgermenu_e .mene_box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1000px;
  max-width: 100%;
  margin: 0;
  overflow-y: auto;
  z-index: 2;
}
.menu-wrap.burgermenu_e .mene_box .titlebox {
  gap: 10px;
  margin-bottom: 20px;
}
.menu-wrap.burgermenu_e .mene_box .titlebox img {
  width: 20px;
}
.menu-wrap.burgermenu_e .mene_box .nav_box {
  padding: 100px clamp(40px, 8vw, 110px) clamp(80px, 12vw, 100px);
  margin-top: clamp(80px, 12vw, 150px);
  background-color: #53A431;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul {
  flex-direction: column;
  align-items: flex-start;
  max-width: 250px;
  margin-right: auto;
  margin-left: auto;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul .li {
  padding: 15px 0;
}
.menu-wrap.burgermenu_e .mene_box .nav_box .ul .li a {
  justify-content: flex-start;
  gap: 15px;
}
.menu-wrap.burgermenu_e .mene_box a .icon {
  width: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: transform 0.3s ease;
}
.menu-wrap.burgermenu_e .mene_box a .icon i {
  font-size: 11px;
  color: #fff;
}
.menu-wrap.burgermenu_e .mene_box a:hover .icon {
  transform: translateX(3px);
}
.menu-wrap.burgermenu_e .mene_box .sns-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.menu-wrap.burgermenu_e .mene_box .sns-icons a img {
  width: 24px;
  height: 24px;
}
.menu-wrap.burgermenu_e .mene_box .lang-buttons {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 10px;
}
.menu-wrap.burgermenu_e .mene_box .lang-btn {
  padding: 6px 20px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  background-color: #bfa256;
  color: white;
}
.menu-wrap.burgermenu_e .mene_box .lang-btn p {
  color: #fff;
}
.menu-wrap.burgermenu_e .cta-row {
  border-top: 1px solid #DEF9E2;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* ボタン */
.menu-wrap.burgermenu_e .cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 50px;
  background: #fff;
  color: #343233;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.menu-wrap.burgermenu_e .cta-btn p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
/* アイコン */
.menu-wrap.burgermenu_e .cta-btn i {
  font-size: 16px;
  color: #343233;
}
/* ホバー */
.menu-wrap.burgermenu_e .cta-btn:hover p {}
/* old head_menu system */
.header .logo {
  width: 30%;
  max-width: 160px;
  min-width: 150px;
}
.header .head_menu, .header .head_menu .ul {
  gap: clamp(20px, 5vw, 40px);
}
.header .head_menu, .header .head_menu .ul p {
  font-size: clamp(8px, 6vw, 16px);
  white-space: nowrap;
}
.header .head_menu {
  padding: 20px 30px;
  border-radius: 200px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(113, 113, 113, 0.1);
}
.header .head_menu .ul .contact_bt {
  padding: 6px 18px;
  background-color: #383743;
  border-radius: 100px;
}
.header .head_menu .ul .contact_bt p {
  color: #fff;
}
.header .head_menu .menu-bt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.header .head_menu .menu-bt .line {
  position: relative;
  width: 32px;
  height: 22px;
}
.header .head_menu .menu-bt .line div {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #222;
  transition: ease 0.4s;
}
.header .head_menu .menu-bt .line div:nth-of-type(1) {
  top: 0;
}
.header .head_menu .menu-bt .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .head_menu .menu-bt .line div:nth-of-type(3) {
  bottom: 0;
}
.header .head_menu .menu-bt.active .line div:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .head_menu .menu-bt.active .line div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  opacity: 0;
}
.header .head_menu .menu-bt.active .line div:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
/* ---------- 1280px ---------- */
@media screen and (max-width: 1280px) {
  .header .header_menu_btn {
    display: block;
  }
  .header .head_menu, .header .head_menu .ul {
    gap: clamp(12px, 3vw, 30px);
  }
  .header .header_links, .header_nav {
    display: none;
  }
  .pagetitle_e {
    padding-top: 87px;
  }
  .header {
    flex-wrap: nowrap;
  }
}
/* ---------- 1080px ---------- */
@media screen and (max-width: 1080px) {
  .header {
    align-items: center;
  }
  .header .header_left {
    border-right: 0;
  }
  .header .header_center {
    flex: 1;
  }
  .header .topbox {
    justify-content: flex-end;
  }
  .header .contact_cta_btns p {
    font-size: 16px;
  }
  .header .header_links {
    display: none;
  }
  .header .header_nav {
    display: none;
  }
  .header .header_menu_btn {
    padding: 10px 12px;
    border-left: 0;
  }
  .menu-wrap.burgermenu_e .mene_box {
    right: 0px;
  }
  .header .head_menu, .header .head_menu .ul {
    gap: 20px;
  }
  .header .head_menu {
    padding: 15px 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .header .head_menu .ul {
    display: none;
  }
  .header .head_menu .ul p {
    font-size: 14px;
  }
  .header .head_menu .ul .contact_bt {
    padding: 3px 12px 5px;
  }
  .header .head_menu .menu-bt .line {
    width: 26px;
    height: 20px;
  }
}
/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .menu-wrap.burgermenu_e .mene_box .nav_box {
    border-radius: 0px;
  }
  .header .contact_cta_btn {
    display: none;
  }
}
/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .header .contact_cta_btn_tel {
    display: none;
  }
  .header .contact_cta_btn {
    padding: 10px 12px;
  }
  .menu-wrap.burgermenu_e .mene_box {
    background-color: #53A431;
  }
  .menu-wrap.burgermenu_e .mene_box .nav_box {
    padding: clamp(40px, 10vw, 100px) 20px clamp(80px, 12vw, 100px);
  }
  .menu-wrap.burgermenu_e .mene_box .nav_box .ul .li a {
    gap: 10px;
  }
  .menu-wrap.burgermenu_e .mene_box a .icon {
    width: 22px;
  }
  .menu-wrap.burgermenu_e .mene_box a .icon i {
    font-size: 8px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  .menu-wrap.burgermenu_e .cta-row {
    border-top: 1px solid #DEF9E2;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.footer_k {
  background-color: #242328;
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer_k .logo {
  width: 100%;
  max-width: 300px;
}
.footer_k > div {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer_k .ul {
  gap: 30px;
}
.footer_k .copyright {
  margin-right: auto;
  color: rgba(51, 51, 51, 0.4);
}
@media screen and (max-width: 1080px) {
  /* ---------- footerH ---------- */
  .footer_k {
    padding-top: 30px;
    flex-direction: column;
  }
  .footer_k > div {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
  }
  .footer_k .rightbox {
    display: none;
  }
  .footer_k .copyright {
    margin-left: auto;
  }
}
.sideicon1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 44px;
}
.sideicon1::before, .sideicon1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sideicon1::before {
  left: 0;
  background-image: url("https://seishin-mishima.co.jp/system_panel/uploads/images/sideicon1.svg");
}
.sideicon1::after {
  right: 0;
  background-image: url("https://seishin-mishima.co.jp/system_panel/uploads/images/sideicon2.svg");
}
.sideicon2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 60px;
}
.sideicon2::before, .sideicon2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sideicon2::before {
  left: 0;
  background-image: url("https://seishin-mishima.co.jp/system_panel/uploads/images/sideicon3.svg");
}
.sideicon2::after {
  right: 0;
  background-image: url("https://seishin-mishima.co.jp/system_panel/uploads/images/sideicon4.svg");
}
.titlebox2 .imgbox {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineheight22 {
  line-height: 2.2;
  letter-spacing: 0.08em;
}
.txtwhite {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .txt-center {
    text-align: left;
  }
}
.font400 {
  font-weight: 400;
}
.font500 {
  font-weight: 500;
}
.color1 {
  color: #FF6E1D;
}
.color2 {
  color: #71AD00;
}
.color3 {
  color: ;
}
.bg1 {
  background: #DEF5DD;
}
.bg2 {
  background: #FDFEFD;
}
.bg3 {
  background: #FF6E1D;
}
.outfit {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.entitle0 {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(40px, 4vw, 72px);
  letter-spacing: 0.2rem;
}
.entitle1 {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(24px, 3vw, 46px);
  letter-spacing: 0.2rem;
}
.entitle2 {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: 0.1rem;
}
.entitle3 {
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: 0.1rem;
}
.entxt1 {
  font-family: "Outfit", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: 0.1rem;
}
.entxt2 {
  font-family: "Outfit", "Noto Sans JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: 0.1rem;
}
.default_title0 {
  font-size: clamp(30px, 3.2vw, 50px);
}
.default_title1 {
  font-size: clamp(22px, 3.2vw, 46px);
}
.default_title2 {
  font-size: clamp(20px, 3.0vw, 32px);
}
.default_title3 {
  font-size: clamp(18px, 2.8vw, 28px);
}
.default_title4 {
  font-size: clamp(18px, 1.8vw, 22px);
}
.default_txt1 {
  font-size: clamp(18px, 1.2vw, 20px);
}
.default_txt2 {
  font-size: clamp(15px, 1.4vw, 18px);
}
.default_txt3 {
  font-size: clamp(12px, 1.2vw, 14px);
}
.mg_b_1 {
  margin-bottom: 150px;
}
.mg_b_2 {
  margin-bottom: 100px;
}
.mg_b_3 {
  margin-bottom: 80px;
}
.mg_b_4 {
  margin-bottom: 50px;
}
.mg_b_5 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_b_1 {
    margin-bottom: 100px;
  }
  .mg_b_2 {
    margin-bottom: 80px;
  }
  .mg_b_3 {
    margin-bottom: 60px;
  }
  .mg_b_4 {
    margin-bottom: 40px;
  }
  .mg_b_5 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_b_1 {
    margin-bottom: 80px;
  }
  .mg_b_2 {
    margin-bottom: 60px;
  }
  .mg_b_3 {
    margin-bottom: 50px;
  }
  .mg_b_4 {
    margin-bottom: 30px;
  }
  .mg_b_5 {
    margin-bottom: 20px;
  }
}
.mg_t_1 {
  margin-top: 150px;
}
.mg_t_2 {
  margin-top: 100px;
}
.mg_t_3 {
  margin-top: 80px;
}
.mg_t_4 {
  margin-top: 50px;
}
.mg_t_5 {
  margin-top: 30px;
}
@media screen and (max-width: 1080px) {
  .mg_t_1 {
    margin-top: 100px;
  }
  .mg_t_2 {
    margin-top: 80px;
  }
  .mg_t_3 {
    margin-top: 60px;
  }
  .mg_t_4 {
    margin-top: 40px;
  }
  .mg_t_5 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .mg_t_1 {
    margin-top: 80px;
  }
  .mg_t_2 {
    margin-top: 60px;
  }
  .mg_t_3 {
    margin-top: 50px;
  }
  .mg_t_4 {
    margin-top: 30px;
  }
  .mg_t_5 {
    margin-top: 20px;
  }
}
.pd_wrap {
  padding: 150px 80px 0;
}
.pd_wrap_all {
  padding: 150px 80px 150px;
}
.pd_wrap_side {
  padding-left: 80px;
  padding-right: 80px;
}
.pd_wrap_t {
  padding-top: 150px;
}
.pd_wrap_b {
  padding-bottom: 150px;
}
.pd_wrap_tb {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pd_wrap_t {
    padding-top: 100px;
  }
  .pd_wrap_b {
    padding-bottom: 100px;
  }
  .pd_wrap_tb {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pd_wrap_t {
    padding-top: 80px;
  }
  .pd_wrap_b {
    padding-bottom: 80px;
  }
  .pd_wrap_tb {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
html {}
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #EFF8EF;
  color: #343233;
}
body .bg_img_wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img {
  display: none;
}
body .bg_img_wrap2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img {
  display: none;
}
a {
  display: inline-block;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.5;
}
a p, a, a i {
  color: #000000;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-black {
  font-weight: 900;
}
.cate_wrap > .cate {
  padding-top: 150px;
}
/* ---------- common ---------- */
/* ---------- header ---------- */
.header {}
/* ---------- footer ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}
.sc-anime.topin.on.active {
  animation-name: topin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}
.sc-anime.bottomin.on.active {
  animation-name: bottomin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}
.sc-anime.leftin.on.active {
  animation-name: leftin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}
.sc-anime.rightin.on.active {
  animation-name: rightin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.fadein.on {
  opacity: 0;
}
.sc-anime.fadein.on.active {
  animation-name: fadein;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin.on {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin.on.active {
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sc-anime.blurin2.on {
  opacity: 0;
  transform: translateY(50px);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.sc-anime.blurin2.on.active {
  animation-name: blurin2;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes blurin2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
/* color */
.txt-color-normal {
  color: #000000;
}
.txt-white {
  color: #ffffff;
}
.txt-red {
  color: red;
}
.txt-color1 {
  color: #FFE93C
}
.txt-color2 {
  color: #F1F1E9
}
.txt-color3 {
  color: #021745
}
.txt-color4 {
  color: #EBF5E5
}
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: black
}
.bg-color1 {
  background-color: #FFE93C
}
.bg-color2 {
  background-color: #F1F1E9
}
.bg-color3 {
  background-color: #021745
}
.bg-color4 {
  background-color: #EBF5E5
}
.border-color1 {
  border-color: #FFE93C
}
.border-color2 {
  border-color: #F1F1E9
}
.border-color3 {
  border-color: #021745
}
.border-color4 {
  border-color: #EBF5E5
}
.hvr-txt-color-normal:hover {
  color: #000000;
}
.hvr-txt-white:hover {
  color: #ffffff;
}
.hvr-txt-red:hover {
  color: red;
}
.hvr-txt-color1:hover {
  color: #FFE93C
}
.hvr-txt-color2:hover {
  color: #F1F1E9
}
.hvr-txt-color3:hover {
  color: #021745
}
.hvr-txt-color4:hover {
  color: #EBF5E5
}
.hvr-bg-white:hover {
  background-color: #ffffff;
}
.hvr-bg-black:hover {
  background-color: black
}
.hvr-bg-color1:hover {
  background-color: #FFE93C
}
.hvr-bg-color2:hover {
  background-color: #F1F1E9
}
.hvr-bg-color3:hover {
  background-color: #021745
}
.hvr-bg-color4:hover {
  background-color: #EBF5E5
}
.hvr-border-color1:hover {
  border-color: #FFE93C
}
.hvr-border-color2:hover {
  border-color: #F1F1E9
}
.hvr-border-color3:hover {
  border-color: #021745
}
.hvr-border-color4:hover {
  border-color: #EBF5E5
}

.comming_soon {
	position: relative;
}
.comming_soon > div{
	position: relative;
	-ms-filter: blur(10px)!important;
	filter: blur(10px)!important;
	opacity: 0.5!important;
}
.comming_soon::after{
	content: "現在、準備中です。";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: clamp(18px,1.8vw,22px);
	font-weight: 700;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 60px 0;
  }
  .pd_wrap_all {
    padding: 150px 60px 150px;
  }
  .pd_wrap_side {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }
  .pd_wrap_all {
    padding: 100px 50px 100px;
  }
  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }
  .cate_wrap > .cate {
    padding-top: 100px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 20px 0;
  }
  .pd_wrap_all {
    padding: 80px 20px 80px;
  }
  .pd_wrap_side {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cate_wrap > .cate {
    padding-top: 80px;
  }
  /* ---------- common ---------- */
  /* ---------- header ---------- */
  /* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}