@charset "utf-8";
/*リセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/*HTML5 display-role reset for older browsers*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font: 16px/2.0 "Roboto", 'Noto Sans JP', YuGothic, Arial, Verdana,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN',sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust:100%;
  color: #030A37;
  background: #fff;
  line-height: 2.0;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}



/*共通*/
a {
  color: #333;
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

strong {
  font-weight: bold;
}

.blue {
  color: #4674CC;
}

.red {
  color: #FF7167;
}

.orange {
  color: #F5A736;
}

html { scroll-behavior: smooth;}



/*共通 ボタン*/
.btn-box {
  width: 400px;
  margin: 0 auto 0;
}

.btn {
  width: 100%;
  height: 80px;
  padding: 20px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  border-radius: 40px;
  background: rgb(245,167,54);
  background: linear-gradient(90deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 62%);
  /*box-shadow: 8px 8px 15px -10px #333333;*/
  box-shadow: 1px 10px 30px 0px rgba(255, 147, 16, 0.24);
  transition:0.5s;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.btn:before {
  position: absolute;
  top: 40%;
  right: 32px;
  content: url(../img/btn-icon.svg);
}

.btn:hover {
  color: #fff;
  background: linear-gradient(138deg, rgba(255,113,103,1) 0%, rgba(245,167,54,1) 100%);
}

.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
}
 
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}



/*ヘッダースクロールで表示・非表示*/
#header{
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}
#header.fixed-hide{
  top: -96px;
}

.sp {
  display: none !important; 
}


/*セクションタイトル*/
.section-title-wrapper {
  width: 100%;
  background: rgb(245,167,54);
  background: linear-gradient(90deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 81%);
  padding: 40px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  text-align: center;
}

.section-title {
  width: 1200px;
  margin: 0 auto 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.8;
  font-feature-settings: "palt";
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.title-en {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
  margin-top: -12px;
  display: block;
}

.sub-title {
  width: 100%;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.0;
}

.sub-title .line {
  font-size: 40px;
  font-weight: 600;
  border-bottom: solid 4px #FF7167;
  padding-bottom: 12px;
}



/*ヘッダー*/
.header {
  width: 100%;
  /*min-width: 1200px;*/
  height: 96px;
  padding: 0 40px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  background:rgba(255,255,255,0.5);
  /*position: fixed;*/
  top: 0;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 32px 30px -30px rgb(53 47 47 / 15%);
}

.header-wrapper{
  width: 100%;
  height: 96px;
}

.header-logo {
  float: left;
  margin: 16px 0 0 0;
}

.header-nav {
  width: 560px;
  float: right;
  margin-top: 16px;
}

.header-nav-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 12px;
}

.header-nav-list li {
  width: 100%;
}

.header-nav-list li a {
  width: 280px;
  height: 64px;
  display: block;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  padding: 16px 16px 12px 112px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  border-radius: 9999px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);  
}

.nav-contact-btn {
  background: #FF7167;
}

.nav-contact-btn:before {
  position: absolute;
  top: 17px;
  left: 40px;
  content: url(../img/contact-icon.svg);
}

.nav-document-btn {
  background: rgb(245,167,54);
  background: linear-gradient(90deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 81%);
}

.nav-document-btn:before {
  position: absolute;
  top: 14px;
  left: 40px;
  content: url(../img/document-icon.svg);
}



/*ビジュアル*/
.visual {
  width: 100%;
  height: 880px;
  background-image: url(../img/top-visual-bg.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
  margin: 0 0 0;
}

.visual-wrapper {
  width: 1200px;
  margin: 0 auto 0;
  position: relative;
}

.visual-inner {
  width: 1200px;
}

.visual-title {
  width: 100%;
  max-width: 556px;
  position: absolute;
  top:320px;
  right: -28px;
}

.visual-title img {
  width: 100%;
}

.visual-btn {
  width: 400px;
  height: 80px;
  position: absolute;
  top: 640px;
  right: -4px;
  z-index: 3;
}



/*実績ロゴ swiper*/
.works-logo {
  width: 100%;
  padding: 80px 0;
  background-image: url(../img/bg-01.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
  box-sizing: border-box;
}

.works-logo-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0;
}

.works-logo-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 20px 20px;
  margin-bottom: 24px;
}

