@charset "utf-8";

/* ============================================================================================== */
/* CSSリセット                                                                                    */
/* ============================================================================================== */
html {
  position: relative;
  font-size: 62.5%;
  background: #fff;
  touch-action: manipulation;
/**  scroll-behavior: smooth;**/
  height: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  font-size: 1.6rem;
  overflow-wrap: break-word;
  min-height: 100vh;
  background: #fff;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
ul,
li,
p,
dl,
dt,
dd,
figure,
picture,
section {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================================================== */
/* common                                                                                         */
/* ============================================================================================== */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

body>main {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  padding: 0;
}

main {
  color: #323232;
  margin: 0 auto;
}

.inner_cont {
  max-width: 1280px;
  margin: 0 auto;
}

.sub_inner_cont {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width:1290px) {
  .inner_cont {
    max-width: 90vw;
  }
}

@media (max-width: 1000px) {
  .sub_inner_cont {
    max-width: 85vw;
  }
}

@media (max-width: 768px) {
  .inner_cont {
    max-width: 89.33vw;
  }

  .sub_inner_cont {
    max-width: 89.33vw;
    margin: 0 auto;
  }
}

.fl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

.fade {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.3s ease 0s;
}

.fade_03 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .fade_03 {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s linear 0s;
  }
}
.fade_04 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0s;
}
@media (max-width: 768px) {
  .fade_04 {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s linear 0s;
  }
}

.fade_05 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.fade_06 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0s;
}

.fade_on {
  transform: translateY(0);
  opacity: 1;
}

.scroll_stop {
  overflow: hidden;
}

/*--text--*/
h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.009em;
}

h3 {
  font-size: 2.4rem;
  font-weight: 300;
}

p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.fs13 {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.fs15 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: -0.01em;
}

.fs15 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.fs28 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.008em;
}

.notes {
  display: block;
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.5;
}
.strong {
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.84;
    letter-spacing: -0.01em;
  }

  h3 {
    font-size: 1.6rem;
    line-height: 1.84;
  }
}

/*--link--*/
a {
  color: #323232;
  /*overflow: hidden;*/
  text-decoration: none;
  transition-duration: 1s;
  transition-property: color, background-color, background-image, opacity;
}

a .inactive-link {
  cursor: default;
}
@media (min-width: 769px) {
  a:hover {
    opacity: 0.5;
  }
}
button {
  font-family: inherit;
}

/*--link_border--*/
.link_border {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.016em;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fff;
  border: #323232 1px solid;
  border-radius: 4px;
  box-sizing: border-box;
}

.link_border.y_right {
  background: #fff url("../images/icon_arrow_right_black_24.svg") center right 16px no-repeat;
  background-size: 24px 24px;
}

.link_border.y_down {
  background: #fff url("../images/icon_arrow_down_black_24.svg") center right 16px no-repeat;
  background-size: 24px 24px;
}

.link_border.black {
  color: #fff;
}

.link_border.black.y_right {
  background: #323232 url("../images/icon_arrow_right_white_24.svg") center right 16px no-repeat;
  background-size: 24px 24px;
}

.link_border.zoom {
  background: #fff url("../images/icon_zoom_black.svg") center right 16px no-repeat;
  background-size: 20px auto;
}


@media (min-width: 769px) {
  .link_border:hover {
    color: #fff;
    background: #323232;
    opacity: 1;
  }
  .link_border.y_right:hover {
    background: #323232 url("../images/icon_arrow_right_white_24.svg") center right 16px no-repeat;
    background-size: 24px 24px;
  }
  .link_border.y_down:hover {
    background: #323232 url("../images/icon_arrow_down_white_24.svg") center right 16px no-repeat;
    background-size: 24px 24px;
  }
  .link_border.black:hover {
    color: #323232;
    opacity: 1;
  }
  .link_border.black.y_right:hover {
    background: #fff url("../images/icon_arrow_right_black_24.svg") center right 16px no-repeat;
    background-size: 24px 24px;
  }
}

@media (max-width: 768px) {
  .link_border {
    padding-top: 4.54vw;
    padding-bottom: 4.54vw;
  }

  .link_border.y_right {
    background-size: 20px 20px;
  }

  .link_border.y_down {
    background-size: 20px 20px;
  }

  .link_border.black.y_right {
    background-size: 20px 20px;
  }
}

/*--check_link--*/
.check_link {
  position: relative;
  display: block;
  width: 284px;
  min-height: 26px;
}

.check_link::after {
  position: absolute;
  top: 7px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icon_arrow_down_white.svg") center center no-repeat;
  background-size: 24px auto;
}

.check_link a {
  position: relative;
  display: block;
  width: 265px;
  min-height: 26px;
  font-size: 1.5rem;
  padding-bottom: 3px;
  border-bottom: #323232 1px solid;
  overflow: hidden;
}

.check_link a::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  transition: all .3s;
  transform: scaleX(0);
}

.check_link:hover a::after {
  width: 100%;
  transform: scaleX(1);
}

.check_link a span {
  position: relative;
  display: block;
  padding: 5px 0 5px 4px;
  transition: all .3s;
}

.check_link a span::after {
  content: attr(data-hover);
  position: absolute;
  top: 100%;
  display: block;
  width: 100%;
  padding: 5px 0 5px 4px;
  transform: translate3d(0, 0, 0);
}
.check_link:hover a span {
  font-weight: 400;
  font-family: "Hiragino Kaku Gothic W4 JIS2004", sans-serif;
  transform: translateY(-100%);
}

/*--banner--*/
.banner {
  position: relative;
  z-index: 2;
  width: 680px;
  margin: -100px auto 60px;
  padding-top: 100px;
  font-size: 0;
}
.banner + .banner {
  z-index: 1;
  margin-top: -120px;
}
.banner a {
  display: inline-block;
}

.banner a img {
  box-shadow: 4px 4px 17px -1px rgba(0, 0, 0, 0.1);
}

.banner.me {
  margin-bottom: 80px;
}

.banner.me a {
  display: block;
}

.banner.me .banner_cont {
  padding: 20px 0 24px;
  background: #F6F6F6;
  box-shadow: 4px 4px 17px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.banner.me .banner_cont p {
  color: #636363;
}

.banner.me .banner_cont .btn {
  width: 320px;
  min-height: 60px;
  margin: 10px auto 0;
}

@media (max-width: 768px) {
  .banner {
    width: 91.46vw;
    text-align: center;
    margin-top: -26.4vw;
    margin-bottom: 12vw;
    padding-top: 26.4vw;
  }
  .banner + .banner {
    margin-top: -30.4vw;
  }
  
  .banner.me {
    margin-bottom: 16vw;
  }
  
  .banner.me .banner_cont {
    padding: 5.333vw 0;
  }
  
  .banner.me .banner_cont p {
    font-size: 1.3rem;
  }
  
  .banner.me .banner_cont .btn {
    width: 80vw;
    margin-top: 2.666vw;
  }
}

/*--page top--*/
#page_top {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1220px;
  margin: auto;
  z-index: 50;
}

#page_top span {
  position: absolute;
  bottom: 30px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: rgba(255, 255, 252, 0.9);
  transition: all 1s;
}

#page_top span:hover {
  background-color: rgba(233, 233, 229, 0.90);
}

/* ============================================================================================== */
/* header                                                                                         */
/* ============================================================================================== */
#header {
  position: fixed;
  width: 100%;
  display: none;
  background: #fff;
  z-index: 100;
}

#header #header_logo {
  width: 52px;
  height: auto;
  margin: 18px auto 0;
}

#header #header_logo a:hover {
  opacity: 1;
}

#header .open,
#header #header_nav .close {
  display: none;
}

#header #header_nav #header_close {
  display: none;
}

#header #nav_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

#header li {
  margin: 0;
}

#header #nav_list ul li a {
  font-size: 13px;
  display: block;
  color: #323232;
  line-height: 120%;
  letter-spacing: 0.6px;
}
@media (min-width: 1280px) {
  #header .header_inner {
    max-width: 1280px;
  }
}
@media (min-width: 769px) {
  #header .header_inner {
    width: 90vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin: 0 auto;
  }

  #header #header_logo {
    margin: 14px 0 0;
  }

  #header li {
    overflow: hidden;
    margin-right: 32px;
  }

  #header li:last-child {
    margin-right: 0;
  }

  #header #nav_list ul li a {
    position: relative;
  }

  #header #nav_list ul li a::after {
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    transition: all .3s;
    transform: scaleX(0);
  }

  #header #nav_list ul li:hover a::after {
    width: 100%;
    transform: scaleX(1);
  }

  #header #nav_list ul li a span {
    position: relative;
    display: block;
    padding: 10px 0;
    transition: all .3s;
  }

  #header #nav_list ul li a span::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    padding: 10px 0;
    transform: translate3d(0, 0, 0);
  }

  #header #nav_list ul li:hover a span {
    font-weight: 400;
    font-family: "Hiragino Kaku Gothic W4 JIS2004", sans-serif;
    transform: translateY(-100%);
  }
}

@media (max-width: 1100px) {
  #header #nav_list ul{
    flex-wrap: wrap;
  }
  #header li {
    margin-right: 1.5vw;
  }
}

