@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', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
    font-size: 18px;
}

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

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

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

.image-mobile {
    display: none;
}

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

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

.header-container {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 200px;
    padding: 5px 0;
    display: block;
}

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

ul.header-menu {
    display: flex;
    list-style: none;
    column-gap: 15px;
}

.header-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 65px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    position: relative;
    transition: all .3s;
}

ul.header-menu li:last-child .header-menu-button {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

.header-menu-button:hover {
    border-bottom: 0px solid #D25A00;
}

ul.header-menu li:last-child .header-menu-button:hover {
    border-bottom: 0px solid #004270;
}

.header-menu-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.header-menu-logo img {
    width: 100%;
}

.header-menu-text span {
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
}

.header-menu-text p {
    display: block;
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

#toppage {
    padding-top: 100px;
}

.monit-container {
    width: 1320px;
    margin: 0 auto;
    position: relative;
}

#banner {
    background: url(../assets/banner-bg.png);
    background-size: 1920px;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 110px 0 0;
    position: relative;
}

.banner-content {
    width: 620px;
    position: relative;
    z-index: 2;
}

.banner-title {
    margin: 0 0 24px;
}

.banner-title h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 75px;
    color: #000000;
    text-align: center;
}

.banner-logo {
    width: 507px;
    margin: 0 auto 32px;
}

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

.banner-text {
    margin: 0 0 144px;
}

.banner-text p {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    text-align: center;
}

.banner-image {
    width: 564px;
    margin: 0;
}

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

.banner-no1 {
    width: 211px;
    transform: rotate(-7deg);
    position: absolute;
    top: 113px;
    right: 348px;
}

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

.gradient-bottom {
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0), #FFF);
}

#solution {
    padding: 230px 0 190px;
    position: relative;
    background: linear-gradient(#FFFFFF, #E7F1F8);
}

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

.solution-text p {
    font-weight: 900;
    font-size: 38px;
    line-height: 62px;
    color: #000000;
    text-align: center;
}

.solution-text span {
    font-size: 48px;
    line-height: 62px;
    color: #006AB2;
}

.solution-title {
    margin: 0 0 52px;
}

.solution-title h2 {
    font-weight: 900;
    font-size: 38px;
    line-height: 62px;
    color: #000000;
    text-align: center;
}

.solution-title span {
    font-size: 60px;
    line-height: 62px;
    color: #006AB2;
}

.dots-above {
    position: relative;
}

.dots-above::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #006AB2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.solution-arrow {
    width: 84px;
    margin: 0 auto 50px;
}

.solution-arrow img {
    width: 100%;
}

ul.solution-button {
    display: flex;
    justify-content: space-between;
    width: 1050px;
    margin: 0 auto;
    list-style: none;
}

ul.solution-button li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.2s;
}

ul.solution-button li:last-child a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

.solution-button li a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.solution-button li:last-child a:hover {
    border-bottom: 0px solid #004270;
}

.solution-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.solution-button-logo img {
    width: 100%;
}

.solution-button-text {
    display: flex;
    align-items: center;
}

.solution-button-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0 5px 0 0;
}

.solution-button-text p {
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

#opportunity {
    padding: 156px 0 96px;
    position: relative;
    background: linear-gradient(#FFFFFF, #E7F1F8);
}

.opportunity-icon {
    width: 70px;
    margin: 0 auto 5px;
}

.opportunity-icon img {
    width: 100%;
}

.opportunity-title {
    margin: 0 0 52px;
}

.opportunity-title h2 {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #000;
    text-align: center;
}

.opportunity-title span {
    font-size: 50px;
    line-height: 60px;
}

ul.opportunity-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 0 150px;
}

ul.opportunity-list li {
    width: 400px;
}

.opportunity-list-image {
    width: 100%;
    margin: 0 0 30px;
    background: rgba(126, 122, 157, 0.1);
    border-radius: 100%;
}

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

.opportunity-list-text p {
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    color: #000;
    text-align: center;
}

.opportunity-chart {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}

.opportunity-chart-left {
    width: 540px;
}

.opportunity-chart-bubble {
    width: 500px;
    height: 243px;
    background: rgba(188, 72, 72, 0.1);
    position: relative;
    margin: 0 auto 60px;
}

.opportunity-chart-bubble p {
    width: 100%;
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #000;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.opportunity-chart-bubble span {
    font-size: 50px;
    line-height: 60px;
    color: #BC4848;
}

.opportunity-chart-bubble::before {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    left: -10px;
    top: -10px;
    background: url('../assets/opportunity-chart-bubble-before.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.opportunity-chart-bubble::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 57px solid rgba(188, 72, 72, 0.1);
}

.opportunity-chart-text p {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #000;
    text-align: center;
}

.opportunity-time {
    height: 160px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 75%, #FFF7BE 75%, #FFF7BE 100%);
}

.opportunity-time p {
    font-weight: 700;
    font-size: 48px;
    line-height: 160px;
    color: #000;
    text-align: center;
}

.opportunity-time span {
    font-weight: 900;
    font-size: 160px;
    line-height: 160px;
    color: #BC4848;
}

.opportunity-chart-right {
    width: 650px;
}

.opportunity-chart-image {
    width: 650px;
    position: relative;
}

.opportunity-chart-image img {
    width: 100%;
}

.opportunity-chart-image p {
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.opportunity-bubble {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 45px;
    width: 996px;
}

.opportunity-bubble-image {
    width: 345px;
}

.opportunity-bubble-image img {
    width: 100%;
}

.opportunity-bubble-text {
    width: 600px;
    height: 150px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.opportunity-bubble-text p {
    width: 100%;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: #000;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.opportunity-challenge {
    width: 1050px;
    margin: 0 auto;
    background: #E9E8EB;
    border-radius: 30px;
    padding: 0 0 60px;
}

.opportunity-bubble-title {
    width: 950px;
    height: 90px;
    margin: 0 auto -15px;
    padding: 15px;
    position: relative;
    background: #434343;
    border-radius: 90px;
    top: -45px;
}

.opportunity-bubble-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #FFF;
    text-align: center;
}

.opportunity-bubble-title::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #434343;
}

ul.opportunity-challenge-list {
    display: flex;
    justify-content: center;
    column-gap: 120px;
    list-style: none;
}

ul.opportunity-challenge-list li {
    width: max-content;
}

.opportunity-challenge-list-image {
    width: 300px;
    border-radius: 100%;
    background: #fff;
    margin: 0 auto 20px;
}

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

.opportunity-challenge-list-text p {
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    color: #000;
    text-align: center;
}

.opportunity-bubble:last-child {
    margin: -36px auto 0;
}

.opportunity-bubble-text:first-child::before {
    left: auto;
    right: 0;
    transform: translate(100%, 0);
    border-right: none;
    border-left: 40px solid #fff;
}

.opportunity-bubble-text span {
    color: #006AB2;
}

#opportunity-bottom {
    padding: 170px 0 114px;
    position: relative;
    background: #006AB2;
}

#opportunity-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: 90px solid #E7F1F8;
}

.opportunity-bottom {
    display: flex;
    justify-content: center;
    align-items: end;
}

.opportunity-bottom img {
    width: 275px;
    margin: 0 9px 0 0;
}

.opportunity-bottom p {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #fff;
    text-align: center;
}

.opportunity-bottom span {
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
}

.opportunity-bottom h2 {
    font-weight: 900;
    font-size: 80px;
    line-height: 116px;
    color: #F8E979;
    text-align: center;
}

#work {
    padding: 210px 0 234px;
    position: relative;
    background: #FFF;
}

.work-title {
    margin: 0 0 126px;
}

.work-title p {
    font-weight: 900;
    font-size: 38px;
    line-height: 70px;
    color: #000;
    text-align: center;
}

.work-title h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 70px;
    color: #000;
    text-align: center;
}

.work-title span {
    font-size: 48px;
    line-height: 70px;
    color: #006AB2;
}

ul.work-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 0 200px;
}

ul.work-list li {
    width: 400px;
    position: relative;
}

ul.work-list li::before {
    content: '';
    width: 67px;
    height: 45px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -50px;
    background: url('../assets/work-list-before.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.work-list-title {
    width: 100%;
    height: 100px;
    margin: 0 0 48px;
    background-color: #fff;
    border: 3px solid #0069B0;
    border-radius: 20px;
    position: relative;
}

.work-list-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #0069B0;
}

.work-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: 24px solid #FFF;
}

.work-list-title h3 {
    font-weight: 900;
    font-size: 50px;
    line-height: 94px;
    color: #0069B0;
    text-align: center;
}

.work-list-image {
    width: 100%;
}

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

.work-button-title {
    width: 690px;
    height: 90px;
    margin: 0 auto 72px;
    background-color: #fff;
    border: 3px solid #0069B0;
    border-radius: 90px;
    position: relative;
}

.work-button-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #0069B0;
}

.work-button-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: 24px solid #FFF;
}

.work-button-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84px;
    color: #0069B0;
    text-align: center;
}

ul.work-button {
    display: flex;
    justify-content: space-between;
    width: 1050px;
    margin: 0 auto 200px;
    list-style: none;
}

ul.work-button li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.2s;
}

ul.work-button li:last-child a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

ul.work-button li a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.work-button li:last-child a:hover {
    border-bottom: 0px solid #004270;
}

.work-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.work-button-logo img {
    width: 100%;
}

.work-button-text {
    display: flex;
    align-items: center;
}

.work-button-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0 5px 0 0;
}

.work-button-text p {
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

.work-detail-title {
    margin: 0 auto 102px;
	display: flex;
	width: max-content;
	align-items: end;
}

.work-detail-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 70px;
    color: #000;
    text-align: center;
    margin: 0;
}

.work-detail-title span {
	font-size: 48px;
    line-height: 70px;
    color: #006AB2;
}

.work-detail-title::before {
    content: "";
    display: block;
    background: url("../assets/text-before.svg") no-repeat;
    background-size: contain;
    width: 70px;
    height: 107px;
    margin: 0 21px 0 0;
}

.work-detail-title::after {
    content: "";
    display: block;
    background: url("../assets/text-after.svg") no-repeat;
    background-size: contain;
    width: 70px;
    height: 107px;
    margin: 0 0 0 21px;
}

ul.work-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

ul.work-detail li {
    width: 550px;
    padding: 0 0 33px;
    border-radius: 30px;
    position: relative;
}

ul.work-detail li:first-child {
    background: rgba(87, 133, 206, 0.1);
}

ul.work-detail li:last-child {
    background: rgba(93, 175, 199, 0.1);
}

.work-detail-header {
    width: 200px;
    height: 80px;
    margin: 0 auto -36px;
    padding: 10px;
    position: relative;
    border-radius: 80px;
    top: -42px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

ul.work-detail li:first-child .work-detail-header {
    background:  #5785CE;
}

ul.work-detail li:last-child .work-detail-header {
    background:  #5DAFC7;
}

.work-detail-header h4 {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #FFF;
    text-align: center;
}

.work-detail-header::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 12.5px solid transparent;
    border-right: 12.5px solid transparent;
}

ul.work-detail li:first-child .work-detail-header::after {
    border-top: 20px solid #5785CE;
}

ul.work-detail li:last-child .work-detail-header::after {
    border-top: 20px solid #5DAFC7;
}

.work-detail-image {
    width: 400px;
    margin: 0 auto 30px;
}

.work-detail-image img {
    width: 100%;
}

.work-detail-text p {
    font-weight: 700;
    font-size: 38px;
    line-height: 54px;
    color: #000;
    text-align: center;
}

ul.work-detail li:first-child .work-detail-text span {
    color: #5785CE;
}

ul.work-detail li:last-child .work-detail-text span {
    color: #5DAFC7;
}

.work-detail-divider {
    width: 200px;
}

.work-detail-divider img {
    width: 100%;
}

