/*common*/
*, :before, :after {
  box-sizing: inherit;
}

body *, body :before, body :after {
  box-sizing: content-box;
}

html body {
  position: relative;
  overflow-x: hidden;
  display: block;
  background-color: #fff;
}

/*reset*/
body, h1, h2, h3, h4, h5, h6, span, p, dl, dt, dd, hr, header, aside, section, article, form, input, strong, textarea {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border: 0px;
}

img {
  border: 0px;
  vertical-align: bottom;
}

input {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  text-align: center;
  overflow-x: hidden;
}

input[type=text]:focus {
  outline: none;
}

select:focus {
  outline: none;
}

textarea {
  outline: none;
}

input, select, textarea, button {
  vertical-align: middle;
}

body main {
  font-feature-settings: "palt" 1;
  backface-visibility: hidden;
  font-size: 1.3vw;
  line-height: 1.7;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.show_450 {
  display: none;
}

@media screen and (max-width: 900px) {
  .hide_900 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hide_700 {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .hide_450 {
    display: none;
  }
  .show_450 {
    display: block;
  }
}
/*common*/
.inc_common_footer_wrap {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-size: 18px;
  /* font-size: 1.8rem; */
  color: #111;
  line-height: 2;
  font-family: Meiryo, sans-serif;
  text-align: left;
}

@media screen and (max-width: 64em) {
  .footer-other .footer-body-link, .footer-body-link-a {
    box-sizing: border-box;
  }
}
html body main {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
  line-height: 1.7;
  position: relative;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  background-color: #fff;
}

img {
  width: 100%;
}

.wrap {
  max-width: 63vw;
  padding: 0 5vw;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .wrap {
    max-width: 80vw;
  }
}
@media screen and (max-width: 1000px) {
  .wrap {
    max-width: none;
  }
}
@media screen and (max-width: 1350px) {
  html body main {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 1300px) {
  html body main {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1100px) {
  html body main {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 1000px) {
  html body main {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 700px) {
  html body main {
    font-size: 4.5vw;
  }
}
.scroll_top {
  overflow: hidden;
}

/*rwd*/
/*rwd*/
/*rwd*/
/*rwd*/
.rwd_show1000 {
  display: none;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 1000px) {
  .rwd_show1000 {
    display: inline;
  }
}
.rwd_show800 {
  display: none;
}

@media screen and (max-width: 800px) {
  .rwd_show800 {
    display: inline;
  }
}
@media screen and (max-width: 700px) {
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
}
/*rwd*/
/*rwd*/
/*rwd*/
/*rwd*/
/*animation*/
/*animation*/
/*animation*/
/*animation*/
/*animation*/
.left_to_wide {
  opacity: 0;
  transform: skew(-90deg);
  transform-origin: left top;
}

.left_to_wide span {
  width: 100vw;
}

.left_to_wide.active {
  opacity: 1;
  transform: skew(0deg);
  transform-origin: left top;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.left_to_right {
  opacity: 0;
  transform: translate3d(-150px, 0, 0) scale(1.01);
}

.left_to_right.active {
  animation: left_to_right 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.right_to_left {
  opacity: 0;
  transform: translate3d(50px, 0, 0) scale(1.01);
}

.right_to_left.active {
  animation: right_to_left 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_top.active {
  animation: bottom_to_top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.1s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.top_to_bottom {
  opacity: 0;
  transform: translate3d(0, -50px, 0) scale(1.1);
}

.top_to_bottom.active {
  animation: top_to_bottom 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes top_to_bottom {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.show_text {
  position: relative;
  transition: -webkit-clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-delay: 0.2s;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
  opacity: 0;
}

.showup.active {
  opacity: 1;
  /*transform: matrix(1,0,0,1,0,0);*/
  transform: translate3d(0, 0px, 0);
}

.showup {
  opacity: 0;
  transition: all 1.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  /*transform: matrix(1.2,0,0,1,0,100);*/
  transform: translate3d(0, 100px, 0);
}

.showvis {
  position: relative;
  display: flex;
}

.showvis {
  transform: translate3d(100%, 0, 0);
  transition: all cubic-bezier(0, 0.54, 0, 0.97) 1s;
}

.showvis.active {
  transform: translate3d(0, 0, 0);
}

.showvis > span {
  opacity: 0;
  transform: scaleX(0.1);
  position: relative;
  display: block;
}

.showvis.active > span {
  animation: shows 0.8s ease 20s forwards;
  opacity: 0;
  transform: scaleX(0.1);
}

@keyframes shows {
  0% {
    opacity: 0;
    color: red;
    transform: scale(5) rotate(45deg);
  }
  100% {
    opacity: 1;
    color: white;
    transform: scale(1) rotate(0);
  }
}
.growfadein {
  opacity: 0;
  transition: all ease 1s;
}

.growfadein.active {
  opacity: 0;
  animation: growfade 0.5s ease 0.2s forwards;
}

@keyframes growfade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    filter: brightness(1330%);
  }
  70% {
    opacity: 1;
    filter: brightness(100%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
    transform: scale(1);
  }
}
/*animation*/
/*animation*/
/*animation*/
/*animation*/
/*animation*/
html {
  overflow: unset !important;
}

html body {
  overflow: unset;
}

html body main {
  overflow: unset;
  font-family: "Noto Sans JP", sans-serif;
  background-image: linear-gradient(to right, #f0f8ff, #fff);
  font-size: 1.35vw;
  font-weight: 500;
}
html body main img {
  width: 100%;
}

html,
body,
main {
  background-color: #fff;
  overflow: unset;
}
html main,
body main,
main main {
  color: #3f3f3f;
}
html h1,
html h2,
html h3,
html h4,
body h1,
body h2,
body h3,
body h4,
main h1,
main h2,
main h3,
main h4 {
  font-weight: 500;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding: 0 5vw;
}

@media screen and (max-width: 800px) {
  .wrap {
    max-width: none;
    padding: 0 5vw;
  }
  html body main {
    font-size: 3.4vw;
  }
}
.fcb {
  color: #3071b9;
}

.fcy {
  color: #fbcf54;
}

.fcb_l {
  color: #5f67ae;
}

.fcb_l2 {
  color: #333399;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 800px) {
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
}
.top_dunlop_logo {
  position: absolute;
  right: 3vw;
  top: 2vw;
  width: 12vw;
  z-index: 10;
}
.top_dunlop_logo picture {
  display: flex;
}
.top_dunlop_logo a {
  display: block;
}

@media screen and (max-width: 700px) {
  .top_dunlop_logo {
    width: 25vw;
  }
}
.mv {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.mv.active {
  opacity: 1;
}
.mv > figure {
  transform: scale(1.15);
  transition: all ease 0.3s;
}
.mv .mv_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mv .mv_text figure {
  position: absolute;
  transition: all ease 0.3s;
}
.mv .mv_text .mt1 {
  top: 0;
  left: 0;
  width: 7.3vw;
  opacity: 0;
  transform: translate3d(0, 1em, 0);
}
.mv .mv_text .mt2 {
  bottom: 0;
  right: 0;
  width: 7.3vw;
  opacity: 0;
  transform: translate3d(0, -1em, 0);
}
.mv .mv_text .mt3 {
  top: 16.3%;
  right: 50%;
  width: 3.4vw;
  opacity: 0;
  transform: translate3d(1em, 0, 0);
  transition-delay: 0.3s;
}
.mv .mv_text .mt4 {
  top: 16.3%;
  left: 50%;
  width: 3.4vw;
  opacity: 0;
  transform: translate3d(-1em, 0, 0);
  transition-delay: 0.3s;
}
.mv .mv_p {
  transition: all ease 0.3s;
  position: absolute;
  bottom: 1em;
  left: 2em;
  width: 28%;
  opacity: 0;
  transform: translate3d(0, 1em, 0);
  transition-delay: 0.3s;
}
.mv.active .mv_p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 2;
  opacity: 0;
  animation-delay: 0.7s;
  animation: growfade 0.5s ease 0.2s forwards;
}
.mv.active .mv_text {
  z-index: 2;
}
.mv.active .mv_text .mt1 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mv.active .mv_text .mt2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mv.active .mv_text .mt3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mv.active .mv_text .mt4 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mv.active > figure {
  transform: scale(1);
}

@media screen and (max-width: 800px) {
  .mv .mv_text .mt1 {
    width: 12.3vw;
  }
  .mv .mv_text .mt2 {
    width: 12.3vw;
  }
  .mv .mv_text .mt3 {
    width: 66vw;
    bottom: 50%;
    left: 17%;
    top: auto;
    right: auto;
    transform: translate3d(0, 1em, 0);
  }
  .mv .mv_text .mt4 {
    width: 66vw;
    top: 50%;
    left: 17%;
    bottom: auto;
    right: auto;
    transform: translate3d(0, -1em, 0);
  }
}
.top_camp {
  background-image: linear-gradient(to right, #002b6b, #0768d3);
  padding: 2.5em 0;
}
.top_camp .wrap {
  max-width: 67vw;
}
.top_camp .top_camp_in {
  display: flex;
  gap: 2.3em;
  align-items: center;
}
.top_camp .top_camp_in a {
  display: block;
  flex: 0 1 58%;
  transition: all ease 0.3s;
}
.top_camp .top_camp_in a:hover {
  opacity: 0.7;
}
.top_camp .top_camp_in > div {
  flex: 1;
}
.top_camp .top_camp_in > div h3 {
  color: #f0dca6;
  font-size: 165%;
  margin-bottom: 0.5em;
  line-height: 1.35;
}
.top_camp .top_camp_in > div p {
  color: #fff;
  margin-right: -2em;
}

@media screen and (max-width: 800px) {
  .top_camp .wrap {
    max-width: 77vw;
  }
  .top_camp .top_camp_in {
    flex-direction: column;
    gap: 1em;
  }
  .top_camp .top_camp_in > div h3 {
    text-align: center;
    line-height: 1.3;
  }
  .top_camp .top_camp_in > div p {
    margin-right: 0;
  }
}
.slide {
  padding: 3em 5.5vw;
  padding-bottom: 4.5em;
  background-color: #d1edf4;
}
.slide .swiper-slide {
  display: block;
}
.slide .swiper-pagination {
  bottom: 1.5em;
}
.slide .swiper-pagination-bullet {
  width: 0.5em;
  height: 0.5em;
}
.slide .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.slide .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3071b9;
}
.slide .swiper-pagination-bullet-active {
  background-color: #3071b9;
  border: 1px solid #3071b9;
}
.slide .swiper-button-next:after {
  content: "";
  background-image: url(../img/pointer.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4vw;
  height: 4vw;
}
.slide .swiper-button-prev:after {
  content: "";
  background-image: url(../img/pointer.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4vw;
  height: 4vw;
  transform: rotate(180deg);
}
.slide .swiper-button-next, .slide .swiper-button-prev {
  width: 4vw;
}

@media screen and (max-width: 800px) {
  .slide .swiper-button-next, .slide .swiper-button-prev {
    width: 8vw;
  }
  .slide .swiper-button-next:after, .slide .swiper-button-prev:after {
    width: 8vw;
    height: 8vw;
  }
  .slide .swiper-pagination-bullet {
    width: 1.5em;
    height: 1.5em;
  }
  .slide .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  .slide .swiper-pagination {
    bottom: 0.5em;
  }
  .slide {
    padding: 2em 15.5vw;
  }
  .slide .swiper-pagination {
    display: none;
  }
}
.topics {
  padding: 4.2em 0;
  padding-bottom: 3.5em;
}
.topics .topics_in {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  row-gap: 2.5em;
}
.topics .topics_in li {
  flex: 0 1 calc((100% - 2em) / 3);
}
.topics .topics_in li a {
  display: block;
  color: #3071b9;
  text-decoration: none;
  transition: all ease 0.3s;
}
.topics .topics_in li a p {
  margin-top: 0.5em;
  padding-left: 0.5em;
  line-height: 1.3;
  font-size: 94%;
}
.topics .topics_in li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .topics .topics_in li {
    flex: 0 1 calc((100% - 2em) / 2);
  }
  .topics {
    padding-top: 2.2em;
    padding-bottom: 2.2em;
  }
}
.ladies_nav {
  background-image: linear-gradient(to right, #fbdddd, #ef91b4);
  padding: 1em 0;
  padding-bottom: 0.5em;
}
.ladies_nav .ladies_nav_in {
  max-width: 67%;
  margin: 0 auto;
}
.ladies_nav .ladies_nav_in a {
  display: block;
  transition: all ease 0.3s;
}
.ladies_nav .ladies_nav_in a:hover {
  opacity: 0.7;
}
.mens_nav {
  background-image: linear-gradient(to right, #cbe7fd, #05a8fc);
  padding: 1em 0;
  padding-bottom: 0.5em;
}
.mens_nav .mens_nav_in {
  max-width: 67%;
  margin: 0 auto;
}
.mens_nav .mens_nav_in a {
  display: block;
  transition: all ease 0.3s;
}
.mens_nav .mens_nav_in a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .ladies_nav .ladies_nav_in {
    max-width: none;
  }
  .mens_nav .mens_nav_in {
    max-width: none;
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.sb {
  overflow: hidden;
}
.sb .sbh {
  padding: 1em 0;
  position: relative;
}
.sb .sbh.active:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #002b6b, #0768d3);
  transform-origin: left;
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sb .sbh.active {
  transform: translate3d(0, 0, 0);
}
.sb .sbh > * {
  position: relative;
  z-index: 2;
}
.sb .sbh p {
  background-color: #fff;
  color: #3071b9;
  color: #3071b9;
  font-weight: bold;
  font-size: 113%;
  padding: 0.2em 0.5em;
  display: inline-block;
  margin-bottom: 0.3em;
}
.sb .sbh h2 {
  color: #fff;
  font-size: 250%;
  line-height: 1.2;
  font-weight: 900;
}
.sb .sbc {
  padding: 1em 0;
}

@media screen and (max-width: 800px) {
  .sb .sbh {
    padding: 1.3em 0;
  }
  .sb .sbh h2 {
    font-size: 180%;
  }
  .sb .sbh p {
    font-size: 83%;
    display: block;
    line-height: 1.3;
    padding: 0.4em 0.5em;
    margin-bottom: 0.5em;
  }
}
.sbReason {
  padding-bottom: 3em;
}
.sbReason .sbc h3 {
  font-size: 235%;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 0.7em;
}
.sbReason .reason_list {
  counter-reset: listnum;
}
.sbReason .reason_list li {
  margin-bottom: 4em;
  display: flex;
  gap: 1em;
  align-items: center;
}
.sbReason .reason_list li > figure {
  flex: 0 1 57%;
}
.sbReason .reason_list li > p {
  position: relative;
  flex: 1;
  font-size: 200%;
  font-weight: 900;
  color: #d35344;
  line-height: 1.3;
  padding-left: 1em;
  margin-right: -1em;
}
.sbReason .reason_list li > p:before {
  counter-increment: listnum;
  content: counter(listnum);
  display: inline-block;
  border: 1px solid #d35344;
  line-height: 1;
  padding: 0.1em;
  font-size: 108%;
  font-weight: bold;
  margin-right: 0.2em;
  position: absolute;
  left: 0;
  top: 0;
}
.sbReason .reason_list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 800px) {
  .sbReason .sbc h3 {
    font-size: 180%;
  }
  .sbReason .reason_list li {
    flex-direction: column;
  }
  .sbReason .reason_list li > p {
    font-size: 180%;
    margin-right: 0;
    margin-left: -0.5em;
  }
}
.pro_fukidashi {
  position: relative;
}
.pro_fukidashi > p {
  background-color: #c9e4ec;
  border-radius: 1em;
  padding: 1em 1.3em;
  line-height: 1.5;
  font-weight: bold;
  font-size: 105%;
}
.pro_fukidashi > figure {
  position: absolute;
  width: 15vw;
  right: 3%;
  bottom: 0;
}

.sbTawami {
  padding-bottom: 2em;
}
.sbTawami .sbc > p {
  text-align: center;
}
.sbTawami .tawami_desc {
  padding-top: 2em;
}
.sbTawami .tawami_desc > figure {
  margin-bottom: 2em;
}
.sbTawami .tawami_desc > h3 {
  font-size: 180%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}
.sbTawami .tawami_desc table {
  text-align: center;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
}
.sbTawami .tawami_desc table th,
.sbTawami .tawami_desc table td {
  padding: 0.5em 1em;
  border: 1px solid #333333;
  font-weight: bold;
  line-height: 1.3;
}
.sbTawami .tawami_desc table th {
  background-color: #c9e4ec;
}
.sbTawami .tawami_desc table caption {
  caption-side: bottom;
  text-align: right;
  font-size: 60%;
}
.sbTawami .tawami_desc table .bdrn {
  border-right: none;
}
.sbTawami .tawami_desc table .bdln {
  border-left: none;
}
.sbTawami .tawami_desc table .tdtext {
  font-size: 85%;
}
.sbTawami .tawami_desc table .tdrank {
  font-size: 130%;
  width: 2em;
}
.sbTawami .tawami_desc table .tdsamll {
  font-size: 70%;
  padding: 0.1em;
  padding-bottom: 0.3em;
}
.sbTawami .tawami_desc table .tdsamll2 {
  font-size: 90%;
  padding: 0.1em;
}
.sbTawami .tawami_bottom {
  position: relative;
}
.sbTawami .tawami_bottom > figure {
  width: 32%;
}
.sbTawami .pro_fukidashi {
  position: absolute;
  top: 7vw;
  left: 23vw;
  width: 34vw;
}

@media screen and (max-width: 800px) {
  .sbTawami .tawami_desc > figure {
    margin-left: -5vw;
  }
  .sbTawami .tawami_desc > h3 {
    font-size: 155%;
  }
  .sbTawami .tawami_desc table {
    font-size: 80%;
    width: 100%;
  }
  .sbTawami .tawami_desc table th, .sbTawami .tawami_desc table td {
    padding: 0.5em 0.3em;
  }
  .sbTawami .tawami_desc table .tdrank {
    width: 2.5em;
  }
  .sbTawami .tawami_desc table .bdln {
    font-size: 90%;
  }
  .sbTawami .pro_fukidashi {
    position: relative;
    top: 0;
    right: auto;
    left: auto;
    width: auto;
    margin-top: 2em;
  }
  .sbTawami .tawami_bottom > figure {
    width: 60%;
  }
  .pro_fukidashi > figure {
    width: 38vw;
    bottom: 0;
  }
}
.sbXs {
  padding-bottom: 1.5em;
}
.sbXs .sbh h2 {
  position: relative;
  padding-left: 1.2em;
}
.sbXs .sbh h2 span {
  display: block;
  background-color: #fff;
  color: #3071b9;
  padding: 0 0.2em;
  padding-bottom: 0.1em;
  font-weight: 500;
  line-height: 1.1;
  position: absolute;
  top: 0.15em;
  left: 0;
  font-size: 90%;
}
.sbXs .sbXs_top {
  display: flex;
  gap: 5em;
  row-gap: 4em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}
.sbXs .sbXs_top > div {
  flex: 1;
}
.sbXs .sbXs_top > div > div {
  position: relative;
  margin-bottom: 2em;
}
.sbXs .sbXs_top > div > div p {
  padding: 1em;
  padding-top: 1.5em;
  font-size: 90%;
  line-height: 1.3;
  border: 1px solid #3071b9;
  width: 21em;
}
.sbXs .sbXs_top > div > div h3 {
  position: absolute;
  left: -1em;
  top: -1em;
  font-size: 95%;
  padding: 0 0.5em;
  padding-bottom: 0.2em;
}
.sbXs .sbXs_top > div > div:last-child {
  margin-bottom: 0;
}
.sbXs .sbXs_top > div figure {
  margin-bottom: 2em;
}
.sbXs .sbXs_top > div:first-child {
  flex: 0 1 38%;
  position: relative;
}
.sbXs .sbXs_top > div:first-child figure {
  transform: translate3d(-3vw, 0, 0);
  width: 27vw;
}
.sbXs .sbXs_top > div:first-child > div {
  margin-left: 1em;
}
.sbXs .sbXs_top > div:first-child > div h3 {
  color: #3071b9;
  border: 1px solid #3071b9;
  display: inline-block;
  background-color: #fff;
}
.sbXs .sbXs_top > div:first-child > div p {
  width: 15em;
}
.sbXs .sbXs_top > div:first-child:after {
  content: "";
  display: block;
  width: 4.5vw;
  height: 4.5vw;
  background-image: url(../img/x.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 100%;
  top: 13%;
}
.sbXs .sbXs_top > div:nth-child(2) {
  flex: 0 1 40%;
}
.sbXs .sbXs_top > div:nth-child(2) figure {
  margin-bottom: 1em;
  width: 27vw;
}
.sbXs .sbXs_top > div:nth-child(2) > div {
  margin-left: 2em;
}
.sbXs .sbXs_top > div:nth-child(2) > div h3 {
  color: #fff;
  background-color: #3071b9;
  display: inline-block;
  margin-bottom: 0.3em;
}
.sbXs .sbXs_top > div:last-child {
  flex: 0 1 72%;
  margin-left: 2em;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #3071b9;
  padding: 1em;
  line-height: 1.3;
  position: relative;
}
.sbXs .sbXs_top > div:last-child b {
  font-weight: 900;
  display: block;
  font-size: 180%;
  margin-top: 0.2em;
}
.sbXs .sbXs_top > div:last-child:after {
  content: "";
  display: block;
  width: 8.5vw;
  height: 4.5vw;
  background-image: url(../img/delta.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 1vw);
  margin: 0 auto;
}
.sbXs .sbXs_graph {
  padding-left: 1em;
  padding-right: 2vw;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_h {
  border-bottom: 2px solid #cccccc;
  padding-bottom: 0.5em;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_h > div {
  display: flex;
  align-items: center;
  line-height: 1;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_h > div span {
  font-size: 150%;
  margin-right: 1em;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_h > div small {
  font-size: 60%;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_f {
  display: flex;
  gap: 2em;
}
.sbXs .sbXs_graph .sbXs_graph_in .graph_f > * {
  flex: 1;
}
.sbXs .sbXs_graph .sbXs_graph_in h3 {
  font-size: 250%;
  font-weight: 900;
  line-height: 1.3;
  margin-left: -0.5em;
  margin-top: 1em;
  margin-bottom: 0.3em;
}
.sbXs .sbXs_graph .graph_bottom {
  position: relative;
}
.sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
  position: absolute;
  z-index: 2;
  top: 5vw;
  left: -2vw;
  right: auto;
  width: 27em;
}
.sbXs .sbXs_graph .graph_bottom .pro_fukidashi figure {
  bottom: 0vw;
}

@media screen and (max-width: 800px) {
  .sbXs .sbXs_top {
    flex-direction: column;
    row-gap: 5em;
  }
  .sbXs .sbXs_top > div:first-child {
    flex: 1;
  }
  .sbXs .sbXs_top > div:first-child figure {
    width: 70vw;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
  .sbXs .sbXs_top > div:first-child > div p {
    width: 80%;
  }
  .sbXs .sbXs_top > div:first-child > div {
    margin-left: 7vw;
  }
  .sbXs .sbXs_top > div:nth-child(2) {
    flex: 1;
  }
  .sbXs .sbXs_top > div:nth-child(2) figure {
    width: 70vw;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
  .sbXs .sbXs_top > div:first-child:after {
    top: calc(100% + 6vw);
    left: 0;
    right: 0;
    margin: auto;
    width: 13.5vw;
    height: 13.5vw;
  }
  .sbXs .sbXs_top > div:last-child {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .sbXs .sbXs_top > div:last-child:after {
    width: 17vw;
    height: 9vw;
    bottom: calc(100% + 4vw);
  }
  .sbXs .sbXs_graph .sbXs_graph_in .graph_h > div {
    flex-direction: column;
    align-items: flex-start;
  }
  .sbXs .sbXs_graph .sbXs_graph_in .graph_h > div span {
    margin-right: 0;
  }
  .sbXs .sbXs_graph .sbXs_graph_in .graph_h > div small {
    margin-top: 1em;
    display: block;
  }
  .sbXs .sbXs_graph {
    padding-left: 0;
    padding-right: 0;
  }
  .sbXs .sbXs_graph .sbXs_graph_in .graph_f {
    flex-direction: column;
  }
  .sbXs .sbXs_graph .sbXs_graph_in h3 {
    margin-left: 0;
    font-size: 200%;
  }
  .sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 5vw;
  }
  .sbXs .sbXs_graph .sbXs_graph_in .graph_f > * {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.sbX1 {
  padding-bottom: 3em;
}
.sbX1 .sbc .wrap > figure {
  margin-top: 1em;
  width: 100%;
}
.sbX1 .sbX1_desc {
  padding-top: 4em;
}
.sbX1 .sbX1_desc > h3 {
  font-size: 180%;
  font-weight: 900;
  line-height: 1.5;
}
.sbX1 .sbX1_b {
  display: flex;
  width: 92%;
  padding: 1em 0;
  gap: 1em;
  flex-wrap: wrap;
}
.sbX1 .sbX1_b > p {
  font-size: 110%;
  flex: 0 1 15em;
}
.sbX1 .sbX1_b > figure {
  flex: 1;
  margin-top: -3em;
}
.sbX1 .sbX1_b > h4 {
  flex: 0 1 100%;
  margin-bottom: 0.5em;
}
.sbX1 .sbX1_b > h4 span {
  display: inline-block;
  font-size: 164%;
  border: 1px solid #3071b9;
  padding: 0.1em 0.3em;
  padding-bottom: 0.2em;
}
.sbX1 .pro_fukidashi {
  width: 57%;
  margin-right: 7vw;
  margin-left: auto;
}
.sbX1 .pro_fukidashi > p {
  padding: 2em 1.3em;
}
.sbX1 .pro_fukidashi > figure {
  width: 15vw;
  right: 2%;
  bottom: 0;
}
.sbX1 .sbX1_desc2 {
  padding-top: 2em;
}
.sbX1 .sbX1_desc2 > h3 {
  font-size: 180%;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.sbX1 .sbX1_desc2 > h4 {
  background-color: #3071b9;
  color: #fff;
  display: inline-block;
  padding: 0.1em 0.6em;
  font-size: 145%;
  margin-bottom: 0.8em;
}
.sbX1 .sbX1_desc2 > figure {
  margin-right: 3vw;
}

.sbXs1.sbXs .sbXs_graph .graph_bottom > figure {
  margin-left: -6vw;
  margin-right: -13vw;
}

@media screen and (max-width: 800px) {
  .sbX1 .sbc .wrap > figure {
    margin-left: 0;
    margin-top: 2em;
  }
  .sbX1 .sbX1_b {
    flex-direction: column;
    gap: 0;
  }
  .sbX1 .sbX1_b > figure {
    margin-top: 0;
  }
  .sbX1 .sbX1_b > p {
    flex: 1;
  }
  .sbX1 .sbX1_b > h4 span {
    font-size: 125%;
  }
  .sbX1 .sbX1_b {
    width: auto;
  }
  .sbX1 .pro_fukidashi {
    width: auto;
    margin-right: 0;
    margin-top: 2em;
  }
  .sbX1 .pro_fukidashi p {
    padding: 1em 1.3em;
  }
  .sbX1 .pro_fukidashi > figure {
    width: 36vw;
    bottom: 0;
    right: 0%;
  }
}
.sbXs2.sbXs .sbXs_graph .sbXs_graph_in .graph_h {
  margin-bottom: 1em;
}
.sbXs2.sbXs .sbXs_graph .sbXs_graph_in .graph_bottom {
  width: 71%;
  padding-bottom: 1em;
}

@media screen and (max-width: 800px) {
  .sbXs2.sbXs .sbXs_graph .sbXs_graph_in .graph_bottom {
    width: auto;
  }
}
.sbXs3 {
  padding-bottom: 4em;
}
.sbXs3.sbXs .sbXs_top {
  row-gap: 1.5em;
}
.sbXs3.sbXs .sbXs_top > div:nth-child(2) > div > div {
  padding: 1em;
  padding-top: 1.5em;
  padding-bottom: 0;
  font-size: 90%;
  line-height: 1.3;
  border: 1px solid #3071b9;
  width: 23em;
}
.sbXs3.sbXs .sbXs_top > div:nth-child(2) > div > div figure {
  margin-bottom: 0;
  width: 28.6vw;
}
.sbXs3.sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
  left: auto;
  right: 0;
  width: 23.5vw;
  top: 17vw;
}
.sbXs3.sbXs .sbXs_graph .graph_bottom .pro_fukidashi figure {
  right: -5vw;
}
.sbXs3.sbXs .sbXs_graph .graph_bottom {
  margin-left: -2vw;
  margin-top: 5em;
}
.sbXs3.sbXs .sbXs_graph .graph_bottom > figure {
  width: 70%;
}
.sbXs3 .sbXs3_bottom {
  width: 74%;
  margin-left: -2vw;
  margin-top: 4em;
}
.sbXs3 .sbXs3_bottom > figure:nth-child(1) {
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {
  .sbXs3.sbXs .sbXs_top {
    row-gap: 5em;
  }
  .sbXs3.sbXs .sbXs_top > div:nth-child(2) > div > div figure {
    width: auto;
  }
  .sbXs3.sbXs .sbXs_graph .graph_bottom {
    margin-top: 3em;
  }
  .sbXs3.sbXs .sbXs_graph .graph_bottom > figure {
    width: auto;
  }
  .sbXs3.sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
    width: auto;
    top: auto;
    margin-top: 23vw;
  }
  .sbXs3 .sbXs3_bottom {
    width: auto;
    margin-top: 2em;
  }
  .sbXs3.sbXs .sbXs_graph .graph_bottom .pro_fukidashi figure {
    right: 3%;
  }
}
.sbXsb {
  padding-bottom: 6em;
}
.sbXsb .sbh .wrap {
  max-width: 82vw;
}
.sbXsb .sbXsb_top {
  margin-bottom: 7em;
}
.sbXsb .sbXsb_top ul {
  display: flex;
  gap: 0.5em;
}
.sbXsb .sbXsb_top ul li {
  flex: 1;
  text-align: center;
  padding: 0 0.8em;
  color: #fff;
  background-image: linear-gradient(to bottom, #e55746, #b42d1d);
}
.sbXsb .sbXsb_top ul li span {
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0.5em 0;
  font-size: 157%;
}
.sbXsb .sbXsb_top ul li b {
  display: block;
  font-weight: bold;
  font-size: 188%;
  padding: 0.5em 0;
  padding-bottom: 0.7em;
  line-height: 1.3;
}
.sbXsb .pro_fukidashi {
  margin-bottom: 2em;
}
.sbXsb .pro_fukidashi p {
  font-size: 155%;
}
.sbXsb .pro_fukidashi > figure {
  right: 1%;
}
.sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_f {
  padding-left: 1em;
  padding-right: 2em;
}
.sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_h {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_h > div {
  margin-left: 1em;
}
.sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_h > p {
  margin-left: 1em;
}
.sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_h h4 {
  background-color: #3071b9;
  color: #fff;
  display: inline-block;
  padding: 0.1em 0.6em;
  font-size: 145%;
  margin-bottom: 0.8em;
}
.sbXsb.sbXs .sbXs_graph {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 800px) {
  .sbXsb .sbXsb_top ul {
    flex-direction: column;
  }
  .sbXsb .sbXsb_top ul li b br {
    display: none;
  }
  .sbXsb .sbXsb_top ul li b {
    font-size: 170%;
  }
  .sbXsb .sbXsb_top ul li span {
    font-size: 140%;
  }
  .sbXsb .pro_fukidashi p {
    font-size: 105%;
  }
  .sbXsb .sbXsb_top {
    margin-bottom: 7em;
  }
  .sbXsb.sbXs .sbXs_graph .sbXs_graph_in .graph_h h4 {
    line-height: 1.3;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .sbXsb.sbXs .sbh h2 {
    padding-left: 0;
  }
}
.sbSp {
  padding-bottom: 3em;
  border-bottom: 1px solid #000;
}
.sbSp.sb .sbh .wrap {
  max-width: 85vw;
}
.sbSp.sb .sbh h2 {
  position: relative;
}
.sbSp.sb .sbh h2:after {
  content: "";
  display: block;
  width: 100vw;
  background-image: url(../img/spec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 8.5em;
  top: 43%;
  height: 100%;
}
.sbSp .sbc {
  padding-top: 2em;
}
.sbSp .sbc .wrap {
  max-width: 70vw;
}
.sbSp .sbc .sbSp_top {
  border: 1px solid #3071b9;
  padding: 1em 1em;
  display: flex;
  gap: 1.6em;
}
.sbSp .sbc .sbSp_top > div {
  line-height: 1.5;
}
.sbSp .sbc .sbSp_top > div:first-child h3 {
  background-color: #3071b9;
  color: #fff;
  font-size: 140%;
  padding: 0em 0.5em;
  display: inline-block;
  margin-bottom: 0.5em;
}
.sbSp .sbc .sbSp_top > div:last-child ol {
  counter-reset: listnum;
  margin-top: 0.5em;
}
.sbSp .sbc .sbSp_top > div:last-child ol li {
  position: relative;
  margin-bottom: 1em;
  padding-left: 3em;
}
.sbSp .sbc .sbSp_top > div:last-child ol li:last-child {
  margin-bottom: 0;
}
.sbSp .sbc .sbSp_top > div:last-child ol li:before {
  content: counter(listnum);
  counter-increment: listnum;
  border: 1px solid #898989;
  padding: 0 0.4em;
  padding-bottom: 0.1em;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 145%;
}
.sbSp .sbc .sbSp_top > div:last-child ol li h4 {
  position: relative;
}
.sbSp .sbSp_items {
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  padding-left: 1em;
}
.sbSp .sbSp_items figure {
  flex: 0 1 calc((100% - 2em) / 2);
}
.sbSp .sbSp_items figure figcaption {
  margin-left: 1em;
}
.sbSp .sbSp_specs {
  display: flex;
  margin-top: 2.5em;
  padding-left: 2.5em;
  margin-bottom: 3.5em;
  gap: 2em;
}
.sbSp .sbSp_specs .sbSp_specs_l {
  flex: 1;
}
.sbSp .sbSp_specs .sbSp_specs_l h3 {
  font-size: 224%;
  line-height: 1.3;
}
.sbSp .sbSp_specs .sbSp_specs_l .ja {
  font-size: 115%;
  line-height: 1.3;
  font-weight: bold;
}
.sbSp .sbSp_specs .sbSp_specs_l .price {
  font-weight: 500;
}
.sbSp .sbSp_specs .sbSp_specs_l .price b {
  font-size: 120%;
}
.sbSp .sbSp_specs .sbSp_specs_l .price b span {
  font-size: 80%;
}
.sbSp .sbSp_specs .sbSp_specs_l .price small {
  font-size: 95%;
}
.sbSp .sbSp_specs .sbSp_specs_l table {
  width: 100%;
  font-size: 95%;
  margin-top: 0.5em;
}
.sbSp .sbSp_specs .sbSp_specs_l table th, .sbSp .sbSp_specs .sbSp_specs_l table td {
  border-bottom: 1px solid #999999;
  border-top: 1px solid #999999;
  padding: 0.1em 0.4em;
  text-align: left;
}
.sbSp .sbSp_specs .sbSp_specs_l table th {
  width: 6em;
}
.sbSp .sbSp_specs .sbSp_specs_l table caption {
  caption-side: bottom;
  text-align: left;
  font-size: 90%;
}
.sbSp .sbSp_specs .sbSp_specs_r {
  flex: 1;
}
.sbSp .sbSp_specs .sbSp_specs_r > figure {
  width: 88%;
  margin-bottom: 1em;
  margin-left: 1%;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul {
  margin-right: 3vw;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul li {
  display: flex;
  margin-bottom: 0.5em;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul li p {
  flex: 1;
  text-align: center;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul li p:first-child {
  background-color: #dbeef4;
  flex: 0 1 45%;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul li p:last-child {
  background-color: #00183f;
  color: #fff;
}
.sbSp .sbSp_specs .sbSp_specs_r > ul li p:last-child.fcy {
  color: #fbcf54;
}
.sbSp .sbSp_specs_plink {
  display: flex;
  padding-left: 2.5em;
  gap: 2em;
  margin-bottom: 5em;
}
.sbSp .sbSp_specs_plink a {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(to right, #002b6b, #0768d3);
  background: linear-gradient(90deg, #002b6b 0%, #0768d3 50%, #002b6b 100%);
  padding: 0.5em 0;
  width: 15em;
  font-size: 90%;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  background-size: 200% 100%;
}
.sbSp .sbSp_specs_plink a:hover {
  background-position: 100% 0;
  text-decoration: none;
}
.sbSp .sbSp_specs_plink .cart {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}
.sbSp .sbSp_specs_plink .cart:before {
  content: "";
  display: block;
  width: 1.7em;
  height: 1.7em;
  background-image: url(../img/cart.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.sbSp .sbSp_specs_blink {
  display: flex;
  gap: 3em;
  justify-content: center;
}
.sbSp .sbSp_specs_blink a {
  text-decoration: none;
  transition: all ease 0.3s;
}
.sbSp .sbSp_specs_blink a figure figcaption {
  text-align: center;
  margin-top: 0.2em;
  display: block;
}
.sbSp .sbSp_specs_blink a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .sbSp .sbc .wrap {
    max-width: none;
  }
  .sbSp .sbc .sbSp_top {
    flex-direction: column;
  }
  .sbSp .sbSp_specs {
    flex-direction: column;
    padding-left: 0;
  }
  .sbSp .sbSp_specs .sbSp_specs_r > ul {
    margin-right: 0;
  }
  .sbSp .sbSp_specs_plink {
    padding-left: 0;
  }
  .sbSp .sbSp_specs_plink a {
    padding: 0.8em 0;
  }
  .sbSp .sbSp_specs_plink {
    gap: 1em;
  }
  .sbSp .sbSp_specs_blink {
    gap: 1em;
    flex-direction: column;
  }
  .sbSp .sbSp_specs_blink a figure figcaption {
    font-size: 90%;
  }
  .sbSp .sbSp_items {
    flex-direction: column;
  }
  .sbSp .sbSp_specs_blink .xxio_e {
    margin-top: -3em;
  }
}
.ladies_page .slide {
  background-color: #f7d7e2;
}
.ladies_page .sb .sbh.active:after {
  background-image: linear-gradient(to right, #4600ae, #818de2);
}
.ladies_page .sbReason .reason_list li > p {
  color: #d1025c;
}
.ladies_page .sbTawami .tawami_desc table th {
  background-color: #fee2ec;
}
.ladies_page .pro_fukidashi > p {
  background-color: #fee2ec;
}
.ladies_page .sbX1 .sbX1_desc2 > h4 {
  background-color: #5f67ae;
}
.ladies_page .sb .sbh p {
  color: #5f67ae;
}
.ladies_page .sbXs .sbh h2 span {
  color: #5f67ae;
}
.ladies_page .sbXs .sbXs_top > div:first-child > div h3 {
  color: #5f67ae;
  border-color: #5f67ae;
}
.ladies_page .sbXs .sbXs_top > div:nth-child(2) > div h3 {
  background-color: #5f67ae;
}
.ladies_page .sbXs .sbXs_top > div > div p {
  border-color: #5f67ae;
}
.ladies_page .sbXs .sbXs_top > div:first-child:after {
  background-image: url(../img/x_l.svg);
}
.ladies_page .sbXs .sbXs_top > div:last-child {
  background-color: #5f67ae;
}
.ladies_page .sbXs1.sbXs .sbXs_graph .graph_bottom > figure {
  margin-left: -16vw;
  margin-right: -15vw;
}
.ladies_page .sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
  top: 9vw;
  width: 28em;
}
.ladies_page .sbXs.sbXs1 .sbXs_graph .graph_bottom .pro_fukidashi figure {
  bottom: 0vw;
  width: 18.5vw;
  right: auto;
  left: -3vw;
}
.ladies_page .sbXs.sbXs1 .sbXs_graph .graph_bottom .pro_fukidashi > p {
  padding-left: 42%;
}
.ladies_page .sbXs_l_flex {
  display: flex;
  gap: 2em;
  padding: 1em 0;
  padding-left: 1em;
}
.ladies_page .sbXsb.sbXs .sbh h2 {
  font-size: 210%;
  text-align: center;
  padding-left: 0;
}
.ladies_page .sbXsb .sbXsb_top ul li {
  background-image: linear-gradient(to bottom, #dd4d83, #d1025d);
}
.ladies_page .sbXsb .pro_fukidashi p {
  text-align: center;
}
.ladies_page .sbXsb .sbXsb_top {
  margin-bottom: 5em;
}
.ladies_page .sbXsb {
  padding-bottom: 0em;
}
.ladies_page .sbSp .sbc .sbSp_top > div:first-child h3 {
  background-color: #d1025c;
}
.ladies_page .sbSp .sbc .sbSp_top {
  border-color: #e895b8;
}
.ladies_page .sbSp .sbc .sbSp_top > div:last-child ol li p {
  color: #d1025c;
}
.ladies_page .sbSp .sbc .sbSp_top > div:first-child {
  flex: 0 1 54%;
}
.ladies_page .sbSp .sbc .sbSp_top > div:last-child {
  flex: 1;
}
.ladies_page .sbSp .sbSp_specs .sbSp_specs_r > ul li p:first-child {
  background-color: #f7e4f0;
}
.ladies_page .sbSp .sbSp_specs_plink a {
  background: linear-gradient(90deg, #33349a 0%, #ac2da2 50%, #33349a 100%);
  background-size: 200% 100%;
}
.ladies_page .sbSp .sbSp_specs_plink a:hover {
  background-position: 100% 0;
  text-decoration: none;
}
.ladies_page .topics .topics_in li a {
  color: #5f67ae;
}
.ladies_page .slide .swiper-button-next:after {
  background-image: url(../img/ladies/pointer.png);
}
.ladies_page .slide .swiper-button-prev:after {
  background-image: url(../img/ladies/pointer.png);
}
.ladies_page .slide .swiper-pagination-bullet {
  border-color: #d1025c;
}
.ladies_page .slide .swiper-pagination-bullet-active {
  background-color: #d1025c;
}
@media screen and (max-width: 800px) {
  .ladies_page .sbXs.sbXs1 .sbXs_graph .graph_bottom .pro_fukidashi figure {
    width: 41.5vw;
  }
  .ladies_page .sbXs .sbXs_graph .graph_bottom .pro_fukidashi {
    margin-top: 3em;
    width: auto;
    top: 0;
  }
  .ladies_page .sbXs_l_flex {
    flex-direction: column;
  }
  .ladies_page .sbXsb.sbXs .sbh h2 {
    font-size: 180%;
  }
  .ladies_page .sbXsb .pro_fukidashi p {
    text-align: left;
  }
}

html body main.ladies_page {
  background-image: linear-gradient(to right, #fff0f6, #fff);
}

.mvl {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}
.mvl.active {
  opacity: 1;
}
.mvl > figure {
  transform: scale(1.15);
  transition: all ease 0.3s;
}
.mvl .mv_text {
  position: absolute;
  width: 58%;
  top: 37vw;
  left: 0;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translate3d(-10%, 0, 0);
}
.mvl .mv_p {
  transition: all ease 0.3s;
  position: absolute;
  bottom: 2vw;
  right: 2em;
  width: 24%;
  opacity: 0;
  transform: translate3d(0, 1em, 0);
  transition-delay: 0.3s;
}
.mvl.active .mv_p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 2;
  opacity: 0;
  animation-delay: 0.7s;
  animation: growfade 0.5s ease 0.2s forwards;
}
.mvl.active .mv_text {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mvl.active > figure {
  transform: scale(1);
}

@media screen and (max-width: 800px) {
  .mv .mv_text .mt1 {
    width: 12.3vw;
  }
  .mv .mv_text .mt2 {
    width: 12.3vw;
  }
  .mv .mv_text .mt3 {
    width: 66vw;
    bottom: 50%;
    left: 17%;
    top: auto;
    right: auto;
    transform: translate3d(0, 1em, 0);
  }
  .mv .mv_text .mt4 {
    width: 66vw;
    top: 50%;
    left: 17%;
    bottom: auto;
    right: auto;
    transform: translate3d(0, -1em, 0);
  }
  .mvl .mv_p {
    right: 1em;
  }
  .ladies_nav {
    background-image: linear-gradient(to right, #fbdddd, #ef91b4);
  }
 .mens_nav {
    background-image: linear-gradient(to right, #cbe7fd, #05a8fc);
  }
}/*# sourceMappingURL=style.css.map */