@media (max-width: 768px) {
  #header {
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  #header #header_logo {
    width: 12.5vw;
    height: 8.53vw;
    margin: 3.73vw auto 3.73vw;
  }

  #header #header_nav {
    position: relative;
  }

  /*--open--*/
  #header .open,
  #header #header_nav .close {
    display: block;
  }

  #header .open {
    position: absolute;
    top: 4.8vw;
    right: 4.8vw;
    display: block;
    width: 27px;
    height: 24px;
  }

  #header .open span,
  #header .open span::before,
  #header .open span::after {
    display: block;
    width: 27px;
    height: 4px;
    margin-top: 8px;
    background: #1D528D;
    border-radius: 2px;
  }

  #header .open span {
    position: relative;
  }

  #header .open span::before {
    position: absolute;
    top: -16px;
    content: "";
  }

  #header .open span::after {
    position: absolute;
    bottom: -8px;
    content: "";
  }

  /*--close--*/
  #header .close {
    display: none;
    position: absolute;
    top: 4.3vw;
    right: 4.8vw;
    width: 27px;
    height: 24px;
  }

  #header .close span::before,
  #header .close span::after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 50%;
    width: 27px;
    height: 4px;
    background: #1D528D;
    border-radius: 2px;
  }

  #header .close span {
    position: relative;
    display: block;
    width: 27px;
    height: 24px;
  }

  #header .close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #header .close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /*--header_nav--*/
  #header #header_nav {
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
  }

  #header #header_nav .nav {
    display: none;
    padding: 15.5vw 17vw;
  }

  #header #nav_list ul {
    display: block;
  }

  #header #nav_list ul li {
    margin-bottom: 8.53vw;
  }

  #header #nav_list ul li:last-child {
    margin-bottom: 0;
  }

  #header #nav_list ul li a {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.6px;
  }

  #header #nav_list ul li a::after {
    position: absolute;
    bottom: -1vw;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    opacity: 0;
    transition: all .3s;
  }

  #header #nav_list ul li:hover a::after {
    opacity: 1;
  }

  #header #nav_list ul a.nav_switch.current::after {
    opacity: 1;
  }
}


/* ============================================================================================== */
/* main_vs                                                                                        */
/* ============================================================================================== */
.main_vs {
  position: relative;
  width: 100%;
  /*max-width: 1440px;*/
  margin: 0 auto;
}

.main_vs .main_vs_img {
  position: relative;
  opacity: 0;
  animation: fadeIn01 3s ease 0.1s forwards;
}

.main_vs .main_vs_img img {
  width: 100%;
}

.main_vs .inner_cont {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 23px 0 0;
  z-index: 1;
}

.main_vs .inner_cont p.ipsa_logo {
  width: 58px;
  margin: 0 auto 0 0;
  animation: fadeIn01 5s ease 1s forwards;
  opacity: 0;
}
.main_vs .main_vs_copy {
  display: inline-block;
  opacity: 0;
  position: absolute;
  top: 37%;
  right: 14.5%;
  width: 18.33vw;
  max-width: 264px;
  animation: fadeIn01 3s ease 0.1s forwards;
}
.main_vs .main_vs_copy img {
  width: 100%;
}
/*--Animation--*/
@keyframes fadeIn01 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (min-width: 1440px) {
  .main_vs .main_vs_img{
    max-height: 700px;
  }
  .main_vs .main_vs_img img{
    display: block;
    min-width: 1440px;
    height: 700px;
    object-fit: cover;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main_vs .inner_cont {
    max-width: initial;
    padding: 5.33vw 0 0 6.4vw;
  }

  .main_vs .inner_cont p.ipsa_logo {
    width: 12.61vw;
  }
}

/* ============================================================================================== */
/* about                                                                                          */
/* ============================================================================================== */
.about {
  padding-top: 110px;
}

.about .chart_cont {
  width: 70.902vw;
  max-width: 1021px;
  margin: 0 auto;
  background: #F6F6F6;
}

.about .chart_inner {
  margin: 0 auto 120px;
  padding: 18px 0 24px;
  text-align: center;
}

.about .chart_inner p {
  margin-bottom: 11px;
  color: #24272B;

}

.about .chart_inner .pro_item {
  width: 312px;
  margin: 0 auto;
}

.about .sub_inner_cont {
  width: 680px;
  margin-bottom: 102px;
  text-align: center;
}

.about .sub_inner_cont h2 {
  margin-bottom: 50px;
  font-size: 34px;
  letter-spacing: 2px;
}

.about .sub_inner_cont h2 em.rb {
  position: relative;
  font-style: normal;
}

.about .sub_inner_cont h2 em.rb::before {
  position: absolute;
  top: -1.1em;
  left: -1.8em;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transform: scale(0.23);
  transform-origin: 50% 50%;
  content: "エム・イー"
}

.about .sub_inner_cont h2 .hide {
  display: none;
}

.about .sub_inner_cont p {
  display: inline-block;
  margin-bottom: 28px;
}

.about .sub_inner_cont p:first-child {
  width: 324px;
}

.about .sub_inner_cont p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 2.74;
  text-align: left;
}

.about .sub_inner_cont .image_area {
  margin-bottom: 42px;
  padding: 50px 0 33px;
  background: #F6F6F6;
}

.about .sub_inner_cont .image_area p {
  text-align: center;
}

.about figure {
  width: 1280px;
  margin: 0 auto;
}

.about figure figcaption {
  text-align: center;
  margin-top: 32px;
}
.about figure figcaption p {
  margin-bottom: 14px;
  font-size: 20px;
}

@media (max-width:1290px) {
  .about figure {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .about .sub_inner_cont p {
    letter-spacing: 1px;
  }

  .about .sub_inner_cont .text_area {
    position: relative;
    left: 14px;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 14vw;
    padding-bottom: 7vw;
  }

  .about .chart_cont {
  width: 100%;
}

  .about .chart_inner {
    max-width: 90.933vw;
    margin: 0 auto 16vw;
  }

  .about .chart_inner p {
    margin-bottom: 2.666vw;
    font-size: 1.3rem;
  }

  .about .chart_inner .pro_item {
    width: 341px;
  }

  .about .sub_inner_cont {
    width: 100%;
    margin-bottom: 12.53vw;
  }

  .about .sub_inner_cont h2 {
    margin-bottom: 7.466vw;
    font-size: 2.6rem;
    letter-spacing: 0;
  }

  .about .sub_inner_cont h2 em.rb::before {
    top: -1.2em;
    transform: scale(0.3);
  }

  .about .sub_inner_cont .image_area {
    margin-bottom: 8.266vw;
    padding: 10.666vw 0 8vw;
  }

  .about .sub_inner_cont p {
    margin-bottom: 7.2vw;
  }

  .about .sub_inner_cont p:first-child {
    width: 58.4vw;
  }

  .about .sub_inner_cont p:last-child {
    width: 73.26vw;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 2.16;
    letter-spacing: 1px;
  }

  .about .sub_inner_cont .image_area img {
    margin: 0 auto;
  }

  .about .sub_inner_cont .image_area p:last-child {
    width: 100%;
    line-height: 2.0;
  }

  .about figure {
    width: 100%;
  }

  .about figure img {
    width: 100%;
    margin: 0 auto;
  }

  .about figure figcaption {
    text-align: left;
    margin-top: 6.4vw;
  }
  .about figure figcaption.fs15 {
    font-size: 1.5rem;
  }
  .about figure figcaption p {
    margin-bottom: 2.66vw;
    font-size: 1.8rem;
  }

}

@media (min-width: 500px) and (max-width: 768px) {
  .about figure figcaption {
    text-align: center;
  }
}

/* ============================================================================================== */
/* elements                                                                                       */
/* ============================================================================================== */
.elements {
  position: relative;
  padding-bottom: 120px;
}

.elements picture {
  display: block;
  /*width: 1440px;*/
  margin: 0 auto;
}

.elements picture img {
  display: block;
  width: 100vw;
  margin: 0 auto;
}

.elements .inner_cont {
  position: relative;
  padding: 80px 0 120px;
  margin-top: -80px;
  background: #fff;
}

.elements .inner_cont h1 {
  position: relative;
  margin: 0 auto 40px;
  padding-bottom: 17px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Hiragino Kaku Gothic W4 JIS2004", sans-serif;
  text-align: center;
}

.elements .inner_cont h1::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  content: "";
}

.elements .inner_cont h2 {
  text-align: center;
  margin-bottom: 16px;
}

.elements .inner_cont>p {
  text-align: center;
  margin-bottom: 60px;
}

.elements .inner_cont .pro_item_list {
  width: 1000px;
  align-items: flex-start;
  margin: auto;
}

.elements .inner_cont .check_link {
  margin: 0 auto;
}

.elements .inner_cont .pro_item {
  width: 312px;
  text-align: center;
  margin-bottom: 32px;
}

.elements .inner_cont .pro_item p {
  color: #636363;
}

.elements .inner_cont .pro_item .nw {
  display: inline-block;
}

.elements .inner_cont .pro_item .pc-none {
  display: none;
}

.elements .inner_cont .pro_item .notes {
  color: #636363;
  margin-top: 10px;
  opacity: 0.5;
}

