/*
*   [tag]
*/
body {
  color: var(--black);
  font-size: 1.6rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-regular);
  line-height: 130%;
  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.6rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
  }
}

/*
*   [glonal class]
*/
.text-blue{
  color: var(--blue);
}
.text-bold{
  font-weight: bold;
}
.text-mini{
  font-size: 50%;
}

/*
*   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;
  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(--blue);
  border-radius: 99rem;
  box-shadow: var(--box-blackshadow);
  color: var(--white);
  font-size: 1.8rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-medium);
  letter-spacing: 0.1em;
  margin: 1rem 0 0 0;
  width: 36rem;
  height: auto;
  transition: all .3s;
}
.default-button:hover{
  background: var(--white) !important;
  color: var(--blue) !important;
}
.default-button.active{
  display: none;
}
.default-button .default-button-inner-line {
  border-radius: 99rem;
  border: 0.1rem solid var(--white);
  margin: 0.5rem;
  padding: 1.25rem 1rem;
  width: 36rem;
  transition: all .3s;
}
.default-button .default-button-inner-line:hover{
  border: 0.1rem solid var(--blue) !important;
}
@media screen and (max-width: 480px) {
  .default-button{
    display: flex;
    text-align: center;
    justify-content: space-between;
    background: var(--blue);
    border-radius: 99rem;
    box-shadow: var(--box-blackshadow);
    color: var(--white);
    font-size: 1.3rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
    margin: 0.25rem 0 0 0;
    padding: 0;
    width: 23rem;
    height: 3.8rem;
  }
  .default-button.active{
    display: none;
  }
  .default-button .default-button-inner-line {
    border-radius: 99rem;
    border: 0.1rem solid var(--white);
    line-height: 3rem;
    margin: 0.3rem 0.4rem;
    padding: 0;
    width: 23rem;
    height: 3.2rem;
  }
}

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

/*
*   header
*/
header{
  position: fixed;
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: auto;
  z-index: 99999999;
}
header nav{
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 6rem;
}
header .header-button{
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  header{
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    height: auto;
  }
  header nav{
    display: flex;
    align-items: center; 
    justify-content: space-between;
    padding: 0 5%; 
    width: 100%;
    height: auto;
    gap: 2.5%;
  }
  header .header-button{
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    text-align: center;
    letter-spacing: 0;
    visibility: visible;
    opacity: 1;
  }
  header .header-button.active{
    visibility: hidden;
    opacity: 0;
  }
  header .header-button .text-bold{
    font-size: 1.2rem;
  }
}

/*
*   #fv
*/
#fv {
  background:
    url(../img/fv.png) left top/75% no-repeat,
    url(../img/background-circle-right.png) right center/40% no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 91rem;
}
#fv .fv-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 63%;
  height: 91rem;
}
#fv .fv-container h1 {
  font-size: 2.5rem;
  line-height: 200%;
  letter-spacing: 0.075em;
  margin: 15rem 35rem 0 0;
}
#fv .fv-container h1 .fv-container-logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#fv .fv-container h1 .fv-container-logo img {
  padding: 0 1rem 0 0;
  width: 40rem;
  height: 5rem;
}
#fv .fv-container h1 .fv-container-logo span {
  padding: 1rem 0 0 0;
}
#fv .fv-container p {
  font-size: 3rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-semibold);
  line-height: 150%;
  margin: 2rem 33rem 2rem 0;
}
#fv .fv-container .fv-container-accent {
  color: var(--red);
  font-size: 5rem;
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: #ffe600;
  text-underline-offset: 0em;
  text-decoration-skip-ink: none;
}
#fv .fv-container .fv-container-big {
  display: block;
  margin: 3rem 0 0 0;
  font-size: 7rem;
}
#fv .fv-container-information {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#fv .fv-container-information ul {
  margin: 3rem 0 2rem 1.5rem;
}
#fv .fv-container-information ul li{
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  font-weight: var(--gothic-light);
  margin: 0.5rem 0;
  padding: 1.25rem 1.5rem;
}
#fv .fv-container-information ul li .text-bold {
  font-weight: var(--gothic-regular);
  padding: 0 0.25rem;
}
#fv .fv-container-information ul li .text-mini {
  font-size: 1.2rem;
  font-weight: var(--gothic-regular);
  padding: 0 0.5rem;
}
#fv .fv-container-information img {
  margin: 0 0 0 22rem;
  width: auto;
  height: 20rem;
}
#fv .fv-container-information p {
  font-size: 1.2rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-regular);
  line-height: 130%;
  margin: 0.075rem 0 0.075rem 2rem;
}
@media screen and (max-width: 480px) {
  #fv {
    background:  url(../img/fv.png) center top no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 24rem 0 0 0;
    width: 100%;
    height: auto;
  }
  #fv .fv-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  #fv .fv-container h1 {
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: 0;
    margin: 0 auto;
    width: 93%;
  }
  #fv .fv-container h1 .fv-container-logo {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  #fv .fv-container h1 .fv-container-logo img {
    padding: 0 0.5rem 0 0;
    width: auto;
    height: 3rem;
  }
  #fv .fv-container h1 .fv-container-logo span {
    padding: 1rem 0 0 0;
  }
  #fv .fv-container p {
    font-size: 2.2rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-semibold);
    line-height: 150%;
    margin: 3rem auto 0 auto;
    width: 93%;
  }
  #fv .fv-container .fv-container-accent {
    color: var(--red);
    font-size: 3rem;
    text-decoration: underline;
    text-decoration-thickness: 0.3em;
    text-decoration-color: #ffe600;
    text-underline-offset: 0em;
    text-decoration-skip-ink: none;
  }
  #fv .fv-container .fv-container-big {
    display: block;
    margin: 3rem 0 0 0;
    font-size: 4.25rem;
  }
  #fv .fv-container-information {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0 0 3rem 0;
  }
  #fv .fv-container-information ul {
    margin: -2rem auto 0 auto;
    width: 90.5%;
  }
  #fv .fv-container-information ul li{
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: var(--gothic-light);
    margin: 0.5rem auto;
    padding: 0.75rem 1rem;
  }
  #fv .fv-container-information ul li .text-bold {
    font-size: 1.8rem;
    font-weight: var(--gothic-semibold);
    padding: 0 0.25rem;
  }
  #fv .fv-container-information ul li .text-mini {
    font-weight: var(--gothic-regular);
    padding: 0 0.25rem;
  }
  #fv .fv-container-information img {
    display: block;
    margin: 0;
    width: auto;
    height: 16rem;
  }
  #fv .fv-container-information p {
    font-size: 1rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-regular);
    line-height: 130%;
    margin: 0.5rem auto;
    width: 90.5%;
  }
}

