@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

picture {
  display: block;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

/*=======================================
fadein
=======================================*/
/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn.is-show {
  opacity: 1;
}

/*下から*/
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* にょき 右から */
.fadeIn_nyokiRight {
  -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
          transform: translate3d(3000px, 0, 0) scaleX(3);
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: hidden;
}
.fadeIn_nyokiRight.is-show {
  visibility: visible;
  -webkit-animation: bounceInRight 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: bounceInRight 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.fadeIn_nyokiRight.is-animated {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translate3d(0, 0, 0) scaleX(1);
          transform: translate3d(0, 0, 0) scaleX(1);
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
            transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
            transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
            transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
            transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}
/* にょき 左から */
.fadeIn_nyokiLeft {
  -webkit-transform: translate3d(-2000px, 0, 0) scaleX(3);
          transform: translate3d(-2000px, 0, 0) scaleX(3);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: hidden;
}
.fadeIn_nyokiLeft.is-show {
  visibility: visible;
  -webkit-animation: nyokiLeft 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: nyokiLeft 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.fadeIn_nyokiLeft.is-animated {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translate3d(0, 0, 0) scaleX(1);
          transform: translate3d(0, 0, 0) scaleX(1);
}

@-webkit-keyframes nyokiLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(3);
            transform: translate3d(-2000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(17px, 0, 0) scaleX(1);
            transform: translate3d(17px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-7px, 0, 0) scaleX(0.98);
            transform: translate3d(-7px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(3px, 0, 0) scaleX(0.995);
            transform: translate3d(3px, 0, 0) scaleX(0.995);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes nyokiLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(3);
            transform: translate3d(-2000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(17px, 0, 0) scaleX(1);
            transform: translate3d(17px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-7px, 0, 0) scaleX(0.98);
            transform: translate3d(-7px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(3px, 0, 0) scaleX(0.995);
            transform: translate3d(3px, 0, 0) scaleX(0.995);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleX(1);
            transform: translate3d(0, 0, 0) scaleX(1);
  }
}
/*=======================================
20240509追加フローティングバナー
=======================================*/
.floating-banner {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  margin: 0 !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  z-index: -1;
  width: 103px;
  height: 270px;
}
@media only screen and (max-width: 979px) {
  .floating-banner {
    width: 75px;
    height: auto;
  }
}

.floating-banner a {
  display: block;
  color: #fff;
  background: #000;
  text-decoration: none;
  opacity: 1;
}

.floating-banner a:hover {
  opacity: 1 !important;
}

.floating-banner:hover {
  right: 0;
}
@media screen and (max-width: 768px) {
  .floating-banner:hover {
    right: -8px;
  }
}

/*=======================================
base
=======================================*/
html.noscroll {
  overflow: hidden;
}

.modaal-noscroll {
  overflow: hidden !important;
}

#odekake_LP {
  background: repeating-linear-gradient(-49deg, #f4ac11, #f4ac11 8px, #f8bd00 8px, #f8bd00 25px);
  color: #000;
  font-family: "BridgestoneTypeTP-Regular", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: normal !important;
  line-height: 1.8;
  text-align: left;
  padding-bottom: 115px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #odekake_LP {
    background: repeating-linear-gradient(-49deg, #f4ac11, #f4ac11 4px, #f8bd00 4px, #f8bd00 12px);
    padding-bottom: 32px;
  }
}
#odekake_LP .txt_bold {
  font-family: "BridgestoneTypeTP-Bold", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: normal !important;
}
#odekake_LP .anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .anchor {
    padding-top: 75px;
    margin-top: -75px;
  }
}
#odekake_LP .inner {
  max-width: 1366px;
  margin: 0 auto;
}
#odekake_LP .inn_box {
  background-color: #fff;
  background-image: radial-gradient(#F5F5ED 20%, transparent 20%), radial-gradient(#F5F5ED 20%, transparent 20%);
  background-size: 14px 14px;
  background-position: 0 0, 6px 6px;
  max-width: 1145px;
  width: 90%;
  margin: 0 auto;
  border-radius: 70.4139px;
  position: relative;
  padding: 155px 0 90px;
  margin-top: min(460px, 36.5vw);
}
@media screen and (max-width: 768px) {
  #odekake_LP .inn_box {
    width: 92.5%;
    background: transparent;
    border-radius: 20px;
    padding: 35vw 0 13px;
    position: relative;
    z-index: 1;
  }
  #odekake_LP .inn_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    background-image: radial-gradient(#F5F5ED 20%, transparent 20%), radial-gradient(#F5F5ED 20%, transparent 20%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    -webkit-clip-path: polygon(0% 5vw, 10% 3.2vw, 20% 1.8vw, 30% 0.8vw, 40% 0.2vw, 50% 0vw, 60% 0.2vw, 70% 0.8vw, 80% 1.8vw, 90% 3.2vw, 100% 5vw, 100% 100%, 0% 100%);
            clip-path: polygon(0% 5vw, 10% 3.2vw, 20% 1.8vw, 30% 0.8vw, 40% 0.2vw, 50% 0vw, 60% 0.2vw, 70% 0.8vw, 80% 1.8vw, 90% 3.2vw, 100% 5vw, 100% 100%, 0% 100%);
    z-index: -1;
  }
}
#odekake_LP .w90p {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #odekake_LP .w90p {
    width: 100%;
  }
}

