/*
*   [tag]
*/
body {
  color: var(--noir);
  font-size: 1.6rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-regular);
  position: relative;
}
a {
  text-decoration: none;
}
a:not(.default-button) {
  opacity: 1;
  transition: all .3s;
}
a:not(.default-button):hover,
a:not(.default-button):active {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
  }
}

/*
*   [glonal class]
*/
.text-blue{
  color: var(--blue);
}

/*
*   SP only
*/
br.spbr{
  display: none;
}
@media screen and (max-width: 480px) {
  br.spbr{
    display: inline;
  }
}

/*
*   swiper.js
*/
.swiper-container{
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 75%;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper-button-prev{
  background: url(../img/swiper-prev.png) center center no-repeat;
  border-radius: 9rem;
  left: -2.4rem;
  width: 4.8rem;
  height: 4.8rem;
}
.swiper-button-next{
  background: url(../img/swiper-next.png) center center no-repeat;
  border-radius: 9rem;
  right: -2.4rem;
  width: 4.8rem;
  height: 4.8rem;
}
.swiper-button-next:after,
.swiper-button-prev:after{
  content: "";
}
@media screen and (max-width: 480px) {
  .swiper-button-prev{
    background: url(../img/swiper-prev.png) center center no-repeat;
    background-size: contain;
    border-radius: 6rem;
    left: -2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
  .swiper-button-next{
    background: url(../img/swiper-next.png) center center no-repeat;
    background-size: contain;
    border-radius: 6rem;
    right: -2rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

/*
*   .default-button
*/
.default-button{
  display: flex;
  text-align: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 99rem;
  box-shadow: var(--box-blackshadow);
  color: var(--black);
  font-size: 1.6rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-medium);
  letter-spacing: 0.1em;
  padding: 0;
  width: 36rem;
  height: auto;
  transition: all .3s;
}
.default-button:hover{
  background: var(--blue) !important;
  color: var(--white) !important;
}
.default-button.active{
  display: none;
}
.default-button .default-button-inner-line {
  border-radius: 99rem;
  border: 0.1rem solid var(--blue);
  margin: 0.75rem 0.8rem;
  padding: 1.5rem 1.6rem;
  width: 36rem;
  transition: all .3s;
}
.default-button .default-button-inner-line:hover{
  border: 0.1rem solid var(--white) !important;
}
.default-button img {
  margin: 0 1rem 0 0;
  width: 1.6rem;
  height: 1.7rem;
}
@media screen and (max-width: 480px) {
  .default-button{
    display: flex;
    text-align: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 99rem;
    box-shadow: var(--box-blackshadow);
    color: var(--black);
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
    letter-spacing: 0.1em;
    padding: 0;
    width: 22.5rem;
    height: 4.4rem;
  }
  .default-button.active{
    display: none;
  }
  .default-button .default-button-inner-line {
    border-radius: 99rem;
    border: 0.1rem solid var(--blue);
    margin: 0.325rem 0.4rem;
    padding: 0.75rem 1.6rem;
    width: 22.5rem;
    height: 3.8rem;
  }
  .default-button img {
    margin: 0 1rem 0 0;
    width: 1.6rem;
    height: 1.7rem;
  }
}

/*
*   .hamburger-menu
*/
.hamburger-menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s;
}
.hamburger-menu .hamburger-line {
  background: var(--black);
  margin: 4px auto;
  width: 100%;
  height: 1px;
  transition: background-color 0.3s;
}
.active {
  opacity: 1;
}
.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*
*   header
*/
header{
  position: fixed;
  top: 5%;
  left: 5%;
  width: 95%;
  height: auto;
  z-index: 99999999;
}
header nav{
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 480px) {
  header{
    position: fixed;
    top: 5%;
    left: 5%;
    width: 95%;
    height: auto;
  }
  header nav{
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 6rem;
  }
}

/*
*   #fv
*/
#fv {
  background: url(../img/fv-background.png) left top no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 99.8rem;
}
#fv .fv-left {
  margin: 0 0 0 23rem;
  width: 64rem;
}
#fv .fv-left h1 {
  margin: 7rem 0;
}
#fv .fv-left strong {
  font-size: 5rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 180%;
}
#fv .fv-left p {
  font-size: 2.5rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 150%;
  margin: 7rem 0 0 0;
}
#fv .fv-left .fv-scroll-border {
  position: absolute;
  left: 6rem;
  bottom: 0;
}
#fv .fv-right {
  position: absolute;
  right: 15rem;
  bottom: 0;
  width: 82.5rem;
  height: 99.8rem;
}
#fv .fv-right-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  #fv {
    background: url(../img/fv-background-sp.png) center top no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: static;
    margin: 0;
    padding: 7rem 0 0 0;
    width: 100%;
    height: 84.8rem;
  }
  #fv .fv-left {
    margin: 0 auto;
    width: 90%;
    height: auto;
  }
  #fv .fv-left h1 {
    margin: 7rem auto 2rem auto;
  }
  #fv .fv-left h1 img {
    width: 18.514rem;
    height: 2.4rem;
  }
  #fv .fv-left strong {
    font-size: 2.7rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 2rem auto;
    padding: 0;
  }
  #fv .fv-left p {
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 7rem 0 0 0;
  }
  #fv .fv-left .fv-scroll-border {
    display: none;
    position: static;
  }
  #fv .fv-right {
    display: none;
    position: static;
  }
  #fv .fv-right-sp {
    display: block;
    margin: 0 auto;
    width: 32.7rem;
    height: 36.8rem;
  }
}