.works-logo-list li {
  width: 100%;
}

.works-logo-list li img {
  width: 100%;
}

.works-logo-supplement {
  width: 100%;
  text-align: center;
  font-size: 14px;
}



/*実態*/
.fact {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  background-image: url(../img/fact-bg.png) ;
  background-repeat: no-repeat;
  background-position: right 0% top 0%;
  background-size: cover;
  overflow: hidden;
}

.fact-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}

.fact-title {
  width: 100%;
  font-size: 48px;
  font-weight: 700;
  font-feature-settings: "palt";
  margin: 0 0 56px;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(255,255,255,0.4);
  line-height: 1.0;
}

.fact-explanation {
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 32px;
  line-height: 1.6;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(255,255,255,0.4);
}

.fact-chart {
  width: 100%;
}

.fact-chart img {
  width: 100%;
}



/*スタートしませんか*/
.start {
  width: 100%;
  height: 392px;
  padding: 72px 0 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  background-image: url(../img/start-bg.png) ;
  background-repeat: no-repeat;
  background-position: right 0% top 0%;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.start-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}

.start-title {
  width: 100%;
  font-size: 48px;
  font-weight: 700;
  font-feature-settings: "palt";
  margin: 0 0 56px;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
}

.start-chart {
  width: 100%;
}

.start-chart img {
  width: 100%;
}



/*こんなお悩みありませんか*/
.problems {
  width: 100%;
  padding: 160px 0 80px;
  position: relative;
  z-index: 1;
  background-image: url(../img/bg-01.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
  box-sizing: border-box;
}

.problems-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}
.problems-list {
  width: 100%;
}

