@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.top {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}
.top.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
  opacity: 1;
}

.bottom {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.bottom.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 1;
}

.fade {
  opacity: 0;
}
.fade.animationActive {
  -webkit-transition: all 0.8s ease-in-out 0.2s;
  transition: all 0.8s ease-in-out 0.2s;
  opacity: 1;
}

@font-face {
  font-family: "Baloo-Devanagari";
  src: url("../font/Baloo-Devanagari.woff") format("woff");
}
@font-face {
  font-family: "KozGoPr6N-Regular";
  src: url("../font/KozGoPr6N-Regular.woff") format("woff");
}
@font-face {
  font-family: "commando";
  src: url("../fonts/commando.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Clarimo";
  src: url("../font/ClarimoUDPEXComp-Heavy.otf") format("opentype");
}
html {
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1rem;
}
@media (max-width: 880px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

a {
  display: block;
  width: 100%;
}

img {
  display: block;
  border: none;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

/*** print ***/
@media print {
  body {
    background: #fff;
    color: #000;
  }
}
.inner {
  max-width: 900px;
  width: 91%;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .pc {
    display: none;
  }
}
@media print {
  .pc {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 880px) {
  .sp {
    display: block;
  }
}
@media print {
  .sp {
    display: none;
  }
}

.note {
  font-size: 1rem;
  line-height: 1.6;
}

.font-bal {
  font-family: Baloo-Devanagari;
}

.font-koz {
  font-family: KozGoPr6N-Regular;
}

.font-commando {
  font-family: commando;
}

.txt-j {
  text-align: justify;
}

.red {
  color: #e41f19;
}

.arr {
  position: relative;
  display: inline;
  vertical-align: middle;
}
.arr::before, .arr::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -40px;
  content: "";
  vertical-align: middle;
}
.arr::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e41f19;
}
.arr::after {
  right: -30px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}
.top.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}

.bottom {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.bottom.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}

.left {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  overflow: hidden;
}
@media (max-width: 880px) {
  .left {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.left.animationActive {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}
@media (max-width: 880px) {
  .left.animationActive {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.right {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
}
@media (max-width: 880px) {
  .right {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.right.animationActive {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}
@media (max-width: 880px) {
  .right.animationActive {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade {
  opacity: 0;
}
.fade.animationActive {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 1;
}

.popup-ani {
  opacity: 0;
}
.popup-ani.animationActive {
  -webkit-animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes r-l {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
@keyframes r-l {
  0% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
@-webkit-keyframes r-l2 {
  0% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  10% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@keyframes r-l2 {
  0% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  10% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes image-switch-animation {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes image-switch-animation {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.note.keiyon {
  text-align: center;
  border: 2px solid #555;
  padding: 15px 5px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
@media (max-width: 880px) {
  .note.keiyon {
    font-size: 1.4rem;
  }
}

.sec-ttl_wrap {
  padding: 45px 0;
}
@media (max-width: 880px) {
  .sec-ttl_wrap {
    padding: 40px 0;
  }
}
.sec-ttl_wrap .sec-ttl {
  text-align: center;
  line-height: 1.1;
  margin-bottom: 30px;
}
.sec-ttl_wrap .sec-ttl .main-ttl,
.sec-ttl_wrap .sec-ttl .sec-ttl {
  margin-left: auto;
  margin-right: auto;
}
.sec-ttl_wrap .sec-ttl .main-ttl {
  max-width: 600px;
  width: 95%;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .sec-ttl_wrap .sec-ttl .main-ttl {
    width: 99%;
    margin-bottom: 35px;
  }
}
.sec-ttl_wrap .sec-ttl .main-ttl img {
  margin-left: 1%;
}
.sec-ttl_wrap .sec-ttl .sec-ttl-txt {
  max-width: 300px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .sec-ttl_wrap .sec-ttl .sec-ttl-txt {
    max-width: 180px;
    margin-bottom: 0px;
  }
}
.sec-ttl_wrap .sec-ttl .en {
  font-size: 6.5rem;
}
@media (max-width: 880px) {
  .sec-ttl_wrap .sec-ttl .en {
    font-size: 5.4rem;
  }
}
.sec-ttl_wrap .sec-ttl .jp {
  font-size: 1.7rem;
  font-weight: bold;
}
@media (max-width: 880px) {
  .sec-ttl_wrap .sec-ttl .jp {
    font-size: 1.5rem;
  }
}

.cv_wrap li {
  color: #fff;
  text-align: center;
  border-radius: 50px;
  font-size: 2.3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  background-color: #999;
  -webkit-box-shadow: 0 0 0 5px #999 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #999 inset, 0 0 0 6px #fff inset;
}
@media (max-width: 880px) {
  .cv_wrap li {
    font-size: 2rem;
  }
}
.cv_wrap li a {
  display: block;
  position: relative;
  display: inline-block;
  padding: 20px 0px;
  padding-right: 5px;
  vertical-align: middle;
}
@media (max-width: 880px) {
  .cv_wrap li a {
    padding-top: 18px;
  }
}
.cv_wrap li a::before, .cv_wrap li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
  content: "";
  vertical-align: middle;
}
.cv_wrap li a::before {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 880px) {
  .cv_wrap li a::before {
    width: 25px;
    height: 25px;
  }
}
.cv_wrap li a::after {
  right: 42px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 880px) {
  .cv_wrap li a::after {
    right: 40px;
  }
}
.cv_wrap .cv_red {
  background-color: #e41f19;
  -webkit-box-shadow: 0 0 0 5px #e41f19 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #e41f19 inset, 0 0 0 6px #fff inset;
}
.cv_wrap .cv_red a::after {
  border-top: 2px solid #e41f19;
  border-right: 2px solid #e41f19;
  width: 6px;
  height: 6px;
  right: 30px;
}
@media (max-width: 1280px) {
  .cv_wrap .cv_red a::after {
    width: 5px;
    height: 5px;
    right: 27px;
  }
}
.cv_wrap .cv_red a::before {
  width: 24px;
  height: 24px;
  right: 20px;
}
@media (max-width: 1280px) {
  .cv_wrap .cv_red a::before {
    width: 18px;
    height: 18px;
  }
}
.cv_wrap .cv_ora {
  background-color: #ed5a24;
  -webkit-box-shadow: 0 0 0 5px #ed5a24 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #ed5a24 inset, 0 0 0 6px #fff inset;
}
@media (max-width: 880px) {
  .cv_wrap .cv_ora {
    -webkit-box-shadow: 0 0 0 3px #ed5a24 inset, 0 0 0 4px #fff inset;
            box-shadow: 0 0 0 3px #ed5a24 inset, 0 0 0 4px #fff inset;
  }
}
.cv_wrap .cv_ora a::after {
  border-top: 2px solid #ed5a24;
  border-right: 2px solid #ed5a24;
}
.cv_wrap .cv_bra {
  background-color: #000;
  -webkit-box-shadow: 0 0 0 5px #000 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #000 inset, 0 0 0 6px #fff inset;
}
@media (max-width: 880px) {
  .cv_wrap .cv_bra {
    -webkit-box-shadow: 0 0 0 3px #000 inset, 0 0 0 4px #fff inset;
            box-shadow: 0 0 0 3px #000 inset, 0 0 0 4px #fff inset;
  }
}
.cv_wrap .cv_bra a::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.cv_wrap .cv_green {
  background-color: #006837;
  -webkit-box-shadow: 0 0 0 5px #006837 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #006837 inset, 0 0 0 6px #fff inset;
}
@media (max-width: 880px) {
  .cv_wrap .cv_green {
    -webkit-box-shadow: 0 0 0 3px #006837 inset, 0 0 0 4px #fff inset;
            box-shadow: 0 0 0 3px #006837 inset, 0 0 0 4px #fff inset;
  }
}
.cv_wrap .cv_green a::after {
  border-top: 2px solid #006837;
  border-right: 2px solid #006837;
}
.cv_wrap .ent-usedCar {
  background-color: #023886;
  -webkit-box-shadow: 0 0 0 5px #023886 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #023886 inset, 0 0 0 6px #fff inset;
}
.cv_wrap .ent-usedCar a::after {
  border-top: 2px solid #023886;
  border-right: 2px solid #023886;
}
.cv_wrap .drive {
  background-color: #0071bb;
  -webkit-box-shadow: 0 0 0 5px #0071bb inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #0071bb inset, 0 0 0 6px #fff inset;
}
.cv_wrap .drive a::after {
  border-top: 2px solid #0071bb;
  border-right: 2px solid #0071bb;
}
.cv_wrap .ent-usedCar2 {
  border-radius: 0px;
}
.cv_wrap .ent-other {
  border-radius: 0px;
  background-color: #f05a24;
  -webkit-box-shadow: 0 0 0 5px #f05a24 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #f05a24 inset, 0 0 0 6px #fff inset;
}
.cv_wrap .ent-other a::after {
  border-top: 2px solid #f05a24;
  border-right: 2px solid #f05a24;
}

.cv_autumn {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .cv_autumn {
    width: 90%;
  }
}
.cv_autumn li {
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  .cv_autumn li {
    font-size: 1.4vw;
  }
}
@media (max-width: 1280px) and (max-width: 880px) {
  .cv_autumn li {
    font-size: 1.5rem;
  }
}

main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
main #screen-l,
main #screen-r {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
@media (max-width: 880px) {
  main #screen-l,
  main #screen-r {
    display: none;
  }
}
main #screen-l {
  width: 46.5%;
  width: 42.5%;
  width: 39.5%;
}
main #screen-center {
  width: 32%;
  width: 35%;
  background-color: #fff;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 30px rgba(77, 77, 77, 0.7);
          box-shadow: 0px 0px 30px rgba(77, 77, 77, 0.7);
  z-index: 5;
  position: relative;
}
@media (max-width: 880px) {
  main #screen-center {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
  }
}
main #screen-r {
  width: 21.5%;
  width: 25.5%;
}

#screen-l {
  background-image: url(../images/common/bg_dot-b-pc1.png);
}
#screen-l .logo_wrap {
  margin-bottom: 7vh;
  margin-top: 10vh;
}
#screen-l .logo_wrap > div {
  margin: 0 auto;
}
#screen-l .logo_wrap > div:nth-child(1) {
  max-width: 162px;
  margin-bottom: 2vh;
}
#screen-l .logo_wrap > div:nth-child(2) {
  max-width: 284px;
}
#screen-l h3 {
  text-align: center;
  margin-bottom: 4vh;
}
#screen-l h3 .pos {
  position: relative;
  display: inline-block;
  margin-bottom: 1vh;
}
#screen-l h3 .line {
  line-height: 1;
}
#screen-l h3 .line1,
#screen-l h3 .line2 {
  font-size: 8.8rem;
}
@media (max-width: 1500px) {
  #screen-l h3 .line1,
  #screen-l h3 .line2 {
    font-size: 5vw;
  }
}
#screen-l h3 .line3 {
  right: 0px;
  bottom: -35px;
  font-size: 3.9rem;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  position: absolute;
}
@media (max-width: 1500px) {
  #screen-l h3 .line3 {
    font-size: 3vw;
    right: -40px;
    bottom: -25px;
  }
}
#screen-l h3 .line4 {
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 1500px) {
  #screen-l h3 .line4 {
    font-size: 1.2vw;
  }
}
#screen-l .mv-car {
  max-width: 450px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4vh;
}
#screen-l .cam-name_wrap {
  text-align: center;
  max-width: 364px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
