@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

/* Reset img */
img {
  display: block;
}

/* Break point */


/*  Colors */ 







/* Typography */




/* Header */

.header-for-max-lp .links-in-the-page ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.header-for-max-lp .links-in-the-page ul li {
    display: inline-block;
}
.middle-header .links-in-the-page ul li{
  width: 25%;
  text-align: center;
}

.header-for-max-lp .right-header a, .header-for-max-lp .middle-header a {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 28px 22px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}

.header-for-max-lp .right-header a:hover, .header-for-max-lp .middle-header a:hover {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 30px
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #333333;
  width: 100%;
}

.header-for-max-lp .header__logo {
  width: 124px;
}

.top-header {
  background-color: #000;
}

.header__container button{
  display: none;
}

.middle-header {
  background-color: #c80023;
}

.middle-header .header__navigation {
  width: 100%;
}

.middle-header ul {
  display: flex;
  justify-content: space-around;
}

.bottom-header {
  background-color: #000;
}

.sp-header {
  display: none;
}

.sp-header button {
  background-color: #000;
  border: none;
}

.sp-header button img {
  height: 26px;
}
.nav_sponly{
  display: none!important;
}


@media (max-width: 767px) {
  .middle-header {
    display: none;
  }
  

  .header__container button{
    display: block;
  }

  .header-for-max-lp .header__logo {
    width: 84px;
    margin-left: 0;
    padding: 5px 0;
  }

  .header-for-max-lp .links-in-the-page ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 53px;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
    background: #000;
    transition: ease .4s;
  }

  .header-for-max-lp .right-header a{
    display: block;
    padding: 30px;
  }

  
  /* Hamburger Icon */
  .header__hamburger {
    width: 23px;
    height: 100%;
  }

  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    padding: 0px;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 4px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  /* Hamburger icon after click */
  .header__nav.active {
    transform: translateX(0);
  }

  .hamburger.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: -6px;
    transform: rotate(-45deg);
  }

  .header__navigation.active {
    transform: translateY(0);
    display: contents;
  }
  .nav_sponly{
    display: block!important;
  }
  .top-header_sp {
    position: fixed; /* スクロールしても固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 他の要素より前に表示 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影をつけて区別をつける */
    border-top: 6px solid #c80023;
}

}

/* Footer */

.footer-for-max-lp {
  border-top: 8px solid #c80023;
  padding: 15px 0;
  line-height: 1.42857143;
  background-color: #000!important;
  
}

.footer-for-max-lp > .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-for-max-lp img {
  width: 240px;
}

.footer-for-max-lp span {
  font-family: Roboto;
  font-size: 16px;
  color: #fff!important;
  text-align: right;
}

.footer-for-max-lp .right-footer a {
  font-family: Roboto;
  font-size: 18px;
  color: #c80023;
  text-decoration: none;
  text-transform: none;
}

.footer-for-max-lp .right-footer a:hover {
  font-family: Roboto;
  font-size: 18px;
  color: #c80023;
  text-decoration: underline;
  text-transform: none;
}

.footer-for-max-lp .right-footer li {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 6px;
  border-left: 2px solid #fff;
  line-height: 1;
}

.footer-for-max-lp .right-footer li:first-child {
  border-left: none;
}

#scroll-to-top {
  z-index: 5000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(103, 15, 15);
  opacity: 0.7;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  border: none;
  display: none;
}

#scroll-to-top.show {
  display: block;
}

#scroll-to-top i {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 20px;
  transition: all 0.3s ease;
}

#scroll-to-top:hover {
  z-index: 5000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  border: none;
}

#scroll-to-top:hover i {
  position: absolute;
  left: 15px;
  top: 7px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .footer-for-max-lp > .content-wrapper {
    flex-direction: column;
  }

  .footer-for-max-lp .left-footer {
    margin-bottom: 10px;
  }

  .footer-for-max-lp .right-footer .menu__item--depth-1 {
    border-top: none;
  }

  .footer-for-max-lp span{
    font-size: 12px;
  }

  .footer-for-max-lp span, .footer-for-max-lp li {
    text-align: center;
  }

  .footer-for-max-lp .right-footer li {
    border-left: none;
  }
  .footer-for-max-lp .right-footer a{
    font-size: 16px;
    line-height: 1.6;
  }
  .menu--mobile{
    margin-top: 20px;
  }
}



/* --------------------- 
    common css
--------------------- */
section{
  padding: 120px 0;
}
figure{
  margin:0;
}
p{
  margin: 0;
  font-size: 21px;
}
h1, h2, h3, h4, h5, h6, ol, ul {
  margin: 0;
  list-style: none;
  color: #fff!important;
}
small{
  display: block;
  text-align: right;
  font-size: 12px!important;
}
h2{
  margin-bottom: 60px;
  text-align: center;
}
.content-wrapper{
  max-width: 1080px!important;
}
body{
  line-height: 1.5;
  color: #fff!important;
}
.sp-only{
  display: none;
}
/* --------------------- 
    kv
--------------------- */

