@charset "utf-8";
/*
Theme Name: DisitalRiskSolution
Description: DisitalRiskSolution
Author: Mediacloud
*/

/*###### ヘッダー ######*/
.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 0 0 30px;
}
.header__left {
  z-index: 1000;
}
.header__logo {
  max-width: 230px;
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn {
  height: 120px;
  width: 120px;
  z-index: 1000;
}
.header__btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: #fff;
}
.header__btn-icon {
  max-height: 30px;
}
.header__btn-document {
  background: #2C9978;
}
.header__btn-mail {
  background: #F99520;
}

/*###### SP用ナビ ######*/
/* ナビバー部分 */
.SP-nav__wrapper {
  height: 60px;
  width: 100vw;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 900;
  position: fixed;
  background: #1f336d;
}
.SP-nav__wrapper > img {
  max-width: 160px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .SP-nav__wrapper {
    display: none;
  }
}
/* ハンバーガー部分 */
.js-hamburger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 60px;
  height: 50px;
  margin-right: 30px;
}
.js-hamburger span {
  position: absolute;
  display: inline-block;
  transition: all 0.4s;
  height: 2px;
  background-color: #fff;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
}
.js-hamburger.scrolled span {
  background-color: #00265cf2;
}
.js-hamburger span:nth-of-type(1) {
  top: 15px;
}
.js-hamburger span:nth-of-type(2) {
  top: 23px;
}
.js-hamburger span:nth-of-type(3) {
  top: 31px;
}
.js-hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 0;
  transform: translateY(6px) rotate(-35deg);
  width: 100%;
  background: #fff;
}
.js-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.js-hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 0;
  transform: translateY(-6px) rotate(35deg);
  width: 100%;
  background: #fff;
}
/* メニュー表示部分 */
#nav__menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 50px 20px;
  background: #00265cf2;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav__menu-wrap {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.nav__menu-sv__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.nav__menu-sv {
  position: relative;
  background: #ffffffd6;
  text-align: center;
  font-size: clamp(1rem, 0.938rem + 0.21vw, 1.125rem);
  font-weight: 500;
  padding: 25px 0;
  border-radius: 5px;
}
.nav__menu-sv a {
  color: #0F4490;
}
.nav__menu-sv:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: '';
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url(../img/icon_arrow_right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav__menu-item a {
  padding: 25px;
  display: block;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #3B639A;
}
.nav__menu-item:last-of-type a {
  border-bottom: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__icon-tab {
  width: 14px;
  height: 14px;
  margin-left: 10px;
}
#nav__menu.panelactive {
  visibility: visible;
  opacity: 1;
}


/*###### テキスト・共通 ######*/
h2 {
  font-size: clamp(1.875rem, 1.25rem + 2.08vw, 3.125rem);
  text-align: center;
  margin-bottom: 40px;
  color: #144995;
  font-weight: 600;
}
.heading-small {
  font-size: .6em;
}
.sec__intro {
  position: relative;
  background: #fff;
  padding: 0 20px;
  border: solid 2px #144995;
  color: #144995;
  font-size: clamp(1.125rem, 0.906rem + 0.73vw, 1.563rem);
  font-weight: 500;
  width: fit-content;
  z-index: 10;
}

/*###### メインビジュアル ######*/
.fv {
  background: url(../img/fv_bg_pc.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
}
.fv .inner {
  padding-bottom: 0;
}
.fv__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: clamp(1.875rem, 1.094rem + 2.6vw, 3.438rem);
  color: #fff;
  margin-bottom: 20px;
}
.fv__trouble-wrap {
  background: #fff;
  line-height: 1.3;
  padding: 0 15px;
  width: fit-content;
}
.fv__trouble {
  background: linear-gradient(0deg, #06172F 0%, #144995 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.5rem, 1.25rem + 4.17vw, 5rem);
}
.fv__lead {
  font-size: clamp(1rem, 0.563rem + 1.46vw, 1.875rem);
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}
.btn__contact {
  position: relative;
  display: block;
  background: #E98C00;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 40px;
  border-radius: 3px;
  border: 2px solid #fff;
  position: relative;
}
.btn__contact:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: '';
  display: inline-block;
  width: 15px;
  height: 18px;
  background-image: url(../img/icon_arrow_under.svg);
  background-size: contain;
  z-index: 10;
}
.btn__contact a {
  color: #fff;
  font-size: clamp(0.938rem, 0.781rem + 0.52vw, 1.25rem);
  display: block;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__contact-icon {
  width: 21px;
  height: 17px;
  margin-right: 10px;
}
.achievement__list {
  margin: 0 auto;
}
.archivement__heading {
  font-size: clamp(0.938rem, 0.469rem + 1.56vw, 1.875rem);
  text-align: center;
  font-weight: 500;
}
.achievement__wrap {
  background: #fff;
  border: solid 3px #144995;
  padding: 20px;
  margin: 0 auto -3%;
  max-width: 800px;
  width: 100%;
  z-index: 10;
  position: relative;
}
.achievement__box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.achievement__box-item {
  background: #DDEDFF;
  padding: 5px 25px;
  color: #144995;
  width: fit-content;
  font-weight: 500;
  font-size: clamp(0.688rem, 0.563rem + 0.42vw, 0.938rem);
}

/*###### コンタクトフォーム ######*/
#contact-form {
  background: #ECF5FF;
}
.form__wrapper {
  background: #fff;
  max-width: 1020px;
  padding: 50px 40px 20px;
  margin: 0 auto;
}
.form__heading {
  margin-bottom: 30px;
}
.form__comment {
  position: relative;
  background: #E98C00;
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  margin: 0 auto -20px;
  width: fit-content;
}
.form__comment:after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  aspect-ratio: 1 / cos(30deg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #E98C00;
}
.form__table {
  width: 100%;
}
.form__table th,
.form__table td {
  text-align: left;
  font-weight: normal;
}
.form__table th {
  background: #144995;
  border-bottom: 1px solid #fff;
  color: #fff;
  width: 20%;
  padding: 20px 10px;
  vertical-align: middle;
}
.form__table tr:nth-of-type(7) th,.form__table tr:nth-of-type(8) th {
  background: unset;
  text-align: center;
}
.form__table tr:nth-of-type(7) th {
  padding-top: 20px
}
th span.required {
  background: #C5DDFF;
  color: #144995;
  font-size: 12px;
  border-radius: 2px;
  padding: 0 5px;
  margin-right: 10px;
}
.form__table td {
  padding: 20px;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
}
.form__table tr:nth-of-type(6) td {
  border-bottom: 1px solid #CCC;
}
.form__table td input,.form__table td textarea {
  background: #F0F2F3;
  padding: 15px;
  border: none;
}
.form__table td input.w100,.form__table td textarea.w100 {
  width: 100%;
}
.form__table td .reason {
  margin-right: 10px;
}
.form__table td .reason input{
  margin-bottom: 5px;
}
input[type="text"],input[type="email"],textarea{
  -webkit-appearance: none;
  border-radius: 0;
}
.form__table th.form-pp {
  color: #333;
  padding-bottom: 0;
}
span#openModal,span#openModal_02 {
  color: #E98C00;
  border-bottom: 1px solid #E98C00;
}
.form__table button {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: #B5B5B5;
  border-radius: 3px;
  padding: 15px;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}
