@charset "UTF-8";
/* ナビゲーション既存リセット */
@media (min-width: 1199.98px) {
  header#header nav#gnav li.nav-item {
    padding-right: 0;
    border-right: 0;
  }
}
@media (max-width: 1199.98px) {
  header#header nav#gnav {
    top: 170px;
  }
}
/* ナビゲーションの基本スタイル */
header#header nav#gnav {
  position: relative;
}
@media only screen and (max-width: 768px) {
  header#header nav#gnav {
    position: absolute;
    top: var(--header-height);
  }
}
header#header nav#gnav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  header#header nav#gnav .nav-list {
    padding-bottom: 4vw;
  }
}
header#header nav#gnav .nav-item {
  position: relative;
}
header#header nav#gnav .nav-item + .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #000;
}
@media only screen and (max-width: 1199.98px) {
  header#header nav#gnav .nav-item + .nav-item::after {
    content: none;
  }
}
header#header nav#gnav a.nav-link {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  text-decoration: none;
  color: black;
  position: relative;
  /* 矢印のスタイル */
}
@media only screen and (max-width: 768px) {
  header#header nav#gnav a.nav-link {
    justify-content: center;
    padding: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
header#header nav#gnav a.nav-link .arrow {
  display: inline-block;
  margin-left: 5px;
  margin-top: 3px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  transition: transform 0.3s;
}
@media only screen and (max-width: 768px) {
  header#header nav#gnav a.nav-link .arrow {
    display: none;
  }
}

/* ドロップダウンメニュー */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #fff;
  border: 1px solid #D2D2D2;
  list-style: none;
  padding: 10px 0;
  margin-top: 10px; /* 余白をつける */
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content; /* 内容の幅に応じて可変 */
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #fff;
  transition: transform 0.3s;
  transform: rotate(180deg);
}
.dropdown-menu .nav-item {
  padding: 5px 15px;
}
.dropdown-menu .nav-link {
  white-space: nowrap;
}

/* PC時のホバーで表示 */
@media (min-width: 769px) {
  .has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .has-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}
