:root {
  --screen-max-width: 1600px;
  --section-inner-width: 1080px;
}

html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: var(--screen-max-width);
  margin: auto;
  background-color: #FAFBFC;
  background-image: url(../img/body-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  line-height: 1.6;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

body.background-white {
  background-image: unset !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height: unset;
}

a {
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

.ol,
ul {
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

p {
  margin-bottom: 0;
}

.title-bold {
  font-weight: 900;
}

.text-large {
  font-size: 2.3rem;
}

.text-medium {
  font-size: 1.9rem;
}

/* Header pc start  */
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  height: 80px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.header .left,
.header .right {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.header .left .logo {
  display: inline-block;
  width: 257px;
  margin-left: 32px;
  margin-right: 25px;
}

.header .left .logo img {
  width: 100%;
  display: block;
}

.header .left .description {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
}

.header .right {
  height: 100%;
}

.header .right .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header .right .navigation .nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-right: 15px;
  white-space: nowrap;
}

.header .right .logout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 9px 15px;
  background: #fff;
  border: none;
  border-radius: 5px;
  margin-right: 15px;
}

.header .right-link {
  height: 100%;
  color: #fff;
  font-weight: 700;
  display: flex;
  padding: 0 15px;
  align-items: center;
}

.header .right-link.inquiry {
  background-color: #2699D5;
}

.header .right-link.download {
  background-color: #E24719;
}

/* Header sp start  */
.header-sp {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  height: 70px;
  background: #000;
  padding: 0 15px;
  z-index: 10;
}

.header-sp .logo {
  width: 45%;
  max-width: 289px;
}

.header-sp .header-links {
  display: flex;
  flex-direction: row;
}

.header-sp .header-links a {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 0.6875rem;
}

.header-sp .header-links a img {
  margin-bottom: 5px;
  width: 25px;
}

.header-sp .header-links .menu-icon {
  width: 34px;
}

.header-sp .header-links .menu-icon img {
  margin-bottom: 0;
}

.header-sp .header-links .menu-icon-cross {
  display: none;
  width: 34px;
}

.header-sp .menu {
  position: fixed;
  top: 70px;
  width: 100%;
  height: calc(100% - 70px);
  right: -100%;
  background: #000;
  color: #fff;
  padding: 15px;
  transition: 0.3s;
}

.header-sp .menu.open {
  right: 0;
}

.header-sp .menu .menu-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-sp .menu .menu-links a {
  display: block;
  font-size: 0.875rem;
  padding-bottom: 15px;
}

.header-sp .menu .menu-links a img {
  margin-right: 10px;
  position: relative;
  top: 2px;
  height: 14px;
}

.header-sp .menu .menu-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  color: #fff;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header-sp .menu .menu-btn.inquiry {
  background-color: #2699D5;
}

.header-sp .menu .menu-btn.download {
  background-color: #E24719;
}

.header-sp .menu .menu-btn img {
  margin-left: 15px;
}

/* Hero section start  */
/* .hero-section {
    background-image:url(../img/body-bg-top.png), url(../img/body-bg-bottom.png);
    background-size:100%, 100%;
    background-position:right top, left bottom;
    background-repeat:no-repeat, no-repeat;
} */
.hero {
  max-width: var(--section-inner-width);
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 55px 0 120px;
}

.hero .content {
  width: 60%;
  padding-top: 26px;
}

.hero .content .title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero .content .subtitle {
  font-size: 1.5rem;;
  font-weight: 700;
  margin-bottom: 33px;
}

.hero .content .logo {
  width: 560px;
  max-width: 100%;
  margin-bottom: 34px;
}

.hero .content .text {
  font-size: 2rem;;
  font-weight: 500;
  text-align: center;
}

.hero .content .download-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.5rem;;
  font-weight: 700;
  color: #fff;
  background-color: #E24719;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  padding: 7px 60px;
  margin: 42px auto;
  width: fit-content;
}

.hero .content .download-link img {
  margin-left: 20px;
}