/* プライバシーポリシー */
#openModal:hover,#openModal_02:hover {
  cursor: pointer;
}
.modalArea {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.modalBg {
  width: 100vw;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
.modalContents p {
  font-size: 14px;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  font-size: 25px;
}

/*###### トラブル ######*/
#trouble {
  background: url(../img/trouble_bg.jpg) center no-repeat;
  background-size: cover;
}
#trouble:after {
  position: absolute;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  width: 170px;
  height: 94px;
  background-image: url(../img/trouble_arrow.svg);
  background-position: center;
  background-size: contain;
  z-index: 10;
}
#trouble .inner {
  padding-top: 70px;
}
.trouble__intro {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  border: solid 2px #333;
  background: #fff;
  font-size: clamp(1.25rem, 0.938rem + 1.04vw, 1.875rem);
  padding: 0 30px;
}
.trouble__heading {
  color: #fff;
  margin-bottom: 70px;
}
.trouble__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.trouble__item {
  position: relative;
  background: #fff;
  border: 3px solid #B74B36;
  padding: 40px 30px;
}
.trouble__item:after {
  position: absolute;
  top: -50px;
  left: -40px;
  content: '';
  display: inline-block;
  width: 109px;
  height: 118px;
  background-image: url(../img/risk1.png);
  background-size: contain;
  vertical-align: middle;
}
.trouble__item:nth-of-type(2):after {
  background-image: url(../img/risk2.png);
}
.trouble__item:nth-of-type(3):after {
  background-image: url(../img/risk3.png);
}
.trouble__item-title {
  color: #B74B36;
  font-size: clamp(1.563rem, 1.219rem + 1.15vw, 2.25rem);
  text-align: center;
}
.trouble__item-image {
  margin-bottom: 20px;
}
.trouble__item-text {
  position: relative;
  background: #E1E8F7;
  padding: 5px 10px;
}
.trouble__item-text:after {
  position: absolute;
  content: "";
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 15px;
  aspect-ratio: 1 / cos(30deg);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: #E1E8F7;
}
.trouble__image {
  max-width: 1090px;
  width: 100%;
  display: block;
  margin: 70px auto 0;
}
.trouble__closing {
  color: #fff;
  font-size: clamp(2.188rem, 1.719rem + 1.56vw, 3.125rem);
  font-weight: 500;
  text-align: center;
}
.top-dot {
  display: inline-block;
  position: relative;
}
.top-dot::before {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 0.8em;
  content: "・";
}

