@charset "utf-8";

.upsidr-dark-grey {
  color: #A1A1A1;
}

.upsidr-light-grey {
  color: #FBFBFB;
}

.upsidr-light-green {
  color: #4195A5;
}

.upsidr-light-green-white {
  color: #E3F2F5;
}

.upsidr-orange {
  color: #FF8A00;
}


.asterisk {
  font-size: 0.725rem;
}

.title-underline {
  position: relative;
}

.title-underline::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  height: 100%;
  width: 110%;
  background: linear-gradient(transparent 40%, #E3F2F5 0%);
  z-index: -1;
}

.title-underline-double {
  position: relative;
}

.title-underline-double::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -5%;
  height: 150%;
  width: 110%;
  background: linear-gradient(transparent 40%, #E3F2F5 0%);
  z-index: -1;
}

@media (max-width: 768px) {
  .title-underline::before {
    top: -30%;
    height: 150%;
  }

  .title-underline-double::before {
    top: -40%;
    height: 150%;
  }
}

.underline {
  text-decoration: underline !important;
}

/****************************************************************
 FOCUS
*****************************************************************/
a:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 3px solid #2CA6B2;
}

/****************************************************************
 ANCHOR
*****************************************************************/
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  opacity: 0.6;
  text-decoration: none;
}

/****************************************************************
 HEADLINE
*****************************************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

/****************************************************************
 TAGLINE
*****************************************************************/
.tagline {
  color: #7b7b7b;
  font-size: 10px;
}

/****************************************************************
 FLUID IMAGE
*****************************************************************/
img {
  max-width: 100%;
  height: auto;
}

/****************************************************************
 BUTTON
*****************************************************************/

a[class^="button-"] {
  display: inline-flex;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 2;
  border-radius: 9999px;
  min-width: 184px;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
}

.button-primary {
  width: 240px;
  height: 48px;
  background: linear-gradient(to right, #F5833E, #FEAD48) no-repeat center center;
  color: white !important;
  font-weight: 600;
}

.button-primary-full {
  width: 100%;
}

.button-primary:not(:only-child) {
  min-width: 0;
}

.button-primary-large {
  font-size: 24px !important;
  width: 335px;
  height: 60px;
}

.button-primary-extra-large {
  font-size: 14px !important;
  width: 300px;
  height: 60px;
}

.button-secondary {
  width: 200px;
  height: 50px;
  background-image: linear-gradient(155deg, #f2f3f5, #fff);
  background-color: #f5f5f5;
  border: 2px solid #292929;
  font-weight: 600;
  color: #292929 !important;
}

.button-secondary:not(:only-child) {
  min-width: 0;
}

.button-secondary-large {
  font-size: 24px !important;
  width: 335px;
  height: 60px;
}

.button-primary-outline {
  width: 200px;
  height: 50px;
  color: #4195A5 !important;
  background-color: white;
  border: 1px solid #4195A5;
  font-weight: 600;
}

.button-primary-outline-large {
  font-size: 16px !important;
  width: 335px;
  height: 60px;
}
@media screen and (max-width: 440px) {
  .button-primary-large,.button-secondary-large {
    width: 100%;
    max-width: 300px;
  }
}

/****************************************************************
 RESPONSIVE
*****************************************************************/
@media (max-width: 768px) {
  .laptop-content {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-content {
    display: none !important;
  }
}

/****************************************************************
 CENTERED
*****************************************************************/
.centered {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 6%;
  padding-left: 6%;
}

/****************************************************************
 CONTENT
*****************************************************************/
.content {
  padding-top: 60px;
  padding-bottom: 60px;
}

/****************************************************************
 HEADER
*****************************************************************/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  backdrop-filter: blur(3px);
  background-color: rgba(249, 249, 251, 0.85);
  height: 72px;
}

header>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  font-size: 0.875rem;
}

header .menu>ul {
  display: flex;
  align-items: center;
}

header .menu>ul>li:not(:last-child) {
  margin-right: 36px;
}

header .mobile-menu {
  display: none;
}

@media (max-width: 860px) {
  header>div {
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  header .menu {
    display: none;
  }

  header .mobile-menu {
    display: block;
  }
}

/****************************************************************
 SECTION: SUMMARY
*****************************************************************/
.summary {
  position: relative;
}

.summary-box {
  padding-top: 8%;
  /*padding: 14% 12% 8%;*/
  /*background: linear-gradient(to right, rgba(255, 255, 255, 0.48), rgba(245, 245, 246, 0.48)); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *!*/
  /*box-shadow: 0 0 16px 0 rgb(113 125 141 / 30%);*/
  /*backdrop-filter: blur( 12px );*/
  /*-webkit-backdrop-filter: blur( 12px );*/
  /*border-radius: 1rem;*/
}
.summary-box:last-child div > div{
 width: 140px;
}
.summary-box:last-child span{
  line-height: 1; 
  font-size: 1.6rem; 
  font-weight: 800; 
  bottom: -3px; 
  left: 37px;
}
.summary-box h2 {
  text-align: center;
}

/****************************************************************
 POINT CAMPAIGN
*****************************************************************/

.point-campaign {
  color: #fd2e5e;
  position: relative;
}

.flex>.point-campaign {
  padding-left: 1.5em;
}

.flex>.point-campaign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1em;
  border-top: 1px solid #fd2e5e;
  transform: rotate(-25deg);
}

.flex>.point-campaign::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1em;
  border-bottom: 1px solid #fd1f5a;
  transform: rotate(25deg);
}