.hero .content .description {
  font-size: 0.875rem;
  line-height: 24px;
}

.hero .img {
  width: 40%;
}

.hero .img img {
  display: block;
  margin: auto;
}

/* Notice section start  */
.notice {
  max-width: var(--section-inner-width);
  background: #fff;
  padding: 26px 32px;
  border-radius: 20px;
  margin: auto;
}

.notice .title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2699D5;
  text-align: center;
  margin-bottom: 40px;
}

.notice .item {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.notice .item:last-of-type {
  border-bottom: none;
}

.notice .date {
  min-width: 86px;
  font-size: 0.875rem;
  font-weight: 700;
}

.notice .content {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Feature section start  */
.feature {
  max-width: var(--section-inner-width);
  margin: auto;
  padding: 120px 0;
}

.feature .img-column {
  width: calc(55% - 40px);
}

.feature .label {
  font-size: 1.125rem;;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 27px;
}

.feature .label::after {
  content: '';
  width: 100px;
  height: 2px;
  background: #2699D5;
  margin-left: 30px;
}

.feature .title {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 50px;
  white-space: nowrap;
}

.feature .title::after {
  content: 'New';
  font-size: 0.75rem;
  display: flex;
  background: #E24719;
  color: #fff;
  border-radius: 15px;
  margin-left: 60px;
  height: 24px;
  width: 40px;
  align-items: center;
  justify-content: center;
  line-height: 0.15rem;
}

.feature .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 66px;
}

.feature .item .content {
  width: calc(55% - 40px);
}

.feature .img-column .item .content {
  width: 100%;
}

.feature .item .content .subtitle {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 27px;
}

.feature .item .content p {
  font-size: 1.5rem;;
  font-weight: 400;
  margin-bottom: 36px;
}

.feature .item .content h5 {
  font-size: 1.125rem;;
  font-weight: 700;
  background: #2699D5;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.feature .item .content ul li {
  margin-bottom: 24px;
  line-height: 24px;
  font-weight: 400;
}

.feature .item .content ul li:last-of-type {
  margin-bottom: 0;
}

.feature .item .content ul li span {
  font-size: 0.5rem;
}

.feature .item .img {
  width: 45%;
}

/* Full notification section start  */
.full-notification {
  max-width: var(--section-inner-width);
  margin: 0 auto 120px;
}

.full-notification .title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 34px;
  line-height: 49px;
}

.full-notification .description {
  font-size: 0.875rem;
  margin-bottom: 41px;
}

.full-notification .notifications {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.full-notification .notifications .item {
  width: calc(20% - 16px);
  margin: 8px;
  background: #fff;
  border: solid #e3e2e2 1px;
  border-radius: 6px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  position: relative;
}

.full-notification .notifications .item.is-new::after {
  content: 'New';
  font-size: 0.75rem;
  padding: 1px 7px 3px;
  background: #E24719;
  color: #fff;
  border-radius: 15px;
  position: absolute;
  top: 13px;
  right: 10px;
}

.full-notification .notifications .item img {
  height: 64px;
  margin-bottom: 16px;
}

.full-notification .notifications .item a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #2699D5;
  text-decoration: underline;
}

.full-notification h4 {
  font-size: 1.5rem;;
  font-weight: 500;
  margin-top: 34px;
  margin-bottom: 34px;
}

.full-notification .notifications p {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
}

/* Options section start  */
.options-section {
  background: #ECF1F7;
}

.options {
  max-width: var(--section-inner-width);
  margin: auto;
  padding: 83px 0;
}

.options .title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 42px;
  line-height: 49px;
}

.options .subtitle {
  font-size: 1.5rem;;
  font-weight: 700;
  text-align: center;
  margin: auto;
  position: relative;
}

.options .subtitle span {
  display: inline-block;
  background-color: #ECF1F7;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.options .subtitle::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2699D5;
  transform: translateY(-50%);
}

.options .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 43px;
}

.options .item .content {
  width: 55%;
}

.options .item.item-table .content {
  padding-right: 70px;
}