/*
*   #presenter
*/
#presenter {
  background: var(--blue-gradation-x);
  padding: 5rem 0;
  width: 100%;
}
#presenter h2{
  color: var(--blue);
  font-size: 2rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-medium);
  text-align: center;
  padding: 0 0 3rem 0;
}
#presenter .presenter-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto;
  width: 90%;
}
#presenter .presenter-area li {
  display: flex;
  align-items: center;
  justify-content: center;
}
#presenter .presenter-area li .presenter-place {
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-medium);
  text-align: center;
  width: 15rem;
  height: 12rem;
}
#presenter .presenter-area li .presenter-list {
  background: var(--white);
  border: 0.4rem solid var(--blue);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 20rem;
  height: 12rem;
}
#presenter .presenter-area li .presenter-list dt{
  color: var(--black);
  font-size: 1.8rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-medium);
}
#presenter .presenter-area li .presenter-list dd{
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  #presenter {
    background: transparent;
    padding: 0 0 5rem 0;
    width: 100%;
  }
  #presenter h2{
    color: var(--blue);
    font-size: 1.6rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-medium);
    line-height: 150%;
    text-align: center;
    padding: 0 0 1.5rem 0;
  }
  #presenter .presenter-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto;
    width: 93%;
  }
  #presenter .presenter-area li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #presenter .presenter-area li .presenter-place {
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-medium);
    text-align: center;
    width: 15rem;
    height: 10rem;
  }
  #presenter .presenter-area li .presenter-list {
    background: var(--white);
    border: 0.4rem solid var(--blue);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 20rem;
    height: 10rem;
  }
  #presenter .presenter-area li .presenter-list dt{
    color: var(--black);
    font-size: 1.8rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-medium);
  }
  #presenter .presenter-area li .presenter-list dd{
    font-size: 1rem;
  }
}