.marker_txt {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #ffff19), color-stop(90%, #ffff19), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent 55%, #ffff19 55%, #ffff19 90%, transparent 90%, transparent 100%);
}

/*=======================================
sttl
=======================================*/
.sttl01 {
  position: relative;
}
.sttl01 span {
  font-size: 19px;
  letter-spacing: 0.1rem;
  color: #231815;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background: #FFF9E5;
  padding: 0 0.5em;
  z-index: 1;
  position: relative;
  margin: 0 auto;
}
.sttl01::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1em;
  background-size: 9px 2px;
  background-image: linear-gradient(to right, #231815 3px, transparent 3px);
  background-repeat: repeat-x;
  background-position: left bottom;
}

/*=======================================
cmn_btn
=======================================*/
#odekake_LP .cmn_btn {
  height: 4.3vw;
  max-height: 51px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .cmn_btn {
    height: 13.9vw;
    max-height: none;
  }
}
#odekake_LP .cmn_btn a {
  height: 100%;
  display: block;
  position: relative;
}
#odekake_LP .cmn_btn a img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
#odekake_LP .cmn_btn a img:nth-child(2) {
  opacity: 0;
}
#odekake_LP .cmn_btn a:hover {
  opacity: 1;
}
#odekake_LP .cmn_btn a:hover img:nth-child(2) {
  opacity: 1;
}
#odekake_LP .cmn_btn.apply02 {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  height: 5.4vw;
  max-height: 66px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 {
    height: 22.93vw;
    max-height: 86px;
  }
}
@media only screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 .pc {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 .pc {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 .sp {
    display: inline-block;
  }
}
#odekake_LP .cmn_btn.apply02 img {
  height: initial;
}
@media screen and (max-width: 768px) {
  #odekake_LP .cmn_btn.apply02 img {
    height: 100%;
  }
}
#odekake_LP .btn-wrap {
  background-color: #0075c1;
  color: #fff;
  text-align: center;
  border: 2px solid #000;
  border-radius: 1.55rem;
  letter-spacing: 0.1em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-wrap {
    border-radius: 1rem;
  }
}
#odekake_LP .btn-wrap a {
  padding: 18px;
  font-size: 18px;
  display: block;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-wrap a {
    font-size: 16px;
    padding: 16px 16px 16px 0px;
  }
}
#odekake_LP .btn-wrap:hover {
  background-color: #005fa8;
}
#odekake_LP .btn-modal a {
  position: relative;
}
#odekake_LP .btn-modal a::before {
  content: "";
  width: 2px;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  right: 30px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-modal a::before {
    width: 2px;
    height: 10px;
    top: calc(50% - 5px);
    right: 20px;
  }
}
#odekake_LP .btn-modal a::after {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  right: 24px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-modal a::after {
    width: 10px;
    height: 2px;
    top: calc(50% - 1px);
    right: 16px;
  }
}
#odekake_LP .btn-apply a {
  font-size: 15px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  border: 2.5px solid #000;
  border-radius: 0.55rem;
  position: relative;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .btn-apply a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-apply a {
    font-size: 15px;
  }
}
#odekake_LP .btn-apply a:hover::after {
  right: 0.5em;
}
#odekake_LP .btn-apply a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9em;
  width: 0.9em;
  height: 0.9em;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#odekake_LP .btn-apply01 {
  height: 6vw;
  background-color: #fff;
  border-radius: 0.55rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-apply01 {
    height: 16vw;
  }
}
#odekake_LP .btn-apply01:hover {
  background-color: #e1e1e1;
}
#odekake_LP .btn-apply02 {
  height: 6vw;
  background-color: #ffff19;
  border-radius: 0.55rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-apply02 {
    height: 16vw;
  }
}
#odekake_LP .btn-apply02:hover {
  background-color: #ffc828;
}
#odekake_LP .btn-anchor-sec {
  max-width: 882px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-anchor-sec {
    gap: 15px;
  }
}
#odekake_LP .btn-anchor-sec div {
  width: calc((100% - 32px) / 3);
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-anchor-sec div {
    width: 289px;
  }
}
#odekake_LP .btn-anchor-sec div:nth-child(n+4) {
  width: calc((100% - 16px) / 2);
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-anchor-sec div:nth-child(n+4) {
    width: 289px;
  }
}
@media only screen and (min-width: 769px) {
  #odekake_LP .btn-anchor-sec div:nth-child(-n+3) a::after {
    right: calc(4vw - 28px);
  }
  #odekake_LP .btn-anchor-sec div:nth-child(n+4) a::after {
    right: 30px;
  }
}
#odekake_LP .btn-anchor a {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  border: 2px solid #0068b6;
  border-radius: 20px;
  background: repeating-linear-gradient(-45deg, #C5E6F9, #C5E6F9 2px, #E4F2FB 2px, #E4F2FB 6px);
  font-size: 18px;
  letter-spacing: 0.129rem;
  line-height: 1.2;
  text-align: center;
  color: #0068b6;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-anchor a {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    height: 52px;
    border-radius: 12.5px;
    padding: 0;
  }
}
#odekake_LP .btn-anchor a:hover {
  opacity: 0.8;
}
#odekake_LP .btn-anchor a:hover::after {
  top: 52%;
}
#odekake_LP .btn-anchor a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 2.2vw;
  width: 15px;
  height: 8px;
  background: center/contain url("../images/arrow_down.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-anchor a::after {
    width: 20px;
    height: 13px;
    top: 50%;
    right: 20px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#odekake_LP .btn-container .btn-link {
  margin-top: 8px;
}
#odekake_LP .btn-container .btn-link a {
  font-size: 16px;
  margin: auto;
  padding: 0 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#odekake_LP .btn-container .btn-link a:hover {
  opacity: 0.5;
}
#odekake_LP .btn-container .btn-link a:hover p::after {
  right: -18px;
}
#odekake_LP .btn-container .btn-link a p {
  position: relative;
  display: inline;
}
#odekake_LP .btn-container .btn-link a p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #ff0000;
  border-top: 2px solid #ff0000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#odekake_LP .btn-container .store-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 2px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .btn-container .store-btn-list {
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
      flex-wrap: nowrap;
  }
}
#odekake_LP .btn-container .shop-search-btn,
#odekake_LP .btn-container .test-ride-btn {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  width: 130px;
  height: 51px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  border-radius: 7.5px;
  background: #0068b6;
  padding: 2px 14px 0 8px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#odekake_LP .btn-container .shop-search-btn::after,