.work-detail-note {
    background: #fff;
    width: 204px;
    height: 204px;
    border-radius: 204px;
    position: absolute;
    bottom: 102px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

ul.work-detail li:first-child .work-detail-note {
    border: 2px solid #5785CE;
    left: -75px;
}

ul.work-detail li:last-child .work-detail-note {
    border: 2px solid #5DAFC7;
    right: -75px;
}

.work-detail-note p {
    width: 100%;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

ul.work-detail li:first-child .work-detail-note p {
    color: #5785CE;
}

ul.work-detail li:last-child .work-detail-note p {
    color: #5DAFC7;
}

#amazing {
    padding: 168px 0;
    position: relative;
    background: linear-gradient(rgba(99, 134, 214, 0.1), #ffffff, rgba(98, 193, 186, 0.1));
}

.amazing-title {
    margin: 0 0 102px;
}

.amazing-title h2 {
    font-weight: 900;
    font-size: 58px;
    line-height: 82px;
    color: #000;
    text-align: center;
}

.amazing-title span {
    font-size: 70px;
    line-height: 82px;
    color: #006AB2;
}

#amazing-onsite {
    margin: 0 0 180px;
}

.amazing-detail-title {
    width: 700px;
    height: 90px;
    margin: 0 auto 70px;
    padding: 15px;
    position: relative;
    border-radius: 90px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    display: flex;
    justify-content: center;
}

#amazing-onsite .amazing-detail-title {
    background:  #5785CE;
}

#amazing-management .amazing-detail-title {
    background:  #5DAFC7;
}

.amazing-detail-title::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 12.5px solid transparent;
    border-right: 12.5px solid transparent;
}

#amazing-onsite .amazing-detail-title::after {
    border-top: 20px solid #5785CE;
}

#amazing-management .amazing-detail-title::after {
    border-top: 20px solid #5DAFC7;
}

.amazing-detail-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #FFF;
    text-align: center;
}

.amazing-detail-title span {
    font-size: 48px;
    line-height: 60px;
}

.amazing-detail-title p {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #F8E979;
    text-align: center;
}

ul.amazing-detail-list {
    list-style: none;
    width: 1130px;
    margin: 0 auto 190px;
}

ul.amazing-detail-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 50px;
    padding-left: 51px;
}

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

.amazing-detail-list-image {
    width: 500px;
    position: relative;
    background: #fff;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

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

.amazing-detail-list-note {
    width: 150px;
    height: 150px;
    border-radius: 150px;
    position: absolute;
    bottom: -10px;
    left: -51px;
    transform: rotate(-10deg);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

#amazing-onsite .amazing-detail-list-note {
    background: #5785CE;
}

#amazing-management .amazing-detail-list-note {
    background: #5DAFC7;
}

.amazing-detail-list-note p {
    width: 100%;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.amazing-detail-list-content {
    width: 520px;
}

.amazing-detail-list-number {
    width: 120px;
    height: 60px;
    background: #fff;
    border-radius: 60px;
    padding: 15px 0;
    margin: 0 0 30px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.amazing-detail-list-number p {
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    text-align: center; 
}

#amazing-onsite .amazing-detail-list-number p {
    color: #5785CE;
}

#amazing-management .amazing-detail-list-number p {
    color: #5DAFC7;
}

.amazing-detail-list-number span {
    font-size: 30px;
    line-height: 30px;
}

.amazing-detail-list-title {
    margin: 0 0 30px;
}

.amazing-detail-list-title h4 {
    font-weight: 700;
    font-size: 38px;
    line-height: 54px;
    color: #000;
}

#amazing-onsite .amazing-detail-list-title span {
    color: #5785CE;
}

#amazing-management .amazing-detail-list-title span {
    color: #5DAFC7;
}

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

.amazing-button-title {
    width: 690px;
    height: 90px;
    margin: 0 auto 72px;
    background-color: #fff;
    border: 3px solid #0069B0;
    border-radius: 90px;
    position: relative;
}

.amazing-button-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #0069B0;
}

.amazing-button-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: 24px solid #FFF;
}

.amazing-button-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84px;
    color: #0069B0;
    text-align: center;
}

ul.amazing-button {
    display: flex;
    justify-content: space-between;
    width: 1050px;
    margin: 0 auto;
    list-style: none;
}

ul.amazing-button li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.3s;
}

ul.amazing-button li:last-child a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

ul.amazing-button li a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.amazing-button li:last-child a:hover {
    border-bottom: 0px solid #004270;
}

.amazing-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.amazing-button-logo img {
    width: 100%;
}

.amazing-button-text {
    display: flex;
    align-items: center;
}

.amazing-button-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0 5px 0 0;
}

.amazing-button-text p {
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

#review {
    padding: 267px 0 120px;
    position: relative;
    background: #fff;
}

#review::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: 90px solid rgba(93, 175, 199, 0.1);
}

.review-title {
    margin: 0 0 51px;
}

.review-title h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 70px;
    color: #006AB2;
    text-align: center;
}

.review-title span {
    font-size: 38px;
    line-height: 70px;
    color: #000;
}

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

ul.review-list li {
    width: 600px;
    padding: 51px 60px 63px;
    border: 2px solid #006AB2;
    border-radius: 30px;
    background: #fff;
}

.review-list-info {
    margin: 0 0 30px;
}

.review-list-info p {
    font-weight: 900;
    font-size: 30px;
    line-height: 48px;
    color: #000;
    text-align: center;
}

.review-list-image {
    width: 250px;
    margin: 0 auto 30px;
    border-radius: 250px;
    background: #E7F1F8;
}

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

.review-list-title {
    margin: 0 0 48px;
}

.review-list-title h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 48px;
    color: #006AB2;
    text-align: center;
}

.review-text h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #000;
    text-align: center;
    margin: 0 0 15px;
}

.review-text p {
    font-weight: 500;
    font-size: 22px;
    line-height: 38px;
    color: #000;
    margin: 0 0 39px;
}

.review-text span {
    font-weight: 700;
    color: #006AB2;
}

.review-text p:last-child {
    margin: 0;
}

#rateplan {
    padding: 270px 0;
    position: relative;
    background: linear-gradient(#fff, #EAF3F9, #fff);
}

.rateplan-title {
    width: 300px;
    height: 70px;
    margin: 0 auto 39px;
    position: relative;
    border-radius: 70px;
    background: #006AB2;
}

.rateplan-title h2 {
    font-weight: 900;
    font-size: 38px;
    line-height: 70px;
    color: #FFFFFF;
    text-align: center;
}

.rateplan-number {
    width: 1000px;
    margin: 0 auto 27px;
    display: flex;
    justify-content: center;
    align-items: end;
    column-gap: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 75%, #FFF7BE 75%, #FFF7BE 100%);
}

.rateplan-number p {
    font-weight: 900;
    font-size: 60px;
    line-height: 120px;
    color: #000;
    text-align: center;
}

.rateplan-number h3 {
    font-weight: 900;
    font-size: 200px;
    line-height: 200px;
    color: #006AB2;
    text-align: center;
}

.rateplan-number span {
    font-size: 140px;
    line-height: 200px;
}

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

.rateplan-text p {
    font-weight: 700;
    font-size: 38px;
    line-height: 54px;
    color: #000;
    text-align: center;
}

.rateplan-button-title {
    width: 690px;
    height: 90px;
    margin: 0 auto 72px;
    background-color: #fff;
    border: 3px solid #0069B0;
    border-radius: 90px;
    position: relative;
}

.rateplan-button-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #0069B0;
}

.rateplan-button-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: 24px solid #FFF;
}

.rateplan-button-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84px;
    color: #0069B0;
    text-align: center;
}

ul.rateplan-button {
    display: flex;
    justify-content: space-between;
    width: 1050px;
    margin: 0 auto;
    list-style: none;
}

ul.rateplan-button li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.3s;
}

ul.rateplan-button li:last-child a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

ul.rateplan-button li a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.rateplan-button li:last-child a:hover {
    border-bottom: 0px solid #004270;
}

.rateplan-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.rateplan-button-logo img {
    width: 100%;
}

.rateplan-button-text {
    display: flex;
    align-items: center;
}

.rateplan-button-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0 5px 0 0;
}

.rateplan-button-text p {
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

#introduce {
    padding: 132px 0 45px;
    position: relative;
    background: #fff;
}

.introduce-title {
    width: 1000px;
    margin: 0 auto 50px;
}

.introduce-title p {
    font-weight: 900;
    font-size: 38px;
    line-height: 54px;
    color: #000;
    text-align: center;
}

.introduce-title h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 87px;
    color: #000;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 60%, #FFF7BE 60%, #FFF7BE 100%)
}

.introduce-title span {
    font-size: 60px;
    line-height: 87px;
    color: #006AB2;
}

.introduce-image {
    width: 1260px;
    margin: 0 auto 165px;
}

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

.introduce-bubble {
    width: 950px;
    height: 90px;
    margin: 0 auto 60px;
    padding: 15px;
    position: relative;
    border-radius: 90px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background:  #434343;
}

.introduce-bubble::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #434343;
}

.introduce-bubble p {
    font-weight: 900;
    font-size: 38px;
    line-height: 60px;
    color: #FFF;
    text-align: center;
}

.introduce-bubble span {
    color: #F8E979;
}

.introduce-subtitle p {
    font-weight: 900;
    font-size: 58px;
    line-height: 82px;
    color: #000;
    text-align: center;
}

.introduce-subtitle span {
    font-size: 70px;
    line-height: 82px;
    color: #006AB2;
}

#flow {
    padding: 231px 0 192px;
    position: relative;
    background: #E7F1F8;
}

#flow::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: 90px solid #FFF;
}

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

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

.flow-title span {
    font-size: 48px;
    line-height: 70px;
    color: #006AB2;
}

.flow-text {
    margin: 0 0 69px;
}

.flow-text p {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #000;
    text-align: center;
}

ul.flow-list {
    width: 1206px;
    margin: 0 auto 70px;
    list-style: none;
    position: relative;
}

ul.flow-list::before {
    content: '';
    background: #99C3DF;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 500px;
}

ul.flow-list li {
    width: 1050px;
    height: 250px;
    margin: 0 0 80px;
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 42px 48px;
}

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

.flow-list-title {
    margin: 0 0 21px;
}

.flow-list-title h3 {
    font-weight: 700;
    font-size: 38px;
    line-height: 54px;
    color: #006AB2;
}

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

.flow-list-image {
    width: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

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

.flow-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 100%;
    background: #006AB2;
}

.flow-image img {
    width: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flow-image::after {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 38px solid #E7F1F8;
    border-right: 38px solid #E7F1F8;
    border-top: 50px solid transparent;
}

.flow-bubble {
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 990px;
}

.flow-bubble-image {
    width: 350px;
}

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

.flow-bubble-text {
    width: 600px;
    height: 150px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.flow-bubble-text p {
    width: 100%;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: #000;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flow-bubble-text::before{
    content: '';
    width: 67px;
    height: 45px;
    position: absolute;
    left: -42px;
    top: -42px;
    background: url('../assets/flow-bubble-before.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.flow-bubble-text::after{
    content: '';
    margin: auto 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate(100%, 0);
    border-left: 40px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.flow-button-title {
    width: 690px;
    height: 90px;
    margin: 0 auto 72px;
    background-color: #fff;
    border: 3px solid #0069B0;
    border-radius: 90px;
    position: relative;
}

.flow-button-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #0069B0;
}

.flow-button-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: 24px solid #FFF;
}

.flow-button-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84px;
    color: #0069B0;
    text-align: center;
}

ul.flow-button {
    display: flex;
    justify-content: space-between;
    width: 1050px;
    margin: 0 auto;
    list-style: none;
}

ul.flow-button li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    border-radius: 10px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.3s;
}

ul.flow-button li:last-child a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

ul.flow-button li a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.flow-button li:last-child a:hover {
    border-bottom: 0px solid #004270;
}

.flow-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.flow-button-logo img {
    width: 100%;
}

.flow-button-text {
    display: flex;
    align-items: center;
}

.flow-button-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0 5px 0 0;
}

.flow-button-text p {
    font-weight: 900;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

#faq {
    padding: 270px 0 195px;
    position: relative;
    background: #FFF;
}

#faq::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: 90px solid #E7F1F8;;
}

.faq-icon {
    width: 80px;
    margin: 0 auto;
}