#screen-l .cam-name_wrap dt {
  background-color: #ff9500;
  padding: 2px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 1vh;
  font-size: 1.2rem;
}
#screen-l .cam-name_wrap .en a {
  font-size: 4rem;
  color: #ff9500;
  line-height: 1.4;
  top: 0;
  right: 0;
  letter-spacing: 0.02rem;
}
@media (max-width: 1500px) {
  #screen-l .cam-name_wrap .en a {
    font-size: 2.7vw;
  }
}
#screen-l .cam-name_wrap .en .arr:before {
  right: -30px;
}
#screen-l .cam-name_wrap .en .arr:after {
  right: -21px;
}
#screen-l .cam-name_wrap .jp {
  font-size: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 横線を上下中央 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と横線を横並び */
  font-weight: 900;
  max-width: 364px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
#screen-l .cam-name_wrap .jp::before, #screen-l .cam-name_wrap .jp::after {
  background-color: #585858; /* 横線の色 */
  border-radius: 5px; /* 横線の両端を丸く */
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 横幅いっぱい */
  height: 1px; /* 横線の高さ */
}
#screen-l .cam-name_wrap .jp::before {
  margin-right: 10px; /* 文字との余白 */
}
#screen-l .cam-name_wrap .jp::after {
  margin-left: 10px; /* 文字との余白 */
}