/*
*   #about
*/
#about {
  background: url(../img/about-map.png) center 30rem/100% no-repeat; 
  background-size: 100%;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  text-align: center;
}
.title h2{
  font-size: 2.4rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-semibold);
  padding: 3rem 0;
}
.title h3{
  border-bottom: 0.1rem solid var(--blue);
  color: var(--blue);
  font-size: 4.8rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-semibold);
  padding: 0 0 2rem 0;
  /* transform: scaleX(1.05); */
}
#about p {
  letter-spacing: 0.1em;
  line-height: 150%;
  text-align: center;
}
#about .about-image {
  margin: 0 3rem 0 0;
  width: 27.8rem;
  height: auto;
}
#about .about-image-sp {
  display: none;
}
#about h4{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 2.4rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  margin: 0 0 2rem 0;
}
#about .about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 35rem auto 0 auto;
  width: 55%;
}
#about .about-wrapper dl{
  background: url("../img/vertical-line.png") 0.5rem 1rem no-repeat;
  background-size: 0.1rem 22.5rem;
}
#about .about-wrapper dl dt{
  position: relative;
  color: var(--blue);
  font-size: 2.2rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  margin: 0 0 0 2.7rem;
}
#about .about-wrapper dl dt:before{
  content: "●";
  position: absolute;
  top: 0;
  left: -2.7rem;
  font-size: 1.2rem;
  font-weight: bold;
}
#about .about-wrapper dl dd{
  font-size: 1.6rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-regular);
  line-height: 130%;
  margin: 0 0 1rem 4.2rem;
  padding: 1rem 0;
}
@media screen and (max-width: 480px) {
  #about {
    background: url(../img/about-map-sp.png) center 17rem/100% no-repeat; 
    padding: 3rem 0;
    width: 100%;
    height: auto;
  }
  .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    text-align: center;
  }
  .title h2{
    font-size: 1.6rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-regular);
    padding: 1.5rem 0;
  }
  .title h3{
    border-bottom: 0.1rem solid var(--blue);
    color: var(--blue);
    font-size: 3.6rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-regular);
    padding: 0 0 1.5rem 0;
    transform: scaleX(1.05);
  }
  #about p {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 150%;
    text-align: center;
  }
  #about .about-image {
    display: none;
  }
  #about .about-image-sp {
    display: block;
    width: 60%;
    height: auto;
  }
  #about h4{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 2.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    margin: 0 0 2rem 0;
  }
  #about .about-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 10rem auto 0 auto;
    width: 93%;
  }
  #about .about-wrapper .about-history{
    margin: 3rem 0;
  }
  #about .about-wrapper dl{
    background: url("../img/vertical-line.png") 0.55rem 1rem no-repeat;
    background-size: 0.15rem 26rem;
  }
  #about .about-wrapper dl dt{
    position: relative;
    color: var(--blue);
    font-size: 1.6rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    margin: 0 0 0 1.8rem;
  }
  #about .about-wrapper dl dt:before{
    content: "●";
    position: absolute;
    top: 0;
    left: -1.8rem;
    font-size: 1.4rem;
    font-weight: bold;
  }
  #about .about-wrapper dl dd{
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-regular);
    line-height: 130%;
    margin: 0 0 1rem 3.2rem;
    padding: 1rem 0;
  }
}

/*
*   #feature
*/
#feature{
  background: var(--lightblue) url(../img/feature-bottom-background.png) center bottom no-repeat;
  background-size: 100%;
  margin: 0 auto;
  padding: 10rem 0 70rem 0;
  width: 100%;
  height: auto;
}
#feature ol{
  counter-reset: num 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 5rem auto 0 auto;
  width: 65%;
}
#feature ol li{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 10rem 0;
  width: 100%;
}
#feature ol li .feature-guide{
  margin: 0 0 0 0;
  width: 45rem;
  height: auto;
}
#feature ol li .feature-contents{
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
  width: 67.7rem;
  height: auto;
}
#feature ol li .feature-contents .feature-title{
  background: url(../img/feature-under-dotted.png) center 2.5rem no-repeat;
  background-size: 0.5rem;
  padding: 10rem 0 0 0;
  height: auto;
}
#feature ol li .feature-contents .feature-title h4{
  color: var(--orange);
  font-size: 3.3rem;
  font-family: var(--font-zen);
  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: var(--white);
  border: 0.1rem solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 67.7rem;
  height: 14.4rem;
}
#feature ol li .feature-contents .feature-box::before{
  counter-increment: num;
  content: counter(num);
  display: block;
  background: var(--blue);
  color: var(--white);
  font-size: 2.4rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-regular);
  line-height: 5rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
}
#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: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
  }
  #feature ol{
    background: none;
    background-size: unset;
    counter-reset: num 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    width: 93%;
  }
  #feature ol li{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 0;
    position: relative;
    margin: 0;
    padding: 0 0 3rem 0;
    width: 100%;
  }
  #feature ol li:last-child{
    border-bottom: 0;
  }
  #feature ol li:before{
    display: block;
    color: var(--blue);
    font-size: 1.6rem;
    font-family: var(--font-pop);
    font-weight: var(--pop-regular);
    letter-spacing: 0;
    position: absolute;
    top: 5rem;
    left: 5rem;
  }
  #feature ol li .feature-guide{
    margin: 3rem auto;
    width: 100%;
    height: auto;
  }
  #feature ol li .feature-contents{
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
  #feature ol li .feature-contents .feature-title{
    background: url(../img/feature-under-dotted.png) center 2.5rem no-repeat;
    padding: 9rem 0 0 0;
    height: auto;
  }
  #feature ol li .feature-contents .feature-title h4{
    font-size: 1.8rem;
    font-weight: var(--zen-bold);
    line-height: 100%;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  #feature ol li .feature-contents .feature-title p{
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 150%;
    text-align: center;
  }
  #feature ol li .feature-contents .feature-title p br{
    display: none;
  }
  #feature ol li .feature-contents .feature-title p br.spbr{
    display: inline;
  }
  #feature ol li .feature-contents .feature-box{
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 12.5rem;
  }
  #feature ol li .feature-contents .feature-box::before{
    counter-increment: num;
    content: counter(num);
    display: block;
    background: var(--blue);
    color: var(--white);
    font-size: 1.8rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-regular);
    line-height: 3rem;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
  }
  #feature ol li .feature-contents .feature-box p{
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 130%;
    margin: 0 auto;
    padding: 2rem;
    width: auto;
  }
}