/* PC時：ホバー時にドロップダウン表示 */
@media (min-width: 769px) {
  .has-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
  }
  .has-dropdown.is-open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  /* ホバー時に矢印を回転 */
  .has-dropdown.is-open .nav-link .arrow {
    transform: rotate(180deg);
  }
}
/* スマホ時（768px以下）：ドロップダウンを常に展開 */
@media only screen and (max-width: 768px) {
  .has-dropdown .dropdown-menu {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    top: inherit;
    padding: 0 0 0.3em;
    margin-top: 0;
  }
  .has-dropdown .dropdown-menu::before {
    content: none;
  }
  .has-dropdown .dropdown-menu .nav-item a {
    justify-content: center;
    padding: 0 !important;
    font-size: 2.9333333333vw !important;
  }
  .has-dropdown .dropdown-menu .nav-item::before {
    content: none !important;
  }
}
.keyv {
  width: 100%;
  height: 44.4363103953vw;
  position: relative;
  background-color: #f2f5f5;
}
.keyv .lottie-player {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .keyv {
    height: 96vw;
    padding-bottom: 16vw;
  }
}
.keyv .copy {
  position: absolute;
  bottom: -2.196193265vw;
  left: 11.3469985359vw;
  z-index: 3;
  color: #FFFFFF;
}
.keyv .copy-sub {
  margin-bottom: 16px;
}
.keyv .copy-sub span {
  display: inline-flex;
  font-size: 30px;
  font-weight: 700;
  padding: 12px 20px;
  background-color: #000045;
}
.keyv .copy-main span {
  display: inline-flex;
  font-size: 40px;
  font-weight: 700;
  padding: 12px 20px;
  background-color: #000045;
}
@media (max-width: 1199.98px) {
  .keyv .copy {
    left: 2.9282576867vw;
  }
}
@media only screen and (max-width: 768px) {
  .keyv .copy {
    width: 85.6vw;
    bottom: -13.3333333333vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .keyv .copy-sub {
    margin-bottom: 1.0666666667vw;
  }
  .keyv .copy-sub span {
    display: block;
    text-align: center;
    line-height: 1.3;
    font-size: 6.4vw;
    padding: 2.1333333333vw 3.2vw;
  }
  .keyv .copy-main span {
    display: block;
    text-align: center;
    line-height: 1.375;
    font-size: 8.5333333333vw;
    padding: 2.1333333333vw 3.2vw 2.6666666667vw;
  }
}

body#index .top-problem {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  body#index .top-problem {
    padding: 24vw 0 58.6666666667vw;
  }
}
body#index .top-problem-title {
  width: 692px;
  margin: 0 auto 85px;
  color: #000045;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: flex;
  justify-content: center;
}
body#index .top-problem-title span {
  position: relative;
  z-index: 10;
}
body#index .top-problem-title::after {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 138px;
  background: url(./assets/img/index/balloon01.png) no-repeat 0 0/100% auto;
}
@media only screen and (max-width: 768px) {
  body#index .top-problem-title {
    width: 80vw;
    margin: 0 auto 12vw;
    font-size: 4.2666666667vw;
    padding-top: 3.7333333333vw;
  }
  body#index .top-problem-title::after {
    top: 0;
    height: 16.5333333333vw;
    background: url(./assets/img/index/balloon01.png) no-repeat 0 0/100% auto;
  }
}
body#index .top-problem-list {
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 60px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
body#index .top-problem-list::after {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 130px;
  width: 184px;
  height: 95px;
  background: url(./assets/img/index/illust_obj01.png) no-repeat 0 0/cover;
}
@media (max-width: 1199.98px) {
  body#index .top-problem-list {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-problem-list {
    max-width: 83.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7.4666666667vw;
    margin: 0 auto;
    padding: 0;
  }
  body#index .top-problem-list::after {
    content: "";
    position: absolute;
    bottom: -30.4vw;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 20.2666666667vw;
    background: url(./assets/img/index/illust_obj01.png) no-repeat 0 0/cover;
  }
}
body#index .top-problem-item {
  width: 100%;
  max-width: 390px;
  min-height: 130px;
  padding: 10px 8px;
  font-feature-settings: "palt";
  border: 1px solid #000045;
  border-radius: 4px;
  color: #000045;
  font-size: 23px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0px 4px 6px 2px rgba(85, 167, 173, 0.3);
}
body#index .top-problem-item ._bold {
  font-weight: 700;
}
body#index .top-problem-item ._marker {
  font-weight: 700;
  position: relative;
}
body#index .top-problem-item ._marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 80%, #ffc080 80%);
}
@media only screen and (max-width: 768px) {
  body#index .top-problem-item {
    border-radius: 0.8533333333vw;
    max-width: 100%;
    min-height: 27.7333333333vw;
    padding: 3.2vw 2.1333333333vw;
    font-size: 5.12vw;
  }
}
body#index .top-support {
  padding: 50px 0;
  background: url(./assets/img/index/bg_sec01.jpg) no-repeat 0 0/cover;
}
@media only screen and (max-width: 768px) {
  body#index .top-support {
    padding: 14.6666666667vw 0 17.3333333333vw;
    background: url(./assets/img/index/bg_sec01_sp.jpg) no-repeat 0 0/cover;
  }
}
body#index .top-support-description {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  color: #000045;
}
body#index .top-support-description h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}
body#index .top-support-description p {
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 1199.98px) {
  body#index .top-support-description {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-support-description {
    max-width: 86.6666666667vw;
    padding: 0;
  }
  body#index .top-support-description h2 {
    font-size: 6.4vw;
    margin-bottom: 6.6666666667vw;
  }
  body#index .top-support-description p {
    font-size: 4.2666666667vw;
  }
}
body#index .top-scm {
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  body#index .top-scm {
    padding: 120px 1em;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-scm {
    padding: 24vw 0 26.6666666667vw;
  }
}
body#index .top-scm-inner {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body#index .top-scm-inner {
    max-width: 89.3333333333vw;
  }
}
body#index .top-scm-title {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid #333333;
}
@media only screen and (max-width: 768px) {
  body#index .top-scm-title {
    max-width: 94.6666666667vw;
    margin: 0 auto 4vw;
    font-size: 5.3333333333vw;
    padding: 3.2vw 0;
    border-bottom: 2px solid #333333;
  }
}
body#index .top-scm-lead {
  font-size: 20px;
  font-weight: 700;
  color: #000045;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 768px) {
  body#index .top-scm-lead {
    line-height: 1.38;
    font-size: 3.2vw;
    margin-bottom: 8vw;
  }
}
body#index .top-scm-list {
  margin-bottom: 60px;
}
body#index .top-scm-list h3 {
  display: flex;
  justify-content: center;
  margin-top: -44px;
  margin-bottom: 30px;
}
body#index .top-scm-list h3 span {
  display: inline-flex;
  background-color: #fff;
  padding: 8px 15px;
  font-size: 28px;
  font-weight: 700;
  color: #000045;
  box-shadow: 0px 10px 4px -6px rgba(85, 167, 173, 0.3);
}
body#index .top-scm-list-in {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#index .top-scm-list-in ul {
  line-height: 1.75;
}
body#index .top-scm-list-in ul li {
  font-size: 20px;
  color: #000045;
}
@media only screen and (max-width: 768px) {
  body#index .top-scm-list {
    margin-bottom: 4vw;
  }
  body#index .top-scm-list h3 {
    margin-top: -9.0666666667vw;
    margin-bottom: 2.6666666667vw;
    font-feature-settings: "palt";
  }
  body#index .top-scm-list h3 span {
    padding: 1.6vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    box-shadow: 0px 10px 4px -6px rgba(85, 167, 173, 0.3);
  }
  body#index .top-scm-list-in ul li {
    font-size: 3.7333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-scm .section-wrap {
    margin-top: 12vw;
  }
}
body#index .top-bcp {
  padding: 0 0 120px;
}
@media (max-width: 1199.98px) {
  body#index .top-bcp {
    padding: 0 1em 120px;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp {
    padding: 0 0 24vw;
  }
}
body#index .top-bcp-inner {
  width: 100%;
  max-width: 840px;
  padding: 24px 30px 30px;
  margin: 0 auto;
  background-color: #eeeeee;
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp-inner {
    max-width: 89.3333333333vw;
    padding: 2.6666666667vw 2.6666666667vw 4vw;
  }
}
body#index .top-bcp-title {
  width: 100%;
  height: 200px;
  background: url(./assets/img/index/bcp_ph.jpg) no-repeat 0 0/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 15px;
}
body#index .top-bcp-title--lead {
  font-size: 20px;
}
body#index .top-bcp-title--main {
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp-title {
    height: 24vw;
    margin-bottom: 2.6666666667vw;
    padding-bottom: 1.8666666667vw;
  }
  body#index .top-bcp-title--lead {
    font-size: 2.6666666667vw;
  }
  body#index .top-bcp-title--main {
    font-size: 4.8vw;
  }
}
body#index .top-bcp-point {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp-point {
    flex-direction: column;
    gap: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