/*
*   #about
*/
#about {
  background: url(../img/background-left.png) left 15rem no-repeat; 
  background-size: 25%;
  padding: 10rem 0 20rem 0;
  width: 100%;
  height: auto;
}
.title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column-reverse;
}
#about .about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 76%;
}
#about .about-left {
  width: 75%;
}
#about .about-left .title {
  flex-direction: column;
}
#about .about-left .title h2{
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 180%;
  margin: 3rem 0 1.5rem 0;
}
#about .about-left .title h3{
  font-size: 3.7rem;
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 180%;
  margin: 1.5rem 0 3rem 0;
}
#about .about-left strong {
  color: var(--blue);
  font-size: 2.9rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 180%;
}
#about .about-left p {
  letter-spacing: 0.1em;
  line-height: 150%;
}
#about .about-right{
  width: 25%;
}
@media screen and (max-width: 480px) {
  #about {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  #about .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0;
    padding: 5rem 0 0 0;
    width: 100%;
  }
  #about .about-left {
    padding: 0 2rem;
    width: 100%;
  }
  #about .about-left .title {
    flex-direction: column;
  }
  #about .about-left .title h2{
    color: var(--blue);
    font-size: 2rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 3rem 0 1.5rem 0;
  }
  #about .about-left .title h3{
    font-size: 2.3rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 1.5rem 0 3rem 0;
  }
  #about .about-left strong {
    color: var(--blue);
    font-size: 2rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 1.5rem 0;
  }
  #about .about-left p {
    letter-spacing: 0.1em;
    line-height: 150%;
  }
  #about .about-right{
    margin: 3rem auto;
    width: 25.639rem;
    height: auto;
  }
}

/*
*   #product
*/
#product {
  background: url(../img/product-left.png) left center no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto 10rem auto;
  width: 100%;
  height: 62.8rem;
}
#product .product-image-sp{
  display: none;
}
#product .product-content {
  font-size: 2.2rem;  
  text-align: left;
  letter-spacing: 0.1em;
  margin: 0 0 0 calc(93.9rem + 17.5rem);
  width: auto;
}
#product .product-content h2 {
  margin: 0 0 1.5rem -10rem;
}
#product .product-content h2 img{
  width: 43.8rem;
  height: auto;
}
#product .product-content strong {
  letter-spacing: 0.1em;
  line-height: 200%;
  margin: 1.5rem 0 3rem 0;
}
.accent-border{
  display: inline-block;
  border: 0.1rem solid var(--blue);
  padding: 0.01rem 0.075rem;
}
#product .product-content p {
  margin: 3rem 0 0 0;
  letter-spacing: 0.1em;
  line-height: 200%;
}
@media screen and (max-width: 480px) {
  #product {
    background: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 5rem auto;
    width: 100%;
    height: auto;
  }
  #product .product-image-sp{
    display: block;
    width: 90%;
    height: auto;
  }
  #product .product-content {
    font-size: 2.2rem;  
    text-align: left;
    letter-spacing: 0.15em;
    margin: 5rem auto;
    width: 90%;
  }
  #product .product-content h2 {
    margin: 0 0 2rem 0;
  }
  #product .product-content h2 img{
    width: 21.4rem;
    height: auto;
  }
  #product .product-content strong {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    line-height: 200%;
    margin: 1.5rem 0 3rem 0;
  }
  .accent-border{
    display: inline-block;
    border: 0.1rem solid var(--blue);
    padding: 0.01rem 0.075rem;
  }
  #product .product-content p {
    font-size: 1.6rem;
    margin: 3rem 0 0 0;
    letter-spacing: 0.15em;
    line-height: 200%;
  }
}

/*
*   #feature
*/
#feature{
  background: var(--blue-gradation);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
}
.title-big{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.title-big h2{
  font-size: 2.5rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  line-height: 150%;
  text-align: center;
  margin: 3rem 0 0 0;
}
.title-big h3{
  color: var(--blue);
  font-size: 15rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-extralight);
  letter-spacing: 0.1em;
  line-height: 150%;
  text-align: center;
  margin: 0 0 3rem 0;
}
#feature ol{
  background: url(../img/vertical-line.png) 17% 2rem no-repeat;
  background-size: 0.25rem 80%;
  counter-reset: num 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10rem auto;
  width: 65%;
}
#feature ol li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 10rem 0;
  width: 100%;
}
#feature ol li:before{
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: block;
  color: var(--blue);
  font-size: 3.4rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-regular);
  letter-spacing: 0.2em;
  position: absolute;
  top: 3rem;
  left: 3rem;
}
#feature ol li .feature-guide{
  margin: 0 0 0 0;
  width: 41.6rem;
  height: 41.6rem;
}
#feature ol li .feature-contents{
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
  width: 63.7rem;
  height: auto;
}
#feature ol li .feature-contents .feature-title{
  background: url(../img/feature-under-dotted.png) center 2.5rem no-repeat;
  background-size: 1rem;
  padding: 15rem 0 0 0;
  height: auto;
}
#feature ol li .feature-contents .feature-title h4{
  font-size: 3.3rem;
  font-weight: var(--zen-bold);
  margin: 0 0 2rem 0;
}
#feature ol li .feature-contents .feature-title p{
  letter-spacing: 0.1em;
  line-height: 180%;
}
#feature ol li .feature-contents .feature-box{
  background: url(../img/feature-box.png) center center no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63.7rem;
  height: 18.4rem;
}
#feature ol li .feature-contents .feature-box p{
  letter-spacing: 0.1em;
  line-height: 180%;
  margin: 0 auto;
  width: auto;
}
#feature .feature-footer {
  background: url(../img/feature-bottom-background.png) center bottom no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66.5rem;
}
#feature .feature-footer .feature-footer-left{
  margin: 0 0 0 12.5%;
  width: 37.5%;
}
#feature .feature-footer .feature-footer-left h3{
  font-size: 4rem;
  font-weight: var(--zen-bold);
  line-height: 200%;
  letter-spacing: 0.1em;
}
#feature .feature-footer .feature-footer-right{
  margin: 0 10% 0 0;
  width: 40%;
}
@media screen and (max-width: 480px) {
  #feature{
    background: var(--blue-gradation);
    margin: 10rem auto 0 auto;
    width: 100%;
    height: auto;
  }
  .title-big{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .title-big h2{
    font-size: 1.6rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    margin: 1.5rem 0 0 0;
  }
  .title-big h3{
    color: var(--blue);
    font-size: 4.6rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-extralight);
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem 0;
  }
  #feature ol{
    background: none;
    background-size: unset;
    counter-reset: num 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 5rem auto;
    width: 32.7rem;
  }
  #feature ol li{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 0.1rem solid var(--blue);
    position: relative;
    margin: 0;
    padding: 0 0 3rem 0;
    width: 100%;
  }
  #feature ol li:last-child{
    border-bottom: 0;
  }
  #feature ol li:before{
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
    display: block;
    color: var(--blue);
    font-size: 2.2rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-regular);
    letter-spacing: 0.1em;
    position: absolute;
    top: 5rem;
    left: 5rem;
  }
  #feature ol li .feature-guide{
    margin: 3rem auto;
    width: 25.5rem;
    height: 25.5rem;
  }
  #feature ol li .feature-contents{
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    width: 32.7rem;
    height: auto;
  }
  #feature ol li .feature-contents .feature-title{
    background: url(../img/feature-under-dotted.png) center 2.5rem no-repeat;
    padding: 11rem 0 0 0;
    height: auto;
  }
  #feature ol li .feature-contents .feature-title h4{
    font-size: 2.6rem;
    font-weight: var(--zen-bold);
    line-height: 180%;
    margin: 0;
  }
  #feature ol li .feature-contents .feature-title p{
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 180%;
  }
  #feature ol li .feature-contents .feature-title p br{
    display: none;
  }
  #feature ol li .feature-contents .feature-box{
    background:
      url(../img/rectangle-left-side.png) left top no-repeat,
      url(../img/rectangle-right-side.png) right bottom no-repeat;
    background-size: 5.647rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32.7rem;
    height: auto;
  }
  #feature ol li .feature-contents .feature-box p{
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 180%;
    margin: 0 auto;
    padding: 2.48rem;
    width: auto;
  }
  #feature .feature-footer {
    background: url(../img/feature-bottom-background-sp.png) center top no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    width: 100%;
    height: auto;
  }
  #feature .feature-footer .feature-footer-left{
    margin: 0 auto;
    width: 100%;
  }
  #feature .feature-footer .feature-footer-left h3{
    font-size: 2.2rem;
    font-weight: var(--zen-bold);
    line-height: 200%;
    letter-spacing: 0.1em;
    margin: 0 auto;
    padding: 5rem 0 0 0;
    width: 32.7rem;
  }
  #feature .feature-footer .feature-footer-right{
    margin: 0 10% 0 0;
    width: 100%;
  }
}