#screen-l .txt_wrap {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  max-width: 500px;
  width: 85%;
  height: 90%;
  border-radius: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-top: 2vh;
}
#screen-l .txt_wrap > div {
  position: relative;
  z-index: 5;
}
#screen-l .txt_wrap h3 {
  position: relative;
  z-index: 5;
}
#screen-l .img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  top: -90vh;
}
#screen-l .img_wrap .mv_burn {
  position: absolute;
  top: 0;
  height: 100%;
}
@media (max-width: 1800px) {
  #screen-l .img_wrap .mv_burn {
    z-index: 0;
  }
}
#screen-l .img_wrap .mv_burn .mv_b {
  position: absolute;
  top: 0;
  height: 100%;
  width: 200px;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  -webkit-animation: image-switch-animation 3s infinite;
          animation: image-switch-animation 3s infinite;
}
@media (max-width: 1500px) {
  #screen-l .img_wrap .mv_burn .mv_b {
    width: 120px;
  }
}
@media (max-width: 1500px) and (max-width: 1280px) {
  #screen-l .img_wrap .mv_burn .mv_b {
    width: 80px;
  }
}
#screen-l .img_wrap .mv_burn1 {
  left: 0;
}
#screen-l .img_wrap .mv_burn1 .mv_b {
  left: 0;
}
#screen-l .img_wrap .mv_burn1 .mv_burn1-1 {
  background-image: url(../images/lp/mv_burn1.svg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#screen-l .img_wrap .mv_burn1 .mv_burn1-2 {
  background-image: url(../images/lp/mv_burn1-2.svg);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
#screen-l .img_wrap .mv_burn2 {
  right: 0;
}
#screen-l .img_wrap .mv_burn2 .mv_b {
  right: 0;
}
#screen-l .img_wrap .mv_burn2 .mv_burn2-1 {
  background-image: url(../images/lp/mv_burn2.svg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#screen-l .img_wrap .mv_burn2 .mv_burn2-2 {
  background-image: url(../images/lp/mv_burn2-2.svg);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

#screen-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#screen-r ul li:nth-child(1) {
  background-image: url(../images/common/pc-r_bg1.png);
  padding-bottom: 50px;
  padding-top: 30px;
  background-size: cover;
}
#screen-r ul li:nth-child(1) .pc-r1-img {
  max-width: 283px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#screen-r ul li:nth-child(1) .pc-wappen {
  position: absolute;
  right: -30px;
  top: -15px;
  max-width: 120px;
  width: 30%;
}
#screen-r ul li:nth-child(1) .pc-wappen .wappen-txt {
  position: absolute;
  z-index: 2;
}
#screen-r ul li:nth-child(1) .pc-wappen .wappen-img {
  -webkit-animation: rotate 15s infinite linear;
          animation: rotate 15s infinite linear;
}
#screen-r ul li:nth-child(2) {
  position: relative;
  margin-top: -28px;
}
#screen-r ul li:nth-child(2) dl {
  position: relative;
  z-index: 3;
  background-image: url(../images/common/pc-r_bg2-center.svg);
  background-repeat: repeat-y;
  background-size: contain;
  padding-bottom: 2vh;
}
#screen-r ul li:nth-child(2) dl dt {
  max-width: 250px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