.options .item .content h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 17px;
}

.options .item .content h5 {
  font-size: 1.125rem;;
  font-weight: 700;
  background: #2699D5;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.options .item .content p {
  font-size: 0.875rem;
  margin-bottom: 32px;
  line-height: 24px;
  font-weight: 400;
}

.options .item .img {
  width: 45%;
}

.options .item .table-container {
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 20px;
  text-align: left;
}

.options .item .table-container span {
  font-weight: 700;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  background: #2699D5;
  border-bottom-right-radius: 10px;
}

.options .item .table-container table {
  margin: 20px auto 0;
  border-collapse: collapse;
}

.options .item .table-container table td {
  border: 1px solid #EFEFEF;
}

.options .item .table-container table td {
  padding: 7px 10px;
}

.options .item .table-container table td.border-left-0 {
  border-left: none;
}

.options .item .table-container table td.border-top-0 {
  border-top: none;
}

.options .item .table-container table td:nth-of-type(2) {
  text-align: center;
}

.options .item .table-container table td:last-of-type {
  background: #EFF6FF;
  text-align: center;
  color: #2699D5;
}

.options .item .list-title {
  padding-top: 32px;
  color: #E24719;
}

.options .item ul li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
}

/* Price section start  */
.price {
  max-width: 1080px;
  margin: auto;
  padding: 110px 0;
}

.price .label {
  font-size: 1.125rem;;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 27px;
}

.price .label::after {
  content: '';
  width: 100px;
  height: 2px;
  background: #2699D5;
  margin-left: 30px;
}

.price .title {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 42px;
  line-height: 49px;
}

.price .title::after {
  content: 'New';
  font-size: 0.75rem;
  display: flex;
  background: #E24719;
  color: #fff;
  border-radius: 15px;
  margin-left: 21px;
  height: 24px;
  width: 40px;
  align-items: center;
  justify-content: center;
  line-height: 0.15rem;
}

.price .subtitle {
  font-size: 1.5rem;;
  font-weight: 700;
  text-align: center;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}

.price .subtitle span {
  display: inline-block;
  background-color: #FAFBFC;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.price .subtitle::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2699D5;
  transform: translateY(-50%);
}

.price .plans {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  background: #2699D5;
  padding: 17px 0;
  margin-bottom: 61px;
}

.price .plans .plan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 33.333%;
  color: #fff;
  font-size: 1.125rem;;
  font-weight: 700;
}

.price .plans .plan:nth-of-type(2) {
  width: calc(33.333% - 2px);
}

.price .plans .plan span {
  display: block;
}

.price .plans .divider {
  display: block;
  height: 29px;
  width: 1px;
  background-color: #ECF1F7;
}

.price .table-responsive {
  margin-bottom: 40px;
  overflow: auto;
}

.price .table-responsive .discount-table-title {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 16px;
}

.price .discount-table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  border: 1px solid #EFEFEF;
  overflow: hidden;
}

.price .discount-table th {
  background: #2699D5;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #EFEFEF;
  padding: 10px;
}

.price .discount-table td {
  padding: 10px 20px;
  border: 1px solid #EFEFEF;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
}

.price .discount-table td:first-of-type {
  text-align: left;
  font-weight: 400;
}

.price .discount-table tr:last-of-type td {
  color: #E24719;
}

.price .discount-table tr:last-of-type td:first-of-type {
  color: #000;
  white-space: nowrap;
}

.price .details {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 46px;
}

/* Case study section start  */
.case-study-section {
  background: #fff;
}

.case-study {
  max-width: 1080px;
  margin: auto;
  padding: 110px 0;
}

.case-study .label {
  font-size: 1.125rem;;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 27px;
}

.case-study .label::after {
  content: '';
  width: 100px;
  height: 2px;
  background: #2699D5;
  margin-left: 30px;
}

.case-study .title {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 42px;
  line-height: 49px;
}

.case-study .subtitle {
  font-size: 1.5rem;;
  font-weight: 700;
  text-align: center;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}