/*
*   #why
*/
#why {
  background: url(../img/background-right.png) right -30rem no-repeat;
  background-size: 60rem;
  width: 100%;
}
#why .title {
  flex-direction: column;
}
#why .title h2 {
  background: url(../img/title-why.png) 18% 25% no-repeat;
  font-size: 3.6rem;
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
  padding: 10rem 0 3rem 0;
  width: 60%;
}
#why .title p {
  font-size: 1.8rem;
  font-weight: var(--zen-medium);
  letter-spacing: 0.1em;
  line-height: 180%;
  text-align: center;
  margin: 0 auto;
}
#why .why-image {
  display: block;
  margin: 3rem auto;
  width: 81rem;
  height: auto;
}
#why .why-image-sp {
  display: none;
}
#why .difference {
  width: 100%;
}
#why .difference .title h2{
  background: none;
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: var(--zen-bold);
  line-height: 180%;
  margin: 3rem 0 1rem 0;
  padding: 0;
  width: 100%;
}
#why .difference .title p{
  font-size: 1.8rem;
  font-weight: var(--zen-regular);
  margin: 1rem 0 3rem 0;
  padding: 0;
  line-height: 180%;
  width: 100%;
}
#why .difference table{
  border: 0;
  margin: 0 auto;
  width: 122rem;
  height: auto;
}
#why .difference th{
  background: var(--lightblue);
  border: 0.1rem solid var(--border-gray);
  font-weight: var(--zen-bold);
  line-height: 150%;
  text-align: center;
  vertical-align: middle;
  width: auto;
}
#why .difference .first-cell{
  background: var(--lightblue);
  border: 0.1rem solid var(--border-gray);
  color: var(--blue);
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
  width: 20.4rem;
  height: 10.5rem;
}
#why .difference .GSD-cell{
  background: var(--blue);
  border: 0.1rem solid var(--border-gray);
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
  width: 25.4rem;
  height: 10.5rem;
}
#why .difference th.GSD-cell{
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
#why .difference td{
  background: var(--gray);
  border: 0.1rem solid var(--border-darkgray);
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
  width: 25.4rem;
  height: 10.5rem;
}
#why .difference td img{
  display: block;
  width: 2.8rem;
  margin: 0.5rem auto;
}
#why .difference td span{
  line-height: 150%;
}
#why .root{
  margin: 3rem auto;
  width: 100%;
  height: auto;
}
#why .root-sp{
  display: none;
}
@media screen and (max-width: 480px) {
  #why {
    background: none;
    margin: 10rem 0;
    width: 100%;
  }
  #why .title {
    flex-direction: column;
    margin: 0 auto;
    width: 32.7rem;
  }
  #why .title h2 {
    background: url(../img/title-why.png) 9% 25% no-repeat;
    font-size: 2.3rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.1em;
    line-height: 180%;
    text-align: center;
    margin: 0 auto;
    padding: 10rem 0 3rem 0;
    width: 100%;
  }
  #why .title p {
    font-size: 1.4rem;
    font-weight: var(--zen-medium);
    letter-spacing: 0.1em;
    line-height: 180%;
    text-align: left;
    margin: 0 auto;
  }
  #why .why-image {
    display: none;
  }
  #why .why-image-sp {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  #why .difference {
    width: 100%;
  }
  #why .difference .title h2{
    background: none;
    color: var(--blue);
    font-size: 1.6rem;
    font-weight: var(--zen-bold);
    line-height: 180%;
    margin: 3rem 0 1rem 0;
    padding: 0;
    width: 100%;
  }
  #why .difference .title p{
    font-size: 1.4rem;
    font-weight: var(--zen-regular);
    margin: 1rem 0 3rem 0;
    padding: 0;
    line-height: 180%;
    text-align: center;
    width: 100%;
  }
  #why .difference .scroll-x{
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  #why .difference table{
    display: block;
    border: 0;
    margin: 0 0 0 2rem;
    width: 121.8rem;
    height: auto;
  }
  #why .difference th{
    border: 0.1rem solid var(--border-gray);
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
    width: 23.7rem;
    height: 7.5rem;
  }
  #why .difference .first-cell{
    background: var(--lightblue);
    border: 0.1rem solid var(--border-gray);
    color: var(--blue);
    letter-spacing: 0.1em;
    text-align: center;
    vertical-align: middle;
    width: 14.9rem;
    height: 7.5rem;
  }
  #why .difference .GSD-cell{
    background: var(--blue);
    border: 0.1rem solid var(--border-gray);
    color: var(--white);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    vertical-align: middle;
    width: 23.7rem;
    height: 7.5rem;
  }
  #why .difference th.GSD-cell{
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
  #why .difference td{
    background: var(--gray);
    border: 0.1rem solid var(--border-darkgray);
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0.1em;
    text-align: left;
    vertical-align: middle;
    width: 23.7rem;
    height: 7.5rem;
  }
  #why .difference td div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    width: 22rem;
  }
  #why .difference td div img{
    margin: 0 1rem 0 0;
    width: 2.8rem;
    height: auto;
  }
  #why .root{
    display: none;
  }
  #why .root-sp{
    display: block;
    margin: 3rem auto;
    width: 100%;
    height: auto;
  }
}