.problems-list li {
  width: 100%;
  padding: 20px 24px 16px 64px;
  box-sizing: border-box;
  background-image: url(../img/check-icon.png);
  background-repeat: no-repeat;
  background-position: left 24px top 50%;
  background-size: 24px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.problems-list li:last-child {
  margin-bottom: 0;
}



/*７つの壁*/
.wall {
  width: 100%;
  padding: 0 0 80px;
  background: #FFF4F3;
  overflow: hidden;
}

.wall-wrapper {
  width: 100%;
  padding: 80px 80px 0;
  box-sizing: border-box;
  margin: 0 auto 56px;
  overflow: hidden;
}

.wall-chart {
  width: 44%;
  float: left;
  margin-top: 80px;
  margin-right: 7%;
}

.wall-chart img {
  width: 100%;
}

.wall-list {
  width: 33.5%;
  float: left;
  overflow: hidden;
}

.wall-list li{
  border-bottom: solid 1px #FF7167;
  padding: 32px 0;
  overflow: hidden;
}
.wall-list li:first-child {
  padding: 0 0 32px; 
}

.wall-list .circle {
  width: 80px;
  height: 80px;
  padding: 2px 0;
  display: block;
  box-sizing: border-box;
  background: #FF7167;
  border-radius: 999px;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  float: left;
  text-align: center;
}

.wall-description {
  width: 82%;
  float: left;
  padding-left: 16px;
  box-sizing: border-box;
}

.wall-title {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wall-explanation {
  width: 100%;
  font-size: 20px;
  line-height: 1.4;
}

.wall-appeal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 48px 40px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  font-size: 40px;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}



/*４つの理由*/
.reason {
  width: 100%;
  padding: 0 0 80px;
  background-image: url(../img/bg-01.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
}

.reason-wrapper {
  width: 1200px;
  margin: 0 auto 0;
  padding: 112px 0 0;
  box-sizing: border-box;
}

.reason-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 40px 24px;  
  margin-bottom: 80px;
}

.reason-list li{
  width: 100%;
  box-sizing: border-box;
  padding: 80px 24px 40px;
  border: solid 4px #FF7167;
  border-radius: 16px;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
  background: #ffffff;
}

.reason-list .circle,
.chart-list .circle {
  width: 80px;
  height: 80px;
  padding: 2px 28px;
  display: block;
  box-sizing: border-box;
  background: #FF7167;
  border-radius: 999px;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: -120px auto 40px;
}

.reason-img {
  width: 240px;
  margin: 0 auto 24px;
}

.reason-img img {
  width: 100%;
}

.reason-description {
  width: 100%;
}

.reason-title {
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.reason-title-text {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 24px;
}

.reason-title-result {
  font-size: 56px;
  font-weight: 600;
  color: #FF7167;
}

.reason-explanation {
  width: 100%;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.reason-supplement {
  font-size: 14px;
}

.chart-list {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 24px 40px;
  border: solid 4px #FF7167;
  border-radius: 16px;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
  background: #ffffff;
}


.chart-list .reason-img {
  width: 955px;
  margin: 0 auto 24px;
}

.chart-list .reason-title {
  margin-bottom: 24px;
}

.chart-list .reason-explanation {
  text-align: center;
}



.bg-style {
  width: 100%;
  background-image: url(../img/bg-01.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
}




/*他社との違い*/
.difference {
  width: 100%;
}

.difference-wrapper {
  width: 1200px;
  padding: 56px 0 0;
  margin: 0 auto 0;
}

.difference-img {
  width: 100%;
  margin-bottom: 8px;
}

.difference-img img {
  width: 100%;
}



/*サービス内容*/
.service {
  width: 100%;
  padding: 80px 0 0;
  box-sizing: border-box;
}

.service-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}

.service-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 80px 24px;  
  padding-top: 40px;
}

.service-list li{
  width: 100%;
  box-sizing: border-box;
  padding: 56px 40px 40px;
  border: solid 4px #030A37;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.service-explanation {
  width: 100%;
}

.service-title {
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.service-explanation li {
  width: 100%;
  padding: 16px 0 16px 32px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #CECECE;
  border-radius: 0;
  font-size: 18px;
  background-image: url(../img/check-icon-circle.png);
  background-repeat: no-repeat;
  background-position: left 0 top 50%;
  background-size: 20px;
  box-shadow: 0 0 0 0;
}

.service-explanation li:first-child {
  border-top: solid 1px #CECECE;
}

.service-list .circle {
  width: 80px;
  height: 80px;
  padding: 2px 28px;
  display: block;
  box-sizing: border-box;
  background: #030A37;
  border-radius: 999px;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: -100px auto 40px;
}



/*プラン*/
.plan {
  width: 100%;
  padding: 72px 0 96px;
  box-sizing: border-box;
}

.plan-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}

.plan-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 80px 24px; 
  margin-bottom: 40px;
}

.plan-list li{
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 40px;
  border: solid 4px #030A37;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.plan-explanation {
  width: 100%;
  padding: 0 40px 0;
  box-sizing: border-box;
}

.plan-explanation li {
  width: 100%;
  padding: 12px 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #CECECE;
  border-radius: 0;
  font-size: 18px;
  background-size: 20px;
  text-align: center;
  box-shadow: 0 0 0 0;
}

.plan-explanation li:first-child {
  border-top: solid 1px #CECECE;
}

.plan-title {
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  background: #030A37;
  color: #ffffff;
  padding: 12px 40px;
  box-sizing: border-box;
}

.plan-description {
  width: 100%;
  margin-bottom: 24px;
  padding: 0 40px 0;
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
}



/*採用実績*/
.adoption {
  width: 100%;
  padding: 72px 0;
  background-image: url(../img/adoption-bg.png) ;
  background-repeat: no-repeat;
  background-position: right 0% top 0%;
  background-size: cover;
  box-sizing: border-box;
}

.adoption-wrapper {
  width: 1200px;
  margin: 0 auto 0;
}

.adoption-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 80px 24px;
}