.case-study .companies {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 74px;
}

.case-study .interviews {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.case-study .interviews .item {
  width: calc(50% - 20px);
}

.case-study .interviews .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ECF1F7;
  margin-bottom: 18px;
  height: 220px;
}

.case-study .interviews .item .info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
}

.case-study .interviews .item .info img {
  margin-right: 15px;
}

.case-study .interviews .item .info span h5 {
  font-size: 1.5rem;;
  font-weight: 700;
}

.case-study .interviews .item .info span b {
  color: #E24719;
  font-size: 0.875rem;
  font-weight: 400;
}

.case-study .interviews .item p {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 50px;
  min-height: 80px;
}

.case-study .interviews .item .interview-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #E24719;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 10px;
  border-radius: 30px;
}

.case-study .interviews .item .interview-btn img {
  margin-left: 40px;
}

/* Getstart section start  */
.getstart-section {
  background: #2699D5;
}

.getstart {
  max-width: var(--section-inner-width);
  margin: auto;
  padding: 83px 0 50px;
}

.getstart .title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 42px;
  color: #fff;
  line-height: 49px;
}

.getstart .plans {
  display: flex;
  flex-direction: row;
}

.getstart .plans .item {
  width: 33.333%;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.getstart .plans .item .plan {
  text-align: center;
  font-size: 2.5rem;;
  font-weight: 500;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
}

.getstart .plans .item .plan span {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 400;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.getstart .plans .item p {
  text-align: center;
  font-weight: 400;
}

.getstart .plans .item p span {
  display: block;
}


/* FAQ section start  */
.faq {
  max-width: 1080px;
  margin: auto;
  padding: 110px 0;
}

.faq .label {
  font-size: 1.125rem;;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 27px;
}

.faq .label::after {
  content: '';
  width: 100px;
  height: 2px;
  background: #2699D5;
  margin-left: 30px;
}

.faq .title {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 42px;
  line-height: 49px;
}

.faq .qnas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq .qnas .item {
  width: calc(50% - 12px);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #EFEFEF;
  padding: 24px;
  margin-bottom: 24px;
}

.faq .qnas .item .quest {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
}

.faq .qnas .item .quest img {
  margin-right: 10px;
}

.faq .qnas .item .ans {
  font-size: 0.875rem;
  font-weight: 400;
}

.faq .qnas .item .ans a {
  text-decoration: underline;
}

/* Signup banner section start  */
.signup-banner-section {
  background: #000;
}

.signup-banner {
  max-width: var(--section-inner-width);
  margin: auto;
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.signup-banner h3 {
  font-size: 1.75rem;
  margin-bottom: 41px;
}

.signup-banner img {
  margin-bottom: 19px;
}

.signup-banner h4 {
  font-size: 1.5rem;;
  margin-bottom: 43px;
}

.signup-banner .signup-btn {
  display: inline-block;
  color: #fff;
  background: #E24719;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 1.5rem;;
  font-weight: 700;
  width: auto;
  margin: auto;
}

.signup-banner .signup-btn img {
  margin-left: 60px;
  margin-bottom: 0;
}

/* Footer start  */
.footer {
  padding: 45px 15px 52px;
}

.footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.footer .footer-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 12px;
}

.footer .logo {
  display: block;
  margin: 0 auto 32px;
}

.footer .copyright {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  color: #ACACAC;
}

#backtotop {
  position: fixed;
  right: 32px;
  bottom: 15px;
  display: none;
  z-index: 9;
}

#backtotop.show {
  display: block;
}

.hero-section,
.notice-section,
.feature-section,
.full-notification-section,
.options-section,
.price-section,
.case-study-section,
.getstart-section,
.faq-section,
.signup-banner-section {
  /* padding:0 15px; */
  box-sizing: border-box;
}

.swap-direction {
  display: flex;
  justify-content: space-between;
}

.sub-text {
  font-size: 0.75rem;
  line-height: 16px;
  margin-top: 10px;
}