body#index .top-bcp-point-item {
  width: 100%;
  max-width: 260px;
}
body#index .top-bcp-point-item figure {
  width: 148px;
  margin: 0 auto 10px;
}
body#index .top-bcp-point-item dl dt {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
body#index .top-bcp-point-item dl dd {
  font-size: 15px;
  line-height: 1.5;
  text-indent: -1em;
  margin-left: 1em;
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp-point-item {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body#index .top-bcp-point-item figure {
    width: 19.7333333333vw;
    margin: 0;
    margin-left: 5.8666666667vw;
  }
  body#index .top-bcp-point-item dl {
    width: 54.4vw;
  }
  body#index .top-bcp-point-item dl dt {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
    text-align: left;
  }
  body#index .top-bcp-point-item dl dd {
    font-size: 3.2vw;
  }
}
body#index .top-bcp-btn {
  display: flex;
  justify-content: center;
}
body#index .top-bcp-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  height: 60px;
  background: linear-gradient(180deg, rgb(187, 94, 90) 0%, rgb(162, 35, 29) 33%, rgb(162, 35, 29) 67%, rgb(150, 7, 0) 100%);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  line-height: 1.1;
  box-shadow: 0px 6px 6px -2px rgba(0, 0, 69, 0.3);
  position: relative;
}
body#index .top-bcp-btn-link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(./assets/img/index/icon_btn_arw.svg) no-repeat 0 0/100% auto;
}
body#index .top-bcp-btn-link:hover {
  opacity: 0.7;
  transition: 0.4s all;
}
@media only screen and (max-width: 768px) {
  body#index .top-bcp-btn-link {
    height: 9.6vw;
    font-size: 3.7333333333vw;
  }
  body#index .top-bcp-btn-link::after {
    right: 3.2vw;
    width: 1.6vw;
    height: 3.2vw;
  }
}
body#index .top-case {
  padding: 0 0 120px;
}
@media (max-width: 1199.98px) {
  body#index .top-case {
    padding: 0 1em 120px;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-case {
    padding: 0 0 24vw;
  }
}
body#index .top-case-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-inner {
    width: 89.3333333333vw;
  }
}
body#index .top-case-title {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid #333333;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-title {
    max-width: 94.6666666667vw;
    margin: 0 auto 4vw;
    font-size: 5.3333333333vw;
    padding: 3.2vw 0;
    border-bottom: 2px solid #333333;
  }
}
body#index .top-case-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-subtitle {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
body#index .top-case-description {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-description {
    font-feature-settings: "palt";
    text-align: justify;
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}
body#index .top-case-img {
  width: 289px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-img {
    width: 61.6vw;
    margin: 0 auto 4vw;
  }
}
body#index .top-case-btn {
  display: flex;
  justify-content: center;
}
body#index .top-case-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 60px;
  background: linear-gradient(180deg, rgb(75, 143, 181) 0%, rgb(0, 96, 150) 33%, rgb(0, 96, 150) 67%, rgb(0, 54, 122) 100%);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  line-height: 1.1;
  box-shadow: 0px 6px 6px -2px rgba(0, 0, 69, 0.3);
  position: relative;
}
body#index .top-case-btn-link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(./assets/img/index/icon_btn_arw.svg) no-repeat 0 0/100% auto;
}
body#index .top-case-btn-link:hover {
  opacity: 0.7;
  transition: 0.4s all;
}
@media only screen and (max-width: 768px) {
  body#index .top-case-btn-link {
    width: 82.9333333333vw;
    height: 9.6vw;
    font-size: 3.7333333333vw;
  }
  body#index .top-case-btn-link::after {
    right: 3.2vw;
    width: 1.6vw;
    height: 3.2vw;
  }
}
body#index .top-strength {
  padding: 0 0 120px;
}
@media (max-width: 1199.98px) {
  body#index .top-strength {
    padding: 0 1em 120px;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-strength {
    padding-bottom: 24vw;
  }
}
body#index .top-strength-inner {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
body#index .top-strength-title {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid #333333;
}
@media only screen and (max-width: 768px) {
  body#index .top-strength-title {
    max-width: 94.6666666667vw;
    margin: 0 auto 10.6666666667vw;
    font-size: 5.3333333333vw;
    padding: 3.2vw 0;
    border-bottom: 2px solid #333333;
  }
}
body#index .top-strength-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 60px;
}
@media only screen and (max-width: 768px) {
  body#index .top-strength-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 89.3333333333vw;
    margin: 0 auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8vw;
  }
}
body#index .top-strength-item {
  padding: 12px 15px 12px;
  border-radius: 10px;
  border: 2px solid #808080;
  box-shadow: 0px 5px 6px 1px rgba(85, 167, 173, 0.3);
}
body#index .top-strength-item h3 {
  color: #ed1c24;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}