.faq-icon img {
    width: 100%;
}

.faq-title {
    margin: 0 0 42px;
    display: flex;
    justify-content: center;
}

.faq-title p {
    font-weight: 900;
    font-size: 38px;
    line-height: 70px;
    color: #000;
    text-align: center;
}

.faq-title h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 70px;
    color: #006AB2;
    text-align: center;
}

.faq-title span {
    font-size: 38px;
    line-height: 70px;
}

ul.faq-list {
    list-style: none;
    width: 1120px;
    margin: 0 auto;
}

ul.faq-list li {
    margin: 0 0 39px;
}

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

.faq-question {
    display: flex;
    margin: 0 0 39px;
    justify-content: space-between;
    align-items: center;
}

.faq-question-text {
    width: 850px;
    background: rgba(113, 143, 147, 0.1);
    border-radius: 20px;
    position: relative;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    padding: 30px;
}

.faq-question-text p {
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: #000;
    text-align: center;
}

.faq-question-text span {
    color: #0069B0;
}

.faq-question-text::before {
    content: '';
    margin: auto 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate(100%, 0);
    border-left: 40px solid rgba(113, 143, 147, 0.1);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.faq-question-image {
    width: 200px;
    background: rgba(113, 143, 147, 0.1);
    border-radius: 200px;
}

.faq-question-image img {
    width: 100%;
}

.faq-answer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer-text {
    width: 850px;
    background: rgba(0, 106, 178, 0.1);
    border-radius: 20px;
    position: relative;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    padding: 30px;
}

.faq-answer-text p {
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: #000;
    text-align: center;
}

.faq-answer-text span {
    color: #0069B0;
}

.faq-answer-text a {
    color: #fff;
    font-size: 24px;
    line-height: 39px;
    height: 44px;
    background: #006AB2;
    display: inline-block;
    border-radius: 10px;
    padding: 0 18px;
    border-bottom: 5px solid #004270;
    transition: all .3s;
    text-decoration: none;
}

.faq-answer-text a:hover {
    border-bottom: 0px solid #004270;
}

.faq-answer-text::before {
    content: '';
    margin: auto 0;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translate(-100%, 0);
    border-right: 40px solid rgba(0, 106, 178, 0.1);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.faq-answer-image {
    width: 200px;
    background: rgba(0, 106, 178, 0.1);
    border-radius: 200px;
}

.faq-answer-image img {
    width: 100%;
}

#cta {
    padding: 195px 0 156px;
    position: relative;
    background: linear-gradient(#006AB2,#006AB2, #fff);
}

#cta::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: 90px solid #FFF;
}

.cta-title {
    margin: 0 0 21px;
}

.cta-title h2 {
    font-weight: 900;
    font-size: 50px;
    line-height: 87px;
    color: #fff;
    text-align: center;
}

.cta-title span {
    font-size: 60px;
    line-height: 87px;
}

.cta-text p {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #fff;
    text-align: center;
}

.cta-image {
    position: absolute;
    width: 210px;
    top: 50%;
    right: 90px;
    transform: rotate(7deg) translate(0, -50%);
}

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

#inquiry {
    padding: 195px 0 87px;
    position: relative;
    background: #fff;
}

.inquiry-title {
    position: relative;
    width: 564px;
    margin: 0 auto 140px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 60%, #FFF7BE 60%, #FFF7BE 100%);
}

.inquiry-title h2 {
    font-weight: 900;
    font-size: 60px;
    line-height: 81px;
    color: #000;
    text-align: center;
}

.inquiry-title span {
    font-size: 80px;
    line-height: 81px;
    color: #006AB2;
}

.inquiry-title img {
    width: auto;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: -27px;
    right: auto;
    transform: translate(-100%, 0);
}

.inquiry-title img:last-child {
    left: auto;
    right: -27px;
    transform: translate(100%, 0);
}

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

ul.inquiry-list li {
    width: 600px;
    position: relative;
}

ul.inquiry-list li::before {
    content: '';
    width: 85px;
    height: 57px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -66px;
    background: url('../assets/inquiry-list-before-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

ul.inquiry-list li:last-child::before {
    background: url('../assets/inquiry-list-before-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.inquiry-list-title {
    width: 100%;
    height: 90px;
    margin: 0 0 51px;
    background-color: #fff;
    border: 3px solid #FE6D00;
    border-radius: 90px;
    position: relative;
}

ul.inquiry-list li:last-child .inquiry-list-title {
    border: 3px solid #006AB2;
}

.inquiry-list-title::before {
    content: '';
    margin: 0 auto;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #FE6D00;
}

ul.inquiry-list li:last-child .inquiry-list-title::before {
    border-top: 30px solid #006AB2;
}

.inquiry-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: 24px solid #FFF;
}

.inquiry-list-title h3 {
    font-weight: 900;
    font-size: 38px;
    line-height: 84px;
    color: #FE6D00;
    text-align: center;
}

ul.inquiry-list li:last-child .inquiry-list-title h3 {
    color: #0069B0;
}

.inquiry-list-image {
    width: 100%;
    margin: 0 0 30px;
}

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

.inquiry-list-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    border-radius: 30px;
    text-decoration: none;
    padding: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    background-color: #FE6D00;
    border-bottom: 5px solid #D25A00;
    transition: 0.3s;
}

ul.inquiry-list li:last-child .inquiry-list-button a {
    background-color: #006AB2;
    border-bottom: 5px solid #004270;
}

.inquiry-list-button a:hover {
    border-bottom: 0px solid #D25A00;
}

ul.inquiry-list li:last-child .inquiry-list-button a:hover {
    border-bottom: 0px solid #004270;
}

.inquiry-list-button-logo {
    width: 30px;
    margin: 0 5px 0 0;
}

.inquiry-list-button-logo img {
    width: 100%;
}

ul.inquiry-list li:last-child .inquiry-list-button-logo {
    padding-top: 36px;
}

.inquiry-list-button-text span {
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.inquiry-list-button-text p {
    display: block;
    font-weight: 900;
    font-size: 38px;
    line-height: 54px;
    color: #fff;
}

#footer {
    background: linear-gradient(#FFFFFF, #E7F1F8);
    padding: 140px 0 88px;
}

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

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

br.split-mobile {
    display: none;
}

/* Contact */
#contact {
    background: linear-gradient(90deg, #FFFFFF 52.5%, #EFEFEF 47.5%);
    background-size: 1920px;
    background-position: center center;
    padding: 15px 0 51px;
    min-height: 100vh;
}

#contact .monit-container,
#thanks .monit-container {
    width: 904px;
}

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

.contact-information {
    width: 455px;
}

.contact-logo {
    display: block;
    width: 147px;
    margin: 0 0 39px;
}

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

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

.contact-title h1 {
    font-size: 30px;
    line-height: 37px;
    font-weight: 700;
    color: #000000;
}

.contact-image {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 2px solid #888480;
    margin: 0 0 45px;
}

.contact-image img {
    width: 218px;
}

.contact-checklist-title {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
}

.contact-checklist-title h2 {
    font-size: 25px;
    line-height: 36px;
    font-weight: 500;
    color: #000000;
}

.contact-checklist-title::before {
    content: '';
    width: 30px;
    height: 32px;
    background: url(../assets/contact-checklist-icon.svg);
    background-size: contain;
    margin-right: 9px;
}

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

ul.contact-checklist > li {
    display: flex;
    align-items: center;
    font-size: 21px;
    line-height: 45px;
    color: #000;
    font-weight: 500;
}

ul.contact-checklist > li::before {
    content: '';
    width: 19px;
    height: 19px;
    background: url(../assets/contact-checklist.svg);
    background-size: contain;
    margin-right: 5px;
}

.contact-form {
    padding-top: 78px;
    width: 372px;
}

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

.contact-form-label {
    margin: 0 0 3px;
}

.contact-form-label > label {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.contact-form-required {
    color: #FF0000;
    font-weight: 500;
    font-size: 10px;
    vertical-align: super;
}

.contact-form-input > input[type="text"],
.contact-form-input > input[type="email"] {
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    background-color: #fff;
    border: 1px solid #707070;
    padding: 2.5px;
    color: #585858;
    border-radius: 4px;
}

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

.contact-form-option > .contact-form-label > label {
    font-weight: 500;
    font-size: 16px;
    line-height: 38px;
    color: #000000;
}

.contact-form-input input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: 16px;
}

.contact-form-option > .contact-form-input label {
    width: 330px;
    font-weight: 500;
    font-size: 16px;
    line-height: 38px;
    color: #000000;
}

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

.contact-agreement > input {
    width: 20px;
    height: 20px;
    border: 1px solid #000;
}

.contact-agreement > label a {
    font-weight: 500;
    font-size: 16px;
    line-height: 38px;
    color: #0F7BBE;
}

.contact-agreement > label a:hover {
    text-decoration: none;
}

#contactform button {
    display: flex;
    width: 100%;
    background: #FE6D00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 45px;
    border: none;
    border-radius: 5px;
    column-gap: 9px;
    border-bottom: 5px solid #D25A00;
    transition: all .3s;
}

#contactform button img {
    width: 24px;
    margin-top: 6px;
}

#contactform button:hover {
    border-bottom: 0px solid #D25A00;
}

/* Thanks */
#thanks {
    background: #fff;
    padding: 15px 0;
    min-height: 100vh;
}

.thanks-logo {
    display: block;
    width: 147px;
    margin: 0 0 150px;
}

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

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

.thanks-text p {
    font-size: 27px;
    line-height: 58px;
    font-weight: 500;
    text-align: center;
    color: #000;
}

.thanks-button a {
    display: block;
    background: #000;
    margin: 0 auto;
    width: 417px;
    height: 77px;
    font-size: 27px;
    line-height: 77px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
}

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

.invalid-feedback {
    font-size: 14px;
}