/*
*   #types
*/
#types{
  margin: 0 auto 10rem auto;
  width: 100%;
  height: auto;
}
#types .types-sub{
  font-size: 1.8rem;
  line-height: 180%;
  text-align: center;
  margin: 3rem auto 5rem auto;
}
#types .types-box{
  background: var(--lightgray);
  margin: 10rem auto;
  padding: 5rem;
  width: 150rem;
}
#types .types-box .types-box-title{
  background: url(../img/types-line.png) bottom center no-repeat;
  line-height: 180%;
  text-align: center;
  padding: 0 0 3rem 0;
}
#types .types-box .types-box-title img{
  margin: 0 auto;
  width: auto;
  height: auto;
}
#types .types-box .types-box-title h4{
  color: var(--blue);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  padding: 1.5rem;
}
#types .types-box .types-box-title p{
  letter-spacing: 0.1em;
}
#types .types-box .types-inner-box{
  background: var(--lightgray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 0 0 3rem;
  width: 100%;
  height: auto;
}
#types .types-box .types-inner-box .types-points-rectangle{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 3rem auto;
  padding: 3rem 0 0 0;
}
#types .types-box .types-inner-box .types-points-rectangle li{
  font-size: 1.8rem;
  padding: 1.5rem 0;
}
#types .types-box .types-inner-box .types-points-rectangle li:before{
  content: "■";
  margin: 0 1rem 0 0;
  font-size: 1.8rem;
}
#types .types-box .types-inner-box .types-points{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 3rem auto;
  padding: 3rem 0 0 0;
}
#types .types-box .types-inner-box .types-points li{
  font-size: 1.8rem;
  padding: 1.5rem 0;
}
#types .types-box .types-inner-box .types-points li:before{
  content: "●";
  margin: 0 1rem 0 0;
  font-size: 1.8rem;
}
#types .types-box .types-inner-box .types-points-sheet{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 3rem auto;
  padding: 3rem 0 0 0;
}
#types .types-box .types-inner-box .types-points-sheet li{
  font-size: 1.8rem;
  padding: 1.5rem 0;
}
#types .types-box .types-inner-box .types-needs{
  border: 0.1rem solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 3rem 0;
  padding: 3rem 0;
  width: 107.3rem;
  height: auto;
}
#types .types-box .types-inner-box .types-needs h5{
  background: var(--lightgray);
  font-size: 2.2rem;
  text-align: center;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 5rem;
}
#types .types-box .types-inner-box .types-needs ul{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#types .types-box .types-inner-box .types-needs ul li{
  font-size: 1.8rem;
  position: relative;
  margin: 1.5rem 0;
}
#types .types-box .types-inner-box .types-needs ul li:before{
  content: "";
  display: block;
  background: url(../img/icon-checked.png) left center no-repeat;
  background-size: 90%;
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 2rem;
  height: 2rem;
}
#types .types-box .types-inner-box p{
  line-height: 200%;
  margin: 0 auto;
  width: 107.3rem;
}
@media screen and (max-width: 480px) {
  #types{
    margin: 0 auto 10rem auto;
    width: 100%;
    height: auto;
  }
  #types .types-sub{
    font-size: 1.4rem;
    line-height: 180%;
    text-align: left;
    margin: 3rem auto 5rem auto;
    width: 32.7rem;
    height: auto;
  }
  #types .types-box{
    background: var(--lightgray);
    margin: 10rem auto;
    padding: 5rem 0;
    width: 32.7rem;
  }
  #types .types-box .types-box-title{
    text-align: center;
  }
  #types .types-box .types-box-title img{
    margin: 0 auto;
    width: auto;
    height: auto;
  }
  #types .types-box .types-box-title h4{
    color: var(--blue);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 180%;
    padding: 1.5rem 0;
  }
  #types .types-box .types-box-title p{
    letter-spacing: 0.1em;
  }
  #types .types-box .types-inner-box{
    background: var(--lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 0 3rem 0;
    width: 27.9rem;
    height: auto;
  }
  #types .types-box .types-inner-box .types-points-rectangle{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 3rem auto;
    padding: 3rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points-rectangle li{
    font-size: 1.4rem;
    line-height: 180%;
    padding: 0.5rem 0;
  }
  #types .types-box .types-inner-box .types-points-rectangle li:before{
    content: "■";
    margin: 0 0.5rem 0 0;
    font-size: 1.4rem;
  }
  #types .types-box .types-inner-box .types-points{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 3rem auto;
    padding: 3rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points li{
    font-size: 1.4rem;
    line-height: 180%;
    padding: 0.5rem 0;
  }
  #types .types-box .types-inner-box .types-points li:before{
    content: "●";
    margin: 0 0.5rem 0 0;
    font-size: 1.4rem;
  }
  #types .types-box .types-inner-box .types-points-sheet{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 3rem auto;
    padding: 3rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points-sheet li{
    font-size: 1.4rem;
    line-height: 180%;
    padding: 0.5rem 0;
  }
  #types .types-box .types-inner-box .types-needs{
    border: 0.1rem solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin: 3rem auto;
    padding: 3rem 0;
    width: 27.9rem;
    height: auto;
  }
  #types .types-box .types-inner-box .types-needs h5{
    background: var(--lightgray);
    font-size: 1.6rem;
    text-align: center;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 17.9rem;
  }
  #types .types-box .types-inner-box .types-needs ul{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  #types .types-box .types-inner-box .types-needs ul li{
    font-size: 1.4rem;
    line-height: 180%;
    position: relative;
    margin: 0.5rem 0 0.5rem 2rem;
    width: 21.1rem;
  }
  #types .types-box .types-inner-box .types-needs ul li:before{
    content: "";
    display: block;
    background: url(../img/icon-checked.png) left center no-repeat;
    position: absolute;
    left: -2.25rem;
    top: 0.25rem;
    transform: translate(0, 0);
    width: 2rem;
    height: 2rem;
  }
  #types .types-box .types-inner-box p{
    line-height: 200%;
    margin: 0 auto;
    width: 100%;
  }
}