body#index .top-strength-item h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 141px;
  height: 3px;
  background-color: #ed1c24;
}
body#index .top-strength-item p {
  font-size: 18px;
  font-weight: 500;
  color: #4d4d4d;
}
@media only screen and (max-width: 768px) {
  body#index .top-strength-item {
    padding: 2.6666666667vw 3.2vw 2.6666666667vw;
    border-radius: 10px;
    border: 2px solid #808080;
  }
  body#index .top-strength-item h3 {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
    padding-bottom: 2.1333333333vw;
  }
  body#index .top-strength-item h3::after {
    width: 32.2666666667vw;
    height: 0.8vw;
  }
  body#index .top-strength-item p {
    font-size: 4vw;
  }
}
body#index .top-flow {
  width: 100%;
  padding: 0 0 120px;
}
@media (max-width: 1199.98px) {
  body#index .top-flow {
    padding: 0 1em 120px;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-flow {
    overflow: hidden;
  }
}
body#index .top-flow-title {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 12px 0;
  border-bottom: 2px solid #333333;
}
@media only screen and (max-width: 768px) {
  body#index .top-flow-title {
    max-width: 94.6666666667vw;
    margin: 0 auto 5.3333333333vw;
    font-size: 5.3333333333vw;
    padding: 3.2vw 0;
    border-bottom: 2px solid #333333;
  }
}
body#index .top-flow .service-flow {
  position: relative;
}
body#index .top-flow .service-flow::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -40px;
  z-index: 10;
  width: 187px;
  height: 510px;
  background: url(./assets/img/index/illust_obj03.png) no-repeat 0 0/100% auto;
}
@media only screen and (max-width: 768px) {
  body#index .top-flow .service-flow::after {
    top: -2.6666666667vw;
    right: -14.4vw;
    width: 37.3333333333vw;
    height: 101.8666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  body#index .top-flow-btn {
    width: 82.6666666667vw;
    margin: 16vw auto 0;
  }
}
body#index .top-special {
  padding: 50px 0 80px;
  background-color: #333333;
}
body#index .top-special-inner {
  width: 680px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body#index .top-special {
    padding: 5.3333333333vw 0 10.6666666667vw;
  }
  body#index .top-special-inner {
    width: 85.3333333333vw;
    margin: 0 auto;
  }
}
body#index .top-special-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}
body#index .top-special-title p {
  font-size: 28px;
  margin-bottom: 8px;
}
body#index .top-special-title h2 {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  body#index .top-special-title {
    margin-bottom: 5.3333333333vw;
  }
  body#index .top-special-title p {
    font-size: 3.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
  body#index .top-special-title h2 {
    font-size: 4.2666666667vw;
  }
}
body#index .top-special-description {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 2.22;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  body#index .top-special-description {
    font-size: 3.7333333333vw;
    margin-bottom: 8.8vw;
    line-height: 1.75;
  }
}
body#index .top-special-nav {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  body#index .top-special-nav {
    flex-direction: column;
    gap: 6.4vw;
  }
}
body#index .top-special-nav-link {
  display: flex;
  flex-direction: column;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
}
body#index .top-special-nav-link figure {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
body#index .top-special-nav-link figure img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}
body#index .top-special-nav-link p {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: #000;
  padding: 18px 10px 20px;
}
@media only screen and (max-width: 768px) {
  body#index .top-special-nav-link {
    width: 85.3333333333vw;
    border-radius: 5.3333333333vw;
  }
  body#index .top-special-nav-link figure {
    width: 100%;
    height: 45.3333333333vw;
  }
  body#index .top-special-nav-link p {
    font-size: 6.4vw;
    padding: 4.8vw 2.6666666667vw 5.3333333333vw;
  }
}
body#index .sp-contents {
  margin: 0 auto 105px;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents {
    padding: 0 5.3333333333vw;
    margin: 0 auto 10.6666666667vw;
  }
}
body#index .sp-contents-subtitle {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  background-color: #000;
  padding: 10px 5px;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-subtitle {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw 1.3333333333vw;
    margin: 0 auto 5.3333333333vw;
  }
}
body#index .sp-contents-leadtext {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-leadtext {
    text-align: left;
  }
}
body#index .sp-contents-list {
  width: 100%;
  max-width: 700px;
  margin: 35px auto 70px;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-list {
    margin: 6.6666666667vw auto 5.3333333333vw;
  }
}
body#index .sp-contents-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 20px;
  height: 180px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
body#index .sp-contents-item::after {
  content: "";
  position: absolute;
  left: -295px;
  top: 0;
  z-index: 10;
  width: 795px;
  height: 180px;
  background-image: url(assets/img/index/sp-contents_hover.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-item {
    width: 100%;
    padding: 5.3333333333vw 2.1333333333vw;
    height: 24vw;
  }
  body#index .sp-contents-item::after {
    content: "";
    position: absolute;
    left: -32.2666666667vw;
    top: 0;
    z-index: 10;
    width: 98.9333333333vw;
    height: 24vw;
    background-image: url(assets/img/index/sp-contents_hover_sp.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
  }
}
body#index .sp-contents-item + .sp-contents-item {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-item + .sp-contents-item {
    margin-top: 6.6666666667vw;
  }
}
body#index .sp-contents-item.item01 {
  background: url("./assets/img/index/sp-contents_bg01.jpg") no-repeat 0 0/cover;
}
body#index .sp-contents-item.item02 {
  background: url("./assets/img/index/sp-contents_bg02.jpg") no-repeat 0 0/cover;
}
body#index .sp-contents-item.item03 {
  background: url("./assets/img/index/sp-contents_bg03.jpg") no-repeat 0 0/cover;
}
body#index .sp-contents-item dl {
  position: relative;
  z-index: 15;
  margin-bottom: 18px;
}
body#index .sp-contents-item dl dt {
  font-size: 24px;
  margin-bottom: 10px;
}
body#index .sp-contents-item dl dd {
  font-size: 16px;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-item dl {
    margin-bottom: 1.6vw;
  }
  body#index .sp-contents-item dl dt {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
  body#index .sp-contents-item dl dd {
    font-size: 2.6666666667vw;
    line-height: 120%;
  }
}
body#index .sp-contents-item-note {
  position: relative;
  z-index: 15;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  body#index .sp-contents-item-note {
    font-size: 2.6666666667vw;
    line-height: 120%;
  }
}
body#index .sp-contents-item:hover::after {
  left: 0;
  transition: left 0.4s ease;
}

body#perspective {
  overflow-x: hidden;
}
body#perspective .perspective-inbox {
  justify-content: space-between;
}
body#perspective .perspective-inbox h4 {
  margin-bottom: 10px;
}
body#perspective .perspective-inbox-img {
  flex-shrink: 0;
  margin: 0 24px;
}
body#perspective .perspective-inbox-img figure {
  width: 186px;
}
@media only screen and (max-width: 768px) {
  body#perspective .perspective-inbox-img {
    margin: -8vw auto 0;
  }
  body#perspective .perspective-inbox-img figure {
    width: 49.6vw;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  body#perspective section.post .section-wrap {
    display: block;
  }
}
/**/
body#security-resilience {
  /* Page reset */
}
body#security-resilience section.kv {
  background-image: url(assets/img/security-resilience/kv.jpg);
}
body#security-resilience section.contents .section-wrap {
  max-width: 720px;
}
body#security-resilience section.contents p, body#security-resilience section.contents pre {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
  margin-bottom: 45px;
}
body#security-resilience .management {
  margin-top: 60px;
}
body#security-resilience .management-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  body#security-resilience .management-inner {
    flex-direction: column;
    padding: 0 10.1333333333vw;
    margin: 0 auto 13.3333333333vw;
  }
  body#security-resilience .management-inner .management-list-box + .management-list-box {
    margin-top: 10.6666666667vw;
  }
}
body#security-resilience .management-list-head {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  body#security-resilience .management-list-head {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
body#security-resilience .management-item {
  max-width: 318px;
  width: 100%;
  height: 385px;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
