:root {
    --blue: #3263d9;
    --pink: #ec1e37;
    --orange: #ff7e06;
    --siteHeaderHeight: 9rem;
    --containerWidth: 1140px;
    --baseFontSize: 16px;
}

@media (max-width: 1200px) {
    :root {
        --containerWidth: 94vw;
        --baseFontSize: 2.1vw;
    }
}

@media (max-width: 750px) {
    :root {
        --baseFontSize: 2.3vw;
    }
}

html {
    scroll-behavior: smooth;
    font-size: var(--baseFontSize);
}

body {
    margin: 0;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

* {
    box-sizing: border-box;
}

.siteMain {
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: var(--containerWidth);
    margin-left: auto;
    margin-right: auto;
}

.anchor {
    display: block;
    height: var(--siteHeaderHeight);
    margin-top: calc(var(--siteHeaderHeight) * -1);
    pointer-events: none;
}

.d-inline-block {
    display: inline-block;
}

.simpleButton {
    background: #dedede;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    padding: .5rem 3rem .5rem 1rem;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    border-radius: .25rem;
    position: relative;
    font-weight: bold;
}

@media (max-width: 750px) {
    .simpleButton {
        font-size: 1.4rem;
    }
}

.simpleButton:after {
    content: '';
    position: absolute;
    top: 44%;
    right: 2rem;
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: right .2s ease;
}

@media (max-width: 750px) {
    .simpleButton:after {
        right: 1rem;
        top: 34%;
    }
}

@media (min-width: 751px) {
    .simpleButton:hover:after {
        right: 1.8rem;
        transition: right .2s ease;
    }
}

.h2 {
    font-size: 2.4rem;
    color: var(--pink);
    margin: 0 auto 6rem;
    padding: .5rem 20%;
    position: relative;
    text-align: center;
}

@media (max-width: 1200px) {
    font-size: 2rem;
}

.h2Inner {
    position: relative;
    display: inline-block;
    color: #fff;
}

.h2:before {
    content: '';
    display: block;
    position: absolute;
    background: var(--pink);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(80%) skewX(-10deg);
}

.h2:after {
    content: '';
    display: block;
    position: absolute;
    left: 5%;
    width: 13%;
    top: 50%;
    aspect-ratio: 1/1;
    background: var(--pink) url("../imgs/logomark-wh.svg") center/70% no-repeat;
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 750px) {
    .h2:after {
        width: 15%;
    }

;
}

.siteHeaderLogo-img {
    width: 16rem;
}


@media (max-width: 1200px) {
    .siteHeaderLogo-img {
        display: none;
    }

    .siteHeaderLogo {
        display: inline-block;
        width: 3rem;
        height: 3rem;
        background: url("../imgs/logomark-blue.svg") left center/contain no-repeat;
    }
}

.siteHeader {
    padding-top: 1rem;
    height: var(--siteHeaderHeight);
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
}

.siteHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: .5rem;
    padding: 1rem 2rem;
    top: -200px; /* position未指定なので反映されないが、body.scrolledのアニメーションの初期位置になる */
}