/*
*   #flow
*/
#flow{
  margin: 10rem auto;
  width: 100%;
  height: auto;
}
#flow .title-big{
  align-items: flex-start;
  margin: 0 auto;
  width: 75%;
}
#flow .title-big h2{
  text-align: left;
}
#flow .title-big h3{
  text-align: left;
}
#flow ol{
  counter-reset: num 0;
  margin: 10rem 0 10rem 29.5%;
  width: 70.5%;
}
#flow ol li{
  display: flex;
  align-items: center;
  background: url(../img/flow-left-dogear.png) left top no-repeat;
  background-size: 4.6rem;
  box-shadow: var(--box-blackshadow);
  line-height: 150%;
  position: relative;
  margin: 0 0 5rem 0;
  padding: 0 5rem;
  width: 100%;
  height: 10.1rem;
}
#flow ol li:before{
  counter-increment: num;
  content: counter(num);
  display: block;
  color: var(--blue);
  font-size: 7rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-extralight);
  line-height: 10.1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: -8rem;
  width: 5rem;
  height: 10.1rem;
}
@media screen and (max-width: 480px) {
  #flow{
    margin: 10rem auto;
    width: 100%;
    height: auto;
  }
  #flow .title-big{
    align-items: flex-start;
    margin: 0 auto;
    width: 32.7rem;
  }
  #flow .title-big h2{
    text-align: left;
  }
  #flow .title-big h3{
    text-align: left;
  }
  #flow ol{
    counter-reset: num 0;
    margin: 10rem 0 10rem 8rem;
    width: 29.4rem;
  }
  #flow ol li{
    display: flex;
    align-items: flex-start;
    background: url(../img/flow-left-dogear.png) left top no-repeat;
    background-size: 3.1rem;
    box-shadow: var(--box-blackshadow);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 200%;
    word-wrap: break-word;
    position: relative;
    margin: 0 0 5rem 0;
    padding: 2.5rem 2rem 0 2.5rem;
    width: 100%;
    height: 19.3rem;
  }
  #flow ol li:before{
    counter-increment: num;
    content: counter(num);
    display: block;
    color: var(--blue);
    font-size: 5rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-extralight);
    line-height: 1;
    text-align: center;
    position: absolute;
    top: 0;
    left: -5rem;
    width: 2.5rem;
    height: auto;
  }
  #flow ol li a{
    color: var(--blue);
    text-decoration: underline;   
  }
}

/*
*   #movie
*/
#movie{
  margin: 10rem auto;
  width: 100%;
  height: auto;
}
.title-italic{
  position: relative;
  margin: 0 auto;
  width: 75%;
  height: 10rem;
}
.title-italic h2{
  position: absolute;
  top: -1rem;
  left: -6.5rem;
  z-index: -1;
}
.title-italic h2 img{
  width: 34.1rem;
  height: auto;
}
#movie .movie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  margin: 0 auto;
  width: 70%;
  height: auto;
}
#movie .movie-wrapper li {
  margin: 1% auto;
  text-align: center;
  width: 45%;
  height: auto;
}
#movie .movie-wrapper li img{
  margin: 0 0 2% 0;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: auto;
}
#movie iframe{
  display: block;
  margin: 10rem auto;
  width: 68.5%;
  height: 70rem;
}
#movie .movie-footer-text{
  background: var(--lightblue);
  line-height: 180%;
  text-align: center;
  width: 68.5%;
  margin: 0 auto;
  padding: 2.5rem;
}
@media screen and (max-width: 480px) {
  #movie{
    margin: 15rem auto 10rem auto;
    width: 100%;
    height: auto;
  }
  .title-italic{
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  .title-italic h2{
    position: absolute;
    top: -7rem;
    left: 0;
    z-index: -1;
  }
  .title-italic h2 img{
    width: 18.9rem;
    height: auto;
  }
  #movie .movie-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    margin: 0 auto;
    width: 32.7rem;
    height: auto;
  }
  #movie .movie-wrapper li {
    margin: 1% auto;
    text-align: center;
    width: 100%;
    height: auto;
  }
  #movie .movie-wrapper li img{
    margin: 0 0 2rem 0;
    width: 100%;
    height: auto;
  }
  #movie iframe{
    display: block;
    margin: 5rem auto;
    width: 32.7rem;
    height: 60rem;
  }
  #movie .movie-footer-text{
    line-height: 180%;
    text-align: center;
    margin: 0 auto;
    padding: 2.5rem;
    width: 100%;
  }
}