.hero-section,
.notice-section,
.feature-section,
.full-notification-section,
.options-section,
.price-section,
.case-study-section,
.getstart-section,
.faq-section,
.signup-banner-section {
  padding: 0 15px;
}

@media screen and (max-width:1310px) {
  .header .left .description {
    display: none;
  }
}

@media screen and (max-width:1100px) {


  .header {
    height: 60px;
  }

  .header .left .logo {
    width: 180px;
  }
}

@media screen and (max-width:1080px) {
  .header-pc {
    font-size: 0.75rem;
  }

  .header .right-link {
    padding: 0 10px;
  }

  .header .right .navigation .nav-link {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 830px) {
  .header .right .navigation {
    display: none;
  }
}

@media screen and (max-width:768px) {
  body {
    padding: 0;
    background-image: url(../img/hero-bg-top.png), url(../img/hero-bg-bottom.png);
    background-size: 700px, 700px;
    background-position: right top, left bottom;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed;
  }

  .header-pc {
    display: none;
  }

  .header-sp {
    display: flex;
  }

  .feature .item .content h5,
  .options .item .content h5 {
    font-size: 0.875rem;
  }

  .feature .label,
  .case-study .label,
  .price .label,
  .faq .label {
    font-size: 0.875rem;
  }

  .feature .title,
  .price .title,
  .case-study .title,
  .faq .title {
    font-size: 1.25rem;;
  }

  .text-large {
    font-size: 1.25rem;
  }

  .text-medium {
    font-size: 1rem;
  }

  /* Hero section sp start  */
  .hero-section {
    padding: 0;
  }

  .hero {
    padding: 10px 15px 80px;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0.5));
  }

  .hero .content {
    width: 100%;
  }

  .hero .img {
    width: 100%;
  }

  .hero .content {
    z-index: 1;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 1) 95%, rgba(255, 255, 255, 0.5));
  }

  .hero .content .title {
    font-size: 1.25rem;;
    text-align: center;
  }

  .hero .content .logo {
    width: 345px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .content .subtitle {
    font-size: 0.875rem;
    text-align: center;
  }

  .hero .content .text {
    font-size: 1.25rem;;
    margin-top: 350px;
  }

  .hero .content .description {
    font-size: 0.625rem;;
  }

  .hero .content .download-link {
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero .img {
    position: absolute;
    top: 230px;
    left: 0;
  }

  .hero .img img {
    width: 250px;
  }

  /* Notice section sp start  */
  .notice-section {
    padding: 0;
  }

  .notice {
    border-radius: 0;
    padding: 26px 15px;
  }

  .notice .item {
    flex-direction: column;
  }

  .notice .date {
    margin-bottom: 10px;
  }

  /* Feature section sp start  */
  .feature {
    padding: 70px 0;
  }

  .feature .label::after {
    width: 50px;
  }

  .feature .img-column {
    width: 100%;
  }

  .feature .item {
    flex-direction: column;
  }

  .feature .item .content {
    width: 100%;
    margin-bottom: 20px;
  }

  .feature .item .img {
    width: 100%;
    text-align: center;
  }

  .feature .item .content .subtitle {
    font-size: 1.125rem;;
  }

  .feature .item .content .subtitle span {
    font-size: 0.75rem;
  }

  .feature .item .content p {
    font-size: 1.125rem;;
    font-weight: 400;
  }

  .feature .item .content ul li {
    font-size: 0.75rem;
  }

  .feature .item .content ul li span {
    font-size: 0.5rem;;
  }

  .feature .item:nth-of-type(2) .content {
    order: 1;
  }

  .feature .item:nth-of-type(2) .img {
    order: 2;
  }

  /* Full notification section sp start  */
  .full-notification {
    margin-bottom: 50px;
  }

  .full-notification .title {
    font-size: 1.25rem;;
  }

  .full-notification .notifications .item {
    width: calc(50% - 16px);
    padding: 13px 0;
    min-height: 70px;
  }

  .full-notification .notifications .item img {
    height: 40px;
    margin-bottom: 5px;
  }

  .full-notification .notifications .item a,
  .full-notification .notifications p {
    font-size: 0.625rem;;
    line-height: 18px;
  }

  .full-notification h4 {
    font-size: 1.25rem;;
    margin-bottom: 20px;
  }

  /* Options section sp start  */
  .options {
    padding: 40px 0;
  }

  .options .title {
    font-size: 1.25rem;;
    text-align: left;
  }

  .options .subtitle {
    font-size: 0.875rem;
  }

  .options .item {
    flex-direction: column;
  }

  .options .item .content {
    width: 100%;
  }

  .options .item.item-table .content {
    padding-right: 0;
  }

  .options .item .img {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .options .item .table-container span {
    font-size: 0.625rem;;
    padding: 10px;
  }

  .options .item .table-container table {
    font-size: 0.75rem;
  }

  .options .item .content p {
    font-size: 0.6875rem;
  }

  .options .item ul li {
    font-size: 0.6875rem;
  }

  /* Price section sp start  */
  .price {
    padding: 70px 0;
  }

  .price .subtitle {
    font-size: 0.875rem;
  }

  .price .subtitle::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2699D5;
    transform: translateY(-50%);
  }

  .price .plans {
    flex-direction: column;
  }

  .price .plans .plan {
    width: 100%;
    font-size: 0.625rem;;
  }

  .price .plans .plan:nth-of-type(2) {
    width: 100%;
  }

  .price .plans .plan span {
    display: inline;
  }

  .price .plans .divider {
    height: 1px;
    width: 30%;
    margin: 15px 0;
  }

  /* Case study section sp start  */
  .case-study {
    padding: 40px 0;
  }

  .case-study .subtitle {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .case-study .companies {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
  }

  .case-study .companies a {
    max-width: 34%;
    margin: 10px;
  }

  .case-study .companies a img {
    max-height: 40px;
  }

  .case-study .interviews {
    flex-direction: column;
  }

  .case-study .interviews .item {
    width: 100%;
    margin-bottom: 40px;
  }

  .case-study .interviews .item .img {
    height: 140px;
  }

  .case-study .interviews .item .img img {
    max-width: 250px;
    max-height: 70px;
  }

  .case-study .interviews .item p {
    min-height: none;
  }

  /* Getstart section sp start  */
  .getstart .title {
    font-size: 1.25rem;;
  }

  .getstart .plans {
    flex-direction: column;
  }

  .getstart .plans .item {
    width: 100%;
  }

  .getstart .plans .item .plan {
    width: 140px;
    height: 140px;
    font-size: 1.25rem;;
  }

  .getstart .plans .item .plan span {
    font-size: 0.5625rem;;
    bottom: 14px;
  }

  .getstart .plans .item p {
    font-size: 0.75rem;
    line-height: 20px;
  }

  .getstart .plans .item p span {
    display: inline;
  }

  /* FAQ section sp start  */
  .faq {
    padding: 70px 0;
  }

  .faq .qnas {
    flex-direction: column;
  }

  .faq .qnas .item {
    width: 100%;
  }

  /* Signup banner section sp start  */
  .signup-banner h3 {
    font-size: 0.9rem;
  }

  .signup-banner h3 span {
    display: block;
  }

  .signup-banner h4 {
    font-size: 0.75rem;
  }

  .signup-banner .signup-btn {
    font-size: 0.75rem;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
    width: 100%;
  }

  .signup-banner .signup-btn img {
    margin-left: 20px;
    height: 12px;
  }


  /* Footer sp start  */
  .footer .footer-nav {
    flex-wrap: wrap;
  }

  .footer .footer-nav .nav-link {
    margin-bottom: 12px;
  }

  .footer .copyright {
    font-size: 0.625rem;;
  }

  #backtotop {
    right: 0;
  }

  .swap-direction {
    flex-direction: column;
  }
}

@media screen and (max-width: 370px) {
  .hero .content .subtitle {
    margin-bottom: 15px;
  }
}