.elements .inner_cont .pro_link {
  margin-bottom: 16px;
}

@media (max-width: 1000px) {
  .elements .inner_cont .pro_item_list {
    width: 100%;
  }

  .elements .inner_cont .pro_item {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .elements {
    padding-bottom: 24vw;
  }

  .elements picture {
    width: 100%;
  }

  .elements .inner_cont {
    width: 91.46vw;
    padding: 10.6vw 5.333vw 24vw;
    margin-top: -10vw;
  }

  .elements .inner_cont h1 {
    margin: 0 auto 4.26vw;
    padding-bottom: 4.26vw;
    font-size: 1.4rem;
    letter-spacing: 0.67px;
  }

  .elements .inner_cont h1::after {
    width: 7.46vw;
  }

  .elements .inner_cont h1 img {
    display: block;
    margin: 0 auto;
  }

  .elements .inner_cont h2 {
    margin-bottom: 16px;
  }

  .elements .inner_cont>p {
    line-height: 2.1;
    margin-bottom: 8.53vw;
  }

  .elements .inner_cont .pro_item_list {
    width: 100%;
  }

  .elements .inner_cont .check_link {
    margin:  0 auto;
  }

  .elements .inner_cont .pro_item {
    width: 100%;
    text-align: center;
    margin-bottom: 8.53vw;
  }

  .elements .inner_cont .pro_item p {
    font-size: 1.3rem;
  }

  .elements .inner_cont .pro_item .pc-none {
    display: block;
  }

  .elements .inner_cont .pro_item .notes {
    margin-top: 1.6vw;
  }

  .elements .inner_cont .pro_link {
    margin-bottom: 2.66vw;
  }
  .elements .inner_cont .pro_link .link_border {
    padding-top: 4.54vw;
    padding-bottom: 4.54vw;
  }
}

/*--.chart iner--*/
.elements .chart_cont .chart_inner {
  padding-bottom: 120px;
}

.elements .chart_cont h2 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px;
  text-align: center;
}

.elements .sub_inner_cont > p {
  margin-bottom: 70px;
  text-align: center;
}

.elements .chart_cont h2::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  content: "";
}

.elements .chart_cont .sub_inner_cont {
  padding: 60px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 4px 4px 17px -1px rgba(0, 0, 0, 0.1);
}
.elements .chart_cont picture {
  max-width: 880px;
}

.elements .chart_cont {
  background: url("../images/your_sensitive/your_sensitive_bg.jpg") top 170px left no-repeat;
  background-size: 100% auto;
}

.elements .chart_cont .chart_area {
  position: relative;
}

.elements .chart_cont .chart_area img {
  width: auto;
}

.elements .chart_cont .item_wrap {
  position: absolute;
  top: 8%;
  right: -1.45%;
  width: 100%;
  height: 81.52%;
  padding-left: 36.5%;
}

.elements .chart_cont .item_wrap .row {
  display: flex;
  margin-bottom: 1.255%;
}

.elements .chart_cont .item_wrap .row:last-of-type {
  margin-bottom: 0;
}

.elements .chart_cont .item_wrap .item {
  position: relative;
  width: 24.875%;
  margin-right: -0.65%;
}

.elements .chart_cont .item_wrap .item a {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 94%;
  overflow: hidden;
}
@media (min-width: 769px) {
  .elements .chart_cont .item_wrap .item a:hover {
    opacity: 1;
  }
}

.elements .chart_cont .item_wrap .item .item_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5%;
  width: 100%;
  height: 100%;
  background: rgba(36, 39, 43, 0.72);
  color: #fff;
  text-align: center;
}

.elements .chart_cont .item_wrap .item .item_txt::after {
  display: block;
  width: 16%;
  height:16%;
  background: url("../images/icon_arrow_down_white_20.svg") no-repeat center / contain;
  content: "";
}

.elements .chart_cont .item_wrap .item .item_txt p {
  font-size: 81%;
}

@media (max-width: 768px) {
  .elements .chart_cont .chart_inner {
    padding-bottom: 11.2vw;
  }

  .elements .chart_cont h2 {
    margin-bottom: 9.06vw;
    padding-bottom: 4.26vw;
  }

  .elements .chart_cont h2::after {
    width: 10.13vw;
    margin: 4.26vw auto 0;
  }

  .elements .sub_inner_cont > p {
    display: none;
  }

  .elements .chart_cont .sub_inner_cont {
    padding: 10.66vw 6.8vw;
    border-radius: 20px;
  }
  .elements .chart_cont picture {
    max-width: 569px;
    margin-bottom: 9.06vw;
  }

  .elements .chart_cont {
    background: url("../images/your_sensitive/your_sensitive_bg_sp.jpg") top 53.86vw center no-repeat;
    background-size: 100%;
  }

  .elements .chart_cont .item_wrap {
  top: 8vw;
  right: 0;
  height: 69vw;
  padding-left: 28vw;
  }
  .elements .chart_cont .item_wrap picture {
    margin-bottom: 0;
  }
	.elements .chart_cont .item_wrap .row {
		margin: 0;
	}
	.elements .chart_cont .item_wrap .row.row1 {
		padding: 1.4vw 0;
	}
	.elements .chart_cont .item_wrap .row.row2 {
		padding: 3.2vw 0;
	}
	.elements .chart_cont .item_wrap .item {
		width: 11.8vw;
		margin-right: 0;
		padding: 2vw 1.4vw;
	}
}

/* ============================================================================================== */
/*  product common .pro_section                                                                   */
/* ============================================================================================== */
.pro_section {
  overflow: hidden;
}

.pro_section>.sub_inner_cont {
  position: relative;
  margin-bottom: 120px;
}

.pro_section .sub_inner_cont>picture {
  width: 484px;
  margin: 0 0 0 auto;
}

@media (max-width: 768px) {
  .pro_section>.sub_inner_cont {
    position: relative;
    flex-direction: column-reverse;
    max-width: 100%;
    margin-bottom: 24vw;
  }

  .pro_section .sub_inner_cont>picture {
    width: 89.33vw;
    margin-bottom: 8.53vw;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section .sub_inner_cont>picture {
    width: 50.33vw;
  }
}

/*--.sub_inner_cont .pro_cont iner--*/
/*
.pro_section .pro_cont {
  z-index: 10;
}
*/
.pro_section .pro_cont h1 {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 300;
}

.pro_section .pro_cont h1 span {
  color: #969696;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 3;
  margin-left: 12px;
  letter-spacing: 0;
}

.pro_section .pro_cont h2 {
  margin-bottom: 46px;
  font-size: 34px;
  font-weight: 250;
  font-family: "Hiragino Kaku Gothic W2 JIS2004", sans-serif;
  line-height: 1.64;
  letter-spacing: 0.76px;
}

.pro_section .pro_cont .feature {
  margin-bottom: 10px;
}

.pro_section .pro_cont .feature span {
  display: block;
  color: #878787;
;
  font-size: 1.1rem;
  line-height: 2.1;
}

.pro_section .pro_cont .ingredient {
  color: #636363;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 2.1;
}

.pro_section .pro_cont .ingredient li {
  display: block;
}

@media (max-width: 768px) {
  .pro_section .pro_cont {
    position: static;
    width: 100%;
    padding: 0 10.66vw;
  }

  .pro_section .pro_cont h1 {
    margin-bottom: 6.4vw;
    font-size: 5rem;
  }

  .pro_section .pro_cont h1 span {
    color: #969696;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    margin-left: 12px;
  }

  .pro_section .pro_cont h2 {
    margin-bottom: 4.4vw;
    font-size: 2.3rem;
    line-height: 1.826;
    letter-spacing: 0.76px;
  }

  .pro_section .pro_cont .feature {
    text-align: center;
    margin-bottom: 2.4vw;
  }

  .pro_section .pro_cont .feature span {
    display: block;
    font-size: 1.0rem;
    line-height: 1.5;
  }

  .pro_section .pro_cont .ingredient {
    color: #636363;
    font-size: 1.0rem;
    font-weight: 600;
    font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
    line-height: 1.8;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section .pro_cont {
    position: absolute;
    top: 55px;
    width: 55%;
    padding: 0 3.66vw;
  }
}

@media (min-width: 769px) {
  .pro_section .pro_cont h1 {
    font-family: "Hiragino Kaku Gothic W2 JIS2004", sans-serif;
  }

  .pro_section .pro_cont h2 {
    font-family: "Hiragino Kaku Gothic W1 JIS2004", sans-serif;
  }
}

/*--.your_cont iner--*/
.pro_section .your_cont h1 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Hiragino Kaku Gothic W4 JIS2004", sans-serif;
  text-align: center;
}

.pro_section .your_cont h1::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  content: "";
}

.pro_section .your_cont h2 {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .pro_section .your_cont h1 {
    margin-bottom: 4.26vw;
    padding-bottom: 3.2vw;
    font-size: 1.2rem;
	  letter-spacing: 1.2px;
  }

  .pro_section .your_cont h2 {
    margin-bottom: 8.53vw;
  }
}

/*--.your_cont .slider_swiper iner--*/
.pro_swiper_wrapper {
  margin: auto;
  overflow: hidden;
}

.pro_swiper_wrapper .swiper {
  position: relative;
  /* margin: 0 0 0 auto; */
  margin: 0 auto 0;
}