/*
*   #deduction
*/
#deduction{
  background: var(--lightblue);
  margin: 0 auto;
  padding: 20rem 0;
  width: 100%;
  height: auto;
}
#deduction .deduction-sub {
  font-size: 1.8rem;
  line-height: 200%;
  text-align: center;
  margin: 5rem auto 10rem auto;
}
#deduction .deduction-case {
  background: var(--white);
  margin: 0 auto;
  padding: 10rem 0;
  width: 150rem;
  height: auto;
}
#deduction .deduction-case h4{
  color: var(--blue);
  font-size: 2.2rem;
  letter-spacing: 0.5rem;
  text-align: center;
  padding: 7.5rem 0;
}
#deduction .deduction-case .deduction-box {
  border: 0.1rem solid var(--blue);
  position: relative;
  margin: 0 auto 10rem auto;
  padding: 5rem;
  width: 107.3rem;
  height: auto;
}
#deduction .deduction-case .deduction-box h5{
  background: var(--white);
  font-size: 2.2rem;
  font-weight: var(--zen-medium);
  letter-spacing: 0.5rem;
  text-align: center;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 5rem;
}
#deduction .deduction-case .deduction-box p{
  line-height: 180%;
}
#deduction .deduction-case .deduction-box .deduction-inner-box h6{
  font-size: 1.8rem;
  font-weight: var(--zen-medium);
  letter-spacing: 0.5rem;
  text-align: center;
  padding: 2.5rem 0;
}
#deduction .deduction-case .deduction-box .deduction-inner-box p{
  text-align: center;
  letter-spacing: 0.2rem;
  margin: 0 auto 3rem auto;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc{
  border-bottom: 0.1rem solid var(--border-darkgray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 5rem auto;
  padding: 0 0 5rem 0;
  width: 82.2rem;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc.border-less{
  border-bottom: 0;
  padding: 3rem 0 0 0;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc img.set-label{
  width: 23.8rem;
  height: 14.4rem;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc img.no-label{
  margin: 1.9rem 0 0 0;
  width: 23.8rem;
  height: 12.5rem;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc img.icon-calc{
  margin: 1.9rem 0 0 0;
}
#deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc-sp{
  display: none;
}
#deduction .deduction-case .deduction-box .deduction-inner-box p.deduction-inner-box-sub {
  text-align: left;
  margin: 0 auto;
  padding: 0;
  width: 82.2rem;
}
@media screen and (max-width: 480px) {
  #deduction{
    background: var(--lightblue);
    margin: 0 auto;
    padding: 10rem 0;
    width: 100%;
    height: auto;
  }
  #deduction .deduction-sub {
    font-size: 1.4rem;
    line-height: 200%;
    letter-spacing: 0.1em;    
    text-align: left;
    margin: 5rem auto;
    width: 32.7rem;
    height: auto;
  }
  #deduction .deduction-sub br{
    display: none;
  }
  #deduction .deduction-sub br.spbr{
    display: inline;
  }
  #deduction .deduction-case {
    background: var(--white);
    margin: 0 auto;
    padding: 3rem 0;
    width: 32.7rem;
    height: auto;
  }
  #deduction .deduction-case h4{
    color: var(--blue);
    font-size: 1.8rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.5rem;
    text-align: center;
    margin: 0 0 3rem 0;
    padding: 3rem 0;
  }
  #deduction .deduction-case .deduction-box {
    border: 0.1rem solid var(--blue);
    position: relative;
    margin: 0 auto 6rem auto;
    padding: 0;
    width: 27.9rem;
    height: auto;
  }
  #deduction .deduction-case .deduction-box h5{
    background: var(--white);
    font-size: 1.6rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.5rem;
    text-align: center;
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0;
    width: 17.6rem;
  }
  #deduction .deduction-case .deduction-box p{
    font-size: 1.4rem;
    line-height: 180%;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box h6{
    font-size: 1.6rem;
    font-weight: var(--zen-medium);
    letter-spacing: 0.5rem;
    line-height: 180%;
    text-align: center;
    padding: 4rem 0 0 0;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box p{
    font-size: 1.4rem;
    text-align: left;
    letter-spacing: 0.2rem;
    margin: 3rem auto;
    width: 23.1rem;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc{
    display: none;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc-sp{
    border-bottom: 0.1rem solid var(--border-darkgray);
    display: block;
    margin: 0 auto;
    width: 23.1rem;
    height: auto;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc-sp.border-less{
    border-bottom: 0;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box .deduction-calc-sp img{
    display: block;
    margin: 3rem auto;
    width: 100%;
    height: auto;
  }
  #deduction .deduction-case .deduction-box .deduction-inner-box p.deduction-inner-box-sub {
    text-align: left;
    margin: 3rem auto;
    padding: 0;
    width: 23.1rem;
  }
}

/*
*   #voice
*/
#voice{
  margin: 15rem auto 10rem auto;
  width: 100%;
  height: auto;
}
#voice .voice-swiper{
  margin: 3rem auto;
  width: 90%;
  height: auto;
}
#voice .voice-swiper .swiper-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10rem auto;
  width: 100%;
  height: auto;
}
#voice .voice-swiper .swiper-slide{
  background: url(../img/voice-box.png) center top no-repeat;
  background-size: contain;
  margin: 0;
  padding: 4rem 0;
  width: 36.3rem;
  height: 43.7rem;
}
#voice .voice-swiper .swiper-slide .inner{
  margin: 0 auto;
  padding: 0 3rem;
  width: 36.3rem;
  height: 43.7rem;
}
#voice .voice-swiper .swiper-slide .inner h4{
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: var(--zen-bold);
  margin: 0 auto 3rem auto;
  width: 100%;
  height: auto;
}
#voice .voice-swiper .swiper-slide .inner p{
  font-size: 1.6rem;
  font-weight: var(--zen-regular);
  line-height: 180%;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  #voice{
    margin: 10rem auto 0 auto;
    width: 100%;
    height: auto;
  }
  #voice .voice-swiper .swiper-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5rem auto;
    width: 100%;
    height: auto;
  }
  #voice .voice-swiper .swiper-slide{
    background: url(../img/voice-box-sp.png) center top no-repeat;
    background-size: contain;
    margin: 0;
    padding: 3rem 0;
    width: 27.9rem;
    height: 40.8rem;
  }
  #voice .voice-swiper .swiper-slide .inner{
    padding: 0 2rem;
    width: 27.9rem;
    height: 40.8rem;
  }
  #voice .voice-swiper .swiper-slide .inner h4{
    color: var(--blue);
    font-size: 1.9rem;
    font-weight: var(--zen-bold);
    margin: 0 auto 3rem auto;
    width: 100%;
    height: auto;
  }
  #voice .voice-swiper  .swiper-slide .inner p{
    font-size: 1.4rem;
    font-weight: var(--zen-regular);
    line-height: 180%;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
}

