* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
#header{
 max-width: 1310px;
}
.raku2_cart_slidein{
display: none;
}

body div.env_message{

}
.raku2_search_area{
display: none!important;
}
@font-face {
  font-family: NotoSans-Regular;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/Noto_Sans/static/NotoSans-Regular.woff2");
}
@font-face {
  font-family: NotoSans-medium;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/Noto_Sans/static/NotoSans-Medium.woff2");
}
@font-face {
  font-family: NotoSans-light;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/Noto_Sans/static/NotoSans-Light.woff2");
}
@font-face {
  font-family: NotoSans-black;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/Noto_Sans/static/NotoSans-Black.woff2");
}
@font-face {
  font-family: NotoSans-bold;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/Noto_Sans/static/NotoSans-Bold.woff2");
}
@font-face {
  font-family: ZenMaruGothic-reguler;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/ZenMaruGothic-Regular.woff2");
}
@font-face {
  font-family: ZenMaruGothic-medium;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/ZenMaruGothic-Medium.woff2");
}
@font-face {
  font-family: ZenMaruGothic-light;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/ZenMaruGothic-Light.woff2");
}
@font-face {
  font-family: ZenMaruGothic-bold;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/ZenMaruGothic-Bold.woff2");
}
@font-face {
  font-family: ZenMaruGothic-black;
  src: url("https://emi0918.github.io/toyolife-font/toyo-font/ZenMaruGothic-Black.woff2");
}

:root {
  /* FONTS */
  --NotoSansRegular-font: NotoSans-Regular;
  --NotoSansMedium-font: NotoSans-medium;
  --NotoSanslight-font: NotoSans-light;
  --NotoSansbold-font: NotoSans-bold;
  --NotoSansblack-font: NotoSans-black;
  --ZenReguler-font: ZenMaruGothic-reguler;
  --ZenMedium-font: ZenMaruGothic-medium;
  --ZenLight-font: ZenMaruGothic-light;
  --ZenBold-font: ZenMaruGothic-bold;
  --ZenBlack-font: ZenMaruGothic-black;

  /* COLORS */
  --red-color: #ff2727;
  --orange-color: #d09b19;
  --lightBlue-color: #8db0df;

  /* WIDTH */
  --full-width: 100%;
  --box-width: 1328px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--full-width);
max-width: 2000px;
margin:auto;
  padding: 0px 50px;
  margin-bottom: -143px;
  position: relative;
  z-index: 2;
}

.logo-div {
  width: 13%;
}
.logo-div > img {
  width: 216px;
}

.nav-links {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inner-nav-links-div {
  width: 91%;
  text-align: right;
}
.inner-nav-links-div > span {
  color: var(--red-color);
  font-size: 18px;
  line-height: 26px;
  font-family: var(--ZenBold-font);
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: white;
  gap: 25px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--ZenBold-font);
  width: var(--full-width);
  margin-top: 11px;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}
nav ul li a:hover {
  color: #4c4c4c;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  border-bottom: 3px solid #4c4c4c;
  transition: 0.3s;
}
nav ul li a:hover:after {
  width: 100%;
}