.pro_swiper_wrapper .swiper .swiper-wrapper {
  align-items: center !important;
}

@media (min-width:1400px){
  .pro_swiper_wrapper {
    /* width: 1440px; 0828*/
    width: 1745px;
    min-height: 527px;
  }

  .pro_swiper_wrapper .swiper {
    /* width: 1345px; 0828*/
    width: 1645px;
    padding-bottom: 5px;
    overflow:inherit;
  }
}

@media (min-width:769px) and (max-width:1399px) {
  .pro_swiper_wrapper {
    width: 100vw;
  }

  .pro_swiper_wrapper .swiper {
    width: 100vw;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper .swiper-wrapper {
    align-items: center !important;
  }

  .pro_swiper_wrapper .swiper {
    width: 90vw;
    margin: 0 auto;
    overflow: visible;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_swiper_wrapper .swiper .swiper-wrapper {
    align-items: stretch !important;
  }
}

/*--swiper_navigat--*/
.pro_swiper_wrapper .swiper_navigat {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
  width: 125px;
  z-index: 20;
}

.pro_swiper_wrapper .swiper_navigat .swiper_prev,
.pro_swiper_wrapper .swiper_navigat .swiper_next {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.pro_swiper_wrapper .swiper_navigat .swiper_prev {
  background: url("../images/icon_arrow_left_glay.svg") center center no-repeat;
  margin-right: 20px;
}

.pro_swiper_wrapper .swiper_navigat .swiper_prev:hover {
  background: url("../images/icon_arrow_left_white.svg") center center no-repeat;
}

.pro_swiper_wrapper .swiper_navigat .swiper_next {
  background: url("../images/icon_arrow_right_black.svg") center center no-repeat;
}

.pro_swiper_wrapper .swiper_navigat .swiper_next:hover {
  background: url("../images/icon_arrow_right_white.svg") center center no-repeat;
}

.pro_swiper_wrapper .swiper_navigat .swiper_prev img,
.pro_swiper_wrapper .swiper_navigat .swiper_next img {
  transition: all 1s;
}

.pro_swiper_wrapper .swiper_navigat .swiper_prev:hover img,
.swiper_navigat .swiper_next:hover img {
  opacity: 0;
}

@media (min-width:1400px) {
  .pro_swiper_wrapper .swiper_navigat {
    right: 320px;
  }
}

@media (min-width:769px) and (max-width:1399px) {
  .pro_swiper_wrapper .swiper_navigat {
    right: 10vw;
  }
}

@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper_navigat {
    display: none;
  }
}

/*--swiper_pagination--*/
.pro_swiper_wrapper .swiper_pagination {
  position: absolute;
  bottom: 0;
  display: inline-block;
  text-align: right;
}

.pro_swiper_wrapper .swiper_pagination span.swiper-pagination-bullet-active {
  background: #323232;
}

.pro_swiper_wrapper .swiper_pagination span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #D0D0D0;
  border-radius: 5px;
  cursor: pointer;
}

@media (min-width:1400px) {
  .pro_swiper_wrapper .swiper_pagination {
    right: 310px;
  }
}

@media (min-width:769px) and (max-width:1399px) {
  .pro_swiper_wrapper .swiper_pagination {
    right: 10vw;
  }
}

@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper_pagination {
    position: static;
    display: block;
    text-align: center;
  }
}

/*--swiper-slide--*/
.pro_swiper_wrapper .swiper-slide.swiper-slide-prev {
  opacity: 0;
  margin-right: 0;
}
@media (min-width:769px){
  .pro_swiper_wrapper .swiper-slide {
    display: flex;
    align-items: center;
    min-height: 608px;
  }
}
@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper-slide.swiper-slide-prev {
    opacity: 1;
  }

  .pro_swiper_wrapper .swiper-slide {
    margin-bottom: 2vw;
  }
}

/*--swiper-slide default--*/
.pro_swiper_wrapper figure.swiper_pro {
  display: none;
  opacity: 0;
}

.pro_swiper_wrapper .swiper-slide .pro_item {
  width: 356px;
  min-height: 370px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 17px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 1350px) {
  .pro_swiper_wrapper .swiper-slide .pro_item {
    width: 26.3vw;
    height: 100%;
  }
}