/*
*   #beforeafter
*/
#beforeafter{
  margin: 10rem auto;
  width: 100%;
  height: auto;
}
#beforeafter p{
  letter-spacing: 0.1em;
  text-align: center;
}
#beforeafter .beforeafter-swiper{
  margin: 10rem auto;
  width: 100%;
  height: auto;
}
#beforeafter .beforeafter-swiper .swiper-wrapper{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto; 
  width: 100%;
  height: auto;
}
#beforeafter .beforeafter-swiper .swiper-slide{
  width: 47.96rem;
  height: 47.96rem;
}
#beforeafter .beforeafter-swiper .swiper-slide .inner{
  width: 47.96rem;
  height: 47.96rem;
}
#beforeafter .beforeafter-swiper .swiper-slide .inner img{
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  #beforeafter{
    margin: 0 auto 10rem auto;
    width: 100%;
    height: auto;
  }
  #beforeafter p{
    letter-spacing: 0.1em;
    text-align: center;
  }
  #beforeafter .beforeafter-swiper{
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  #beforeafter .beforeafter-swiper .swiper-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5rem auto; 
    width: 100%;
    height: auto;
  }
  #beforeafter .beforeafter-swiper .swiper-slide{
    margin: 0.5% auto;
    width: 100%;
    height: auto;
  }
  #beforeafter .beforeafter-swiper .swiper-slide .inner{
    margin: 0.5% auto;
    width: 100%;
    height: auto;
  }
  #beforeafter .beforeafter-swiper .swiper-slide .inner img{
    display: block;
    margin: 0.5% auto;
    width: 100%;
    height: auto;
  }
}

/*
*   #faq
*/
#faq{
  background: var(--lightgray) url(../img/background-left.png) left -50rem no-repeat;
  background-size: 45%;
  margin: 10rem auto 0 auto;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
#faq dl{
  margin: 10rem auto;
  width: 122rem;
  height: auto;
}
#faq dl dt{
  cursor: pointer;
  background: url(../img/faq-inactive.png) right 2rem no-repeat;
  background-size: 3.3rem;
  border-top: 0.1rem solid var(--border-darkgray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1rem 0;
  padding: 1rem 0 0 10rem;
  line-height: 6rem;
  width: 100%;
  height: 6rem;
}
#faq dl dt.active{
  background: url(../img/faq-active.png) right 2rem no-repeat;
  background-size: 3.3rem;
}
#faq dl dt:first-of-type{
  border-top: 0;
}
#faq dl dt:before{
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-light);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 6rem;
  width: 5rem;
  height: 6rem;
}
#faq dl dd{
  display: none;
  position: relative;
  line-height: 6rem;
  padding: 0 6rem 0 10rem;
  width: 100%;
  height: auto;
}
#faq dl dd:first-of-type{
  display: block;
}
#faq dl dd:before{
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-light);
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 6rem;
}
@media screen and (max-width: 480px) {
  #faq{
    background: var(--lightgray) url(../img/background-left.png) left -15rem no-repeat;
    background-size: 75%;
    margin: 5rem auto 0 auto;
    padding: 5rem 0;
    width: 100%;
    height: auto;
  }
  #faq dl{
    margin: 5rem auto;
    width: 100%;
    height: auto;
  }
  #faq dl dt{
    cursor: pointer;
    background: url(../img/faq-inactive.png) right 3rem no-repeat;
    background-size: 2.6rem;
    border-top: 0.1rem solid var(--border-darkgray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 3rem 4rem;
    line-height: 180%;
    width: 32.7rem;
    height: auto;
  }
  #faq dl dt.active{
    background: url(../img/faq-active.png) right 3rem no-repeat;
    background-size: 2.6rem;
  }
  #faq dl dt:before{
    content: "Q";
    display: block;
    border-top: 0;
    font-size: 2.4rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-light);
    line-height: 1;
    position: absolute;
    top: 3rem;
    left: 0;
    width: auto;
    height: auto;
  }
  #faq dl dd{
    display: none;
    position: relative;
    margin: 0 auto;
    padding: 0 4rem 3rem 4rem;
    line-height: 180%;
    width: 32.7rem;
    height: auto;
  }
  #faq dl dd:first-of-type{
    display: block;
  }
  #faq dl dd:before{
    content: "A";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-light);
    line-height: 1;
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: auto;
    height: auto;
  }
}

/*
*   .cta
*/
.cta {
  background: var(--blue) url(../img/cta-image-right.png) right bottom no-repeat;
  background-size: 50.7rem;
  color: var(--white);
  position: relative;
  padding: 10rem 0;
  width: 100%;
  height: 64rem;
}
.cta h4{
  font-size: 5rem;
  font-weight: var(--zen-medium);
  line-height: 180%;
  text-align: center;
}
.cta p{
  font-size: 2.2rem;
  font-weight: var(--zen-medium);
  margin: 3rem 0;
  text-align: center;
}
.cta .cta-button-area {
  background:
    url(../img/cta-glitter-right.png) top right no-repeat,
    url(../img/cta-glitter-left.png) bottom left no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5rem auto;
  width: 80rem;
  height: 14.5rem;
}
.cta .cta-button-area .default-button{
  box-shadow: var(--box-blackshadow);
  margin: 0 auto;
  width: 50rem;
}
.cta .cta-button-area .default-button .default-button-inner-line{
  width: 50rem;
}
.cta .pagetop{
  background: transparent;
  position: absolute;
  left: 48%;
  bottom: -11.5rem;
  transform: translate(0, -48%);
}
@media screen and (max-width: 480px) {
  .cta {
    background: var(--blue);
    color: var(--white);
    padding: 5rem 0;
    width: 100%;
    height: auto;
  }
  .cta h4{
    font-size: 2.4rem;
    font-weight: var(--zen-medium);
    line-height: 180%;
    text-align: center;
  }
  .cta p{
    font-size: 1.6rem;
    font-weight: var(--zen-medium);
    margin: 3rem auto;
    line-height: 180%;
    text-align: center;
    width: 32.7rem;
  }
  .cta .cta-button-area {
    background:
      url(../img/cta-glitter-right.png) top right no-repeat,
      url(../img/cta-glitter-left.png) bottom left no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem auto;
    padding: 7rem 0;
    width: 32.7rem;
    height: auto;
  }
  .cta .cta-button-area .default-button{
    box-shadow: var(--box-blackshadow);
    margin: 0 auto;
    width: 32.7rem;
    height: auto;
  }
  .cta .cta-button-area .default-button .default-button-inner-line{
    border: 0.2rem solid var(--blue);
    font-size: 1.8rem;
    line-height: 180%;
    margin: 0.7rem 0.8rem;
    padding: 2rem 0;
    width: 32.7rem;
    height: auto;
  }
  .cta .cta-button-area .default-button .default-button-inner-line img {
    display: block;
    margin: 1rem auto;
    width: 2.2rem;
    height: 2.2rem;
  }
  .cta .pagetop{
    background: transparent;
    position: absolute;
    left: 39%;
    bottom: -10rem;
    transform: translate(0, -48%);
  }
}