p>.point-campaign {
  display: inline-block;
}

p>.point-campaign::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 1em;
  background-color: #fd1f5a;
  transform: rotate(-25deg);
}

p>.point-campaign::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 1em;
  background-color: #fd1f5a;
  transform: rotate(25deg);
}

/****************************************************************
 SECTION: BOOST YOUR BUSINESS
*****************************************************************/
.boost-content {
  position: relative;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border-style: solid;
  border: 2px solid #4195A5;
  width: 91%;
  height: 8rem;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  transition: all 0.15s;
}

.boost-content-logo {
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
}

.boost-content-img {
  max-height: 30px;
  max-width: 240px;
}

.slick-slide:focus {
  outline: none;
}

/****************************************************************
 SECTION: REWARDS
*****************************************************************/

.reward-box {
  position: relative;
}

.reward-box h2 {
  text-align: center;
  display: flex;
}

.reward-box-icon {
  position: relative;
  top: -3px;
}

.reward-box-icon.icn-users {
  width: 20px;
}

.reward-box-icon.icn-aws {
  width: 41px;
}

.reward-box-icon.icn-gcp {
  width: 22px;
}

.reward-box-icon img {
  width: 100%;
  display: inline-block;
}

.reward-box-emphasis {
  border: 1px solid #959595;
}

.reward-content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border: 2px solid #4195A5;
  margin-bottom: 20px;
}

.reward-terms {
  color: #959595;
}

.reward-campaign {
  left: 20%;
  background-color: #E3F2F5;
}

.reward-campaign-emphasis {
  color: #4195A5;
}

/****************************************************************
 TEXT
*****************************************************************/
.text-primary {
  color: #2ca6b2;
}

/****************************************************************
 UNDERLINE
*****************************************************************/

