
  html {
    font-size: 0.76923vw;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(6px, 0.76923vw, 10px);
    margin: 0;
  }
  
  @media print, screen and (max-width: 641px) {
    html {
      font-size: 1.5625vw;
      font-size: clamp(6px, 0.76923vw, 10px);
      /* font-size: 6px; */
    }
  }
  body {
    overflow-x: hidden;
    position: relative;
    -webkit-margin-collapse: collapse;
  }
  
  span.purple-text {
    color: #C64F9E;
  }
  
  span.text-sm {
    font-size: 1.2rem;
  }
  
  .purple-text {
    color: #C64F9E;
  }
  
  .green-text {
    color: #6fb7d2;
  }
  
  .red-text {
    color: red;
  }
  
  .black-text {
    color: black;
  }
  
  .primary-text {
    color: #8FC123;
  }
  
  .blue-text {
    color: #2ab4fd;
  }
  
  .white-text {
    color: white;
  }
  
  .text-2xl {
    font-size: 4rem;
  }
  
  .text-xl {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .text-lg {
    font-size: 2rem;
  }
  
  .text-md {
    font-size: 1.5rem;
  }
  
  .text-sm {
    font-size: 1.2rem;
  }
  
  .topviewicon {
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    background-color: #6fb7d2;
    z-index: 2;
  }
  
  .scrollbar-container::-webkit-scrollbar {
    width: 5px;
    height: 20px;
  }
  
  /* Track */
  .scrollbar-container::-webkit-scrollbar-track {
    background: #F1F1F1;
    /* Color of the track */
  }
  
  /* Handle */
  .scrollbar-container::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar handle */
  }
  
  /* Handle on hover */
  .scrollbar-container::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    display: block;
    background: #555;
    /* Color of the scrollbar handle when hovered */
  }
  
  .scrollbar-container-x::-webkit-scrollbar {
    width: 20px;
    height: 5px;
  }
  
  /* Track */
  .scrollbar-container-x::-webkit-scrollbar-track {
    background: #F1F1F1;
    /* Color of the track */
  }
  
  /* Handle */
  .scrollbar-container-x::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar handle */
  }
  
  /* Handle on hover */
  .scrollbar-container-x::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    display: block;
    background: #555;
    /* Color of the scrollbar handle when hovered */
  }
  
  .inter-100 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
  }
  
  .alatsi-regular {
    font-family: "Alatsi", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .sahitya-regular {
    font-family: "Sahitya", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .londrina-solid-light {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .league-spartan {
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  
  .smythe-regular {
    font-family: "Smythe", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .updock-regular {
    font-family: "Updock", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  .fvcontainer {
    width: 100%;
  }
  .fvcontainer-img {
    width: 100%;
    height: auto;
  }
  
  .concept-wrapper {
    background-color: white;
    padding: 5rem 0;
  }
  .concept-wrapper .concept {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }
  .concept-wrapper .concept-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60rem;
    height: 10rem;
  }
  .concept-wrapper .concept-sectiontag {
    width: 100%;
    width: 60rem;
    height: 8rem;
    background: #6fb7d2;
    color: white;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .concept-wrapper .concept-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -2.6666666667rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .concept-wrapper .concept-sectiontag {
      width: 100%;
    }
  }
  .concept-wrapper .concept-content {
    width: 100%;
    height: 100%;
    padding: 1.5rem 5rem;
    text-align: center;
    border-width: 2px;
    border-style: solid;
    border-color: #6fb7d2;
    border-radius: 1rem;
    color: black;
    font-size: 2rem;
  }
  
  .rank-wrapper {
    background-color: #e6fffb;
    padding: 5rem 0;
  }
  .rank-wrapper .rank {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 2rem;
  }
  .rank-wrapper .rank-sectiontag {
    width: 100%;
    width: 60rem;
    height: 8rem;
    background: #6fb7d2;
    color: white;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .rank-wrapper .rank-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -2.6666666667rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .rank-wrapper .rank-sectiontag {
      width: 100%;
    }
  }
  .rank-wrapper .rank-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rank-wrapper .rank-topbtngroup {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10%;
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .rank-wrapper .rank-topbtn-blue {
    width: 50rem;
    background-color: #2ab4fd;
    opacity: 100%;
    text-align: center;
    font-size: 2rem;
    border: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem 3rem;
    color: white;
  }
  @media print, screen and (max-width: 375px) {
    .rank-wrapper .rank-topbtn-blue {
      padding: 1rem 0;
    }
  }
  .rank-wrapper .rank-topbtn-green {
    width: 50rem;
    background-color: #6fb7d2;
    opacity: 70%;
    text-align: center;
    font-size: 2rem;
    border: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem 3rem;
    color: white;
  }
  @media print, screen and (max-width: 375px) {
    .rank-wrapper .rank-topbtn-green {
      padding: 1rem 0;
    }
  }
  .rank-wrapper .rank-content-blue {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-width: 2px;
    border-style: solid;
    border-color:#2B4570;
    border-radius: 1rem;
    padding-bottom: 3rem;
    background-color: white;
  }
  .rank-wrapper .rank-content-green {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-width: 2px;
    border-style: solid;
    border-color: #6fb7d2;
    border-radius: 1rem;
    padding-bottom: 3rem;
  }
.rank-wrapper .rank-content-site {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding: 0 0 5rem;
  overflow-x: hidden;
}
  .rank-wrapper .rank-content-site-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: bolder;
    color: white;
    padding: 1rem;
    background-color: #2B4570;
    gap: 2rem;
    border-radius:0.5rem 0.5rem 0 0 ;
  }
  @media print, screen and (max-width: 640px) {
    .rank-wrapper .rank-content-site-title {
      font-size: 2.5rem;
    }
  }
  .rank-wrapper .rank-content-site-title-rankicon {
    width: 10rem;
  }
  .rank-wrapper .rank-content-site-siteimage {
    display: flex;
    justify-content: center;
    width: 80%;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 2rem;
  }
  .rank-wrapper .rank-content-site .first-border {
    border: 2px solid #FFD700;
  }
  .rank-wrapper .rank-content-site .second-border {
    border: 2px solid #C0C0C0;
  }
  .rank-wrapper .rank-content-site .third-border {
    border: 2px solid #cb6d51;
  }
  .rank-wrapper .rank-content-site-description {
    width: 80%;
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  @media screen and (max-width: 640px) {
    .rank-wrapper .rank-content-site-description {
      width: 90%;
    }
  }
  .rank-wrapper .rank-content-site-description-header {
    font-size: 2.3rem;
    letter-spacing: normal;
    font-weight: bolder;
    text-align: center;
    word-break: break-all;
    color: red;
  }
  @media screen and (max-width: 640px) {
    .rank-wrapper .rank-content-site-description-header .nextline {
      display: block;
    }
  }
  .rank-wrapper .rank-content-site-description-content {
    font-size: 1.7em;
    font-weight: normal;
    line-break: loose;
  }
  .rank-wrapper .rank-content-site-siteservice {
    display: flex;
    width: 80%;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
  }
  .rank-wrapper .rank-content-site-siteservice-tablebox {
    width: 100%;
    overflow: hidden;
  }
  .rank-wrapper .rank-content-site-siteservice-tablebox .service-table {
    width: 100%;
    font-size: 2rem;
    border: 2px solid #6fb7d2;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .rank-wrapper .rank-content-site-siteservice-tablebox .service-table thead {
    border: 1px solid #6fb7d2;
  }
  .rank-wrapper .rank-content-site-siteservice-tablebox .service-table thead th {
    padding: 1rem;
    font-size: 2rem;
    background-color: #6fb7d2;
    color: white;
    border-right: 1px solid white;
  }
  .rank-wrapper .rank-content-site-siteservice-tablebox .service-table tbody td {
    padding: 1rem;
    text-align: center;
    overflow-wrap: break-word;
    border: 1px solid #6fb7d2;
    color: black;
    font-size: 1em;
    font-weight: bold;
  }
  .rank-wrapper .rank-content-site-siteservice-time {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  @media print, screen and (max-width: 768px) {
    .rank-wrapper .rank-content-site-siteservice-time {
      gap: 5rem;
    }
  }
  .rank-wrapper .rank-content-site-siteservice-time-content {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    gap: 1rem;
  }
  @media print, screen and (max-width: 768px) {
    .rank-wrapper .rank-content-site-siteservice-time-content {
      font-size: 2.5rem;
    }
  }
  @media print, screen and (max-width: 375px) {
    .rank-wrapper .rank-content-site-siteservice-time-content {
      font-size: 2rem;
    }
  }
  .rank-wrapper .rank-content-site-siteservice-time-content-list {
    width: 100%;
    border: 0;
    border-radius: 1rem;
    border-style: solid;
    background-color: #6fb7d2;
    color: white;
    padding: 0.5rem 2rem;
    text-align: center;
  }
  .rank-wrapper .rank-content-site-siteservice-time-content-des {
    color: black;
    padding: 0.5rem 2rem;
    text-align: center;
  }
  .rank-wrapper .rank-content-site-siteservice-bank {
    display: flex;
    flex-direction: column;
    border: 2px;
    border-radius: 0.5rem;
    border-style: solid;
    border-color: #6fb7d2;
    width: 100%;
  }
  .rank-wrapper .rank-content-site-siteservice-bank-title {
    width: 100%;
    background-color: #6fb7d2;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    color: white;
  }
  .rank-wrapper .rank-content-site-siteservice-bank-title .icon-button {
    background-color: inherit;
    font-size: 2rem;
  }
  .rank-wrapper .rank-content-site-siteservice-bank-content {
    font-size: 2rem;
    color: black;
    padding: 1rem 2rem;
    text-align: center;
    transition: all 1s ease;
  }
  .rank-wrapper .rank-content-site-advantage {
    display: flex;
    flex-direction: column;
    border: 2px;
    border-radius: 0.5rem;
    border-style: solid;
    border-color: #6fb7d2;
    background-color: white;
    width: 80%;
    margin-top: 4rem;
  }
  .rank-wrapper .rank-content-site-advantage-title {
    width: 100%;
    background-color: #6fb7d2;
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    color: white;
  }
  .rank-wrapper .rank-content-site-advantage-content {
    font-size: 2rem;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  .rank-wrapper .rank-content-site-advantage-content .itembox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .rank-wrapper .rank-content-site-advantage-content-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
    gap: 2rem;
    vertical-align: baseline;
  }
  .rank-wrapper .rank-content-site-advantage-content-item-image {
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rank-wrapper .rank-content-site-advantage-content-item-text {
    overflow-wrap: break-word;
  }
  .rank-wrapper .rank-content-site-review {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 4rem;
  }
  .rank-wrapper .rank-content-site-review .content {
    display: flex;
    flex-direction: column;
    border: 2px;
    border-radius: 0.5rem;
    border-style: solid;
    border-color: #6fb7d2;
    width: 100%;
    height: auto;
  }
  .rank-wrapper .rank-content-site-review .content .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: auto;
    background-color: #6fb7d2;
    padding: 1.5rem 2rem;
    font-size: 2rem;
    color: white;
  }
  .rank-wrapper .rank-content-site-review .content .title .image {
    width: 4rem;
  }
  .rank-wrapper .rank-content-site-review .content .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 2rem;
    color: black;
    padding: 2rem 4rem;
  }
  @media screen and (max-width: 640px) {
    .rank-wrapper .rank-content-site-review .content .item {
      min-height: 140px;
      height: auto;
    }
  }
  .rank-wrapper .rank-content-site-review .swiper-container {
    position: relative;
    width: 100%;
  }
  .rank-wrapper .rank-content-site-review .swiper-container > .swiper-slide__content {
    position: absolute;
    top: 0;
  }
  .rank-wrapper .rank-content-site-review .swiper-slide {
    display: flex;
    background: #eee;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
  }
  .rank-wrapper .rank-content-site-review .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  .rank-wrapper .rank-content-site-review .swiper-slide__content {
    height: 300px;
  }
  .rank-wrapper .rank-content-site-foottxt {
    width: 80%;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 4rem;
  }
  .rank-wrapper .rank-content-site-linkbtn {
    margin-top: 4rem;
    background: #F56476;
    color: white;
    width: 70rem;
    height: auto;
    border-radius: 7rem;
    border: 2px solid #F56476;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    transition: background-color 0.3s ease;
  }
  .rank-wrapper .rank-content-site-linkbtn:hover {
    background: white;
    color: #F56476;
  }
  @media screen and (max-width: 640px) {
    .rank-wrapper .rank-content-site-linkbtn {
      font-size: 2.5rem;
      border-radius: 5rem;
      padding: 1rem 1rem;
      width: 90%;
    }
  }
  
  .step-wrapper {
    background-color: white;
    padding: 5rem 0;
  }
  .step-wrapper .step {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }
  .step-wrapper .step-sectiontag {
    width: 100%;
    width: 60rem;
    height: 10rem;
    background: #6fb7d2;
    color: white;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .step-wrapper .step-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -3.3333333333rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2.5rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .step-wrapper .step-sectiontag {
      width: 100%;
    }
  }
  .step-wrapper .step-contentbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
    border: 2px solid #6fb7d2;
    border-radius: 1rem;
    padding: 3rem;
    gap: 4rem;
  }
  .step-wrapper .step-contentbox-content {
    display: flex;
    justify-content: center;
    width: 80%;
    gap: 2rem;
  }
  @media screen and (max-width: 640px) {
    .step-wrapper .step-contentbox-content {
      width: 100%;
    }
  }
  .step-wrapper .step-contentbox-content-title-1 {
    width: 10rem;
    height: 10rem;
    border: 2px solid #6fb7d2;
    border-radius: 50%;
    background-color: #6fb7d2;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 4rem;
  }
  .step-wrapper .step-contentbox-content-description-1 {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    background-color: rgba(80, 200, 120, 0.05);
    border: 2px solid #6fb7d2;
    border-radius: 1rem;
    padding: 2rem 3rem;
    font-size: 2rem;
    font-weight: normal;
  }
  .step-wrapper .step-contentbox-content-description-1-header {
    font-size: 2.5rem;
    font-weight: bolder;
    color: red;
  }
  .step-wrapper .step-contentbox-content-title-2 {
    width: 10rem;
    height: 10rem;
    border: 2px solid #2b4570;
    border-radius: 50%;
    background-color: #2b4570;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 4rem;
  }
  .step-wrapper .step-contentbox-content-description-2 {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    background-color: rgba(42, 180, 253, 0.05);
    border: 2px solid #2b4570;
    border-radius: 1rem;
    padding: 2rem 3rem;
    font-size: 2rem;
    font-weight: normal;
  }
  .step-wrapper .step-contentbox-content-description-2-header {
    font-size: 2.5rem;
    font-weight: bolder;
    color: red;
  }
  .step-wrapper .step-contentbox-content-title-3 {
    width: 10rem;
    height: 10rem;
    border: 2px solid #5E8C61;
    border-radius: 50%;
    background-color: #5E8C61;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 4rem;
  }
  .step-wrapper .step-contentbox-content-description-3 {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    background-color: rgba(143, 193, 35, 0.05);
    border: 2px solid #5E8C61;
    border-radius: 1rem;
    padding: 2rem 3rem;
    font-size: 2rem;
    font-weight: normal;
  }
  .step-wrapper .step-contentbox-content-description-3-header {
    font-size: 2.5rem;
    font-weight: bolder;
    color: red;
  }
  
  .table-wrapper {
    background-color: #e6fffb;
    padding: 5rem 0;
  }
  .table-wrapper .table {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }
  .table-wrapper .table-sectiontag {
    width: 100%;
    width: 60rem;
    height: 8rem;
    background: #6fb7d2;
    color: white;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .table-wrapper .table-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -2.6666666667rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .table-wrapper .table-sectiontag {
      width: 100%;
    }
  }
  .table-wrapper .table-contentbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 2px solid #6fb7d2;
    border-radius: 1rem;
    background-color: white;
    padding: 2rem;
    gap: 4rem;
  }
  .table-wrapper .table-linkbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6fb7d2;
    border: 2px solid #6fb7d2;
    border-radius: 2rem;
    padding: 2rem 4rem;
    color: white;
    font-size: 2.5rem;
  }
  .table-wrapper .table-linkbtn:hover {
    background-color: white;
    color: #6fb7d2;
  }
  .table-wrapper .tablebox {
    width: 100%;
    overflow-x: auto;
  }
  .table-wrapper table.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #F1FFF6;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .table-wrapper table.comparison-table thead {
    border: 1px solid #6fb7d2;
  }
  .table-wrapper table.comparison-table thead th {
    padding: 1rem;
    background-color: #5E8C61;
    color: white;
    border-right: 1px solid white;
  }
  .table-wrapper table.comparison-table thead tr {
    border-right: 1px solid #6fb7d2;
    border-radius: 0.5rem;
  }
  .table-wrapper table.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #6fb7d2;
  }
  .table-wrapper table.comparison-table tbody td img {
    width: 5rem;
  }
  .table-wrapper table.comparison-table tbody :first-child {
    text-align: start;
    vertical-align: middle;
  }
  .table-wrapper .highlight {
    color: red;
    font-weight: bold;
  }
  .table-wrapper .details-button {
    background-color: #F56476;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
  }
  .table-wrapper .details-button:hover {
    background-color:#F56476BF;
  }
  @media print, screen and (max-width: 768px) {
    .table-wrapper table.comparison-table {
      font-size: 2rem;
      width: 768px;
    }
  }
  
  .faq-wrapper {
    background-color: white;
    padding: 5rem 0;
  }
  .faq-wrapper .faq {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }
  .faq-wrapper .faq-sectiontag {
    width: 100%;
    width: 60rem;
    height: 8rem;
    background: #6fb7d2;
    color: white;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .faq-wrapper .faq-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -2.6666666667rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .faq-wrapper .faq-sectiontag {
      width: 100%;
    }
  }
  .faq-wrapper .faq-contentbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border: 2px solid #6fb7d2;
    border-radius: 1rem;
    background-color: white;
    padding: 3rem;
    gap: 3rem;
  }
  .faq-wrapper .faq-contentbox-item {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 1rem;
  }
  .faq-wrapper .faq-contentbox-item-itemtxt {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .faq-wrapper .faq-contentbox-item-image {
    width: 4rem;
  }
  
  .contact-wrapper {
    background-color: #e6fffb;
    padding: 5rem 0;
  }
  .contact-wrapper .contact {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }
  .contact-wrapper .contact-sectiontag {
    width: 100%;
    width: 60rem;
    height: 8rem;
    background: #6fb7d2;
    color: white;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding: 2rem;
  }
  .contact-wrapper .contact-sectiontag:after {
    content: "";
    position: absolute;
    bottom: -2.6666666667rem;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2rem;
    border-style: solid;
    border-color: #6fb7d2 transparent transparent transparent;
  }
  @media screen and (max-width: 378px) {
    .contact-wrapper .contact-sectiontag {
      width: 100%;
    }
  }
  .contact-wrapper .contact-contentbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3rem;
  }
  .contact-wrapper .contact-contentbox-itemtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    font-weight: bold;
    font-size: 2rem;
    gap: 1rem;
  }
  .contact-wrapper .contact-contentbox-itemdescription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 2rem;
    color:#2B4570;
    gap: 1rem;
  }
  
  .movebuttonlist-wrapper {
    background-color: white;
    padding: 5rem;
  }
  .movebuttonlist-wrapper .movebuttonlist {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
    text-align: center;
    padding: 0 2rem;
  }
  @media screen and (max-width: 640px) {
    .movebuttonlist-wrapper .movebuttonlist {
      flex-direction: column;
      gap: 3rem;
    }
  }
  .movebuttonlist-wrapper .movebuttonlist-item1 {
    width: 50rem;
    background-color: #6FB7D2;
    opacity: 1;
    text-align: center;
    font-size: 2rem;
    border: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem 3rem;
    color: white;
    border: 1px solid #6FB7D2;
    border-radius: 0.5rem;
    font-size: 1.6rem;
  }
  .movebuttonlist-wrapper .movebuttonlist-item1:hover {
    border: 1px solid #6FB7D2;
    background-color: white !important;
    color: #6FB7D2;
    border-radius: 0.5rem;
  }
  .movebuttonlist-wrapper .movebuttonlist-item2 {
    width: 50rem;
    background-color: #5E8C61;
    opacity: 1;
    text-align: center;
    font-size: 2rem;
    border: 0;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem 3rem;
    color: white;
    border: 1px solid #5E8C61;
    border-radius: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
  }
  .movebuttonlist-wrapper .movebuttonlist-item2:hover {
    border: 1px solid #5E8C61;
    background-color: white;
    color: #5E8C61;
    border-radius: 0.5rem;
  }
  
  .footnav {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #8FC123;
    font-weight: bold;
    padding: 0 1rem;
    gap: 3rem;
  }
  .footnav :hover {
    color: #6fb7d2;
  }
  
  .foot {
    width: 100%;
    background-color: #2B4570;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    padding: 2rem;
    font-size: 2rem;
  }
  
  /**
  * @file _reset.scss
  **/
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    border: 0;
    max-width: 1920px;
  }
  
  a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
  }
  
  a:hover img {
    opacity: 0.5;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 0.76923vw;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(6px, 0.76923vw, 10px);
    margin: 0;
  }
  
  @media print, screen and (max-width: 641px) {
    html {
      font-size: 1.5625vw;
      font-size: clamp(6px, 0.76923vw, 10px);
      /* font-size: 6px; */
    }
  }
  *::-moz-selection {
    background: #826F34;
    color: white;
  }
  *::selection {
    background: #826F34;
    color: white;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1;
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  *:focus {
    outline: none;
  }
  
  blockquote,
  q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before,
  q::after {
    content: none;
  }
  
  table {
    border-spacing: 0;
    border-collapse: collapse;
  }
  
  button {
    cursor: pointer;
    border: 0;
    outline: none;
  }
  
  table td,
  table th {
    padding: 0;
    border: 0;
  }
  
  img {
    max-width: 100%;
    line-height: 0;
    vertical-align: bottom;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  input:focus {
    outline: 0;
  }
  
  td,
  th,
  tr {
    vertical-align: middle;
  }
  
  dd,
  dl,
  dt,
  figure,
  h6,
  img,
  ol,
  picture,
  table,
  ul {
    margin: 0;
  }
  
  ol,
  ul {
    padding: 0;
    list-style-type: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  fieldset,
  legend {
    padding: 0;
  }
  
  figure {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .pc-only {
    display: block;
  }
  @media screen and (max-width: 768px) {
    .pc-only {
      display: none !important;
    }
  }
  
  .sp-only {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp-only {
      display: block !important;
    }
  }/*# sourceMappingURL=style.css.map */