#screen-r ul li:nth-child(2) dl dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(../images/lp/dot-line-org.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#screen-r ul li:nth-child(2) dl dd {
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 240px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.4rem;
}
#screen-r ul li:nth-child(2) dl dd:last-child {
  margin-bottom: 0;
}
#screen-r ul li:nth-child(2) dl dd a {
  width: 100%;
  display: block;
}
#screen-r ul li:nth-child(2) dl dd a::before {
  right: 0;
  width: 16px;
  height: 16px;
}
#screen-r ul li:nth-child(2) dl dd a::after {
  right: 6px;
  width: 5px;
  height: 5px;
}
#screen-r ul li:nth-child(3) {
  z-index: 4;
}
#screen-r ul li:nth-child(3) dl {
  max-width: 250px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#screen-r ul li:nth-child(3) dl dd {
  font-size: 1.1rem;
  text-align: center;
}
#screen-r ul li:nth-child(3) dl:nth-child(1) {
  margin-bottom: 5px;
}
#screen-r ul li:nth-child(3) dl:nth-child(1) .tic {
  max-width: 160px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
#screen-r ul li:nth-child(3) dl:nth-child(2) dt {
  line-height: 1.4;
  margin-bottom: 5px;
}
#screen-r ul li:nth-child(3) dl:nth-child(2) dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(../images/lp/dot-line-org.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#screen-r ul li:nth-child(3) dl:nth-child(2) dt a {
  color: #e41f19;
  font-size: 3.4rem;
  text-align: center;
}