/*###### 安心できる検索結果 ######*/
#anshin {
  background: #ECF5FF;
}
.anshin__heading {
  color: #333;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.594rem + 1.77vw, 2.188rem);
}
.anshin__title {
  font-size: clamp(1.875rem, 1.25rem + 2.08vw, 3.125rem);
  font-weight: 600;
  border: 2px solid #144995;
  background: #fff;
  padding: 0 10px;
  margin: 0 5px;
  color: #144995;
}
.anshin__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 30px;
}
.anshin__item {
  padding: 20px;
  text-align: center;
  position: relative;
}
.anshin__item-heading {
  color: #144995;
  font-size: clamp(1.563rem, 1.25rem + 1.04vw, 2.188rem);
  line-height: 1.5;
  background: #bad5f2;
  border-radius: 50vh;
  max-width: 320px;
  width: 100%;
  margin: 20px auto;
}
.anshin-num {
  position: absolute;
  top: 0;
  left: 20px;
  border-radius: 50vh;
  background: #bad5f2;
  color: #144995;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.563rem, 1.406rem + 0.52vw, 1.875rem);
  font-weight: 500;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.anshin__closing{
  font-size: clamp(1.563rem, 1.406rem + 0.52vw, 1.875rem);
  text-align: center;
  font-weight: 500;
}
.anshin__closing-mark {
  color: #144995;
  text-decoration: underline;
}

/*###### サービス内容 ######*/
#service {
  background: url(../img/bg_white.jpg);
  background-size: 30%;
}
.sv__item {
  background: #EAEFF0;
  padding-bottom: 50px;
  margin-bottom: 70px;
}
.sv__heading {
  color: #fff;
  font-size: clamp(1.25rem, 0.625rem + 2.08vw, 2.5rem);
  font-weight: 500;
  background: url(../img/bg_stripe.jpg) center no-repeat;
  background-size: cover;
  padding: 5px 20px;
  margin-bottom: 50px;
}
.sv__mark {
  color: #FBF343;
  font-size: clamp(2.188rem, 1.719rem + 1.56vw, 3.125rem);
  font-weight: 600;
}
.sv__lead {
  position: relative;
  font-size: clamp(1.25rem, 0.625rem + 2.08vw, 2.5rem);
  color: #144995;
  margin: 0 auto 40px;
  width: fit-content;
}
.sv__lead:before {
  position: absolute;
  top: 0;
  left: -30px;
  content: '';
  display: inline-block;
  width: 31px;
  height: 26px;
  background-image: url(../img/doublequote_left.svg);
  background-size: contain;
  vertical-align: middle;
}
.sv__lead:after {
  position: absolute;
  top: 0;
  right: -30px;
  content: '';
  display: inline-block;
  width: 31px;
  height: 26px;
  background-image: url(../img/doublequote_right.svg);
  background-size: contain;
  vertical-align: middle;
}
.sv__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.success-rate {
  max-width: 215px;
  width: 100%;
}
.sv__comment-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv__comment {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.5;
  position: relative;
}
.sv__comment-01 {
  max-width: 290px;
}
.sv__comment-02,.sv__comment-03 {
  max-width: 430px;
}
.sv__comment-mark {
  color: #de492c;
}
.sv__comment-illust {
  max-width: 130px;
  width: 100%;
}
.sv__comment:after {
  position: absolute;
  content: "";
  right: -20px;
  top: 40%;
  width: 20px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(0 0,100% 0,0 100%);
  background: #fff;
}
.sv__caution {
  display: block;
  margin: 10px auto 80px;
  width: fit-content;
  font-size: clamp(0.75rem, 0.719rem + 0.1vw, 0.813rem);
}
.sv__list {
  position: relative;
  background: #fff;
  padding: 60px 40px 40px;
  width: fit-content;
  margin: 40px auto;
}
.sv__list01 {
  margin-bottom: 70px;
}
.sv__title-wrap {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.sv__title {
  position: relative;
  padding: 0 20px;
  color: #fff;
  font-size: clamp(1.563rem, 1.094rem + 1.56vw, 2.5rem);
  line-height: 1.5;
  width: max-content;
  z-index: 10;
}
.sv__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #144995;
  transform: skewX(-10deg);
}
.sv__title:after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(0 0,100% 0,50% 100%);
  background: #144995;
}
.sv__image {
  max-width: 720px;
  width: 100%;
}
.sv__text {
  font-size: clamp(1.125rem, 1.063rem + 0.21vw, 1.25rem);
  font-weight: 500;
  text-align: center;
  margin: 10px auto 30px;
}
.sv__marker {
  font-weight: 600;
  background: #E2E758;
}