.adoption-list li{
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.adoption-explanation {
  width: 100%;
  margin-bottom: 24px;
}

.adoption-explanation li {
  width: 100%;
  padding: 4px 0 0 16px;
  border-radius: 0;
  font-size: 18px;
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-position: left 0 top 52%;
  background-size: 8px;
  box-shadow: 0 0 0 0;
}

.adoption-title {
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.decoration-line-s {
  width: 40px;
  height: 4px;
  font-size: 0;
  background: #FF7167;
  margin: 0 auto 32px;
}

.adoption-label-achievement {
  width: 80px;
  padding: 4px 4px 2px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background: #030A37;
  margin: 0 0 16px;
}

.adoption-label-example {
  width: 80px;
  padding: 4px 4px 2px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background: #FF7167;
  margin: 0 0 16px;
}

.adoption-description {
  width: 100%;
  font-size: 16px;
}



/*導入までの流れ*/
.flow {
  width: 100%;
  padding: 0 0 80px;
  background-image: url(../img/bg-01.png) ;
  background-repeat: no-repeat;
  background-position: right 50% top 0%;
  background-size: cover;
}

.flow-wrapper {
  width: 1200px;
  padding: 80px 0 0;
  margin: 0 auto 0;
  box-sizing: border-box;
}

.flow-list {
  width: 100%;
  margin-bottom: 80px;
}

.flow-list li{
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 6fr;
  grid-template-rows: auto;
  grid-gap: 0 0; 
  margin-bottom: 12px;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.flow-explanation {
  width: 100%;
  padding: 24px 32px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0px 0px 16px -6px rgba(25,25,25,0.1);
}

.flow-explanation li {
  width: 100%;
  padding: 8px 8px 8px 32px;
  font-size: 18px;
  display: block;
  margin-bottom: 0;
  background-image: url(../img/check-icon.png);
  background-repeat: no-repeat;
  background-position: left 0 top 50%;
  background-size: 24px;
  box-shadow: 0 0 0 0;
}

.flow-title {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  background: #030A37;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0 0 12px;
  line-height: 1.2;
}

.flow-title-step {
  font-size: 16px;
  display: block;
}

.flow-description {
  width: 100%;
  padding: 0 40px 0;
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
}



/*フッター*/
.footer {
  width: 100%;
  background: #030A37;
}

.footer-wrapper {
  width: 1200px;
  margin: 0 auto 0;
  padding: 80px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
}

.footer-logo {
  margin-top: 80px;
}

.footer-box {
  width: 1200px;
  display: flex;/*子を横並びにする*/
  flex-wrap:wrap;/*子を横幅で折り返すようにする*/
  justify-content: space-between;/*子を均等に横並びにする*/
  box-sizing: border-box;/*ボーダーとパディングを含める*/
}

.footer-security {
  width: calc(96% / 3);/*横幅とカラム調整*/
}

.footer-security-title {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.footer-security-title-s {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  margin: 2px 0 8px;
  color: #ffffff;
}

.footer-security-explanation {
  width: 100%;
  font-size: 12px;
  line-height: 2.0;
  color: #ffffff;
}

.footer-copy {
  padding: 24px;
  background: #030A37;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}



/*TOPへボタン*/
#page-top {
  bottom: 10px;
  color: #005DAB;
  font-family: "Roboto Condensed",sans-serif;
  font-size: 1.4rem;
  position: fixed;
  right: 20px;
  text-align: center;
  z-index: 800;
  opacity: 0; /*最初は非表示に*/
}

#page-top a {
  background: rgb(61,199,218);
  background: linear-gradient(138deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 100%);
  color: #ffffff;
  /* border-radius: 50%; */
  display: block;
  height: 56px;
  margin: 0 0 15px;
  width: 56px;
  /*box-shadow: 0 2px 6px rgb(255 255 255 / 50%);*/
  border-radius: 50px;
  box-shadow: 0px 0px 15px -5px #ffffff;
  transition: all 0.3s;
}

#page-top a::after {
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  content: "";
  height: 12px;
  left: 50%;
  margin: -18px 0 0 -7px;
  position: absolute;
  top: 60%;
  transform: rotate(-45deg);
  width: 12px;
}




@media screen and (max-width: 1700px) {
  .wall-wrapper {
    padding: 80px 0 0 80px;
  }

  .wall-list {
    width: 40%;
  }
}


@media screen and (max-width: 1400px) {
  .wall-wrapper {
    padding: 80px 0 0 40px;
  }

  .wall-list {
    width: 42%;
  }
}

@media screen and (max-width: 1100px) {
  .header-nav {
    display: none;
  }
  .wall-wrapper {
    padding: 80px 0 0 0;
  }
  .wall-list {
    width: 49%;
  }
  .wall-chart {
    margin-right: 4%;
  }
}


/*タブレット版・スマートフォン版*/
@media screen and (max-width: 843px) {

.sp {
  display: block !important; 
}

.pc {
  display: none !important; 
} 

/*共通 ボタン*/
.btn-box {
  width: 100%;
  max-width: 390px;
  margin: 0 auto 0;
}

.btn {
  width: 100%;
  height: 64px;
  padding: 16px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  border-radius: 40px;
  background: rgb(245,167,54);
  background: linear-gradient(90deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 62%);
  /*box-shadow: 8px 8px 15px -10px #333333;*/
  box-shadow: 1px 4px 30px 0px rgb(255 147 16 / 24%);
  transition:0.5s;
}

.btn:before {
  position: absolute;
  top: 40%;
  right: 28px;
  content: url(../img/sp-btn-icon.svg);
}

.btn:hover {
  color: #fff;
  background: linear-gradient(138deg, rgba(255,113,103,1) 0%, rgba(245,167,54,1) 100%);
}

.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
}
 
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}



/*ヘッダースクロールで表示・非表示*/
#header{
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}
#header.fixed-hide{
  top: -96px;
}