@media (max-width: 1499px) and (min-width: 640px) {
    .header {
        height: 6.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .header-container {
        width: 88vw;
    }
    
    .header-logo {
        width: 13.33vw;
        padding: 0.33vw 0;
    }
        
    ul.header-menu {
        column-gap: 1vw;
    }
    
    .header-menu-button {
        width: 16.67vw;
        height: 4.33vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.header-menu li:last-child .header-menu-button {
        border-bottom: 0.5vw solid #004270;
    }
        
    .header-menu-logo {
        width: 2vw;
        margin: 0 0.33vw 0 0;
    }
    
    .header-menu-text span {
        font-size: 0.8vw;
        line-height: 0.8vw;
    }
    
    .header-menu-text p {
        font-size: 1.33vw;
        line-height: 2vw;
    }
    
    #toppage {
        padding-top: 6.67vw;
    }
    
    .monit-container {
        width: 88vw;
    }
    
    #banner {
        background-size: 128vw;
        padding: 7.33vw 0 0;
    }
    
    .banner-content {
        width: 41.33vw;
    }
    
    .banner-title {
        margin: 0 0 1.6vw;
    }
    
    .banner-title h1 {
        font-size: 3.47vw;
        line-height: 5vw;
    }
    
    .banner-logo {
        width: 33.8vw;
        margin: 0 auto 2.13vw;
    }
    
    .banner-text {
        margin: 0 0 9.6vw;
    }
    
    .banner-text p {
        font-size: 1.47vw;
        line-height: 2.13vw;
    }
    
    .banner-image {
        width: 37.6vw;
    }
    
    .banner-no1 {
        width: 14vw;
        top: 7.6vw;
        right: 23.2vw;
    }
    
    .gradient-bottom {
        width: 100%;
        height: 10vw;
    }
    
    #solution {
        padding: 15.33vw 0 12.67vw;
    }
    
    .solution-text {
        margin: 0 0 1.4vw;
    }
    
    .solution-text p {
        font-size: 2.6vw;
        line-height: 4.2vw;
    }
    
    .solution-text span {
        font-size: 3.2vw;
        line-height: 4.2vw;
    }
    
    .solution-title {
        margin: 0 0 3.4vw;
    }
    
    .solution-title h2 {
        font-size: 2.6vw;
        line-height: 4.2vw;
    }
    
    .solution-title span {
        font-size: 4vw;
        line-height: 4.2vw;
    }
        
    .dots-above::before {
        width: 0.8vw;
        height: 0.8vw;
        border-radius: 0.8vw;
    }
    
    .solution-arrow {
        width: 5.6vw;
        margin: 0 auto 3.4vw;
    }
        
    ul.solution-button {
        width: 70vw;
    }
    
    ul.solution-button li a {
        width: 33.4vw;
        height: 5.4vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.solution-button li:last-child a {
        border-bottom: 0.5vw solid #004270;
    }
        
    .solution-button-logo {
        width: 2vw;
        margin: 0 0.33vw 0 0;
    }
        
    .solution-button-text span {
        font-size: 1.07vw;
        line-height: 1.6vw;
        margin: 0 0.33vw 0 0;
    }
    
    .solution-button-text p {
        font-size: 1.6vw;
        line-height: 2.4vw;
    }
    
    #opportunity {
        padding: 10.4vw 0 6.4vw;
    }
    
    .opportunity-icon {
        width: 4.6vw;
        margin: 0 auto 0.4vw;
    }
        
    .opportunity-title {
        margin: 0 0 3.4vw;
    }
    
    .opportunity-title h2 {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .opportunity-title span {
        font-size: 3.33vw;
        line-height: 4vw;
    }
    
    ul.opportunity-list {
        margin: 0 0 10vw;
    }
    
    ul.opportunity-list li {
        width: 26.67vw;
    }
    
    .opportunity-list-image {
        width: 100%;
        margin: 0 0 2vw;
        border-radius: 100%;
    }
    
    .opportunity-list-text p {
        font-size: 2vw;
        line-height: 3vw;
    }
    
    .opportunity-chart-left {
        width: 36vw;
    }
    
    .opportunity-chart-bubble {
        width: 33.4vw;
        height: 16.2vw;
        margin: 0 auto 4vw;
    }
    
    .opportunity-chart-bubble p {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .opportunity-chart-bubble span {
        font-size: 3.33vw;
        line-height: 4vw;
    }
    
    .opportunity-chart-bubble::before {
        width: 5.33vw;
        height: 5.33vw;
        left: -0.67vw;
        top: -0.67vw;
    }
    
    .opportunity-chart-bubble::after {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 3.8vw solid rgba(188, 72, 72, 0.1);
    }
    
    .opportunity-chart-text p {
        font-size: 2vw;
        line-height: 3vw;
    }
    
    .opportunity-time {
        height: 10.67vw;
    }
    
    .opportunity-time p {
        font-size: 3.2vw;
        line-height: 10.67vw;
    }
    
    .opportunity-time span {
        font-size: 10.67vw;
        line-height: 10.67vw;
    }
    
    .opportunity-chart-right {
        width: 43.33vw;
    }
    
    .opportunity-chart-image {
        width: 43.33vw;
    }
    
    .opportunity-chart-image p {
        font-size: 1.07vw;
        line-height: 1.6vw;
    }
    
    .opportunity-bubble {
        margin: 0 auto 3vw;
        width: 66.4vw;
    }
    
    .opportunity-bubble-image {
        width: 23vw;
    }
    
    .opportunity-bubble-text {
        width: 40vw;
        height: 10vw;
        border-radius: 2vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .opportunity-bubble-text p {
        font-size: 1.8vw;
        line-height: 3vw;
    }
    
    .opportunity-bubble-text::before {
        border-right: 2.67vw solid #fff;
        border-top: 1vw solid transparent;
        border-bottom: 1vw solid transparent;
    }
    
    .opportunity-challenge {
        width: 70vw;
        border-radius: 2vw;
        padding: 0 0 4vw;
    }
    
    .opportunity-bubble-title {
        width: 63.33vw;
        height: 6vw;
        margin: 0 auto -1vw;
        padding: 1vw;
        border-radius: 6vw;
        top: -3vw;
    }
    
    .opportunity-bubble-title h3 {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .opportunity-bubble-title::after {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #434343;
    }
    
    ul.opportunity-challenge-list {
        column-gap: 8vw;
    }
    
    .opportunity-challenge-list-image {
        width: 20vw;
        border-radius: 100%;
        margin: 0 auto 1.33vw;
    }
    
    .opportunity-challenge-list-text p {
        font-size: 2vw;
        line-height: 3vw;
    }
    
    .opportunity-bubble:last-child {
        margin: -36px auto 0;
    }
    
    .opportunity-bubble-text:first-child::before {
        border-left: 2.6vw solid #fff;
    }
    
    #opportunity-bottom {
        padding: 11.33vw 0 7.6vw;
    }
    
    #opportunity-bottom::before {
        border-top: 6vw solid #E7F1F8;
    }
    
    .opportunity-bottom img {
        width: 18.33vw;
        margin: 0 0.6vw 0 0;
    }
    
    .opportunity-bottom p {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .opportunity-bottom span {
        font-size: 3.33vw;
        line-height: 4vw;
    }
    
    .opportunity-bottom h2 {
        font-size: 5.33vw;
        line-height: 7.73vw;
    }
    
    #work {
        padding: 14vw 0 15.6vw;
    }
    
    .work-title {
        margin: 0 0 8.4vw;
    }
    
    .work-title p {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    .work-title h2 {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    .work-title span {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    ul.work-list {
        margin: 0 0 13.33vw;
    }
    
    ul.work-list li {
        width: 26.67vw;
    }
    
    ul.work-list li::before {
        width: 4.4vw;
        height: 3vw;
        top: -3.4vw;
    }
    
    .work-list-title {
        height: 6.67vw;
        margin: 0 0 3.2vw;
        border: 0.2vw solid #0069B0;
        border-radius: 1.33vw;
    }
    
    .work-list-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #0069B0;
    }
    
    .work-list-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .work-list-title h3 {
        font-size: 3.4vw;
        line-height: 6.2vw;
    }
    
    .work-button-title {
        width: 46vw;
        height: 6vw;
        margin: 0 auto 4.8vw;
        border: 0.2vw solid #0069B0;
        border-radius: 6vw;
    }
    
    .work-button-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #0069B0;
    }
    
    .work-button-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .work-button-title h3 {
        font-size: 2.6vw;
        line-height: 5.6vw;
    }
    
    ul.work-button {
        width: 70vw;
        margin: 0 auto 13.33vw;
    }
    
    ul.work-button li a {
        width: 33.33vw;
        height: 5.4vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.work-button li:last-child a {
        border-bottom: 0.5vw solid #004270;
    }
    
    .work-button-logo {
        width: 2vw;
        margin: 0 0.33vw 0 0;
    }
    
    .work-button-text span {
        font-size: 1.07vw;
        line-height: 1.6vw;
        margin: 0 0.33vw 0 0;
    }
    
    .work-button-text p {
        font-size: 1.6vw;
        line-height: 2.4vw;
    }
    
    .work-detail-title {
        margin: 0 auto 6.8vw;
    }
    
    .work-detail-title h3 {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    .work-detail-title span {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    .work-detail-title::before {
        width: 4.6vw;
        height: 7.2vw;
        margin: 0 1.4vw 0 0;
    }
    
    .work-detail-title::after {
        width: 4.6vw;
        height: 7.2vw;
        margin: 0 0 0 1.4vw;
    }
    
    ul.work-detail li {
        width: 36.67vw;
        padding: 0 0 2.2vw;
        border-radius: 2vw;
    }
    
    .work-detail-header {
        width: 13.33vw;
        height: 5.4vw;
        margin: 0 auto -2.4vw;
        padding: 0.67vw;
        border-radius: 5.4vw;
        top: -2.8vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .work-detail-header h4 {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .work-detail-header::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
    }
    
    ul.work-detail li:first-child .work-detail-header::after {
        border-top: 1.4vw solid #5785CE;
    }
    
    ul.work-detail li:last-child .work-detail-header::after {
        border-top: 1.4vw solid #5DAFC7;
    }
    
    .work-detail-image {
        width: 26.67vw;
        margin: 0 auto 2vw;
    }
    
    .work-detail-text p {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    .work-detail-divider {
        width: 13.33vw;
    }
    
    .work-detail-note {
        width: 13.6vw;
        height: 13.6vw;
        border-radius: 13.6vw;
        bottom: 6.8vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    ul.work-detail li:first-child .work-detail-note {
        border: 0.2vw solid #5785CE;
        left: -5vw;
    }
    
    ul.work-detail li:last-child .work-detail-note {
        border: 0.2vw solid #5DAFC7;
        right: -5vw;
    }
    
    .work-detail-note p {
        font-size: 1.8vw;
        line-height: 2.6vw;
    }

    #amazing {
        padding: 11.2vw 0;
    }
    
    .amazing-title {
        margin: 0 0 6.8vw;
    }
    
    .amazing-title h2 {
        font-size: 3.8vw;
        line-height: 5.4vw;
    }
    
    .amazing-title span {
        font-size: 4.6vw;
        line-height: 5.4vw;
    }
    
    #amazing-onsite {
        margin: 0 0 12vw;
    }
    
    .amazing-detail-title {
        width: 46.67vw;
        height: 6vw;
        margin: 0 auto 4.6vw;
        padding: 1vw;
        border-radius: 6vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
        
    .amazing-detail-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
    }
    
    #amazing-onsite .amazing-detail-title::after {
        border-top: 1.4vw solid #5785CE;
    }
    
    #amazing-management .amazing-detail-title::after {
        border-top: 1.4vw solid #5DAFC7;
    }
    
    .amazing-detail-title h3 {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .amazing-detail-title span {
        font-size: 3.2vw;
        line-height: 4vw;
    }
    
    .amazing-detail-title p {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    ul.amazing-detail-list {
        width: 75.33vw;
        margin: 0 auto 12.67vw;
    }
    
    ul.amazing-detail-list li {
        margin: 0 0 3.4vw;
        padding-left: 3.4vw;
    }
    
    .amazing-detail-list-image {
        width: 33.33vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .amazing-detail-list-note {
        width: 10vw;
        height: 10vw;
        border-radius: 10vw;
        bottom: -0.67vw;
        left: -3.4vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .amazing-detail-list-note p {
        font-size: 1.6vw;
        line-height: 2vw;
    }
    
    .amazing-detail-list-content {
        width: 34.67vw;
    }
    
    .amazing-detail-list-number {
        width: 8vw;
        height: 4vw;
        border-radius: 4vw;
        padding: 1vw 0;
        margin: 0 0 2vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .amazing-detail-list-number p {
        font-size: 1.4vw;
        line-height: 2vw;
    }
    
    .amazing-detail-list-number span {
        font-size: 2vw;
        line-height: 2vw;
    }
    
    .amazing-detail-list-title {
        margin: 0 0 2vw;
    }
    
    .amazing-detail-list-title h4 {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    .amazing-detail-list-text p {
        font-size: 1.6vw;
        line-height: 2.8vw;
    }
    
    .amazing-button-title {
        width: 46vw;
        height: 6vw;
        margin: 0 auto 4.8vw;
        border: 0.2vw solid #0069B0;
        border-radius: 6vw;
    }
    
    .amazing-button-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #0069B0;
    }
    
    .amazing-button-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .amazing-button-title h3 {
        font-size: 2.6vw;
        line-height: 5.6vw;
    }
    
    ul.amazing-button {
        width: 70vw;
        margin: 0 auto;
    }
    
    ul.amazing-button li a {
        width: 33.33vw;
        height: 5.4vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.amazing-button li:last-child a {
        border-bottom: 0.5vw solid #004270;
    }
    
    .amazing-button-logo {
        width: 2vw;
        margin: 0 0.4vw 0 0;
    }
    
    .amazing-button-text span {
        font-size: 1.07vw;
        line-height: 1.6vw;
        margin: 0 0.4vw 0 0;
    }
    
    .amazing-button-text p {
        font-size: 1.6vw;
        line-height: 2.4vw;
    }

    #review {
        padding: 17.8vw 0 8vw;
    }
    
    #review::before {
        border-top: 6vw solid rgba(93, 175, 199, 0.1);
    }
    
    .review-title {
        margin: 0 0 3.4vw;
    }
    
    .review-title h2 {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    .review-title span {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    ul.review-list li {
        width: 40vw;
        padding: 3.4vw 4vw 4.2vw;
        border: 0.2vw solid #006AB2;
        border-radius: 2vw;
    }
    
    .review-list-info {
        margin: 0 0 2vw;
    }
    
    .review-list-info p {
        font-size: 2vw;
        line-height: 3.2vw;
    }
    
    .review-list-image {
        width: 16.67vw;
        margin: 0 auto 2vw;
        border-radius: 16.67vw;
    }
    
    .review-list-title {
        margin: 0 0 3.2vw;
    }
    
    .review-list-title h3 {
        font-size: 1.8vw;
        line-height: 3.2vw;
    }
    
    .review-text h4 {
        font-size: 1.6vw;
        line-height: 2.4vw;
        margin: 0 0 1vw;
    }
    
    .review-text p {
        font-size: 1.4vw;
        line-height: 2.6vw;
        margin: 0 0 2.6vw;
    }

    #rateplan {
        padding: 18vw 0;
    }
    
    .rateplan-title {
        width: 20vw;
        height: 4.6vw;
        margin: 0 auto 2.6vw;
        border-radius: 4.6vw;
    }
    
    .rateplan-title h2 {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    .rateplan-number {
        width: 66.67vw;
        margin: 0 auto 1.8vw;
        column-gap: 0.8vw;
    }
    
    .rateplan-number p {
        font-size: 4vw;
        line-height: 8vw;
    }
    
    .rateplan-number h3 {
        font-size: 13.33vw;
        line-height: 13.33vw;
    }
    
    .rateplan-number span {
        font-size: 9.33vw;
        line-height: 13.33vw;
    }
    
    .rateplan-text {
        margin: 0 0 8vw;
    }
    
    .rateplan-text p {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    .rateplan-button-title {
        width: 46vw;
        height: 6vw;
        margin: 0 auto 4.8vw;
        border: 0.2vw solid #0069B0;
        border-radius: 6vw;
    }
    
    .rateplan-button-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #0069B0;
    }
    
    .rateplan-button-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .rateplan-button-title h3 {
        font-size: 2.6vw;
        line-height: 5.6vw;
    }
    
    ul.rateplan-button {
        width: 70vw;
        margin: 0 auto;
    }
    
    ul.rateplan-button li a {
        width: 33.4vw;
        height: 5.4vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.rateplan-button li:last-child a {
        border-bottom: 0.5vw solid #004270;
    }
    
    .rateplan-button-logo {
        width: 2vw;
        margin: 0 0.4vw 0 0;
    }
    
    .rateplan-button-text span {
        font-size: 1.07vw;
        line-height: 1.6vw;
        margin: 0 0.4vw 0 0;
    }
    
    .rateplan-button-text p {
        font-size: 1.6vw;
        line-height: 2.4vw;
    }

    #introduce {
        padding: 8.8vw 0 3vw;
    }
    
    .introduce-title {
        width: 66.67vw;
        margin: 0 auto 3.4vw;
    }
    
    .introduce-title p {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    .introduce-title h2 {
        font-size: 3.2vw;
        line-height: 5.8vw;
    }
    
    .introduce-title span {
        font-size: 4vw;
        line-height: 5.8vw;
    }
    
    .introduce-image {
        width: 84vw;
        margin: 0 auto 11vw;
    }
    
    .introduce-bubble {
        width: 63.33vw;
        height: 6vw;
        margin: 0 auto 4vw;
        padding: 1vw;
        border-radius: 6vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .introduce-bubble::after {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #434343;
    }
    
    .introduce-bubble p {
        font-size: 2.6vw;
        line-height: 4vw;
    }
    
    .introduce-subtitle p {
        font-size: 3.8vw;
        line-height: 5.4vw;
    }
    
    .introduce-subtitle span {
        font-size: 4.6vw;
        line-height: 5.4vw;
    }
    
    #flow {
        padding: 15.4vw 0 12.8vw;
    }
    
    #flow::before {
        border-top: 6vw solid #FFF;
    }
    
    .flow-title {
        margin: 0 0 1.4vw;
    }
    
    .flow-title h2 {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    .flow-title span {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    .flow-text {
        margin: 0 0 4.6vw;
    }
    
    .flow-text p {
        font-size: 2vw;
        line-height: 3vw;
    }
    
    ul.flow-list {
        width: 80.4vw;
        margin: 0 auto 4.6vw;
    }
    
    ul.flow-list::before {
        width: 3.4vw;
        left: 33.33vw;
    }
    
    ul.flow-list li {
        width: 70vw;
        height: 16.67vw;
        margin: 0 0 5.4vw;
        border-radius: 2vw;
        padding: 2.8vw 3.2vw;
    }
    
    .flow-list-title {
        margin: 0 0 1.4vw;
    }
    
    .flow-list-title h3 {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    .flow-list-text p {
        font-size: 1.8vw;
        line-height: 3.2vw;
    }
    
    .flow-list-image {
        width: 26.67vw;
    }
    
    .flow-image {
        width: 5vw;
    }
    
    .flow-image img {
        width: 2.4vw;
    }
    
    .flow-image::after {
        border-left: 2.6vw solid #E7F1F8;
        border-right: 2.6vw solid #E7F1F8;
        border-top: 3.4vw solid transparent;
    }
    
    .flow-bubble {
        margin: 0 auto 4.6vw;
        width: 66vw;
    }
    
    .flow-bubble-image {
        width: 23.4vw;
    }
    
    .flow-bubble-text {
        width: 40vw;
        height: 10vw;
        border-radius: 2vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
    }
    
    .flow-bubble-text p {
        font-size: 1.8vw;
        line-height: 3vw;
    }
    
    .flow-bubble-text::before{
        width: 4.4vw;
        height: 3vw;
        left: -2.8vw;
        top: -2.8vw;
    }
    
    .flow-bubble-text::after{
        border-left: 2.6vw solid #fff;
        border-top: 1vw solid transparent;
        border-bottom: 1vw solid transparent;
    }
    
    .flow-button-title {
        width: 46vw;
        height: 6vw;
        margin: 0 auto 5.4vw;
        border: 0.2vw solid #0069B0;
        border-radius: 6vw;
    }
    
    .flow-button-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #0069B0;
    }
    
    .flow-button-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .flow-button-title h3 {
        font-size: 2.6vw;
        line-height: 5.6vw;
    }
    
    ul.flow-button {
        width: 70vw;
    }
    
    ul.flow-button li a {
        width: 33.33vw;
        height: 5.4vw;
        border-radius: 0.67vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.flow-button li:last-child a {
        border-bottom: 0.5vw solid #004270;
    }
    
    .flow-button-logo {
        width: 2vw;
        margin: 0 0.33vw 0 0;
    }
    
    .flow-button-text span {
        font-size: 1.07vw;
        line-height: 1.6vw;
        margin: 0 0.33vw 0 0;
    }
    
    .flow-button-text p {
        font-size: 1.6vw;
        line-height: 2.4vw;
    }
    
    #faq {
        padding: 18vw 0 13vw;
    }
    
    #faq::before {
        border-top: 6vw solid #E7F1F8;;
    }
    
    .faq-icon {
        width: 5.4vw;
    }
    
    .faq-title {
        margin: 0 0 2.8vw;
    }
    
    .faq-title p {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    .faq-title h2 {
        font-size: 3.2vw;
        line-height: 4.6vw;
    }
    
    .faq-title span {
        font-size: 2.6vw;
        line-height: 4.6vw;
    }
    
    ul.faq-list {
        width: 74.67vw;
    }
    
    ul.faq-list li {
        margin: 0 0 2.6vw;
    }
    
    .faq-question {
        margin: 0 0 2.6vw;
    }
    
    .faq-question-text {
        width: 56.67vw;
        border-radius: 1.33vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        padding: 2vw;
    }
    
    .faq-question-text p {
        font-size: 1.8vw;
        line-height: 3vw;
    }
    
    .faq-question-text::before {
        border-left: 2.6vw solid rgba(113, 143, 147, 0.1);
        border-top: 1vw solid transparent;
        border-bottom: 1vw solid transparent;
    }
    
    .faq-question-image {
        width: 13.33vw;
        border-radius: 13.33vw;
    }
    
    .faq-answer-text {
        width: 56.67vw;
        border-radius: 1.33vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        padding: 2vw;
    }
    
    .faq-answer-text p {
        font-size: 1.8vw;
        line-height: 3vw;
    }
    
    .faq-answer-text a {
        font-size: 1.6vw;
        line-height: 2.5vw;
        height: 3vw;
        border-radius: 0.67vw;
        padding: 0 1.2vw;
        border-bottom: 0.5vw solid #004270;
    }
    
    .faq-answer-text::before {
        border-right: 2.6vw solid rgba(0, 106, 178, 0.1);
        border-top: 1vw solid transparent;
        border-bottom: 1vw solid transparent;
    }
    
    .faq-answer-image {
        width: 13.33vw;
        border-radius: 13.33vw;
    }
    
    #cta {
        padding: 13vw 0 10.4vw;
    }
    
    #cta::before {
        border-top: 6vw solid #FFF;
    }
    
    .cta-title {
        margin: 0 0 1.4vw;
    }
    
    .cta-title h2 {
        font-size: 3.4vw;
        line-height: 5.8vw;
    }
    
    .cta-title span {
        font-size: 4vw;
        line-height: 5.8vw;
    }
    
    .cta-text p {
        font-size: 2vw;
        line-height: 3vw;
    }
    
    .cta-image {
        width: 14vw;
        right: 6vw;
    }
    
    #inquiry {
        padding: 13vw 0 5.8vw;
    }
    
    .inquiry-title {
        width: 37.6vw;
        margin: 0 auto 9.33vw;
    }
    
    .inquiry-title h2 {
        font-size: 4vw;
        line-height: 5.4vw;
    }
    
    .inquiry-title span {
        font-size: 5.33vw;
        line-height: 5.4vw;
    }
    
    .inquiry-title img {
        height: 13.4vw;
        left: -1.8vw;
    }
    
    .inquiry-title img:last-child {
        right: -1.8vw;
    }
    
    ul.inquiry-list li {
        width: 40vw;
    }
    
    ul.inquiry-list li::before {
        width: 5.6vw;
        height: 3.8vw;
        top: -4.4vw;
    }
    
    .inquiry-list-title {
        width: 100%;
        height: 6vw;
        margin: 0 0 3.4vw;
        border: 0.2vw solid #FE6D00;
        border-radius: 6vw;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-title {
        border: 0.2vw solid #006AB2;
    }
    
    .inquiry-list-title::before {
        border-left: 1vw solid transparent;
        border-right: 1vw solid transparent;
        border-top: 2vw solid #FE6D00;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-title::before {
        border-top: 2vw solid #006AB2;
    }
    
    .inquiry-list-title::after {
        border-left: 0.8vw solid transparent;
        border-right: 0.8vw solid transparent;
        border-top: 1.6vw solid #FFF;
    }
    
    .inquiry-list-title h3 {
        font-size: 2.6vw;
        line-height: 5.6vw;
    }
    
    .inquiry-list-image {
        width: 100%;
        margin: 0 0 2vw;
    }
    
    .inquiry-list-button a {
        width: 100%;
        height: 10vw;
        border-radius: 2vw;
        filter: drop-shadow(0 0.2vw 0.4vw rgba(0, 0, 0, 0.16));
        border-bottom: 0.5vw solid #D25A00;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-button a {
        border-bottom: 0.5vw solid #004270;
    }
    
    .inquiry-list-button-logo {
        width: 2vw;
        margin: 0 0.4vw 0 0;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-button-logo {
        padding-top: 2.4vw;
    }
    
    .inquiry-list-button-text span {
        font-size: 1.4vw;
        line-height: 2vw;
    }
    
    .inquiry-list-button-text p {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
    
    #footer {
        padding: 9.4vw 0 5.8vw;
    }
    
    .footer-logo {
        width: 15vw;
    }    
    
}

@media (max-width: 1023px) and (min-width: 640px) {
    /* Contact */
    #contact {
        background-size: 187.5vw;
        padding: 1.46vw 0 4.98vw;
    }

    #contact .monit-container,
    #thanks .monit-container {
        width: 88.28125vw;
    }

    .contact-information {
        width: 44.43vw;
    }

    .contact-logo {
        width: 14.36vw;
        margin: 0 0 3.81vw;
    }

    .contact-title {
        margin: 0 0 4.88vw;
    }

    .contact-title h1 {
        font-size: 2.93vw;
        line-height: 3.61vw;
    }

    .contact-image {
        padding-bottom: 4.39vw;
        border-bottom: 0.2vw solid #888480;
        margin: 0 0 4.39vw;
    }

    .contact-image img {
        width: 21.29vw;
    }

    .contact-checklist-title {
        margin: 0 0 1.5625vw;
    }

    .contact-checklist-title h2 {
        font-size: 2.44vw;
        line-height: 3.52vw;
    }

    .contact-checklist-title::before {
        width: 2.93vw;
        height: 3.125vw;
        margin-right: 0.88vw;
    }

    ul.contact-checklist > li {
        font-size: 2.05vw;
        line-height: 4.39vw;
    }

    ul.contact-checklist > li::before {
        width: 1.86vw;
        height: 1.86vw;
        margin-right: 0.49vw;
    }

    .contact-form {
        padding-top: 7.61vw;
        width: 36.33vw;
    }

    .contact-form-text {
        margin: 0 0 1.46vw;
    }

    .contact-form-label {
        margin: 0 0 0.29vw;
    }

    .contact-form-label > label {
        font-size: 1.37vw;
        line-height: 2.15vw;
    }

    .contact-form-required {
        font-size: 0.98vw;
    }

    .contact-form-input > input[type="text"],
    .contact-form-input > input[type="email"] {
        width: 100%;
        font-size: 1.46vw;
        line-height: 2.64vw;
        border: 0.1vw solid #707070;
        padding: 0.24vw;
        border-radius: 0.39vw;
    }

    .contact-form-option {
        margin: 0 0 3.91vw;
    }

    .contact-form-option > .contact-form-label > label {
        font-size: 1.5625vw;
        line-height: 3.71vw;
    }

    .contact-form-input input[type="checkbox"] {
        width: 1.95vw;
        height: 1.95vw;
        margin-left: 1.5625vw;
    }

    .contact-form-option > .contact-form-input label {
        width: 32vw;
        font-size: 1.5625vw;
        line-height: 3.71vw;
    }

    .form-check {
        margin: 0 0 6.25vw;
    }

    .contact-agreement > input {
        width: 1.95vw;
        height: 1.95vw;
        border: 0.1vw solid #000;
    }

    .contact-agreement > label a {
        font-size: 1.5625vw;
        line-height: 3.71vw;
    }

    #contactform button {
        width: 100%;
        font-size: 2.34vw;
        height: 3vw;
        border-radius: 0.49vw;
        column-gap: 0.88vw;
        border-bottom: 0.5vw solid #D25A00;
    }

    #contactform button img {
        width: 2.34vw;
        margin-top: 0.58vw;
    }

    /* Thanks */
    #thanks {
        padding: 1.46vw 0;
    }

    .thanks-logo {
        width: 14.36vw;
        margin: 0 0 14.65vw;
    }

    .thanks-text {
        margin: 0 0 9.18vw;
    }

    .thanks-text p {
        font-size: 2.64vw;
        line-height: 5.66vw;
    }

    .thanks-button a {
        width: 40.72vw;
        height: 7.52vw;
        font-size: 2.64vw;
        line-height: 7.52vw;
        border-radius: 0.29vw;
    }
    
    .invalid-feedback {
        font-size: 1.37vw;
    }

}

@media (max-width: 639px) {
    .header {
        height: 16vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .header-container {
        width: 100vw;
    }
    
    .header-logo {
        width: 35.2vw;
        padding: 0;
    }
        
    ul.header-menu {
        column-gap: 0;
    }
    
    .header-menu-button {
        width: 29.33vw;
        height: 16vw;
        border-radius: 0;
        filter: none;
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.header-menu li:last-child .header-menu-button {
        border-bottom: 1.6vw solid #004270;
    }
        
    .header-menu-logo {
        width: 5.33vw;
        margin: 0;
    }
        
    .header-menu-text span {
        font-weight: 900;
        font-size: 3.2vw;
        line-height: 4.27vw;
    }
    
    .header-menu-text p {
        font-size: 3.2vw;
        line-height: 4.27vw;
    }

    ul.header-menu li:last-child .header-menu-text p {
        display: none;
    }

    br.split-mobile {
        display: block !important;
    }

    #toppage {
        padding-top: 16vw;
    }
    
    .monit-container {
        width: 84vw;
    }
    
    #banner {
        background: url(../assets/banner-bg-mobile.png);
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        padding: 16vw 0 0;
    }
    
    .banner-content {
        width: 100%;
    }
    
    .banner-title {
        margin: 0 0 1.2vw -2.67vw;
    }
    
    .banner-title h1 {
        font-size: 5.33vw;
        line-height: 8vw;
        text-align: left;
    }
    
    .banner-logo {
        width: 52vw;
        margin: 0 0 5.2vw -2.67vw;
    }
    
    .banner-text {
        margin: 0 0 27.2vw -2.67vw;
    }
    
    .banner-text p {
        font-size: 3.2vw;
        line-height: 5.6vw;
        text-align: left;
    }
    
    .banner-image {
        width: 53.33vw;
        margin: 0;
    }
    
    .banner-no1 {
        width: 25.2vw;
        transform: rotate(7deg);
        position: absolute;
        top: auto;
        bottom: 1.84vw;
        right: -3.2vw;
        z-index: 2;
    }

    .gradient-bottom {
        height: 21.33vw;
    }

    #banner .gradient-bottom {
        bottom: 7.2vw;
    }

    #solution {
        margin-top: -7.2vw;
        padding: 33.6vw 0 29.6vw;
    }
    
    .solution-text {
        margin: 0 0 1.33vw;
    }
    
    .solution-text p {
        font-size: 3.73vw;
        line-height: 6.67vw;
    }
    
    .solution-text span {
        font-size: 4.8vw;
        line-height: 6.67vw;
    }
    
    .solution-title {
        margin: 0 0 7.2vw;
    }
    
    .solution-title h2 {
        font-size: 3.73vw;
        line-height: 6.67vw;
    }
    
    .solution-title span {
        font-size: 6.4vw;
        line-height: 6.67vw;
    }
        
    .dots-above::before {
        width: 1.33vw;
        height: 1.33vw;
        border-radius: 1.33vw;
    }
    
    .solution-arrow {
        width: 12vw;
        margin: 0 auto 7.2vw;
    }
        
    ul.solution-button {
        display: block;
        width: 84vw;
    }
    
    ul.solution-button li {
        margin: 0 0 5.33vw;
    }

    ul.solution-button li:last-child {
        margin: 0;
    }

    ul.solution-button li a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.solution-button li:last-child a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .solution-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    .solution-button-text {
        display: block;
    }
    
    .solution-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .solution-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }

    #opportunity {
        padding: 0 0 7.2vw;
    }
    
    .opportunity-icon {
        width: 10.67vw;
        margin: 0 auto;
    }
    
    .opportunity-title {
        margin: 0 0 8vw;
    }
    
    .opportunity-title h2 {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .opportunity-title span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    ul.opportunity-list {
        display: block;
        width: 73.33vw;
        margin: 0 auto 10.4vw;
    }
    
    ul.opportunity-list li {
        width: 100%;
        margin: 0 0 2.67vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .opportunity-list-image {
        width: 37.33vw;
        margin: 0;
        border-radius: 100%;
    }

    .opportunity-list-text {
        width: 33.33vw;
    }
        
    .opportunity-list-text p {
        font-size: 3.73vw;
        line-height: 5.33vw;
        text-align: left;
    }
    
    .opportunity-chart {
        display: block;
        margin: 0 0 8vw;
    }
    
    .opportunity-chart-left {
        width: 100%;
    }
    
    .opportunity-chart-bubble {
        width: 100%;
        height: 26vw;
        margin: 0 auto 11.2vw;
    }

    .opportunity-chart-bubble br {
        display: none;
    }
    
    .opportunity-chart-bubble p {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .opportunity-chart-bubble span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .opportunity-chart-bubble::before {
        width: 8vw;
        height: 8vw;
        left: -3.2vw;
        top: -3.2vw;
    }
    
    .opportunity-chart-bubble::after {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 6vw solid rgba(188, 72, 72, 0.1);
    }
    
    .opportunity-chart-text p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .opportunity-time {
        height: 23vw;
    }
    
    .opportunity-time p {
        font-size: 5.87vw;
        line-height: 21.33vw;
    }
    
    .opportunity-time span {
        font-size: 21.33vw;
        line-height: 21.33vw;
    }
    
    .opportunity-chart-right {
        width: 100%;
    }
    
    .opportunity-chart-image {
        width: 100%;
    }
        
    .opportunity-chart-image p {
        position: static;
        font-size: 3.2vw;
        line-height: 4.8vw;
        text-align: center;
    }
    
    .opportunity-bubble {
        margin: 0 auto;
        width: 100%;
    }
    
    .opportunity-bubble-image {
        width: 32vw;
    }
    
    .opportunity-bubble-text {
        width: 45.33vw;
        height: 33vw;
        border-radius: 5.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .opportunity-bubble-text p {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }
    
    .opportunity-bubble-text::before {
        border-right: 4.8vw solid #fff;
        border-top: 2.4vw solid transparent;
        border-bottom: 2.4vw solid transparent;
    }

    .opportunity-bubble-image img {
        display: none;
    }

    .image-mobile {
        display: block !important;
    }

    .opportunity-challenge {
        width: 100%;
        margin: 0 auto 5.6vw;
        border-radius: 8vw;
        padding: 0 0 6.4vw;
    }
    
    .opportunity-bubble-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 4.8vw;
        padding: 2.13vw;
        border-radius: 10.67vw;
        top: 0;
    }
    
    .opportunity-bubble-title h3 {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .opportunity-bubble-title::after {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #434343;
    }
    
    ul.opportunity-challenge-list {
        column-gap: 8vw;
    }
    
    ul.opportunity-challenge-list li {
        width: 32vw;
    }
    
    .opportunity-challenge-list-image {
        width: 32vw;
        border-radius: 100%;
        margin: 0 auto 2.67vw;
    }
        
    .opportunity-challenge-list-text p {
        font-size: 3.73vw;
        line-height: 5.33vw;
    }

    .opportunity-bubble:last-child {
        margin: 0 auto;
      }
    
    .opportunity-bubble-text:first-child::before {
        left: auto;
        border-right: none;
        border-left: 4.8vw solid #fff;
    }
        
    #opportunity-bottom {
        padding: 19.2vw 0 10vw;
    }
    
    #opportunity-bottom::before {
        border-top: 10.67vw solid #E7F1F8;
    }
    
    .opportunity-bottom {
        display: block;
        text-align: center;
    }

    .opportunity-bottom img {
        width: 32.8vw;
        margin: 0 1.6vw 0 0;
        display: inline-block;
    }
    
    .opportunity-bottom p {
        display: inline-block;
        font-size: 4.27vw;
        line-height: 6.93vw;
        vertical-align: bottom;
    }
    
    .opportunity-bottom span {
        font-size: 5.87vw;
        line-height: 6.93vw;
    }
    
    .opportunity-bottom h2 {
        display: inline-block;
        font-size: 9.07vw;
        line-height: 13.33vw;
    }

    #work {
        padding: 17.6vw 0 29.6vw;
    }
    
    .work-title {
        margin: 0 0 8vw;
    }
    
    .work-title p {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .work-title h2 {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .work-title span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    ul.work-list {
        display: block;
        margin: 0 0 21.6vw;
    }
    
    ul.work-list li {
        width: 100%;
        margin: 0 0 8vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    ul.work-list li:last-child {
        margin: 0;
    }
    
    ul.work-list li::before {
        width: 12vw;
        height: 8vw;
        left: auto;
        right: 10.67vw;
        margin: 0;
        top: 0;
    }
    
    .work-list-title {
        width: 33.6vw;
        height: 26.67vw;
        margin: 0;
        border: 0.8vw solid #0069B0;
        border-radius: 5.33vw;
        order: 2;
    }
    
    .work-list-title::before {
        margin: auto 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transform: translate(-100%, 0);
        border-left: none;        
        border-right: 5.33vw solid #0069B0;
        border-top: 2.4vw solid transparent;
        border-bottom: 2.4vw solid transparent;
    }
    
    .work-list-title::after {
        margin: auto 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transform: translate(-100%, 0);
        border-left: none;        
        border-right: 3.73vw solid #fff;
        border-top: 1.6vw solid transparent;
        border-bottom: 1.6vw solid transparent;
    }
    
    .work-list-title h3 {
        width: 100%;
        font-size: 5.87vw;
        line-height: 7.47vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .work-list-image {
        width: 42.67vw;
        order: 1;
    }
        
    .work-button-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 9.6vw;
        border: 0.53vw solid #0069B0;
        border-radius: 10.67vw;
    }
    
    .work-button-title::before {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #0069B0;
    }
    
    .work-button-title::after {
        border-left: 1.87vw solid transparent;
        border-right: 1.87vw solid transparent;
        border-top: 3.73vw solid #FFF;
    }
    
    .work-button-title h3 {
        font-size: 4.27vw;
        line-height: 9.6vw;
    }
    
    ul.work-button {
        display: block;
        width: 84vw;
        margin: 0 auto 21.6vw;
    }
    
    ul.work-button li {
        margin: 0 0 5.33vw;
    }

    ul.work-button li:last-child {
        margin: 0;
    }

    ul.work-button li a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.work-button li:last-child a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .work-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    .work-button-text {
        display: block;
    }
    
    .work-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .work-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }
    
    .work-detail-title {
        margin: 0 auto 14.4vw;
    }
    
    .work-detail-title h3 {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .work-detail-title span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .work-detail-title::before {
        background: url("../assets/text-before-mobile.svg") no-repeat;
        background-size: contain;
        width: 5.07vw;
        height: 14.4vw;
        margin: 0 2.4vw 0 0;
    }
    
    .work-detail-title::after {
        background: url("../assets/text-after-mobile.svg") no-repeat;
        background-size: contain;
        width: 5.07vw;
        height: 14.4vw;
        margin: 0 0 0 2.4vw;
    }
    
    ul.work-detail {
        display: block;
    }
    
    ul.work-detail li {
        width: 100%;
        padding: 6.4vw 4vw;
        border-radius: 8vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
        
    .work-detail-header {
        width: 26.67vw;
        height: 10.67vw;
        margin: 0 auto;
        padding: 0;
        position: absolute;
        border-radius: 10.67vw;
        top: -6.4vw;
        left: 0;
        right: 0;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .work-detail-header h4 {
        font-size: 4.27vw;
        line-height: 10.67vw;
    }
    
    .work-detail-header::after {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
    }
    
    ul.work-detail li:first-child .work-detail-header::after {
        border-top: 3.2vw solid #5785CE;
    }
    
    ul.work-detail li:last-child .work-detail-header::after {
        border-top: 3.2vw solid #5DAFC7;
    }
    
    .work-detail-image {
        width: 40vw;
        margin: 0;
        order: 3;
    }

    .work-detail-text {
        width: 36vw;
        order: 2;
    }
        
    .work-detail-text p {
        font-size: 4.27vw;
        line-height: 6.4vw;
        text-align: left;
    }
        
    .work-detail-divider {
        width: 16vw;
        margin: 2.67vw auto 9.07vw;
    }
    
    .work-detail-divider img {
        display: none;
    }
    
    .work-detail-note {
        width: 26.67vw;
        height: 26.67vw;
        border-radius: 26.67vw;
        bottom: -10.4vw;
        filter: drop-shadow(0 0.8vw 0.8vw rgba(0, 0, 0, 0.16));
    }
    
    ul.work-detail li:first-child .work-detail-note {
        border: 0.53vw solid #5785CE;
        left: -2.4vw;
        right: auto;
    }
    
    ul.work-detail li:last-child .work-detail-note {
        border: 0.53vw solid #5DAFC7;
        left: -2.4vw;
        right: auto;
    }
    
    .work-detail-note p {
        font-size: 3.73vw;
        line-height: 5.33vw;
    }

    #amazing {
        padding: 19.2vw 0;
    }
    
    .amazing-title {
        margin: 0 0 13.6vw;
    }
    
    .amazing-title h2 {
        font-size: 5.87vw;
        line-height: 12.8vw;
    }
    
    .amazing-title span {
        font-size: 9.07vw;
        line-height: 12.8vw;
    }
    
    #amazing-onsite {
        margin: 0 0 21.6vw;
    }
    
    .amazing-detail-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 12vw;
        padding: 1.07vw;
        border-radius: 10.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
        
    .amazing-detail-title::after {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
    }
    
    #amazing-onsite .amazing-detail-title::after {
        border-top: 4.8vw solid #5785CE;
    }
    
    #amazing-management .amazing-detail-title::after {
        border-top: 4.8vw solid #5DAFC7;
    }
    
    .amazing-detail-title h3 {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
    
    .amazing-detail-title span {
        font-size: 5.87vw;
        line-height: 8.53vw;
    }
    
    .amazing-detail-title p {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }
    
    ul.amazing-detail-list {
        width: 100%;
        margin: 0 auto 21.6vw;
    }
    
    ul.amazing-detail-list li {
        display: block;
        margin: 0 0 8vw;
        padding-left: 0;
    }
    
    .amazing-detail-list-image {
        width: 100%;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        margin: 0 0 2.67vw;
    }
        
    .amazing-detail-list-note {
        width: 21.33vw;
        height: 21.33vw;
        border-radius: 21.33vw;
        bottom: -2.67vw;
        left: -2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
        
    .amazing-detail-list-note p {
        font-size: 3.73vw;
        line-height: 5.33vw;
    }
    
    .amazing-detail-list-content {
        width: 100%;
    }
    
    .amazing-detail-list-number {
        width: 16.8vw;
        height: 8.27vw;
        border-radius: 8.27vw;
        padding: 2.13vw 0;
        margin: 0 auto 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .amazing-detail-list-number p {
        font-size: 2.67vw;
        line-height: 4vw;
    }
        
    .amazing-detail-list-number span {
        font-size: 3.73vw;
        line-height: 4vw;
    }
    
    .amazing-detail-list-title {
        margin: 0 0 3.2vw;
    }
    
    .amazing-detail-list-title h4 {
        font-size: 5.87vw;
        line-height: 8.53vw;
        text-align: center;
    }
        
    .amazing-detail-list-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
    }
    
    .amazing-button-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 9.6vw;
        border: 0.53vw solid #0069B0;
        border-radius: 10.67vw;
    }
    
    .amazing-button-title::before {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #0069B0;
    }
    
    .amazing-button-title::after {
        border-left: 1.87vw solid transparent;
        border-right: 1.87vw solid transparent;
        border-top: 3.73vw solid #FFF;
    }
    
    .amazing-button-title h3 {
        font-size: 4.27vw;
        line-height: 9.6vw;
    }
    
    ul.amazing-button {
        display: block;
        width: 84vw;
        margin: 0 auto;
    }
    
    ul.amazing-button li {
        margin: 0 0 5.33vw;
    }

    ul.amazing-button li:last-child {
        margin: 0;
    }

    ul.amazing-button li a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.amazing-button li:last-child a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .amazing-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    .amazing-button-text {
        display: block;
    }
    
    .amazing-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .amazing-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }

    #review {
        padding: 29.6vw 0 0;
    }
    
    #review::before {
        border-left: 50vw solid transparent;
        border-right: 50vw solid transparent;
        border-top: 10.67vw solid rgba(93, 175, 199, 0.1);
    }
    
    .review-title {
        margin: 0 0 8vw;
    }
    
    .review-title h2 {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .review-title span {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    ul.review-list {
        display: block;
    }
    
    ul.review-list li {
        width: 100%;
        padding: 11.2vw 10.4vw;
        border: 0.53vw solid #006AB2;
        border-radius: 8vw;
        margin: 0 0 8vw;
    }

    ul.review-list li:last-child {
        margin: 0;
    }
    
    .review-list-info {
        margin: 0 0 8vw;
    }
    
    .review-list-info p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .review-list-image {
        width: 40vw;
        margin: 0 auto 8vw;
        border-radius: 40vw;
    }
        
    .review-list-title {
        margin: 0 0 8vw;
    }
    
    .review-list-title h3 {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .review-text h4 {
        font-size: 3.73vw;
        line-height: 6.4vw;
        margin: 0 0 2.67vw;
    }
    
    .review-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
        margin: 0 0 8vw;
    }

    #rateplan {
        padding: 31.2vw 0;
    }
    
    .rateplan-title {
        width: 32vw;
        height: 10.67vw;
        margin: 0 auto 4vw;
        border-radius: 10.67vw;
    }
    
    .rateplan-title h2 {
        font-size: 4.27vw;
        line-height: 10.67vw;
    }
    
    .rateplan-number {
        width: 100%;
        margin: 0 auto 3.2vw;
        column-gap: 0;
    }
    
    .rateplan-number p {
        font-size: 5.87vw;
        line-height: 11.2vw;
    }
    
    .rateplan-number h3 {
        font-size: 19.2vw;
        line-height: 19.2vw;
    }
    
    .rateplan-number span {
        font-size: 13.33vw;
        line-height: 19.2vw;
    }
    
    .rateplan-text {
        margin: 0 0 16vw;
    }
    
    .rateplan-text p {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }

    .rateplan-button-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 9.6vw;
        border: 0.53vw solid #0069B0;
        border-radius: 10.67vw;
    }
    
    .rateplan-button-title::before {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #0069B0;
    }
    
    .rateplan-button-title::after {
        border-left: 1.87vw solid transparent;
        border-right: 1.87vw solid transparent;
        border-top: 3.73vw solid #FFF;
    }
    
    .rateplan-button-title h3 {
        font-size: 4.27vw;
        line-height: 9.6vw;
    }
    
    ul.rateplan-button {
        display: block;
        width: 84vw;
        margin: 0 auto;
    }
    
    ul.rateplan-button li {
        margin: 0 0 5.33vw;
    }

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

    ul.rateplan-button li a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.rateplan-button li:last-child a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .rateplan-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    .rateplan-button-text {
        display: block;
    }
    
    .rateplan-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .rateplan-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }

    #introduce {
        padding: 2vw 0 20vw;
    }
    
    .introduce-title {
        width: 100%;
        margin: 0 auto 4.8vw;
        text-align: center;
    }
    
    .introduce-title p {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .introduce-title h2 {
        font-size: 5.87vw;
        line-height: 8vw;
        display: inline;
    }
    
    .introduce-title span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .introduce-image {
        width: 90.4vw;
        margin: 0 -3.2vw 13.6vw;
    }
    
    .introduce-image img {
        display: none;
    }
    
    .introduce-bubble {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 7.2vw;
        padding: 0;
        border-radius: 10.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .introduce-bubble::after {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #434343;
    }
    
    .introduce-bubble p {
        font-size: 4.27vw;
        line-height: 10.67vw;
    }
        
    .introduce-subtitle p {
        font-size: 5.87vw;
        line-height: 12.8vw;
    }
    
    .introduce-subtitle span {
        font-size: 9.07vw;
        line-height: 12.8vw;
    }

    #flow {
        padding: 24vw 0 18.4vw;
    }
    
    #flow::before {
        border-top: 10.67vw solid #FFF;
    }
    
    .flow-title {
        margin: 0 0 5.6vw;
    }
    
    .flow-title h2 {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .flow-title span {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .flow-text {
        margin: 0 0 5.6vw;
    }
    
    .flow-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
    }
    
    ul.flow-list {
        width: 100%;
        margin: 0 auto 12.8vw;
    }
    
    ul.flow-list::before {
        width: 5.33vw;
        left: 32vw;
    }
    
    ul.flow-list li {
        width: 69.33vw;
        height: 64vw;
        margin: 0 0 5.33vw;
        border-radius: 5.33vw;
        padding: 5.33vw 6.4vw;
    }
    
    .flow-list-title {
        margin: 0 0 2.67vw;
    }
    
    .flow-list-title h3 {
        font-size: 4.27vw;
        line-height: 6.4vw;
    }
    
    .flow-list-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
    }
    
    .flow-list-image {
        width: 69.33vw;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .flow-list-image img {
        display: none;
    }

    .split-desktop {
        display: none;
    }
    
    .flow-image {
        width: 8vw;
    }
    
    .flow-image img {
        width: 4.8vw;
        top: 8vw;
        transform: translate(-50%, 0);
    }
    
    .flow-image::after {
        border-left: 4vw solid #E7F1F8;
        border-right: 4vw solid #E7F1F8;
        border-top: 5.33vw solid transparent;
    }
    
    .flow-bubble {
        margin: 0 auto 10.4vw;
        width: 100%;
    }
    
    .flow-bubble-image {
        width: 38.4vw;
    }
        
    .flow-bubble-text {
        width: 45.33vw;
        height: 33.07vw;
        border-radius: 5.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
    }
    
    .flow-bubble-text p {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }
    
    .flow-bubble-text::before{
        width: 6.32vw;
        height: 5.33vw;
        left: -2vw;
        top: -4vw;
        background: url('../assets/flow-bubble-before-mobile.svg');
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(-31deg);
    }
    
    .flow-bubble-text::after{
        border-left: 4.8vw solid #fff;
        border-top: 2.4vw solid transparent;
        border-bottom: 2.4vw solid transparent;
    }
    
    .flow-button-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 auto 9.6vw;
        border: 0.53vw solid #0069B0;
        border-radius: 10.67vw;
    }
    
    .flow-button-title::before {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #0069B0;
    }
    
    .flow-button-title::after {
        border-left: 1.87vw solid transparent;
        border-right: 1.87vw solid transparent;
        border-top: 3.73vw solid #FFF;
    }
    
    .flow-button-title h3 {
        font-size: 4.27vw;
        line-height: 9.6vw;
    }
    
    ul.flow-button {
        display: block;
        width: 84vw;
        margin: 0 auto;
    }
    
    ul.flow-button li {
        margin: 0 0 5.33vw;
    }

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

    ul.flow-button li a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.flow-button li:last-child a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .flow-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    .flow-button-text {
        display: block;
    }
    
    .flow-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .flow-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }

    #faq {
        padding: 22.4vw 0 21.6vw;
    }
    
    #faq::before {
        border-top: 10.67vw solid #E7F1F8;;
    }
    
    .faq-icon {
        width: 8vw;
    }
        
    .faq-title {
        margin: 0 0 8vw;
    }
    
    .faq-title p {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    .faq-title h2 {
        font-size: 5.87vw;
        line-height: 8vw;
    }
    
    .faq-title span {
        font-size: 4.27vw;
        line-height: 8vw;
    }
    
    ul.faq-list {
        width: 100%;
    }
    
    ul.faq-list li {
        margin: 0 0 5.33vw;
    }
        
    .faq-question {
        margin: 0 0 5.33vw;
    }
    
    .faq-question-text {
        width: 58.67vw;
        border-radius: 5.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        padding: 6.4vw;
    }
    
    .faq-question-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
        text-align: left;
    }
    
    .faq-question-text::before {
        border-left: 5.33vw solid rgba(113, 143, 147, 0.1);
        border-top: 2.4vw solid transparent;
        border-bottom: 2.4vw solid transparent;
    }
    
    .faq-question-image {
        width: 16vw;
        border-radius: 16vw;
    }
        
    .faq-answer-text {
        width: 58.67vw;
        border-radius: 5.33vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        padding: 6.4vw;
    }
    
    .faq-answer-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
        text-align: left;
    }
    
    .faq-answer-text a {
        font-size: 3.2vw;
        line-height: 4.33vw;
        height: 5.33vw;
        border-radius: 0.53vw;
        padding: 0 1.2vw;
        border-bottom: 1vw solid #004270;
    }
    
    .faq-answer-text::before {
        border-right: 5.33vw solid rgba(0, 106, 178, 0.1);
        border-top: 2.4vw solid transparent;
        border-bottom: 2.4vw solid transparent;
    }
    
    .faq-answer-image {
        width: 16vw;
        border-radius: 16vw;
    }

    #cta {
        padding: 24vw 0;
    }
    
    #cta::before {
        border-top: 10.67vw solid #FFF;
    }
    
    .cta-title {
        margin: 0 0 5.6vw;
    }
    
    .cta-title h2 {
        font-size: 5.87vw;
        line-height: 11.2vw;
    }
    
    .cta-title span {
        font-size: 9.07vw;
        line-height: 11.2vw;
    }
    
    .cta-text p {
        font-size: 3.73vw;
        line-height: 6.4vw;
    }
    
    .cta-image {
        width: 25vw;
        top: -22.4vw;
        right: -2.56vw;
        transform: rotate(7deg) translate(0, 0);
    }

    #inquiry {
        padding: 13.6vw 0 21.6vw;
    }
    
    .inquiry-title {
        width: 30.4vw;
        margin: 0 auto 16vw;
        text-align: center;
        background: transparent;
    }
    
    .inquiry-title h2 {
        font-size: 5.87vw;
        line-height: 11.2vw;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 60%, #FFF7BE 60%, #FFF7BE 100%);
        display: inline;
    }
    
    .inquiry-title span {
        font-size: 9.07vw;
        line-height: 11.2vw;
    }
    
    .inquiry-title img {
        width: 29.6vw;
        height: auto;
        bottom: 0;
        left: -4vw;
        right: auto;
        transform: translate(-100%, 0);
    }
    
    .inquiry-title img:last-child {
        width: 24.8vw;
        height: auto;
        left: auto;
        right: -4vw;
        transform: translate(100%, 0);
    }
    
    ul.inquiry-list {
        display: block;
    }
    
    ul.inquiry-list li {
        width: 100%;
        margin: 0 0 11.2vw;
    }

    ul.inquiry-list li:last-child {
        margin: 0;
    }
    
    ul.inquiry-list li::before {
        width: 12vw;
        height: 8vw;
        top: -8vw;
    }
        
    .inquiry-list-title {
        width: 100%;
        height: 10.67vw;
        margin: 0 0 9.6vw;
        border: 0.53vw solid #FE6D00;
        border-radius: 10.67vw;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-title {
        border: 0.53vw solid #006AB2;
    }
    
    .inquiry-list-title::before {
        border-left: 2.4vw solid transparent;
        border-right: 2.4vw solid transparent;
        border-top: 4.8vw solid #FE6D00;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-title::before {
        border-top: 4.8vw solid #006AB2;
    }
    
    .inquiry-list-title::after {
        border-left: 1.87vw solid transparent;
        border-right: 1.87vw solid transparent;
        border-top: 3.73vw solid #FFF;
    }
    
    .inquiry-list-title h3 {
        font-size: 4.27vw;
        line-height: 10.67vw;
    }
        
    .inquiry-list-image {
        width: 100%;
        margin: 0 0 5.33vw;
    }
        
    .inquiry-list-button a {
        width: 100%;
        height: 16vw;
        border-radius: 2.67vw;
        filter: drop-shadow(0 0.8vw 1.6vw rgba(0, 0, 0, 0.16));
        border-bottom: 1.6vw solid #D25A00;
    }
    
    ul.inquiry-list li:last-child .inquiry-list-button a {
        border-bottom: 1.6vw solid #004270;
    }
        
    .inquiry-list-button-logo {
        width: 8vw;
        margin: 0 1.33vw 0 0;
    }

    ul.inquiry-list li:last-child .inquiry-list-button-logo {
        padding: 0;
    }

    .inquiry-list-button-text {
        display: block;
    }
    
    .inquiry-list-button-text span {
        display: block;
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin: 0;
    }
    
    .inquiry-list-button-text p {
        display: block;
        font-size: 5.33vw;
        line-height: 8vw;
    }
    
    #footer {
        background: linear-gradient(#FFFFFF, #E7F1F8);
        padding: 7.2vw 0;
    }
    
    .footer-logo {
        width: 39.2vw;
    }

    /* Contact */
    #contact {
        background: #fff;
        padding: 3.024vw 0 0;
    }

    #contact .monit-container,
    #thanks .monit-container {
        width: 84vw;
    }

    .contact-content {
        display: block;
    }

    .contact-information {
        width: 100%;
        padding: 0 0 12vw;
    }

    .contact-logo {
        width: 28.8vw;
        margin: 0 0 10.4vw;
    }

    .contact-title {
        margin: 0 0 8vw;
    }

    .contact-title h1 {
        font-size: 5.87vw;
        line-height: 8vw;
    }

    .contact-image {
        padding-bottom: 8vw;
        border-bottom: 0.53vw solid #888480;
        margin: 0 0 8vw;
    }

    .contact-image img {
        width: 40vw;
    }

    .contact-checklist-title {
        margin: 0 0 3vw;
    }

    .contact-checklist-title h2 {
        font-size: 5.87vw;
        line-height: 8.53vw;
    }

    .contact-checklist-title::before {
        width: 8vw;
        height: 8.53vw;
        margin-right: 2vw;
    }

    ul.contact-checklist > li {
        font-size: 3.73vw;
        line-height: 6.4vw;
    }

    ul.contact-checklist > li::before {
        width: 4vw;
        height: 4vw;
        margin-right: 1vw;
    }

    .contact-form {
        width: 100vw;
        background: #EFEFEF;
        margin: 0 -8vw;
        padding: 12vw 8vw;
    }

    .contact-form-text {
        margin: 0 0 4vw;
    }

    .contact-form-label {
        margin: 0 0 0.8vw;
    }

    .contact-form-label > label {
        font-size: 3.73vw;
        line-height: 5.87vw;
    }

    .contact-form-required {
        font-size: 2.67vw;
    }

    .contact-form-input > input[type="text"],
    .contact-form-input > input[type="email"] {
        font-size: 4vw;
        line-height: 7.2vw;
        border: 0.27vw solid #707070;
        padding: 0.67vw;
        border-radius: 1vw;
    }

    .contact-form-option {
        margin: 0 0 10.4vw;
    }

    .contact-form-option > .contact-form-label > label {
        font-size: 4.27vw;
        line-height: 10vw;
    }

    .contact-form-input input[type="checkbox"] {
        width: 4.8vw;
        height: 4.8vw;
        margin-left: 4vw;
    }

    .contact-form-option > .contact-form-input label {
        width: 72vw;
        font-size: 4.27vw;
        line-height: 10vw;
    }

    .form-check {
        padding: 0;
        margin: 0 0 16.8vw;
    }

    .contact-agreement > input {
        width: 4.8vw;
        height: 4.8vw;
        border: 0.27vw solid #000;
    }

    .contact-agreement > label a {
        font-size: 4.27vw;
        line-height: 10vw;
    }

    #contactform button {
        width: 100%;
        height: 10vw;
        font-size: 5.33vw;
        border-radius: 2.67vw;
        border-bottom: 1.6vw solid #D25A00;
    }

    #contactform button img {
        width: 5.33vw;
        margin: 1.6vw 1.33vw 0 0;
    }

    /* Thanks */
    #thanks {
        padding: 3.024vw 0;
    }

    .thanks-logo {
        width: 28.8vw;
        margin: 0 0 30vw;
    }

    .thanks-text {
        margin: 0 0 8vw;
    }

    .thanks-text p {
        font-size: 5.33vw;
        line-height: 8vw;
    }

    .thanks-button a {
        width: 100%;
        height: 16vw;
        font-size: 5.33vw;
        line-height: 16vw;
        border-radius: 2.67vw;
    }
    
    .invalid-feedback {
        font-size: 3.73vw;
    }
}