/*###### バズソナー ######*/
#buzz {
  background: #093C85;
  color: #fff;
}
#buzz:before {
  position: absolute;
  top: 8%;
  left: 0;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../img/buzzsonar_bg_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#buzz .inner {
  padding: 60px 0 120px;
}
#buzz .sec__intro {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.buzz__heading {
  font-size: clamp(1.563rem, 0.781rem + 2.6vw, 3.125rem);
  color: #FBF343;
}
.buzz__title {
  margin: 0 auto;
  width: fit-content;
  font-size: clamp(1rem, 0.938rem + 0.21vw, 1.125rem);
  text-align: center;
}
.buzz__logo {
  max-width: 340px;
  width: 100%;
}
.buzz__lead {
  position: relative;
  background: #ffffffad;
  margin: 50px auto;
  padding: 50px 250px 50px 30px;
  color: #333;
  font-weight: 500;
  max-width: 915px;
}
.buzz__image {
  position: absolute;
  right: 30px;
  bottom: 0;
  max-width: 215px;
  width: 100%;
}
.buzz__lead__heading {
  font-size: clamp(1.25rem, 1.094rem + 0.52vw, 1.563rem);
  margin-bottom: 20px;
  width: 100%;
}
.buzz__lead__text {
  font-size: clamp(0.938rem, 0.781rem + 0.52vw, 1.25rem);
}
.buzz__recommend {
  padding: 2px 10px;
  font-size: clamp(1.25rem, 0.938rem + 1.04vw, 1.875rem);
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 0 auto 30px;
  max-width: 1140px;
}
.buzz__recommend-list-wrap {
  max-width: 1140px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto 50px;
}
.buzz__recommend-list {
  position: relative;
  font-size: clamp(0.875rem, 0.75rem + 0.42vw, 1.125rem);
  padding-left: 30px;
}
.buzz__recommend-list:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: '';
  display: inline-block;
  width: 26px;
  height: 22px;
  background-image: url(../img/icon_check_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.buzz__recommend-list-mark {
  color: #F5F7AE;
}
.btn__buzz {
  background: #DE492C;
  max-width: 370px;
  width: 100%;
  padding: 15px 5px 15px 15px;
  border-radius: 3px;
  border: 2px solid #fff;
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.1);
  margin: 0 auto 130px;
  display: block;
}
.btn__buzz a {
  color: #fff;
  font-size: clamp(0.938rem, 0.781rem + 0.52vw, 1.25rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-tab {
  margin-left: 10px;
}
.buzz__closing {
  font-size: clamp(1.688rem, 0.969rem + 2.4vw, 3.125rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.buzz__closing-mark {
  font-size: 0.5em;
  padding: 5px 30px;
  border: 1px solid #fff;
  width: fit-content;
  margin: 0 auto 40px;
}
.buzz__closing-img {
  position: relative;
  max-width: 850px;
  width: 100%;
  display: block;
  margin: 0 auto 30px;
}
.buzz__closing-comment {
  position: absolute;
}
.buzz__closing-comment01 {
  top: 0;
  left: 15%;
  max-width: 30%;
  width: 100%;
}
.buzz__closing-comment02 {
  top: 20px;
  right: 0;
  max-width: 39%;
  width: 100%;
}
.buzz__closing-comment03 {
  bottom: 15px;
  left: 0;
  max-width: 38%;
  width: 100%;
}
.bottom-triangle .triangle-fill {
  fill: #DCEDFF;
}
.bottom-triangle {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}
.bottom-triangle svg {
  position: relative;
  display: block;
  width: calc(100vw / 2);
}
.bottom-triangle-right {
  left: unset;
  right: 0;
}
.bottom-triangle-right svg {
  margin: 0 0 0 auto;
  transform: scale(-1, 1);
}


/*###### サービスの特徴 ######*/
#sv-point {
  background: #DCEDFF;
}
#sv-point .inner {
  padding-top: 60px;
}
#sv-point .sec__intro {
  margin: 0 auto 60px;
}
.sv-point__intro {
  color: #144995;
  font-size: clamp(1.125rem, 0.906rem + 0.73vw, 1.563rem);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 4px rgba(255, 255, 255);
  margin-bottom: 20px;
}
.sv-point__title-wrap {
  position: relative;
  margin-bottom: 20px;
}
.sv-point__title-wrap:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  width: 100%;
  height: 368px;
  background-image: url(../img/10years_bg_pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.sv-point__title {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin-bottom: 90px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255));
  z-index: 10;
}
.sv-point__wrap-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.sv-point__wrap-under {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sv-point__card {
  position: relative;
  background: #fff;
  padding: 50px 30px 40px;
  box-shadow: 0 10px 10px 0 rgba(20,73,149,0.1);
}
.sv-point__heading {
  font-size: clamp(1.125rem, 0.75rem + 1.25vw, 1.875rem);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}
.sv-point__heading-mark {
  font-size: clamp(1.875rem, 1.563rem + 1.04vw, 2.5rem);
  color: #144995;
}
.sv-point__icon {
  position: absolute;
  top: 10px;
  right: 20px;
}
.sv-point__card:after {
  position: absolute;
  top: -30px;
  left: -20px;
  content: '';
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url(../img/point_01.png);
  background-size: cover;
  vertical-align: middle;
}
.sv-point__wrap-top .sv-point__card:nth-of-type(2):after {
  background-image: url(../img/point_02.png);
}
.sv-point__wrap-under .sv-point__card:nth-of-type(1):after {
  background-image: url(../img/point_03.png);
}
.sv-point__wrap-under .sv-point__card:nth-of-type(2):after {
  background-image: url(../img/point_04.png);
}
.sv-point__wrap-under .sv-point__card:nth-of-type(3):after {
  background-image: url(../img/point_05.png);
}


/*###### お客様の声 ######*/
#voice {
  background: url(../img/bg_white.jpg);
  background-size: 30%;
}
#voice:after {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  width: 210px;
  height: 90px;
  background-image: url(../img/section_triangle.svg);
  background-size: cover;
  vertical-align: middle;
}
.voice__heading {
  line-height: 1.5;
}
#voice .heading-small {
  color: #333;
}
.voice__info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: 0 auto 90px;
  width: fit-content;
}
.voice__info-illust {
  max-width: 220px;
  width: 100%;
}
.voice__customer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.voice__list {
  display: flex;
  position: relative;
}
.voice__list:after {
  position: absolute;
  bottom: 0;
  right: 20px;
  content: '';
  display: inline-block;
  width: 140px;
  height: 170px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.voice__list-company:after {
  background-image: url(../img/voice_company.png);
}
.voice__list-person:after {
  background-image: url(../img/voice_person.png);
}
.voice__list-heading {
  position: relative;
  padding: 10px 15px;
  font-size: clamp(1.25rem, 1.094rem + 0.52vw, 1.563rem);
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 140px;
}
.voice__list-heading:after {
position: absolute;
  content: "";
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  aspect-ratio: 1 / cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.voice__list-heading-company,.voice__list-heading-company:after {
  background: #E98C00;
}
.voice__list-heading-person,.voice__list-heading-person:after {
  background: #144995;
}
.voice__list-detail {
  padding: 10px 140px 10px 50px;
  width: 100%;
  list-style-type: disc;
  font-size: clamp(0.938rem, 0.844rem + 0.31vw, 1.125rem);
}
.voice__list:nth-of-type(1) .voice__list-detail {
  background: #FFEACA;
}
.voice__list:nth-of-type(2) .voice__list-detail {
  background: #D9E9FF;
}
#voice .sec__intro {
  margin: 0 auto;
}
.voice__reason {
  color: #333;
  font-size: clamp(1.875rem, 1.406rem + 1.56vw, 2.813rem);
  margin-bottom: 10px;
}
/* スライダー */
.voice__slick-slider {
  max-width: 1440px;
  margin: 0 auto;
}
.voice-slider__card {
  position: relative;
  margin: 50px 20px 0;
  padding: 70px 20px 40px;
  border: 2px solid #144995;
  background: #fff;
  height: 100%;
}
.slider__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.voice__slick-slider h3 {
  font-size: 25px;
  color: #144995;
  margin-bottom: 20px;
  text-align: center;
}
.voice-slider__card__list {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #E0E0E0;
}
.voice-slider__card__list:last-of-type {
  border-bottom: none;
}
.voice-slider__card__list:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: '';
  display: inline-block;
  width: 26px;
  height: 22px;
  background-image: url(../img/icon_check_red.svg);
  background-size: cover;
  vertical-align: middle;
}
.voice-slider__mark {
  color: #B74B36;
  font-weight: 500;
}