@media (max-width: 750px) {
    .siteHeaderInner {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}

.siteHeaderNav {
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    align-self: stretch;
    padding-left: 2rem;
}

.siteHeaderNav-li {
    padding-left: 1em;
    margin-left: 1em;
    border-left: solid 1px #ccc;
    display: flex;
    align-items: center;
}

@media (max-width: 750px) {
    .siteHeaderNav-li {
        padding-left: .5em;
        margin-left: .5em;
    }
}

.siteHeaderNav a {
    text-decoration: none;
    color: #000;
}

.siteHeaderNav-li-order {
    border-left: none;
}

.siteHeaderNav-li-order-a {
    background: var(--blue);
    color: #fff !important;
    border-radius: 1em;
    padding: 0 .5em;
    display: flex;
    align-items: center;
    font-weight: bold;
    height: 2em;
    white-space: nowrap;
}

body.scrolled .siteHeaderInner {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    max-width: inherit;
    background: #fff;
    border-radius: 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: top .4s ease;
}

body.scrolled .siteHeaderLogo-img {
    width: 12rem;
}

body.scrolled .siteHeaderNav {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 750px) {
    body.scrolled .siteHeaderNav {
        font-size: 1.2rem;
        padding-left: 0;
    }
}

.mv {
    color: #fff;
    text-align: center;
    padding-bottom: 16rem;
    padding-top: var(--siteHeaderHeight);
    background: #000;
    position: relative;
}

.mv-bg {
    background: url("../imgs/internet.webp") center/cover;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv-container {
    position: relative;
}

.mvGrid1 {
    display: grid;
    grid-template-columns: 50% 1fr;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
}

@media (max-width: 750px) {
    .mvGrid1 {
        grid-template-columns: auto;
        justify-content: center;
    }
}

.mvImage img {
    display: block;
    width: 100%;
}

.mvText1 {
    font-size: 4rem;
    font-weight: 900;
    text-align: left;
    line-height: 1.6;
}

.mvText1-waku {
    display: inline-block;
    position: relative;
    padding-left: .2em;
    padding-right: .2em;
    line-height: 1.1;
}

.mvText1-waku:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: -.1em;
    left: .1em;
    right: .1em;
    bottom: -.1em;
    border: solid 1px #fff;
    border-radius: .1em;
    background: rgba(0, 0, 0, .5);
}

.mvText1-waku strong {
    position: relative;
    display: block;
    line-height: 1.1;
}

.mvText1-p {
    margin-bottom: .5em;
}

@media (max-width: 1200px) {
    .mvText1 {
        font-size: 5vw;
    }
}

@media (max-width: 750px) {
    .mvText1 {
        text-align: center;
        font-size: 8vw;
    }
}

.sctRound {
    position: relative;
    background: var(--blue);
}

.sctRound .container {
    position: relative;
    z-index: 1;
}

.sctRound:before, .sctRound:after {
    content: "";
    display: block;
    position: absolute;
    left: -10%;
    width: 120%;
    height: 30rem;
    border-radius: 50%;
    background: var(--blue);
}

.sctRound:before {
    top: 100%;
    transform: translateY(-70%);
}

.sctRound:after {
    bottom: 100%;
    transform: translateY(70%);
}

.orderArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 750px) {
    .orderArea {
        justify-content: stretch;
    }
}

.orderArea-button {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.4rem;
    background: #fff url("../imgs/logomark-gray.svg") -.5em center/6em no-repeat;
    border: solid 4px var(--blue);
    border-radius: .5rem;
    padding: 1rem 4rem;
    color: var(--blue);
    font-weight: 900;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    position: relative;
}

@media (max-width: 750px) {
    .orderArea-button {
        flex: 50% 1 1;
        font-size: 1.7rem;
        padding: 1rem 3rem;
    }
}

.orderArea-button:hover {
    background: var(--blue);
    border-color: #fff;
    color: #fff;
}

.orderArea-button:after {
    content: '';
    display: block;
    position: absolute;
    right: .5em;
    top: calc(50% - .4em);
    width: .4em;
    height: .8em;
    background: var(--blue);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.orderArea-button:hover:after {
    background: #fff;
}

.orderArea-button-s {
    display: block;
    font-size: .6em;
    font-weight: normal;
}

@media (max-width: 750px) {
    .orderArea-button-s {
        font-size: .8em;
        margin-bottom: .2em;
    }
}

.sctFeature {
    position: relative;
    z-index: 1;
    color: #fff;
}


.sctFeature-container {
    position: relative;
    z-index: 1;
}

.featureGrid1-box {
    display: grid;
    grid-template-columns: 1fr 12rem;
    gap: 0 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background: #fff;
    border-bottom: solid 1px #bbb;
    color: #000;
    border-radius: .5rem;
}

.featureGrid1-h3 {
    display: inline-block;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: solid 4px var(--blue);
    padding-left: 2rem;
}

.featureGrid1-image {
    grid-column: 2/3;
    grid-row: 1/3;
    padding-right: 1rem;
}

.featureGrid1-image-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featureGrid1-text {
    line-height: 1.8;
    padding-left: 2rem;
    font-size: 1.2rem;
}

@media (max-width: 750px) {
    .featureGrid1-text {
        font-size: 1.4rem;
    }
}

.sctServer {
    padding-top: 18rem;
    padding-bottom: 20rem;
    position: relative;
    background: #000;
}

.sctServer-container {
    position: relative;
    color: #fff;
}

.sctServer-bg {
    position: absolute;
    background: url("../imgs/internet.webp") center/cover no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}

.serverBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 1200px) {
    .serverBoxes {
        flex-wrap: nowrap;
        flex-direction: column;
    }
}

.serverBox {
    display: block;
    border: solid 2px #fff;
    flex: calc(33.33% - 10px) 1 0;
    padding: 1.4rem 1.4rem 4rem;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    text-decoration: none;
    position: relative;
}

@media (max-width: 1200px) {
    .serverBox {
        text-align: center;
    }
}

@media (max-width: 750px) {
    .serverBox {
        font-size: 1.3rem;
        line-height: 1.8;
    }
}