/*
*   #why
*/
#why {
  margin: -50rem 0 5rem 0;
  width: 100%;
}
#why .why-text {
  line-height: 150%;
  text-align: center;
}
#why .why-image {
  display: block;
  margin: 3rem auto;
  width: 122rem;
  height: auto;
}
#why .why-image-sp {
  display: none;
}
#why .difference {
  width: 100%;
}
#why .difference .title h2{
  background: none;
  color: var(--black);
  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 .why-image {
    display: none;
  }
  #why .why-image-sp {
    display: block;
    margin: 1rem auto;
    width: 85%;
    height: auto;
  }
  #why .why-text{
    font-size: 1.2rem;
    margin: 1rem auto 3rem auto;
    width: 85%;
  }
  #why .why-text br{
    display: none;
  }
  #why .why-text br.spbr{
    display: inline;
  }
  #why .difference {
    margin: 1rem auto;
    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: 85.822rem;
    height: auto;
  }
  #why .difference th{
    border: 0.1rem solid var(--border-gray);
    color: var(--noir);
    line-height: 150%;
    font-size: 1.2rem;
    text-align: center;
    vertical-align: middle;
    width: 14.9rem;
    height: 7.5rem;
  }
  #why .difference .first-cell{
    background: var(--lightblue);
    border: 0.1rem solid var(--border-gray);
    color: var(--blue);
    font-size: 1.2rem;
    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.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    vertical-align: middle;
    width: 14.9rem;
    height: 7.5rem;
  }
  #why .difference th.GSD-cell{
    letter-spacing: 0.1em;
    font-size: 1.2rem;
  }
  #why .difference td{
    background: var(--gray);
    border: 0.1rem solid var(--border-darkgray);
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.1em;
    text-align: center;
    vertical-align: middle;
    width: 14.9rem;
    height: 7.5rem;
  }
  #why .difference td div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    font-size: 1rem;
    width: 14.9rem;
  }
  #why .difference td div img{
    display: block;
    margin: 0 0 1rem 0;
    width: 1.8rem;
    height: auto;
  }
  #why .root{
    display: none;
  }
  #why .root-sp{
    display: block;
    margin: 3rem auto;
    width: 100%;
    height: auto;
  }
}

/*
*   #types
*/
#types{
  background: var(--blue-gradation-x);
  margin: 0 auto;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
#types .types-sub{
  line-height: 180%;
  text-align: center;
  margin: 3rem auto;
}
#types .types-box{
  background: var(--white);
  margin: 5rem auto;
  padding: 5rem;
  width: 72.5%;
}
#types .types-box .types-box-title{
  line-height: 180%;
  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: 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(--white);
  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-information {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 1.5rem auto;
  padding: 1.5rem 0 0 0;
}
#types .types-box .types-inner-box .types-information li{
  font-size: 1.8rem;
  padding: 0.5rem 0;
}
#types .types-box .types-inner-box .types-points-rectangle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 1.5rem auto;
  padding: 1.5rem 0 0 0;
}
#types .types-box .types-inner-box .types-points-rectangle li{
  font-size: 1.8rem;
  padding: 0.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 1.5rem auto;
  padding: 1.5rem 0 0 0;
}
#types .types-box .types-inner-box .types-points li{
  font-size: 1.8rem;
  padding: 0.5rem 0 0 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 1.5rem auto;
  padding: 1.5rem 0 0 0;
}
#types .types-box .types-inner-box .types-points-sheet li{
  font-size: 1.8rem;
  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: 1.5rem 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: center;
  justify-content: center;
  flex-direction: column;
}
#types .types-box .types-inner-box .types-needs ul li{
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: var(--gothic-medium);
  text-align: center;  
  margin: 0.5rem 0 0 0;
}
#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;
    padding: 3rem 0;
    width: 100%;
    height: auto;
  }
  #types .types-sub{
    font-size: 1.2rem;
    line-height: 180%;
    text-align: center;
    margin: 0 auto;
    width: 93%;
    height: auto;
  }
  #types .types-box{
    background: var(--lightgray);
    margin: 1.5rem auto;
    padding: 1.5rem 0;
    width: 93%;
  }
  #types .types-box .types-box-title{
    text-align: center;
  }
  #types .types-box .types-box-title img{
    margin: 0 auto;
    width: auto;
    height: 10rem;
  }
  #types .types-box .types-box-title h4{
    color: var(--blue);
    font-size: 1.4rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-semibold);
    letter-spacing: 0;
    line-height: 130%;
    padding: 0.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: 93%;
    height: auto;
  }
  #types .types-box .types-inner-box .types-information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 0.5rem auto;
    padding: 0.5rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-information li{
    font-size: 1.3rem;
    padding: 0.25rem 0;
  }
  #types .types-box .types-inner-box .types-points{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 0.5rem auto;
    padding: 0.5rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points li{
    font-size: 1.3rem;
    line-height: 130%;
    position: relative;
    margin: 0 0 0 1.75rem;
    padding: 0.25rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points li:before{
    content: "●";
    margin: 0 0.5rem 0 0;
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    font-size: 1.3rem;
  }
  #types .types-box .types-inner-box .types-points-sheet{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 1.5rem auto;
    padding: 0.5rem 0 0 0;
  }
  #types .types-box .types-inner-box .types-points-sheet li{
    font-size: 1.3rem;
    padding: 0.25rem 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: 1.5rem auto;
    padding: 1.5rem 0;
    width: 93%;
    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: 100%;
  }
  #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;
    font-weight: var(--gothic-semibold);
    line-height: 150%;
    margin: 0;
    width: 100%;
  }
  #types .types-box .types-inner-box p{
    line-height: 100%;
    margin: 0 auto;
    width: 100%;
  }
}