/*セクションタイトル*/
.section-title-wrapper {
  padding: 24px 4%;
}

.section-title {
  width: 100%;
  font-size: 24px;
  line-height: 1.6;
}

.title-en {
  font-size: 12px;
  margin-top: -12px;
}

.sub-title {
  margin-bottom: 40px; 
}

.sub-title .line {
  font-size: 18px;
  padding-bottom: 12px;
}

.font-style {
  font-size: 17px !important;
}


/*ヘッダー*/
.header {
  height: 64px;
  padding: 0 0 0 4%;
  position: fixed;
  background: rgba(255,255,255,0.6);
}

.header-wrapper{
  height: 64px;
}

.header-logo {
  width: 136px;
  margin: 18px 0 0 0;
}

.header-logo img {
  width: 100%;
}

.header-nav {
  width: 177px;
  margin-top: 0;
  display: block;
}

.header-nav-list {
  width: 100%;
  grid-gap: 0 1px;
}

.header-nav-list li {
  width: 100%;
}


.header-nav-list li a {
  width: 88px;
  height: 64px;
  display: block;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  padding: 38px 0 12px 0;
  position: relative;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  border-radius: 0px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);  
}

.nav-contact-btn {
}

.nav-contact-btn:before {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/sp-contact-icon.svg);
}

.nav-document-btn {
  background: rgb(245,167,54);
  background: linear-gradient(90deg, rgba(245,167,54,1) 0%, rgba(255,113,103,1) 81%);
}

.nav-document-btn:before {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../img/sp-document-icon.svg);
}



/*ビジュアル*/
.visual {
  width: 100%;
  height: 604px;
  background-image: url(../img/sp-top-visual-bg.png) ;
  background-position: right 50% top 0%;
  background-size: cover;
  margin: 0 0 0;
}

.visual-wrapper {
  width: 92%;
  margin: 0 auto 0;
  position: relative;
}

.visual-inner {
  width: 100%;
}

.visual-title {
  width: 355px;
  max-width: 100%;
  position: absolute;
  top:350px;
  left: 47%;
  transform: translate(-50%, -50%);
}