/*###### サービスの流れ ######*/
#flow {
  background: #DCEDFF;
}
#flow .sec__intro {
  margin: 0 auto 10px;
}
.flow__intro-mark {
  color: #E98C00;
}
.flow__wrap {
  position: relative;
}
.flow__box {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  z-index: 10;
  max-width: 97%;
}
.flow__content {
  max-width: 270px;
  width: 100%;
  text-align: center;
}
.flow__content-num {
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  background: #144995;
  padding: 0 15px;
  border-radius: 50vh;
  color: #fff;
  width: fit-content;
  margin: 0 auto 10px;
  z-index: 100;
}
.flow__content-num-en {
  font-size: 18px;
}
.flow__content-img {
  max-width: 170px;
  width: 100%;
}
.flow__content-heading {
  font-size: clamp(1.125rem, 1.063rem + 0.21vw, 1.25rem);
  font-weight: 500;
}
.flow-arrow-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
  max-width: calc(100vw - 50px);
  margin: 0 auto;
}
.flow-arrow-straight {
  width: 100%;
}
.flow-arrow {
  display: block;
  background: linear-gradient(90deg, #5B9EFF, #144995);
  height: 10px;
}
.flow-arrow-last1 {
  position: absolute;
  right: 0;
  width: 10px;
  height: 40px;
  top: -4px;
  transform: rotate(45deg);
  background: #144995;
}
.flow-arrow-last2 {
  position: absolute;
  right: 0;
  width: 10px;
  height: 40px;
  bottom: -4px;
  transform: rotate(-45deg);
  background: #144995;
}
.js-order {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}
.js-order.show {
  opacity: 1;
  transform: translateY(0);
}
.js-order.show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-order.show:nth-of-type(2) {
  transition-delay: 0.4s;
}
.js-order.show:nth-of-type(3) {
  transition-delay: 0.8s;
}
.js-order.show:nth-of-type(4) {
  transition-delay: 1.2s;
}
.js-order.show:nth-of-type(5) {
  transition-delay: 1.6s;
}


/*###### ワンストップでご提供 ######*/
.separator {
  background: url(../img/bg_stripe.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: clamp(1.563rem, 1.406rem + 0.52vw, 1.875rem);
  font-weight: 500;
  padding: 15px;
}
#onestop {
  background: url(../img/bg_white.jpg);
  background-size: 30%;
}
#onestop .inner {
  padding-top: 30px;
}
.onestop__heading {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin: 0 auto 40px;
  width: fit-content;
}
.onestop__num {
  max-width: 290px;
  width: 100%;
}
.onestop__message {
  max-width: 660px;
  width: 100%;
  min-width: 0;
}
.onestop__text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
}
.onestop__text-mark {
  color: #de492c;
}
.onestop__box {
  background: #F1F7FE;
  padding: 30px;
  display: flex;
  gap: 30px;
  width: fit-content;
  margin: 0 auto 60px;
}
.onestop__list-heading {
  font-size: clamp(1.25rem, 1.094rem + 0.52vw, 1.563rem);
  color: #144995;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.onestop__list hr {
  border-top: 1px solid #144995;
  margin: 0.5em 0;
}
.onestop__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.onestop__list-item:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: '';
  display: inline-block;
  width: 21px;
  height: 18px;
  background-image: url(../img/icon_check_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#onestop .form__wrapper {
  border: 2px solid #144995;
}
.tel__intro {
  color: #144995;
  font-weight: 500;
  font-size: clamp(1rem, 0.875rem + 0.42vw, 1.25rem);
  text-align: center;
  margin: 40px auto 10px;
}
.btn__tel {
  display: block;
  background: #2C9978;
  border: 3px solid #91cebc;
  padding: 10px 40px;
  border-radius: 5px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.563rem, 1.406rem + 0.52vw, 1.875rem);
  font-weight: 500;
  max-width: 450px;
  width: 100%;
  margin: 0 auto 20px;
}
.btn__tel a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel__icon {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}
.tel__text {
  text-align: center;
}
.tel__text-mark {
  color: #de492c
}
.btn__tel {
  animation: swing 2s infinite;
}
@keyframes swing {
    0% {
        transform: translate(0px, 2px);
    }
    5% {
        transform: translate(0px, -2px);
    }
    10% {
        transform: translate(0px, 2px);
    }
    15% {
        transform: translate(0px, -2px);
    }
    20% {
        transform: translate(0px, 2px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

/*###### トップへ戻る ######*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 100;
  display: none;
}
.pagetop.show {
  display: block;
  transition: 2s;
}
.pagetop.show img {
  opacity: 0.1;
}

/*###### 固定ボタン ######*/
.foot__btn-wrap {
  opacity: 0;
  display: none;
}

/*###### フッター ######*/
.footer {
  background: url(../img/bg_stripe.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
  font-size: clamp(0.875rem, 0.844rem + 0.1vw, 0.938rem);
}
.footer .inner {
  padding: 40px 20px;
}
.footer__logo {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}
.footer__address {
  text-align: center;
  margin-bottom: 20px;
}
address {
  font-style: normal;
  text-align: center;
  font-size: 13px;
}

/*###### IT導入補助金ツール追加 ######*/
.buzz__it {
    color: #144995;
    background: #fbf344;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 0 5px;
    font-size: clamp(1.063rem, 0.729rem + 1.11vw, 1.563rem);
    line-height: 1.3;
    font-weight: bold;
}