@media (min-width:769px) and (max-width:1000px) {
  .pro_swiper_wrapper .swiper-slide .pro_item {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper-slide .pro_item {
    width: 89.333vw;
    height: 100%;
    margin: 0 auto;
  }
}

/*--swiper-slide-active--*/
.pro_swiper_wrapper .swiper-slide.swiper-slide-active .pro_item {
  position: relative;
  /* height: 490px; */
  cursor: auto;
}
@media (min-width:769px){
  .pro_swiper_wrapper .swiper-slide.swiper-slide-active .pro_item {
    animation: boxslide 0.3s ease 0s forwards;
  }
}
/*---Animation---*/
@keyframes boxslide {
  0% {
    height: 356px;
  }

  100% {
    /*height: 490px;*/
    height: 578px;
  }
}

@media (min-width:1400px) {
  .pro_swiper_wrapper .swiper-slide.swiper-slide-active {
    margin-left: 130px;
  }
}

@media (min-width:769px) and (max-width:1399px) {
  .pro_swiper_wrapper .swiper-slide.swiper-slide-active {
    margin-left: 130px;
  }
}

.pro_swiper_wrapper .swiper-slide-active figure.swiper_pro {
  position: absolute;
  left: -120px;
  bottom: -40px;
  display: block;
  width: 144px;
  animation: fadeIn02 1s ease 0.3s forwards;
}

.pro_swiper_wrapper .swiper-slide-active figure.swiper_pro img {
  animation: fadeInBottle 2s ease 0.1s forwards;
}

@media (min-width:1000px) and (max-width:1399px) {
  .pro_swiper_wrapper .swiper-slide.swiper-slide-active .pro_item {
    height: auto;
  }

  .pro_swiper_wrapper .swiper-slide-active figure.swiper_pro {
    width: 14.4vw;
  }

}

@media (max-width: 768px) {
  .pro_swiper_wrapper .swiper-slide-active {
    margin-left: 0;
  }

  .pro_swiper_wrapper .swiper-slide.swiper-slide-active .pro_item {
    height: 100%;
  }

  .pro_swiper_wrapper .swiper-slide-active figure.swiper_pro {
    position: absolute;
    left: -1.06vw;
    bottom: -9.8vw;
    display: block;
    width: 20.26vw;
    animation: fadeIn02 1s ease 0.3s forwards;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_swiper_wrapper .swiper-slide-active figure.swiper_pro {
    bottom: -7vw;
  }
}

/*--type_cont inner--*/
.type_cont {
  padding: 32px 50px;
}

.type_cont>figure {
  width: 256px;
  margin: 0 auto 16px;
}

.type_cont h3 {
  line-height: 1.25;
  margin-bottom: 10px;
}

.type_cont p {
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  padding-bottom: 16px;
}

.pro_swiper_wrapper .swiper-slide-active .type_cont p {
  border-bottom: #EEE 1px solid;
}

.pro_swiper_wrapper .swiper-slide .type_cont .price span {
  display: inline-block;
}

@media (min-width: 769px) {
  .pro_swiper_wrapper .swiper-slide .type_cont .btn,
  .pro_swiper_wrapper .type_cont .price {
    display: none;
    opacity: 0;
  }

  .pro_swiper_wrapper .swiper-slide-active .type_cont .price,
  .pro_swiper_wrapper .swiper-slide-active .type_cont .btn {
    /* animation: fadeIn02 1s ease 0.3s forwards; */
    animation: fadeIn02 1s ease 0.3s forwards;
  }
}

.pro_swiper_wrapper .swiper-slide-active .type_cont .price {
  display: block;
  color: #636363;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.pro_swiper_wrapper .swiper-slide-active .type_cont .btn.pc {
  display: block;
  margin-top: 13px;
}

@media (min-width:769px) and (max-width:1399px) {
  .type_cont {
    padding: 32px 30px;
  }
}

@media (min-width:769px) and (max-width:1050px) {
  .type_cont>figure {
    width: 100%;
    margin: 0 auto 16px;
  }

  .type_cont>figure img.pc {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .type_cont {
    min-height: 120.8vw;
    padding: 8.53vw 6.4vw;
  }

  .type_cont>figure {
    width: 37.33vw;
    margin: 0 auto 4.26vw;
  }

  .type_cont>figure img.sp {
    display: block;
    margin: 0 auto;
  }

  .type_cont h3 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 2.66vw;
  }
  .pro_swiper_wrapper .swiper-slide .type_cont p {
    min-height: 16vw;
    border-bottom: #EEE 1px solid;
  }

  .pro_swiper_wrapper .swiper-slide .type_cont .price {
    display: block;
    line-height: 1.5;
    padding-left: 16.4vw;
    padding-bottom: 0;
    margin-top: 4.26vw;
    border-bottom: none;
  }
	
  .pro_swiper_wrapper .swiper-slide-active .type_cont .btn.pc{
    display: none;
  }
	
  .pro_swiper_wrapper .swiper-slide .type_cont .btn.sp {
    display: block;
    margin-top: 4.26vw;
    margin-left: 16.4vw;
  }
}

@media (min-width: 500px) and (max-width: 768px) {

  .type_cont h3,
  .type_cont p {
    padding-left: 16.4vw;
  }

}

/*--Animation--*/
@keyframes fadeIn02 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInBottle {

  0%,
  100% {
    transform: rotate(0);
    transform-origin: left bottom
  }

  22% {
    transform: rotate(2.5deg);
    transform-origin: right bottom
  }

  44% {
    transform: rotate(-2.5deg);
    transform-origin: left bottom
  }

  66% {
    transform: rotate(1.25deg);
    transform-origin: right bottom
  }

  77% {
    transform: rotate(-.625deg);
    transform-origin: left bottom
  }

  88% {
    transform: rotate(.3125deg);
    transform-origin: right bottom
  }
}

/*--.your_cont .howto_cont iner--*/
.pro_section .howto_cont {
  margin-top: 80px;
  padding-bottom: 120px;
}

.pro_section .howto_cont .sub_inner_cont {
  padding: 32px 60px 60px;
  background: #fff;
  border-radius: 32px;
}

.pro_section .howto_cont ul.tab {
  display: flex;
  justify-content: center;
  width: 880px;
  margin: 0 auto 60px;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
}

.pro_section .howto_cont ul.tab li {
  position: relative;
  width: 49%;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  border-bottom: #EEE 1px solid;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  cursor: pointer;
  overflow: hidden;
}

.pro_section .howto_cont ul.tab li span {
  position: relative;
  display: block;
  padding: 18px 0;
  transition: all .3s;
}

.pro_section .howto_cont ul.tab li span::after {
  content: attr(data-hover);
  position: absolute;
  top: 100%;
  display: block;
  width: 100%;
  padding: 18px 0;
  transform: translate3d(0, 0, 0);
}
@media (min-width: 769px) {
.pro_section .howto_cont ul.tab li:hover span {
  transform: translateY(-100%);
}
}

.pro_section .howto_cont ul.tab li.act {
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  pointer-events: none;
}

.pro_section .howto_cont ul.tab li.act::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 1px;
}

@media (max-width: 1000px) {
  .pro_section .howto_cont ul.tab {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pro_section .howto_cont {
    margin-top: 24vw;
    padding-bottom: 14.4vw
  }

  .pro_section .howto_cont .sub_inner_cont {
    padding: 8.53vw 5.33vw;
    border-radius: 20px;
  }

  .pro_section .howto_cont ul.tab {
    width: 100%;
    margin: 0 auto 10.66vw;
  }

  .pro_section .howto_cont ul.tab li span {
    position: relative;
    display: block;
    padding: 4.8vw 0;
    transition: all .3s;
  }

  .pro_section .howto_cont ul.tab li span::after {
    padding: 4.8vw 0;
  }
}

/*--pro_section howto_con tab_cont--*/
.pro_section .tab_cont {
  display: none;
}

.pro_section .tab_cont p {
  font-size: 1.1rem;
  line-height: 2.1;
}

.pro_section .tab_cont.act {
  display: block;
}

.pro_section .tab_cont .notes_cont {
  padding: 24px;
  margin: 24px auto;
  background: #F6F6F6;
}

.pro_section .tab_cont .notes_cont p {
  font-size: 1.1rem;
  line-height: 2.1;
}

.pro_section .tab_cont.choose picture {
  display: block;
  margin: 0 auto 60px;
}

.pro_section .tab_cont.choose picture + p {
  color: #636363;
}

.pro_section .tab_cont.choose .fl {
  color: #636363;
}

.pro_section .tab_cont.howto p.lead {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 16px;
}

.pro_section .tab_cont.howto .fl {
  align-items: flex-start;
  width: 726px;
  margin: 0 auto 24px;
}

.pro_section .tab_cont.howto .fl>dl {
  width: 210px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.pro_section .tab_cont.howto.fl>dl dt {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.pro_section .tab_cont.howto.fl>dl dt figure {
  width: 210px;
}

.pro_section .tab_cont.howto .sup_ex {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 16px 0;
  margin: 0 auto 0;
  border: #eee 1px solid;
}

.pro_section .tab_cont.howto .sup_ex .sup_ex_02 {
  margin-left: 32px;
}

.pro_section .tab_cont.howto .sup_ex p {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 28px;
}

.pro_section .tab_cont.howto .sup_ex .sup_ex_01 figure {
  width: 101px;
  margin: auto;
}

.pro_section .tab_cont.howto .sup_ex .sup_ex_02 figure {
  width: 226px;
  margin: auto;
}

@media (max-width: 1000px) {
  .pro_section .tab_cont.howto .fl {
    width: 100%;
  }

  .pro_section .tab_cont.howto .fl>dl {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .pro_section .tab_cont .notes_cont {
    padding: 4.8vw;
    margin: 6.4vw auto;
  }

  .pro_section .tab_cont.choose picture {
    display: block;
    margin: 0 auto 10.66vw;
  }

  .pro_section .tab_cont.choose .mc {
    text-align: center;
    padding-right: 24px;
  }

  .pro_section .tab_cont.howto p.lead {
    margin-bottom: 6.4vw;
  }

  .pro_section .tab_cont.howto .fl {
    align-items: flex-start;
    width: 100%;
    margin: 0 auto 24px;
  }

  .pro_section .tab_cont.howto .tab_swiper dl {
    width: 100%;
    padding-bottom: 6.4vw;
    margin: 0 auto;
  }

  .pro_section .tab_cont.howto dl dt {
    display: block;
    width: 54vw;
    margin: 0 auto 4.2vw;
  }

  .pro_section .tab_cont.howto dl dd {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .pro_section .tab_cont.howto dl dt figure {
    width: 100%;
  }

  .pro_section .tab_cont.howto .sup_ex {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    padding: 7.46vw 6.4vw 4.26vw;
    margin: 10.66vw auto 0;
    border: #eee 1px solid;
  }

  .pro_section .tab_cont.howto .sup_ex .sup_ex_01 {
    margin: 0 auto;
  }

  .pro_section .tab_cont.howto .sup_ex .sup_ex_02 {
    margin: 6.4vw auto 0;
  }

  .pro_section .tab_cont.howto .sup_ex p {
    margin-bottom: 4.26vw;
  }

  .pro_section .tab_cont.howto .sup_ex .sup_ex_01 figure {
    width: 26.93vw;
  }

  .pro_section .tab_cont.howto .sup_ex .sup_ex_02 figure {
    width: 60.26vw;
  }

  .pro_section .tab_cont.howto .sup_ex img {
    display: block;
    margin: 0 auto;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section .tab_cont.howto .tab_swiper dl {
    width: 32%;
  }
}

/*--pro_section howto_con tab_cont--*/
.tab_swiper {
  width: 880px;
  position: relative;
  overflow: hidden;
}

.tab_swiper .tab_swiper_pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: auto;
}

.tab_swiper .tab_swiper_pagination span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #D0D0D0;
  border-radius: 5px;
  cursor: pointer;
}

.tab_swiper .tab_swiper_pagination span.swiper-pagination-bullet-active {
  background: #323232;
}

.tab_swiper .swiper_navigat {
  width: 100%;
}

.tab_swiper .swiper_navigat .tab_swiper_prev,
.swiper_navigat .tab_swiper_next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto 0;
  cursor: pointer;
  z-index: 20;
}

.tab_swiper .swiper_navigat .tab_swiper_prev {
  left: 0;
  background: url("../images/icon_arrow_left_black.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_prev:hover {
  background: url("../images/icon_arrow_left_white.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_prev[aria-disabled="true"],
.tab_swiper .swiper_navigat .tab_swiper_prev[aria-disabled="true"]:hover{
  background: url("../images/icon_arrow_left_glay.svg") center center no-repeat;pointer-events: none;
}

.tab_swiper .swiper_navigat .tab_swiper_next {
  right: 0;
  background: url("../images/icon_arrow_right_black.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_next:hover {
  background: url("../images/icon_arrow_right_white.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_next:hover {
  background: url("../images/icon_arrow_right_white.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_next:hover {
  background: url("../images/icon_arrow_right_white.svg") center center no-repeat;
}

.tab_swiper .swiper_navigat .tab_swiper_next[aria-disabled="true"],
.tab_swiper .swiper_navigat .tab_swiper_next[aria-disabled="true"]:hover{
  background: url("../images/icon_arrow_right_glay.svg") center center no-repeat;pointer-events: none;
}

.tab_swiper .swiper_navigat .tab_swiper_prev img,
.tab_swiper .swiper_navigat .tab_swiper_next img {
  transition: all 1s;
}

.tab_swiper .swiper_navigat .tab_swiper_prev[aria-disabled="true"] img,
.tab_swiper .swiper_navigat .tab_swiper_next[aria-disabled="true"] img {
  opacity: 0;
}
@media (min-width: 769px) {
  .tab_swiper .swiper_navigat .tab_swiper_prev:hover img,
  .tab_swiper .swiper_navigat .tab_swiper_next:hover img,
  .tab_swiper .swiper_navigat .tab_swiper_prev[aria-disabled="true"]:hover img,
  .tab_swiper .swiper_navigat .tab_swiper_next[aria-disabled="true"]:hover img {
    opacity: 0;
  }
}

@media (max-width: 1000px) {
  .tab_swiper {
    width: 100%;
  }

  .tab_swiper .swiper_navigat {
    width: 100%;
    min-height: 7.33vw;
  }

  .tab_swiper .swiper_navigat .tab_swiper_prev,
  .tab_swiper .swiper_navigat .tab_swiper_next {
    position: absolute;
    top: initial;
    bottom: 0;
    width: 50px;
    height: 50px;
    margin: 0;
    cursor: pointer;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .tab_swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .tab_swiper .tab_swiper_pagination {
    bottom: 3vw;
  }

  .tab_swiper .swiper_navigat {
    width: 100%;
    min-height: 13.33vw;
  }

  .tab_swiper .swiper_navigat .tab_swiper_prev,
  .tab_swiper .swiper_navigat .tab_swiper_next {
    position: absolute;
    top: initial;
    bottom: 0;
    width: 50px;
    height: 50px;
    margin: 0;
    cursor: pointer;
    z-index: 20;
  }
}

/* ============================================================================================== */
/*  product me                                                                                    */
/* ============================================================================================== */
.pro_section.pro_me {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .pro_section.pro_me {
    padding-bottom: 24vw;
  }
}

/*--.sub_inner_cont .pro_cont iner--*/
.pro_section.pro_me .pro_cont h1 img {
  width: 86px;
}

.pro_section.pro_me .pro_cont .feature img {
  width: 381px;
}

@media (max-width: 768px) {
  .pro_section.pro_me .sub_inner_cont > picture {
    margin-bottom: 4.03vw;
  }
  .pro_section.pro_me .pro_cont h1 {
    margin-bottom: 1.4vw;
  }
  .pro_section.pro_me .pro_cont h1 img.sp {
    width: 20.8vw;
    display: inline-block;
  }

  .pro_section.pro_me .pro_cont .feature img {
    width: 61.86vw;
  }
}

/*--.your_cont iner--*/
.pro_section.pro_me .your_cont {
  background: url("../images/your_me/your_me_bg.jpg") top 496px right no-repeat;
  background-size: 100% auto;
}

@media (max-width: 768px) {
  .pro_section.pro_me .your_cont {
    background: url("../images/your_me/your_me_bg_sp.jpg") top 100vw center no-repeat;
    background-size: 100%;
  }
}

/*--pro_section howto_con tab_cont--*/
.pro_section.pro_me .tab_cont.choose picture {
  width: 640px;
}

.pro_section.pro_me .tab_cont.choose .fl {
  margin: 16px auto 24px;
}

.pro_section.pro_me .tab_cont.choose dl {
  width: 45%;
  font-size: 1.1rem;
  line-height: 2.1;
}

.pro_section.pro_me .tab_cont.choose dl dt {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
  border: #636363 1px solid;
}

@media (max-width: 768px) {
  .pro_section.pro_me .tab_cont.choose picture {
    width: 77.6vw;
  }

  .pro_section.pro_me .tab_cont.choose .fl {
    display: block;
    ;
    margin: 4.26vw auto 6.4vw;
  }

  .pro_section.pro_me .tab_cont.choose dl {
    width: 100%;
  }

  .pro_section.pro_me .tab_cont.choose dl dt {
    display: inline-block;
    padding: 0.5vw 1.6vw;
    margin-bottom: 2.4vw;
  }
}

/* ============================================================================================== */
/*  product sensitive                                                                             */
/* ============================================================================================== */
.pro_section.pro_sensitive {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .pro_section.pro_sensitive {
    padding-bottom: 24vw;
  }

  .pro_section.pro_sensitive .sub_inner_cont>picture {
    margin: 0 auto 8.53vw 0;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section.pro_sensitive .sub_inner_cont>picture {
    margin: 0 0 8.53vw auto;
  }
}

/*--.sub_inner_cont .pro_cont iner--*/
.pro_section.pro_sensitive .pro_cont h2 {
  font-size: 34px;
  font-weight: 250;
}

.pro_section.pro_sensitive .pro_cont .feature img {
  width: 256px;
}

@media (min-width: 769px) {
  .pro_section.pro_sensitive .pro_cont .feature {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .pro_section.pro_sensitive .pro_cont h1 {
    font-size: 3.8rem;
    line-height: 1.3;
  }

  .pro_section.pro_sensitive .pro_cont h1 img {
    width: 78.66vw;
  }

  .pro_section.pro_sensitive .pro_cont h2 {
    font-size: 2.3rem;
    line-height: 1.862;
    letter-spacing: -2.24px;
  }

  .pro_section.pro_sensitive .pro_cont .feature img {
    width: 41.86vw;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section.pro_sensitive .pro_cont .feature img {
    width: 31.86vw;
  }
}

/*--.your_cont iner--*/
.pro_section.pro_sensitive .your_cont {
  background: url("../images/your_sensitive/your_sensitive_bg.jpg") top 496px left no-repeat;
  background-size: 100% auto;
}

@media (max-width: 768px) {
  .pro_section.pro_sensitive .your_cont {
    background: url("../images/your_sensitive/your_sensitive_bg_sp.jpg") top 100vw center no-repeat;
    background-size: 100%;
  }
}

/*--pro_section howto_con tab_cont--*/
.pro_section.pro_sensitive .tab_cont.choose picture {
  width: 640px;
}

@media (max-width: 768px) {
  .pro_section.pro_sensitive .tab_cont.choose picture {
    width: 78.13vw;
  }
}

/* ============================================================================================== */
/*  product ultimate                                                                              */
/* ============================================================================================== */
.pro_section.pro_ultimate {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .pro_section.pro_ultimate {
    padding-bottom: 0;
  }

}

/*--.sub_inner_cont .pro_cont iner--*/
.pro_section.pro_ultimate .pro_cont h1 span {
  display: block;
  line-height: 1.0;
  margin-left: 4px;
}

.pro_section.pro_ultimate .pro_cont .feature img {
  width: 381px;
}

@media (max-width: 768px) {
  .pro_section.pro_ultimate .pro_cont h1 {
    margin-bottom: 1.7vw;
    font-size: 3.8rem;
    line-height: 1.2;
  }

  .pro_section.pro_ultimate .pro_cont h1 span {
    line-height: 3.0;
  }
  .pro_section.pro_ultimate .pro_cont h1 img {
    width: 78.66vw;
  }

  .pro_section.pro_ultimate .pro_cont .feature img {
    width: 61.86vw;
  }
}

@media (min-width: 500px) and (max-width: 768px) {
  .pro_section.pro_ultimate>.sub_inner_cont {
    margin-bottom: 30vw;
  }

  .pro_section.pro_ultimate .pro_cont {
    top: 0;
  }
}

/*--.your_cont iner--*/
.pro_section.pro_ultimate .your_cont {
  background: url("../images/your_ultimate/your_ultimate_bg.jpg") top 600px right no-repeat;
  background-size: 100% auto;
}

@media (max-width: 768px) {
  .pro_section.pro_ultimate .your_cont {
    background: url("../images/your_ultimate/your_ultimate_bg_sp.jpg") top 103vw center no-repeat;
    background-size: 100%;
  }
}

/*--pro_section howto_con tab_cont--*/
.pro_section.pro_ultimate .tab_cont.choose picture {
  width: 640px;
}

.pro_section.pro_ultimate .tab_cont.choose ul li {
  width: 49%;
  font-size: 1.1rem;
  line-height: 2.1;
  letter-spacing: -0.02em;
}

@media (min-width: 769px) {
  .pro_section .tab_cont.howto .sup_ex {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .pro_section.pro_ultimate .tab_cont.choose picture {
    width: 78.13vw;
  }

  .pro_section.pro_ultimate .tab_cont.choose ul li {
    width: 100%;
  }
}

/*--pro_section howto_con tab_cont tab_swiper--*/
.pro_section.pro_ultimate .tab_cont.howto .tab_slider p {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_01 dl,
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_03 dl {
    width: 360px;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_01 dl dt,
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_03 dl dt {
    display: block;
    width: 210px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_01 dl,
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_03 dl {
    width: 100%;
    margin: 0 auto;
  }

  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_01 dl dt img,
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_03 dl dt img {
    display: block;
    margin: 0 auto;
  }

  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_01 dl dd,
  .pro_section.pro_ultimate .tab_cont.howto .tab_slider_03 dl dd {
    display: table;
    margin: 0 auto;
  }

  .pro_section.pro_ultimate .tab_cont.howto .tab_slider p {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 6.4vw;
  }
}

/* ============================================================================================== */
/* check                                                                                          */
/* ============================================================================================== */
.check {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F6F6F6;
}

.check .sub_inner_cont {
  justify-content: center;
  padding: 60px 80px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px #0000001C;
}

.check .sub_inner_cont h2 {
  text-align: center;
  margin-bottom: 32px;
}

.check .sub_inner_cont h2::after {
  display: block;
  content: "";
  width: 38px;
  height: 1px;
  margin: 24px auto 0;
  background: #000;
}

.check .check_cont {
  justify-content: center;
  flex-wrap: wrap;
}

.check .check_cont>figure {
  width: 228px;
  margin-right: 33px;
  margin-bottom: 24px;
}

.check .check_cont .btn {
  width: 272px;
  min-height: 60px;
  margin-bottom: 60px;
}

.check .check_cont .btn a spna {
  display: block;
  color: #636363;
}

.check .check_cont .sub_check_cont {
  padding: 24px 32px;
  background: #F6F6F6;
}

.check .check_cont .sub_check_cont>picture {
  width: 334px;
}

.check .sub_check_cont p {
  width: 54.1%;
  font-size: 1.3rem;
}

@media (max-width: 1000px) {
  .check .check_cont .sub_check_cont>picture {
    width: 30vw;
  }

  .check .sub_check_cont p {
    width: 45%;
  }
}

/*--sp check--*/
@media (max-width: 768px) {
  .check {
    padding-top: 26.4vw;
    padding-bottom: 24vw;
  }

  .check .sub_inner_cont {
    padding: 8.53vw 5.33vw;
  }

  .check .sub_inner_cont h2 {
    margin-bottom: 8.53vw;
  }

  .check .sub_inner_cont h2::after {
    width: 10.13vw;
    height: 1px;
    margin: 4.26vw auto 0;
  }

  .check .sub_inner_cont h3 {
    margin-bottom: 6.4vw;
    text-align: center;
  }

  .check .check_cont {
    justify-content: center;
    flex-wrap: wrap;
  }

  .check .check_cont>figure {
    width: 47.2vw;
    margin-right: 0;
    margin-bottom: 8.53vw;
  }

  .check .check_cont>figure img {
    display: block;
    margin: 0 auto;
  }

  .check .check_cont .btn {
    width: 100%;
    min-height: inherit;
    margin-bottom: 8.53vw;
  }

  .check .link_border {
    padding-top: 2.93vw;
    padding-bottom: 2.93vw;
}

  .check .check_cont .sub_check_cont {
    padding: 4.26vw 4.26vw;
  }

  .check .check_cont .sub_check_cont>picture {
    width: 67.2vw;
  }

  .check .sub_check_cont p {
    width: 100%;
    font-size: 1.3rem;
  }
}
/*--:skin check 2023/08/01 added--*/
.check .check_fade{
  position: relative;
  min-height: 532px;
}
.check .cover{
  position: inherit;
  background: #fff;
  z-index: 5;
}
.check .skin_check {
  position: absolute;
  top:0;
  left:0;
  right: 0;
  display: none;
  width: 100%;
  height: 537px;
  margin: 0 auto;
}
.check .skin_check iframe::-webkit-scrollbar {
 width: 8px;
}
.check .skin_check iframe::-webkit-scrollbar-track {
 background-color: #F0F0F0;
 border-radius: 10px;
}
.check .skin_check iframe::-webkit-scrollbar-thumb {
 background-color: #B1B1B1;
 border-radius: 10px;
 height: 160px;
}
.check .skin_check iframe{
  width: 100%;
  height: 532px;
  overflow-y: auto;
  scrollbar-color: #B1B1B1 #F0F0F0;
  scrollbar-width: thin;
}


/* ============================================================================================== */
/* counseling                                                                                     */
/* ============================================================================================== */
.counseling {
  padding-top: 60px;
  padding-bottom: 120px;
}

.counseling h2 {
  text-align: center;
  margin-bottom: 32px;
}

.counseling h2::after {
  display: block;
  content: "";
  width: 38px;
  height: 1px;
  margin: 24px auto 0;
  background: #000;
}

.counseling .inner_cont>p {
  text-align: center;
  margin-bottom: 60px;
}

.counseling p span {
  margin-top: 10px;
}

.counseling .csl_item {
  width: 840px;
  margin: 0 auto;
}

.counseling .csl_01,
.counseling .csl_02 {
  margin-bottom: 40px;
}

.counseling .csl_item h3 {
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: #EEE 1px solid;
}

.counseling .csl_item figure {
  width: 412px;
}

.counseling .csl_item .csl_cont {
  width: 428px;
  padding-left: 19px;
}

.counseling .csl_item .csl_cont>p {
  margin-bottom: 24px;
}

.counseling .csl_item .csl_cont .btn {
  width: 327px;
  min-height: 50px;
}

.counseling .csl_item .csl_cont .btn .link_border {
  padding: 13px 0;
}

@media (max-width: 1000px) {
  .counseling .csl_item {
    width: 100%;
  }

  .counseling .csl_item figure {
    width: 50%;
    max-width: 412px;
  }

  .counseling .csl_item .csl_cont {
    width: 50%;
    max-width: 428px;
  }
}

/*--sp counseling--*/
@media (max-width: 768px) {
  .counseling {
    padding-top: 24vw;
    padding-bottom: 24vw;
  }

  .counseling h2 {
    margin-bottom: 8.53vw;
  }

  .counseling .inner_cont>p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 16vw;
  }

  .counseling p span {
    margin-top: 2.66vw;
  }

  .counseling .csl_item {
    width: 100%;
    margin: 0 auto;
  }

  .counseling .csl_item figure {
    width: 100vw;
    max-width: initial;
  }

  .counseling .csl_item figure img {
    display: block;
    margin: 0 auto;
  }

  .counseling .csl_item .csl_cont {
    width: 100%;
    max-width: initial;
    text-align: center;
    padding-left: 0;
  }

  .counseling .csl_item .csl_cont>p {
    text-align: left;
  }

  .counseling .csl_01,
  .counseling .csl_02 {
    margin-bottom: 16vw;
  }
  .counseling .csl_item .csl_cont .btn.pc{
    display: none !important;
  }
  .counseling .csl_item .csl_cont .btn.sp {
    display: block;
    margin: 0 auto;
  }
}

/*****/
/* ============================================================================================== */
/* kit
/* ============================================================================================== */
.kit_area {
  padding: 120px 0;
}

.kit_area .sub_inner_cont {
  padding: 52px 65px 65px;
  background: #F6F6F6;
}

.kit_area h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
}

.kit_area h2 small {
	font-size: 2.4rem;
}

.kit_area .trial_cont h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.kit_area .price_cont {
  justify-content: flex-start;
  margin-bottom: 40px;
}

.kit_area .price {
  font-size: 2.0rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.25;
  margin-left: 20px;
}

.kit_area .price span.tax {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.0rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.2;
}
.kit_area .price span.base {
  display: block;
  font-size: 1.0rem;
  font-weight: 300;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  line-height: 0.8;
  margin-top: 10px;
}

.kit_area .btn {
  width: 320px;
  min-height: 60px;
  margin: 40px 0 0;
}

.kit_area picture {
  width: 484px;
}

@media (max-width: 1000px) {
  .kit_area picture {
    width: 36vw;
  }

  .kit_area .btn {
    width: 32vw;
  }
}

@media (min-width: 769px) {
  .kit_area .fl {
    flex-wrap: nowrap;
  }
}
/*--sp trial--*/
@media (max-width: 768px) {
  .kit_area {
    padding: 16vw 0;
    margin-bottom: 8vw;
  }

  .kit_area .sub_inner_cont {
    padding: 8.53vw 4.66vw;
  }

  .kit_area .sub_inner_cont>.fl {
    flex-direction: column-reverse;
  }

  .kit_area h2 {
    margin-bottom: 8.53vw;
    font-size: 2.4rem;
  }

  .kit_area h2 small {
    font-size: 1.8rem;
  }

  .kit_area .trial_cont{
    width: 100%;
  }

  .kit_area .trial_cont h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 8.53vw;
  }

  .kit_area .price_cont {
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .kit_area .icon {
    width: 21.33vw;
  }

  .kit_area .price {
    margin-left: 1.6vw;
    font-size: 2rem;
  }

  .kit_area .btn {
    width: 100%;
    min-height: 16vw;
  }

  .kit_area picture {
    width: 78.667vw;
    margin: 0 auto 8.53vw;
  }
}

/*--kit add --*/
.kit_area .a-link {
  margin-top: -100px;
  padding-top: 100px;
}

.kit_area .kit {
  margin-top: 20px;
}

.kit_area .kit .fl{
  align-items: flex-start;
}

.kit_area .kit .price_cont.fl {
  flex-direction: column;
  gap: 5px;
}

.kit_area .kit .trial_cont h3{
  margin-top: -7px;
  margin-bottom: 15px;
}

.kit_area .price_cont{
  margin-bottom: 34px;
}

.kit_area .kit .release{
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.0;
  margin-top: 10px;
}

.kit_area .kit .price{
  margin-left: 0;
}

.kit_area .kit .price span.base {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 4px;
}

.kit_area .kit .kit_list {
  margin-top: 5px;
}

.kit_area .kit .kit_list li {
  padding-left: 1em;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-indent: -1em;
}

.kit_area .kit .price_sup span.base {
  display: block;
  font-size: 1.0rem;
  font-weight: 300;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  line-height: 1.5;
}

.kit_area .kit .btn {
  margin-top: 15px;
}

.kit_area .kit .btn:first-of-type {
  margin-top: 40px;
}

.kit_area .kit .btn.online{
  margin: 0 0;
}

.kit_area .kit .btn.online span{
  display: block;
  font-size: 1.3rem;
}

.kit_area .kit .btn.online .link_border{
  line-height: 1.287;
  padding-top: 12px;
  padding-bottom: 12px;
}

.kit_area .kit .btn.shop{
  /* margin-top: 16px; */
  margin-top: 55px;
}

.kit_area .kit .notes{
  margin-top: 10px;
}

@media (max-width: 768px) {
  .kit_area .a-link {
    margin-top: -70px;
    padding-top: 70px;
  }

  .kit_area .btn {
    margin: 0;
  }

  .kit_area .price_cont {
    margin-bottom: 4.266vw;
  }

  .kit_area .kit {
    margin-top: 5vw;
  }
	
  .kit_area .kit h2 {
    line-height: 1.4;
  }

  .kit_area .kit .trial_cont h3{
    margin: 0 auto 8.53vw;
  }
  .kit_area .kit .price{
    text-align: center;
  }

  .kit_area .kit .kit_list {
    align-self: flex-start;
    margin-top: 5vw;
  }

  .kit_area .kit .kit_list li {
  }

  .kit_area .kit .price_sup {
    align-self: flex-start;
  }

  .kit_area .kit .price_sup span.base {
  }

  .kit_area .kit .release{
    text-align: center;
    font-size: 1.3rem;
  }
  .kit_area .kit .fl{
    align-items: center;
  }
  .kit_area .kit .btn.online{
    line-height: 0.018;
  }
  .kit_area .kit .btn.online .link_border{
    line-height: 1.2;
    padding-top: 1.568vw;
    padding-bottom: 1.568vw;
  }
  .kit_area .kit .btn.shop{
    margin-top: 4vw;
  }
  .kit_area .kit .price_cont {
    margin-bottom: 8vw;
  }
  .kit_area .kit .price_cont p {
    font-size: 1.3rem;
  }
  .kit_area .kit .notes{
    text-align: center;
    margin-top: 3.466vw;
  }
}

/*****/

/* ============================================================================================== */
/* trial                                                                                          */
/* ============================================================================================== */
.trial {
  background: #FCFCFC;
  padding: 50px 0 90px;
  background: url("../images/trial/trial_bg.jpg") center center no-repeat;
  background-size: cover;
  margin-bottom: 120px;
}

.trial .sub_inner_cont {
  padding: 52px 60px 65px;
  background: #fff;
}

.trial h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
}

.trial .trial_cont h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.trial .price_cont {
  justify-content: flex-start;
  margin-bottom: 40px;
}

.trial .price {
  font-size: 2.0rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.25;
  margin-left: 20px;
}

.trial .price span.tax {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.0rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
  line-height: 1.2;
}

.trial .price span.base {
  display: block;
  font-size: 1.0rem;
  font-weight: 300;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  line-height: 0.8;
  margin-top: 10px;
}

.trial .btn {
  width: 320px;
  min-height: 60px;
  margin: 40px 0 0;
}

.trial picture {
  width: 484px;
}

@media (max-width: 1000px) {
  .trial picture {
    width: 36vw;
  }

  .trial .btn {
    width: 32vw;
  }
}

@media (min-width: 769px) {
  .trial .fl {
    flex-wrap: nowrap;
  }
}
/*--sp trial--*/
@media (max-width: 768px) {
  .trial {
    padding: 16vw 0;
    background: url("../images/trial/trial_bg_sp.jpg") center center no-repeat;
    background-size: cover;
    margin-bottom: 21.33vw;
  }

  .trial .sub_inner_cont {
    padding: 8.53vw 6.4vw;
  }

  .trial .sub_inner_cont>.fl {
    flex-direction: column-reverse;
  }

  .trial h2 {
    margin-bottom: 8.53vw;
    font-size: 2.4rem;
  }

  .trial .trial_cont{
    width: 100%;
  }

  .trial .trial_cont h3 {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 8.53vw;
  }

  .trial .price_cont {
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .trial .icon {
    width: 21.33vw;
  }

  .trial .price {
    margin-left: 1.6vw;
    font-size: 2rem;
  }

  .trial .btn {
    width: 100%;
    min-height: 16vw;
  }

  .trial picture {
    width: 76.53vw;
    margin: 0 auto 8.53vw;
  }
}

/*--kit add --*/
.trial .a-link {
  margin-top: -60px;
  padding-top: 100px;
}

.trial .kit {
  margin-top: 40px;
}

.trial .kit .fl{
  align-items: flex-start;
}

.trial .kit .trial_cont h3{
  margin-top: -7px;
  margin-bottom: 15px;
}

.trial .price_cont{
  margin-bottom: 34px;
}

.trial .kit .release{
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.0;
  margin-top: 10px;
}

.trial .kit .price{
  margin-left: 0;
}

.trial .kit .price_cont.fl {
  flex-direction: column;
  gap: 5px;
}

.trial .kit .price span.base {
  line-height: 1.5;
}

.trial .kit .btn {
  margin-top: 15px;
}

.trial .kit .btn:first-of-type {
  margin-top: 40px;
}

.trial .kit .btn.online{
  margin: 0 0;
}

.trial .kit .btn.online span{
  display: block;
  font-size: 1.3rem;
}

.trial .kit .btn.online .link_border{
  line-height: 1.287;
  padding-top: 12px;
  padding-bottom: 12px;
}

.trial .kit .btn.shop{
  /* margin-top: 16px; */
  margin-top: 55px;
}

.trial .kit .notes{
  margin-top: 10px;
}

@media (max-width: 768px) {
  .trial .a-link {
    margin-top: -70px;
    padding-top: 70px;
  }
  .trial .price_cont {
    margin-bottom: 4.266vw;
  }

  .trial .kit {
    margin-top: 8vw;
  }
	
  .trial .kit h2 {
    line-height: 1.4;
  }

  .trial .kit .trial_cont h3{
    margin: 0 auto 8.53vw;
  }
  .trial .kit .price{
    text-align: center;
  }
  .trial .kit .price_cont {
    margin-bottom: 8vw;
  }
  .trial .kit .price_cont p {
    font-size: 1.3rem;
  }
  .trial .kit .release{
    text-align: center;
    font-size: 1.3rem;
  }
  .trial .kit .fl{
    align-items: center;
  }
  .trial .btn {
    margin: 0;
  }
  .trial .kit .btn.online{
    line-height: 0.018;
  }
  .trial .kit .btn.online .link_border{
    line-height: 1.2;
    padding-top: 1.568vw;
    padding-bottom: 1.568vw;
  }
  .trial .kit .btn.shop{
    margin-top: 4vw;
  }
  .trial .kit .notes{
    text-align: center;
    margin-top: 3.466vw;
  }
}

/* MEポイントプラス */
.trial .me_pointplus .trial_cont h3 {
  font-size: 1.8rem;
}
@media (min-width: 769px) {
  .trial .me_pointplus .trial_cont h3 {
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .trial .me_pointplus .trial_cont h3 {
    font-size: 1.3rem;
  }
}

/* ============================================================================================== */
/* footer_bnr                                                                                     */
/* ============================================================================================== */
#footer_bnr{
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #footer_bnr .inner_cont {
    max-width: 100%;
  }

  #footer_bnr .inner_cont .banner {
    width: 90.933vw;
  }
}
/* ============================================================================================== */
/* footer                                                                                         */
/* ============================================================================================== */
#footer {
  min-height: 66px;
  background-color: #fff;
}

#footer .footer_inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

#footer .footer_inner>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0 10px;
  border-top: 1px solid #323232;
}

#footer .footer_inner .footer_sub {
  display: flex;
  flex-wrap: wrap;
}

#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#footer ul.sns {
  display: flex;
  margin-bottom: 10px;
  padding-left: 20px;
}

#footer ul.sns li {
  margin-left: 28px;
}

#footer ul.sns li:first-child {
  margin-left: 0;
}

#footer ul.about {
  display: flex;
}

#footer ul.about li {
  margin-left: 6px;
  margin-right: 20px;
}

#footer ul.about li a {
  color: #999;
  font-size: 1.2rem;
  line-height: 200%;
}

#footer #copyright {
  color: #c8c8c8;
  font-size: 10px;
  line-height: 250%;
  padding-left: 7px;
}
#footer #copyright a{
  color: #c8c8c8;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  #footer #copyright {
    width: 100%;
  }
}

/*--sp footer--*/
@media (max-width: 768px) {
  #footer {
    min-height: 0;
  }

  #footer .footer_inner {
    max-width: inherit;
    margin: 0 4vw;
    padding: 0;
    text-align: center;
  }

  #footer .footer_inner>div {
    display: block;
    padding: 5.3vw 0 2.6vw;
    border-top: 1px solid #323232;
  }

  #footer .footer_inner .footer_sub {
    display: block;
  }

  #footer ul.sns {
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
    padding-left: 0;
  }

  #footer ul.sns li {
    margin-left: 15.7vw;
  }

  #footer ul.sns li:first-child {
    margin-left: 0;
  }

  #footer ul.about {
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer ul.about li {
    margin-left: 1.6vw;
    margin-right: 1.6vw;
  }

  #footer ul.about li a {
    font-size: 1.1rem;
    line-height: 180%;
  }

  #footer #copyright {
    font-size: 10px;
    padding-left: 0;
  }
}