.visual-title img {
  width: 100%;
}



/*実績ロゴ swiper*/
.works-logo {
  padding: 40px 4%;
  background-image: url(../img/bg-01.png) ;
}

.works-logo-wrapper {
  max-width: 100%;
}

.works-logo-list {
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px 12px;
  margin-bottom: 8px;
  line-height: 0;
}

.works-logo-list li {
}

.works-logo-list li img {
}

.works-logo-supplement {
  font-size: 12px;
}



/*実態*/
.fact {
  padding: 40px 4%;
  background-image: url(../img/sp-fact-bg.png) ;
  background-size: cover;
}

.fact-wrapper {
  width: 100%;
}

.fact-title {
  font-size: 24px;
  margin: 0 0 16px;
  line-height: 1.6;
}

.fact-explanation {
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 1.8;
}

.fact-chart {
  width: 100%;
  max-width: 374px;
  margin: 0 auto 0;
}

.fact-chart img {
  width: 100%;
}



/*スタートしませんか*/
.start {
  height: 423px;
  padding: 40px 2% 0;
  background-image: url(../img/sp-start-bg.png) ;
  background-position: right 50% top 0%;
  background-size: cover;
}

.start-wrapper {
  width: 100%;
}

.start-title {
  font-size: 24px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.start-chart {
  width: 100%;
  max-width: 374px;
  margin: 0 auto 0;
}

.start-chart img {
  width: 100%;
}



/*こんなお悩みありませんか*/
.problems {
  padding: 40px 4% 40px;
  background-image: url(../img/bg-01.png) ;
}

.problems-wrapper {
  width: 100%;
}
.problems-list {
}

.problems-list li {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background-image: url(../img/check-icon.png);
  background-position: left 16px top 20px;
  background-size: 20px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.problems-list li:last-child {
  margin-bottom: 0;
}



/*７つの壁*/
.wall {
  padding: 0 0 40px;
}

.wall-wrapper {
  width: 100%;
  padding: 40px 4% 0;
  margin: 0 auto 24px;
}

.wall-chart {
  width: 100%;
  float: none;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
}

.wall-chart img {
  width: 100%;
}

.wall-list {
  width: 100%;
  float: none;
}

.wall-list li{
  padding: 24px 0;
}
.wall-list li:first-child {
  padding: 0 0 24px; 
}

.wall-list .circle {
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  line-height: 1.6;
}

.wall-description {
  width: 84%;
}

.wall-title {
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 18px;
}

.wall-explanation {
  font-size: 15px;
  line-height: 1.4;
}

.wall-appeal {
  width: 92%;
  padding: 24px 24px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.8;
}



/*４つの理由*/
.reason {
  width: 100%;
  padding: 0 0 40px;
  background-image: url(../img/bg-01.png) ;
}

.reason-wrapper {
  width: 100%;
  padding: 64px 4% 0;
}

.reason-list {
  grid-template-columns: 1fr;
  grid-gap: 48px 0;  
  margin-bottom: 40px;
}

.reason-list li{
  padding: 40px 16px 24px;
  border: solid 2px #FF7167;
  border-radius: 8px;
}

.reason-list .circle,
.chart-list .circle {
  width: 48px;
  height: 48px;
  padding: 2px 0;
  font-size: 24px;
  margin: -64px auto 24px;
  text-align: center;
  line-height: 1.9;
}

.reason-img {
  width: 160px;
  margin: 0 auto 16px;
}

.reason-img img {
}

.reason-description {
}

.reason-title {
  font-size: 20px;
  margin-bottom: 4px;
}

.reason-title-text {
  font-size: 15px;
  margin-bottom: 16px;
}

.reason-title-result {
  font-size: 36px;
  font-weight: 600;
  color: #FF7167;
}

.reason-explanation {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reason-supplement {
  font-size: 12px;
  line-height: 1.4;
}

.chart-list {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 16px 24px;
  border: solid 2px #FF7167;
  border-radius: 8px;
}

.chart-list .reason-img {
  width: 100%;
  margin: 0 auto 16px;
}

.chart-list .reason-img img {
  width: 100%;
}

.chart-list .reason-title {
  margin-bottom: 8px;
}

.chart-list .reason-explanation {
  text-align: left;
  margin-bottom: 0;
}



.bg-style {
  background-image: url(../img/sp-bg-01.png) ;
}



/*他社との違い*/
.difference {
  width: 100%;
}

.difference-wrapper {
  width: 100%;
  padding: 20px 0 16px;
  margin: 0 auto 0;
  box-sizing: border-box;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.difference-img {
  width: 800px;
  margin-bottom: 0;
}

.difference-img img {
  width: 100%;
}

.difference-btn-box {
  width: 92%;
  margin: 0 auto 0;
}



/*サービス内容*/
.service {
  padding: 40px 4% 0;
}

.service-wrapper {
  width: 100%;
}

.service-list {
  grid-template-columns: 1fr;
  grid-gap: 48px 0;  
  padding-top: 24px;
}

.service-list li{
  padding: 32px 32px 32px;
  border: solid 2px #030A37;
  border-radius: 8px;
}

.service-explanation {
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.service-explanation li {
  padding: 12px 0 12px 32px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #CECECE;
  border-radius: 0;
  font-size: 17px;
}

.service-explanation li:first-child {
  border-top: solid 1px #CECECE;
}

.service-list .circle {
  width: 48px;
  height: 48px;
  padding: 2px 0;
  font-size: 24px;
  margin: -58px auto 16px;
  text-align: center;
  line-height: 1.9;
}



/*プラン*/
.plan {
  padding: 40px 4% 40px;
}

.plan-wrapper {
  width: 100%;
}

.plan-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px 0; 
  margin-bottom: 40px;
}

.plan-list li{
  padding: 0 0 24px;
  border: solid 2px #030A37;
  border-radius: 8px;
}

.plan-explanation {
  width: 100%;
  padding: 0 32px 0;
  box-sizing: border-box;
}

.plan-explanation li {
  width: 100%;
  padding: 12px 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #CECECE;
  border-radius: 0;
  font-size: 17px;
  background-size: 20px;
  text-align: center;
  line-height: 1.6;
}

.plan-explanation li:first-child {
  border-top: solid 1px #CECECE;
}

.plan-title {
  font-size: 20px;
  margin-bottom: 24px;
  padding: 8px 40px;
}

.plan-description {
  margin-bottom: 20px;
  padding: 0 40px 0;
  font-size: 17px;
  line-height: 1.6;
}



/*採用実績*/
.adoption {
  width: 100%;
  padding: 40px 4%;
  background-image: url(../img/sp-adoption-bg.png) ;
  background-size: cover;
}

.adoption-wrapper {
  width: 100%;
}

.adoption-list {
  grid-template-columns: 1fr;
  grid-gap: 24px 0; 
  margin-bottom: 0;
}

.adoption-list li{
  box-sizing: border-box;
  padding: 40px 24px;
  border-radius: 8px;
  background: #ffffff;
}

.adoption-explanation {
  margin-bottom: 16px;
}

.adoption-explanation li {
  padding: 0 0 0 16px;
  border-radius: 0;
  font-size: 16px;
  background-image: url(../img/circle.png);
  background-repeat: no-repeat;
  background-position: left 0 top 44%;
  background-size: 8px;
}

.adoption-title {
  font-size: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.decoration-line-s {
  width: 64px;
  height: 4px;
  font-size: 0;
  background: #FF7167;
  margin: 0 auto 24px;
}

.adoption-label-achievement {
  width: 80px;
  padding: 2px 4px 0;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background: #030A37;
  margin: 0 0 8px;
}

.adoption-label-example {
  width: 80px;
  padding: 2px 4px 2px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background: #FF7167;
  margin: 0 0 8px;
}

.adoption-description {
  width: 100%;
  font-size: 14px;
}



/*導入までの流れ*/
.flow {
  padding: 0 0 40px;
  background-image: url(../img/bg-01.png) ;
}

.flow-wrapper {
  width: 100%;
  padding: 40px 4% 0;
}

.flow-list {
  width: 100%;
  margin-bottom: 40px;
}

.flow-list li{
  border-radius: 8px;
  grid-template-columns: 1fr;
  grid-gap: 0 0; 
  margin-bottom: 24px;
}

.flow-explanation {
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
}

.flow-explanation li {
  width: 100%;
  padding: 12px 0 12px 32px;
  font-size: 14px;
  display: block;
  margin-bottom: 0;
  background-image: url(../img/check-icon.png);
  background-repeat: no-repeat;
  background-position: left 0 top 16px;
  background-size: 20px;
  line-height: 1.6;
}

.flow-title {
  width: 100%;
  padding: 14px 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  background: #030A37;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-flow: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 8px 8px 0 0;
  line-height: 1.2;
}

.flow-title-step {
  font-size: 12px;
  display: inline;
  padding-right: 8px;
}

.flow-description {
  width: 100%;
  padding: 0 40px 0;
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
}





















/*フッター*/
.footer {
}

.footer-wrapper {
  width: 92%;
  margin: 0 auto 0;
  padding: 40px 0 40px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
}

.footer-logo {
  width: 100%;
  text-align: center;
  margin: 0 0 40px;
}

.footer-logo img {
  width: 50%;
} 

.footer-box {
  width: 100%;
  display: flex;/*子を横並びにする*/
  flex-wrap:wrap;/*子を横幅で折り返すようにする*/
  justify-content: space-between;/*子を均等に横並びにする*/
  box-sizing: border-box;/*ボーダーとパディングを含める*/
}

.footer-security {
  width: calc(96% / 1);/*横幅とカラム調整*/
  margin: 0 0 0;
}

.footer-security-title {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  text-align: center;
}

.footer-security-title-s {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  margin: 2px 0 8px;
}

.footer-security-explanation {
  width: 100%;
  font-size: 12px;
  line-height: 2.0;
  text-align: center;
}

.footer-copy {
  padding: 0 0 24px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}



#page-top {
  bottom: 2%;
  right: 3.5%;
}

#page-top a {
  height: 48px;
  width: 48px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

}





/*スマートフォン版*/
@media screen and (max-width: 599px) {
/*個別に位置を指定*/
.section-title-sub-reason {
  width: 40px;
  height: 20px;
  top: 76px;
  right: 0;
}

.section-title-sub-example {
  width: 49px;
  height: 20px;
  top: 32px;
  right: 0;
}

.section-title-sub-realization {
  width: 80px;
  height: 20px;
  top: 40px;
  right: 0;
}

.section-title-sub-outsourcing {
  width: 72px;
  height: 90px;
  top: 80px;
  right: 0;
}

.hift-title-sub-copy {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  font-size: 16px;
  color: #3DC7DA;
  transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  font-family: 'Dancing Script', cursive;
  z-index: 2;
}

#acMenu dt {
  font-size: 14px;
  font-weight: 500;
  border-top: solid 1px #E1E1E1;
  padding: 24px 40px 24px 40px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  cursor: pointer;
  background-image: url(../img/sp-q.png),url(../img/sp-arrow-plus.png);
  background-repeat: no-repeat,no-repeat;
  background-position: left 4% top 46%,right 4% top 50%;
  background-size: 16px;
}

#acMenu dt.active {
  background-image: url(../img/sp-q.png),url(../img/sp-arrow-minus.png);
  background-repeat: no-repeat,no-repeat;
  background-position: left 4% top 46%,right 4% top 50%;
  background-size: 16px;
  }

#acMenu dd {
  display: none;
  font-size: 14px;
  padding: 0 32px 32px 40px;
  box-sizing: border-box;/*ボーダーとパディングを含める*/
  background-image: url(../img/sp-a.png) ;
  background-repeat: no-repeat;
  background-position: left 4% top 0%;
  background-size: 14px;
}

}