html, body {
    background-color: #22131a;
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.header-menu0 {
    top: 0;
    position: fixed;
    z-index: 9970;
    text-align: center;
    width: 100vw;
    backdrop-filter: blur(17.5px) saturate(200%);
    background-color: rgba(34, 19, 26, 0.1);
}
    
.header-menu {
    height: 34px;
    max-width: 1050px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

.head-logo {
    position: -webkit-sticky;
    position: sticky;
    display: block;
    top: 0;
    background-color: #ffffff;
    z-index: 9992;
    overflow: hidden;
    width: 200px; 
    height: 200px;
    -webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.8);
	-moz-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.8);
	box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.8);
    transition: all 0.5s ease-in-out;
}

.add {
    width: 80px;
    height: 80px;
}

.logo-container {
    position: absolute;
    margin-top: 50px;
    margin-left: 20px;
    width: auto;
    height: auto;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.logo {
    padding: 0;
    margin: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.head-logo {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 3s infinite;
}
    
.head-btn {
    margin-top: 12px;
}
    
.head-btn a {
    background: #1ab3c4;
    padding: 5px 30px 5px 30px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    
}
    
.head-btn a:hover {
    background: #ffff00;
    color: #000000;
    transition: 1.5s;
    
    --p: 10px; /* control the shape (can be percentage) */
    aspect-ratio: 1;
    clip-path: polygon(var(--p) 0,100% 0,100% 100%,0 100%);
}

.progress-container {
  width: 100%;
  height: 4px;
  background-color: #1ab3c4;
}

.progress-bar {
  height: 4px;
background: #FFFF00;
background: linear-gradient(94deg, rgba(255, 255, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
  width: 0%;
}

.header-container0 {
    background-color: #45373d;
}

.header-container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    max-width: 70%;
    margin-left: 16%;
    font-size: 35px;
    font-weight: bold;
    text-wrap: balance;
}

@keyframes fadein3 {
  from {  opacity: 0;}
  to   {  opacity: 1; }
}

.subt1 {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px #000000 dotted;
    font-size: 16px;
}

.subt1b {
    background-color: #000000;
    color: #ffff00;
    padding: 2px 2px 2px 2px;
}
    
.subt2 {
    margin-top: 10px;
    font-size: 11px;
    font-weight: normal;
    font-style: italic;
}

.nocard {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
    text-wrap: balance;
}

#t1 { 
    -webkit-text-fill-color: #ff0000;
}

.header {
    height: 300px;
}

.header-container0 {
    margin: 50px 0 0 0;
    padding: 0;
}
    
.header-container1 {
    display: block;
    position: absolute;
    width: 50%;
    height: 300px;
}

.slanted-edge{
    position: absolute;
    --p: 100px; /* control the shape (can be percentage) */
    aspect-ratio: 1;
    clip-path: polygon(var(--p) 0,100% 0,100% 100%,0 100%);
    background: #ffff00;
    width: calc(65vw); 
    right: 0;
    height: 300px;
    z-index: 948;
    
    /* Internet Explorer 10 */
    display: -ms-flexbox;
    -ms-flex-align: center;

    /* Firefox */
    display: -moz-box;
    -moz-box-align: center;

    /* Safari, Opera, and Chrome */
    display: -webkit-box;
    -webkit-box-align: center;

    /* W3C */
    display: box;
    box-align: center;
}

@keyframes fadein1 {
  from {  width: 0;}
  to   {  width: calc(65vw); }
}
    
.slanted-edge2{
    position: absolute;
    --p: 100px; /* control the shape (can be percentage) */
    aspect-ratio: 1;
    clip-path: polygon(var(--p) 0,100% 0,100% 100%,0 100%);
    background: #1ab3c4;
    width: calc(65vw + 10px);
    right: 0;
    height: 300px;
    z-index: 947;
    animation: fadein2b 1.8s;
}

@keyframes fadein2 {
  from {  width: 0;}
  to   {  width: calc(65vw + 10px); }
}

@keyframes fadein2b {
  from {  width: calc(65vw - 5vh); }
  65%  {  width: calc(65vw + 5vh); }
  to   {  width: calc(65vw + 10px); }
}

@keyframes fadein3b {
  from {  width: calc(65vw + 5vh); }
  65%  {  width: calc(65vw - 5vh); }
  to   {  width: calc(65vw); }
}
/* **************************************************************** */

.content-box {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0 10px 0;
    text-align: left;
}

.content-section-language {
    width: 100%;
    background-color: #22131a;
    color: #ffffff;
    text-align: center;
    
} 

.language-box {
    font-size: 12px;
    line-height: 28px;
    
}

.language-box_ span {
    font-weight: bold;
    padding: 4px 8px 4px 8px;
}

.link01 {
    color: #ffffff;
    text-decoration: none;
    padding: 4px 8px 4px 8px;
    white-space: nowrap;
}

.link01:hover, .language-box span {
    background: #ffff00;
    color: #000000;
    transition: 1.5s;
    padding: 4px 8px 4px 8px;
}

.link01:hover {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.link02 {
    border: 1px #000000 solid;
    color: #000000;
    padding: 10px 50px 10px 50px;
    margin: 30px 0 50px 0;
    font-size: 18px;
    
    text-align: center;
    text-decoration: none;
    
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.link02:hover {
    background: #000000;
    color: #ffffff;
    transition: 1.5s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.link03 {
    border: 1px #444 solid;
    color: #ffffff;
    padding: 5px 10px 5px 10px;
    margin: 0 0 5px 0;
    font-size: 11px;
    
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: none;
    cursor: pointer;
}

.link03:hover {
    background: #ffff00;
    color: #000000;
    transition: 1.5s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.link04 {
    border: 1px #444 solid;
    color: #ffffff;
    padding: 5px 10px 5px 10px;
    margin: 20px 10px 5px 10px;
    font-size: 11px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
    float: left;
}

.link04:hover {
    background: #ffff00;
    color: #000000;
}

.pic01 {
    float: right;
    margin: 20px 0 20px 20px;
    max-width: 400px;
}

.pic02 {
    float: right;
    margin: 20px 0 20px 20px;
    max-width: 400px;
}

.content-section-start {
    width: 100%;
    background: #0a303d;
    background: linear-gradient(157deg, rgba(10, 48, 61, 1) 30%, rgba(22, 118, 156, 1) 100%);
    color: #ffffff;
    padding: 30px 0 0 0;
    -webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
    border-bottom: 5px #000000 solid;
    line-height: 35px;
    text-wrap: balance;
} 

.quote {
    font-style: italic;
    margin: 60px 0 40px 5%;
    padding: 0 30px 0 30px;
    font-weight: bold;
    text-align: center;
    font-size: 19px;
    text-wrap: balance;
}

.content-section-howworks {
    width: 100%;
    background: #ffff00;
    background: linear-gradient(157deg, rgba(255, 255, 0, 1) 30%, rgba(255, 255, 235, 1) 100%);
    color: #000000;
    padding: 30px 0 0 0;
    -webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
    border-bottom: 5px #000000 solid;
    line-height: 35px;
}

.content-section-ai {
    width: 100%;
    background: #FFFFFF;
    color: #000000;
    padding: 30px 0 50px 0;
    overflow: auto;
    box-sizing: border-box;
} 

.content-section-who {
    width: 100%;
    background: #422d38;
    background: linear-gradient(157deg, rgba(66, 45, 56, 1) 30%, rgba(150, 120, 135, 1) 100%);
    color: #ffffff;
    padding: 30px 0 0 0;
    line-height: 35px;
} 

.content-section-international {
    position: relative;
    z-index: 2;
    padding: 30px 0 0 0;
    width: 100%;
    background-color: #000e28;
    color: #ffffff;
    line-height: 35px;
}

.content-section-safe {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 400px;
    background-color: #4f0000;
    background: #4F0000;
    background: linear-gradient(157deg, rgba(79, 0, 0, 1) 30%, rgba(227, 61, 61, 1) 100%);
    color: #ffff00;
    padding: 30px 0 0 0;
    -webkit-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 0px 20px rgba(50, 50, 50, 0.5);
    display: flex;
    flex-direction: column;
    line-height: 35px;
} 

.div_top {
    background-color: #ffffff;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    padding: 40px 40px 10px 40px;
    -webkit-border-top-left-radius: 50px;
    -webkit-border-top-right-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-topright: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/*
z-index: 0;
position: sticky;
position: -webkit-sticky;
top: 0;
*/

.content-section-free {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    background-color: #ffffff;
    color: #000000;
    padding: 30px 0 0 0;
    text-align: center;
    line-height: 35px;
} 

.content-section-qr {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 50px 0;
    overflow: auto;
} 

.content-section-faq {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #000000;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 100%);
    padding: 50px 0 50px 0;   
}

.content-section-try {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #000000;
    background: #1AB3C4;
    background: linear-gradient(90deg, rgba(26, 179, 196, 1) 0%, rgba(122, 233, 245, 1) 100%);
    padding: 50px 0 50px 0;   
}

.content-section-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 300px;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(77, 73, 73, 1) 100%);
    color: #ffffff;
    border-top: 6px #ff0000 solid;
} 

.content-section-footer p {
    margin: 100px 0 80px 0;
    text-align: center;
}

.content-section-footer-box {
    width: 100%;
}

.content-section-footer-box-left {
    float: left;
    width: 50%;
}

.content-section-footer-box-left ul {
}

.content-section-footer-box-left ul li {
    list-style: none;
}

.content-section-footer-box-right {
    float: right;
    width: 50%;
}

/*

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-top: 0;
    position: absolute;
}

@keyframes floating {
    from { transform: translate(0,  -2px); }
    65%  { transform: translate(0, 0); }
    to   { transform: translate(0, -2px); }    
}

.neon-text {
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

*/

.h_title_01 {
    font-size: 26px;
    display:inline;
    background-color: #000000;
    color:#ffc800;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_02 {
    font-size: 26px;
    display:inline;
    background-color: #000000;
    color:#ffff00;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_03 {
    font-size: 26px;
    display:inline;
    background-color: #ff452a;
    color: #000000;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_04 {
    font-size: 26px;
    display:inline;
    background-color: #ffffff;
    color: #120a2d;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_05 {
    font-size: 26px;
    display:inline;
    background-color: #ffff00;
    color: #4f0000;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_06 {
    font-size: 26px;
    display:inline;
    background-color: #000000;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.h_title_07 {
    font-size: 26px;
    display:inline;
    background-color: #000000;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.frame_text {
    width: calc(100% - 250px);
    font-size: 32px;
    font-weight: bold;
    float: right;
    margin-top: 100px;
}

.frame_text .text2 {
    font-weight: normal;
    margin-top: 20px;
    display: none;
    text-wrap: balance;
}

.frame {
    float: left;
    margin-bottom: 50px;
}

.shape {
    width: 100%;
    transform: rotateX(0deg);
    background-repeat: no-repeat;
}

.video1 {
    max-width: 200px;
}

.free-container {
    width: 100%;
    display: flex;
    gap: 50px;
    justify-content: center;
    text-align: left;
}

.free-container-box {
    position: relative;
    background-color: #ffffff;
    padding: 20px;
    color: #000000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 50vw;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    transition-property: all;
    transition-timing-function: ease-in-out;
    transition-duration: 500ms;
}

.free-container-box:hover {
    transform: translateY(-10px);
}

.free-container-box-title {
    font-size: 26px;
    font-weight: bold;
}

.free-container-box-value {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-top: auto;
    background-color: black;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    padding: 20px;
}

.qr-box {
    display: block;
    width: 100%;
}

.qr-box-left {
    float: left;
    width: 50%;
    text-align: center;
}

.qr-box-right {
    float: right;
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    padding-top: 100px;
    width: 50%;
}

/* modal */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(7px) saturate(30%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: #ffffff;
    border-radius: 8px;
    width: 80vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    border: 5px #000000 solid;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px #000000 solid;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
}

.modal-header-close {
    float: right;
    font-size: 14px;
    font-weight: bold;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.modal-close:hover {
    color: #000000;
}

.modal-content {
    padding: 10px 20px 20px 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px #000000 solid;
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
}

/**/

.accordion .accordion-item {
  border-bottom: 1px solid #000000;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: none;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 2em 1em 0;
  color: #000000;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #1AB3C4;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #1AB3C4;
  border: 1px solid #1AB3C4;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 6px;
  left: 10px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #1AB3C4;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
    padding: 0 0 10px 0;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
}

/**/

.readittext {
    -webkit-animation: bounceLeft 5s infinite;
    animation: bounceLeft 5s infinite;
}

#tw_screen {
    text-wrap: balance;
}

@-webkit-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(30px);
  }
  60% {
    transform: translateX(15px);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}

/**/

@media only screen and (max-width: 1100px) {    
    .slanted-edge{
        width: calc(70vw);
    }

    .slanted-edge2{
        width: calc(70vw + 10px);
    }
    
    @keyframes fadein2b {
      from {  width: calc(70vw - 5vh); }
      65%  {  width: calc(70vw + 5vh); }
      to   {  width: calc(70vw + 10px); }
    }
    
    .content-box {
        max-width: 1060px;
        margin-left: auto;
        margin-right: auto;
        padding: 10px 20px 10px 20px;
        text-align: left;
    }

    .frame_text {
        font-size: 30px;
    }

    .frame_text div {
        margin-top: 15px;
    }
}

@media only screen and (min-width: 2700px) {    
    .header-menu {
        max-width: 300px;
    }
}

@media only screen and (max-width: 900px) {    
    .slanted-edge{
        --p: 50px;
    }
    
    .slanted-edge2{
        --p: 50px;
    }
    
    .head-logo {
        width: 140px;
        height: 140px;
    }
    
    .main-title {
        font-size: 33px;
    }
    
    .pic01, .pic02 {
        float: right;
        margin: 30px 0 20px 20px;
        max-width: 350px;
    }
}

@media only screen and (max-width: 800px) {
    .slanted-edge{
        width: calc(70vw);
    }

    .slanted-edge2{
        width: calc(70vw + 10px);
    }
    
    @keyframes fadein2b {
      from {  width: calc(70vw - 5vh); }
      65%  {  width: calc(70vw + 5vh); }
      to   {  width: calc(70vw + 10px); }
    }
    
    .frame_text {
        float: none;
        display: block;
        text-align: center;
        width: 100%;
        margin: 0 0 40px 0;
        padding-top: 10px;
    }
    
    .frame {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .free-container {
        width: 100%;
        display: block;
        text-align: left;
    }

    .free-container-box {
        padding: 20px;
        width: calc(80% - 20px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    
    .free-container-box-title {
        font-size: 22px;
    }
    
    .free-container-box-value {
        font-size: 17px;
    }
    
    .qr-box-left {
        float: none;
        width: 100%;
        text-align: center;
    }

    .qr-box-right {
        float: none;
        font-size: 40px;
        text-align: center;
        font-weight: bold;
        padding-top: 20px;
        padding-bottom: 30px;
        width: 100%;
    }

    .content-section-footer-box-left {
        float: none;
        width: 100%;
        text-align: center;
    }
    
    .content-section-footer-box-right {
        float: none;
        width: 100%;
        text-align: center;
    }
    
    .link04 {
        border: 1px #444 solid;
        color: #ffffff;
        padding: 5px 10px 5px 10px;
        margin: 20px 10px 5px 10px;
        font-size: 11px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        float: none;
    }
    
    .head-logo {
        width: 110px;
        height: 110px;
    }
    
    .pic01, .pic02 {
        float: right;
        margin: 40px 0 20px 20px;
        max-width: 300px;
    }
}

@media only screen and (max-width: 650px) {
    .main-title {
        font-size: 30px;
    }
    
    .video1 {
        max-width: 300px;
    }
    
    .pic01, .pic02 {
        float: none;
        display: block;
        margin: 40px auto 0 auto;
        width: auto;
    }
}

@media only screen and (max-width: 550px) {
    .main-title {
        padding-left: 10px;
        font-size: 27px;
    }
}

@media only screen and (max-width: 449px) {
    .main-title {
        padding-left: 20px;
        font-size: 20px;
    }
    
    .slanted-edge{
        width: calc(87vw);
        height: 200px;
    }

    .slanted-edge2{
        width: calc(87vw + 10px);
        height: 200px;
    }
    
    @keyframes fadein2b {
      from {  width: calc(87vw - 5vh); }
      65%  {  width: calc(87vw + 5vh); }
      to   {  width: calc(87vw + 10px); }
    }
    
    .header {
        height: 200px;
    }
    
    .header-container1 {
        height: 200px;
    }
    
    .head-logo {
        width: 80px;
        height: 80px;
    }
}