.underline-05 {
  /*background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);*/
  background-image: linear-gradient(120deg, #cfffe1 0%, #8fd3f4 100%);
  background-position: bottom;
  background-size: 100% 30%;
  background-repeat: no-repeat;
}

/****************************************************************
 COVER
*****************************************************************/
.cover {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
}

.cover::before {
  content: '';
  position: absolute;
  max-height: 483px;
  height: 33.5vw;
  top: min(8vw, 9rem);
  right: -47%;
  width: 100%;
  background: url(../images/top_image.png) no-repeat left center;
  background-size: auto 100%;
  z-index: 3;
}



.cover p {
  margin-top: 6%;
}

.cover>figure {
  padding-top: 8%;
  padding-bottom: 10px;
}

.cover nav {
  margin-top: 3%;
}

.cover>figure {
  position: relative;
}

.cover>figure>figcaption h1 {
  font-size: min(3.5vw, 40px);
  font-family: 'Noto Sans JP';
}

@media (max-width: 860px) {
  .cover {
    padding-top: 72px;
  }

  .cover>figure {
    flex-wrap: wrap;
    max-width: 640px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding-top: 6%;
  }

  .cover>figure>figcaption {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    align-self: center;
  }

  .cover>figure>figcaption h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  .cover nav {
    margin-top: 2.5rem;
  }

  .cover::before {
    height: 318px;
    top: 35%;
    right: -20%;
    width: 110%;
  }
}

/****************************************************************
 FEATURES
*****************************************************************/
.features {
  position: relative;
  margin-top: min(4vw, 50px);
}

.features-centered {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 6%;
  padding-left: 6%;
}

.features-inhouse {
  margin-top: -20px;
  margin-right: 8px;
}

.features::before {
  background-color: #2CA6B2;
  width: 150%;
  height: 80%;
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.features-logo {
  max-width: 440px;
  width: 40%;
}

.features-top-image {
  position: absolute;
  top: 0;
  right: 0;
}

.features-no1-logo {
  max-width: 221px;
  width: 14%;
}

.features-content {
  position: relative;
  z-index: 3;
}

.features-content>ul>li {
  font-size: min(1.5vw, 18px);
  color: white;
}

.text-primary {
  color: #2CA6B2 !important;
}

@media (max-width: 1540px) {
  .features-inhouse {
    margin-top: 0px;
    margin-right: 8px;
  }
}

@media (max-width: 1330px) {
  .features-inhouse {
    margin-top: -20px;
    margin-right: 8px;
  }
}

@media (max-width: 1000px) {
  .features-centered {
    max-width: 1280px;
  }
}

@media (max-width: 860px) {
  .features {
    margin-top: 2rem;
    align-self: stretch;
  }

  .features-logo {
    width: 233px;
  }

  .features-no1-logo {
    display: none;
  }

  .features-figure::before {
    content: '';
    position: absolute;
    background: url(../images/no1.svg) no-repeat left center;
    top: 22%;
    right: 64%;
    height: 120px;
    width: 107px;
    background-size: auto 100%;
    z-index: 3;
  }

  .features::before {
    background-color: #2CA6B2;
    width: 100vw;
    height: 100%;
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .features-content {
    flex-direction: column;
    margin-top: 100px;
  }

  .features-description {
    margin-top: 85%;
    margin-left: 0;
    text-align: center;
  }

  .features-content>ul>li {
    font-size: 18px;
    color: white;
  }

  .features-inhouse {
    margin: 0;
  }
}



/****************************************************************
 CUSTOMERS
*****************************************************************/
.customers {
  margin-top: 16px;
}
.customer-logos {
  animation: logo-slider 45s linear infinite;
  background: url(/lp/images/user-logo/user_logo.png) repeat 50%;
  background-size: auto 156px;
  height: 156px;
  width: 100%;
}

@keyframes logo-slider {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -4362px 0;
  }
}

/****************************************************************
 PERFORMANCE
*****************************************************************/
.performance {
  position: relative;
  background-color: #E3F2F5;
}
.performance img:not(.performance-ellipse) {
  width: 240px;
}
.performance-sp {
  position: relative;
}

.performance-sp::before {
  content: '※2023年2月時点';
  position: absolute;
  bottom: -30px;
  right: 0;
  color: #4195A5;
  font-size: 10px;
}

.performance-persistence {
  margin: 0 50px;
}

.performance-ellipse {
  display: none;
}

@media (max-width: 820px) {
  .performance {
    flex-direction: column;
  }
  .performance img:not(.performance-ellipse) {
    width: 160px;
  }

  .performance-adoption {
    z-index: 2;
  }

  .performance-persistence {
    margin: 0 0 0 15px;
    z-index: 2;
  }

  .performance-amount {
    margin-right: 15px;
    z-index: 2;
  }

  .performance-ellipse {
    display: inline;
    position: absolute;
  }

  .performance-sp {
    flex-direction: row-reverse;
  }
}

/****************************************************************
 REDUCTION
*****************************************************************/
.reduction {
  margin-top: 100px;
}

.reduction-image {
  margin-right: 50px;
}

.reduction-text {
  max-width: 620px;
}

@media (max-width: 768px) {
  .reduction {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .reduction-description {
    margin: 0 15px;
  }

  .reduction-image {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

/****************************************************************
 Navigation
*****************************************************************/
.navigation {
  margin: 100px 0;
}

@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    margin: 60px 0;
  }

  .navigation-download-button {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

/****************************************************************
 PROBLEM
*****************************************************************/
.problem {
  position: relative;
  background-image: url(../images/card_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #4195A5;
  min-height: 500px;
  padding: 70px 0;
  margin-bottom: 100px;
}

.problem:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 72px 86px 0 86px;
  border-color: #6AABB6 transparent transparent transparent;
}

.problem-title {
  color: white;
  margin-bottom: 50px;
}

.problem-content {
  padding: 30px 15px;
  background-color: white;
  border-radius: 10px;
  min-height: 260px;
  max-width: 355px;
}

.problem-content ul>li {
  font-size: 16px;
}

.problem-content-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.problem-content-title-one-line {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 30px;
}

@media (max-width: 638px) {
  .problem {
    height: 1130px;
    padding: 30px 0 50px 0;
    background-image: url(../images/card_background_sp.svg);
    margin-bottom: 70px;
  }

  .problem-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
  }

  .problem-contents {
    flex-direction: column;
  }

  .problem-content:nth-child(even) {
    margin-right: 0;
    margin-left: 0;
  }

  .problem-content {
    margin-bottom: 20px !important;
  }

  .problem:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 60px 0 60px;
    border-color: #6AABB6 transparent transparent transparent;
  }
}

/****************************************************************
 REASON
*****************************************************************/
.reason-logo {
  width: 403px;
}

.reason-title {
  max-width: 1105px;
}

.reason-semi-title {
  font-size: 40px;
  font-family: 'Noto Sans';
  margin-top: 60px;
}

.reason-contents {
  margin: 60px 20px 100px 20px;
}

.reason-content {
  max-width: 335px;
}

.reason-image {
  margin-bottom: 20px;
}

.reason-summary {
  font-size: 40px;
}

@media (max-width: 872px) {
  .reason-logo {
    width: 260px;
    display: inline-block;
  }

  .reason-title {
    flex-direction: column;
    align-items: center;
    font-size: 44px;
    max-width: 335px;
    line-height: 1.5;
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .reason-semi-title {
    font-size: 24px;
    font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro;
    margin-top: 30px;
  }

  .reason-contents {
    margin: 30px 20px 60px 20px;
  }

  .reason-summary {
    font-size: 24px;
  }
}

/****************************************************************
 DIFFERENCE
*****************************************************************/
.difference-title {
  font-size: 32px;
  max-width: 538px;
  margin: 0 auto 60px auto;
}

.difference>table>thead>tr>th {
  border: 1px solid #313131;
  height: 85px;
  width: 439px;
  font-size: 30px;
  font-weight: 300;
}

.difference>table>thead>tr>th:first-child {
  border-left: none;
}

.difference>table>thead>tr>th:last-child {
  border-right: none;
}

.difference>table>thead>tr>th:nth-child(even) {
  background-color: #E3F2F5;
}

.difference>table>tbody>tr>td:nth-child(even) {
  background-color: #E3F2F5;
}

.difference>table>tbody>tr>td {
  border: 1px solid #313131;
  padding-left: 60px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.difference>table>tbody>tr>td:first-child {
  border-left: none;
}

.difference>table>tbody>tr>td:last-child {
  border-right: none;
}

.difference-logo {
  width: 170px;
}

@media (max-width: 768px) {
  .difference-title {
    font-size: 24px;
    max-width: 260px;
    margin: 0 auto 40px auto;
  }

  .difference>table>thead>tr>th {
    font-size: 14px;
  }

  .difference>table>tbody>tr>td {
    border: 1px solid #313131;
    font-size: 11px;
    padding-left: 10px;
  }

  .difference-logo {
    width: 83px;
  }
}

/****************************************************************
 USER STORY SECTION
*****************************************************************/
.user-story-title {
  font-size: 32px;
  max-width: 480px;
  margin: 40px auto 60px auto;
}

.user-story-item {
  padding: 0 2rem;
}

.user-story-item .person-info .icon {
  width: 42px;
}

.user-story-item .thumb {
  overflow: hidden;
}

.user-story-item .thumb img {
  transition: 0.5s transform;
}

.user-story-item .thumb:hover img {
  transform: scale(1.05);
}

.user-story-item h2 a {
  transition: 0.5s opacity;
}

.user-story-item h2 a:hover {
  text-decoration: none;
  opacity: .8;
}

.user-story-chip {
  background-color: #E3F2F5;
  color: #4195A5;
  border-radius: 20px;
  padding: 0 25px;
  font-size: 10px;
  margin-top: 10px;
  margin-right: 8px;
}

.slick-list {
  overflow: visible !important;
}

.slide-arrow {
  position: absolute;
  top: 35%;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
  background-color: #fff;
  transition: 0.5s box-shadow;
  z-index: 5;
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.slide-arrow:active {
  box-shadow: none;
}

.slide-arrow.prev-arrow {
  left: -4px;
}

.slide-arrow.next-arrow {
  right: -4px;
}

.slide-arrow i {
  position: relative;
  display: block;
}

.slide-arrow i::before {
  position: relative;
  content: ' ';
  display: block;
  top: 8px;
  left: 2px;
  width: 17px;
  height: 1px;
  background: #333;
}

.slide-arrow i::after {
  position: relative;
  content: ' ';
  display: block;
  left: 3px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slide-arrow.prev-arrow i {
  transform: rotate(-180deg);
  left: 4px;
}

.slide-arrow.next-arrow i {
  left: -3px;
}

.slick-dots {
  bottom: -30px !important;
}

@media (max-width: 768px) {
  .user-story-title {
    font-size: 24px;
    margin: 0 auto 40px auto;
    max-width: 250px;
  }

  .user-story-item {
    padding: 0 1rem;
  }

  .slide-arrow {
    width: 48px;
    height: 48px;
  }

  .slide-arrow i::after {
    width: 13px;
    height: 13px;
  }

  .slide-arrow i::before {
    top: 7px;
    width: 15px;
  }

  .slide-arrow.prev-arrow {
    left: -11px;
  }

  .slide-arrow.next-arrow {
    right: -11px;
  }
}

/****************************************************************
 FLOW
*****************************************************************/

.flow-title {
  font-size: 32px;
  margin: 0 auto 60px auto;
}

.flow-content {
  max-width: 335px;
}

.flow-image {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .flow-title {
    font-size: 24px;
    margin: 0 auto 30px auto;
  }

}

/****************************************************************
BASIC INFO
*****************************************************************/
#basic {
  background-color: #FBFBFB;
}

/****************************************************************
FAQ
*****************************************************************/
.faq {
  margin-bottom: 80px;
}

.faq-title {
  font-size: 32px;
  max-width: 238px;
  margin: 0 auto 60px auto;
}

.faq-content {
  width: 100%;
  max-width: 1105px;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border: 2px solid #4195A5;
  margin-bottom: 20px;
}

.faq-question {
  background-image: url(../images/arrow_icon.svg);
  background-position: right 24px center;
  background-repeat: no-repeat;
  padding: 24px 32px;
  cursor: pointer;
  font-size: 1rem;
  color: #313131;
  font-weight: bold;
}

details summary::-webkit-details-marker,
details summary::marker {
 display: none;
 content: "";
}

details[open] .faq-question {
  background-image: url(../images/arrow_reverse_icon.svg);
}

.faq-answer {
  padding: 24px 32px;
  font-size: 1rem;
  padding-top: 0;
  margin-top: 0;
  color: #4195A5;
}

.faq-close-button {
  text-align: center;
  display: none;
}

@media (max-width: 768px) {
  .faq {
    margin-bottom: 40px;
  }

  .faq-title {
    font-size: 24px;
    max-width: 190px;
    margin: 0 auto 30px auto;
  }

  .faq-question {
    background-position: bottom 20px center;
    padding: 24px 32px 40px 32px;
  }

  .faq-close-button {
    display: block;
    margin: 10px auto 0 auto;
  }

  details[open] .faq-question {
    background: none;
    padding: 24px 32px;
  }

  details[open] .faq-answer {
    list-style: none;
    padding: 0 32px 20px 32px;
    font-weight: bold;
  }
}

/****************************************************************
 INFORMATION
*****************************************************************/
.information-button {
  margin-top: 30px;
  margin-bottom: 100px;
}

.information-title {
  font-size: 32px;
  max-width: 300px;
  margin: 0 auto 30px auto;
}

.information-function-title {
  font-size: 32px;
  max-width: 230px;
  margin: 60px auto 30px auto;
}

.information-content {
  background-image: url(../images/arrow_right_icon.svg);
  background-position: right 3px center;
  background-repeat: no-repeat;
  padding: 24px 32px;
  display: block;
  border-bottom: 1px solid #A0A1A1;
}

@media (max-width: 768px) {
  .information-button {
    margin-bottom: 60px;
  }

  .information-title {
    font-size: 24px;
    max-width: 250px;
  }

  .information-function-title {
    font-size: 24px;
    max-width: 150px;
  }
}

/****************************************************************
 GENERAL SECTION
*****************************************************************/

section>div>h2 {
  grid-area: title;
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  section>div>h2 {
    font-size: 1.4rem;
  }
}

section>div>p {
  grid-area: body;
}

section>div>ul {
  grid-area: note;
  font-size: 12px;
  text-align: left;
}

@media (max-width: 768px) {
  section>div>ul {
    font-size: 10px;
  }
}

section>div>figure {
  grid-area: image;
  padding: 0 8%;
}

section>div>figure>img {
  width: 100%;
}

section>div>* {
  flex: 1 0 50%;
}

/****************************************************************
 COOPERATE CARD
*****************************************************************/
aside {
  text-align: center;
}

aside h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  aside h2 {
    font-size: 1.4rem;
  }
}

aside>div {
  max-width: 1044px;
}

aside>div>figure {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

aside>div>figure>div:first-child {
  padding: 8%;
}

aside ul {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  margin-left: -6rem;
  max-width: 960px;
}

aside ul>li {
  flex: 1 0 50%;
  min-width: 360px;
  padding-left: 6rem;
  padding-bottom: 3rem;
}

aside ul>li>figure {
  display: flex;
  align-items: flex-start;
}

aside ul>li>figure>div:first-child {
  flex: 0 0 4rem;
  margin-right: 2rem;
}

/* aside ul>li>figure>figcaption dl {} */

aside ul>li>figure>figcaption dt {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.75em;
}

aside ul>li>figure>figcaption dd {
  font-size: 0.9rem;
}

aside>div {
  padding: 8% 0 0;
}

aside>div nav {
  margin-top: 2.4rem;
}

aside>div p {
  margin-top: 1.75rem;
  font-size: 12px;
}

@media (max-width: 768px) {
  .mobile-list-icon img {
    width: 32px;
    margin: 0 auto;
  }

  aside ul>li>figure>div:first-child {
    margin-right: 0;
  }

}

/****************************************************************
 COMPANY DATA
*****************************************************************/
aside table {
  text-align: left;
}

aside table th {
  padding-right: 50px;
  min-width: 7.6rem;
  vertical-align: top;
  white-space: nowrap;
}

aside table th,
aside table td {
  padding-bottom: 24px;
}

.capital {
  display: flex;
  flex-wrap: wrap;
}

.capital>span {
  padding: 0px 10px;
}

@media (max-width: 768px) {

  aside table,
  aside table>*,
  aside table>*>tr,
  aside table>*>tr>* {
    display: block;
  }

  aside table>*>tr>th {
    padding-bottom: 0;
  }

  aside table th {
    width: auto;
    font-weight: bold;
  }

  .capital {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .capital>span {
    padding: 0px;
  }
}

#company {
  background-color: #FBFBFB;
}


/****************************************************************
 FOOTER
*****************************************************************/
footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: linear-gradient(315deg, #232526, #414345) !important;
  color: #e2e2e2;
}

footer a {
  color: inherit !important;
  font-size: 0.875rem;
}

footer p {
  margin-top: 10%;
  font-size: 12px;
  text-align: right;
  color: #c1c1c1;
}

footer figcaption {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  footer p {
    margin-top: 20%;
  }
}

.copy-right {
  font-size: 0.625rem;
  margin: 30px 0 0 0;
}

/****************************************************************
 YOU NEED UPSIDER ACCOUNT
*****************************************************************/
.you-need-upsider-account {
  border: 1px solid #212121;
  padding: 0.75rem 1rem;
}

.notification {
  padding: 12px 0;
  margin-bottom: 4%;
  color: #2ca6b2;
  background-color: #e1eff1;
}

.notification a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification img {
  flex: 0 1 auto;
  width: 80px;
  margin-right: 1em;
}

.notification span {
  display: inline-block;
  white-space: nowrap;
}

.banner {
  background: #232526;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #414345, #232526);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #414345, #232526);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
  padding: 1.5rem 6% !important;
}

.banner-button {
  display: inline-block;
  color: #232526 !important;
  padding: 6px 16px;
  border-radius: 9999px;
  background-color: white;
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none !important;
}

.comparison-chart-section-wrapper {
  position: relative;
}

.comparison-chart-section {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px 0 rgb(113 125 141 / 30%);
  border-radius: 1rem;
  background-color: white;
}

.comparison-chart-section>figcaption {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.comparison-chart-section-header {
  background: #232526;
  background: -webkit-linear-gradient(to left, #414345, #232526);
  background: linear-gradient(to left, #414345, #232526);
  color: white;
}

.campaign {
  background: #232526;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #414345, #232526);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #414345, #232526);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
}

.campaign-detail {
  max-width: 12rem;
}

.caution-list {
  list-style: square;
}

.caution-list>li+li {
  margin-top: 1em;
}

.faq-list>li {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3rem;
}

.faq-list>li+li {
  margin-top: 4%;
}

.faq-list>li>* {
  flex: 1 1 50%;
  min-width: 300px;
  padding-left: 3rem;
}

.faq-list>li>*>* {
  display: flex;
  padding: 1rem;
  align-items: start;
  margin-top: -1px;
}

.faq-list>li>*>h4 {
  border: 2px solid #2CA6B2;
  color: #2CA6B2;
}

.faq-list>li>*>p {
  border: 2px solid #fe8537;
  color: #fe8537;
}

.faq-list>li>*>*::before {
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 1.2rem;
  /*line-height: 1.2;*/
}

.faq-list>li>*>h4::before {
  content: 'Q';
}

.faq-list>li>*>p::before {
  content: 'A';
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.static-document {
  max-width: 36rem;
  margin-right: auto;
  margin-left: auto;
}
.static-document p{
  margin-bottom: 30px;
}
.static-document h2{
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}
.static-document ul{
  padding-left: 15px;
  list-style: disc;
  margin-top: -10px;
  margin-bottom: 30px;
}

body:not(.loading) .button-loading {
  display: none;
}

body.loading .button-loading+button {
  display: none;
}

.coworker-banner {
  background: #E5EFF6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #358FC1;
  padding: 0 16px;
}

.coworker-banner > a {
  text-align: center;
}