.serverBox:hover {
    background: #000;
}

.serverBox:after {
    content: 'サービス詳細';
    font-size: 1em;
    display: block;
    text-align: right;
    margin-top: 1em;
    padding-right: 1.5em;
    background: url("../imgs/forward-solid.svg") right 60%/.8em no-repeat;
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
}

.serverBox-h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1em;
}

@media (max-width: 750px) {
    .serverBox-h3 {
        font-size: 1.3em;
    }
}

.serverBox-h3:after {
    content: '';
    display: block;
    width: 1.6em;
    margin: .6em auto 0;
    height: 1px;
    background: rgba(255, 255, 255, .5);
}

.serverBox-price {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.2;
    font-weight: bold;
}

@media (max-width: 750px) {
    .serverBox-price {
        font-size: 1.2em;
    }
}

.serverBox-price-num {
    font-size: 2em;
    display: inline-block;
    font-weight: 900;
    padding: 0 .1em 0 .2em;
}

.serverBox-price-tax {
    font-size: .75em;
    font-weight: normal;
}

.sctPlan {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.mhPricetable {
    border: solid 1px #666;
    border-collapse: collapse;
}

.mhPricetable th,
.mhPricetable td {
    border: solid 1px #666;
}

.benefitBoxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .benefitBoxes {
        grid-template-columns: 1fr;
    }
}

.benefitBox {
    background: #fff;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: .8rem;
}

@media (max-width: 1200px) {
    .benefitBox {
        min-height: 16rem;
    }
}

.benefitBox:after {
    content: '';
    position: absolute;
    left: .6rem;
    top: .5rem;
    bottom: .5rem;
    width: .4rem;
    background: var(--blue);
    border-radius: .2rem;
}

.benefitBox-header {
    padding-right: 30%;
    padding-left: 1rem;
    color: var(--blue);
    font-weight: 900;
    margin-top: 0;
    font-size: 1.4rem;
}

@media (max-width: 1200px) {
    .benefitBox-header {
        font-size: 1.5rem;
    }
}

@media (max-width: 750px) {
    .benefitBox-header {
        font-size: 1.7rem;
    }
}

.benefitBox-text {
    margin-right: -4rem;
    padding-right: 46%;
    padding-left: 1rem;
    line-height: 1.8;
}

@media (max-width: 750px) {
    .benefitBox-text {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}

.benefitBox-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 36%;
    height: 100%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.benefitBox-image-img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    object-fit: cover;
}

.benefitBox-a {
    display: inline-block;
    border: solid 1px var(--blue);
    text-decoration: none;
    padding: .6em .5em .4em;
    line-height: 1.1;
    margin-top: .75em;
    color: var(--blue);
    font-weight: bold;
}

.benefitBox-a:hover {
    background: var(--blue);
    color: #fff;
}

.benefitBox-a:after {
    content: '\0bb';
    display: inline-block;
    margin-left: .5em;
}

.sctFaq {
    padding-top: 16rem;
}

.faqBoxes {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.faqBox {
    border-bottom: solid 1px #717071;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 750px) {
    .faqBox {
        font-size: 1.4rem;
    }
}

.faq-q:before {
    content: 'Ｑ';
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue);
    border: solid 2px var(--blue);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    padding-bottom: .2em;
    box-sizing: border-box;
    margin-right: .5rem;
}

@media (max-width: 750px) {
    .faq-q:before {
        width: 1.5em;
        height: 1.5em;
        margin-right: .5em;
    }
}

.faq-a {
    padding-left: 2rem;
    line-height: 1.8;
}

@media (max-width: 750px) {
    .faq-a {
        padding-left: 3.2rem;
    }
}

.siteFooter {
    border-top: solid 1px #717071;
    margin-top: 7rem;
    padding-top: 2rem;
}

.siteFooter-conrainer {
    text-align: center;
}