#odekake_LP .btn-container .test-ride-btn::after {
  content: "";
  width: 6px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 9px;
  background: center/contain url("../images/arrow_right.svg") no-repeat;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  #odekake_LP .btn-container .shop-search-btn:hover,
  #odekake_LP .btn-container .test-ride-btn:hover {
    background: #003c91;
  }
  #odekake_LP .btn-container .shop-search-btn:hover::after,
  #odekake_LP .btn-container .test-ride-btn:hover::after {
    right: 0;
  }
}
#odekake_LP .btn-container .test-ride-btn {
  background: #3cb4e7;
}
#odekake_LP .btn-form {
  text-align: center;
}
#odekake_LP .btn-form a {
  width: 100%;
  display: inline-block;
  max-width: 980px;
  background-color: #0075c1;
  color: #fff;
  font-size: 22px;
  padding: 14px 0px;
  text-align: center;
  margin: auto;
  border-radius: 9.7px;
  border: #000 3px solid;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (max-width: 1240px) {
  #odekake_LP .btn-form a {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-form a {
    width: 90%;
    margin: 16px auto 24px;
  }
}
@media only screen and (max-width: 340px) {
  #odekake_LP .btn-form a {
    font-size: 20px;
  }
}
#odekake_LP .btn-form a::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 20px;
  width: 0.8em;
  height: 0.8em;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .btn-form a::after {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    width: 0.5em;
    height: 0.5em;
  }
}
@media only screen and (max-width: 340px) {
  #odekake_LP .btn-form a::after {
    right: 13px;
  }
}
#odekake_LP .btn-form a:hover {
  background-color: #005fa8;
}
#odekake_LP .btn-form a:hover::after {
  right: 15px;
}

/*=======================================
mv_sec
=======================================*/
#odekake_LP .mv_sec {
  margin-bottom: calc(185px - 14.14vw);
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .mv_sec {
    margin-bottom: -8.157px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .mv_sec {
    margin-bottom: 0;
  }
}
#odekake_LP .mv_sec .mv_area {
  position: relative;
}
#odekake_LP .mv_sec .mv_area .mv_img img {
  -webkit-filter: drop-shadow(0 0 18.1571px #ef9024);
          filter: drop-shadow(0 0 18.1571px #ef9024);
  will-change: filter;
  padding-bottom: 18px;
}
#odekake_LP .mv_sec .mv_area .patch {
  position: absolute;
  top: 0px;
  right: 21px;
  width: 16.34%;
  max-width: 223px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #odekake_LP .mv_sec .mv_area .patch {
    width: 32%;
    right: 0;
  }
}
#odekake_LP .mv_sec .mv_area .patch:hover {
  opacity: 0.8;
  top: -10px;
}
#odekake_LP .mv_sec .main_ttl_area {
  position: absolute;
  width: 54.91%;
  margin: 0 auto;
  top: 20vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .mv_sec .main_ttl_area {
    top: 282px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .mv_sec .main_ttl_area {
    width: 84%;
    top: auto;
    bottom: -28.5vw;
  }
}