/*
*   #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;
}
#beforeafter .beforeafter-text{
}
@media screen and (max-width: 480px) {
  #beforeafter{
    margin: 0 auto 3rem auto;
    padding: 7rem 0 3rem 0;
    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;
  }
  #beforeafter .beforeafter-text{
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0;
  }
}

/*
*   #flow
*/
#flow{
  background: var(--blue-gradation-x);
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
#flow ol{
  counter-reset: num 0;
  margin: 10rem auto;
  width: 60%;
}
#flow ol li{
  background: var(--white);
  border: 0.1rem solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150%;
  position: relative;
  text-align: center;
  margin: 0 0 5rem 0;
  padding: 0 5rem;
  width: 100%;
  height: 15rem;
}
#flow ol li:before{
  counter-increment: num;
  content: counter(num);
  display: block;
  background: var(--blue);
  color: var(--white);
  font-size: 2.4rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-regular);
  line-height: 5rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 480px) {
  #flow{
    margin: 3rem auto;
    padding: 7rem 0 3rem 0;
    width: 100%;
    height: auto;
  }
  #flow ol{
    counter-reset: num 0;
    margin: 3rem auto 0 auto;
    width: 93%;
  }
  #flow ol li{
    background: var(--white);
    border: 0.1rem solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 150%;
    position: relative;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 1.5rem 0;
    padding: 0 1.5rem;
    width: 100%;
    min-height: 10rem;
    height: auto;
  }
  #flow ol li:before{
    counter-increment: num;
    content: counter(num);
    display: block;
    background: var(--blue);
    color: var(--white);
    font-size: 1.8rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-regular);
    line-height: 3rem;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
  }
}

/*
*   #movie
*/
#movie{
  margin: 10rem auto;
  width: 100%;
  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: 72.5%;
  height: 70rem;
}
#movie .movie-footer-text{
  background: var(--lightblue);
  line-height: 180%;
  font-size: 1.8rem;
  text-align: center;
  width: 72.5%;
  margin: 0 auto;
  padding: 2.5rem;
}
@media screen and (max-width: 480px) {
  #movie{
    margin: 3rem auto 0 auto;
    width: 100%;
    height: auto;
  }
  #movie .movie-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    margin: 0 auto;
    width: 93%;
    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: 93%;
    height: 60rem;
  }
  #movie .movie-footer-text{
    font-size: 1.3rem;
    line-height: 180%;
    text-align: center;
    margin: 0 auto;
    padding: 2.5rem;
    width: 100%;
  }
}

/*
*   #voice
*/
#voice{
  background: var(--blue-gradation-x);
  margin: 0 auto;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
.arrow-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 5rem 0;
}
.arrow-wrapper li{
  background: var(--white);
  border: 0.1rem solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  width: 60%;
}
.arrow-wrapper li h4{
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2rem;
  line-height: 150%;
  text-align: center;
  position: relative;
  width: 17%;
  height: 15rem;
}
.arrow-wrapper li h4 span{
  font-size: 1.4rem;
}
.arrow-wrapper li h4::after{
  content: "";
  background: var(--blue);
  display: block;
  position: absolute;
  top: 50%;
  right: calc(17% - 4.45rem);
  transform: translate(0, -50%);
  width: 1.2rem;
  height: 1.6rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.arrow-wrapper li p{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 150%;
  padding: 0 5rem;
  width: 83%;
  height: 15rem;
}
@media screen and (max-width: 480px) {
  #voice{
    background: var(--blue-gradation-x);
    margin: 0 auto;
    padding: 3rem 0;
    width: 100%;
    height: auto;
  }
  .arrow-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .arrow-wrapper li{
    background: var(--white);
    border: 0.1rem solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 3rem auto;
    width: 93%;
  }
  .arrow-wrapper li h4{
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    font-size: 1.5rem;
    font-weight: var(--gothic-bold);
    line-height: 150%;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    height: auto;
  }
  .arrow-wrapper li h4 br{
    display: none;
  }
  .arrow-wrapper li h4 span{
    font-size: 1.2rem;
  }
  .arrow-wrapper li h4::after{
    content: "";
    background: var(--blue);
    display: block;
    position: absolute;
    top: 4rem;
    right: 50%;
    clip-path: polygon(50% 0.8rem, 0% 0%, 1rem 0%);
    transform: translate(0, 0);
    width: 1rem;
    height: 0.8rem;
  }
  .arrow-wrapper li p{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 150%;
    padding: 2.5rem;
    width: 100%;
    height: auto;
  }
}