.cart-signin {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 114px;
  color: white;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--ZenMedium-font);
}
.signin {
  width: 120px;
  height: 100%;
  background-color: var(--lightBlue-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 0px 0px 15px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.signin:hover {
  background-color: #84a5cf;
}
.signin a{
  text-decoration: none;
  color: white;
}
.cart a{
  text-decoration: none;
  color: white;
}
.cart {
  width: 120px;
  height: 100%;
  background-color: #595959;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 0px 0px 15px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cart:hover {
  background-color: #424242;
}
.popup-menu{
  display: none;
}
.popup-menu svg{
  height: 35px;
  width: 35px;
}
@media(max-width: 1024px){
  nav{
    padding-top: 20px;
  }
  .logo-div{
    width: 30%;
  }
  .logo-div img{
    width: 100%;
  }
  .nav-links{
    display: none;
  }
  .cart-signin{
    display: none;
  }
  .popup-menu{
    display: flex;
  }
}
@media(max-width: 767px){
  nav{
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo-div{
    width: 50%;
  }
  .popup-menu svg{
    height: 20px;
    width: 20px;
  }
}

/* HERO SECTION */
.about_arigatoda-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--NotoSansRegular-font);
    margin-bottom: -450px;
    padding: 400px 0px;
    overflow: hidden;
    z-index: 1;
}
/* 背景動画のスタイル */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about_arigatoda-hero-section-inner_div {
  width: var(--box-width);
  margin: auto;
  margin-top: -170px;
  display: flex;
  position: relative;
   z-index: 2;
  align-items: center;
  justify-content: space-between;
}
.about_arigatoda-hero-section-left-text-div {
  width: 70%;
  position: relative;
}
.about_arigatoda-hero-section-left-text-div > h1 {
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 5px;
  z-index: 1;
  position: relative;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.253);
}
.about_arigatoda-hero-section-left-text-div > span {
  display: flex;
  align-items: center;
  margin-top: 20px;
  z-index: 1;
  position: relative;
}
.about_arigatoda-hero-section-left-text-div > span > img {
  width: 323px;
}
.about_arigatoda-hero-section-left-text-div > span > h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  font-family: var(--NotoSansRegular-font);
  letter-spacing: 5px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.253);
  margin-top: 15px;
}
.about_arigatoda-hero-section-left-text-div > h3 {
  font-family: var(--NotoSanslight-font);
  font-weight: 400;
  font-size: 31px;
  line-height: 31px;
  margin-top: 70px;
}
.about_arigatoda-hero-section-left-text-div > .link {
  text-decoration: none;
  color: inherit;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 70px;
}
.about_arigatoda-hero-section-left-text-div > .link > h3 {
  font-family: var(--NotoSanslight-font);
  font-weight: 400;
  font-size: 27px;
  line-height: 31px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.253);
  transition: all 0.3s ease;
}
.about_arigatoda-hero-section-left-text-div > .link:hover h3 {
  color: #4c4c4c;
}
.about_arigatoda-hero-section-left-text-div > .link > span {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: #8db0df;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.about_arigatoda-hero-section-left-text-div > .link:hover span {
  transform: translateX(5px);
}
.about_arigatoda-hero-section-left-text-div > .link > span > svg {
  width: 30px;
  height: 30px;
}
.position-image {
  position: absolute;
  top: -20%;
  left: -6%;
  width: 198px;
  z-index: 0;
}
.about_arigatoda-hero-section-right-text-div {
  width: 30%;
}
.about_arigatoda-hero-section-right-text-div > h2 {
  font-size: 48px;
  line-height: 69px;
  color: var(--red-color);
  font-family: var(--NotoSansbold-font);
  text-align: right;
  margin-top: 20px;
}
@media(max-width: 1024px){
  .about_arigatoda-hero-section{
    padding-top: 350px;
    margin-bottom: -600px;
  }
  .about_arigatoda-hero-section-inner_div{
    flex-direction: column;
    margin-left: 50px;
  }
  .about_arigatoda-hero-section-left-text-div{
    width: 100%;
  }
  .about_arigatoda-hero-section-left-text-div > span {
    flex-direction: column;
    align-items: flex-start;
  }
  .about_arigatoda-hero-section-right-text-div {
    width: 100%;
  }
  .about_arigatoda-hero-section-right-text-div > h2{
    text-align: left;
  }
  .about_arigatoda-hero-section-left-text-div > .link{
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media(max-width: 767px){
  .about_arigatoda-hero-section{
    padding-top: 250px;
    padding-bottom: 200px;
  }
  .about_arigatoda-hero-section-inner_div{
    width: 100%;
    margin-left: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about_arigatoda-hero-section-left-text-div > h1{
    font-size: 20px;
  }
  .about_arigatoda-hero-section-left-text-div > span{
    margin-top: 0px;
  }
  .about_arigatoda-hero-section-left-text-div > span > h2{
    font-size: 25px;
  }
  .about_arigatoda-hero-section-left-text-div > span > img{
    width: 100%;
  }
  .about_arigatoda-hero-section-left-text-div > .link{
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }
  .about_arigatoda-hero-section-left-text-div > .link span{
    width: 35px;
    height: 35px;
  }
  .about_arigatoda-hero-section-left-text-div > .link span svg{
    width: 23px;
    height: 23px;
  }
  .about_arigatoda-hero-section-left-text-div > .link > h3{
    font-size: 25px;
  }
  .about_arigatoda-hero-section-right-text-div > h2{
    font-size: 35px;
    margin-top: 0px;
  }
  .position-image{
    width: 80px;
    top: 5%;
  }
}

/* 2ND SECTION */
.about-arigatoda-second-section {
  background-image: url(./bk.png);
  background-position: center center;
  background-size: 120%;
  background-repeat: no-repeat;
  /* height: 953px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0px;
  padding-top: 500px;
}
.about-arigatoda-second-section-positioned-image {
  position: absolute;
  left: 0;
  top: 0px;
  width: 200px;
}
.about-arigatoda-second-section-inner_div {
  width: var(--box-width);
  margin: auto;
}
.about-arigatoda-second-section-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-bottom: 130px;
}
.about-arigatoda-second-section-cards > .card {
  height: 500px;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
  background-image: url(./Rectangle100.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 80px;
}
.about-arigatoda-second-section-cards > .card:hover {
  transform: translateY(-20px) !important;
  /* transform: rotate(45deg) !important; */
}
.about-arigatoda-second-section-cards > .card > img {
  width: 95px;
  height: 233px;
  position: absolute;
  top: 53%;
  left: -10%;
  /* transform: rotate(45deg); */
}
.about-arigatoda-second-section-cards > .card > .card-inner_div {
  /* transform: rotate(45deg); */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.card-inner_div > .first-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.card-inner_div > .first-headings > p {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 1.1px;
  background-color: var(--lightBlue-color);
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  width: 90%;
}
#bg-p2 {
  width: 100%;
}
#bg-p3 {
  width: 85%;
}
.card-inner_div > .first-headings > h5 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 1.1px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.card-inner_div > .second-headings > p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.1px;
  font-family: var(--NotoSansBold-font);
  font-weight: 700;
  color: var(--lightBlue-color);
}
.card-inner_div > .second-headings > h5 {
  font-size: 33px;
  line-height: 39px;
  letter-spacing: 1.1px;
  font-family: var(--NotoSansBold-font);
  font-weight: 700;
  color: var(--lightBlue-color);
}
#bg-h52 {
  margin-bottom: 30px;
}
#bg-h53 {
  margin-bottom: 30px;
}
.about-arigatoda-second-section-cards > .card > .card2-img {
  width: 76px;
  height: 275px;
  position: absolute;
  top: 45%;
  left: -7%;
  /* transform: rotate(45deg); */
}
.about-arigatoda-second-section-cards > .card > .card3-img {
    width: 176px;
    height: 93px;
  position: absolute;
    top: 80%;
    left: 70%;
  /* transform: rotate(45deg); */
}
.about-arigatoda-second-section-text {
  text-align: center;
}
.about-arigatoda-second-section-text h1 {
  font-size: 60px;
  line-height: 90px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: var(--lightBlue-color);
}
.about-arigatoda-second-section-text h1 > .first-span {
  font-size: 45px;
  line-height: 90px;
  color: #4c4c4c;
}
.about-arigatoda-second-section-text h1 > .twenty {
  font-size: 70px;
  line-height: 90px;
  /* color: var(--lightBlue-color); */
}
.about-arigatoda-second-section-text h1 > .second-span {
  font-size: 45px;
  line-height: 90px;
  color: #4c4c4c;
}
.about-arigatoda-second-section-text h1 > .number1 {
  /* font-size: 45px;
    line-height: 90px; */
  color: #d09b19;
}
.about-arigatoda-second-section-text h1 > .last-span {
  /* font-size: 45px;
    line-height: 90px; */
  color: #4c4c4c;
}
@media(max-width: 1024px){
  .about-arigatoda-second-section{
    padding-top: 550px;
    padding-top: 700px;
    background-size: cover;
    /* padding-left: 20px;
    padding-right: 20px; */
    padding-bottom: 20px;
  }
  .about-arigatoda-second-section-inner_div{
    width: 100%;
  }
  .about-arigatoda-second-section-cards{
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 70px;
  }
  .about-arigatoda-second-section-text h1{
    font-size: 45px;
    line-height: 50px;
    padding: 0px 20px;
  }
  .about-arigatoda-second-section-text h1 > .first-span{
    font-size: 30px;
  }
  .about-arigatoda-second-section-text h1 > .twenty{
    font-size: 55px;
  }
  .about-arigatoda-second-section-text h1 > .second-span{
    font-size: 30px;
  }
  .about-arigatoda-second-section-cards{
    gap: 0px;
  }
  .about-arigatoda-second-section-cards .card{
    width: 380px;
    height: 380px;
  }
  .about-arigatoda-second-section-cards .card-inner_div{
    width: 100%;
  }
  .card-inner_div > .second-headings > p{
    font-size: 16px;
  }
  .about-arigatoda-second-section-cards .card-inner_div .first-headings{
    width: 100%;
  }
  .about-arigatoda-second-section-cards .card-inner_div .first-headings p{
    width: 50% !important;
    font-size: 16px;
    padding: 10px;
  }
  .about-arigatoda-second-section-cards .card-inner_div .first-headings h5{
    font-size: 18px;
    line-height: 25px;
  }
  .card-inner_div > .second-headings > h5{
    font-size: 22px;
    line-height: 32px;
  }
  .about-arigatoda-second-section-cards > .card > img {
    width: 70px;
    height: 170px;
    top: 54%;
    left: 5%;
  }
  #bg-p2 {
    width: 58% !important;
  }
  #bg-p3 {
    width: 58% !important;
  }
  .about-arigatoda-second-section-cards > .card > .card2-img {
    width: 60px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 7%;
    /* transform: rotate(45deg); */
  }
  .about-arigatoda-second-section-cards > .card > .card3-img {
        width: 149px;
        height: 75px;
        position: absolute;
        top: 90%;
        left: 2%;
    /* transform: rotate(45deg); */
  }
}
@media(max-width: 767px){
  .about-arigatoda-second-section{
    padding-top: 600px;
  }
  .about-arigatoda-second-section-cards{
    gap: 50px;
  }
  .about-arigatoda-second-section-cards > .card{
    width: 350px;
    height: 350px;
  }
  .about-arigatoda-second-section-cards > .card > img {
    width: 60px;
    height: 140px;
    top: 58%;
    left: 1%;
  }
  .about-arigatoda-second-section-cards > .card > .card2-img {
    width: 45px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 5%;
    /* transform: rotate(45deg); */
  }
  .about-arigatoda-second-section-cards > .card > .card3-img {
        width: 149px;
        height: 75px;
        position: absolute;
        top: 90%;
        left: 2%;
    /* transform: rotate(45deg); */
  }
  .about-arigatoda-second-section-text h1 {
    font-size: 35px;
    line-height: 50px;
  }
  .about-arigatoda-second-section-text h1 > .first-span{
    font-size: 25px;
  }
  .about-arigatoda-second-section-text h1 > .twenty{
    font-size: 45px;
  }
  .about-arigatoda-second-section-text h1 > .second-span{
    font-size: 25px;
  }
}


/* 3RD SECTION */

