@charset "utf-8";

#conversion {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 75rem;
  margin: 0 auto;
  display: none;
  background: rgba(255, 255, 255, 0.7);
  /* padding: 2rem 0 1.2rem 0; */
}

/*きらっと光る*/
.btnshine {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  50% {
    transform: translate(0, -7px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

.bounce {
  animation: bounce 2s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: translateY(-45%);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translateY(-24%);
    animation-timing-function: ease-in;
  }
  65% {
    transform: translateY(-12%);
    animation-timing-function: ease-in;
  }
  82% {
    transform: translateY(-6%);
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(-4%);
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    transform: translateY(0%);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0%);
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

.gbBtn {
  width: 71rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  background-color: #FFF;
  padding: 2rem 2rem 3rem 2rem;
}

#conversion .gbBtn {
  padding: 2rem;
  background-color: transparent;
}

.gbBtn a {
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  border-radius: 6rem;
}

.gbTT {
  width: 65.1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.gbBtnBlock {
  background: url(../../img/gbBg.webp);
  background-size: cover;
  padding: 3.5rem 0 1rem 0;
}

.gbBtnBlock .gbSubTT {
  width: 58.2rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 3rem;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-size: 100% 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

header .logo {
  height: 7.7rem;
  display: block;
}

header a {
  height: 6.8rem;
  width: 33.6rem;
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  border-radius: 3.4rem;
}

header a[href^="tel"] span {
  font-size: 3.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #000067;
  position: absolute;
  left: 8.8rem;
}

.fv {
  height: 111rem;
  background: url(../../img/fvBg.webp);
  background-size: cover;
}

.fvText {
  max-width: unset;
  width: 78.2rem;
  margin-left: -1rem;
  margin-top: 4rem;
  margin-bottom: -2.5rem;
}

/* qa */
.qa {
  padding: 6rem 0;
}

.qaTtl img {
  height: 10.4rem;
}

.qaBox {
  width: 67rem;
  margin: 0 auto;
}

.qaTtl>p:first-child {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: #333333;
  position: relative;
}

.qaTtl>p:first-child::before {
  content: '';
  position: absolute;
  width: .5rem;
  height: 3rem;
  background: url(../../img/qaBorder.webp);
  background-size: contain;
  left: 26.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.qaTtl>p:first-child::after {
  content: '';
  position: absolute;
  width: .5rem;
  height: 3rem;
  background: url(../../img/qaBorder.webp);
  background-size: contain;
  right: 26.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.qaTtl>p:last-child {
  font-size: 6.3rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.qaItem {
  cursor: pointer;
  margin-bottom: 3rem;
}

.qaItem:last-child {
  margin-bottom: 0;
}

.qa_q {
  position: relative;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  padding: 1rem 3rem 1rem 8rem;
  background: linear-gradient(to right, #0036A9 0%, #14A3E6 100%);
  min-height: 13.3rem;
  display: flex;
  align-items: center;
  border-radius: 1.2rem;
}

.qa_q::before {
  content: '';
  position: absolute;
  width: 4.2rem;
  height: 4rem;
  left: 2rem;
  top: 50%;
  transform: translate(0,-50%);
  background: url(../../img/q.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/*.qa_q::before {
  content: '';
  position: absolute;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background-size: 100% 100%;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
}*/

.qa_a {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 2rem;
  display: none;
}

.qaNote {
  font-size: 2rem;
}

/* end qa */

/* footer */
footer {
  padding: 3rem 0;
}

.ftLink {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.ftLink a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}

.ftLink a:first-child {
  padding-right: 1rem;
}

.ftLink a:nth-child(2) {
  padding: 0 1rem;
  border-left: .1rem solid #333;
}

.ftLink a:last-child {
  margin-left: 1rem;
}

.ftCopy {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #333333;
  text-align: center;
}

/* end footer */

.contactFormTT img {
  height: 10.3rem;
}

.subQa {
  padding: 6rem 0 4rem 0;
}

.subQaImg {
  width: 70rem;
  margin-bottom: 3rem;
}

.orangeArrow {
  height: 6rem;
}

.subQaList {
  width: 67rem;
  margin: 0 auto;
  margin-bottom: 4.5rem;
}

.subQ {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  padding: 1rem 3rem 1rem 7.5rem;
  background: linear-gradient(to right, #0036A9 0%, #14A3E6 100%);
  min-height: 15.6rem;
  display: flex;
  align-items: center;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}

.ltsp2 {
  letter-spacing: -0.2rem;
}

.subQ::before {
  content: '';
  position: absolute;
  width: 3.3rem;
  height: 4.2rem;
  left: 2rem;
  top: 50%;
  transform: translate(0,-50%);
  background: url(../../img/subQ.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.subA {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0036A9;
  padding: 1rem 0 1rem 5.5rem;
  margin-bottom: 1.5rem;
}

.subA::before {
  content: '';
  position: absolute;
  width: 3.3rem;
  height: 4rem;
  left: 0;
  top: 2.2rem;
  background: url(../../img/a.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.subAContent {
  padding: 1.5rem 2rem 2rem 2rem;
  background-color: #F0F3FA;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.subADec {
  background-color: #FFF;
}

.subADec p {
  padding: 2rem;
  font-weight: 400;
  font-size: 2.7rem;
}

.yellowMark {
  background: linear-gradient(transparent 50%, #FFFF00 25%);
  background-position: bottom;
}

.text01 {
  font-size: 2.7rem;
  font-weight: 400;
  position: absolute;
  line-height: 1.4;
  width: 65rem;
  left: 3.8rem;
  bottom: 7.5rem;
  color: #222222;
}

.orangeBlock {
  padding-bottom: 6rem;
}

.orangeTT {
  height: 22.8rem;
  background: url(../../img/orangeBgTT1.webp);
  background-size: 100% 100%;
  text-align: center;
  padding-top: 6rem;
}

.orangeTT img {
  height: 5.5rem;
  display: inline-block;
}

.orangeImg {
  width: 67rem;
  display: block;
  margin: 0 auto;
  margin-top: -5.3rem;
  margin-bottom: 3rem;
}

.orangeTbl {
  width: 67rem;
  margin: 0 auto;
}

.orangeTbl > div {
  border-bottom: 0.1rem solid #FFF;
  display: flex;
  background-color: #F0F3FA;
}

.orangeTbl .colRight {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.375;
  width: 23.8%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0036A9;
}

.orangeTbl .colLeft {
  font-size: 2.7rem;
  line-height: 1.375;
  width: 76.2%;
  height: 10rem;
  padding-left: 2rem;
  align-items: center;
  display: flex;
}

.orangeLogo {
  display: block;
  height: 4.6rem;
  width: auto;
}

.contactForm {
  background-color: #F0F3FA;
  padding-top: 4.5rem;
}

.lstFlow {
  padding: 6rem 0 7rem 0;
  background-color: #F0F3FA;
}

.flowItem {
  width: 69rem;
  background-color: #FFF;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  margin-left: 2rem;
  margin-bottom: 8rem;
  position: relative;
}

.flowItem:after {
  content: "";
  position: absolute;
  width: 31rem;
  height: 11rem;
  border-top: 0.1rem solid rgba(0, 54, 169, 0.3);
  border-left: 0.1rem solid rgba(0, 54, 169, 0.3);
  left: -1rem;
  top: -1rem;
}

.flowItem:before {
  content: "";
  position: absolute;
  width: 31rem;
  height: 11rem;
  border-right: 0.1rem solid rgba(0, 54, 169, 0.3);
  border-bottom: 0.1rem solid rgba(0, 54, 169, 0.3);
  right: -1rem;
  bottom: -1rem;
}

.flowItem:last-child {
  margin-bottom: 0;
}

.flowItem .colImg {
  margin-right: -4rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.flowItem:nth-child(even) {
  margin-left: 4rem;
}

.flowItem:nth-child(even) .colImg {
  margin-right: 0;
  margin-left: -4rem;
}

.flowItem .colImg img {
  max-width: unset;
  width: 30rem;
}

.flowItem .colText {
  width: 42rem;
  padding: 1.5rem 1rem 1.5rem 2.5rem;
  line-height: 1.625;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  text-align: justify;
}

.flowItem .colTextTT {
  display: flex;
  align-items: center;
  font-size: 3.6rem;
  font-weight: bold;
  color: #0036A9;
  margin-bottom: 1rem;
}

.flowItem .colTextTT img {
  height: 5.3rem;
  display: inline-block;
  margin-right: 1rem;
}

img.flowArrow {
  position: absolute;
  width: 2.4rem;
  bottom: -6.5rem;
  left: 50%;
  transform: translate(-50%, 0);
}

img.flowItemArrow {
  width: 15rem;
  position: absolute;
  top: 0;
  left: 0;
}

.flowItem:nth-child(even) img.flowItemArrow  {
  right: 0;
  left: unset;
  transform: scaleX(-1);
}

.nonTT {
  padding: 6rem 0 2rem 0;
  background: url(../../img/nBg.webp);
  background-size: 100% 100%;
}

.nonTTImg {
  width: 66.1rem;
}

.nonContent {
  width: 71rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.nonContent .nonCol {
  width: 34.5rem;
}

.nonContent .nonCol p {
  background: #0036A9;
  line-height: 1.1;
  padding: 0.8rem 0 1.6rem 0;
}

.nonTTText {
  width: 38rem;
  background: url(../../img/nSubBg.webp);
  background-size: 100% 100%;
  line-height: 5.4rem;
  margin: 0 auto;
}

.sample {
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F3FA;
}

.mapBrand {
  background-color: #F0F3FA;
  padding: 6rem 0 4rem 0;
}

.mapBrandContent {
  background-color: #FFF;
  width: 67rem;
  margin: 0 auto;
  margin-bottom: 8rem;
  border-radius: 1.5rem;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.2);
}

.mapBrandTT {
  padding: 3.7rem 0 7.5rem 0;
  background: url(../../img/mapBg.webp);
  background-size: 100% 100%;
}

.mapTT {
  width: 58.6rem;
}

.mapImg {
  width: 57.7rem;
}

.mapTT2 {
  height: 6.9rem;
}

.mapBrandTT02 {
  padding: 2.2rem 0;
  background: url(../../img/mapBg2.webp);
  background-size: 100% 100%;
}

.mapText {
  width: 63rem;
  position: relative;
  bottom: -3rem;
}

.mapText02 {
  width: 70rem;
}

.mapBrandContent p:last-child {
  padding-right: 2rem;
  padding-bottom: 2rem;
  margin-top: -4rem;
  line-height: 1;
}

.sliderTitle {
  width: 100%;
}

.brandContent {
  padding: 9rem 0 4rem 0;
  background-color: #FFEEE8;
  margin-top: -6.5rem;
  overflow: hidden;
}

.fvBrand {
  display: flex;
  width: max-content;
}

.fvBrand img {
  height: 9.4rem;
  width: auto;
  flex-shrink: 0;
  max-width: none;
}

.fvBrand:nth-child(1) {
  animation: scrollLeft 50s linear infinite;
}

.fvBrand:nth-child(2) {
  animation: scrollRight 50s linear infinite;
  animation-delay: -25s;
}

/* Keyframes chạy vô tận */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.reason {
  background: url(../../img/reason01Bg.webp);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 6rem;
}

.reasonTT {
  height: 15.2rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.reasonFoot {
  width: 71rem;
}

.reasonItem {
  padding-bottom: 11.5rem;
  background-color: #F0F3FA;
}

.reasonItem .reasonImg {
  width: 71rem;
  display: block;
  margin: 0 0 0 auto;
}

.reasonItem:nth-child(even) .reasonImg {
  margin: 0 auto 0 0;
}

.reasonItem:last-child {
  padding-bottom: 0;
}

.reasonItemTT {
  background-color: rgba(240, 243, 250, 0.9);
  border-top-right-radius: 9rem;
  width: 71rem;
  padding-left: 4rem;
  padding-bottom: 4rem;
  letter-spacing: -0.1rem;
  margin-top: -13rem;
  position: relative;
}

.reasonItem:nth-child(even) .reasonItemTT {
  right: -4rem;
  border-top-right-radius: 0;
  border-top-left-radius: 9rem;
}

.rsItTTImg {
  height: 10.6rem;
  margin-bottom: 0.5rem;
  display: block;
  top: -1.5rem;
  position: relative;
}

.reason03Text {
  height: 11rem;
}

.reasonDes {
  width: 67rem;
  margin: 2rem auto;
}

.reasonDes sup {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  top: -2.5rem;
  left: -3rem;
  width: 0;
}

.reason02table01 {
  width: 71rem;
  display: block;
  margin: 0 auto;
  margin-top: -5.5rem;
}

.reason1Img1 {
  width: 67rem;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.2);
}

.reason1Img2 {
  width: 67rem;
}

.reason1Bg1 {
  width: 65rem;
}

.rsChart {
  width: 71rem;
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.2);
}

.rsChartContent {
  padding: 2rem;
}