body#security-resilience .management-item::after {
  content: "";
  width: 46px;
  height: 46px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-image: url(assets/img/index/linkarw.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  body#security-resilience .management-item {
    max-width: 100%;
    height: 44.8vw;
  }
  body#security-resilience .management-item::after {
    content: "";
    width: 10.4vw;
    height: 10.4vw;
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
body#security-resilience .management-item:hover .management-item-title {
  height: 85%;
}
@media only screen and (max-width: 768px) {
  body#security-resilience .management-item:hover .management-item-title {
    height: 85%;
  }
}
body#security-resilience .management-item-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 192px;
  background-image: url(assets/img/index/box_bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  font-size: 24px;
  color: #FFF;
  padding: 25px 0 0 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  body#security-resilience .management-item-title {
    height: 36vw;
    background-size: 100% auto;
    font-size: 4.8vw;
    padding: 4vw;
  }
}

/* 事業継続支援サービス */
body#business-continuity-service,
body#disaster-prevention-content,
body#learning-from-disaster,
body#production-process,
body#disaster-knowledge,
body#feature-video,
body#feature-video-restricted,
body#growth-service {
  /* Page reset */
}
body#business-continuity-service section.contents .section-wrap,
body#disaster-prevention-content section.contents .section-wrap,
body#learning-from-disaster section.contents .section-wrap,
body#production-process section.contents .section-wrap,
body#disaster-knowledge section.contents .section-wrap,
body#feature-video section.contents .section-wrap,
body#feature-video-restricted section.contents .section-wrap,
body#growth-service section.contents .section-wrap {
  max-width: 720px;
  margin-bottom: 60px;
}
body#business-continuity-service section.contents .section-wrap h2.ttl,
body#disaster-prevention-content section.contents .section-wrap h2.ttl,
body#learning-from-disaster section.contents .section-wrap h2.ttl,
body#production-process section.contents .section-wrap h2.ttl,
body#disaster-knowledge section.contents .section-wrap h2.ttl,
body#feature-video section.contents .section-wrap h2.ttl,
body#feature-video-restricted section.contents .section-wrap h2.ttl,
body#growth-service section.contents .section-wrap h2.ttl {
  margin-top: 5rem;
}
body#business-continuity-service section.contents p, body#business-continuity-service section.contents pre,
body#disaster-prevention-content section.contents p,
body#disaster-prevention-content section.contents pre,
body#learning-from-disaster section.contents p,
body#learning-from-disaster section.contents pre,
body#production-process section.contents p,
body#production-process section.contents pre,
body#disaster-knowledge section.contents p,
body#disaster-knowledge section.contents pre,
body#feature-video section.contents p,
body#feature-video section.contents pre,
body#feature-video-restricted section.contents p,
body#feature-video-restricted section.contents pre,
body#growth-service section.contents p,
body#growth-service section.contents pre {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
}
body#business-continuity-service section.contents p + p, body#business-continuity-service section.contents p + h2, body#business-continuity-service section.contents p + h3, body#business-continuity-service section.contents p + h4, body#business-continuity-service section.contents p + div, body#business-continuity-service section.contents pre + p, body#business-continuity-service section.contents pre + h2, body#business-continuity-service section.contents pre + h3, body#business-continuity-service section.contents pre + h4, body#business-continuity-service section.contents pre + div,
body#disaster-prevention-content section.contents p + p,
body#disaster-prevention-content section.contents p + h2,
body#disaster-prevention-content section.contents p + h3,
body#disaster-prevention-content section.contents p + h4,
body#disaster-prevention-content section.contents p + div,
body#disaster-prevention-content section.contents pre + p,
body#disaster-prevention-content section.contents pre + h2,
body#disaster-prevention-content section.contents pre + h3,
body#disaster-prevention-content section.contents pre + h4,
body#disaster-prevention-content section.contents pre + div,
body#learning-from-disaster section.contents p + p,
body#learning-from-disaster section.contents p + h2,
body#learning-from-disaster section.contents p + h3,
body#learning-from-disaster section.contents p + h4,
body#learning-from-disaster section.contents p + div,
body#learning-from-disaster section.contents pre + p,
body#learning-from-disaster section.contents pre + h2,
body#learning-from-disaster section.contents pre + h3,
body#learning-from-disaster section.contents pre + h4,
body#learning-from-disaster section.contents pre + div,
body#production-process section.contents p + p,
body#production-process section.contents p + h2,
body#production-process section.contents p + h3,
body#production-process section.contents p + h4,
body#production-process section.contents p + div,
body#production-process section.contents pre + p,
body#production-process section.contents pre + h2,
body#production-process section.contents pre + h3,
body#production-process section.contents pre + h4,
body#production-process section.contents pre + div,
body#disaster-knowledge section.contents p + p,
body#disaster-knowledge section.contents p + h2,
body#disaster-knowledge section.contents p + h3,
body#disaster-knowledge section.contents p + h4,
body#disaster-knowledge section.contents p + div,
body#disaster-knowledge section.contents pre + p,
body#disaster-knowledge section.contents pre + h2,
body#disaster-knowledge section.contents pre + h3,
body#disaster-knowledge section.contents pre + h4,
body#disaster-knowledge section.contents pre + div,
body#feature-video section.contents p + p,
body#feature-video section.contents p + h2,
body#feature-video section.contents p + h3,
body#feature-video section.contents p + h4,
body#feature-video section.contents p + div,
body#feature-video section.contents pre + p,
body#feature-video section.contents pre + h2,
body#feature-video section.contents pre + h3,
body#feature-video section.contents pre + h4,
body#feature-video section.contents pre + div,
body#feature-video-restricted section.contents p + p,
body#feature-video-restricted section.contents p + h2,
body#feature-video-restricted section.contents p + h3,
body#feature-video-restricted section.contents p + h4,
body#feature-video-restricted section.contents p + div,
body#feature-video-restricted section.contents pre + p,
body#feature-video-restricted section.contents pre + h2,
body#feature-video-restricted section.contents pre + h3,
body#feature-video-restricted section.contents pre + h4,
body#feature-video-restricted section.contents pre + div,
body#growth-service section.contents p + p,
body#growth-service section.contents p + h2,
body#growth-service section.contents p + h3,
body#growth-service section.contents p + h4,
body#growth-service section.contents p + div,
body#growth-service section.contents pre + p,
body#growth-service section.contents pre + h2,
body#growth-service section.contents pre + h3,
body#growth-service section.contents pre + h4,
body#growth-service section.contents pre + div {
  margin-top: 2em;
}
body#business-continuity-service section.contents p.note, body#business-continuity-service section.contents pre.note,
body#disaster-prevention-content section.contents p.note,
body#disaster-prevention-content section.contents pre.note,
body#learning-from-disaster section.contents p.note,
body#learning-from-disaster section.contents pre.note,
body#production-process section.contents p.note,
body#production-process section.contents pre.note,
body#disaster-knowledge section.contents p.note,
body#disaster-knowledge section.contents pre.note,
body#feature-video section.contents p.note,
body#feature-video section.contents pre.note,
body#feature-video-restricted section.contents p.note,
body#feature-video-restricted section.contents pre.note,
body#growth-service section.contents p.note,
body#growth-service section.contents pre.note {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  body#business-continuity-service section.contents p.note, body#business-continuity-service section.contents pre.note,
body#disaster-prevention-content section.contents p.note,
body#disaster-prevention-content section.contents pre.note,
body#learning-from-disaster section.contents p.note,
body#learning-from-disaster section.contents pre.note,
body#production-process section.contents p.note,
body#production-process section.contents pre.note,
body#disaster-knowledge section.contents p.note,
body#disaster-knowledge section.contents pre.note,
body#feature-video section.contents p.note,
body#feature-video section.contents pre.note,
body#feature-video-restricted section.contents p.note,
body#feature-video-restricted section.contents pre.note,
body#growth-service section.contents p.note,
body#growth-service section.contents pre.note {
    font-size: 3.2vw;
  }
}
body#business-continuity-service .movie-wrap,
body#disaster-prevention-content .movie-wrap,
body#learning-from-disaster .movie-wrap,
body#production-process .movie-wrap,
body#disaster-knowledge .movie-wrap,
body#feature-video .movie-wrap,
body#feature-video-restricted .movie-wrap,
body#growth-service .movie-wrap {
  width: 100%;
  text-align: center;
}
body#business-continuity-service .movie-wrap iframe,
body#disaster-prevention-content .movie-wrap iframe,
body#learning-from-disaster .movie-wrap iframe,
body#production-process .movie-wrap iframe,
body#disaster-knowledge .movie-wrap iframe,
body#feature-video .movie-wrap iframe,
body#feature-video-restricted .movie-wrap iframe,
body#growth-service .movie-wrap iframe {
  height: 420px;
  width: 660px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  body#business-continuity-service .movie-wrap,
