@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

html {
    background-color: #FFF;
}

body {
    font-family: 'Noto Sans JP', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
    font-size: 18px;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

ul, li {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
}
  
img {
    display: block;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.kamiyomi-container {
    width: 904px;
    margin: 0 auto;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    height: 90px;
    z-index: 99;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.header-container {
    width: 1024px;
    margin: 0 auto;
    position: relative;
}

.navbar {
    padding: 0;
    position: relative;
    align-items: center;
    height: 90px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-collapse {
    justify-content: end;
}

.navbar-nav {
    column-gap: 30px;
    align-items: center;
}

.navbar-nav li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.navbar-nav li a.header-contact-button {
    display: block;
    width: 180px;
    height: 50px;
    background-color: #F28D01;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #FFFFFF;
}

.navbar-nav li a:hover {
    opacity: 0.7;
}

.mobile-menu-btn {
    position: absolute;
    right: 2.4vw;
    padding: 0px;
}

.mobile-menu-btn:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.mobile-menu-btn .toggler-icon {
    width: 6vw;
    height: 1vw;
    border-radius: 1vw;
    background-color: #0F4E8C;
    display: block;
    margin: 1.5vw 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-menu-btn .toggler-icon:nth-of-type(1), .mobile-menu-btn .toggler-icon:nth-of-type(3) {
    margin: 0;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 2.4vw;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    top: -2.4vw;
}

.navbar-brand {
    display: block;
    width: 200px;
    padding: 29px 23px;
    margin: 0;
}

.navbar-brand img {
    width: 100%;
}

main {
    padding-top: 90px;
}

#banner {
    background: linear-gradient(#FFFFFF, #DDEDFF);
    padding: 95px 0;
    position: relative;
}

#banner .kamiyomi-container {
    width: 1024px;
}

.banner-top {
    display: flex;
    justify-content: space-between;
    margin: 0 0 56px;
}

.banner-content {
    width: 430px;
    padding-top: 156px;
}

.banner-title h1 {
    font-weight: 700;
    font-size: 65px;
    line-height: 65px;
    color: #000;
}

.banner-number {
    width: 420px;
    margin: 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 80%, #FFE9A0 80%, #FFE9A0 100%);
}

.banner-number p {
    font-weight: 900;
    font-size: 124px;
    line-height: 124px;
    color: #005DAD;
}

.banner-number span {
    font-size: 57px;
    line-height: 75px;
    color: #000;
}

.banner-text p {
    font-weight: 500;
    font-size: 21px;
    line-height: 30px;
    color: #000;
}

.banner-image {
    position: relative;
    width: 580px;
    right: -30px;
}

.banner-image img {
    width: 100%;
}

.banner-bottom p {
    font-weight: 500;
    font-size: 20px;
    line-height: 44px;
    color: #000;
    text-align: center;
}

.banner-bottom span {
    font-weight: 700;
    color: #005DAD;
}

.banner-no1 {
    position: absolute;
    top: -30px;
    left: -34px;
    background: #F28D01;
    width: 152px;
    height: 152px;
    border-radius: 152px;
    transform: rotate(-10deg);
}

.banner-no1-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-no1-text p {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    text-align: center;
}

.banner-no1-text h2 {
    font-weight: 900;
    font-size: 46px;
    line-height: 34px;
    color: #FFF;
    text-align: center;
}

.banner-no1-text span {
    font-size: 34px;
    line-height: 34px;
}

#sidebar {
    position: fixed;
    right: calc(50% - 772px);
    bottom: 63px;
    z-index: 99;
}

.sidebar-card {
    position: relative;
    width: 260px;
    height: 200px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #8A9595;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    padding: 26px;
}

.sidebar-text {
    margin: 0 0 20px;
}

.sidebar-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    text-align: center;
}

.sidebar-button a {
    display: block;
    width: 180px;
    height: 50px;
    background-color: #F28D01;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-button a:hover {
    opacity: 0.7;
}

.sidebar-close {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-color: #8A9595;
    top: 10px;
    right: 10px;
    padding: 7.5px;
    border: none;
    transition: 0.3s;
}

.sidebar-close:hover {
    opacity: 0.7;
}

.sidebar-close img {
    width: 100%;
}

#problem {
    background: #fff;
    padding: 125px 0 110px;
    position: relative;
}

.problem-title {
    margin: 0 0 40px;
}

.problem-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
}

.problem-title img {
    width: 249px;
}

.problem-title span {
    font-weight: 700;
    color: #005DAD;
}

.problem-text {
    margin: 0 0 100px;
}

.problem-text p {
    font-size: 18px;
    line-height: 32px;
    color: #000;
    text-align: center;
}

.solution-title {
    width: 100%;
    height: 70px;
    margin: 0 auto 50px;
    position: relative;
    border-radius: 70px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background:  #005DAD;
}

.solution-title::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #005DAD;
}

.solution-title h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 70px;
    color: #FFF;
    text-align: center;
}

.problem-solution {
    display: flex;
    justify-content: space-between;
}

.solution-content {
    width: 420px;
}

.solution-content-title {
    margin: 0 0 30px;
}

.solution-content-title p {
    font-weight: 500;
    font-size: 24px;
    line-height: 42px;
    color: #000;
}

.solution-content-title h3 {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #005DAD;
}

.solution-content-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #000;
}

.solution-content-text span {
    font-weight: 700;
    color: #005DAD;
}

.solution-image {
    width: 420px;
}

.solution-image h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 42px;
    color: #000;
    text-align: center;
}

.solution-image p {
    font-size: 12px;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin: 0 0 10px;
}

.solution-image img {
    width: 318px;
    margin: 0 auto;
}

#advantages {
    background: rgba(242, 141, 1, 0.05);
    padding: 105px 0;
    position: relative;
}

.advantages-title {
    margin: 0 0 40px;
}

.advantages-title h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 58px;
    color: #F28D01;
    text-align: center;
}

.advantages-title span {
    font-weight: 500;
    color: #000;
}

ul.advantages-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 45px;
    row-gap: 50px;
    list-style: none;
}

ul.advantages-list li {
    width: 250px;
}

.advantages-list-image {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 200px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    margin: 0 auto 20px;
}

.advantages-list-image img {
    width: 100%;
}

.advantages-list-text p {
    font-size: 18px;
    line-height: 32px;
    color: #000;
    text-align: center;
}

.advantages-list-note {
    margin: 10px 0 0;
}

.advantages-list-note p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
    text-align: center;
}

#what {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

ul.what-list {
    list-style: none;
}

ul.what-list li {
    margin: 0 0 70px;
}

ul.what-list li:last-child {
    margin: 0;
}

.what-list-title {
    width: 100%;
    height: 70px;
    margin: 0 auto 50px;
    position: relative;
    border-radius: 70px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background:  #005DAD;
}

.what-list-title::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #005DAD;
}

.what-list-title h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 70px;
    color: #FFF;
    text-align: center;
}

.what-list-inner {
    display: flex;
    justify-content: space-between;
}

.what-list-content {
    width: 416px;
}

.what-list-content-title {
    margin: 0 0 30px;
}

ul.what-list li:nth-child(3) .what-list-content-title {
    width: 455px;
}

.what-list-content-title p {
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    color: #000;
}

.what-list-content-title h3 {
    font-weight: 700;
    font-size: 38px;
    line-height: 58px;
    color: #005DAD;
}

.what-list-content-text p {
    font-size: 16px;
    line-height: 32px;
    color: #000;
}

.what-list-content-text span {
    font-weight: 700;
    color: #005DAD;
}

.what-list-content-note {
    margin: 30px 0 0;
}

.what-list-content-note p {
    font-size: 12px;
    line-height: 22px;
    color: #000;
}

.what-list-image {
    display: none;
}

.what-list-content-image {
    width: 420px;
    position: relative;
}

.what-list-content-image img {
    width: 100%;
}

.what-list-content-image-note {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 142px;
    height: 142px;
    border-radius: 142px;
    background-color: #F28D01;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.what-list-content-image-note p {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#why {
    background: rgba(242, 141, 1, 0.05);
    padding: 100px 0;
    position: relative;
}

.why-title {
    margin: 0 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
}

.why-title img {
    width: 339px;
    margin-right: 6px;
}

.why-title::before {
    content: "";
    display: block;
    background: url("../assets/why-title-before.svg") no-repeat;
    background-size: contain;
    width: 45px;
    height: 100px;
    margin: 0 24px 0 0;
}

.why-title::after {
    content: "";
    display: block;
    background: url("../assets/why-title-after.svg") no-repeat;
    background-size: contain;
    width: 45px;
    height: 100px;
    margin: 0 0 0 24px;
}

ul.why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    row-gap: 20px;
    width: 650px;
    margin: 0 auto;
}

ul.why-list li {
    width: 170px;
    height: 170px;
    border-radius: 170px;
    background-color: #F28D01;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    position: relative;
}

ul.why-list li p {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#why-bottom {
    padding: 140px 0 70px;
    position: relative;
    background: #F28D01;
}

#why-bottom::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 73px solid #fef9f2;
}

.why-bottom-text {
    margin: 0 0 20px;
}

.why-bottom-text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 42px;
    color: #fff;
    text-align: center;
}

.why-bottom-highlight p {
    font-weight: 700;
    font-size: 48px;
    line-height: 70px;
    color: #fff;
    text-align: center;
}

#easytouse {
    background: rgba(242, 141, 1, 0.05);
    padding: 135px 0;
    position: relative;
}

.easytouse-title {
    margin: 0 0 70px;
}

.easytouse-title h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 58px;
    color: #F28D01;
    text-align: center;
}

.easytouse-title span {
    font-weight: 500;
    color: #000;
}

ul.easytouse-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

ul.easytouse-list li {
    width: 180px;
    position: relative;
}

.easytouse-list-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #F28D01;
    z-index: 2;
}

.easytouse-list-number p {
    font-weight: 700;
    font-size: 18px;
    line-height: 40px;
    color: #FFF;
    text-align: center;
}