/*
*   #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: 100%; /* reset */
  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: 3rem 0 0 0;
    width: 100%;
    height: auto;
  }
  #deduction .deduction-sub {
    font-size: 1.3rem;
    line-height: 150%;
    letter-spacing: 0.1em;    
    text-align: center;
    margin: 3rem auto;
    width: 93%;
    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: 93%;
    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;
  }
}

/*
*   #faq
*/
#faq{
  background: var(--blue-gradation-x);
  margin: 0 auto;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
#faq .arrow-wrapper li h4{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-size: 2rem;
  line-height: 150%;
  text-align: left;
  position: relative;
  padding: 0 4.5rem;
  width: 40%;
  height: 15rem;
}
#faq .arrow-wrapper li h4 span{
  font-size: 1.4rem;
}
#faq .arrow-wrapper li h4::after{
  content: "";
  background: var(--blue);
  display: block;
  position: absolute;
  top: 50%;
  right: calc(40% - 19.25rem);
  transform: translate(0, -50%);
  width: 1.2rem;
  height: 1.6rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#faq .arrow-wrapper li p{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 150%;
  padding: 0 5rem;
  width: 60%;
  height: 15rem;
}
@media screen and (max-width: 480px) {
  #faq{
    background: var(--blue-gradation-x);
    margin: 0 auto;
    padding: 3rem 0;
    width: 100%;
    height: auto;
  }
  #faq .arrow-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #faq .arrow-wrapper li{
    background: var(--white);
    border: 0.1rem solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 3rem auto;
    width: 93%;
  }
  #faq .arrow-wrapper li h4{
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    font-size: 1.2rem;
    line-height: 150%;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    height: auto;
  }
  #faq .arrow-wrapper li h4 br{
    display: none;
  }
  #faq .arrow-wrapper li h4 span{
    font-size: 1.2rem;
  }
  #faq .arrow-wrapper li h4::after{
    content: "";
    background: var(--blue);
    display: block;
    position: absolute;
    top: 3.75rem;
    right: 50%;
    clip-path: polygon(50% 0.8rem, 0% 0%, 1rem 0%);
    transform: translate(0, 0);
    width: 1rem;
    height: 0.8rem;
  }
  #faq .arrow-wrapper li p{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 150%;
    padding: 2.5rem;
    width: 100%;
    height: auto;
  }
}