body#disaster-prevention-content .movie-wrap,
body#learning-from-disaster .movie-wrap,
body#production-process .movie-wrap,
body#disaster-knowledge .movie-wrap,
body#feature-video .movie-wrap,
body#feature-video-restricted .movie-wrap,
body#growth-service .movie-wrap {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  body#business-continuity-service .movie-wrap iframe,
body#disaster-prevention-content .movie-wrap iframe,
body#learning-from-disaster .movie-wrap iframe,
body#production-process .movie-wrap iframe,
body#disaster-knowledge .movie-wrap iframe,
body#feature-video .movie-wrap iframe,
body#feature-video-restricted .movie-wrap iframe,
body#growth-service .movie-wrap iframe {
    height: 200px;
    width: 100%;
    margin: auto;
  }
}

/* ビジネスにおける標準化の活用 */
body#business-strategy section.contents .section-wrap,
body#standardization section.contents .section-wrap,
body#what-is-standardization section.contents .section-wrap {
  max-width: 720px;
  margin-bottom: 60px;
}
body#business-strategy section.contents .section-wrap.standardization,
body#standardization section.contents .section-wrap.standardization,
body#what-is-standardization section.contents .section-wrap.standardization {
  width: 100%;
}
body#business-strategy section.contents .section-wrap.standardization a,
body#standardization section.contents .section-wrap.standardization a,
body#what-is-standardization section.contents .section-wrap.standardization a {
  display: block;
  padding: 20px 40px 20px 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 20px;
  color: #666;
}
body#business-strategy section.contents .section-wrap.standardization a:hover,
body#standardization section.contents .section-wrap.standardization a:hover,
body#what-is-standardization section.contents .section-wrap.standardization a:hover {
  background-image: url(assets/img/common/arw_right.svg);
  background-color: #005EAC;
  color: white;
  background-position: 98% 50%;
}
body#business-strategy section.contents .profile,
body#standardization section.contents .profile,
body#what-is-standardization section.contents .profile {
  max-width: 720px;
}

/* 事業継続支援サービス */
body#business-continuity-service section.kv {
  background-image: url(assets/img/security-resilience/kv.jpg);
}

/* 防災コンテンツ */
body#disaster-prevention-content section.kv {
  background-image: url(assets/img/disaster-prevention-content/kv.jpg);
}