.easytouse-list-title {
    position: absolute;
    top: -30px;
    left: -20px;
    width: 82px;
    height: 82px;
    border-radius: 82px;
    border: 2px solid #F28D01;
    background-color: #fff;
    z-index: 2;
}

.easytouse-list-title p {
    font-weight: 700;
    font-size: 18px;
    line-height: 82px;
    color: #F28D01;
    text-align: center;
}

.easytouse-list-image {
    width: 180px;
    background-color: #FFFFFF;
    border-radius: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    margin: 0 0 30px;
}

.easytouse-list-image img {
    width: 100%;
}

.easytouse-list-text p {
    font-size: 18px;
    line-height: 32px;
    color: #000;
    text-align: center;
}

.easytouse-divider {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #FCB049;
    margin-top: 75px;
}

#rateplan {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.rateplan-title {
    margin: 0 0 40px;
}

.rateplan-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
}

.rateplan-text {
    margin: 0 0 50px;
}

.rateplan-text p {
    font-size: 18px;
    line-height: 32px;
    color: #000;
    text-align: center;
}

ul.rateplan-list {
    list-style: none;
}

ul.rateplan-list > li {
    margin: 0 0 50px;
}

ul.rateplan-list > li:last-child {
    margin: 0;
}

.rateplan-list-title {
    width: 100%;
    height: 45px;
    border: 1px solid #000000;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
}

.rateplan-list-title h3 {
    font-size: 24px;
    line-height: 42px;
    color: #000;
    text-align: center;
}

.rateplan-list-title img {
    width: 40px;
    margin-right: 10px;
}

.rateplan-list-title span {
    font-size: 12px;
    line-height: 22px;
}

.rateplan-list-card {
    width: 100%;
    border-radius: 40px;
}

#trial-plan .rateplan-list-card {
    background: rgba(47, 173, 105, 0.1);
    padding: 60px 40px;
}

#normal-plan .rateplan-list-card {
    background: rgba(0, 93, 173, 0.1);
    padding: 27px 22px;
}

#pay-as-you-go .rateplan-list-card {
    background: rgba(89, 73, 155, 0.1);
    padding: 45px 42px;
}

.rateplan-list-card-title h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
    text-align: center;
}

#trial-plan .rateplan-list-card-title h4 {
    color: #2FAD69;
}

#normal-plan .rateplan-list-card-title h4 {
    color: #005DAD;
}

#pay-as-you-go .rateplan-list-card-title h4 {
    color: #59499B;
}

.rateplan-list-card-title span {
    font-weight: 400;
    font-size: 12px;
    line-height: 46px;
    text-align: center;
    color: #000;
}

.rateplan-list-card-text {
    margin: 10px 0 0;
}

.rateplan-list-card-text p {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #000;
}

.rateplan-list-card ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0 0;
}

.rateplan-list-card ul:first-child {
    margin: 0;
}

.rateplan-list-card ul li {
    background: #fff;
    border-radius: 20px;
    padding: 20px 0;
}

#trial-plan .rateplan-list-card ul li {
    width: 390px;
}

#normal-plan .rateplan-list-card ul li {
    width: 280px;
}

#pay-as-you-go .rateplan-list-card ul li {
    width: 260px;
}

.rateplan-card-list-title p {
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
}

#trial-plan .rateplan-card-list-title p {
    color: #2FAD69;
}

#trial-plan .rateplan-list-card ul li:nth-child(2) .rateplan-card-list-title p,
#trial-plan .rateplan-list-card ul li:nth-child(5) .rateplan-card-list-title p {
    color: #088140;
}

#normal-plan .rateplan-card-list-title p {
    color: #005DAD;
}

#pay-as-you-go .rateplan-card-list-title p {
    color: #59499B;
}

.rateplan-card-list-title span {
    font-size: 32px;
    line-height: 42px;
}

.rateplan-card-list-label {
    margin: 15px auto 5px;
    padding: 6px 0;
    border-radius: 10px;
}

#trial-plan .rateplan-card-list-label {
    width: 340px;
    background-color: #2FAD69;
}

#trial-plan .rateplan-list-card ul li:nth-child(2) .rateplan-card-list-label,
#trial-plan .rateplan-list-card ul li:nth-child(5) .rateplan-card-list-label {
    background-color: #088140;
}

#normal-plan .rateplan-card-list-label {
    width: 240px;
    background-color: #005DAD;
}

#pay-as-you-go .rateplan-card-list-label {
    width: 205px;
    background-color: #59499B;
}

.rateplan-card-list-label p {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

.rateplan-card-list-label p span {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    text-align: center;
}

.rateplan-card-list-label p .span {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.rateplan-card-list-price p {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    text-align: center;
    color: #E26A6A;
}

.rateplan-card-list-price p span {
    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    color: #000;
}

.rateplan-card-list-price > span {
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    color: #000;
    display: block;
}

p.rateplan-card-list-note {
    font-weight: 400;
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 22px;
    color: #000;
}

.rateplan-list-card ul li:last-child {
    width: 100% !important;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    padding: 18px;
}

.rateplan-card-last-text-1 p {
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
}

.rateplan-card-last-text-2 p {
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
}

#trial-plan .rateplan-card-last-text-1 p,
#trial-plan .rateplan-card-last-text-2 p {
    color: #2FAD69;
}

#trial-plan .rateplan-list-card ul li:nth-child(3) {
    width: 100% !important;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    padding: 18px;
}

/* #trial-plan .rateplan-list-card ul li:nth-child(4),
#trial-plan .rateplan-list-card ul li:nth-child(5),
#trial-plan .rateplan-list-card ul li:nth-child(6) {
    width: 260px;
}

#trial-plan .rateplan-list-card ul li:nth-child(4) .rateplan-card-list-label,
#trial-plan .rateplan-list-card ul li:nth-child(5) .rateplan-card-list-label,
#trial-plan .rateplan-list-card ul li:nth-child(6) .rateplan-card-list-label {
    width: 205px;
} */

#trial-plan .rateplan-list-card ul li:last-child {
    display: block;
}

.rateplan-card-lastnew-title {
    margin: 0 0 10px;
}

.rateplan-card-lastnew-title p {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #2FAD69;
}

.rateplan-card-lastnew-list {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

.rateplan-card-lastnew-text {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.rateplan-card-lastnew-text label {
    display: block;
    width: 150px;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #FFF;
    background-color: #2FAD69;
    border-radius: 5px;
}

.rateplan-card-lastnew-text p {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #E26A6A;
}

.rateplan-card-lastnew-text p span {
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #000;
}

#normal-plan .rateplan-card-last-text-1 p,
#normal-plan .rateplan-card-last-text-2 p {
    color: #005DAD;
}

#pay-as-you-go .rateplan-card-last-text-1 p,
#pay-as-you-go .rateplan-card-last-text-2 p {
    color: #59499B;
}

#normal-plan .rateplan-list-card ul li:nth-child(4) {
    width: 100% !important;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    padding: 18px;
}

#normal-plan .rateplan-list-card ul li:last-child {
    display: block;
}

#normal-plan .rateplan-card-lastnew-title p {
    color: #005DAD;
}

#normal-plan .rateplan-card-lastnew-text label {
    background-color: #005DAD;
}

.rateplan-card-last-text-price {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}

.rateplan-card-last-text-price p {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    text-align: center;
    color: #E26A6A;
}

.rateplan-card-last-text-price span {
    font-weight: 500;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    color: #000;
}

.rateplan-list-note {
    margin: 20px 0 0;
}

.rateplan-list-note p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

.rateplan-bottom-description {
    margin: 50px 0 0;
}

.rateplan-bottom-description-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 30px;
    column-gap: 20px;
}

.rateplan-bottom-description-title p {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #000;
}

.rateplan-bottom-description-title::before,
.rateplan-bottom-description-title::after {
    display: block;
    content: '';
    width: 250px;
    height: 1px;
    background: #000;
}

.rateplan-bottom-description-content {
    width: 682px;
    margin: 0 auto;
}

.rateplan-bottom-description-content-header {
    display: flex;
    column-gap: 10px;
    margin: 0 0 20px;
}

.rateplan-bottom-description-content-header label {
    display: block;
    width: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    background-color: #005DAD;
    border-radius: 5px;
}

.rateplan-bottom-description-content-header p {
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #000;
}

.rateplan-bottom-description-content-header p span {
    font-weight: 700;
    color: #005DAD;
}

.rateplan-bottom-description-content-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 32px;
    margin: 0 0 10px;
}

.rateplan-bottom-description-content-bubble {
    position: relative;
    background: #fff;
    width: 210px;
    min-width: 210px;
    border-radius: 10px;
    padding: 18px 20px;
}

.rateplan-bottom-description-content-bubble::before {
    content: '';
    margin: auto 0;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    left: auto;
    right: 0;
    transform: translate(100%, 0);
    border-right: none;
    border-left: 15px solid #fff;
}

.rateplan-bottom-description-content-bubble-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

.rateplan-bottom-description-content-bubble-divider {
    margin: 10px 0;
    width: 100%;
    height: 1px;
    background: #707070;
}

.rateplan-bottom-description-content-description {
    width: 100%;
}

.rateplan-bottom-description-content-description-title {
    margin: 0 0 5px;
}

.rateplan-bottom-description-content-description-title p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
    text-align: center;
}

.rateplan-bottom-description-content-description-title p span {
    font-weight: 700;
}

.rateplan-bottom-description-content-description-line {
    width: 100%;
    height: 10px;
    margin: 0 0 10px;
    border: 1px solid #000000;
    border-bottom: none;
}

.rateplan-bottom-description-content-description-price {
    width: 100%;
    height: 40px;
    background: #005DAD;
    position: relative;
    margin: 0 0 20px;
    padding: 0 10px;
}

.rateplan-bottom-description-content-description-price p {
    font-weight: 700;
    font-size: 14px;
    line-height: 40px;
    color: #FFF;
    text-align: right;
}