#screen-center .bg_red {
  background: #e50012;
}
#screen-center .fv_wrap {
  width: 100%;
  overflow-x: hidden;
}
#screen-center .fv_wrap .fv_bg {
  background-image: url(../images/lp_df_2508/fv_bg.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
#screen-center .fv_wrap .fv {
  position: relative;
  aspect-ratio: 135/104;
}
#screen-center .fv_wrap .fv .pic {
  width: 100%;
  position: absolute;
  left: 0;
}
#screen-center .fv_wrap .fv .pic.fv01 {
  top: 34%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
#screen-center .fv_wrap .fv .pic.fv02 {
  top: 46%;
  z-index: 9;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 15% 50%;
          transform-origin: 15% 50%;
}
#screen-center .fv_wrap .fv .pic.fv03 {
  bottom: 5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  opacity: 0;
}
#screen-center .fv_wrap .card_wrap {
  width: 90.75%;
  margin: 0 auto;
}
#screen-center .fv_wrap .card_wrap .card {
  position: relative;
}
#screen-center .fv_wrap .card_wrap .card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
#screen-center .fv_wrap .card_wrap .card .pic {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  #screen-center .fv_wrap .card_wrap .card:has(a:hover) .pic {
    -webkit-transform: translateY(-2.5%);
            transform: translateY(-2.5%);
  }
}
#screen-center .fv_wrap .card_wrap .card .deco {
  width: 100%;
  position: absolute;
  left: 0;
}
#screen-center .fv_wrap .card_wrap .card .deco.deco01 {
  bottom: -9%;
  z-index: 1;
}
#screen-center .fv_wrap .card_wrap .card .deco.deco02 {
  bottom: -14%;
  z-index: 2;
}
#screen-center .fv_wrap .card_wrap .card .deco.deco03-01 {
  top: -7%;
  z-index: 3;
}
#screen-center .fv_wrap .card_wrap .card .deco.deco03-02 {
  bottom: 14%;
  z-index: 5;
}
#screen-center .fv_wrap .card_wrap .card.c02 {
  margin-top: 3%;
}
#screen-center .fv_wrap .card_wrap .card.c03 {
  margin-top: 8%;
  padding-bottom: 35%;
  z-index: 4;
}
#screen-center .sec_navi .navi_bg {
  background-image: url(../images/lp_df_2508/navi_bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
}
#screen-center .sec_navi .navi .pic:first-child img {
  border-radius: 25px 25px 0 0;
}
@media (max-width: 540px) {
  #screen-center .sec_navi .navi .pic:first-child img {
    border-radius: 15px 15px 0 0;
  }
}
#screen-center .sec_navi .navi_wrap {
  position: relative;
}
#screen-center .sec_navi .navi_wrap > .pic {
  content: "";
  width: 96%;
  height: 50%;
  position: absolute;
  top: 3.5%;
  left: 1.5%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 9;
}
#screen-center .sec_navi .navi_wrap .bg_fff {
  background: #fff;
}
#screen-center .sec_navi .navi02 {
  margin-top: 7%;
}
#screen-center .sec_kosodate .inner {
  padding-top: 20%;
  position: relative;
}
#screen-center .sec_kosodate .inner > .pic:first-child {
  position: absolute;
  top: 5.5%;
  left: 0;
  z-index: 9;
}
#screen-center .sec_kosodate .inner .pic_wrap {
  position: relative;
  background: #009fe8;
}
#screen-center .sec_kosodate .inner .bg_blue {
  background: #009fe8;
  border-radius: 25px 25px 0 0;
}
@media (max-width: 540px) {
  #screen-center .sec_kosodate .inner .bg_blue {
    border-radius: 15px 15px 0 0;
  }
}
#screen-center .sec_kosodate .inner .bg_blue img {
  border-radius: 25px 25px 0 0;
}
@media (max-width: 540px) {
  #screen-center .sec_kosodate .inner .bg_blue img {
    border-radius: 15px 15px 0 0;
  }
}
#screen-center .sec_zrv .zrv_bg {
  background-image: url(../images/lp_df_2508/zrv_bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
}
#screen-center .sec_zrv .inner {
  padding: 7% 0 12%;
}
#screen-center .sec_zrv .bg_fff {
  background: #fff;
}
#screen-center .sec_zrv .bg_fff:last-child {
  border-radius: 0 0 25px 25px;
}
@media (max-width: 540px) {
  #screen-center .sec_zrv .bg_fff:last-child {
    border-radius: 0 0 15px 15px;
  }
}
#screen-center .sec_chuko {
  background: #ffe63f;
}
#screen-center .sec_login {
  background-image: url(../images/lp_df_2508/login_bg.jpg);
  background-position: top left;
  background-size: 100%;
  background-repeat: repeat-y;
}
#screen-center .sec_login .bg_box .pic {
  margin: 0 auto;
}
#screen-center .sec_login .bg_box .photo_wrap {
  width: 80%;
  -webkit-transform: translateX(-1%);
          transform: translateX(-1%);
}
#screen-center .sec_login .bg_box .a_wrap {
  width: 72%;
}
@media (hover: hover) {
  #screen-center .sec_login .bg_box .a_wrap a:hover {
    -webkit-transform: translateY(-2.5%);
            transform: translateY(-2.5%);
    opacity: 1;
  }
}
#screen-center .sec_login .bg_box .login-form {
  width: 68.2%;
  margin: 0 auto;
  background: #ffe63f;
  border-radius: 10px;
  position: relative;
  /* フォーム全体の配置を調整 */
  /* 1文字入力ボックスのコンテナ */
  /* Chrome, Safari, Edge, Operaでスピンボタンを非表示 */
}
#screen-center .sec_login .bg_box .login-form::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7%;
  aspect-ratio: 5/2;
  background-image: url(../images/lp_df_2508/login04.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 9;
}
#screen-center .sec_login .bg_box .login-form .check {
  width: 81%;
  padding: 6% 0 4%;
}
#screen-center .sec_login .bg_box .login-form .req_login_btn {
  font-size: 1.3vw;
  font-weight: 700;
  color: #fff;
  background: #595757;
  margin: 0.8vw 0 1vw;
  padding: 0.2vw 3vw;
  border-radius: 3vw;
}
@media (max-width: 880px) {
  #screen-center .sec_login .bg_box .login-form .req_login_btn {
    font-size: 3vw;
    margin: 1.8vw 0 2vw;
    padding: 0.5vw 5vw;
    border-radius: 6vw;
  }
}
#screen-center .sec_login .bg_box .login-form .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#screen-center .sec_login .bg_box .login-form .pass-code-container {
  padding-left: 12%;
  width: 85.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