/*
*   #location
*/
#location{
  background: var(--white);
  margin: 0 auto;
  padding: 10rem 0;
  width: 100%;
  height: auto;
}
#location .location-container {
  border: 0.1rem solid var(--blue);
  margin: 0 auto 5rem auto;
  width: 72.5%;
}
#location .location-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 2%;
  padding: 2.5rem 2.5rem 0 2.5rem;
  width: 100%; /* reset */
}
#location .location-wrapper .location-left,
#location .location-wrapper .location-right {
  width: 50%;
}
#location .location-wrapper .location-left .location-view {
  display: block;
  width: 100%;
  height: auto;
}
#location .location-wrapper .location-left .location-logo {
  display: block;
  margin: 3rem auto;
  width: 60%;
  height: auto;
}
#location .location-wrapper .location-right {
  padding: 0 0 2.5rem 2.5rem;
}
#location .location-wrapper .location-right .location-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column-reverse;
}
#location .location-wrapper .location-right .location-header .location-tags {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
#location .location-wrapper .location-right .location-header .location-tags li {
  background: var(--blue);
  border-radius: 9999rem;
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-medium);
  text-align: center;
  padding: 0.5rem 3rem;
}
#location .location-wrapper .location-right .location-header h4 {
  font-size: 3rem;
  font-family: var(--font-zen);
  font-family: var(--zen-bold);
  margin: 3rem 0;
}
#location .location-wrapper .location-right h5 {
  color: var(--blue);
  font-size: 2.4rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  margin: 1.5rem 0;
}
#location .location-wrapper .location-right .location-time-table table {
  width: 100%;
}
#location .location-wrapper .location-right .location-time-table table tr:first-of-type th.first-cell {
  width: 30%;
}
#location .location-wrapper .location-right .location-time-table table tr:first-of-type th {
  border-bottom: 0.1rem solid var(--gray);
  text-align: center;
  vertical-align: middle;
  width: 10%;
}
#location .location-wrapper .location-right .location-time-table table tr th.first-cell {
  border-bottom: 0.1rem solid var(--gray);
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0;
  width: 30%;
}
#location .location-wrapper .location-right .location-time-table table tr td {
  border-bottom: 0.1rem solid var(--gray);
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0;
  width: 10%;
}
#location .location-wrapper .location-right .location-time-table p {
  padding: 1rem 0;
  text-align: right;
}
#location .location-wrapper .location-right .location-access address{
  padding: 0.5rem 0;
}
#location .location-wrapper .location-right .location-access ul {}
#location .location-wrapper .location-right .location-access ul li {
  padding: 0.5rem 0;
}
#location .location-wrapper .location-right .location-access iframe{
  width: 100%;
  height: 45rem;
}
#location .location-container .location-cta{
  background: var(--blue);
  padding: 5rem 0;
  width: 100%;
}
#location .location-container .location-cta ul{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  width: 100%;
}
#location .location-container .location-cta ul li {
  text-align: center;
}
#location .location-container .location-cta ul li .text-bold {
  color: var(--white);
  font-size: 2rem;
  font-family: var(--font-zen);
  font-weight: var(--zen-medium);
}
#location .location-container .location-cta ul li .default-button {
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  width: 61.666rem;
}
#location .location-container .location-cta ul li .default-button:hover{
  background: var(--orange) !important;
  color: var(--white) !important;
}
#location .location-container .location-cta ul li .default-button-inner-line {
  border: 0.1rem solid var(--blue);
  color: var(--blue);
  font-family: var(--font-zen);
  font-weight: var(--zen-bold);
  width: 61.666rem;
}
#location .location-container nav ul li .default-button .default-button-inner-line:hover{
  border: 0.1rem solid var(--white) !important;
  color: var(--white) !important;
}
@media screen and (max-width: 480px) {
  #location{
    background: var(--white);
    margin: 0 auto;
    padding: 3rem 0;
    width: 100%;
    height: auto;
  }
  #location .location-container {
    border: 0.1rem solid var(--blue);
    margin: 0 auto 3rem auto;
    width: 93%;
  }
  #location .location-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 2%;
    padding: 1.5rem 1.5rem 0 1.5rem;
    width: 100%;
  }
  #location .location-wrapper .location-left,
  #location .location-wrapper .location-right {
    width: 100%;
  }
  #location .location-wrapper .location-left .location-view {
    display: block;
    width: 100%;
    height: auto;
  }
  #location .location-wrapper .location-left .location-logo {
    display: block;
    margin: 1rem auto;
    width: 85%;
    height: auto;
  }
  #location .location-wrapper .location-right {
    padding: 0 0 1.5rem 0;
  }
  #location .location-wrapper .location-right .location-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column-reverse;
  }
  #location .location-wrapper .location-right .location-header .location-tags {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  #location .location-wrapper .location-right .location-header .location-tags li {
    background: var(--blue);
    border-radius: 9999rem;
    color: var(--white);
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
    text-align: center;
    padding: 0.5rem 1.5rem;
  }
  #location .location-wrapper .location-right .location-header h4 {
    font-size: 2.2rem;
    font-family: var(--font-gothic);
    font-family: var(--gothic-bold);
    margin: 2rem 0 1rem 0;
  }
  #location .location-wrapper .location-right h5 {
    color: var(--blue);
    font-size: 1.8rem;
    font-family: var(--font-gothic);
    font-family: var(--gothic-bold);
    margin: 1rem 0;
  }
  #location .location-wrapper .location-right .location-time-table table {
    width: 100%;
  }
  #location .location-wrapper .location-right .location-time-table table tr:first-of-type th.first-cell {
    font-size: 1.3rem;
    width: 30%;
  }
  #location .location-wrapper .location-right .location-time-table table tr:first-of-type th {
    border-bottom: 0.1rem solid var(--gray);
    font-size: 1.3rem;
    text-align: center;
    vertical-align: middle;
    width: 10%;
  }
  #location .location-wrapper .location-right .location-time-table table tr th.first-cell {
    border-bottom: 0.1rem solid var(--gray);
    font-size: 1.3rem;
    text-align: center;
    vertical-align: middle;
    padding: 1rem 0;
    width: 30%;
  }
  #location .location-wrapper .location-right .location-time-table table tr td {
    border-bottom: 0.1rem solid var(--gray);
    font-size: 1.3rem;
    text-align: center;
    vertical-align: middle;
    padding: 1rem 0;
    width: 10%;
  }
  #location .location-wrapper .location-right .location-time-table p {
    font-size: 1.3rem;
    text-align: right;
    padding: 1rem 0;
  }
  #location .location-wrapper .location-right .location-access address{
    font-size: 1.3rem;
    padding: 0.25rem 0;
  }
  #location .location-wrapper .location-right .location-access ul {
    margin: 0 0 1.5rem 0;
  }
  #location .location-wrapper .location-right .location-access ul li {
    font-size: 1.3rem;
    padding: 0.25rem 0;
  }
  #location .location-wrapper .location-right .location-access iframe{
    width: 100%;
    height: 27rem;
  }
  #location .location-container .location-cta{
    background: var(--blue);
    padding: 3rem 0;
    width: 100%;
  }
  #location .location-container .location-cta ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2%;
    width: 100%;
  }
  #location .location-container .location-cta ul li {
    text-align: center;
  }
  #location .location-container .location-cta ul li .text-bold {
    display: block;
    color: var(--white);
    font-size: 1.4rem;
    font-family: var(--font-zen);
    font-weight: var(--zen-medium);
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
  }
  #location .location-container .location-cta ul li .default-button {
    background: var(--white);
    color: var(--blue);
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    margin: 0 0 1rem 0;
    width: 32.666rem;
  }
  #location .location-container .location-cta ul li .default-button:hover{
    background: var(--orange) !important;
    color: var(--white) !important;
  }
  #location .location-container .location-cta ul li .default-button-inner-line {
    border: 0.1rem solid var(--blue);
    color: var(--blue);
    font-family: var(--font-zen);
    font-weight: var(--zen-bold);
    width: 32.666rem;
  }
  #location .location-container nav ul li .default-button .default-button-inner-line:hover{
    border: 0.1rem solid var(--white) !important;
    color: var(--white) !important;
  }
}