.siteFooter-logo {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.siteFooter-logo-img {
    display: block;
    width: 16rem;
}

.siteFooter-links {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .8rem;
    gap: 1em;
}

.siteFooter-link-a {
    color: #717071;
}

.copyright {
    background: #717071;
    color: #fff;
    font-size: .8rem;
    text-align: center;
    line-height: 2;
}


/* modal */
.modal {
    display: none;
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--siteheaderH) ;
  z-index: 10;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  width: 90vw;
  max-width: 1000px;
  max-height: calc(100dvh - var(--siteheaderH) * 2);
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

.d-inline-block{
    display: inline-block;
}
.modal-content-flexblock{
    font-size: .9rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 1.4em;
}
.modal-title{
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: .4em;
}
.modal1-lead{
    font-weight: bold;
}
.modal-button-close{
    position: fixed;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    right: .5rem;
    top: .5rem;
}
.modal-button-close:before,.modal-button-close:after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #999;
}
.modal-button-close:before{
    transform: translate(-50%) rotate(45deg);
}
.modal-button-close:after{
    transform: translate(-50%) rotate(135deg);
}
.my-hustle-popup-buttons-container{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.my-hustle-popup-button{
    text-decoration: none;
    border: none;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: .25em .75em;
    font-size: 1.2rem;
}
.my-hustle-popup-button:hover,.my-hustle-popup-button:active,.my-hustle-popup-button:visited{
    color: #fff;
}
.my-hustle-copy-coupon-button-text-copied{
    display: none;
}
.my-hustle-copy-coupon-button.copied{
    background: #999;
}
.my-hustle-copy-coupon-button.copied .my-hustle-copy-coupon-button-text-default{
    display: none;
}
.my-hustle-copy-coupon-button.copied .my-hustle-copy-coupon-button-text-copied{
    display: inline-block;
}
#hustle-redisplay-button{
    position: fixed;
    cursor: pointer;
    z-index: 5;
    right: 0;
    bottom: calc(50% - 4em);
    color: #fff;
    line-height: 2em;
    padding: 0 .5em 0 2em;
    font-size: 14px;
    background: #e02a20;
    transform-origin: right bottom;
    transform: rotate(-90deg) translate(100%, 150%);
}
#hustle-redisplay-button:before{
    content: '';
    display: inline-block;
    left: 1em;
    border-right: dashed 2px #fff;
    height: 100%;
    position: absolute;
    top: 0;
}
#hustle-redisplay-button.show{
    display: block !important;
    transform: rotate(-90deg) translateX(100%);
    transition: transform .6s;
}
.modal1-imageArea-img{
    display:block;
    max-width: 100%;
}
@media (min-width: 961px) {
    .modal-content-flexblock{
        flex-direction: row;
    }
    .modal1-imageArea{
        flex: 20rem 0 0;
    }
    .my-hustle-popup-buttons-container{
        flex-direction: row;
    }
}

/* END modal */



/* pcloud */
.pcloud{
    --red: #e65a26;
    border-width: 4px 0;
    border-color: var(--orange);
    border-style: solid;
}
.pcloud-title{
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1em;
    color: var(--orange);
    font-weight: bold;
}
.pcloud-container{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pcloud-coupon{
    position: relative;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    background: var(--lightorange);
    box-shadow: 6px 6px 6px 6px rgba(0,0,0,20%);
}
.pcloud-coupon:before{
    content: '';
    display: block;
    position: absolute;
    left: .75rem;
    right: .75rem;
    top: .75rem;
    bottom: .75rem;
    border: solid 4px var(--red);
}
.pcloud-coupon:after{
    content: '';
    position: absolute;
    top: -.5rem;
    left: -1.5rem;
    width: 10rem;
    aspect-ratio: 4/3;
    background-repeat: no-repeat;
    background-image: url("../imgs/ribbon.svg");
    background-size: contain;
    background-position: 0 0;
}
@media (max-width: 960px) {
    .pcloud-coupon:after{
        width: 8rem;
    }
}
.pcloud-line1{
    color: var(--red);
    font-weight: 900;
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 15px 1.4rem;
    letter-spacing: .05em;
}
@media (max-width: 960px) {
    .pcloud-line1{
        font-size: 5.4vw;
    }
}
.pcloud-line2{
    background: #fff;
    display: block;
    padding: 1em 2rem;
    text-align: center;
}
.pcloud-line2-title{
    letter-spacing: .05em;
    margin: 0;
    line-height: 1.6;
    font-weight: bold;
    font-size: 1.4em;
}
.pcloud_x_millen{
    display: flex;
    align-items: center;
    gap: .2em;
    line-height: 2rem;
    flex-direction: column;
    margin: 0 0 .2em;
}
.pcloud_x_millen-logo{
    height: 3rem;
    width: auto;
}
.pcloud_x_millen-logo-p{
    height: 4rem;
}
.pcloud_x_millen-x{
    color: #555;
    font-weight: normal;
    font-size: 1.5em;
    opacity: .8;
}
@media (max-width: 960px){
    .pcloud_x_millen-logo{
        height: 8vw;
    }
    .pcloud_x_millen-logo-p{
        height: 10vw;
    }
}
.pcloud-line2-title-small{
    font-size: .6em;
    line-height: 1.1;
}
.pcloud-text1{
    margin-top: 3rem;
}
.pcloud-line2-note{
    font-size: .85em;
}