/*=======================================
intro_copy01
=======================================*/
#odekake_LP .intro_copy01 {
  width: 54%;
  position: absolute;
  left: 50%;
  top: -10.04vw;
  translate: -50% 0;
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .intro_copy01 {
    top: -115px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .intro_copy01 {
    top: -3vw;
    width: 77.31%;
  }
}

/*=======================================
team_sec
=======================================*/
#odekake_LP .team_sec .lead_txt {
  font-size: 24px;
  line-height: 2.5;
  letter-spacing: 0.01em;
  margin-bottom: 105px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .lead_txt {
    font-size: 16px;
    line-height: 1.3125;
    letter-spacing: 0.03rem;
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 320px) {
  #odekake_LP .team_sec .lead_txt {
    font-size: 14px;
  }
}
#odekake_LP .team_sec .lead_txt > span {
  display: block;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .lead_txt > span {
    letter-spacing: -0.05em;
    line-height: 2.3;
  }
}
#odekake_LP .team_sec .lead_txt > span .pc, #odekake_LP .team_sec .lead_txt > span span.pc {
  display: inline;
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .lead_txt > span .pc, #odekake_LP .team_sec .lead_txt > span span.pc {
    display: none;
  }
}
#odekake_LP .team_sec .lead_txt > span .sp, #odekake_LP .team_sec .lead_txt > span span.sp {
  display: none;
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .lead_txt > span .sp, #odekake_LP .team_sec .lead_txt > span span.sp {
    display: inline;
  }
}
#odekake_LP .team_sec .intro_copy02 {
  width: 62.32%;
  margin: 0 auto -20px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .intro_copy02 {
    width: 70%;
    margin-bottom: -12px;
  }
}
#odekake_LP .team_sec .team_item {
  position: relative;
}
#odekake_LP .team_sec .team_item .img_area {
  position: absolute;
  width: 68.12%;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .img_area {
    width: 99%;
  }
}
#odekake_LP .team_sec .team_item .side_img {
  position: absolute;
  overflow: hidden;
}
#odekake_LP .team_sec .team_item .side_img .img {
  position: relative;
}
#odekake_LP .team_sec .team_item .side_img .img--bottom {
  position: relative;
  top: -15.0805270864vw;
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom {
    top: -206px;
  }
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom {
    top: -14vw;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom {
    top: -3vw;
    bottom: 0;
  }
}
#odekake_LP .team_sec .team_item .side_img .img--bottom02 {
  top: -23.8653001464vw;
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom02 {
    top: -326px;
  }
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom02 {
    top: -22vw;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .side_img .img--bottom02 {
    top: -8vw;
    bottom: 0;
    left: -25px;
  }
}
#odekake_LP .team_sec .team_item .txt_area {
  position: absolute;
  width: 31.7%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .txt_area {
    width: 52.14%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
#odekake_LP .team_sec .team_item .txt_area .sttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl {
    margin-bottom: 5px;
  }
}
#odekake_LP .team_sec .team_item .txt_area .sttl small {
  font-size: clamp(12px, 1.2445095168vw, 17px);
  letter-spacing: 0.097rem;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl small {
    font-size: 3.515625vw;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 500px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl small {
    font-size: 12px;
  }
}
#odekake_LP .team_sec .team_item .txt_area .sttl p {
  font-size: clamp(17px, 1.9765739385vw, 27px);
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl p {
    font-size: 5.7291666667vw;
    letter-spacing: 0.08rem;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 500px) {
  #odekake_LP .team_sec .team_item .txt_area .sttl p {
    font-size: 22px;
  }
}
#odekake_LP .team_sec .team_item .txt_area .txt {
  font-size: clamp(12px, 1.2445095168vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.097rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .txt_area .txt {
    font-size: 3.90625vw;
    margin-bottom: 15px;
    letter-spacing: -0.05em;
  }
}
@media only screen and (max-width: 500px) {
  #odekake_LP .team_sec .team_item .txt_area .txt {
    font-size: 15px;
    letter-spacing: 0;
    letter-spacing: -0.09rem;
  }
}
@media only screen and (max-width: 320px) {
  #odekake_LP .team_sec .team_item .txt_area .txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 500px) {
  #odekake_LP .team_sec .team_item .txt_area .btn-wrap {
    max-width: 177px;
  }
}
#odekake_LP .team_sec .team_item.oyako {
  max-height: 1100px;
  height: 86vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item.oyako {
    height: 207vw;
    max-height: initial;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 320px) {
  #odekake_LP .team_sec .team_item.oyako {
    height: 217vw;
  }
}
#odekake_LP .team_sec .team_item.friends {
  max-height: 1160px;
  height: 96.07vw;
  margin-bottom: 75px;
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .team_item.friends {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item.friends {
    height: 228vw;
    max-height: 680px;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item.friends {
    height: 218vw;
    max-height: initial;
    margin-bottom: 55px;
  }
}
#odekake_LP .team_sec .team_item .item.item_01 .img_area {
  left: 0;
  top: -4.37%;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .img_area {
    left: 0;
    top: 4.7%;
    width: 105%;
  }
}
#odekake_LP .team_sec .team_item .item.item_01 .side_img {
  width: 33.1%;
  top: 21.5%;
  right: 0;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .side_img {
    width: 52%;
    top: auto;
    bottom: -38vw;
  }
}
@media only screen and (max-width: 500px) {
  #odekake_LP .team_sec .team_item .item.item_01 .side_img {
    bottom: -28vw;
  }
}
#odekake_LP .team_sec .team_item .item.item_01 .side_img .img {
  right: -25px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .side_img .img {
    right: -20%;
  }
}
#odekake_LP .team_sec .team_item .item.item_01 .side_img .img--top {
  width: 77%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .side_img .img--top {
    width: 100%;
    top: 23vw;
  }
}
#odekake_LP .team_sec .team_item .item.item_01 .txt_area {
  right: 25.33%;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  #odekake_LP .team_sec .team_item .item.item_01 .txt_area {
    bottom: -5%;
  }
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .team_item .item.item_01 .txt_area {
    bottom: -7%;
  }
}
@media only screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .txt_area {
    bottom: -10%;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_01 .txt_area {
    width: 54.45%;
    right: auto;
    left: 5.21%;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 {
    margin-top: 36%;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 .img_area {
  width: 70%;
  right: 0;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .img_area {
    width: 100%;
    right: 0;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 .side_img {
  width: 30.56%;
  top: 0.439238653vw;
}
@media only screen and (min-width: 1366px) {
  #odekake_LP .team_sec .team_item .item.item_02 .side_img {
    top: 6px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .side_img {
    width: 53%;
    top: auto;
    bottom: -6.5%;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 .side_img .img {
  left: -25px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .side_img .img {
    left: -6.6666666667vw;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 .side_img .img--top {
  width: 89%;
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .side_img .img--top {
    width: 100%;
    top: 29vw;
  }
  #odekake_LP .team_sec .team_item .item.item_02 .side_img .img--top img {
    aspect-ratio: 205/321;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .side_img .img--bottom02 img {
    aspect-ratio: 205/376;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
#odekake_LP .team_sec .team_item .item.item_02 .txt_area {
  left: 17.21%;
  bottom: 13.5%;
}
@media only screen and (max-width: 820px) {
  #odekake_LP .team_sec .team_item .item.item_02 .txt_area {
    bottom: 11%;
  }
}
@media only screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .txt_area {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .team_sec .team_item .item.item_02 .txt_area {
    left: auto;
    right: 3%;
  }
}

/* モーダルベース */
.modal {
  display: none;
}

/* モーダルコンテンツ */
.modaal-wrapper .modaal-inner-wrapper {
  cursor: auto !important;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper {
    padding: 65px 2%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-focus {
  padding-top: 65px;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container {
  max-width: 940px;
  color: #505050;
  background: none;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-content-container {
  padding: 0;
  padding: 45px 0 60px;
  background: #fff url("../images/modal_bg01.png") no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-content-container {
    background: #fff url("../images/modal_bg01_sp.png") no-repeat;
    background-size: 100% auto;
    padding-bottom: 35px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_mv {
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_mv {
    width: 50%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .ttl_area {
  text-align: center;
  letter-spacing: 0.214rem;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .ttl_area span {
  font-size: 16px;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .ttl_area span {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .ttl_area p {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.214rem;
  margin-top: 5px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .ttl_area p {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.143rem;
    margin-bottom: 10px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .txt {
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modal_intro .txt {
    font-size: 14px;
    line-height: 1.5;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .txt01 {
  font-size: clamp(13px, 1.7021276596vw, 16px);
  line-height: 2;
  letter-spacing: 0;
  width: 44.9%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .txt01 {
    width: 90%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .txt01::first-letter {
  font-size: clamp(22px, 2.6595744681vw, 25px);
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .txt01::first-letter {
    font-size: 25px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt {
  position: relative;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt .img {
    margin-bottom: 10px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt .txt01 {
  position: absolute;
  right: 5.9%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt .txt01 {
    position: static;
    right: auto;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt .txt01 br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_img_txt .txt01 br.sp {
    display: inline-block;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt_img {
  position: relative;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt_img .txt01 {
  position: absolute;
  left: 5.9%;
  top: 17.02%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt_img .txt01 {
    position: static;
    left: auto;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt_img .img {
  width: 43.51%;
  margin-left: auto;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt {
  margin-bottom: 135px;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt.ele_01 .txt01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_txt.ele_01 .txt01 {
    width: 90%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type {
  margin: 90px auto 0;
  width: 71.17%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type {
    width: 90%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .sttl01 {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .sttl01 {
    margin-bottom: 25px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .sttl01::before {
  top: -0.9em;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .sttl01 span {
  background: #fff;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .sttl01 span {
    font-size: 15px;
    letter-spacing: 0.214rem;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .modal_type_main .img {
  margin: 0 auto 10px;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .modal_type_main .name {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner .modal_type_main .name {
    font-size: 14px;
    line-height: 1.2;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 40px 1.503%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul {
    gap: 35px 4.1%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li {
  width: 31.83%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li {
    width: 47.94%;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li .img {
  margin-bottom: 10px;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li span {
  font-size: 16px;
  letter-spacing: 0;
  font-family: "BridgestoneTypeTP-Bold", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: normal !important;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li span {
    font-size: 15px;
    letter-spacing: 0.086rem;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type .inner ul li p {
    font-size: 15px;
    line-height: 1.2;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type.ele_01 {
  margin-bottom: 115px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type.ele_01 {
    margin-bottom: 90px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type.ele_02 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .block_type.ele_02 {
    margin-bottom: 80px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close {
  width: 25px;
  height: 25px;
  top: 65px;
  right: calc(3% + 20px);
}
@media only screen and (max-width: 979px) {
  .modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close {
    width: 11.73vw;
    max-width: 44px;
    height: 11.73vw;
    max-height: 44px;
    right: calc(2% + 20px);
    top: 85px;
  }
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close::before {
  width: 100%;
  height: 100%;
  background: url("../images/modal_closebtn01.jpg") no-repeat;
  background-size: cover;
  display: block;
  top: 0;
  left: auto;
  border-radius: 0;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close::after {
  display: none;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close:focus, .modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close:hover {
  background: none;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close.ele_02 {
  width: 200px;
  max-width: initial;
  height: 45px;
  max-height: initial;
  position: relative;
  margin: 0 auto;
  display: block;
  top: auto;
  right: auto;
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close.ele_02::before {
  background: url("../images/modal_closebtn02.png") no-repeat;
  background-size: cover;
  display: block;
  top: 0;
  left: auto;
  border-radius: 0;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.modaal-wrapper .modaal-inner-wrapper .modaal-container .modaal-close.ele_02:hover {
  opacity: 0.6;
}
.modaal-wrapper {
  /* modal01 */
}
.modaal-wrapper.modal01 .modaal-inner-wrapper .modaal-container .modaal-content-container .modal_mv {
  width: 39.25%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .modaal-inner-wrapper .modaal-container .modaal-content-container .modal_mv {
    width: 54.32%;
  }
}
.modaal-wrapper.modal01 .modal_intro {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .modal_intro {
    margin-bottom: 60px;
  }
}
.modaal-wrapper.modal01 .block_img_txt.ele_01 {
  margin-bottom: 3.19%;
}
.modaal-wrapper.modal01 .block_img_txt.ele_01 .txt01 {
  bottom: 5%;
}
.modaal-wrapper.modal01 .block_img_txt.ele_02 {
  margin-bottom: -31.91%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_img_txt.ele_02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.modaal-wrapper.modal01 .block_img_txt.ele_02 .img {
  width: 41.7%;
  padding-top: 27.87%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_img_txt.ele_02 .img {
    width: 65.27%;
    margin-bottom: -39%;
  }
}
.modaal-wrapper.modal01 .block_img_txt.ele_02 .txt01 {
  top: -6.38%;
}
.modaal-wrapper.modal01 .block_img.ele_01 {
  width: 95.1%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_img.ele_01 {
    width: 96.94%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_img.--bg {
    margin-bottom: 25px;
  }
}
.modaal-wrapper.modal01 .block_type.ele_01 .modal_type_main .img {
  width: 51.86%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_type.ele_01 .modal_type_main .img {
    width: 68.14%;
  }
}
.modaal-wrapper.modal01 .block_type.ele_02 .modal_type_main .img {
  width: 59.79%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal01 .block_type.ele_02 .modal_type_main .img {
    width: 69.39%;
  }
}
.modaal-wrapper.modal01 .modaal-close.ele_02 {
  height: 45.5px !important;
}
.modaal-wrapper {
  /* modal02 */
}
.modaal-wrapper.modal02 .modaal-inner-wrapper .modaal-container .modaal-content-container .modal_mv {
  width: 42.23%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .modaal-inner-wrapper .modaal-container .modaal-content-container .modal_mv {
    width: 70%;
  }
}
.modaal-wrapper.modal02 .modal_intro {
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .modal_intro {
    margin-bottom: 55px;
  }
}
.modaal-wrapper.modal02 .block_img.ele_01 {
  width: 89.38%;
  margin-bottom: -5.64%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_img.ele_01 {
    width: 93.61%;
    margin-bottom: -12.22%;
  }
}
.modaal-wrapper.modal02 .block_txt_img.ele_01 {
  margin-bottom: -1.6%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_txt_img.ele_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_txt_img.ele_01 .txt01 {
    width: 90%;
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_txt_img.ele_01 .img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.modaal-wrapper.modal02 .block_img_txt.ele_01 {
  margin-bottom: -18.62%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_img_txt.ele_01 {
    margin-bottom: 15px !important;
  }
}
.modaal-wrapper.modal02 .block_img_txt.ele_01 .txt01 {
  width: 40.14%;
  bottom: 22.55%;
  right: 12.77%;
}
@media only screen and (max-width: 820px) {
  .modaal-wrapper.modal02 .block_img_txt.ele_01 .txt01 {
    bottom: 15%;
  }
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_img_txt.ele_01 .txt01 {
    width: 90%;
  }
}
.modaal-wrapper.modal02 .block_img_txt.ele_01 .img {
  width: 82.77%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_img_txt.ele_01 .img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.modaal-wrapper.modal02 .block_img.--bg {
  margin-bottom: 6.38%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_img.--bg {
    margin-bottom: 25px;
  }
}
.modaal-wrapper.modal02 .block_txt {
  margin: 0 auto;
  width: 71.17%;
}
@media screen and (max-width: 768px) {
  .modaal-wrapper.modal02 .block_txt {
    width: 100%;
  }
}
.modaal-wrapper.modal02 .block_type.ele_01 .modal_type_main .img {
  width: 65.22%;
}
.modaal-wrapper.modal02 .block_type.ele_02 .modal_type_main .img {
  width: 66.11%;
}

/*=======================================
campaign_sec
=======================================*/
#odekake_LP .campaign_sec {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec {
    margin-bottom: 15px;
  }
}
#odekake_LP .campaign_sec > .ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec > .ttl {
    margin-bottom: 0;
  }
}
#odekake_LP .campaign_sec .campaign_inn {
  max-width: 980px;
  width: 98%;
  margin: -120px auto 0;
}
@media only screen and (max-width: 1240px) {
  #odekake_LP .campaign_sec .campaign_inn {
    width: 90%;
    margin: -10% auto 0;
  }
}
@media only screen and (max-width: 1215px) {
  #odekake_LP .campaign_sec .campaign_inn {
    width: 90%;
    margin: -10.5% auto 0;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_inn {
    margin: -17% auto 0;
    width: 100%;
  }
}
#odekake_LP .campaign_sec .campaign_copy_area {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_copy_area {
    margin-bottom: 15px;
  }
}
#odekake_LP .campaign_sec .campaign_copy_area .campaign_copy01 {
  width: 87%;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_copy_area .campaign_copy01 {
    width: 100%;
    margin-bottom: 5px;
  }
}
#odekake_LP .campaign_sec .campaign_copy_area .txt {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.129rem;
  text-align: center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_copy_area .txt {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 360px) {
  #odekake_LP .campaign_sec .campaign_copy_area .txt {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}
#odekake_LP .campaign_sec .campaign_prize {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_prize {
    width: 87%;
    margin: 0px auto 35px;
  }
}
#odekake_LP .campaign_sec .campaign_prize .campaign_prize_img {
  width: 75%;
  margin: 0 auto;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_prize .campaign_prize_img {
    width: 100%;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
#odekake_LP .campaign_sec .campaign_period .period {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .period {
    margin: 0px auto 30px;
    width: 92%;
  }
}
#odekake_LP .campaign_sec .campaign_period .link_area {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .link_area {
    width: 93%;
    margin-inline: auto;
    margin-bottom: 40px;
  }
}
#odekake_LP .campaign_sec .campaign_period .link_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li {
  border-right: 1px solid #000;
  height: 50.1306px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .link_area ul li {
    height: 41px;
  }
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li:first-child {
  border-left: 1px solid #000;
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li a {
  font-size: 20px;
  letter-spacing: 0.114rem;
  padding: 0 26px 25px;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .link_area ul li a {
    font-size: 16px;
    letter-spacing: 0.01em;
    padding-bottom: 15px;
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 375px) {
  #odekake_LP .campaign_sec .campaign_period .link_area ul li a {
    letter-spacing: 0.05rem;
  }
}
@media only screen and (max-width: 320px) {
  #odekake_LP .campaign_sec .campaign_period .link_area ul li a {
    font-size: 14px;
  }
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li a::after {
  content: "";
  display: inline-block;
  width: 15.5563px;
  height: 15.5563px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  left: calc(50% - 7.77815px);
  bottom: -5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .link_area ul li a::after {
    width: 12.2657px;
    height: 12.2657px;
    bottom: -3px;
  }
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li a:hover::after {
  bottom: -10px;
}
#odekake_LP .campaign_sec .campaign_period .link_area ul li a:hover {
  opacity: 0.5;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--sttl {
  background: #0075c1;
  height: 68px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "BridgestoneTypeTP-Regular", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: normal !important;
  font-weight: 700 !important;
  font-size: 27px;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--sttl {
    height: 45px;
    font-size: 20px;
    letter-spacing: 0.286rem;
    border-radius: 12.7899px 12.7899px 0 0;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block {
  background: #FFF9E5;
  padding: 30px 0 120px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block {
    padding: 40px 0;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block .inner {
  width: 91.8%;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.campaign--apply {
  border-radius: 0 0 40px 40px;
  background-color: #edf7fc;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.campaign--apply {
    border-radius: 0 0 12.7899px 12.7899px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.junior {
  padding-top: 0;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.commuter, #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.street, #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.child {
  padding-top: 55px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.commuter, #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.child {
  background: #FFF4CC;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.shopping {
  background: #FFF9E5;
  border-radius: 0 0 40px 40px;
  padding-top: 55px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.shopping {
    border-radius: 0 0 12.7899px 12.7899px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item .campaign--block.shopping .type_item {
  padding-top: 20px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply {
    width: 90%;
    margin: auto;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--sttl {
  background: #0075c0;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block {
  background: #e5f1f9;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block.campaign--apply {
  background-color: #e5f1f9;
  padding-bottom: 50px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul {
    gap: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul {
    gap: 20px 0;
    text-align: left;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li {
  width: 29.57%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px 0;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li {
    width: 100%;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .step {
  width: 53.7319px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .step {
    width: 21.11%;
    max-width: 66.7324px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .step {
    width: 25%;
    max-width: 66.7324px;
    margin-bottom: 20px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .txt {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt {
  color: #ff0000;
  background: #fff;
  border: 1px solid #ff0000;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 100%;
  max-width: 264px;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt {
    width: 100%;
    margin: auto;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt {
    width: 100%;
    max-width: none;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt p {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 340px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li .red_txt br {
    display: none;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow {
    width: 100%;
    height: 23.0189px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow {
    width: 100%;
    height: 23.0189px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18.7365px solid #0075c0;
  border-top: 10.8175px solid transparent;
  border-bottom: 10.8175px solid transparent;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow::after {
    border-top: 23.0189px solid #0075c0;
    border-bottom: 0;
    border-left: 13.29px solid transparent;
    border-right: 13.29px solid transparent;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li.arrow::after {
    border-top: 23.0189px solid #0075c0;
    border-bottom: 0;
    border-left: 13.29px solid transparent;
    border-right: 13.29px solid transparent;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign--block .inner ul li:nth-child(3) .cmn_btn {
    margin-bottom: 15px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .btn-apply02 {
  background-color: #f9be00;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .btn-apply02:hover {
  background-color: #f9be00;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign-sup {
  font-size: 14px;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign-sup {
    font-size: 12px;
    width: 92%;
    margin: 20px auto 72px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.apply .campaign-sup p {
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type {
    width: 90%;
    margin: auto;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .btn_area {
  background: #FFF9E5;
  padding: 30px 0 86.5px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .btn_area {
    padding: 23px 0 70px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .btn_area .txt_add {
  font-size: 18px;
  letter-spacing: 0.114rem;
  padding-bottom: 38px;
  font-family: "BridgestoneTypeTP-Regular", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: normal !important;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .btn_area .txt_add {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01rem;
    padding-bottom: 23px;
    width: 90%;
    margin: auto;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_main_img {
  width: 35.5%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_main_img {
    width: 68%;
    margin-bottom: 23px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item:not(:last-of-type) {
  margin-bottom: 60px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item .sttl01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item .sttl01 {
    margin-bottom: 20px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 5%;
  margin-bottom: -88px;
}
@media only screen and (max-width: 1240px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul {
    gap: 0 3%;
  }
}
@media only screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul {
    max-width: 287px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px 0;
    margin-inline: auto;
    margin-bottom: 0;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li {
    width: 90%;
    margin-inline: auto;
    display: block;
    padding-bottom: 0;
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .name {
  font-size: 21px;
  line-height: 1.33;
  color: #505050;
}
@media only screen and (max-width: 1240px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .name {
    font-size: 21px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .new-text {
  position: fixed;
  top: -24px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .new-text span {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  padding: 4px 8px;
  background-color: #ff0000;
  margin-right: 2px;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .img {
  width: 180%;
  aspect-ratio: 460/170;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: -120px;
}
@media screen and (max-width: 1120px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .img {
    margin-left: -45%;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .img {
    margin-bottom: 5px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .txt {
  font-size: 16px;
  line-height: 1.5;
  color: #514F4F;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  width: 101%;
}
@media only screen and (max-width: 1240px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .txt {
    font-size: 15px;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 768px) {
  #odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .txt {
    width: 108%;
    margin-bottom: 8px;
    font-size: 16px;
  }
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .link {
  font-size: 16px;
  display: block;
}
#odekake_LP .campaign_sec .campaign_period .campaign_period_item.type .campaign--block .inner .type_item ul li .link span {
  color: #FF0000;
}/*# sourceMappingURL=local.css.map */