.rateplan-bottom-description-content-description-price label {
    width: 108px;
    height: 40px;
    background: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.rateplan-bottom-description-content-description-price-line {
    position: absolute;
    height: 20px;
    top: 50px;
    left: 54px;
    border-left: 1px solid #005DAD;
    border-bottom: 1px solid #005DAD;
}

.rateplan-bottom-description-content-description-price-line.line-1 {
    width: 20px;
}

.rateplan-bottom-description-content-description-price-line.line-2 {
    width: 110px;
}

.rateplan-bottom-description-content-description-text.line-1 {
    margin-left: 50px;
}

.rateplan-bottom-description-content-description-text p {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #005DAD;
    text-align: center;
}

.rateplan-bottom-description-content-description-text p span {
    text-decoration: underline;
}

.rateplan-bottom-description-content-note {
    margin: 0 0 30px;
}

.rateplan-bottom-description-content-note p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

#flow {
    background: rgba(0, 93, 173, 0.05);
    padding: 178px 0;
    position: relative;
}

.flow-title {
    margin: 0 0 40px;
}

.flow-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
}

ul.flow-list {
    list-style: none;
    position: relative;
}

/*
ul.flow-list::before {
    content: '';
    width: 20px;
    height: calc(100% - 140px);
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: rgba(0, 93, 173, 0.2);
    z-index: 1;
}
*/

ul.flow-list li {
    margin: 0 0 30px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    position: relative;
    z-index: 2;
}

ul.flow-list li:last-child {
    margin: 0;
}

.border-line {
    position: absolute;
    left: 25px;
    top: 40px;
    width: 20px;
    height: 0;
    background-color: rgba(0, 93, 173, 0.2);
    z-index: 1;
}

.flow-list-number {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background-color: #005DAD;
    z-index: 2;
}

.flow-list-number p {
    font-weight: 700;
    font-size: 32px;
    line-height: 70px;
    color: #FFF;
    text-align: center;
}

.flow-list-text {
    width: 508px;
}

.flow-list-text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 42px;
    color: #000;
}

.flow-list-image {
    width: 286px;
}

.flow-list-image img {
    width: 100%;
}

#contactus {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.contactus-title {
    margin: 0 0 50px;
}

.contactus-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
}

.contactus-title span {
    font-weight: 500;
    font-size: 38px;
    line-height: 58px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
}

.contactus-title img {
    width: 249px;
}

ul.contactus-list {
    width: 720px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    column-gap: 50px;
    row-gap: 20px;
    border: 2px solid #005DAD;
    padding: 35px;
}

ul.contactus-list li {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    display: flex;
}

ul.contactus-list li::before {
    content: "";
    display: block;
    background: url("../assets/contactus-list.svg") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
}

.contactus-button {
    margin: 0 0 50px;
}

.contactus-button a {
    display: block;
    width: 500px;
    height: 70px;
    background-color: #F28D01;
    border-radius: 70px;
    font-weight: 700;
    font-size: 18px;
    line-height: 70px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

.contactus-button a:hover {
    opacity: 0.7;
}

.contactus-number {
    width: 720px;
    background: rgba(0, 93, 173, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin: 0 auto;
}

.contactus-number-label p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-align: center;
}

.contactus-number-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactus-number-text img {
    width: 40px;
}

.contactus-number-text p {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #005DAD;
    text-align: center;
}

#footer {
    background: rgba(42, 54, 101, 0.1);
    padding: 36px 0;
}

.footer-note {
    margin: 0 0 20px;
}

.footer-note p {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #2A3665;
    text-align: center;
}

.footer-logo {
    width: 323px;
    margin: 0 auto 30px;
}

.footer-logo img {
    width: 100%;
}

.footer-copyright p {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #2A3665;
    text-align: center;
}

/* CONTACT PAGE */
#contact {
    background: #FFF;
    padding: 64px 0 45px;
}

#contact .kamiyomi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-content {
    width: 420px;
}

.contact-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 30px;
}

.contact-title h1 {
    font-size: 38px;
    line-height: 55px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.contact-title img {
    width: 127px;
    transform: rotate(5deg);
}

.contact-text {
    margin: 0 0 50px;
}

.contact-text p {
    font-size: 16px;
    line-height: 32px;
    color: #000;
}

.contact-text img {
    display: none;
}

.contact-number {
    width: 100%;
    background: rgba(0, 93, 173, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin: 0 0 50px;
}

.contact-number-label p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    text-align: center;
}

.contact-number-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-number-text img {
    width: 40px;
}

.contact-number-text p {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #005DAD;
    text-align: center;
}

.contact-list {
    width: 100%;
    border: 2px solid #005DAD;
    border-radius: 20px;
    padding: 24px 36px;
}

.contact-list-title {
    margin: 0 0 20px;
}

.contact-list-title h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #005DAD;
    text-align: center;
}

.contact-list ul {
    list-style: none;
}

.contact-list ul li {
    font-size: 14px;
    line-height: 28px;
    color: #000;
}

.contact-list ul li span {
    color: #005DAD;
}

.contact-form {
    width: 420px;
}

.contact-form-text {
    margin: 0 0 20px;
}

.contact-form-name {
    display: flex;
    column-gap: 20px;
}

.contact-form-input > input[type="text"],
.contact-form-input > input[type="email"] {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    background-color: #fff;
    border: 0.5px solid #000;
    padding: 13px 20px;
    color: #000;
}

.contact-form-option {
    margin: 0 0 20px;
}

.contact-form-option > .contact-form-label {
    margin: 0 0 10px;
}

.contact-form-option > .contact-form-label > label {
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

.contact-form-option > .contact-form-input label {
    width: 180px;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin: 0 20px 15px 0;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-form-option > .contact-form-input {
    display: flex;
    flex-wrap: wrap;
}

.contact-form-option > .contact-form-input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 0.5px solid #000;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    background: url("../assets/checklist.svg") no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-form-option > .contact-form-input input:checked ~ .checkmark:after {
    display: block;
}

.contact-form-textarea {
    margin: 0 0 20px;
}

.contact-form-input > textarea {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    border: 0.5px solid #000;
    padding: 13px 20px;
    height: 180px;
  }

.form-check {
    padding: 0;
    margin: 0 0 10px;
}

.contact-agreement > label {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-agreement > label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-agreement > label input:checked ~ .checkmark:after {
    display: block;
}

.contact-form-note {
    margin: 0 0 20px;
}

.contact-form-note p {
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.contact-form-note a {
    color: #005DAD;
}

input#submit {
    display: block;
    width: 180px;
    height: 50px;
    background-color: #F28D01;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

input#submit:hover {
    opacity: 0.7;
}

button[type=submit] {
    display: block;
    width: 180px;
    height: 50px;
    background-color: #F28D01;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

button[type=submit]:hover {
    opacity: 0.7;
}

/* THANKS PAGE */

#thanks {
    background: #FFF;
    padding: 150px 0 240px;
}

.thanks-title {
    margin: 0 0 50px;
}

.thanks-title h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 54px;
    color: #000000;
    text-align: center;
}

.thanks-text {
    margin: 0 0 50px;
}

.thanks-text p {
    font-size: 16px;
    line-height: 32px;
    color: #000000;
    text-align: center;
}

.thanks-button a {
    display: block;
    width: 180px;
    height: 50px;
    background-color: #F28D01;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.thanks-button a:hover {
    opacity: 0.7;
}

.split-mobile {
    display: none;
}

.desktop-only {
    display: inline-block;
    line-height: 1px !important;
    height: 1px;
}

.mobile-only {
    display: none;
}

img.image-mobile {
    display: none;
}

.grecaptcha-badge {
    display: none !important;
}

#recaptcha-holder > .grecaptcha-badge {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    margin: 0 0 20px;
}

@media (max-width: 1669px) and (min-width: 1024px) {
    #sidebar {
        right: 60px;
    }
}

@media (max-width: 1099px) and (min-width: 640px) {
    #banner {
        padding: 8.64vw 0;
    }
    
    #banner .kamiyomi-container {
        width: 93.09vw;
    }
    
    .banner-top {
        margin: 0 0 5.09vw;
    }
    
    .banner-content {
        width: 39.09vw;
        padding-top: 14.18vw;
    }
    
    .banner-title h1 {
        font-size: 5.91vw;
        line-height: 5.91vw;
    }
    
    .banner-number {
        width: 38.18vw;
        margin: 0 0 2.73vw;
    }
    
    .banner-number p {
        font-size: 11.27vw;
        line-height: 11.27vw;
    }
    
    .banner-number span {
        font-size: 5.18vw;
        line-height: 6.82vw;
    }
    
    .banner-text p {
        font-size: 1.91vw;
        line-height: 2.73vw;
    }
    
    .banner-image {
        width: 52.73vw;
        right: -2.73vw;
    }
    
    .banner-bottom p {
        font-size: 1.82vw;
        line-height: 4vw;
    }
    
    .banner-no1 {
        top: -2.73vw;
        left: -3.09vw;
        width: 13.82vw;
        height: 13.82vw;
        border-radius: 13.82vw;
    }
        
    .banner-no1-text p {
        font-size: 1.45vw;
        line-height: 1.82vw;
    }
    
    .banner-no1-text h2 {
        font-size: 4.18vw;
        line-height: 3.09vw;
    }
    
    .banner-no1-text span {
        font-size: 3.09vw;
        line-height: 3.09vw;
    }
    
}