.about-arigatoda-third-section {
  background-image: url(./Group19.png);
  background-position: 100% 20%;
  background-repeat: no-repeat;
  background-size: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
  padding-top: 100px;
}
.about-arigatoda-sixth-section-inner-div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-arigatoda-sixth-section-first_div {
  text-align: center;
  color: #4c4c4c;
}
.about-arigatoda-sixth-section-first_div > h2 {
  font-size: 40px;
  line-height: 50px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  margin-top: 10px;
}
.about-arigatoda-sixth-section-first_div > h2 > sup {
  font-size: 20px;
  line-height: 28px;
}
.about-arigatoda-sixth-section-first_div > h4 {
  font-size: 30px;
  line-height: 50px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.about-arigatoda-sixth-section-first_div > p {
  font-size: 14px;
  line-height: 14px;
  margin-top: 14px;
}
.about-arigatoda-sixth-section-second_div {
  width: 61%;
}
.about-arigatoda-sixth-section-second_div-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 25px;
  margin-top: 30px;
}
.about-arigatoda-sixth-section-second_div-top > img {
  width: 124px;
}
.about-arigatoda-sixth-section-second_div-top > h2 {
  font-size: 50px;
  line-height: 58px;
  font-family: var(--ZenBold-font);
  color: var(--orange-color);
}
.about-arigatoda-sixth-section-second_div-bottom {
  width: 100%;
}
.about-arigatoda-sixth-section-second_div-bottom > img {
  width: 100%;
}
.about-arigatoda-sixth-section-third_div {
  margin-top: 115px;
  width: 100%;
}
.about-arigatoda-sixth-section-third_div-top {
  background-image: url(./left-right-img.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 907px;
  height: 148px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ZenBold-font);
  color: var(--orange-color);
  text-align: center;
}
.about-arigatoda-sixth-section-third_div-top > h2 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 2.2px;
}
.about-arigatoda-sixth-section-third_div-top > h4 {
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 1.5px;
  margin-top: 7px;
}
.about-arigatoda-sixth-section-third_div-bottom {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}
.about-arigatoda-sixth-section-third_div-bottom > .card {
  width: 28.3%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .top {
  text-align: center;
  margin-top: 5px;
  color: var(--orange-color);
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .top > a {
  border-radius: 60px;
  background-color: var(--orange-color);
  padding: 15px 20px;
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .top > a > button {
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--ZenBold-font);
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .top > h3 {
  font-size: 40px;
  line-height: 57px;
  margin-top: 20px;
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .top > h5 {
  font-size: 25px;
  line-height: 36px;
}
.card-3-heading {
  font-size: 25px !important;
  line-height: 36px !important;
  margin-top: 35px !important;
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.about-arigatoda-sixth-section-third_div-bottom > .card > .bottom > .circle {
  border-radius: 50%;
  border: 1px solid #c1a560;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.about-arigatoda-sixth-section-third_div-bottom
  > .card
  > .bottom
  > .circle:hover {
  transform: translateY(-5px);
}
.about-arigatoda-sixth-section-third_div-bottom
  > .card
  > .bottom
  > .circle
  > p {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.7px;
  color: #4c4c4c;
  margin-top: 7px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.about-arigatoda-sixth-section-third_div-bottom
  > .card
  > .bottom
  > .circle
  > h3 {
  font-size: 40px;
  line-height: 46px;
  color: var(--orange-color);
  font-family: var(--ZenBold-font);
}
.about-arigatoda-sixth-section-third_div-bottom
  > .card
  > .bottom
  > .circle
  > h3
  .small-text {
  font-size: 22px;
}
.about-arigatoda-sixth-section-third_div-bottom
  > .card
  > .bottom
  > .circle
  > h5 {
  font-size: 22px;
  line-height: 25px;
  color: var(--orange-color);
  font-family: var(--ZenBold-font);
}

.card-3-h3 {
  font-size: 22px !important;
  line-height: 26px !important;
}
.card-3-h3 > span {
  font-size: 16px;
  line-height: 18px;
}
@media(max-width: 1024px){
  .about-arigatoda-sixth-section{
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-arigatoda-sixth-section-inner-div{
    width: 100%;
  }
  .about-arigatoda-sixth-section-second_div{
    width: 100%;
  }
  .about-arigatoda-third-section{
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-arigatoda-sixth-section-second_div-top{
    justify-content: center;
  }
  .about-arigatoda-sixth-section-second_div-top > img{
    width: 100px;
  }
  .about-arigatoda-sixth-section-second_div-top > h2{
    font-size: 40px;
  }
  .about-arigatoda-sixth-section-third_div-top{
    background-size: contain;
    background-position: center center;
  }
  .about-arigatoda-sixth-section-third_div-top > h2{
    font-size: 35px;
  }
  .about-arigatoda-sixth-section-third_div-bottom{
    flex-direction: column;
  }
  .about-arigatoda-sixth-section-third_div-bottom > .card{
    width: 100%;
  }
  .about-arigatoda-sixth-section-third_div-bottom > .card .bottom{
    justify-content: center;
  }
}
@media(max-width: 767px){
  .about-arigatoda-third-section{
    padding-left: 20px;
    padding-right: 20px;
    background-size: contain;
  }
  .about-arigatoda-sixth-section-first_div > h2{
    font-size: 17px;
    line-height: 30px;
  }
  .about-arigatoda-sixth-section-first_div > h2 sup{
    font-size: 14px;
  }
  .about-arigatoda-sixth-section-first_div > h4{
    font-size: 17px;
    line-height: 20px;
  }
  .about-arigatoda-sixth-section-second_div-top{
    gap: 5px;
  }
  .about-arigatoda-sixth-section-second_div-top img{
    width: 15%;
  }
  .about-arigatoda-sixth-section-second_div-top h2{
    font-size: 17px;
  }
  .about-arigatoda-sixth-section-third_div-top{
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-arigatoda-sixth-section-third_div-top > h2{
    font-size: 12px;
    line-height: 10px;
  }
  .about-arigatoda-sixth-section-third_div-top > h4{
    font-size: 12px;
    line-height: 10px;
  }
  .about-arigatoda-sixth-section-third_div {
    margin-top: 50px;
  }
  .about-arigatoda-sixth-section-third_div-top{
    height: 65px;
  }
}

/* 4TH SECTION */
.about-arigatoda-fourth-section {
  background-image: url(./png.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 350px;
  padding: 150px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-arigatoda-fourth-section-inner-div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.about-arigatoda-fourth-section-top {
  text-align: center;
}
.about-arigatoda-fourth-section-top > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.about-arigatoda-fourth-section-top > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.about-arigatoda-fourth-section-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.about-arigatoda-fourth-section-bottom > .card {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.13);
  padding: 30px 18px;
  border-radius: 25px;
  gap: 10px;
  transition: transform 0.3s ease;
}
.about-arigatoda-fourth-section-bottom > .card:hover {
  transform: translateY(-10px);
}
.about-arigatoda-fourth-section-bottom > .card > .image-div {
  /* background-color: #D9D9D9; */
  width: 100%;
  /* height: 259px; */
  position: relative;
  border-radius: 36px;
}
.about-arigatoda-fourth-section-bottom > .card > .image-div > img {
  width: 50px;
  /* height: 153px; */
  /* height: 259px; */
}
.second-card-image {
    position: absolute;
  top: -13% !important;
  right: 6% !important;
  width: 77px !important;
}
.third-card-image {
    position: absolute;
    top: -13%;
    right: 6% ;
    width: 137px;
}
.about-arigatoda-fourth-section-bottom > .card > .text-div-one {
  text-align: left;
  width: 90%;
  height: 90px;
  /* margin-bottom: 20px; */
}
.about-arigatoda-fourth-section-bottom > .card > .text-div-one h4 {
  color: var(--lightBlue-color);
  font-family: var(--ZenBold-font);
  font-size: 20px;
  line-height: 36px;
  /* margin-top: 7px; */
}
.about-arigatoda-fourth-section-bottom > .card > .text-div-two {
  text-align: left;
  width: 90%;
  /* height: 104px; */
}
.about-arigatoda-fourth-section-bottom > .card > .text-div-two h4 {
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  font-size: 18px;
  line-height: 28px;
  margin-top: 7px;
}
.about-arigatoda-fourth-section-bottom > .card > .text-div-two p {
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-family: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.5px;
  /* margin-top: 3px; */
}
.about-arigatoda-fourth-section-bottom > .card > .button-div {
  text-align: left;
  width: 90%;
}
.about-arigatoda-fourth-section-bottom > .card > .button-div > a button {
  border-radius: 69px;
  background: hsla(214, 56%, 71%, 1);

  background: linear-gradient(
    0deg,
    hsla(214, 56%, 71%, 1) 0%,
    hsla(215, 57%, 91%, 1) 38%,
    hsla(0, 0%, 100%, 1) 100%
  );

  background: -moz-linear-gradient(
    0deg,
    hsla(214, 56%, 71%, 1) 0%,
    hsla(215, 57%, 91%, 1) 38%,
    hsla(0, 0%, 100%, 1) 100%
  );

  background: -webkit-linear-gradient(
    0deg,
    hsla(214, 56%, 71%, 1) 0%,
    hsla(215, 57%, 91%, 1) 80%,
    hsla(0, 0%, 100%, 1) 100%
  );

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#8DB0DF", endColorstr="#DBE6F5", GradientType=1 );
  border: none;
  padding: 0px 20px;
  font-family: var(--ZenBold-font);
  font-size: 18px;
  line-height: 43px;
  color: white;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-arigatoda-fourth-section-bottom > .card > .button-div > a button:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
}
@media(max-width: 1024px){
  .about-arigatoda-fourth-section{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
  }
  .about-arigatoda-fourth-section-bottom{
    flex-wrap: wrap;
    gap: 0px;
    row-gap: 25px;
  }
  .about-arigatoda-fourth-section-bottom .card{
    width: 48%;
  }
}
@media(max-width: 767px){
  .about-arigatoda-fourth-section{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }
  .about-arigatoda-fourth-section-top > h6{
    margin-bottom: 0px;
  }
  .about-arigatoda-fourth-section-top > h2{
    font-size: 40px;
  }
  .about-arigatoda-fourth-section-bottom .card{
    width: 100%;
  }
}

/* 5TH SECTION */
.about-arigatoda-fifth-section {
  background-image: url(./bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 2850px; */
  padding: 100px 0px;
  padding-bottom: 330px;
  margin-bottom: -50px;
}
.about-arigatoda-fifth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-arigatoda-fifth-section-top {
  text-align: center;
}
.about-arigatoda-fifth-section-top > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
}
.about-arigatoda-fifth-section-top > h2 {
  font-size: 73px;
  line-height: 84px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 500;
  color: #4c4c4c;
}
.about-arigatoda-fifth-section-top > h2 .three {
  color: var(--lightBlue-color);
}
.about-arigatoda-fifth-section-top > h2 > .other-text {
  font-size: 58px;
}
.about-arigatoda-fifth-section-bottom {
  display: flex;
  flex-direction: column;
  /* gap: 163px; */
}
.about-arigatoda-fifth-section-bottom-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 160px;
}
.about-arigatoda-fifth-section-bottom-row.row-2 {
  justify-content: flex-end !important;
  flex-direction: row-reverse;
  margin-bottom: 130px;
}
.about-arigatoda-fifth-section-bottom-row.row-2 > .left {
  width: 50%;
}
.about-arigatoda-fifth-section-bottom-row.row-2 > .right > .second-p {
  font-family: var(--ZenMedium-font);
}
.about-arigatoda-fifth-section-bottom-row.row-2 > .right > h5 {
  width: 96%;
}

.about-arigatoda-fifth-section-bottom-row > .left {
  width: 40%;
}
.about-arigatoda-fifth-section-bottom-row > .left > img {
  width: 100%;
}
.about-arigatoda-fifth-section-bottom-row > .right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 37%;
}
.about-arigatoda-fifth-section-bottom-row > .right > .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  background-color: var(--lightBlue-color);
  border-radius: 50%;
  color: white;
}
.about-arigatoda-fifth-section-bottom-row > .right > .step > p {
  font-family: var(--ZenBold-font);
  line-height: 36px;
  font-size: 25px;
}
.about-arigatoda-fifth-section-bottom-row > .right > .step > .number {
  font-size: 35px;
}
.about-arigatoda-fifth-section-bottom-row > .right > h5 {
  font-size: 28px;
  line-height: 36px;
  font-family: var(--ZenBold-font);
  color: var(--lightBlue-color);
}
.about-arigatoda-fifth-section-bottom-row > .right > p {
  font-size: 17px;
  line-height: 35px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.about-arigatoda-fifth-section-last {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-arigatoda-fifth-section-last-top {
  color: #4c4c4c;
  text-align: center;
}
.about-arigatoda-fifth-section-last-top > h2 {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 2.5px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-arigatoda-fifth-section-last-top > h6 {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.about-arigatoda-fifth-section-last-bottom {
  display: flex;
  justify-content: space-between;
}
.about-arigatoda-fifth-section-last-bottom > .card {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-arigatoda-fifth-section-last-bottom > .card::after {
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  left: 50%;
  top: 40%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  content: "";
  z-index: 1;
  opacity: 0;
}
.about-arigatoda-fifth-section-last-bottom > .card:hover:after {
  transform: translate(-50%, -50%) scale(2.5);
  background-color: transparent;
  transition: transform 1300ms linear, background-color 600ms linear;
  opacity: 0.4;
}
.about-arigatoda-fifth-section-last-bottom > .card.card-2 {
  flex-direction: column-reverse;
}
.about-arigatoda-fifth-section-last-bottom > .card.card-2::after{
  top: 60%;
}
.about-arigatoda-fifth-section-last-bottom > .card img {
  width: 90%;
}
.about-arigatoda-fifth-section-last-bottom > .card h5 {
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  font-size: 25px;
  line-height: 36px;
  margin-top: 7px;
}
.about-arigatoda-fifth-section-last-bottom > .card p {
  color: #4c4c4c;
  font-size: 20px;
  font-family: var(--ZenBold-font);
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.about-arigatoda-fifth-section-last-bottom > .card.card-3 h5 {
  color: #4c4c4c;
  font-size: 20px;
  font-family: var(--ZenBold-font);
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.about-arigatoda-fifth-section-last-bottom > .card.card-3 p {
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  font-size: 25px;
  line-height: 36px;
  margin-top: 7px;
}
@media(max-width: 1024px){
  .about-arigatoda-fifth-section{
    padding-bottom: 150px;
    padding-top: 0px;
  }
  .about-arigatoda-fifth-section-inner_div{
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .about-arigatoda-fifth-section-bottom{
    gap: 100px;
    margin-top: 50px;
  }
  .about-arigatoda-fifth-section-bottom-row{
    justify-content: space-between;
    gap: 50px;
  }
  .about-arigatoda-fifth-section-last{
    margin-top: 100px;
  }
  .about-arigatoda-fifth-section-bottom-row.row-2{
    margin-bottom: 0px;
  }
  .about-arigatoda-fifth-section-bottom-row > .right{
    width: 50%;
  }
  .about-arigatoda-fifth-section-last-bottom > .card p{
    font-size: 17px;
  }
  .about-arigatoda-fifth-section-last-bottom > .card.card-3 p{
    font-size: 23px;
  }
  .about-arigatoda-fifth-section-last-bottom > .card.card-3 h5{
    font-size: 16px;
  }
  .about-arigatoda-fifth-section-last-top > h2{
    font-size: 30px;
  }
}
@media(max-width: 767px){
  .about-arigatoda-fifth-section{
    padding-top: 0px;
  }
  .about-arigatoda-fifth-section-top > h2 {
    font-size: 40px;
    line-height: 53px;
  }
  .about-arigatoda-fifth-section-top > h2 > .other-text{
    font-size: 30px;
  }
  .about-arigatoda-fifth-section-bottom-row{
    flex-direction: column;
    gap: 30px !important;
  }
  .about-arigatoda-fifth-section-bottom-row.row-2{
    flex-direction: column;
    gap: 0px;
  }
  .about-arigatoda-fifth-section-bottom-row .left{
    width: 100% !important;
  }
  .about-arigatoda-fifth-section-bottom-row .right{
    width: 100% !important;
  }
  .about-arigatoda-fifth-section-bottom-row > .right > .step{
    width: 100px;
    height: 100px;
  }
  .about-arigatoda-fifth-section-last{
    margin-top: 50px;
  }
  .about-arigatoda-fifth-section-last-top > h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .about-arigatoda-fifth-section-last-top > h6 {
    font-size: 15px;
  }
  .about-arigatoda-fifth-section-last-bottom{
    flex-direction: column;
    gap: 30px;
  }
  .about-arigatoda-fifth-section-last-bottom .card{
    width: 100%;
  }
  .about-arigatoda-fifth-section-last-bottom > .card.card-2{
    flex-direction: column;
  }
}

/* 6TH SECTION */
.about-arigatoda-sixth-section {
  background-image: url(./Group3.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 15%;
  padding: 300px 0px;
}
.about-arigatoda-sixth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.about-arigatoda-sixth-section-top {
  text-align: center;
}
.about-arigatoda-sixth-section-top > h6 {
  font-size: 20px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
}
.about-arigatoda-sixth-section-top > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
  margin-top: 15px;
}
.about-arigatoda-sixth-section-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about-arigatoda-sixth-section-bottom > .card {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-arigatoda-sixth-section-bottom > .card img {
  width: 90%;
  position: relative;
}
.about-arigatoda-sixth-section-bottom > .card::after {
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  left: 50%;
  top: 40%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(0);
  content: "";
  z-index: 1;
}
.about-arigatoda-sixth-section-bottom > .card:hover::after {
  transform: translate(-50%, -50%) scale(2.5);
  background-color: transparent;
  transition: transform 1000ms linear, background-color 600ms linear;
}
.about-arigatoda-sixth-section-bottom > .card h5 {
  color: var(--lightBlue-color);
  font-family: var(--ZenBold-font);
  font-size: 25px;
  line-height: 36px;
  margin-top: 7px;
}
.about-arigatoda-sixth-section-bottom > .card p {
  color: #858585;
  font-family: var(--NotoSansRegular-font);
  font-family: 400;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.card-three-para {
  font-size: 16px !important;
  line-height: 30px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
@media(max-width: 1024px){
  .about-arigatoda-sixth-section{
    padding: 100px 20px;
  }
  .about-arigatoda-sixth-section-inner_div{
    width: 100%;
  }
  .about-arigatoda-sixth-section-top > h2 {
    font-size: 40px;
    margin-top: 0px;
  }
  .about-arigatoda-sixth-section-bottom > .card h5{
    font-size: 20px;
    line-height: 30px;
  }
  .about-arigatoda-sixth-section-bottom > .card p {
    font-size: 8px !important;
    line-height: 15px;
  }
}
@media(max-width: 767px){
  .about-arigatoda-sixth-section-inner_div{
    gap: 30px;
  }
  .about-arigatoda-sixth-section-bottom{
    flex-direction: column;
    gap: 30px;
  }
  .about-arigatoda-sixth-section-bottom .card{
    width: 100%;
  }
  .about-arigatoda-sixth-section-top > h6{
    font-size: 15px;
  }
  .about-arigatoda-sixth-section-top > h2{
    font-size: 28px;
  }
}

/* 7TH SECTION */
.about-arigatoda-seventh-section {
  padding: 0px 0px;
  padding-bottom: 250px;
}
.about-arigatoda-seventh-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.about-arigatoda-seventh-section-top {
  text-align: center;
}
.about-arigatoda-seventh-section-top > h6 {
  font-size: 20px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
}
.about-arigatoda-seventh-section-top > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
  margin-top: 15px;
}
.about-arigatoda-seventh-section-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.about-arigatoda-seventh-section-bottom > .card {
  width: 32.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  text-align: center;
  background-color: #dfe7f2;
  padding: 50px 20px;
  border-radius: 35px;
  gap: 25px;
  transition: transform 0.3s ease;
}
.about-arigatoda-seventh-section-bottom > .card:hover {
  transform: translateY(-10px);
}
.about-arigatoda-seventh-section-bottom > .card > .blank-div {
  background-color: #d9d9d9;
  width: 100%;
  height: 259px;
  position: relative;
  border-radius: 36px;
}

/* cream画像のサイズ調整 */
.blank-div .cream-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px; /* 枠に合わせる場合（任意） */
}

/* item5.png は位置調整のままでOK */
.blank-div .package-img {
  width: 63px;
  position: absolute;
  top: -30%;
  right: 10%;
}


}
.blank-div .second-card-image {
  top: -13% !important;
  right: 6% !important;
  width: 77px !important;
}
.third-card-image {
  top: -13%;
  right: 6%;
  width: 137px;
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-one {
  text-align: left;
  width: 90%;
  height: 104px;
  /* margin-bottom: 20px; */
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-one h4 {
  color: var(--lightBlue-color);
  font-family: var(--ZenBold-font);
  font-size: 29px;
  line-height: 37px;
  /* margin-top: 7px; */
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-one p {
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-family: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-two {
  text-align: left;
  width: 90%;
  height: 104px;
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-two p {
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-family: 400;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 1px;
  /* margin-top: 3px; */
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-two h4 {
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  font-size: 45px;
  line-height: 37px;
  margin-top: 20px;
}
.about-arigatoda-seventh-section-bottom > .card > .text-div-two h4 span {
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  font-size: 29px;
  line-height: 37px;
  margin-top: 7px;
}
.about-arigatoda-seventh-section-bottom > .card > .button-div {
  text-align: left;
  width: 90%;
}
.about-arigatoda-seventh-section-bottom > .card > .button-div > a button {
  border-radius: 69px;
  background-color: var(--lightBlue-color);
  border: none;
  padding: 17px 100px;
  font-family: var(--ZenBold-font);
  font-size: 21px;
  line-height: 37px;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button-div.second-card-second-btn > a button {
  background-color: #9aa7b9 !important;
}
.button-div > a button:hover {
  background-color: #78a8e4 !important;
}
@media(max-width: 1024px){
  .about-arigatoda-seventh-section{
    padding-bottom: 90px;
  }
  .about-arigatoda-seventh-section-inner_div{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-arigatoda-seventh-section-bottom > .card{
    gap: 13px;
    padding: 25px 16px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .blank-div{
    height: 130px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .text-div-one p{
    font-size: 16px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .text-div-one h4{
    font-size: 23px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .text-div-two h4{
    font-size: 40px;
    margin-top: 0px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .text-div-two{
    height: 80px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .text-div-two h4 span{
    font-size: 21px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .button-div > a button{
    padding: 7px 10px;
    width: 100%;
    font-size: 18px;
  }
  .about-arigatoda-seventh-section-bottom > .card > .blank-div > img{
    top: -30% !important;
  }
  .second-card-image{
    width: 70px !important;
  }
.third-card-image{
    right: 6%;
    width: 151px;
}
}
@media(max-width: 767px){
  .about-arigatoda-seventh-section-top > h2 {
    font-size: 45px;
    margin-top: 0px;
  }
  .about-arigatoda-seventh-section-bottom{
    flex-wrap: wrap;
    gap: 80px;
  }
  .about-arigatoda-seventh-section-bottom > .card{
    width: 100%;
  }
}

/* FOOTER */
.footer {
  background-image: url("./Component1.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 372px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ZenBold-font);
  font-size: 16px;
  line-height: 23px;
}
.footer-inner-div {
  width: var(--box-width);
  margin: auto;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}
.footer-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
}
.footer-links a {
  color: #333;
  text-decoration: none;

}
.footer-links a:hover{
  color: #333
}
.footer-copyrights {
  font-family: var(--ZenMedium-font);
  margin-top: 30px;
}
@media(max-width: 1024px){
  .footer{
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-links{
    font-size: 11px;
  }
  .footer-copyrights {
    margin-top: 15px;
    font-size: 11px;
  }
}

/* 2ND PAGE */

/* HERO-SECTION */
.second-page-hero-section {
  background-image: url(./Rectangle6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 980px;
  display: flex;
  align-items: center;
  color: white;
  font-family: var(--NotoSansRegular-font);
}
.second-page-hero-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.second-page-hero-section-left-text-div {
  width: 65%;
  position: relative;
  margin-top: 40px;
}
.second-page-hero-section-left-text-div > h1 {
  font-size: 60px;
  line-height: 100px;
  font-weight: 400;
  letter-spacing: 5px;
  z-index: 1;
  position: relative;
  font-family: var(--ZenBold-font);
  text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.253);
}
.second-page-hero-section-left-text-div > h3 {
  font-family: var(--NotoSanslight-font);
  font-weight: 400;
  font-size: 31px;
  line-height: 31px;
  margin-top: 70px;
}
.second-page-hero-section-left-text-div > .link {
  text-decoration: none;
  color: inherit;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  background-color: var(--lightBlue-color);
  padding: 17px 100px;
  border-radius: 69px;
  font-size: 21px;
  line-height: 37px;
  font-family: var(--ZenBold-font);
  transition: all 0.3s ease;
}
.second-page-hero-section-left-text-div > .link:hover{
  background-color:#78a8e4; 
}
@media(max-width: 1024px){
  .second-page-hero-section{
    padding: 0px 20px;
    height: 700px;
  }
  .second-page-hero-section-inner_div{
    width: 100%;
  }
  .second-page-hero-section-left-text-div{
    width: 75%;
  }
  .second-page-hero-section-left-text-div h1{
    font-size: 40px;
    line-height: 65px;
  }
  .second-page-hero-section-left-text-div > .link{
    padding: 17px 60px;
  }
}
@media(max-width: 767px){
  .second-page-hero-section{
    height: 300px;
  }
  .second-page-hero-section-inner_div{
    width: 100%;
  }
  .second-page-hero-section-left-text-div{
    width: 75%;
  }
  .second-page-hero-section-left-text-div h1{
    font-size: 12px;
    line-height: 28px;
  }
  .second-page-hero-section-left-text-div > .link{
    padding: 2px 30px;
    font-size: 10px;
  }
}

/* 2ND SECTION */
.second-page-section-two {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}
.second-page-section-two-inner_div {
  width: calc(var(--box-width) - 400px);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.second-page-section-two-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
}
.second-page-section-two-top-left {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.second-page-section-two-top-left > h5 {
  font-family: var(--ZenBold-font);
  font-size: 29px;
  line-height: 37px;
  color: var(--lightBlue-color);
}
.second-page-section-two-top-left > p {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.8px;
  color: #4c4c4c;
}
.second-page-section-two-top-left > h1 {
  font-family: var(--ZenBold-font);
  font-size: 65px;
  line-height: 37px;
  color: #4c4c4c;
}
.second-page-section-two-top-left > h1 > span {
  font-size: 29px;
}
.second-page-section-two-top-left > .link {
  text-decoration: none;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 3px;
  background-color: var(--lightBlue-color);
  padding: 17px 100px;
  border-radius: 69px;
  font-size: 21px;
  line-height: 37px;
  font-family: var(--ZenBold-font);
  color: white;
  transition: all 0.3s ease;
}
.second-page-section-two-top-left > .link:hover{
  background-color: #78a8e4; 
}
.second-page-section-two-top-right {
  width: 16%;
  text-align: center;
}
.second-page-section-two-top-right > img {
  width: 100%;
}
.second-page-section-two-bottom > img {
  width: 100%;
}
@media(max-width: 1024px){
  .second-page-section-two{
    padding-left: 20px;
    padding-right: 20px;
  }
  .second-page-section-two-top{
    justify-content: space-around;
  }
}
@media(max-width: 767px){
  .second-page-section-two-inner_div{
    width: 100%;
  }
  .second-page-section-two{
    padding-left: 20px;
    padding-right: 20px;
  }
  .second-page-section-two-top{
    flex-direction: column-reverse;
  }
  .second-page-section-two-top-left{
    width: 100%;
  }
  .second-page-section-two-top-right{
    width: 100%;
  }
  .second-page-section-two-top-right.second img{
    width: 50%;
  }
  .second-page-section-two-top-left > .link{
    padding: 10px 20px;
    width: 100%;
  }
}
@media(max-width: 1024px){
  .about-arigatoda-fourth-section.second{
    padding-bottom: 60px;
  }
  .about-arigatoda-sixth-section.second-page{
    padding-bottom: 30px !important;
  }
}

/* 3RD SECTION */
.second-page-fourth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./ck.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  padding-top: 180px;
}
.second-page-fourth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.second-page-fourth-section-top {
  text-align: center;
  width: 100%;
}
.second-page-fourth-section-top-text-div_1 > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.second-page-fourth-section-top-text-div_1 > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.second-page-fourth-section-top-box-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  margin-top: 50px;
}
.second-page-fourth-section-top-box-div > .box {
  width: 31%;
  background-color: white;
  padding: 16px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.13);
  transition: transform 0.5s ease;
}
.second-page-fourth-section-top-box-div > .box:hover{
  transform: translateY(-10px);
}
.second-page-fourth-section-top-box-div > .box > img {
  width: 81px;
}
.second-page-fourth-section-top-box-div > .box > p {
  text-align: left;
  font-size: 16px;
  line-height: 32px;
  font-family: var(--ZenBold-font);
  color: #4c4c4c;
}
.second-page-fourth-section-bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: -80px;
}
.second-page-fourth-section-inner_div > img {
  width: 87px;
}
.second-page-fourth-section-bottom-div_1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.second-page-fourth-section-bottom-div_1 > img {
  width: 380px;
}
.second-page-fourth-section-bottom-div_1 > h4 {
  text-align: center;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 32px;
  /* line-height: 90px; */
  border-bottom: 5px solid var(--lightBlue-color);
  color: #4c4c4c;
  width: max-content;
}
.second-page-fourth-section-bottom-div_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.second-page-fourth-section-bottom-div_2 > .left > img {
  width: 100%;
}
.second-page-fourth-section-bottom-div_2 > .left {
  width: 40%;
}
.second-page-fourth-section-bottom-div_2 > .right {
  width: 34%;
}
.second-page-fourth-section-bottom-div_2 > .right > p {
  text-align: justify;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.7px;
  width: 91.5%;
}
@media(max-width: 1024px){
  .second-page-fourth-section{
    padding: 50px 20px;
  }
  .second-page-fourth-section-inner_div{
    width: 100%;
  }
  .second-page-fourth-section-top-box-div > .box{
    width: 45%;
    padding: 16px 18px;
  }
  .second-page-fourth-section-bottom{
    margin-bottom: 0px;
  }
  .second-page-fourth-section-bottom-div_1 > h4{
    font-size: 28px;
  }
  .second-page-fourth-section-bottom-div_2{
    flex-direction: column;
  }
  .second-page-fourth-section-bottom-div_2 > .right {
    width: 100%;
  }
  .second-page-fourth-section-bottom-div_2 > .right p{
    width: 100%;
  }
  .second-page-fourth-section-bottom-div_2 > .left {
    width: 100%;
    text-align: center;
  }
  .second-page-fourth-section-bottom-div_2 > .left img{
    width: 90%;
  }
}
@media(max-width: 767px){
  .second-page-fourth-section-top-text-div_1 > h6 {
    font-size: 14px;
    line-height: 13px;
  }
  .second-page-fourth-section-top-text-div_1 > h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .second-page-fourth-section-top-box-div > .box{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .second-page-fourth-section-top-box-div > .box > img {
    width: 25%;
  }
  .second-page-fourth-section-top-box-div > .box > p{
    font-size: 11px;
    line-height: 20px;
  }
  .second-page-fourth-section-bottom-div_1 > img {
    width: 100%;
  }
  .second-page-fourth-section-bottom-div_1 > h4 {
    font-size: 12px;
  }
  .second-page-fourth-section-bottom-div_2 > .left img{
    width: 100%;
  }
  .second-page-fourth-section-bottom-div_2 {
    gap: 30px;
  }
  .second-page-fourth-section-bottom-div_2 > .right p{
    font-size: 10px;
    line-height: 20px;
  }
}

/* 4TH SECTION */
.second-page-section-three {
  background-image: url(./Rectangle17.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 647px;
  padding: 150px 0px;
}
.second-page-section-three-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.second-page-section-three-left {
  width: 50%;
}
.second-page-section-three-left > ul {
  list-style: none;
  color: var(--lightBlue-color);
  font-size: 19px;
  line-height: 25px;
}
.second-page-section-three-left > ul > li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.second-page-section-three-left > ul > li > span {
  display: flex;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--lightBlue-color);
  margin-bottom: 5px;
}
.second-page-section-three-left > p {
  font-size: 16px;
  line-height: 25px;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  width: 82%;
  margin-top: 15px;
}
.second-page-section-three-right {
  width: 50%;
}
.second-page-section-three-right > img {
  width: 100%;
}
@media(max-width: 1024px){
  .second-page-section-three {
    background-size: 300px;
    background-position-y: 290px;
    padding: 90px 20px;
  }
  .second-page-section-three-inner_div{
    width: 100%;
  }
}
@media(max-width: 767px){
  .second-page-section-three{
    background-position: bottom center;
    background-size: 330px 200px;
  }
  .second-page-section-three-inner_div{
    flex-direction: column;
    gap: 50px;
  }
  .second-page-section-three-left{
    width: 100%;
  }
  .second-page-section-three-left p{
    width: 100%;
  }
  .second-page-section-three-right{
    width: 100%;
  }
}

/* 5TH SECTION */
.second-page-fifth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
}
.second-page-fifth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.second-page-fifth-section-top {
  text-align: center;
  width: 100%;
}
.second-page-fifth-section-top-text-div_1 > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.second-page-fifth-section-top-text-div_1 > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.second-page-fifth-section-top-text-div_1 > h3 {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 90px;
  color: #4c4c4c;
  text-align: center;
}
.second-page-fifth-section-top-text-div_1 > h3 > span {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 90px;
  color: var(--lightBlue-color);
}
.second-page-fifth-section-top-text-div_1 > p {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.second-page-fifth-section-bottom-div-2 {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  margin-top: 30px;
}
.second-page-fifth-section-bottom-div-2 > .card {
    border: 2px solid var(--lightBlue-color);
    width: 30%;
    border-radius: 25px;
    position: relative;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    transition: transform 0.3s ease;
}
.second-page-fifth-section-bottom-div-2 > .card:hover{
  transform: translateY(-10px);
}
.card-2-fifth-sec {
  width: 90%;
}
.second-page-fifth-section-bottom-div-2 > .card > .position-img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
}
.second-page-fifth-section-bottom-div-2 > .card > .scnd-img {
  width: 75%;
}
.second-page-fifth-section-bottom-div-2 > .card > p {
  font-size: 14px;
  line-height: 25px;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.card-4-para-fifth-section {
  width: 90%;
}
.second-page-fifth-section-inner_div > .link {
  text-decoration: none;
  color: white;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  background-color: var(--lightBlue-color);
  padding: 17px 100px;
  border-radius: 69px;
  font-size: 21px;
  line-height: 37px;
  font-family: var(--ZenBold-font);
  transition: all 0.3s ease;
}
.second-page-fifth-section-inner_div > .link:hover {
  background-color: #78a8e4;
}
@media(max-width: 1024px){
  .second-page-fifth-section{
    padding: 50px 20px;
  }
  .second-page-fifth-section-top-text-div_1 > h2 {
    font-size: 38px;
    line-height: 26px;
  }
  .second-page-fifth-section-bottom-div-2{
    flex-wrap: wrap;
  }
  .second-page-fifth-section-bottom-div-2 .card{
    width: 49%;
  }
}
@media(max-width: 767px){
  .second-page-fifth-section-top-text-div_1 > h6{
    font-size: 16px;
    line-height: 18px;
  }
  .second-page-fifth-section-top-text-div_1 > h2 {
    font-size: 25px;
    line-height: 20px;
  }
  .second-page-fifth-section-bottom-div-2 .card{
    width: 100%;
  }
}


/* 6TH SECTION */
.second-page-sixth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  padding-top: 150px;
}
.second-page-sixth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.second-page-sixth-section-top {
  text-align: center;
  width: 100%;
}
.second-page-sixth-section-top-text-div_1 > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.second-page-sixth-section-top-text-div_1 > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.second-page-sixth-section-top-text-div_1 > h3 {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 90px;
  color: #4c4c4c;
  text-align: center;
}
.second-page-sixth-section-top-text-div_1 > h3 > span {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 90px;
  color: var(--lightBlue-color);
}
.second-page-sixth-section-top-text-div_1 > p {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.second-page-sixth-section-bottom-div-2 {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* margin-top: 30px; */
  flex-wrap: wrap;
}
.second-page-sixth-section-bottom-div-2 > .card {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.123);
  width: 30%;
  height: 455px;
  border-radius: 25px;
  position: relative;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.3s ease;
}
.second-page-sixth-section-bottom-div-2 > .card:hover{
  transform: translateY(-10px);
}
.second-page-sixth-section-bottom-div-2 > .card > h5 {
  font-size: 25px;
  font-family: var(--ZenBold-font);
  line-height: 31px;
  text-align: center;
  color: var(--lightBlue-color);
}
.second-page-sixth-section-bottom-div-2 > .card > .scnd-img {
  width: 55%;
}
.second-page-sixth-section-bottom-div-2 > .card > .scnd-img.img {
  width: 67%;
}
.second-page-sixth-section-bottom-div-2 > .card > .scnd-img.fourth-img {
  width: 40%;
}
.second-page-sixth-section-bottom-div-2 > .card > p {
  font-size: 14px;
  line-height: 25px;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  width: 96%;
  height: 125px;
}

.about-arigatoda-sixth-section.second-page {
  padding-top: 70px;
  background-image: none;
  padding-bottom: 100px;
}

.about-arigatoda-third-section.second {
  background-image: none;
  padding-bottom: 100px;
}
@media(max-width: 1024px){
  .second-page-sixth-section{
    padding: 50px 20px;
  }
  .second-page-sixth-section-bottom-div-2{
    flex-wrap: wrap;
  }
  .second-page-sixth-section-bottom-div-2 .card{
    width: 47%;
  }
  .second-page-sixth-section-bottom-div-2 > .card > h5 {
    font-size: 21px;
  }
  .second-page-sixth-section-bottom-div-2 > .card > p{
    height: 150px;
  }
}
@media(max-width: 767px){
  .second-page-sixth-section-bottom-div-2 > .card > h5 {
    font-size: 16px;
  }
  .second-page-sixth-section-bottom-div-2 .card{
    width: 100%;
  }
  .second-page-sixth-section-bottom-div-2 > .card > p{
    height: auto;
  }
  .second-page-sixth-section-top-text-div_1 > h6{
    margin-bottom: 0px;
    font-size: 15px;
  }
  .second-page-sixth-section-top-text-div_1 > h2{
    font-size: 30px;
    line-height: 35px;
  }
}

/* 10TH SECTION */
.eight-page-sixth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  padding-bottom: 120px;
}
.eight-page-sixth-section-inner_div {
  width: calc(var(--box-width) - 40px);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.eight-page-sixth-section-top {
  text-align: center;
  width: 100%;
}
.eight-page-sixth-section-top-text-div_1 > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background: linear-gradient(90deg, #8db0df 44.84%, #bbeea9 55.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.eight-page-sixth-section-top-text-div_1 > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.eight-page-sixth-section-top-text-div_1 > h3 {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 90px;
  color: #4c4c4c;
  text-align: center;
}
.eight-page-sixth-section-top-text-div_1 > h3 > span {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 90px;
  color: var(--lightBlue-color);
}
.eight-page-sixth-section-top-text-div_1 > p {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}
.testimonial-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: space-between; */
}
.testimonial-item {
  background: white;
  border-radius: 10px;
  padding: 17px;
  cursor: pointer;
  width: 24.5%;
  transition: all 0.3s ease;
  border: 1px solid #4c4c4c;
  /* padding: 25px 15px; */
  height: max-content;
}
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  line-height: 21px;
  height: 44px;
}
.testimonial-header .testi-heading {
  width: 85%;
  /* height: 44px; */
}
.testimonial-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  font-size: 15px;
  line-height: 25px;
  color: #4c4c4c;
  font-family: var(--ZenBold-font);
  border-radius: 10px;
  /* margin-top: 10px; */
  width: 95%;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
}
.testimonial-item.active .testimonial-content {
  max-height: 500px; /* Adjust this based on your content */
  opacity: 1;
  padding-top: 10px;
}

.testimonial-item .testimonial-icon {
  transition: transform 0.3s ease-in-out;
}

.testimonial-item.active .testimonial-icon {
  transform: rotate(180deg);
}
.testimonial-icon {
  font-size: 20px;
  color: white;
  background-color: var(--lightBlue-color);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-icon svg {
  width: 14px;
  height: 14px;
}
@media(max-width: 1024px){
  .eight-page-sixth-section.test{
    padding-top: 30px;
    padding-bottom: 0px !important;
  }
  .eight-page-sixth-section {
    padding-bottom: 70px;
  }
  .eight-page-sixth-section{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .eight-page-sixth-section-inner_div{
    width: 100%;
  }
  .testimonial-container {
    justify-content: space-between;
  }
  .testimonial-item{
    width: 32%;
  }
}
@media(max-width: 767px){
  .eight-page-sixth-section-top-text-div_1 > h6 {
    font-size: 15px !important;
    line-height: 28px !important;
    margin-bottom: 0px !important;
  }
  .eight-page-sixth-section-top-text-div_1 > h2 {
    font-size: 40px !important;
    line-height: 32px;
  }
  .testimonial-item{
    width: 100%;
  }
}

/* 11TH SECTION */
.eight-page-sixth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  padding-bottom: 190px;
}
.eight-page-sixth-section-inner_div {
  width: var(--box-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.eight-page-sixth-section-top {
  text-align: center;
  width: 100%;
}
.eight-page-sixth-section-top-text-div_1 > h6 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--ZenBold-font);
  background-image: linear-gradient(
    to right,
    #8db1df9f 70%,
    rgba(131, 230, 95, 0.5) 30%
  );
  color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.eight-page-sixth-section-top-text-div_1 > h2 {
  font-size: 50px;
  line-height: 65px;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  color: #4c4c4c;
}
.eight-page-sixth-section-top-text-div_1 > h3 {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 40px;
  line-height: 90px;
  color: #4c4c4c;
  text-align: center;
}
.eight-page-sixth-section-top-text-div_1 > h3 > span {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 50px;
  line-height: 90px;
  color: var(--lightBlue-color);
}
.eight-page-sixth-section-top-text-div_1 > p {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #4c4c4c;
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
}

.faq-container {
  width: 70%;
  font-family: var(--ZenBold-font);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.faq-item:hover {
  background-color: #f1f5ff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--lightBlue-color);
  font-weight: bold;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  background-color: var(--lightBlue-color);
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  background: #dbe4ff;
  border-left: 4px solid #7a92b8;
  border-radius: 5px;
  padding: 0 15px;
  margin-top: 5px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: max-height 0.3s ease;
}

.faq-heading{
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-heading span{
  font-size: 35px;
  line-height: 50px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  transform: scaleY(1);
  opacity: 1;
  padding: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
@media(max-width: 1024px){
  .eight-page-sixth-section-inner_div{
    width: 100%;
  }
  .faq-container{
    width: 100%;
  }
  .faq-question{
    font-size: 14px;
  }
  .faq-item{
    padding: 7px 20px;
  }
  .faq-heading{
    width: 80%;
  }
}
@media(max-width: 767px){
  .eight-page-sixth-section{
    padding-bottom: 80px;
  }
  .faq-question{
    font-size: 10px;
  }
  .faq-heading span{
    font-size: 25px;
  }
  .faq-heading{
    width: 85%;
  }
  .faq-question .testimonial-icon{
    width: 22px;
    height: 22px;
  }
  .faq-question .testimonial-icon svg{
    width: 10px;
    height: 10px;
  }
  .faq-answer{
    font-size: 9px;
  }
  .faq-item{
    padding: 0px 20px;
  }
}


/* 12TH SECTION */
.seventh-page-section-two {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cbdbf0;
  padding: 150px 0px;
  margin-bottom: 70px;
}
.seventh-page-section-two-inner_div {
  width: calc(var(--box-width) - 420px);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 140px;
}
.seventh-page-section-two-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.seventh-page-section-two-top-left {
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.seventh-page-section-two-top-left > h5 {
  font-family: var(--ZenBold-font);
  font-size: 35px;
  line-height: 37px;
  color: var(--lightBlue-color);
}
.seventh-page-section-two-top-left > p {
  font-family: var(--NotoSansRegular-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.8px;
  color: #4c4c4c;
}
.seventh-page-section-two-top-left > p > span {
  display: flex;
  margin-top: 25px;
}
.seventh-page-section-two-top-left > h1 {
  font-family: var(--ZenBold-font);
  font-size: 45px;
  line-height: 37px;
  color: #4c4c4c;
}
.seventh-page-section-two-top-left > h1 > span {
  font-size: 29px;
}
.seventh-page-section-two-bottom > .link {
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  background-color: #cbdbf0;
  padding: 15px 100px;
  border-radius: 69px;
  font-size: 21px;
  line-height: 37px;
  font-family: var(--ZenBold-font);
  color: #4c4c4c;
}
.seventh-page-section-two-top-right {
  width: 13%;
  text-align: center;
}
.seventh-page-section-two-top-right > img {
  width: 100%;
}
.seventh-page-section-two-bottom > img {
  width: 100%;
}
.seventh-page-section-two-bottom {
  background-color: white;
  padding: 50px 50px;
}
.seventh-page-section-two-bottom > .heading {
  font-size: 18px;
  line-height: 30px;
  font-family: var(--ZenBold-font);
  margin-top: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.seventh-page-section-two-bottom form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.seventh-page-section-two-bottom form > .div {
  width: 100%;
}
.seventh-page-section-two-bottom form > .div > .label {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.seventh-page-section-two-bottom form > .div > .label > span {
  background-color: #cbdbf0;
  border-radius: 3px;
  padding: 2px 13px;
  margin-right: 10px;
  font-family: var(--ZenBold-font);
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.6px;
}
.seventh-page-section-two-bottom form > .div > .label > p {
  font-size: 15px;
  font-family: var(--ZenBold-font);
  letter-spacing: 0.75px;
}
.seventh-page-section-two-bottom form > .div > .input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.seventh-page-section-two-bottom form > .div > .input div {
  display: flex;
  align-items: center;
  width: 48%;
}
.seventh-page-section-two-bottom form > .div > .input div > label {
  font-family: var(--ZenBold-font);
  color: #4c4c4c;
}
.seventh-page-section-two-bottom form > .div > .input div > input {
  width: 100%;
  border: none;
  outline: none;
  background-color: #e7e7e7;
  height: 56px;
  padding: 20px;
  margin-left: 7px;
  border-radius: 3px;
}
.seventh-page-section-two-bottom form > .div-2 > .input div {
  width: 100%;
}
.seventh-page-section-two-bottom form > .div-2 > .input div > input {
  margin-left: 0px;
}
@media(max-width: 1024px){
  .seventh-page-section-two{
    padding: 80px 20px;
    gap: 0px;
  }
  .seventh-page-section-two-inner_div{
    width: 100%;
    gap: 90px;
  }
  .seventh-page-section-two-top{
    justify-content: space-around;
  }
  .seventh-page-section-two-top-right{
    width: 19%;
  }
  .seventh-page-section-two-top-left{
    width: 51%;
  }
  .seventh-page-section-two-top-right > img {
    width: 100%;
  }
}
@media(max-width: 767px){
  .seventh-page-section-two-top{
    flex-direction: column;
  }
  .seventh-page-section-two-top-left{
    width: 100%;
    gap: 40px;
  }
  .seventh-page-section-two-top-left p{
    font-size: 14px;
    line-height: 20px;
  }
  .seventh-page-section-two-top-left h5{
    font-size: 27px;
    line-height: 20px;
  }
  .seventh-page-section-two-top-right{
    width: 70%;
  }
  .seventh-page-section-two-top-right > img {
    width: 70%;
  }
  .seventh-page-section-two-bottom {
    padding: 50px 20px;
  }
  .seventh-page-section-two-bottom > .link{
    padding: 9px 20px;
    font-size: 17px;
  }
  .seventh-page-section-two-bottom > .heading{
    font-size: 14px;
    margin-bottom: 40px;
  }
  .seventh-page-section-two-bottom form > .div > .input{
    flex-direction: column;
    gap: 20px;
  }
  .seventh-page-section-two-bottom form > .div > .input div{
    width: 100%;
  }
}