#screen-center .sec_login .bg_box .login-form .pass-code-container .caption {
  display: inline-block;
  font-size: 1.3vw;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 880px) {
  #screen-center .sec_login .bg_box .login-form .pass-code-container .caption {
    font-size: 3.5vw;
  }
}
#screen-center .sec_login .bg_box .login-form .pass-code-container input {
  width: 15%;
  aspect-ratio: 79/104;
  text-align: center;
  font-size: 1.5rem;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
#screen-center .sec_login .bg_box .login-form .pass-code-container input::-webkit-outer-spin-button,
#screen-center .sec_login .bg_box .login-form .pass-code-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#screen-center .sec_login .bg_box .login-form .shake-animation {
  -webkit-animation: shake 0.5s ease-in-out;
          animation: shake 0.5s ease-in-out;
}
@media (max-width: 540px) {
  #screen-center .sec_login .bg_box .login-form .shake-animation {
    -webkit-animation: shake_sp 0.3s ease-in-out;
            animation: shake_sp 0.3s ease-in-out;
  }
}

/* ▼ 揺れるアニメーションを追加 ▼ */
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@-webkit-keyframes shake_sp {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@keyframes shake_sp {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.sec_select {
  margin-top: 8%;
  margin-bottom: 4%;
}

.sec_limit01 {
  background: #009fe8;
}

.sec_limit02 {
  margin-top: 6%;
}
.sec_limit02 .pic_wrap {
  position: relative;
}
.sec_limit02 .pic_wrap .pic_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -9;
}
.sec_limit02 .pic_wrap .pic:has(a) a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .sec_limit02 .pic_wrap .pic:has(a) a:hover {
    opacity: 1;
    -webkit-transform: translateY(-2.5%);
            transform: translateY(-2.5%);
  }
}

.swiper_wrap {
  position: relative;
}