/*
*   footer
*/
footer{
  background: var(--blue-gradation-x);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 0;
  width: 100%;
  height: auto;
}
footer ul{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5rem 0;
}
footer ul li{
  border-right: 0.1rem solid var(--black); 
  padding: 0 1.5rem;
}
footer ul li:last-child{
  border-right: 0; 
}
footer ul li a{
  color: var(--black);
}
footer h1 {
  font-size: 2.2rem;
  line-height: 150%;
  letter-spacing: 0.075em;
  text-align: center;
}
footer h1 .footer-logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
footer h1 .footer-logo img {
  padding: 0 1rem 0 0;
  width: 40rem;
  height: 5rem;
}
footer h1 .footer-logo span {
  padding: 1rem 0 0 0;
}
@media screen and (max-width: 480px) {
  footer{
    background: var(--blue-gradation-x);
    color: var(--noir);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 0;
    width: 100%;
    height: auto;
  }
  footer ul{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin:0 3rem 5rem 3rem;
  }
  footer ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    border: 0;
    text-align: left;
    padding: 0.5rem 0;
  }
  footer ul li:last-child{
    border-right: 0; 
  }
  footer ul li a{
    color: var(--black);
  }
  footer h1 {
    font-size: 1.4rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-semibold);
    line-height: 130%;
    letter-spacing: 0.075em;
    text-align: center;
    width: 93%;
    margin: 0 auto;
  }
  footer h1 .footer-logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  footer h1 .footer-logo img {
    margin: 0.5rem 0 0 0;
    padding: 0 0.5rem 0 0;
    width: auto;
    height: 3rem;
  }
  footer h1 .footer-logo span {
    padding: 1rem 0 0 0;
  }
  footer small {
    display: block;
    font-size: 1rem;
    margin: 0 auto;
    padding: 1rem 0;
  }
}

/*
*   #sp-menu
*/
#sp-menu{
  background: linear-gradient(
    90deg,
    rgba(34, 148, 240, 0.95) 0%,
    rgba(65, 169, 255, 0.95) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  padding: 5rem 0 0 7.5rem;
  width: 50%;
  height: 100vh;
  transform: translateX(100%);
  transition: all .3s linear;
  z-index: 999999;
}
#sp-menu.active{
  transform: translateX(0%);
}
#sp-menu h3{
  color: var(--white);
  font-size: 4.5rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-medium);
  margin: 0 0 7rem 0;
}
#sp-menu ul{
  margin: 0;
  padding: 0;
  width: 100%;
}
#sp-menu ul li {
  margin: 4rem 0;
}
#sp-menu ul li a{
  color: var(--white);
  font-size: 3.5rem;
  font-family: var(--font-gothic);
  font-weight: var(--gothic-medium);
  padding: 2rem 0;
}
@media screen and (max-width: 480px) {
  #sp-menu{
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    padding: 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 h3{
    color: var(--white);
    font-size: 4.5rem;
    font-family: var(--font-gothic);
    font-weight: var(--gothic-medium);
    margin: 10rem 0 0 0;
  }
  #sp-menu ul{
    margin: 0;
    padding: 5rem 0 0 0;
    width: 100%;
  }
  #sp-menu ul li {
    margin: 2rem 0 0 0;
  }
  #sp-menu ul li a{
    color: var(--white);
    font-size: 1.4rem;
    font-weight: var(--zen-bold);
    letter-spacing: 0;
    padding: 0.75rem 0;
  }
}

/*
*   .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;
  }
}