.kv>.content-wrapper{
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.kv video{
  width: 100%;
  height: 100vh;
  background: url(https://45941726.fs1.hubspotusercontent-na1.net/hubfs/45941726/MAX_LP/fv/RB443T_Branding%20video_EU_bg.mov) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  object-fit: cover;
}
.kv h1{
  width: calc(750 / 1440 * 100%);
  max-width: 100%;
  height: auto;
}
.kv p{
  font-size: calc(42 / 1440 * 100vw);
  line-height: 1.2;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 700;
}

/* --------------------- 
    Section 1
--------------------- */
.bg1 {
    background-color: #c80023;
    background-image: url(https://45941726.fs1.hubspotusercontent-na1.net/hubfs/45941726/MAX_LP/section1/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: top right;
}
.bg1::before{
    content: "";
    position: absolute;
    top: -75pt;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 75pt 100vw;
    border-color: transparent transparent #C80023;
}
.product-main{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 0 auto 60px;
}
.product-title{
  width: 40%;
}
.product-title p{
  font-family: Raleway, sans-serif;
  font-weight: 700;
}
.product-title p:first-child{
  width: 50%;
  margin-bottom: 15px;
}
.product-title p:nth-child(2){
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: 72px;
    width: fit-content;
    margin-bottom: 30px;
  }
.product-title p:nth-child(3){
  font-size: 42px;
  line-height: 1.3;
  font-style: italic;
}
.product-image{
  width: 60%;
  display: flex;
  align-items: flex-start;
}
.product-image div:nth-child(2){
  margin-top: -35px;
}

/* --------------------- 
    Section 2
--------------------- */
.bg2{
  background-color: #000;
}
.section2{
  text-align: center;
}
.section2 h2{
  font-size: 56px;
  /* font-family: Raleway, serif;  */
  color: #fff;
}
.section2 .feature-subtitle{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

h4 {
  display: flex;
}
.headline-inner {
  display: block;
}
span.redline {
  background: linear-gradient(transparent 60%, rgba(200, 1, 35, 0.5) 60%);
  display: inline;
}
.section2 .feature-subtitle img {
  max-width: 100px;
}
.section2 h3{
  color: #C80023!important;
  margin-bottom: 10px;
  font-size: 48px;
  font-style: italic;
}
.section2 h3 span{
  font-size: 36px;
  font-weight: 500;
}
.feature-point{
  max-width: 620px;
  margin: auto;
}
.feature-point>p{
  margin-bottom: 20px;
}
.feature1{
  margin-top: 120px;
}
.feature-bg-red{
  background-color: #C80023;
  padding: 60px;
  margin-top: 30px;
  margin-bottom: 60px;
}
.feature1 .feature-bg-red:last-child{
  margin-bottom: 120px;
}
.feature-bg-red>p>img{
  margin-bottom: 60px;
}
.feature1-flex{
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin-top: 60px;
}
.feature1-flex div:first-child{
  width: 50%;
}
.feature1-flex div:first-child p:first-child{
  font-size: 28px;
  font-family: Raleway, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
.feature1-flex div:nth-child(2){
  width: 50%;
}
.feature-bg-red p{
  text-align: left;
}
.feature-bg-red ul{
  padding-left:0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.feature-bg-red ul li{
  width: 100%;
  margin-right: 30px;
}
.feature-bg-red ul li:nth-child(3){
  margin-right: 0;
}
.feature-bg-red ul li p:nth-child(2){
  margin-bottom: 0;
}
.feature-bg-red ul li p:first-child{
  margin-bottom: 30px;
}
.feature-bg-red ul li small{
  text-align: left;
  margin-top: 5px;
}
.feature-bg-red>div>figure{
  margin-bottom: 30px;
}
.feature-bg-red>div p{
  margin-bottom: 60px;
}

.feature-twintier {
  align-items: center;
  display: flex;
  margin-bottom: 30px;
}
.feature-twintier::before,
.feature-twintier::after {
  background-color: #fff;
  border-radius: 5px;
  content: "";
  flex-grow: 1;
  height: 2px;
}
.feature-twintier::before {
  margin-right: 30px;
}
.feature-twintier:after {
  margin-left: 30px;
}
.feature-twintier>img{
  width: 35%;
}
.feature-twintier-img{
  margin-bottom: 60px;
}
.feature23-flex{
  display: flex;
  align-items:stretch;
  gap: 20px;
  margin-bottom: 60px;
}
.feature-bg-gray{
  background-color: #333;
  padding: 60px;
  height: 460px;
  margin-top: 30px;
}
.feature-bg-gray figure{
  margin-bottom: 30px;
}
.feature-bg-gray p{
  text-align: left;
}
.feature-notes-flex{
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
}

.feature-notes-flex div figure img{
  max-height: 140px;
}
.feature-notes-flex div{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}


.feature-notes-flex div:first-child{
  position: relative; 
  height: 140px;
	line-height: 140px;
	margin-right: 2em;
  width: 50%;
}
.feature-notes-flex div:first-child::after {
	position: absolute;
	top: 0;
	left: 100%;
	margin: 0 1rem;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.feature-notes-flex div:nth-child(2){
	height: 140px;
	line-height: 140px;
  width: 50%;
}
.feature-notes-flex div:first-child p,.feature-notes-flex div:nth-child(2) p{
  font-size: 24px;
  line-height: 1.3;
  text-align: left;
}

/* --------------------- 
    Section 3
--------------------- */
.bg3{
  background-color: #333;
  text-align: center;
}
.section3 ul{
  display: flex;
  gap: 60px;
  padding-left: 0;
}
.section3 ul li figure{
  margin-bottom: 30px;
}
.section3 ul li p{
  background-color: #000;
  padding: 20px;
  font-size: 28px;
  line-height: 1.3;
}


/* --------------------- 
    Section 4
--------------------- */
table{
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}
table, td, th{
  background-color: inherit!important;
  border: none!important;
  border-bottom: 1px solid #fff!important;
  text-align: left;
  color: #fff!important;
}
th{
  padding-left: 0!important;
}

.bg4{
  background-color: #000;
  background-image: url(https://45941726.fs1.hubspotusercontent-na1.net/hubfs/45941726/MAX_LP/section3/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section4 h2{
  margin-bottom: 42px;
}
/* --------------------- 
    Section 5
--------------------- */
.bg5{
  background-color: #C80023;
}
.section5 table tr:first-child th {
  font-size: 48px;
  font-family: Raleway, sans-serif;
}
.section5 table tr:first-child th, .section5 table tr:first-child td{
  border-bottom: none !important;
}
.section5 table tr{
  width:100%;
}
.section5 table tr th{
  padding-right: 60px;
}
.section5 table tr:first-child td,
.section5 table tr:first-child th {
  vertical-align: middle;
  text-align: center;
}
.section5 table tr:first-child td img {
  width: 70%
}
/* --------------------- 
    Section 6
--------------------- */
.bg6{
  background-color: #000;
}

/* --------------------- 
    Form
--------------------- */

.form-title, .submitted-message, form{
  background-color: #EFEFEF!important;
  font-style: inherit!important;
  max-width: 1080px !important;
  margin: 0 auto;
  color: #000;
}
form input[type=email], form input[type=file], form input[type=number], form input[type=password], form input[type=search], form input[type=tel], form input[type=text], form select, form textarea{
  width: 100% !important;
  border: none!important;
  font-size: 16px;
  padding: 15px;
  color: #000!important;
}
#hs_cos_wrapper_widget_1732595533717 input[type="submit"]{
  padding: 30px;
  width: 40%;
  background-color: #c80023;
  border-radius:0;
}
.legal-consent-container .field.hs-form-field{
  margin-bottom: 30px!important;
}
.actions{
  text-align: center;
}
#hs_cos_wrapper_widget_1732595533717{
  padding: 120px 0;
}
#hs_cos_wrapper_widget_1732595533717 .form-title{
  font-size: 48px;
  line-height: 1.3;
  font-family: Raleway, sans-serif!important;
  color: #000!important;
}

.form-title, form label, form legend{
  color: #000!important;
}
form label{
  font-size: 18px;
}
.hs-error-msg {
    color: #ef6b51!important;
    font-size: 14px;
}

.hs-form-booleancheckbox-display{
  display: flex;
}
.legal-consent-container .hs-form-booleancheckbox-display>span p{
  margin-left:0!important;
}
form input[type=checkbox], form input[type=radio]{
  margin-right: 0!important;
  transform: scale(1.6);
}




/* Mobile */
@media (max-width: 767px){

/* --------------------- 
    common 
--------------------- */
small {
    text-align: left;
}
.section2 h2, h2{
  font-size: 32px!important;
  margin-bottom: 20px!important;
}
.section2 h3{
  font-size: 28px;
  color: #c80023 !important;
}
section {
    padding: 60px 0;
}
p{
  font-size: 16px;
}
.pc-only{
  display: none;
}
.sp-only{
  display: block;
}
.content-wrapper{
  padding: 0 30px!important;
}
/* --------------------- 
    kv 
--------------------- */
  .kv video{
    position: absolute;
  }
  .kv h1{
    width: 100%;
  }
  .kv p {
    font-size: 28px;
  }

/* --------------------- 
    section1
--------------------- */
  .feature1-flex{
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
  .feature1-flex div:first-child, .feature1-flex div:nth-child(2){
    width: 100%;
  }
  .product-main{
    flex-direction: column-reverse;
    gap: 20px;
    margin: 0 auto 20px;
  }
  .bg1{
    background-position: left top;
    background-size: cover;
  }

  .product-image{
    width: 100%;
    max-width: 500px;
  }
  .product-title {
    width: 100%;
}
.product-title p:first-child {
    width: 130px;
    margin-bottom: 10px;
}
.product-title p:nth-child(2) {
    font-size: 42px;
    margin-bottom: 20px;
}
.product-title p:nth-child(3) {
    font-size: 24px;
}

/* --------------------- 
    section2
--------------------- */
  .feature23-flex{
    gap: 60px;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .feature-bg-red>div p {
      margin-bottom: 30px;
  }
  .feature-bg-red{
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .feature-bg-red>p>img {
    margin-bottom: 30px;
  }

  .feature1 {
    margin-top: 80px;
  } 

  .section2 .feature-subtitle {
    font-size: 21px;
    text-align: left;
    margin-bottom: 20px;
    gap: 15px;
  }   
  .section2 .feature-subtitle img {
    width: 70px;
  }
  .feature1-flex div:first-child p:first-child {
    font-size: 21px;
    margin-bottom: 10px;
}

  .feature-bg-red ul {
      flex-direction: column;
      gap: 20px;
  }
  .feature-bg-red ul li {
      margin-right: 0;
  }
  .feature-bg-red ul li p:first-child {
      margin-bottom: 10px;
  }
  .feature1 .feature-bg-red:last-child {
    margin-bottom: 80px;
  }
  .feature-twintier>img {
    width: 60%;
  }
  .feature-twintier:before{
    margin-right: 10px;
  }
  .feature-twintier:after{
    margin-left: 10px;
  }
  .section2 h3 span {
    font-size: 21px;
}
.section2 small{
  text-align: right;
}
.redline{
  font-size: 21px;
}

  .feature-bg-gray {
      padding: 20px;
      height: auto;
      margin-top: 20px;
  }
  .feature-bg-gray figure {
      margin-bottom: 10px;
  }

  .feature-notes-flex {
      margin-bottom: 10px;
      flex-direction: column;
  }
  .feature-notes-flex div:first-child, .feature-notes-flex div:nth-child(2) {
      width: 100%;
      height: inherit;
  } 
  .feature-notes-flex div:first-child p, .feature-notes-flex div:nth-child(2) p{
    font-size: 18px;
  }
  .feature-notes-flex div figure img {
    width: 75px;
  }
  .feature-notes-flex div:first-child{
    border-bottom: 1px solid #fff;
    height: inherit;
    padding-bottom: 15px;
  }
  .feature-notes-flex div:nth-child(2){
    padding-top: 15px;
  }
  .feature-notes-flex div{
    justify-content: left;
    gap: 15px;
  }

/* --------------------- 
    section3
--------------------- */
  .section3 ul{
    gap: 60px;
    flex-direction: column;
  }
  .section3 ul li p{
    font-size: 18px;
    padding: 15px;
  }
  .section3 ul li figure {
    width: 90%;
    margin: 0 auto 20px;
}


/* --------------------- 
    section4 
--------------------- */
.section4 table{
  font-size: 18px;
  border-bottom: none!important;
}
.section4 th, .section4 td{
  display: block;
}
.section4 th{
  font-size: 16px;
  border-bottom: none!important;
  padding-bottom: 10px;
}
.section4 td{
  font-size: 16px;
  padding: 0 0 18px;
}


/* --------------------- 
    section5 
--------------------- */
  .section5 {
    overflow-x: auto;
    display: block;
  }
  .section5 table th,
  .section5 table td {
      white-space: nowrap;
  }
  .section5 td{
    font-size: 16px;
  }
  .section5 table tr:first-child td img{
    width: 100px;
  }

  /* --------------------- 
    Form 
  --------------------- */
  #hs_cos_wrapper_widget_1732595533717 {

    padding: 60px 1rem !important;
}
#hs_cos_wrapper_widget_1732595533717 .form-title {
    font-size: 32px!important;
    padding-top:0;
}
#hs_cos_wrapper_widget_1732595533717 input[type="submit"]{
    width: 100%;
  }
  .hs_submit {
    padding-bottom: 0;
}
#hs_cos_wrapper_widget_1732595533717 input[type="submit"]{
  font-size: 18px;
}


}