/*
*   footer
*/
footer{
  background: var(--gray);
  color: var(--noir);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
footer .footer-left{
  padding: 10rem;
}
footer .footer-left .footer-logo a img{
  width: 34.714rem;
  height: auto;
}
footer .footer-left nav ul{
  width: 34rem;
  margin: 0 3rem 0 0; 
}
footer .footer-left nav ul li{
  margin: 2rem 0;
}
footer .footer-left nav ul li:last-child{
  margin: 0 0 2rem 0;
}
footer .footer-left nav ul li a{
  color: var(--noir);
  font-weight: var(--zen-bold);
}
footer .footer-left small{
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-medium);
  letter-spacing: 0.1em;
  margin: 15rem 0 0 0;
}
footer .footer-right{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  padding: 10rem 10rem 10rem 0;
  width: 50%;
}
footer .footer-right nav ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
footer .footer-right nav ul li{
  margin: 2rem 0;
}
footer .footer-right nav ul li a{
  color: var(--noir);
  font-weight: var(--zen-bold);
  letter-spacing: 0.1em;
}
footer .footer-right .default-button{
  margin: 5rem 0;
}
footer .footer-right .footer-banner{
  margin: 0;
  width: 64rem;
  height: auto;
  opacity: 1;
  transition: all .3s;
}
footer .footer-right .footer-banner img{
  width: 100%;
  height: auto;
}
footer .footer-right .footer-banner:hover{
  opacity: 0.6;
}
footer .footer-right small{
  display: none;
}
@media screen and (max-width: 480px) {
  footer{
    background: var(--gray);
    color: var(--noir);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  footer .footer-left{
    width: 100%;
    margin: 5rem auto 2rem auto;
    padding: 0 2rem;
  }
  footer .footer-left .footer-logo a img{
    width: 24.5rem;
    height: auto;
  }
  footer .footer-left nav ul{
    margin: 2rem auto;
    width: 100%;
  }
  footer .footer-left nav ul li{
    margin: 2rem 0;
    width: 100%;
  }
  footer .footer-left nav ul li:last-child{
    margin: 0 0 2rem 0;
  }
  footer .footer-left nav ul li a{
    color: var(--noir);
  }
  footer .footer-left small{
    display: none;
    margin: 0;
  }
  footer .footer-right{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 2rem;
    width: 100%;
  }
  footer .footer-right nav ul{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }
  footer .footer-right nav ul li{
    margin: 1rem 0;
  }
  footer .footer-right nav ul li a{
    color: var(--noir);
    letter-spacing: 0.1em;
  }
  footer .footer-right .default-button{
    margin: 5rem 0;
    width: 100%;
  }
  footer .footer-right .default-button-inner-line{
    width: 100%;
  }
  footer .footer-right .footer-banner{
    margin: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all .3s;
  }
  footer .footer-right .footer-banner img{
    width: 100%;
    height: auto;
  }
  footer .footer-right .footer-banner:hover{
    opacity: 0.6;
  }
  footer .footer-right small{
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-medium);
    margin: 3rem 0 5rem 0;
  }
}

/*
*   #sp-menu
*/
#sp-menu{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  padding: 5rem 0 0 20rem;
  width: 50%;
  height: 100vh;
  transform: translateX(-100%);
  transition: all .3s linear;
  z-index: 999999;
}
#sp-menu.active{
  transform: translateX(0%);
}
#sp-menu ul{
  margin: 0;
  padding: 0;
  width: 100%;
}
#sp-menu ul li {
  margin: 2rem 0;
}
#sp-menu ul li a{
  color: var(--noir);
  font-size: 1.4rem;
  font-weight: var(--zen-bold);
  letter-spacing: 0.2em;
  padding: 2rem 0;
}
#sp-menu ul li a span{
  color: var(--blue);
  display: inline-block;
  font-size: 2.3rem;
  font-family: var(--font-pop);
  font-weight: var(--pop-light);
  padding: 2rem 0;
}
#sp-menu a.default-button {
  color: var(--noir);
  font-size: 2.3rem;
  margin: 2.5rem 0 0 0; 
  width: 60rem;
  height: 8.5rem;
}
#sp-menu a.default-button .default-button-inner-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 60rem;
}
@media screen and (max-width: 480px) {
  #sp-menu{
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 0 0 2.5rem;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
    transition: all .15s linear;
    z-index: 999999;
  }
  #sp-menu.active{
    transform: translateX(0%);
  }
  #sp-menu ul{
    margin: 0;
    padding: 7rem 0 0 0;
    width: 100%;
  }
  #sp-menu ul li {
    margin: 2rem 0 0 0;
  }
  #sp-menu ul li a{
    color: var(--noir);
    font-size: 1.4rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0.2em;
    padding: 0.75rem 0;
  }
  #sp-menu ul li a span{
    color: var(--blue);
    display: inline-block;
    font-size: 2.1rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-light);
    padding: 0.75rem 0;
  }
  #sp-menu a.default-button {
    color: var(--noir);
    font-size: 1.4rem;
    margin: 2.5rem 0 0 0; 
    width: 90%;
    height: auto;
  }
  #sp-menu a.default-button .default-button-inner-line {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    height: auto;
  }
}

/*
*   .side-menu
*   .search-button
*/
.side-menu {
  position: fixed;
  right: 0;
  bottom: 3rem;
  z-index: 999999;
}
.side-menu .search-button{
  background: var(--white);
  box-shadow: var(--box-blackshadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: var(--zen-medium);
  text-align: center;
  line-height: 180%;
  opacity: 1;
  width: 15.6rem;
  height: 15.6rem;
  transition: all .3s;
}
.side-menu .search-button:hover{
  opacity: 0.7;
}
.side-menu .search-button img{
  display: block;
  margin: 0 auto 1rem auto;
  width: 4.1rem;
  height: 4.1rem;
}
.side-menu .search-button span{
  color: var(--noir);
}
@media screen and (max-width: 480px) {
  .side-menu{
    display: none;
  }
}