/* 被災経験から学ぶ事業継続研修 */
body#learning-from-disaster section.kv {
  background-image: url(assets/img/learning-from-disaster/kv.png);
}
@media only screen and (max-width: 768px) {
  body#learning-from-disaster section.kv {
    background-position: 12% 0;
  }
}
body#learning-from-disaster figure {
  margin-bottom: 2.5em;
  text-align: center;
}

/* 知っておきたい防災情報 */
body#disaster-knowledge section.kv {
  background-image: url(assets/img/disaster-knowledge/kv.jpg);
}
@media only screen and (max-width: 768px) {
  body#disaster-knowledge body#disaster-knowledge section.kv {
    background-position: 20% 50%;
  }
}

/* 被災動画設置コンテンツ */
body#feature-video section.kv,
body#feature-video-restricted section.kv {
  background-image: url(assets/img/disaster-movie/kv.jpg);
}
body#feature-video section.password,
body#feature-video-restricted section.password {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 87px;
}
body#feature-video section.password .password-lead,
body#feature-video section.password .password-request,
body#feature-video-restricted section.password .password-lead,
body#feature-video-restricted section.password .password-request {
  font-size: 20px;
  text-align: center;
}
body#feature-video section.password .password-form,
body#feature-video-restricted section.password .password-form {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body#feature-video section.password .password-form input,
body#feature-video-restricted section.password .password-form input {
  display: block;
}
body#feature-video section.password .password-form input[type=password],
body#feature-video-restricted section.password .password-form input[type=password] {
  font-size: 16px;
  padding: 10px 1em;
  border-radius: 8px;
  border: 1px solid #005EAC;
}
body#feature-video section.password .password-form input[type=submit],
body#feature-video-restricted section.password .password-form input[type=submit] {
  background-color: #005EAC;
  border: 1px solid #005EAC;
  border-radius: 8px;
  font-size: 20px;
  color: #FFFFFF;
  padding: 7px 20px;
  margin-left: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}
body#feature-video section.password .password-form input[type=submit]:hover,
body#feature-video-restricted section.password .password-form input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #005EAC;
}

/* 生産プロセス */
body#production-process section.kv {
  background-image: url(assets/img/production-process/kv.jpg);
}
body#production-process .step-wizard {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 35px;
}
body#production-process .fig01, body#production-process .fig02, body#production-process .fig03 {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 35px;
}
@media only screen and (max-width: 768px) {
  body#production-process .fig01, body#production-process .fig02, body#production-process .fig03 {
    margin: 0 auto 1.5em;
  }
}
body#production-process .scm-audit {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  body#production-process .scm-audit {
    flex-direction: column;
    gap: 13.3333333333vw;
    margin-bottom: 2rem;
  }
}
body#production-process .scm-audit-item {
  width: 300px;
  flex-shrink: 0;
}
body#production-process .scm-audit-item-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  body#production-process .scm-audit-item {
    width: 80vw;
    margin: 0 auto;
  }
  body#production-process .scm-audit-item-title {
    font-size: 4.2666666667vw;
    margin-bottom: 3.2vw;
  }
}
body#production-process .scm-audit .purchasing-5principles {
  background-color: #767676;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
}
body#production-process .scm-audit .purchasing-5principles ul li {
  font-size: 14px;
  font-weight: 500;
}
body#production-process .scm-audit .purchasing-5principles ul li + li {
  margin-top: 0.3em;
}
@media only screen and (max-width: 768px) {
  body#production-process .scm-audit .purchasing-5principles {
    border-radius: 2.6666666667vw;
    padding: 4vw;
  }
  body#production-process .scm-audit .purchasing-5principles ul li {
    font-size: 3.7333333333vw;
  }
}
body#production-process .scm-audit .supplier-5steps {
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  body#production-process .scm-audit .supplier-5steps {
    margin-bottom: 2.6666666667vw;
  }
}
body#production-process .scm-audit .supplier-5steps li {
  background-color: #334458;
  padding: 4px 10px 5px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
body#production-process .scm-audit .supplier-5steps li::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 9px;
  background: url("./assets/img/production-process/icon_arw.svg") no-repeat 0 0/100% auto;
}
body#production-process .scm-audit .supplier-5steps li:last-child::after {
  content: none;
}
body#production-process .scm-audit .supplier-5steps li + li {
  margin-top: 17px;
}
@media only screen and (max-width: 768px) {
  body#production-process .scm-audit .supplier-5steps li {
    border-radius: 2.6666666667vw;
    padding: 1.0666666667vw 2.6666666667vw 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
  body#production-process .scm-audit .supplier-5steps li::after {
    bottom: -3.4666666667vw;
    width: 3.7333333333vw;
    height: 2.4vw;
  }
  body#production-process .scm-audit .supplier-5steps li + li {
    margin-top: 4.5333333333vw;
  }
}
body#production-process .production-process-contact {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  body#production-process .production-process-contact {
    margin: 30px auto;
  }
}
body#production-process .btn-contact-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 576px;
  height: 66px;
  border: 4px solid #A3231D;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #A3231D;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