.swiper-button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  /* @include pc {
    top: 200px;
    @include tab {
      top: 190px;
      @include sp {
        left: 0;
        // top: 54%;
        top: 300px;
        @include sp_s {
          top: 170px;
        }
      }
    }
  } */
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  background-color: #989898;
  border-radius: 1000px;
  width: 33px;
  height: 33px;
  position: absolute;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev,
  .swiper-button_wrap .swiper-button-next {
    width: 28px;
    height: 28px;
  }
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  position: relative;
}
.swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after,
.swiper-button_wrap .swiper-button-next::before,
.swiper-button_wrap .swiper-button-next::after {
  content: ""; /* 疑似要素に指定必須 */
  width: 10px; /* 線の長さを指定 */
  height: 2px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 12px; /* 右から10pxの位置に配置 */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after,
  .swiper-button_wrap .swiper-button-next::before,
  .swiper-button_wrap .swiper-button-next::after {
    width: 11px;
  }
}
.swiper-button_wrap .swiper-button-prev {
  left: 3%;
}
.swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after {
  right: 12px; /* 右から10pxの位置に配置 */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after {
    right: 10px;
  }
}
.swiper-button_wrap .swiper-button-prev::before {
  top: calc(50% - 4px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* 45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::before {
    top: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-prev::after {
  bottom: calc(50% - 4px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* -45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::after {
    bottom: calc(50% - 5px);
  }
}
.swiper-button_wrap .swiper-button-next {
  right: 3%;
}
.swiper-button_wrap .swiper-button-next::before, .swiper-button_wrap .swiper-button-next::after {
  right: 11px; /* 右から10pxの位置に配置 */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next::before, .swiper-button_wrap .swiper-button-next::after {
    right: 7px;
  }
}
.swiper-button_wrap .swiper-button-next::before {
  top: calc(50% - 4px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 45度回転させる */
  -webkit-animation: scrollDown_before 2s ease infinite;
          animation: scrollDown_before 2s ease infinite;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next::before {
    top: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-next::after {
  bottom: calc(50% - 4px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* -45度回転させる */
  -webkit-animation: scrollDown_after 2s ease infinite;
          animation: scrollDown_after 2s ease infinite;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next::after {
    bottom: calc(50% - 5px);
  }
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.swiper-button_wrap .swiper-button-prev:hover,
.swiper-button_wrap .swiper-button-next:hover {
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.swiper-button_wrap .swiper-button-disabled {
  opacity: 0.4;
}

.swiper-pagination {
  position: inherit;
  margin-top: 7px;
}
@media (max-width: 880px) {
  .swiper-pagination {
    margin-top: 5px;
  }
}

.swiper-pagination-bullet {
  margin-right: 13px !important;
  width: 12px;
  height: 12px;
  background-color: #efea3a;
  opacity: 1;
}
@media (max-width: 880px) {
  .swiper-pagination-bullet {
    margin-right: 15px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #5c5a00;
}

.lity {
  background: rgba(0, 0, 0, 0.75);
}

.lity-content {
  max-width: 800px;
}

.lity-close {
  width: 60px;
  height: 60px;
  font-size: 6rem;
}
@media (max-width: 540px) {
  .lity-close {
    width: 40px;
    height: 40px;
    font-size: 4rem;
  }
}
.lity-close:hover {
  font-size: 6rem;
}
@media (max-width: 540px) {
  .lity-close:hover {
    font-size: 4rem;
  }
}

.shop_wrap .sec-ttl .en {
  color: #e41f19;
}
.shop_wrap .sec-ttl .sec-ttl-txt {
  width: 42.4%;
  max-width: none;
  margin-bottom: 10px;
  /* @include sp {
    margin-bottom: 15px;
  } */
}
.shop_wrap .sec07 iframe {
  width: 100%;
}
@media (max-width: 880px) {
  .shop_wrap .sec07 iframe {
    height: 450px;
  }
}
.shop_wrap .sec07 iframe .i4ewOd-pzNkMb-tJHJj {
  display: hidden !important;
}

.sec08 {
  margin-bottom: 40px;
}
.sec08 .visit {
  background-color: #db0020;
  -webkit-box-shadow: 0 0 0 5px #db0020 inset, 0 0 0 6px #fff inset;
          box-shadow: 0 0 0 5px #db0020 inset, 0 0 0 6px #fff inset;
}
.sec08 .visit a::after {
  border-top: 2px solid #db0020;
  border-right: 2px solid #db0020;
}

.caption_wrap div:first-child {
  margin-top: 30px;
}
.caption_wrap p {
  font-size: 1.2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.caption_wrap p span {
  font-size: 1.5rem;
}
.caption_wrap p + p {
  margin-top: 10px;
}
.caption_wrap p.wBar {
  padding-top: 12px;
  border-top: 1px solid #000;
}
.caption_wrap p.wBar + p:not(.wBar) {
  margin-top: 8px;
}
.caption_wrap .red {
  margin: 26px 0 13px;
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #db0020;
  border: 1.5px solid #db0020;
}
@media (max-width: 540px) {
  .caption_wrap .red {
    font-size: 1.2rem;
  }
}
@media (max-width: 880px) {
  .caption_wrap .red .sp {
    display: none;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .caption_wrap .red .sp {
    display: block;
  }
}
.caption_wrap .black {
  margin: 20px 0 30px;
  padding: 10px 0;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid #000;
}
@media (max-width: 540px) {
  .caption_wrap .black {
    font-size: 1.7rem;
  }
}
@media (max-width: 880px) {
  .caption_wrap .black .sp {
    display: none;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .caption_wrap .black .sp {
    display: block;
  }
}

footer {
  display: block;
  padding-top: 50px;
  padding-bottom: 10px;
}
@media (max-width: 880px) {
  footer {
    padding-bottom: 70px;
  }
}
footer .logo {
  max-width: 370px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
footer ul {
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
}
footer ul li:nth-child(2) {
  margin-bottom: 10px;
}
footer small {
  font-size: 1rem;
  text-align: center;
  display: block;
}

.fixed-btn {
  display: none;
  background-color: #182987;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.fixed-btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fixed-btn ul li {
  position: relative;
  width: 50%;
}
.fixed-btn ul li:nth-child(1)::after {
  content: "";
  display: block;
  width: 5px;
  height: 82%;
  background-image: url(../images/common/dot-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -6px;
  top: 15%;
}
.fixed-btn ul li:nth-child(2) a::before {
  right: 7vw;
}
.fixed-btn ul li:nth-child(2) a::after {
  right: 8.8vw;
}
@media (max-width: 540px) {
  .fixed-btn ul li:nth-child(2) a::after {
    right: 8.4vw;
  }
}
.fixed-btn ul li a {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 4vw;
  padding: 17px 16px 18px 0px;
  position: relative;
  vertical-align: middle;
  color: #ffffff;
}
.fixed-btn ul li a::before, .fixed-btn ul li a::after {
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto;
  right: 3.5vw;
  content: "";
  vertical-align: middle;
}
@media (max-width: 540px) {
  .fixed-btn ul li a::before, .fixed-btn ul li a::after {
    right: 5vw;
    top: 0px;
  }
}
.fixed-btn ul li a::before {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background: #ffffff;
}
@media (max-width: 540px) {
  .fixed-btn ul li a::before {
    width: 16px;
    height: 16px;
  }
}
.fixed-btn ul li a::after {
  right: 5.2vw;
  width: 1vw;
  height: 1vw;
  border-top: 2px solid #182987;
  border-right: 2px solid #182987;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 540px) {
  .fixed-btn ul li a::after {
    right: 6.6vw;
    width: 5px;
    height: 5px;
  }
}

@-webkit-keyframes scrollDown_before {
  0% {
    -webkit-transform: translateX(-5px) rotate(45deg);
            transform: translateX(-5px) rotate(45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(5px) rotate(45deg);
            transform: translateX(5px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes scrollDown_before {
  0% {
    -webkit-transform: translateX(-5px) rotate(45deg);
            transform: translateX(-5px) rotate(45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(0px) rotate(45deg);
            transform: translateX(0px) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(5px) rotate(45deg);
            transform: translateX(5px) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes scrollDown_after {
  0% {
    -webkit-transform: translateX(-5px) rotate(-45deg);
            transform: translateX(-5px) rotate(-45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(5px) rotate(-45deg);
            transform: translateX(5px) rotate(-45deg);
    opacity: 0;
  }
}
@keyframes scrollDown_after {
  0% {
    -webkit-transform: translateX(-5px) rotate(-45deg);
            transform: translateX(-5px) rotate(-45deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(0px) rotate(-45deg);
            transform: translateX(0px) rotate(-45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(5px) rotate(-45deg);
            transform: translateX(5px) rotate(-45deg);
    opacity: 0;
  }
}
.pulse-btn {
  position: relative;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 880px) {
  .pulse-btn {
    width: 28px;
    height: 28px;
  }
}

.pulse-btn::before,
.pulse-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #b4b4b4;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: pulsate 2s linear infinite;
          animation: pulsate 2s linear infinite;
  z-index: -1;
}
@media (max-width: 880px) {
  .pulse-btn::before,
  .pulse-btn::after {
    border: 1px solid #cecece;
  }
}

.pulse-btn::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}/*# sourceMappingURL=lp_df_2508.css.map */