@media (max-width: 1023px) and (min-width: 640px) {
    .kamiyomi-container {
        width: 88.28125vw;
    }
    
    .header {
        height: 8.79vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
    }
    
    .header-container {
        width: 100vw;
    }
    
    .navbar {
        height: 8.79vw;
    }
        
    .navbar-nav {
        column-gap: 2.93vw;
        padding-right: 2.25vw;
    }
    
    .navbar-nav li a {
        font-size: 1.56vw;
        line-height: 2.34vw;
    }
    
    .navbar-nav li a.header-contact-button {
        width: 17.58vw;
        height: 4.88vw;
        border-radius: 4.88vw;
        font-size: 1.37vw;
        line-height: 4.88vw;
    }
            
    .navbar-brand {
        width: 19.53vw;
        padding: 2.83vw 2.25vw;
    }
        
    main {
        padding-top: 8.79vw;
    }

    #sidebar {
        right: 5.86vw;
        bottom: 5.86vw;
    }
    
    .sidebar-card {
        width: 25.39vw;
        height: 19.53vw;
        border-radius: 1.95vw;
        border: 0.1vw solid #8A9595;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
        padding: 2.54vw;
    }
    
    .sidebar-text {
        margin: 0 0 1.95vw;
    }
    
    .sidebar-text p {
        font-size: 1.56vw;
        line-height: 2.54vw;
    }
    
    .sidebar-button a {
        width: 17.58vw;
        height: 4.88vw;
        border-radius: 4.88vw;
        font-size: 1.37vw;
        line-height: 4.88vw;
    }
        
    .sidebar-close {
        width: 2.44vw;
        height: 2.44vw;
        border-radius: 2.44vw;
        top: 0.98vw;
        right: 0.98vw;
        padding: 0.73vw;
    }
    
    #problem {
        padding: 12.21vw 0 10.74vw;
    }
    
    .problem-title {
        margin: 0 0 3.91vw;
    }
    
    .problem-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .problem-title img {
        width: 24.32vw;
    }
        
    .problem-text {
        margin: 0 0 9.77vw;
    }
    
    .problem-text p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    .solution-title {
        height: 6.84vw;
        margin: 0 auto 4.88vw;
        border-radius: 6.84vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
    }
    
    .solution-title::after {
        border-left: 1.17vw solid transparent;
        border-right: 1.17vw solid transparent;
        border-top: 1.95vw solid #005DAD;
    }
    
    .solution-title h2 {
        font-size: 2.34vw;
        line-height: 6.84vw;
    }
        
    .solution-content {
        width: 41.02vw;
    }
    
    .solution-content-title {
        margin: 0 0 2.93vw;
    }
    
    .solution-content-title p {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
    
    .solution-content-title h3 {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    .solution-content-text p {
        font-size: 1.56vw;
        line-height: 3.125vw;
    }
    
    .solution-image {
        width: 41.02vw;
    }
    
    .solution-image h3 {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
    
    .solution-image p {
        font-size: 1.17vw;
        line-height: 2.15vw;
        margin: 0 0 0.98vw;
    }
    
    .solution-image img {
        width: 31.05vw;
    }

    #advantages {
        padding: 10.25vw 0;
    }
    
    .advantages-title {
        margin: 0 0 3.91vw;
    }
    
    .advantages-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    ul.advantages-list {
        column-gap: 4.39vw;
        row-gap: 4.88vw;
    }
    
    ul.advantages-list li {
        width: 24.41vw;
    }
    
    .advantages-list-image {
        width: 19.53vw;
        height: 19.53vw;
        border-radius: 19.53vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
        margin: 0 auto 1.95vw;
    }
    
    .advantages-list-text p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    .advantages-list-note {
        margin: 0.98vw 0 0;
    }
    
    .advantages-list-note p {
        font-size: 1.17vw;
        line-height: 1.76vw;
    }

    #what {
        padding: 9.77vw 0;
    }
    
    ul.what-list li {
        margin: 0 0 6.84vw;
    }
        
    .what-list-title {
        height: 6.84vw;
        margin: 0 auto 4.88vw;
        border-radius: 6.84vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
    }
    
    .what-list-title::after {
        border-left: 1.17vw solid transparent;
        border-right: 1.17vw solid transparent;
        border-top: 1.95vw solid #005DAD;
    }
    
    .what-list-title h2 {
        font-size: 2.34vw;
        line-height: 6.84vw;
    }
        
    .what-list-content {
        width: 40.625vw;
    }
    
    .what-list-content-title {
        margin: 0 0 2.93vw;
    }
    
    ul.what-list li:nth-child(3) .what-list-content-title {
        width: 44.43vw;
    }
    
    .what-list-content-title p {
        font-size: 2.34vw;
        line-height: 3.42vw;
    }
    
    .what-list-content-title h3 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .what-list-content-text p {
        font-size: 1.56vw;
        line-height: 3.125vw;
    }
    
    .what-list-content-note {
        margin: 2.93vw 0 0;
    }
    
    .what-list-content-note p {
        font-size: 1.17vw;
        line-height: 2.15vw;
    }
    
    .what-list-content-image {
        width: 41.02vw;
    }
    
    .what-list-content-image-note {
        right: -1.95vw;
        bottom: -1.95vw;
        width: 13.87vw;
        height: 13.87vw;
        border-radius: 13.87vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
    }
    
    .what-list-content-image-note p {
        font-size: 1.76vw;
        line-height: 2.73vw;
    }
    
    #why {
        padding: 9.77vw 0;
    }
    
    .why-title {
        margin: 0 0 3.91vw;
    }
    
    .why-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .why-title img {
        width: 33.11vw;
        margin-right: 0.59vw;
    }
    
    .why-title::before {
        width: 4.39vw;
        height: 9.77vw;
        margin: 0 2.34vw 0 0;
    }
    
    .why-title::after {
        width: 4.39vw;
        height: 9.77vw;
        margin: 0 0 0 2.34vw;
    }
    
    ul.why-list {
        row-gap: 1.95vw;
        width: 63.48vw;
    }
    
    ul.why-list li {
        width: 16.60vw;
        height: 16.60vw;
        border-radius: 16.60vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
    }
    
    ul.why-list li p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    #why-bottom {
        padding: 13.67vw 0 6.84vw;
    }
    
    #why-bottom::before {
        border-top: 7.13vw solid #fef9f2;
    }
    
    .why-bottom-text {
        margin: 0 0 1.95vw;
    }
    
    .why-bottom-text p {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
    
    .why-bottom-highlight p {
        font-size: 4.6875vw;
        line-height: 6.84vw;
    }
    
    #easytouse {
        padding: 13.18vw 0;
    }
    
    .easytouse-title {
        margin: 0 0 6.84vw;
    }
    
    .easytouse-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    ul.easytouse-list li {
        width: 17.58vw;
    }
    
    .easytouse-list-number {
        top: -0.98vw;
        left: -0.98vw;
        width: 3.91vw;
        height: 3.91vw;
        border-radius: 3.91vw;
    }
    
    .easytouse-list-number p {
        font-size: 1.76vw;
        line-height: 3.91vw;
    }
    
    .easytouse-list-title {
        top: -2.93vw;
        left: -1.95vw;
        width: 8.01vw;
        height: 8.01vw;
        border-radius: 8.01vw;
        border: 0.2vw solid #F28D01;
    }
    
    .easytouse-list-title p {
        font-size: 1.76vw;
        line-height: 8.01vw;
    }
    
    .easytouse-list-image {
        width: 17.58vw;
        border-radius: 1.95vw;
        filter: drop-shadow(0 0.29vw 0.59vw rgba(0, 0, 0, 0.16));
        margin: 0 0 2.93vw;
    }
    
    .easytouse-list-text p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    .easytouse-divider {
        border-top: 1.46vw solid transparent;
        border-bottom: 1.46vw solid transparent;
        border-left: 1.95vw solid #FCB049;
        margin-top: 7.32vw;
    }

    #rateplan {
        padding: 9.77vw 0;
    }
    
    .rateplan-title {
        margin: 0 0 3.91vw;
    }
    
    .rateplan-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .rateplan-text {
        margin: 0 0 4.88vw;
    }
    
    .rateplan-text p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    ul.rateplan-list > li {
        margin: 0 0 4.88vw;
    }
    
    .rateplan-list-title {
        height: 4.39vw;
        border: 0.1vw solid #000000;
        margin: 0 0 1.95vw;
        border-radius: 4.39vw;
    }
    
    .rateplan-list-title h3 {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
    
    .rateplan-list-title img {
        width: 3.91vw;
        margin-right: 0.98vw;
    }
    
    .rateplan-list-title span {
        font-size: 1.17vw;
        line-height: 2.15vw;
    }
    
    .rateplan-list-card {
        border-radius: 3.91vw;
    }
    
    #trial-plan .rateplan-list-card {
        padding: 5.86vw 3.91vw;
    }
    
    #normal-plan .rateplan-list-card {
        padding: 2.64vw 2.15vw;
    }
    
    #pay-as-you-go .rateplan-list-card {
        padding: 4.39vw 4.10vw;
    }
    
    .rateplan-list-card-title h4 {
        font-size: 3.125vw;
        line-height: 4.49vw;
    }
    
    .rateplan-list-card-title span {
        font-size: 1.17vw;
        line-height: 4.49vw;
    }
    
    .rateplan-list-card-text {
        margin: 0.98vw 0 0;
    }
    
    .rateplan-list-card-text p {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .rateplan-list-card ul {
        margin: 3.91vw 0 0;
    }
    
    .rateplan-list-card ul li {
        border-radius: 1.95vw;
        padding: 1.95vw 0;
    }
    
    #trial-plan .rateplan-list-card ul li {
        width: 38.09vw;
    }
    
    #normal-plan .rateplan-list-card ul li {
        width: 27.34vw;
    }
    
    #pay-as-you-go .rateplan-list-card ul li {
        width: 25.39vw;
    }
    
    .rateplan-card-list-title p {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
        
    .rateplan-card-list-title span {
        font-size: 3.125vw;
        line-height: 4.10vw;
    }
    
    .rateplan-card-list-label {
        margin: 1.46vw auto 0.49vw;
        padding: 0.59vw 0;
        border-radius: 0.98vw;
    }
    
    #trial-plan .rateplan-card-list-label {
        width: 33.20vw;
    }
    
    #normal-plan .rateplan-card-list-label {
        width: 23.44vw;
    }
    
    #pay-as-you-go .rateplan-card-list-label {
        width: 20.02vw;
    }
    
    .rateplan-card-list-label p {
        font-size: 1.56vw;
        line-height: 2.15vw;
    }
    
    .rateplan-card-list-label p span {
        font-size: 1.17vw;
        line-height: 1.76vw;
    }

    .rateplan-card-list-label p .span {
        font-size: 1.37vw;
        line-height: 2.15vw;
    }
    
    .rateplan-card-list-price p {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    .rateplan-card-list-price p span {
        font-size: 2.34vw;
        line-height: 5.37vw;
    }
    
    .rateplan-card-list-price > span {
        font-size: 1.17vw;
        line-height: 2.15vw;
    }
    
    p.rateplan-card-list-note {
        margin: 0.98vw 0 0;
        font-size: 1.17vw;
        line-height: 2.15vw;
    }
    
    .rateplan-list-card ul li:last-child {
        margin: 1.95vw 0 0;
        column-gap: 2.93vw;
        padding: 1.76vw;
    }
    
    .rateplan-card-last-text-1 p {
        font-size: 1.76vw;
        line-height: 3.125vw;
    }
    
    .rateplan-card-last-text-2 p {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }

    #trial-plan .rateplan-list-card ul li:nth-child(3) {
        margin: 1.95vw 0;
        column-gap: 2.93vw;
        padding: 1.76vw;
    }
    
    /* #trial-plan .rateplan-list-card ul li:nth-child(4),
    #trial-plan .rateplan-list-card ul li:nth-child(5),
    #trial-plan .rateplan-list-card ul li:nth-child(6) {
        width: 25.39vw;
    }
    
    #trial-plan .rateplan-list-card ul li:nth-child(4) .rateplan-card-list-label,
    #trial-plan .rateplan-list-card ul li:nth-child(5) .rateplan-card-list-label,
    #trial-plan .rateplan-list-card ul li:nth-child(6) .rateplan-card-list-label {
        width: 20.02vw;
    } */
        
    .rateplan-card-lastnew-title {
        margin: 0 0 0.98vw;
    }
    
    .rateplan-card-lastnew-title p {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .rateplan-card-lastnew-list {
        column-gap: 2.93vw;
    }
    
    .rateplan-card-lastnew-text {
        column-gap: 0.98vw;
    }
    
    .rateplan-card-lastnew-text label {
        width: 14.65vw;
        font-size: 1.56vw;
        line-height: 2.93vw;
        border-radius: 0.49vw;
    }
    
    .rateplan-card-lastnew-text p {
        font-size: 3.125vw;
        line-height: 4.88vw;
    }
    
    .rateplan-card-lastnew-text p span {
        font-size: 1.76vw;
        line-height: 4.88vw;
    }

    #normal-plan .rateplan-list-card ul li:nth-child(4) {
        margin: 1.95vw 0;
        column-gap: 2.93vw;
        padding: 1.76vw;
    }
    
    .rateplan-card-last-text-price {
        column-gap: 1.46vw;
    }
    
    .rateplan-card-last-text-price p {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    .rateplan-card-last-text-price span {
        font-size: 2.34vw;
        line-height: 5.37vw;
    }
    
    .rateplan-list-note {
        margin: 1.95vw 0 0;
    }
    
    .rateplan-list-note p {
        font-size: 1.17vw;
        line-height: 1.76vw;
    }

    .rateplan-bottom-description {
        margin: 4.88vw 0 0;
    }
    
    .rateplan-bottom-description-title {
        margin: 0 0 2.93vw;
        column-gap: 1.95vw;
    }
    
    .rateplan-bottom-description-title p {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .rateplan-bottom-description-title::before,
    .rateplan-bottom-description-title::after {
        width: 24.41vw;
        height: 0.1vw;
    }
    
    .rateplan-bottom-description-content {
        width: 66.60vw;
    }
    
    .rateplan-bottom-description-content-header {
        column-gap: 0.98vw;
        margin: 0 0 1.95vw;
    }
    
    .rateplan-bottom-description-content-header label {
        width: 9.77vw;
        font-size: 1.56vw;
        line-height: 4.88vw;
        border-radius: 0.49vw;
    }
    
    .rateplan-bottom-description-content-header p {
        font-size: 1.56vw;
        line-height: 2.44vw;
    }
        
    .rateplan-bottom-description-content-detail {
        column-gap: 3.125vw;
        margin: 0 0 0.98vw;
    }
    
    .rateplan-bottom-description-content-bubble {
        width: 20.51vw;
        min-width: 20.51vw;
        border-radius: 0.98vw;
        padding: 1.76vw 1.95vw;
    }
    
    .rateplan-bottom-description-content-bubble::before {
        border-top: 0.73vw solid transparent;
        border-bottom: 0.73vw solid transparent;
        border-left: 1.46vw solid #fff;
    }
    
    .rateplan-bottom-description-content-bubble-text p {
        font-size: 1.37vw;
        line-height: 2.15vw;
    }
    
    .rateplan-bottom-description-content-bubble-divider {
        margin: 0.98vw 0;
        height: 0.1vw;
    }
        
    .rateplan-bottom-description-content-description-title {
        margin: 0 0 0.49vw;
    }
    
    .rateplan-bottom-description-content-description-title p {
        font-size: 1.17vw;
        line-height: 1.76vw;
    }
        
    .rateplan-bottom-description-content-description-line {
        height: 0.98vw;
        margin: 0 0 0.98vw;
        border: 0.1vw solid #000000;
        border-bottom: none;
    }
    
    .rateplan-bottom-description-content-description-price {
        height: 3.91vw;
        margin: 0 0 1.95vw;
        padding: 0 0.98vw;
    }
    
    .rateplan-bottom-description-content-description-price p {
        font-size: 1.37vw;
        line-height: 3.91vw;
    }
    
    .rateplan-bottom-description-content-description-price label {
        width: 10.55vw;
        height: 3.91vw;
        font-size: 1.37vw;
        line-height: 3.91vw;
    }
    
    .rateplan-bottom-description-content-description-price-line {
        height: 1.95vw;
        top: 4.88vw;
        left: 5.27vw;
        border-left: 0.1vw solid #005DAD;
        border-bottom: 0.1vw solid #005DAD;
    }
    
    .rateplan-bottom-description-content-description-price-line.line-1 {
        width: 1.95vw;
    }
    
    .rateplan-bottom-description-content-description-price-line.line-2 {
        width: 10.74vw;
    }
    
    .rateplan-bottom-description-content-description-text.line-1 {
        margin-left: 4.88vw;
    }
    
    .rateplan-bottom-description-content-description-text p {
        font-size: 1.37vw;
        line-height: 1.95vw;
    }
    
    .rateplan-bottom-description-content-note {
        margin: 0 0 2.93vw;
    }
    
    .rateplan-bottom-description-content-note p {
        font-size: 1.17vw;
        line-height: 1.76vw;
    }

    #flow {
        padding: 17.38vw 0;
    }
    
    .flow-title {
        margin: 0 0 3.91vw;
    }
    
    .flow-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    /*
    ul.flow-list::before {
        width: 1.95vw;
        height: calc(100% - 13.67vw);
        left: 2.44vw;
    }
    */
    
    ul.flow-list li {
        margin: 0 0 2.93vw;
    }
    
    .border-line {
        left: 2.44vw;
        top: 3.91vw;
        width: 1.95vw;
    }
    
    .flow-list-number {
        width: 6.84vw;
        height: 6.84vw;
        border-radius: 6.84vw;
    }
    
    .flow-list-number p {
        font-size: 3.125vw;
        line-height: 6.84vw;
    }
    
    .flow-list-text {
        width: 49.61vw;
    }
    
    .flow-list-text p {
        font-size: 2.34vw;
        line-height: 4.10vw;
    }
    
    .flow-list-image {
        width: 27.93vw;
    }
    
    #contactus {
        padding: 9.77vw 0;
    }
    
    .contactus-title {
        margin: 0 0 4.88vw;
    }
    
    .contactus-title h2 {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .contactus-title span {
        font-size: 3.71vw;
        line-height: 5.66vw;
    }
    
    .contactus-title img {
        width: 24.32vw;
    }
    
    ul.contactus-list {
        width: 70.3125vw;
        margin: 0 auto 4.88vw;
        column-gap: 4.88vw;
        row-gap: 1.95vw;
        border: 0.2vw solid #005DAD;
        padding: 3.42vw;
    }
    
    ul.contactus-list li {
        font-size: 1.76vw;
        line-height: 2.93vw;
    }
    
    ul.contactus-list li::before {
        width: 2.93vw;
        height: 2.93vw;
        margin: 0 0.98vw 0 0;
    }
    
    .contactus-button {
        margin: 0 0 4.88vw;
    }
    
    .contactus-button a {
        width: 48.83vw;
        height: 6.84vw;
        border-radius: 6.84vw;
        font-size: 1.76vw;
        line-height: 6.84vw;
    }
    
    .contactus-number {
        width: 70.3125vw;
        border-radius: 1.95vw;
        padding: 2.44vw;
    }
    
    .contactus-number-label p {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .contactus-number-text img {
        width: 3.91vw;
    }
    
    .contactus-number-text p {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    #footer {
        padding: 3.52vw 0;
    }
    
    .footer-note {
        margin: 0 0 1.95vw;
    }
    
    .footer-note p {
        font-size: 1.17vw;
        line-height: 1.66vw;
    }
    
    .footer-logo {
        width: 31.54vw;
        margin: 0 auto 2.93vw;
    }
        
    .footer-copyright p {
        font-size: 1.17vw;
        line-height: 1.66vw;
    }
    
    /* CONTACT PAGE */
    #contact {
        padding: 6.25vw 0 4.39vw;
    }
    
    .contact-content {
        width: 41.02vw;
    }
    
    .contact-title {
        margin: 0 0 2.93vw;
    }
    
    .contact-title h1 {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    .contact-title img {
        width: 12.40vw;
    }
    
    .contact-text {
        margin: 0 0 4.88vw;
    }
    
    .contact-text p {
        font-size: 1.56vw;
        line-height: 3.125vw;
    }
    
    .contact-number {
        border-radius: 1.95vw;
        padding: 1.95vw;
        margin: 0 0 4.88vw;
    }
    
    .contact-number-label p {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .contact-number-text img {
        width: 3.91vw;
    }
    
    .contact-number-text p {
        font-size: 3.71vw;
        line-height: 5.37vw;
    }
    
    .contact-list {
        border: 0.2vw solid #005DAD;
        border-radius: 1.95vw;
        padding: 2.34vw 3.52vw;
    }
    
    .contact-list-title {
        margin: 0 0 1.95vw;
    }
    
    .contact-list-title h2 {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .contact-list ul li {
        font-size: 1.37vw;
        line-height: 2.73vw;
    }
    
    .contact-form {
        width: 41.02vw;
    }
    
    .contact-form-text {
        margin: 0 0 1.95vw;
    }
    
    .contact-form-name {
        column-gap: 1.95vw;
    }
    
    .contact-form-input > input[type="text"],
    .contact-form-input > input[type="email"] {
        font-size: 1.56vw;
        line-height: 2.34vw;
        border: 0.05vw solid #000;
        padding: 1.27vw 1.95vw;
    }
    
    .contact-form-option {
        margin: 0 0 1.95vw;
    }
    
    .contact-form-option > .contact-form-label {
        margin: 0 0 0.98vw;
    }
    
    .contact-form-option > .contact-form-label > label {
        font-size: 1.76vw;
        line-height: 2.54vw;
    }
    
    .contact-form-option > .contact-form-input label {
        width: 17.58vw;
        font-size: 1.56vw;
        line-height: 1.95vw;
        margin: 0 1.95vw 1.46vw 0;
        padding-left: 2.93vw;
    }
    
    .checkmark {
        height: 1.95vw;
        width: 1.95vw;
        border: 0.05vw solid #000;
    }
    
    .checkmark:after {
        width: 0.98vw;
        height: 0.98vw;
    }
    
    .contact-form-textarea {
        margin: 0 0 1.95vw;
    }
    
    .contact-form-input > textarea {
        font-size: 1.56vw;
        line-height: 2.34vw;
        border: 0.05vw solid #000;
        padding: 1.27vw 1.95vw;
        height: 17.58vw;
    }
    
    .form-check {
        margin: 0 0 0.98vw;
    }
    
    .contact-agreement > label {
        font-size: 1.56vw;
        line-height: 1.95vw;
        padding-left: 2.93vw;
    }
    
    .contact-form-note {
        margin: 0 0 1.95vw;
    }
    
    .contact-form-note p {
        font-size: 1.37vw;
        line-height: 1.95vw;
    }
    
    input#submit {
        width: 17.58vw;
        height: 4.88vw;
        border-radius: 4.88vw;
        font-size: 1.37vw;
        line-height: 4.88vw;
    }
    
    button[type=submit] {
        width: 17.58vw;
        height: 4.88vw;
        border-radius: 4.88vw;
        font-size: 1.37vw;
        line-height: 4.88vw;
    }
    
    /* THANKS PAGE */
    
    #thanks {
        padding: 14.65vw 0 23.4375vw;
    }
    
    .thanks-title {
        margin: 0 0 4.88vw;
    }
    
    .thanks-title h2 {
        font-size: 3.71vw;
        line-height: 5.27vw;
    }
    
    .thanks-text {
        margin: 0 0 4.88vw;
    }
    
    .thanks-text p {
        font-size: 1.56vw;
        line-height: 3.125vw;
    }
    
    .thanks-button a {
        width: 17.58vw;
        height: 4.88vw;
        border-radius: 4.88vw;
        font-size: 1.37vw;
        line-height: 4.88vw;
    }
    
}

@media (max-width: 639px) {
    .kamiyomi-container {
        width: 84vw;
    }

    .header {
        height: 18.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .header-container {
        width: 84vw;
    }
    
    .navbar {
        height: 18.67vw;
    }
        
    .navbar-collapse {
        width: 100vw;
        height: calc(100vh - 18.67vw);
        background: #fff;
        margin: 0 -8vw;
        padding: 8vw;
    }
    
    .navbar-nav li {
        margin: 0 0 10.67vw;
    }

    .navbar-nav li:last-child {
        margin: 0;
    }

    .navbar-nav li a {
        font-size: 4.8vw;
        line-height: 6.93vw;
    }
    
    .navbar-nav li a.header-contact-button {
        width: 69.33vw;
        height: 13.33vw;
        border-radius: 13.33vw;
        font-size: 3.73vw;
        line-height: 13.33vw;
    }
    
    .navbar-brand {
        width: 32vw;
        padding: 6.13vw 0.67vw;
    }

    main {
        padding-top: 18.67vw;
    }

    #banner {
        padding: 8vw 0 12vw;
    }
    
    #banner .kamiyomi-container {
        width: 100vw;
    }
    
    .banner-top {
        display: block;
        margin: 0 0 5.33vw;
    }
    
    .banner-content {
        width: 65.33vw;
        padding-top: 0;
        margin: 0 auto;
    }
    
    .banner-title h1 {
        font-size: 9.87vw;
        line-height: 9.87vw;
    }
    
    .banner-number {
        width: 100%;
        margin: 0 0 4.8vw;
    }
    
    .banner-number p {
        font-size: 18.93vw;
        line-height: 18.93vw;
    }
    
    .banner-number span {
        font-size: 8.53vw;
        line-height: 12.27vw;
    }
    
    .banner-text p {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }
    
    .banner-image {
        width: 100%;
        right: 0;
    }
    
    .banner-image img {
        display: none;
    }

    .banner-image img.image-mobile {
        display: block;
    }
    
    .banner-bottom p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
        
    .banner-no1 {
        top: 92vw;
        left: 5.6vw;
        width: 24vw;
        height: 24vw;
        border-radius: 24vw;
    }
        
    .banner-no1-text p {
        font-size: 3.2vw;
        line-height: 3.73vw;
    }
    
    .banner-no1-text h2 {
        font-size: 8.27vw;
        line-height: 6.13vw;
    }
    
    .banner-no1-text span {
        font-size: 6.13vw;
        line-height: 6.13vw;
    }
    
    #sidebar {
        right: 8vw;
        bottom: 8vw;
        z-index: 98;
    }
    
    .sidebar-card {
        width: 50.67vw;
        height: 37.33vw;
        border-radius: 5.33vw;
        border: 0.27vw solid #8A9595;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        padding: 4vw 3vw;
    }
    
    .sidebar-text {
        margin: 0 0 2.67vw;
    }
    
    .sidebar-text p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .sidebar-button a {
        width: 40vw;
        height: 8vw;
        border-radius: 8vw;
        font-size: 3.2vw;
        line-height: 8vw;
    }
        
    .sidebar-close {
        width: 6.67vw;
        height: 6.67vw;
        border-radius: 6.67vw;
        top: 2.67vw;
        right: 2.67vw;
        padding: 2vw;
    }
    
    #problem {
        padding: 18.67vw 0 16vw;
    }
    
    .problem-title {
        margin: 0 0 8vw;
    }
    
    .problem-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    .problem-title img {
        width: 36vw;
    }
        
    .problem-text {
        margin: 0 0 18.67vw;
    }
    
    .problem-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .solution-title {
        width: 100%;
        height: 26.67vw;
        margin: 0 auto 9.6vw;
        position: relative;
        border-radius: 26.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        padding: 5.87vw 0;
    }
    
    .solution-title::after {
        border-left: 2.67vw solid transparent;
        border-right: 2.67vw solid transparent;
        border-top: 4vw solid #005DAD;
    }
    
    .solution-title h2 {
        font-size: 4.27vw;
        line-height: 7.47vw;
    }
    
    .problem-solution {
        display: block;
    }
    
    .solution-content {
        width: 100%;
        margin: 0 0 13.6vw;
    }
    
    .solution-content-title {
        margin: 0 0 5.33vw;
        text-align: center;
    }
    
    .solution-content-title p {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .solution-content-title h3 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    .solution-content-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .solution-image {
        width: 100%;
    }
    
    .solution-image h3 {
        font-size: 4.8vw;
        line-height: 8.53vw;
        margin: 0 0 2.67vw;
    }
    
    .solution-image p {
        font-size: 3.2vw;
        line-height: 5.87vw;
        margin: 0 0 2.67vw;
    }
    
    .solution-image img {
        width: 60.8vw;
    }
    
    #advantages {
        padding: 18.4vw 0;
    }
    
    .advantages-title {
        margin: 0 0 8vw;
    }
    
    .advantages-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
        
    ul.advantages-list {
        display: block;
    }
    
    ul.advantages-list li {
        width: 100%;
        margin: 0 0 5.33vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    ul.advantages-list li:last-child {
        margin: 0;
    }
    
    .advantages-list-image {
        width: 26.67vw;
        height: 26.67vw;
        border-radius: 26.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        margin: 0;
    }

    .advantages-list-content {
        width: 52.8vw;
    }
    
    .advantages-list-text p {
        font-size: 3.7vw;
        line-height: 7.4vw;
        text-align: left;
    }
    
    .advantages-list-note {
        margin: 2.67vw 0 0;
    }
    
    .advantages-list-note p {
        font-size: 3.2vw;
        line-height: 5.87vw;
        text-align: left;
    }
    
    #what {
        padding: 18.67vw 0;
    }
        
    ul.what-list li {
        margin: 0 0 10.67vw;
    }
        
    .what-list-title {
        width: 100%;
        height: 13.33vw;
        margin: 0 auto 9.6vw;
        border-radius: 13.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        padding: 2.4vw 0;
    }

    ul.what-list li:nth-child(3) .what-list-title,
    ul.what-list li:nth-child(4) .what-list-title,
    ul.what-list li:nth-child(5) .what-list-title,
    ul.what-list li:nth-child(7) .what-list-title {
        height: 26.67vw;
        border-radius: 26.67vw;
        padding: 4.8vw 0;
    }
    
    .what-list-title::after {
        border-left: 2.67vw solid transparent;
        border-right: 2.67vw solid transparent;
        border-top: 4vw solid #005DAD;
    }
    
    .what-list-title h2 {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
    
    .what-list-inner {
        display: block;
    }
    
    .what-list-content {
        width: 100%;
    }
    
    .what-list-content-title {
        margin: 0 0 5.33vw;
    }
    
    ul.what-list li:nth-child(3) .what-list-content-title {
        width: 100%;
    }
    
    .what-list-content-title p {
        font-size: 4.8vw;
        line-height: 8.53vw;
        text-align: center;
    }
    
    .what-list-content-title h3 {
        font-size: 6.4vw;
        line-height: 11.2vw;
        text-align: center;
    }
    
    .what-list-content-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
        
    .what-list-content-note {
        margin: 8.53vw 0 0;
    }
    
    .what-list-content-note p {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }

    .what-list-content-image {
        display: none;
    }

    .what-list-image {
        display: block;
        width: 61.6vw;
        margin: 0 auto 5.33vw;
        position: relative;
    }
    
    .what-list-image img {
        width: 100%;
    }
    
    .what-list-image-note {
        position: absolute;
        right: -11.2vw;
        bottom: 0;
        width: 24vw;
        height: 24vw;
        border-radius: 24vw;
        background-color: #F28D01;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .what-list-image-note p {
        width: 100%;
        font-weight: 700;
        font-size: 3.2vw;
        line-height: 4.8vw;
        color: #FFF;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    #why {
        padding: 18.4vw 0;
    }
    
    .why-title {
        margin: 0 0 8vw;
        justify-content: space-between;
    }
    
    .why-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    .why-title img {
        width: 53vw;
        margin-right: 0;
    }
    
    .why-title::before {
        width: 5.07vw;
        height: 11.2vw;
        margin: 0;
    }
    
    .why-title::after {
        width: 5.07vw;
        height: 11.2vw;
        margin: 0;
    }
    
    ul.why-list {
        row-gap: 5.33vw;
        width: 100%;
    }
    
    ul.why-list li {
        width: 39.2vw;
        height: 39.2vw;
        border-radius: 39.2vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    ul.why-list li p {
        font-size: 4.27vw;
        line-height: 7.47vw;
    }
    
    #why-bottom {
        padding: 30.4vw 0 13.6vw;
    }
    
    #why-bottom::before {
        border-top: 13.33vw solid #fef9f2;
    }
    
    .why-bottom-text {
        margin: 0 0 5.33vw;
    }
    
    .why-bottom-text p {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
    
    .why-bottom-highlight p {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    #easytouse {
        padding: 18.4vw 0;
    }
    
    .easytouse-title {
        margin: 0 0 10.4vw;
    }
    
    .easytouse-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
        
    ul.easytouse-list {
        display: block;
    }
    
    ul.easytouse-list li {
        width: 53.6vw;
        margin: 0 auto;
    }
    
    .easytouse-list-number {
        top: -2.67vw;
        left: 1.6vw;
        width: 10.67vw;
        height: 10.67vw;
        border-radius: 10.67vw;
    }
    
    .easytouse-list-number p {
        font-size: 4.8vw;
        line-height: 10.67vw;
    }
    
    .easytouse-list-title {
        top: -8vw;
        left: 0;
        width: 21.87vw;
        height: 21.87vw;
        border-radius: 21.87vw;
        border: 0.53vw solid #F28D01;
    }
    
    .easytouse-list-title p {
        font-size: 4.8vw;
        line-height: 21.87vw;
    }
    
    .easytouse-list-image {
        width: 48vw;
        border-radius: 5.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        margin: 0 0 5.33vw auto;
    }
    
    .easytouse-list-text p {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .easytouse-divider {
        border-left: 4vw solid transparent;
        border-right: 4vw solid transparent;
        border-top: 5.33vw solid #FCB049;
        border-bottom: none;
        margin: 5.33vw auto;
    }
    
    #rateplan {
        padding: 18.4vw 0;
    }
    
    .rateplan-title {
        margin: 0 0 8vw;
    }
    
    .rateplan-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    .rateplan-text {
        margin: 0 0 14.4vw;
    }
    
    .rateplan-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
        
    ul.rateplan-list > li {
        margin: 0 0 5.33vw;
    }
        
    .rateplan-list-title {
        width: 100%;
        height: 10.67vw;
        border: 0.27vw solid #000000;
        margin: 0 0 5.33vw;
        border-radius: 10.67vw;
    }
    
    .rateplan-list-title h3 {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .rateplan-list-title img {
        width: 8vw;
        margin-right: 1.33vw;
    }
    
    .rateplan-list-title span {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }
    
    .rateplan-list-card {
        width: 100%;
        border-radius: 5.33vw;
    }
    
    #trial-plan .rateplan-list-card {
        padding: 9.6vw 3.73vw;
    }
    
    #normal-plan .rateplan-list-card {
        padding: 9.6vw 3.73vw;
    }
    
    #pay-as-you-go .rateplan-list-card {
        padding: 9.6vw 3.73vw;
    }
    
    .rateplan-list-card-title h4 {
        font-size: 6.4vw;
        line-height: 9.6vw;
    }
    
    .rateplan-list-card-title span {
        font-size: 3.2vw;
        line-height: 9.6vw;
    }
    
    .rateplan-list-card-text {
        margin: 5.33vw 0 0;
    }
    
    .rateplan-list-card-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .rateplan-list-card ul {
        display: block;
        margin: 5.33vw 0 0;
    }
    
    .rateplan-list-card ul li {
        border-radius: 5.33vw;
        padding: 2.4vw 2.4vw 5.6vw;
        margin: 0 0 5.33vw;
    }
    
    #trial-plan .rateplan-list-card ul li {
        width: 100%;
    }
    
    #normal-plan .rateplan-list-card ul li {
        width: 100%;
    }
    
    #pay-as-you-go .rateplan-list-card ul li {
        width: 100%;
    }
    
    .rateplan-card-list-title p {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
    
    .rateplan-card-list-title span {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .rateplan-card-list-label {
        margin: 2.67vw auto 0;
        padding: 0.8vw 0;
        border-radius: 2.67vw;
    }
    
    #trial-plan .rateplan-card-list-label {
        width: 100%;
    }
        
    #normal-plan .rateplan-card-list-label {
        width: 100%;
    }
    
    #pay-as-you-go .rateplan-card-list-label {
        padding: 1.6vw 0;
        width: 100%;
    }
    
    .rateplan-card-list-label p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }

    #pay-as-you-go .rateplan-card-list-label {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }
    
    .rateplan-card-list-label p span {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }

    .rateplan-card-list-label p .span {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }
    
    .rateplan-card-list-price p {
        font-size: 10vw;
        line-height: 15vw;
    }
    
    .rateplan-card-list-price p span {
        font-size: 5vw;
        line-height: 15vw;
    }
    
    .rateplan-card-list-price > span {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }
    
    p.rateplan-card-list-note {
        margin: 1.33vw 0 0;
        font-size: 3.2vw;
        line-height: 5.87vw;
        text-align: left;
        letter-spacing: -0.1px;
        width: max-content;
        margin: 0 auto;
    }
    
    .rateplan-list-card ul li:last-child {
        margin: 0;
        display: block;
        padding: 4.27vw;
    }
    
    .rateplan-card-last-text-1 p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .rateplan-card-last-text-2 p {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }

    #trial-plan .rateplan-list-card ul li:nth-child(3) {
        display: block;
        margin: 0 0 5.33vw;
        padding: 4.27vw;
    }
    
    /* #trial-plan .rateplan-list-card ul li:nth-child(4),
    #trial-plan .rateplan-list-card ul li:nth-child(5),
    #trial-plan .rateplan-list-card ul li:nth-child(6) {
        width: 100%;
    }
    
    #trial-plan .rateplan-list-card ul li:nth-child(4) .rateplan-card-list-label,
    #trial-plan .rateplan-list-card ul li:nth-child(5) .rateplan-card-list-label,
    #trial-plan .rateplan-list-card ul li:nth-child(6) .rateplan-card-list-label {
        width: 100%;
    } */
        
    .rateplan-card-lastnew-title {
        margin: 0 0 2.67vw;
    }
    
    .rateplan-card-lastnew-title p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .rateplan-card-lastnew-list {
        column-gap: 4vw;
    }
    
    .rateplan-card-lastnew-text {
        width: 32vw;
        display: block;
    }
    
    .rateplan-card-lastnew-text label {
        width: 100%;
        font-size: 3.73vw;
        line-height: 8vw;
        border-radius: 1.33vw;
    }
    
    .rateplan-card-lastnew-text p {
        font-size: 6.4vw;
        line-height: 9.33vw;
    }
    
    .rateplan-card-lastnew-text p span {
        font-size: 4.27vw;
        line-height: 9.33vw;
    }

    #normal-plan .rateplan-list-card ul li:nth-child(4) {
        display: block;
        margin: 0 0 5.33vw;
        padding: 4.27vw;
    }
        
    .rateplan-card-last-text-price {
        column-gap: 4vw;
    }
    
    .rateplan-card-last-text-price p {
        font-size: 10.13vw;
        line-height: 15.47vw;
    }
    
    .rateplan-card-last-text-price span {
        font-size: 6.4vw;
        line-height: 15.47vw;
    }
    
    .rateplan-list-note {
        margin: 5.33vw 0 0;
    }
    
    .rateplan-list-note p {
        font-size: 3.2vw;
        line-height: 5.87vw;
    }

    .rateplan-bottom-description {
        margin: 8vw 0 0;
    }
    
    .rateplan-bottom-description-title {
        margin: 0 0 5.6vw;
        column-gap: 2.4vw;
    }
    
    .rateplan-bottom-description-title p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .rateplan-bottom-description-title::before,
    .rateplan-bottom-description-title::after {
        width: 10.4vw;
        height: 0.27vw;
    }
    
    .rateplan-bottom-description-content {
        width: 65.6vw;
    }
    
    .rateplan-bottom-description-content-header {
        display: block;
        margin: 0 0 4vw;
    }
    
    .rateplan-bottom-description-content-header label {
        width: 100%;
        font-size: 3.73vw;
        line-height: 8vw;
        border-radius: 1.33vw;
        margin: 0 0 4vw;
    }
    
    .rateplan-bottom-description-content-header p {
        font-size: 3.73vw;
        line-height: 7.47vw;
        width: 68vw;
    }
        
    .rateplan-bottom-description-content-detail {
        display: block;
        margin: 0 0 4vw;
    }
    
    .rateplan-bottom-description-content-bubble {
        width: 100%;
        min-width: 100%;
        border-radius: 2.67vw;
        padding: 3.2vw;
        margin: 0 0 8vw;
    }
    
    .rateplan-bottom-description-content-bubble::before {
        margin: 0 auto;
        top: auto;
        bottom: 0;
        border-top: 4vw solid #fff;
        border-bottom: none;
        left: 0;
        right: 0;
        transform: translate(0, 100%);
        border-right: 2vw solid transparent;
        border-left: 2vw solid transparent
    }
    
    .rateplan-bottom-description-content-bubble-text p {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }
    
    .rateplan-bottom-description-content-bubble-divider {
        margin: 1.6vw 0;
        height: 0.27vw;
    }
        
    .rateplan-bottom-description-content-description-title {
        margin: 0 0 1.6vw;
    }
    
    .rateplan-bottom-description-content-description-title p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }
        
    .rateplan-bottom-description-content-description-line {
        height: 2.67vw;
        margin: 0 0 1.6vw;
        border: 0.27vw solid #000000;
        border-bottom: none;
    }
    
    .rateplan-bottom-description-content-description-price {
        height: 10.67vw;
        margin: 0 0 3.2vw;
        padding: 0 1.6vw;
    }
    
    .rateplan-bottom-description-content-description-price p {
        font-size: 3.73vw;
        line-height: 10.67vw;
    }
    
    .rateplan-bottom-description-content-description-price label {
        width: 12.8vw;
        height: 10.67vw;
        font-size: 3.73vw;
        line-height: 10.67vw;
    }
    
    .rateplan-bottom-description-content-description-price-line {
        height: 8vw;
        top: 12vw;
        left: 6.4vw;
        border-left: 0.27vw solid #005DAD;
        border-bottom: 0.27vw solid #005DAD;
    }
    
    .rateplan-bottom-description-content-description-price-line.line-1 {
        width: 5.33vw;
    }
    
    .rateplan-bottom-description-content-description-price-line.line-2 {
        width: 5.33vw;
    }

    .rateplan-bottom-description-content-description-text {
        width: 56vw;
    }
    
    .rateplan-bottom-description-content-description-text.line-1 {
        margin-left: 13.6vw;
    }

    .rateplan-bottom-description-content-description-text.line-2 {
        margin-left: 13.5vw;
    }
    
    .rateplan-bottom-description-content-description-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
        text-align: left;
    }

    .rateplan-bottom-description-content-description-text p span {
        display: block;
    }
        
    .rateplan-bottom-description-content-note {
        margin: 0 0 5.6vw;
    }
    
    .rateplan-bottom-description-content-note p {
        font-size: 3.2vw;
        line-height: 4.8vw;
    }

    #flow {
        padding: 18.4vw 0;
    }
    
    .flow-title {
        margin: 0 0 8vw;
    }
    
    .flow-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    /*   
    ul.flow-list::before {
        width: 2.67vw;
        height: 190vw;
        left: 2.67vw;
        top: 1vw;
        margin: 0;
    }
    */
    
    ul.flow-list li {
        margin: 0 0 5.33vw;
        align-items: flex-start;
    }
    
    .border-line {
        left: 2.67vw;
        top: 6vw;
        width: 2.67vw;
    }
    
    .flow-list-number {
        width: 8vw;
        height: 8vw;
        border-radius: 8vw;
    }
    
    .flow-list-number p {
        font-size: 3.73vw;
        line-height: 8vw;
    }
    
    .flow-list-text {
        width: 44.8vw;
    }
    
    .flow-list-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .flow-list-image {
        width: 24vw;
    }
        
    #contactus {
        padding: 18.4vw 0;
    }
    
    .contactus-title {
        margin: 0 0 8vw;
    }
    
    .contactus-title h2 {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .contactus-title span {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    
    .contactus-title img {
        width: 36vw;
    }
    
    ul.contactus-list {
        width: 100%;
        margin: 0 auto 8vw;
        display: block;
        border: 0.27vw solid #005DAD;
        padding: 7.2vw;
    }
    
    ul.contactus-list li {
        font-size: 4.27vw;
        line-height: 8.53vw;
        justify-content: center;
        align-items: center;
        margin: 0 0 2.67vw;
    }

    ul.contactus-list li:last-child {
        margin: 0;
    }
    
    ul.contactus-list li::before {
        width: 5.33vw;
        height: 5.33vw;
        margin: 0 2.67vw 0 0;
    }
    
    .contactus-button {
        margin: 0 0 8vw;
    }
    
    .contactus-button a {
        width: 69.33vw;
        height: 13.33vw;
        border-radius: 13.33vw;
        font-size: 4.27vw;
        line-height: 13.33vw;
    }
        
    .contactus-number {
        width: 100%;
        border-radius: 5.33vw;
        padding: 8vw;
    }
    
    .contactus-number-label p {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
        
    .contactus-number-text img {
        width: 8vw;
        margin-right: 1.6vw;
    }
    
    .contactus-number-text p {
        font-size: 8.53vw;
        line-height: 13.33vw;
    }

    #footer {
        padding: 8vw 0;
    }
    
    .footer-note {
        margin: 0 0 5.33vw;
    }
    
    .footer-note p {
        font-size: 3.2vw;
        line-height: 5.87vw;
        text-align: left;
    }
    
    .footer-logo {
        width: 45.33vw;
        margin: 0 auto 5.33vw;
    }
        
    .footer-copyright p {
        font-size: 2.67vw;
        line-height: 4vw;
    }
    
    /* CONTACT PAGE */
    #contact {
        padding: 13.33vw 0;
    }
    
    #contact .kamiyomi-container {
        display: block;
    }
    
    .contact-content {
        width: 100%;
    }
    
    .contact-title {
        margin: 0 0 8vw;
        display: block;
    }
    
    .contact-title h1 {
        font-size: 6.4vw;
        line-height: 9.6vw;
        text-align: center;
    }
    
    .contact-title img {
        display: none;
    }
    
    .contact-text {
        margin: 0 0 8vw;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .contact-text p {
        width: 52.53vw;
        font-size: 3.73vw;
        line-height: 7.47vw;
    }

    .contact-text img {
        padding-top: 0.8vw;
        display: block;
        width: 24vw;
        transform: rotate(5deg);
    }
    
    .contact-number {
        border-radius: 5.33vw;
        padding: 8vw;
        margin: 0 0 8vw;
    }
    
    .contact-number-label p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .contact-number-text img {
        width: 8vw;
    }
    
    .contact-number-text p {
        font-size: 8.53vw;
        line-height: 12.27vw;
    }
    
    .contact-list {
        border: 0.53vw solid #005DAD;
        border-radius: 5.33vw;
        padding: 7.2vw 10vw;
        margin: 0 0 8vw;
    }
    
    .contact-list-title {
        margin: 0 0 2.4vw;
    }
    
    .contact-list-title h2 {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
        
    .contact-list ul li {
        font-size: 3.73vw;
        line-height: 7.47vw;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-form-text {
        margin: 0 0 8vw;
    }
    
    .contact-form-name {
        display: block;
    }
    
    .contact-form-input > input[type="text"],
    .contact-form-input > input[type="email"] {
        font-size: 4.27vw;
        line-height: 6.4vw;
        border: 0.13vw solid #000;
        padding: 3.47vw 5.33vw;
    }
    
    .contact-form-option {
        margin: 0 0 8vw;
    }
    
    .contact-form-option > .contact-form-label {
        margin: 0 0 2.67vw;
    }
    
    .contact-form-option > .contact-form-label > label {
        font-size: 4.8vw;
        line-height: 6.93vw;
    }
    
    .contact-form-option > .contact-form-input {
        display: block;
    }
    
    .contact-form-option > .contact-form-input label {
        width: 100%;
        font-size: 4.27vw;
        line-height: 5.33vw;
        margin: 0 0 4vw;
        padding-left: 8vw;
    }
        
    .checkmark {
        height: 5.33vw;
        width: 5.33vw;
        border: 0.13vw solid #000;
    }
    
    .checkmark:after {
        width: 2.67vw;
        height: 2.67vw;
    }
    
    .contact-form-textarea {
        margin: 0 0 8vw;
    }
    
    .contact-form-input > textarea {
        width: 100%;
        font-size: 4.27vw;
        line-height: 6.4vw;
        border: 0.13vw solid #000;
        padding: 3.47vw 5.33vw;
        height: 48vw;
      }
    
    .form-check {
        padding: 0;
        margin: 0 0 8vw 5.6vw;
    }
    
    .contact-agreement > label {
        font-size: 4.27vw;
        line-height: 5.33vw;
        padding-left: 8vw;
    }
        
    .contact-form-note {
        margin: 0 0 8vw;
    }
    
    .contact-form-note p {
        font-size: 3.73vw;
        line-height: 7.47vw;
        text-align: center;
    }
        
    input#submit {
        width: 58.67vw;
        height: 13.33vw;
        border-radius: 13.33vw;
        font-size: 4.27vw;
        line-height: 13.33vw;
    }
    
    button[type=submit] {
        width: 58.67vw;
        height: 13.33vw;
        border-radius: 13.33vw;
        font-size: 4.27vw;
        line-height: 13.33vw;
    }
    
    /* THANKS PAGE */
    
    #thanks {
        padding: 13.33vw 0;
    }
    
    .thanks-title {
        margin: 0 0 13.33vw;
    }
    
    .thanks-title h2 {
        font-size: 6.4vw;
        line-height: 11.2vw;
    }
    
    .thanks-text {
        margin: 0 0 13.33vw;
    }
    
    .thanks-text p {
        font-size: 3.73vw;
        line-height: 7.47vw;
        text-align: left;
    }
    
    .thanks-button a {
        width: 58.67vw;
        height: 13.33vw;
        border-radius: 13.33vw;
        font-size: 4.27vw;
        line-height: 13.33vw;
    }

    .split-mobile {
        display: block;
    }

    .split-desktop {
        display: none;
    }

    .mobile-only {
        display: inline-block;
        line-height: 1px !important;
        height: 1px;
        width: 3.2vw;
    }

    .desktop-only {
        display: none;
    }
    
}