body#production-process .btn-contact-frame:hover {
  color: #fff;
  background-color: #A3231D;
  transition: 0.4s ease;
}
@media only screen and (max-width: 768px) {
  body#production-process .btn-contact-frame {
    width: 100%;
    height: 17.6vw;
    border: 1.0666666667vw solid #A3231D;
    border-radius: 2.6666666667vw;
    font-size: 5.3333333333vw;
    box-shadow: 0px 0.5333333333vw 1.3333333333vw 0px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 767.98px) {
  body#business-continuity-service section.post .post-list {
    margin-bottom: 30px;
  }
  body#business-continuity-service section.post .section-wrap .table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  body#business-continuity-service section.post .section-wrap .table dt {
    background: #f5f5f5;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    width: 100%;
    padding: 20px;
  }
  body#business-continuity-service section.post .section-wrap .table dd {
    background: #fff;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
    width: 100%;
    padding: 20px;
  }
  body#business-continuity-service section.post .section-wrap .sub {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  body#business-continuity-service section.post .section-wrap {
    /* display: flex;
      justify-content: space-between; */
  }
  body#business-continuity-service section.post .section-wrap .table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  body#business-continuity-service section.post .section-wrap .table dt {
    background: #f5f5f5;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    width: 40%;
    padding: 20px;
  }
  body#business-continuity-service section.post .section-wrap .table dd {
    background: #fff;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
    width: 60%;
    padding: 20px;
  }
  body#business-continuity-service section.post .section-wrap .sub {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.mv {
  width: 100%;
  /* スマホ時のトリミングのために必要 */
  position: relative;
  overflow: hidden;
  /* 望む比率に合わせて高さを維持（16:9例） */
  height: 500px;
  /* 古いブラウザ対策で固定高にしたいなら：
  height: 56.25vw; // 16:9 = 9/16*100
  */
  margin-top: 100px;
}

.lottie-player {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .mv {
    background-color: #E2F0FE;
    overflow: hidden;
  }
  /* プレイヤーを拡大して中央でトリミング */
  .mv .lottie-player {
    width: 250vw; /* 拡大率を調整（例：140%） */
    height: auto; /* 高さは自動でOK */
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%); /* 中央寄せ */
    /* もし上下が余るなら width をさらに上げる、または height 指定に切替 */
  }
}
.service-flow {
  width: 498px;
  margin: 0 auto 100px;
}
.service-flow__in {
  background-color: #eff3f5;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service-flow__in::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: #808080;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 12px 15px;
  border-top-color: currentColor;
  border-bottom: 0;
}
.service-flow__in.last::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .service-flow {
    width: 78.6666666667vw;
    margin: 0 auto 10.6666666667vw;
  }
  .service-flow__in {
    background-color: #eff3f5;
    padding: 1.6vw 2.6666666667vw;
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  .service-flow__in::after {
    content: "";
    position: absolute;
    bottom: -3.7333333333vw;
    left: 50%;
    transform: translateX(-50%);
    color: #808080;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 2.4vw 2.9333333333vw;
    border-top-color: currentColor;
    border-bottom: 0;
  }
}

.ttl + .table {
  margin-bottom: 50px !important;
}

.perspective-inbox {
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #333333;
}
.perspective-inbox h4 {
  margin-bottom: 10px;
}
.perspective-inbox p {
  margin-bottom: 0 !important;
}
.perspective-inbox-img {
  flex-shrink: 0;
  margin: 0 24px;
}
.perspective-inbox-img figure {
  width: 186px;
}
@media only screen and (max-width: 768px) {
  .perspective-inbox-img {
    margin: -8vw auto 0;
  }
  .perspective-inbox-img figure {
    width: 49.6vw;
    margin: 0 auto;
  }
}

#growth-service .sp-contents {
  margin: 0 auto 105px;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents {
    padding: 0 5.3333333333vw;
    margin: 0 auto 10.6666666667vw;
  }
}
#growth-service .sp-contents-subtitle {
  width: 100%;
  max-width: 720px;
  margin: 6rem auto 60px;
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  background-color: #000;
  line-height: 1.6;
  padding: 10px 5px;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-subtitle {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw 1.3333333333vw;
    margin: 0 auto 5.3333333333vw;
  }
}
#growth-service .sp-contents-leadtext {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-leadtext {
    text-align: left;
  }
}
#growth-service .sp-contents-list {
  width: 100%;
  max-width: 720px;
  margin: 35px auto 70px;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-list {
    margin: 6.6666666667vw auto 5.3333333333vw;
  }
}
#growth-service .sp-contents-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 20px;
  height: 180px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
#growth-service .sp-contents-item::after {
  content: "";
  position: absolute;
  left: -295px;
  top: 0;
  z-index: 10;
  width: 795px;
  height: 180px;
  background-image: url(assets/img/index/sp-contents_hover.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-item {
    width: 100%;
    padding: 5.3333333333vw 2.1333333333vw;
    height: 24vw;
  }
  #growth-service .sp-contents-item::after {
    content: "";
    position: absolute;
    left: -32.2666666667vw;
    top: 0;
    z-index: 10;
    width: 98.9333333333vw;
    height: 24vw;
    background-image: url(assets/img/index/sp-contents_hover_sp.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
  }
}
#growth-service .sp-contents-item + .sp-contents-item {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-item + .sp-contents-item {
    margin-top: 6.6666666667vw;
  }
}
#growth-service .sp-contents-item.item01 {
  background: url("./assets/img/index/sp-contents_bg01.jpg") no-repeat 0 0/cover;
}
#growth-service .sp-contents-item.item02 {
  background: url("./assets/img/index/sp-contents_bg02.jpg") no-repeat 0 0/cover;
}
#growth-service .sp-contents-item.item03 {
  background: url("./assets/img/index/sp-contents_bg03.jpg") no-repeat 0 0/cover;
}
#growth-service .sp-contents-item dl {
  position: relative;
  z-index: 15;
  margin-bottom: 18px;
}
#growth-service .sp-contents-item dl dt {
  font-size: 24px;
  margin-bottom: 10px;
}
#growth-service .sp-contents-item dl dd {
  font-size: 16px;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-item dl {
    margin-bottom: 1.6vw;
  }
  #growth-service .sp-contents-item dl dt {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
  #growth-service .sp-contents-item dl dd {
    font-size: 2.6666666667vw;
    line-height: 120%;
  }
}
#growth-service .sp-contents-item-note {
  position: relative;
  z-index: 15;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  #growth-service .sp-contents-item-note {
    font-size: 2.6666666667vw;
    line-height: 120%;
  }
}
#growth-service .sp-contents-item:hover::after {
  left: 0;
  transition: left 0.4s ease;
}
/*# sourceMappingURL=custom202510.css.map */