@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

body.modal_open {
  overflow: hidden;
  height: 100vh;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.scroll_anime {
  opacity: 0;
  position: relative;
  top: 40px;
}

.scroll_anime_dly {
  opacity: 0;
  position: relative;
  top: 130%;
}

@media only screen and (max-width: 900px) {
  .scroll_anime_dly {
    top: 60%;
  }
}

.scroll_anime_dly_right {
  /**
  opacity: 0;
  position: relative;
  left: 100%;
  **/
}

.scroll_anime_dly_right .wrap {
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  overflow: hidden;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.scroll_anime_dly_right .wrap img {
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  display: block;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  position: relative;
  left: 50%;
}

.scroll_anime_dly_right.show .wrap {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.scroll_anime_dly_right.show .wrap img {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  left: 0;
}

.scroll_anime_dly_left {
  /**
  opacity: 0;
  position: relative;
  right: 100%;
  **/
}

.scroll_anime_dly_left .wrap {
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.scroll_anime_dly_left .wrap img {
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  display: block;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  position: relative;
  right: 50%;
}

.scroll_anime_dly_left.show .wrap {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.scroll_anime_dly_left.show .wrap img {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  right: 0;
}

.scroll_anime_bg {
  opacity: 0;
  position: relative;
  top: 20px;
}

@media screen and (min-width: 768px) {
  #footer {
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .contentL {
    padding: 0;
  }
}

.disable {
  display: block;
}

/*                アニメーション
======================================================= */
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@-webkit-keyframes ani {

  0%,
  100% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@keyframes ani {

  0%,
  100% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@-webkit-keyframes gradientEffect {
  from {
    background-position: left;
  }

  to {
    background-position: right;
  }
}

@keyframes gradientEffect {
  from {
    background-position: left;
  }

  to {
    background-position: right;
  }
}

/* arrow ======================================= */
@-webkit-keyframes arrow01 {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  5% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  85% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes arrow01 {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  5% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  85% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes arrow02 {
  0% {
    -webkit-transform: rotate(-45deg) scale(1, 0);
    transform: rotate(-45deg) scale(1, 0);
  }

  20% {
    -webkit-transform: rotate(-45deg) scale(1, 0);
    transform: rotate(-45deg) scale(1, 0);
  }

  30% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
  }

  85% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 1;
  }

  90% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
}

@keyframes arrow02 {
  0% {
    -webkit-transform: rotate(-45deg) scale(1, 0);
    transform: rotate(-45deg) scale(1, 0);
  }

  20% {
    -webkit-transform: rotate(-45deg) scale(1, 0);
    transform: rotate(-45deg) scale(1, 0);
  }

  30% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
  }

  85% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 1;
  }

  90% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
    opacity: 0;
  }
}

.arrow_wrap {
  position: relative;
  top: 20px;
  height: 100px;
}

.arrow {
  position: absolute;
  left: calc(50% - 22px);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 1280px) {
  .arrow {
    left: calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .arrow {
    left: calc(50% - 10px);
    margin-top: 23.6667vw;
    margin-left: -4.5894vw;
  }
}

.arrow p {
  margin: 0;
  padding-left: 5px;
  font-size: 12px;
}

@media screen and (max-width: 1280px) {
  .arrow p {
    padding-left: 0.3906vw;
    font-size: 0.9375vw;
  }
}

@media screen and (max-width: 767px) {
  .arrow p {
    padding-left: 5vw;
    font-size: 1.7333vw;
  }
}

.arrow span {
  display: block;
  width: 100px;
  height: 1px;
  background-color: #000;
  position: relative;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation: arrow01 5s ease-in-out infinite forwards;
  animation: arrow01 5s ease-in-out infinite forwards;
}

@media screen and (max-width: 1280px) {
  .arrow span {
    width: 7.8125vw;
  }
}

@media screen and (max-width: 767px) {
  .arrow span {
    width: 17.0667vw;
  }
}

.arrow span::after {
  content: '';
  display: block;
  width: 8px;
  height: 15px;
  border-right: 1px solid #000;
  -webkit-transform: rotate(-45deg) scale(1, 0);
  -ms-transform: rotate(-45deg) scale(1, 0);
  transform: rotate(-45deg) scale(1, 0);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 1px;
  -webkit-animation: arrow02 5s ease-in-out infinite forwards;
  animation: arrow02 5s ease-in-out infinite forwards;
}

@media screen and (max-width: 1280px) {
  .arrow span::after {
    width: 0.625vw;
    height: 1.1719vw;
  }
}

@media screen and (max-width: 767px) {
  .arrow span::after {
    width: 1vw;
    height: 2vw;
  }
}

.arrow_img {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .arrow_img img {
    width: 18px;
  }
}

/* slick ======================================= */
.slider {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.slider input,
.slider textArea,
.slider select,
.slider button {
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
}

.slider button {
  cursor: pointer;
}

.slider.slick-initialized {
  opacity: 1;
}

.slider .slick-list {
  width: 100%;
  height: 100%;
}

.slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slider .slick-slide {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.slider .slick-slide:focus {
  outline: none;
}

.slider .slick-arrow {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  position: absolute;
  bottom: -54px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px #000 solid;
  border-radius: 50%;
}

@media only screen and (min-width: 769px) {
  .slider .slick-arrow:hover {
    opacity: 0.8;
  }
}

.slider .slick-arrow.nv_left {
  left: auto;
  right: 136px;
}

@media only screen and (max-width: 768px) {
  .slider .slick-arrow.nv_left {
    right: 74px;
  }
}

.slider .slick-arrow.nv_left span {
  padding-right: 1px;
}

.slider .slick-arrow.nv_left span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  -ms-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 6px;
  height: 6px;
}

.slider .slick-arrow.nv_right {
  left: auto;
  right: 76px;
}

@media only screen and (max-width: 768px) {
  .slider .slick-arrow.nv_right {
    right: 16px;
  }
}

.slider .slick-arrow.nv_right span {
  padding-left: 1px;
}

.slider .slick-arrow.nv_right span:after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(50% - 6px);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 6px;
  height: 6px;
}

.slider .slick-dots {
  position: relative;
  z-index: 5;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider .slick-dots li {
  width: 10px;
  height: 10px;
}

.slider .slick-dots li+li {
  margin-left: 15px;
}

.slider .slick-dots li button {
  overflow: visible;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
  z-index: 999;
  background-color: #d2d2d2;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  text-indent: -9999px;
}

.slider .slick-dots li:first-child button::before {
  display: none;
}

.slider .slick-dots li:last-child button::after {
  display: none;
}

.slider .slick-dots li.slick-active button {
  background-color: #e0d700;
}

.slider .slick-dots li:hover {
  cursor: pointer;
}

.slider .slick-dots li:hover button {
  background-color: #e0d700;
}

.slider .slick-dots>li:first-child:last-child {
  display: none;
}

/*                br
======================================================= */
@media only screen and (max-width: 1200px) {
  br.sp1200 {
    display: none;
  }
}

@media only screen and (max-width: 1100px) {
  br.sp1100 {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  br.sp1024 {
    display: none;
  }
}

@media only screen and (min-width: 901px) {
  br.sp900 {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  br.sp768 {
    display: none;
  }
}

@media only screen and (min-width: 641px) {
  br.sp640 {
    display: none;
  }
}

@media only screen and (min-width: 481px) {
  br.sp480 {
    display: none;
  }
}

@media only screen and (min-width: 401px) {
  br.sp400 {
    display: none;
  }
}

@media only screen and (min-width: 351px) {
  br.sp350 {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  br.sp1201 {
    display: none;
  }
}

@media screen and (min-width: 1101px) {
  br.sp1101 {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  br.sp1025 {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  br.sp901 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  br.sp769 {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  br.sp641 {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  br.sp481 {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  br.sp401 {
    display: none;
  }
}

@media only screen and (max-width: 350px) {
  br.sp351 {
    display: none;
  }
}

/* contents ======================================= */
#bread {
  display: none;
}

.contents {
  max-width: 100% !important;
  padding: 0 0 0;
}

.contents p,
.contents li {
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 1280px) {

  .contents p,
  .contents li {
    font-size: 1.4062vw;
  }
}

@media screen and (max-width: 767px) {

  .contents p,
  .contents li {
    font-size: 3.7333vw;
    letter-spacing: -0.06em;
  }
}

#main {
  position: relative;
  text-align: center;
}

#main img {
  position: relative;
  width: 100%;
}

#main_area {
  color: #000;
}

@media only screen and (max-width: 768px) {
  .lower #footer {
    padding-bottom: 1px;
  }
}

body.aaaaaloading_in {
  overflow: hidden;
  height: 100vh;
}

footer {
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 900px) {
  #page_top {
    bottom: 16px;
  }
}

#video-wrap {
  position: relative;
  z-index: 3;
  height: calc(100vh - 110px);
}

@media only screen and (max-width: 768px) {
  #video-wrap {
    height: calc(100vh - 100px);
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  #video-wrap {
    height: 640px !important;
  }
}

#video-wrap #video-area {
  position: fixed;
  z-index: -1;
  top: 0;
  top: 110px;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  #video-wrap #video-area {
    top: 100px;
  }
}

#video-wrap #video-area::before {
  content: '';
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

#video-wrap #video-area video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150.58823529vh;
  height: 66.4vw;
  min-height: 100%;
  min-width: 100%;
}

#video-wrap .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 110px);
}

@media only screen and (max-width: 768px) {
  #video-wrap .cover {
    height: calc(100vh - 100px);
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  #video-wrap .cover {
    height: 640px !important;
  }
}

#video-wrap .cover::before {
  content: '';
  background: #f2e4de;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition:
    transform 1s,
    -webkit-transform 1s;
}

#video-wrap .cover.open::before {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

#video-wrap .cover .logo {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#video-wrap .cover .logo png {
  display: block;
  width: 213px;
  height: 186px;
}

@media only screen and (max-width: 768px) {
  #video-wrap .cover .logo png {
    width: 28.4vw;
    height: 24.8vw;
  }
}

#video-wrap .cover .logo.open png .st0 {
  fill: #fff;
}

#video-wrap .scroll_text {
  display: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
  position: absolute;
  z-index: 1;
  bottom: 80px;
  text-align: center;
  width: 100%;
}

.c-scrolldown {
  display: none;
  width: 1px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  height: 80px;
}

.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(50%, rgb(255, 255, 255)),
      color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -80px;
  background-size: 100% 200%;
  -webkit-animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@-webkit-keyframes scrolldown {
  0% {
    background-position: 0 -80px;
  }

  75% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 80px;
  }
}

@keyframes scrolldown {
  0% {
    background-position: 0 -80px;
  }

  75% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 80px;
  }
}

/**
@keyframes scrolldownSp {
0%{
background-position: 0 -21.333vw;
}
75% {
background-position: 0 0;
}
100%{
background-position: 0 21.333vw;
}
}
**/
#content_bg {
  position: fixed;
  z-index: -2;
  top: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#content_bg video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}

#contents {
  color: #6d90d4;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

#contents::after {
  content: '';
  background-image: url(/img/freepages/urgem//kv_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transition: 2.5s;
  transition: 2.5s;
  opacity: 0;
}

@media only screen and (max-width: 1920px) {
  #contents::after {
    background-size: 1920px 1581px;
  }
}

@media only screen and (max-width: 900px) {
  #contents::after {
    background-image: url(/img/freepages/urgem//kv_sp.png);
    background-size: 100vw 216.744vw;
  }
}

#contents.on::after {
  opacity: 1;
}

#main_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: calc(100vh - 110px);
}

@media only screen and (max-width: 900px) {
  #main_visual {
    height: calc(100svh - 23.256vw);
  }
}

#main_visual .kv .img {
  -webkit-transition: 3s;
  transition: 3s;
  opacity: 0;
  max-width: 522px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  #main_visual .kv .img {
    max-width: 63.256vw;
    margin-top: -23.256vw;
  }
}

#main_visual .kv .img img {
  width: 100%;
}

#main_visual.on .kv .img {
  opacity: 1;
}

@media screen and (min-width: 901px) {
  #contents a:hover {
    opacity: 0.7;
  }
}

#contents sup {
  font-size: 50%;
  position: relative;
  top: -0.8em;
  padding-left: 0.5px;
  padding-right: 2px;
}

#contents img {
  width: 100%;
  height: auto;
}

#contents .main_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1310px;
  padding: 0 20px;
}

@media only screen and (max-width: 900px) {
  #contents .main_width {
    padding: 0 4.651vw;
  }
}

#contents .btn {
  width: 100%;
  max-width: 314px;
  margin: 0 auto;
  /**
      &.link{
        > a,> span{
          &::after{
            content: "";
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%) rotate(45deg);
            border-top: solid 2px #fff;
            border-right: solid 2px #fff;
            width: 6px;
            height: 6px;
          }
        }
      }
  **/
}

@media only screen and (max-width: 900px) {
  #contents .btn {
    max-width: 49.302vw;
  }
}

#contents .btn>a,
#contents .btn>span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: 'Bodoni Moda', serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  background: #dfdfdf;
  border: 1px #dfdfdf solid;
  color: #fff;
  font-size: 16px;
  font-size: 1vw;
  text-align: center;
  display: block;
  border-radius: 100vh;
  padding: 1.5em 1em;
}

@media only screen and (min-width: 1500px) {

  #contents .btn>a,
  #contents .btn>span {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {

  #contents .btn>a,
  #contents .btn>span {
    font-size: 2.3vw;
    padding: 5.116vw 1em;
  }
}

#contents .btn>a::after,
#contents .btn>span::after {
  /* content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 6px;
  height: 6px; */
}

#contents .btn>a:hover,
#contents .btn>span:hover {
  opacity: 1;
}

@media only screen and (min-width: 901px) {

  #contents .btn>a:hover,
  #contents .btn>span:hover {
    background: none;
    background: #fff;
    color: #6d90d4;
  }
}

#contents .btn a.disabled {
  pointer-events: none;
}

#contents .btn.cart>a,
#contents .btn.cart>span {
  position: relative;
  /**
    > span{
    position: relative;
    padding-left: 50px;
    @media screen and (max-width:767px) {
    padding-left: 30px;
  }
    &::before{
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url(../img/haircare2022/cart.png) no-repeat center center;
    background-size: 30px 30px;
    @media screen and (max-width:767px) {
    width: 20px;
    height: 20px;
    background: url(../img/haircare2022/cart.png) no-repeat center center;
    background-size: 20px 20px;
  }
  }
  }
    **/
}

#contents .btn.cart>a::before,
#contents .btn.cart>span::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/cart.png) no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 900px) {

  #contents .btn.cart>a::before,
  #contents .btn.cart>span::before {
    left: 4vw;
    width: 8vw;
    height: 8vw;
    background-size: 8vw 8vw;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart>a:hover::before,
  #contents .btn.cart>span:hover::before {
    background: url(../img/cart_b.png) no-repeat center center;
    background-size: 30px 30px;
  }
}

#contents .btn.cart.gray>a,
#contents .btn.cart.gray>span {
  background: none;
  border: 1px #a19894 solid;
  color: #4a4f54;
}

#contents .btn.cart.gray>a::before,
#contents .btn.cart.gray>span::before {
  background: url(../img/cart_g.png) no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 900px) {

  #contents .btn.cart.gray>a::before,
  #contents .btn.cart.gray>span::before {
    width: 6.667vw;
    height: 6.667vw;
    background-size: 6.667vw 6.667vw;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.gray>a:hover,
  #contents .btn.cart.gray>span:hover {
    border: 1px #4a4f54 solid;
    background: #4a4f54;
    color: #fff;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.gray>a:hover::before,
  #contents .btn.cart.gray>span:hover::before {
    background: url(../img/cart.png) no-repeat center center;
    background-size: 30px 30px;
  }
}

#contents .btn.cart.white>a,
#contents .btn.cart.white>span {
  background: #fff;
  border: 1px #d9ccc7 solid;
  color: #4a4f54;
}

#contents .btn.cart.white>a::before,
#contents .btn.cart.white>span::before {
  background: url(../img/cart_g.png) no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 900px) {

  #contents .btn.cart.white>a::before,
  #contents .btn.cart.white>span::before {
    width: 6.667vw;
    height: 6.667vw;
    background-size: 6.667vw 6.667vw;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.white>a:hover,
  #contents .btn.cart.white>span:hover {
    border: 1px #4a4f54 solid;
    background: #4a4f54;
    color: #fff;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.white>a:hover::before,
  #contents .btn.cart.white>span:hover::before {
    background: url(../img/cart.png) no-repeat center center;
    background-size: 30px 30px;
  }
}

#contents .btn.cart.white.disable>a,
#contents .btn.cart.white.disable>span {
  pointer-events: none;
  background: #e6e6e6;
}

#contents .btn.cart.pink>a,
#contents .btn.cart.pink>span {
  background: #f288a1;
  border: 1px #f288a1 solid;
  color: #fff;
}

#contents .btn.cart.pink>a::before,
#contents .btn.cart.pink>span::before {
  background: url(../img/cart.png) no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 900px) {

  #contents .btn.cart.pink>a::before,
  #contents .btn.cart.pink>span::before {
    width: 6.667vw;
    height: 6.667vw;
    background-size: 6.667vw 6.667vw;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.pink>a:hover,
  #contents .btn.cart.pink>span:hover {
    border: 1px #f288a1 solid;
    background: #fff;
    color: #f288a1;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.cart.pink>a:hover::before,
  #contents .btn.cart.pink>span:hover::before {
    background: url(../img/cart_p.png) no-repeat center center;
    background-size: 30px 30px;
  }
}

#contents .btn.cart.pink.disable>a,
#contents .btn.cart.pink.disable>span {
  pointer-events: none;
  background: #a6a5a5;
  border: 1px #a6a5a5 solid;
  color: #e2e2e2;
}

#contents .btn.cart.pink.disable>a::before,
#contents .btn.cart.pink.disable>span::before {
  background: url(../img/cart_g2.png) no-repeat center center;
  background-size: 30px 30px;
}

@media screen and (max-width: 900px) {

  #contents .btn.cart.pink.disable>a::before,
  #contents .btn.cart.pink.disable>span::before {
    width: 6.667vw;
    height: 6.667vw;
    background-size: 6.667vw 6.667vw;
  }
}

#contents .btn.plus>a::before,
#contents .btn.plus>span::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 28px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/black-white/plus.png) no-repeat center center;
  background-size: 20px 20px;
}

@media screen and (max-width: 900px) {

  #contents .btn.plus>a::before,
  #contents .btn.plus>span::before {
    left: 6.667vw;
    width: 4vw;
    height: 4vw;
    background-size: 4vw 4vw;
  }
}

#contents .btn.minus>a::before,
#contents .btn.minus>span::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 28px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/black-white/minus.png) no-repeat center center;
  background-size: 20px 20px;
}

@media screen and (max-width: 900px) {

  #contents .btn.minus>a::before,
  #contents .btn.minus>span::before {
    left: 6.667vw;
    width: 4vw;
    height: 4vw;
    background-size: 4vw 4vw;
  }
}

#contents .btn.link>a::before,
#contents .btn.link>span::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../img/ar_right.png) no-repeat center center;
  background-size: 22px 22px;
}

@media screen and (max-width: 900px) {

  #contents .btn.link>a::before,
  #contents .btn.link>span::before {
    right: 4vw;
    width: 4.8vw;
    height: 4.8vw;
    background-size: 4.8vw 4.8vw;
  }
}

@media only screen and (min-width: 901px) {

  #contents .btn.link>a:hover::before,
  #contents .btn.link>span:hover::before {
    background: url(../img/ar_right_g.png) no-repeat center center;
    background-size: 22px 22px;
  }
}

#contents .cont_ttl {
  margin-bottom: 60px;
}

@media only screen and (max-width: 900px) {
  #contents .cont_ttl {
    margin-bottom: 6.977vw;
  }
}

#contents .cont_ttl .ttl {
  font-family: 'Bodoni Moda', serif;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.5em;
}

@media only screen and (max-width: 900px) {
  #contents .cont_ttl .ttl {
    font-size: 5.581vw;
  }
}

#contents .cont_ttl .ttl::after {
  content: '';
  background: #6d90d4;
  width: 43px;
  height: 1px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 900px) {
  #contents .cont_ttl .ttl::after {
    width: 8.605vw;
  }
}

#contents .intro {
  margin-bottom: 140px;
}

@media only screen and (max-width: 900px) {
  #contents .intro {
    margin-top: -34.884vw;
    margin-bottom: 18.605vw;
  }
}

#contents .intro .intro_inner .intro_copy {
  max-width: 758px;
  margin: 0 auto 70px;
  padding-top: 200px;
}

@media only screen and (max-width: 900px) {
  #contents .intro .intro_inner .intro_copy {
    padding-top: 0;
    max-width: 83.721vw;
    margin: 0 auto 9.302vw;
  }
}

#contents .intro .intro_inner p.catch {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  #contents .intro .intro_inner p.catch {
    font-size: 3.721vw;
  }
}

#contents .intro .intro_inner p.mincho {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 1em 0;
}

@media only screen and (max-width: 900px) {
  #contents .intro .intro_inner p.mincho {
    font-size: 5.581vw;
  }
}

#contents .lineup .lineup_inner {
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 100px 85px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner {
    padding: 11.628vw 5.814vw;
  }
}

#contents .lineup .lineup_inner .list .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -30px -30px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block {
    margin: 0 -4.419vw -4.419vw;
  }
}

#contents .lineup .lineup_inner .list .block .set {
  width: 25%;
  padding: 0 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set {
    width: 50%;
    padding: 0 4.419vw;
    margin-bottom: 4.419vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .txt {
  text-align: center;
}

#contents .lineup .lineup_inner .list .block .set .set_inner .txt .brand {
  font-size: 14px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .txt .brand {
    font-size: 3.023vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .txt .name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 -1em;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .txt .name {
    font-size: 3.023vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .txt .price {
  font-size: 14px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .txt .price {
    font-size: 3.023vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .txt .price .tax {
  font-size: 12px;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .txt .price .tax {
    font-size: 2.558vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .btn {
  margin-top: 20px;
  opacity: 1 !important;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .btn {
    margin-top: 4.651vw;
  }
}

#contents .lineup .lineup_inner .list .block .set .set_inner .btn a {
  padding: 1.15em 1em;
}

@media only screen and (max-width: 900px) {
  #contents .lineup .lineup_inner .list .block .set .set_inner .btn a {
    padding: 2.791vw 1em;
  }
}

#contents .nayami {
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, rgb(166, 204, 240)), to(rgb(179, 174, 224)));
  background: linear-gradient(90deg, rgb(166, 204, 240) 1%, rgb(179, 174, 224) 100%);
  padding: 170px 0;
  margin: 112px 0;
}

@media only screen and (max-width: 900px) {
  #contents .nayami {
    padding: 18.605vw 0;
    margin: 13.023vw 0;
  }
}

#contents .nayami .nayami_inner h2.ttl {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.83;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner h2.ttl {
    font-size: 4.186vw;
    margin-bottom: 11.628vw;
  }
}

#contents .nayami .nayami_inner .list {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list {
    margin-bottom: 11.628vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .outer_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -0.93vw -1.86vw;
  }
}

#contents .nayami .nayami_inner .list .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -5px -10px;
}

#contents .nayami .nayami_inner .list .block+.block {
  margin-top: 10px;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block+.block {
    margin-top: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block {
    display: contents;
    margin: 0;
  }
}

#contents .nayami .nayami_inner .list .block .set {
  width: 33.33333333%;
  padding: 0 5px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block .set {
    width: 50%;
    padding: 0 0.93vw;
    margin-bottom: 1.86vw;
  }
}

#contents .nayami .nayami_inner .list .block .set .set_inner {
  background: #fff;
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding: 1.65em 1em;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block .set .set_inner {
    position: relative;
    z-index: 1;
    min-height: 19.07vw;
    padding: 1em;
  }
}

#contents .nayami .nayami_inner .list .block .set .set_inner p {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block .set .set_inner p {
    font-size: 3.023vw;
  }
}

#contents .nayami .nayami_inner .list .block .set .set_inner p span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 4em;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block .set .set_inner p span {
    position: static;
    padding-left: 0;
  }
}

#contents .nayami .nayami_inner .list .block .set .set_inner p span::before {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url(/img/freepages/urgem//check.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 22px 22px;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner .list .block .set .set_inner p span::before {
    top: 2.326vw;
    left: 2.326vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 3.721vw;
    height: 3.721vw;
    background-size: 3.721vw 3.721vw;
  }
}

#contents .nayami .nayami_inner p.catch {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner p.catch {
    font-size: 4.419vw;
  }
}

#contents .nayami .nayami_inner p.catch span.big {
  font-size: 37px;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner p.catch span.big {
    font-size: 6.512vw;
  }
}

#contents .nayami .nayami_inner p.desc {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.14;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  #contents .nayami .nayami_inner p.desc {
    font-size: 3.256vw;
  }
}

#contents .point .point_inner h2.point_ttl {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: 80px;
  margin-bottom: -150px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner h2.point_ttl {
    max-width: 48.819vw;
    margin-left: 6.299vw;
    margin-bottom: -11.811vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner h2.point_ttl {
    margin-left: auto;
    margin-right: auto;
    max-width: 74.884vw;
    margin-bottom: -16.744vw;
  }
}

#contents .point .point_inner .box+p.notes {
  margin-top: 2em;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box {
    margin: 0 -4.651vw;
  }
}

#contents .point .point_inner .box .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block {
    display: block;
    margin: 0;
  }
}

#contents .point .point_inner .box .block .set {
  width: 33.33333333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set+.set {
    margin-top: 3.721vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set {
    width: auto;
    padding: 0;
    margin-bottom: 0;
  }
}

#contents .point .point_inner .box .block .set .set_inner {
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 100%;
  padding: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set .set_inner {
    padding: 11.163vw 4.651vw;
  }
}

#contents .point .point_inner .box .block .set .set_inner p.number {
  font-family: 'Bodoni Moda', serif;
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set .set_inner p.number {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.791vw;
  }
}

#contents .point .point_inner .box .block .set .set_inner p.number span {
  font-size: 24px;
  padding-left: 0.3em;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set .set_inner p.number span {
    font-size: 4.651vw;
  }
}

#contents .point .point_inner .box .block .set .set_inner h3.ttl {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.56;
  margin-bottom: 1em;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set .set_inner h3.ttl {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 5.814vw;
  }
}

#contents .point .point_inner .box .block .set .set_inner p.desc {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.94;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set .set_inner p.desc {
    text-align: center;
    font-size: 3.488vw;
  }
}

#contents .point .point_inner .box .block .set.point01 {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 {
    width: auto;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner {
  padding: 80px;
  padding-top: 195px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner {
    padding: 6.299vw;
    padding-top: 15.354vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner {
    padding: 11.163vw 4.651vw;
    padding-top: 31.628vw;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 -36px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout {
    margin: 0 -2.835vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout {
    display: block;
    margin: 0;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item {
  padding: 0 36px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item {
    padding: 0 2.835vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item {
    padding: 0;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item:nth-child(1) {
  width: 40%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item:nth-child(1) {
    width: auto;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item:nth-child(2) {
  width: 60%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner .layout .layout_item:nth-child(2) {
    width: auto;
    padding: 0 4.651vw;
    margin-top: 11.628vw;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner h3.ttl {
  font-size: 37px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner h3.ttl {
    font-size: 2.913vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner h3.ttl {
    font-size: 5.814vw;
  }
}

#contents .point .point_inner .box .block .set.point01 .set_inner p.desc {
  font-size: 18px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner p.desc {
    font-size: 1.417vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point01 .set_inner p.desc {
    font-size: 3.488vw;
  }
}

#contents .point .point_inner .box .block .set.point02 {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 {
    width: auto;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner {
  padding: 80px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner {
    padding: 6.299vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner {
    padding: 11.163vw 4.651vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -78px;
  padding: 0 60px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout {
    margin: 0 -6.142vw;
    padding: 0 4.724vw;
    padding: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout {
    display: block;
    margin: 0;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item {
  padding: 0 78px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item {
    padding: 0 6.142vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item {
    padding: 0;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item:nth-child(1) {
  width: 50%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item:nth-child(1) {
    width: auto;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item:nth-child(2) {
  width: 50%;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .layout .layout_item:nth-child(2) {
    width: auto;
    padding: 0 4.651vw;
    margin-top: 11.628vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -30px -40px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block {
    margin: 0 -2.362vw -3.15vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block {
    margin: 0 -3.721vw -4.651vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set {
  width: 50%;
  padding: 0 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set {
    padding: 0 2.362vw;
    margin-bottom: 3.15vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set {
    padding: 0 3.721vw;
    margin-bottom: 4.651vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set .txt {
  margin-top: 1em;
}

#contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set .txt .cap {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set .txt .cap {
    font-size: 1.26vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner .circle_list .circle_block .circle_set .txt .cap {
    font-size: 3.023vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner h3.ttl {
  font-size: 37px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner h3.ttl {
    font-size: 2.913vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner h3.ttl {
    font-size: 5.814vw;
  }
}

#contents .point .point_inner .box .block .set.point02 .set_inner p.desc {
  font-size: 18px;
}

@media only screen and (max-width: 1270px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner p.desc {
    font-size: 1.417vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner .box .block .set.point02 .set_inner p.desc {
    font-size: 3.488vw;
  }
}

#contents .point .point_inner p.notes {
  font-size: 14px;
  line-height: 1.42;
}

@media only screen and (max-width: 900px) {
  #contents .point .point_inner p.notes {
    font-size: 2.791vw;
  }
}

#contents .product {
  margin-top: 216px;
}

@media only screen and (max-width: 900px) {
  #contents .product {
    margin-top: 22.326vw;
  }
}

#contents .product .product_frame+.product_frame {
  margin-top: 120px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame+.product_frame {
    margin-top: 19.535vw;
  }
}

#contents .product .product_frame::before {
  /**
  content: "";
  background: #eee;
  width: 100%;
  width: 50%;
  width: calc(50% + 695px);//1390/2=695
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;

  @media only screen and (max-width: 1430px) {
    width: calc(50% + 695px);
    width: calc(50% + 48.601vw);//1430
    //width: calc(50% + 50vw);//1390
    width: calc(50% + 695px - 20px);//-20px
    width: calc(50% + 48.601vw - 1.399vw);
  }
  **/
}

#contents .product .product_frame .main_width {
  max-width: 1430px;
}

#contents .product .product_frame .product_frame_inner {
  position: relative;
  z-index: 1;
}

#contents .product .product_frame .product_frame_inner::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 200%;
  height: 100%;
  height: calc(100% - 190px);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 70px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner::before {
    top: 5.512vw;
    height: calc(100% - 14.961vw);
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner::before {
    top: 62.791vw;
    height: calc(100% - 62.791vw);
  }
}

#contents .product .product_frame .product_frame_inner .product_layout {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout {
    padding: 0 6.977vw;
    margin-right: -20px;
    margin-right: -4.651vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 0 -35px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top {
    margin: 0 -2.756vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top {
    display: block;
    margin: 0;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .img {
  max-width: 528px;
  padding: 0 35px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .img {
    max-width: 41.575vw;
    padding: 0 2.756vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .img {
    max-width: 73.023vw;
    padding: 0;
    -webkit-transform: translateX(16.279vw);
    -ms-transform: translateX(16.279vw);
    transform: translateX(16.279vw);
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .img .img_wrap {
  margin-right: -50px;
  margin-left: -10px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .img .img_wrap {
    margin-right: -3.937vw;
    margin-left: -0.787vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .img .img_wrap {
    margin-right: -11.628vw;
    margin-left: -2.326vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
  z-index: 1;
  padding: 0 35px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt {
    padding: 0 2.756vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt {
    padding: 0;
    margin-top: -19.767vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .name {
  max-width: 332px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .name {
    max-width: 26.142vw;
    margin-bottom: 5.512vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .name {
    max-width: 48.14vw;
    margin-bottom: 6.977vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt p.catch {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.9;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt p.catch {
    font-size: 1.575vw;
    margin-bottom: 3.937vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt p.catch {
    font-size: 3.953vw;
    margin-bottom: 11.628vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -7px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block {
    margin: 0 -1.163vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set {
  width: 50%;
  padding: 0 7px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set {
    padding: 0 1.163vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner {
  border-radius: 20px;
  overflow: hidden;
  background: #e6f5ff;
  height: 100%;
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl {
  background: #d6eeff;
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl {
  text-align: center;
  padding: 40px 20px 20px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl {
    padding: 25px 10px 15px;
    padding: 5.814vw 2.326vw 3.488vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl dt {
  font-size: 16px;
  font-weight: bold;
  color: #6d90d4;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1em;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl dt {
    min-height: 2.5em;
    margin-bottom: 0.5em;
    font-size: 3.256vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl dd {
  font-size: 14px;
  line-height: 1.428;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .ttl dl dd {
    min-height: 4.3em;
    font-size: 2.791vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100px;
  min-height: 150px;
  padding: 10px 12px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont {
    min-height: 32.558vw;
    padding: 2.326vw 2.791vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1px 5px;
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont ul li {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont ul li {
    font-size: 2.558vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont ul li span {
  color: #fff;
  background: #6d90d4;
  border-radius: 100vh;
  display: inline-block;
  padding: 10px 18px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .prescription .prescription_block .prescription_set .set_inner .cont ul li span {
    padding: 2.093vw 2.791vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle {
  margin-top: 20px;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle {
    margin-left: -6.977vw;
    margin-right: -6.977vw;
    margin-top: 6.977vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul {
    gap: 0.787vw 1.575vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul {
    gap: 1.163vw 2.326vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.375;
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  border: 1px #6d90d4 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul li {
    font-size: 1.26vw;
    width: 11.811vw;
    height: 11.811vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .top .txt .circle ul li {
    font-size: 3.256vw;
    width: 25.581vw;
    height: 25.581vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 -35px;
  margin-top: 60px;
  margin-top: 30px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm {
    margin: 0 -2.756vw;
    margin-top: 2.362vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm {
    display: block;
    margin: 0;
    margin-top: 6.977vw;
    padding-bottom: 15.116vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .img {
  width: 650px;
  padding: 0 35px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .img {
    width: 650px;
    width: 51.181vw;
    padding: 0 2.756vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .img {
    width: 73.023vw;
    padding: 0;
    -webkit-transform: translateX(-11.628vw);
    -ms-transform: translateX(-11.628vw);
    transform: translateX(-11.628vw);
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .img .img_wrap {
  margin-right: -50px;
  margin-left: -10px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .img .img_wrap {
    margin-right: -3.937vw;
    margin-left: -0.787vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .img .img_wrap {
    margin-right: -11.628vw;
    margin-left: -2.326vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 35px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt {
    padding: 0 2.756vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt {
    padding: 0;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap {
  position: relative;
  z-index: 1;
  padding: 100px 130px 50px 40px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap {
    padding: 7.874vw 10.236vw 3.937vw 3.15vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap {
    padding: 0;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap p.label {
  font-family: 'Bodoni Moda', serif;
  font-size: 16px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 20px;
  height: 100%;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap p.label {
    font-size: 1.26vw;
    top: 1.575vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap p.label {
    font-size: 2.791vw;
    top: -93.023vw;
    right: -2.326vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap p.label span {
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 0.5em;
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .wrap p.label span::after {
  content: '';
  background: #6d90d4;
  width: 1px;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.brand {
  font-size: 16px;
  text-align: center;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.brand {
    font-size: 1.26vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.brand {
    font-size: 3.256vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt h2.name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt h2.name {
    font-size: 1.575vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt h2.name {
    font-size: 3.953vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price {
  font-size: 16px;
  text-align: center;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price {
    font-size: 1.26vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price {
    font-size: 3.256vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price span.tax {
  font-size: 14px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price span.tax {
    font-size: 1.102vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt p.price span.tax {
    font-size: 2.791vw;
  }
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .btn {
  margin-top: 30px;
}

#contents .product .product_frame .product_frame_inner .product_layout .btm .txt .btn a {
  padding: 1.1em 1em;
  max-width: 230px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .btn {
    margin-top: 4.651vw;
  }

  #contents .product .product_frame .product_frame_inner .product_layout .btm .txt .btn a {
    font-size: 3vw;
    padding: 1em 1em;
  }
}

#contents .product .product_frame.re .product_frame_inner::before {
  left: auto;
  right: 0;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout {
    margin-right: auto;
    margin-left: -4.651vw;
  }
}

#contents .product .product_frame.re .product_frame_inner .product_layout .top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout .top .img {
    -webkit-transform: translateX(-6.977vw);
    -ms-transform: translateX(-6.977vw);
    transform: translateX(-6.977vw);
  }
}

#contents .product .product_frame.re .product_frame_inner .product_layout .top .txt .name {
  margin-left: auto;
}

#contents .product .product_frame.re .product_frame_inner .product_layout .btm {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout .btm .img {
    -webkit-transform: translateX(20.233vw);
    -ms-transform: translateX(20.233vw);
    transform: translateX(20.233vw);
  }
}

#contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap {
  padding: 100px 40px 50px 130px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap {
    padding: 7.874vw 3.15vw 3.937vw 10.236vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap {
    padding: 0;
  }
}

#contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap p.label {
  right: auto;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap p.label {
    left: -2.326vw;
  }
}

#contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap p.label span {
  padding-left: 0;
  padding-right: 0.5em;
}

#contents .product .product_frame.re .product_frame_inner .product_layout .btm .txt .wrap p.label span::after {
  left: auto;
  right: 0;
}

#contents .product .product_frame.p01 .product_frame_inner .product_layout .top .txt .name {
  max-width: 332px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame.p01 .product_frame_inner .product_layout .top .txt .name {
    max-width: 26.142vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.p01 .product_frame_inner .product_layout .top .txt .name {
    max-width: 48.14vw;
  }
}

#contents .product .product_frame.p02 .product_frame_inner .product_layout .top .txt .name {
  max-width: 363px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame.p02 .product_frame_inner .product_layout .top .txt .name {
    max-width: 28.583vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.p02 .product_frame_inner .product_layout .top .txt .name {
    max-width: 48.14vw;
  }
}

#contents .product .product_frame.p03 .product_frame_inner .product_layout .top .txt .name {
  max-width: 275px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame.p03 .product_frame_inner .product_layout .top .txt .name {
    max-width: 21.654vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.p03 .product_frame_inner .product_layout .top .txt .name {
    max-width: 43.953vw;
  }
}

#contents .product .product_frame.p04 .product_frame_inner .product_layout .top .txt .name {
  max-width: 278px;
}

@media only screen and (max-width: 1270px) {
  #contents .product .product_frame.p04 .product_frame_inner .product_layout .top .txt .name {
    max-width: 21.89vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .product .product_frame.p04 .product_frame_inner .product_layout .top .txt .name {
    max-width: 45.581vw;
  }
}

#contents .product .btm_text {
  margin-top: 20px;
}

@media only screen and (max-width: 900px) {
  #contents .product .btm_text {
    margin-top: 8.372vw;
  }
}

#contents .product .btm_text .main_width {
  max-width: 1150px;
}

#contents .product .btm_text p.notes {
  font-size: 14px;
  line-height: 1.42;
}

@media only screen and (max-width: 900px) {
  #contents .product .btm_text p.notes {
    font-size: 2.791vw;
  }
}

#contents .step {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 96px;
  margin-top: 320px;
}

@media only screen and (max-width: 900px) {
  #contents .step {
    padding-bottom: 16.744vw;
    margin-top: 46.512vw;
  }
}

#contents .step::before {
  content: '';
  width: 100%;
  height: 280px;
  background-image: url(/img/freepages/urgem//step_bg_pc.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  top: -280px;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .step::before {
    background-image: url(/img/freepages/urgem//step_bg_sp.png);
    height: 34.884vw;
    top: -34.884vw;
  }
}

#contents .step .main_width {
  max-width: 1150px;
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner {
    margin: 0 -2.326vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .cont_ttl {
    margin-bottom: 13.953vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame {
  position: relative;
  z-index: 1;
  padding: 0 50px 50px 50px;
}

#contents .step .step_inner .step_frame_wrap .step_frame+.step_frame {
  margin-top: 32px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame+.step_frame {
    margin-top: 2.783vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame+.step_frame {
    margin-top: 0;
  }
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame {
    padding: 0 4.348vw 4.348vw 4.348vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame {
    width: 40%;
    padding: 0;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 20px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table {
    padding: 0 1.739vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table {
    display: block;
    padding: 0;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .title {
  width: 195px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title {
    width: 16.957vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title {
    width: auto;
    text-align: center;
    padding: 40px 0 25px;
    padding: 9.302vw 0 5.814vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .title h3.type {
  font-family: 'Bodoni Moda', serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.2em;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title h3.type {
    font-size: 6.783vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title h3.type {
    font-size: 13.023vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .title p.desc {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title p.desc {
    font-size: 1.391vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .title p.desc {
    line-height: 1.45;
    font-size: 2.558vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-left: 78px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list {
    padding-left: 6.783vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list {
    padding-left: 0;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block {
    margin: 0 -0.87vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block {
    display: block;
    margin: 0;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set {
  width: 25%;
  padding: 0 10px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set {
    padding: 0 0.87vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set {
    border-top: 1px #fff solid;
    width: auto;
    padding: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img {
    display: none;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .img_wrap {
  max-width: 100px;
  margin: 0 auto;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .img_wrap {
    max-width: 8.696vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .img_wrap {
    max-width: 16.279vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .cap {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .cap {
    font-size: 0.87vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .img .cap {
    line-height: 1.25;
    margin-top: 0.2em;
    font-size: 1.86vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt {
  min-height: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt {
    min-height: 9.913vw;
    margin-top: 0.87vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt {
    margin-top: 0;
    min-height: 36.279vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt .desc {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.46;
  text-align: center;
  color: #25437e;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt .desc {
    font-size: 1.13vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set .set_inner .txt .desc {
    font-size: 2.558vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.on .set_inner .txt::after {
  content: '';
  width: 114px;
  height: 114px;
  background-image: url(/img/freepages/urgem//on.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.on .set_inner .txt::after {
    width: 9.913vw;
    height: 9.913vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.on .set_inner .txt::after {
    width: 22.791vw;
    height: 22.791vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.off .set_inner .txt::after {
  content: '';
  width: 114px;
  height: 114px;
  background-image: url(/img/freepages/urgem//off.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.off .set_inner .txt::after {
    width: 9.913vw;
    height: 9.913vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .step_table .list .block .set.off .set_inner .txt::after {
    width: 22.791vw;
    height: 22.791vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .hosoku {
  margin-top: 32px;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .hosoku {
    margin-top: 2.783vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .hosoku {
    border-top: 1px #fff solid;
    margin-top: 0;
    padding: 4.651vw 3.488vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame .hosoku p.desc {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  line-height: 1.45;
}

@media only screen and (max-width: 1150px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .hosoku p.desc {
    font-size: 1.391vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame .hosoku p.desc {
    text-align: center;
    font-size: 2.558vw;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame.asa::after {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#ffeaec), to(#f5c7fb));
  background: linear-gradient(#ffeaec 0%, #f5c7fb 100%);
  opacity: 0.5;
  width: 100%;
  height: calc(100% - 55px);
  position: absolute;
  z-index: -1;
  top: 55px;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.asa::after {
    top: 0;
    height: 100%;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame.asa .step_table .title h3.type {
  color: #ea7eb0;
}

#contents .step .step_inner .step_frame_wrap .step_frame.asa .step_table .title p.desc {
  color: #ea7eb0;
}

#contents .step .step_inner .step_frame_wrap .step_frame.yoru::after {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#ede2fe), to(#8498d9));
  background: linear-gradient(#ede2fe 0%, #8498d9 100%);
  opacity: 0.5;
  width: 100%;
  height: calc(100% - 55px);
  position: absolute;
  z-index: -1;
  top: 55px;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.yoru::after {
    top: 0;
    height: 100%;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame.yoru .step_table .title h3.type {
  color: #5e6fb7;
}

#contents .step .step_inner .step_frame_wrap .step_frame.yoru .step_table .title p.desc {
  color: #5e6fb7;
}

@media only screen and (min-width: 901px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo {
    width: calc(20% - 1.163vw);
    margin-right: 1.163vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo .step_table .title.empty {
    visibility: hidden;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo .step_table .list .block .set {
    border-top: 1px rgba(110, 145, 212, 0.2) solid;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo .step_table .list .block .set .set_inner .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 36.279vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo .step_table .list .block .set .set_inner .txt {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  #contents .step .step_inner .step_frame_wrap .step_frame.photo .step_table .list .block .set:last-child {
    border-bottom: 1px rgba(110, 145, 212, 0.2) solid;
  }
}

#contents .step .step_inner .step_frame_wrap .step_frame.photo .photo_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#contents .step .step_inner .step_frame_wrap .step_frame.photo .photo_block .photo_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#contents .step .step_inner .step_frame_wrap .step_frame.photo .photo_block .photo_set .img {
  min-height: 36.279vw;
}

#contents .step .step_inner .step_frame_wrap .step_frame.photo .photo_block .photo_set .img .cap {
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  font-size: 8px;
  font-size: 1.86vw;
}

#contents .welcia {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

@media only screen and (max-width: 900px) {
  #contents .welcia {
    padding: 10.465vw 0;
  }
}

#contents .welcia::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(/img/freepages/urgem//welcia_bg_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  background-size: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .welcia::after {
    background-image: url(/img/freepages/urgem//welcia_bg_sp.png);
  }
}

#contents .welcia .main_width {
  max-width: 1150px;
}

#contents .welcia .welcia_inner .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -45px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout {
    display: block;
    margin: 0;
  }
}

#contents .welcia .welcia_inner .layout .layout_l {
  width: 47%;
  padding: 0 45px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_l {
    width: auto;
    padding: 0;
  }
}

#contents .welcia .welcia_inner .layout .layout_l .ttl {
  font-size: 30px;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_l .ttl {
    font-size: 6.047vw;
  }
}

#contents .welcia .welcia_inner .layout .layout_l .ttl span.line {
  display: block;
}

#contents .welcia .welcia_inner .layout .layout_l .ttl span.line+span.line {
  margin-top: 10px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_l .ttl span.line+span.line {
    margin-top: 2.326vw;
  }
}

#contents .welcia .welcia_inner .layout .layout_l .ttl span.line>span {
  background: #fff;
  display: inline-block;
  padding: 0.3em 0.4em;
}

#contents .welcia .welcia_inner .layout .layout_l .items {
  margin-top: 24px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_l .items {
    margin-top: 4.651vw;
    margin-right: -5.814vw;
  }
}

#contents .welcia .welcia_inner .layout .layout_r {
  width: 53%;
  padding: 0 45px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_r {
    width: auto;
    padding: 0;
    margin-top: 2.326vw;
  }
}

#contents .welcia .welcia_inner .layout .layout_r .welcia_bnr+p.notes {
  margin-top: 1em;
}

#contents .welcia .welcia_inner .layout .layout_r p.notes {
  font-size: 13px;
  line-height: 1.46;
}

@media only screen and (max-width: 900px) {
  #contents .welcia .welcia_inner .layout .layout_r p.notes {
    font-size: 2.791vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout .layout_l {
    display: contents;
  }
}

#contents .welcia.deadline0909 .welcia_inner .layout .layout_l .txt {
  margin-top: 24px;
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout .layout_l .txt {
    -webkit-box-ordinal-group: 101;
    -ms-flex-order: 100;
    order: 100;
    margin-top: 4.651vw;
  }
}

#contents .welcia.deadline0909 .welcia_inner .layout .layout_l .txt p.notes {
  font-size: 13px;
  line-height: 1.46;
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout .layout_l .txt p.notes {
    font-size: 2.791vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout .layout_r {
    display: contents;
  }
}

@media only screen and (max-width: 900px) {
  #contents .welcia.deadline0909 .welcia_inner .layout .layout_r .items {
    margin-top: 4.651vw;
    margin-right: -5.814vw;
  }
}

#contents .brandtop {
  position: relative;
  z-index: 1;
}

#contents .brandtop::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(/img/freepages/urgem//brandtop_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  background-size: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop::after {
    background-image: url(/img/freepages/urgem//brandtop_sp.png);
  }
}

#contents .brandtop .main_width {
  max-width: 1150px;
}

#contents .brandtop .brandtop_inner .link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 424px;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop .brandtop_inner .link_wrap {
    height: 58.14vw;
  }
}

#contents .brandtop .brandtop_inner .link {
  padding-right: 10px;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop .brandtop_inner .link {
    padding-right: 2.326vw;
  }
}

#contents .brandtop .brandtop_inner .link .ttl {
  font-family: 'Bodoni Moda', serif;
  font-weight: bold;
  font-size: 34px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop .brandtop_inner .link .ttl {
    font-size: 6.279vw;
  }
}

#contents .brandtop .brandtop_inner .link .btn {
  max-width: 182px;
  margin-top: 40px;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop .brandtop_inner .link .btn {
    max-width: 37.209vw;
    margin-top: 6.512vw;
  }
}

#contents .brandtop .brandtop_inner .link .btn a {
  background: rgba(255, 255, 255, 0.22);
  border: 1px #fff solid;
  color: #fff;
}

@media only screen and (max-width: 900px) {
  #contents .brandtop .brandtop_inner .link .btn a {
    padding: 4.186vw 1em;
  }
}

@media only screen and (min-width: 901px) {
  #contents .brandtop .brandtop_inner .link .btn a:hover {
    opacity: 0.7;
  }
}

#contents .aaaproduct {
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame {
    padding: 0 8px;
    padding: 0 1.067vw;
    padding: 0 16px;
    padding: 0 2.133vw;
  }
}

#contents .aaaproduct .product_frame .kv {
  padding-top: 180px;
  padding-top: 480px;
  margin-bottom: -95px;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv {
    margin-bottom: -7.422vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv {
    padding-top: 37.333vw;
    padding-top: 50.333vw;
    margin: 0 -1.067vw -18.933vw;
    margin: 0 -2.133vw -18.933vw;
  }
}

#contents .aaaproduct .product_frame .kv .main_width {
  max-width: none;
  padding: 0;
}

@media only screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv .main_width {
    max-width: 1280px;
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner {
    padding-top: 18.667vw;
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt {
  position: absolute;
  top: 200px;
  top: 15.625vw;
  right: 640px;
  right: 50vw;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt {
    right: auto;
    left: 14.063vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt {
    top: 0;
    left: 6.4vw;
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl {
  z-index: 10;
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.main {
  font-family: 'Satoshi-Medium', sans-serif;
  font-size: 86px;
  line-height: 1;
  display: inline-block;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.main {
    font-size: clamp(46px, 12.267vw, 12.267vw);
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.main>span {
  font-family: 'Satoshi-Light', sans-serif;
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.main>span.and {
  font-family: 'Satoshi-Regular', sans-serif;
  font-size: 43px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.main>span.and {
    font-size: clamp(25px, 6.667vw, 6.667vw);
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.textimg {
  display: block;
  width: 460px;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.textimg {
    width: 35.938vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.textimg {
    width: 66.933vw;
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.sub {
  font-family: 'FP-こぶりなゴシック StdN W3';
  font-size: 24px;
  display: block;
  margin-top: 0.5em;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.sub {
    font-size: clamp(24px, 1.875vw, 1.875vw);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .txt .ttl span.sub {
    font-size: clamp(14px, 3.733vw, 3.733vw);
  }
}

#contents .aaaproduct .product_frame .kv .kv_inner .img {
  max-width: 62.5vw;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .img {
    max-width: 62.5vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .kv .kv_inner .img {
    max-width: 81.6vw;
  }
}

#contents .aaaproduct .product_frame .cover {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  padding-bottom: 200px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover {
    padding-bottom: 16vw;
  }
}

#contents .aaaproduct .product_frame .cover::before {
  content: '';
  width: 100%;
  height: 494px;
  background-image: url(../img/bg_movie_cover.png);
  background-repeat: repeat-x;
  background-position: top;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover::before {
    width: calc(100% + 2.133vw);
    width: calc(100% + 4.267vw);
    height: 21.733vw;
    background-image: url(../img/bg_movie_cover_sp.png);
    top: 48vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#contents .aaaproduct .product_frame .cover::after {
  content: '';
  background: #e0d9f1;
  position: absolute;
  z-index: -1;
  top: 494px;
  left: 0;
  width: 100%;
  height: calc(100% - 494px);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover::after {
    width: calc(100% + 2.133vw);
    width: calc(100% + 4.267vw);
    top: 69.733vw;
    top: 68.733vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: calc(100% - 68.733vw);
  }
}

#contents .aaaproduct .product_frame .cover .info {
  background: #fff;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 95px;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .cover .info {
    padding-top: 7.422vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info {
    padding-top: 142px;
    padding-top: 18.933vw;
  }
}

#contents .aaaproduct .product_frame .cover .info::before {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(191, 145, 198, 0.5)),
      color-stop(50%, rgba(250, 227, 255, 0.5)),
      to(rgba(191, 145, 198, 0.5)));
  background: linear-gradient(90deg,
      rgba(191, 145, 198, 0.5) 0%,
      rgba(250, 227, 255, 0.5) 50%,
      rgba(191, 145, 198, 0.5) 100%);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

#contents .aaaproduct .product_frame .cover .info::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/item_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info::after {
    background-image: url(../img/item_bg_bottom_sp_sec1.png);
  }
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap {
  position: relative;
  z-index: 1;
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/sec_bg_top.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: -95px;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .deco_wrap::before {
    background-image: url(../img/sec_bg_top_sp.png);
    top: 18.933vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap::after {
  content: '';
  width: 935px;
  height: 924px;
  background-image: url(../img/sec_bg_bottom.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: absolute;
  z-index: -1;
  bottom: 480px;
  right: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .deco_wrap::after {
    width: 100%;
    height: 100%;
    background-image: url(../img/sec_bg_bottom_sp.png);
    bottom: 186.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap .floating_txt {
  position: absolute;
  top: 90px;
  top: 120px;
  right: 50px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 1280px) {
  #contents .aaaproduct .product_frame .cover .info .deco_wrap .floating_txt {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .deco_wrap .floating_txt {
    display: none;
  }
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap .floating_txt p {
  font-family: 'Satoshi-Regular', sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

#contents .aaaproduct .product_frame .cover .info .deco_wrap .floating_txt p>span {
  font-family: 'Satoshi-Bold', sans-serif;
}

#contents .aaaproduct .product_frame .cover .info .info_inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 70px 0 120px;
  padding: 105px 0 120px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner {
    padding: 70px 16px 120px;
    padding: 9.333vw 2.133vw 16vw;
    padding: 9.333vw 0 16vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl+p.catch {
  margin-top: 1.5em;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl+.triple_list {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl+.triple_list {
    margin-top: 35px;
    margin-top: 4.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl {
  font-family: 'FP-こぶりなゴシック StdN W3';
  font-size: 48px;
  color: #4d4398;
  text-align: center;
  line-height: 1.5;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl {
    font-size: clamp(24px, 6.4vw, 6.4vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl .line {
  position: relative;
  display: inline-block;
  padding-bottom: 0.1em;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl .line::after {
  content: '';
  background: url(../img/underline.jpg) repeat-y left top;
  background-size: contain;
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl .line::after {
    height: 4px;
  }
}

@media only screen and (min-width: 901px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl .line.pcbs_cover::after {
    background-size: cover;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl .pink {
  font-family: 'FP-こぶりなゴシック StdN W6';
  color: #e4007f;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl sup {
  font-size: 30%;
  top: -1.8em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl sup {
    top: -1.6em;
  }
}

@media only screen and (max-width: 1024px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl.pc_view {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .grd_ttl .ttl.sp_view {
    display: none;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner>p.catch {
  font-size: 16px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner>p.catch {
    font-size: clamp(13px, 3.467vw, 3.467vw);
    text-align: left;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure {
  margin-top: 50px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure+.triple_list {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure+.triple_list {
    margin-top: 35px;
    margin-top: 4.667vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure {
    margin-top: 35px;
    margin-top: 4.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure+.icon_list {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure+.icon_list {
    margin-top: 8vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure+.center_imgtxt {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure+.center_imgtxt {
    margin-top: 8vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl {
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl {
    margin-bottom: 40px;
    margin-bottom: 5.333vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl h2.ttl {
  font-family: 'FP-こぶりなゴシック StdN W6';
  font-size: 44px;
  color: #433d95;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl h2.ttl+.sub {
  margin-top: 0.5em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl h2.ttl {
    font-size: clamp(20px, 5.333vw, 5.333vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl h2.ttl span {
  font-family: 'FP-こぶりなゴシック StdN W3';
  display: block;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub+.diagonal {
  margin-top: 0.5em;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.enclosure {
  font-family: 'FP-こぶりなゴシック StdN W6';
  font-size: 21px;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5em;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.enclosure span {
  background: #e4007f;
  display: inline-block;
  padding: 0.6em 1.5em 0.4em;
  padding: 0.5em 1.5em 0.4em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.enclosure {
    font-size: clamp(13px, 3.467vw, 3.467vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.catch {
  font-family: 'FP-こぶりなゴシック StdN W6';
  font-size: 22px;
  color: #000;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.catch {
    font-size: clamp(14px, 3.733vw, 3.733vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.heatbond>span {
  position: relative;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.heatbond>span::before {
  content: '';
  width: 64px;
  height: 79px;
  background-image: url(../img/heatbond.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: -74px;
  bottom: 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .sub p.heatbond>span::before {
    width: 10.133vw;
    height: 12.533vw;
    left: -12vw;
    bottom: -0.8vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal {
  font-family: 'FP-こぶりなゴシック StdN W6';
  font-size: 28px;
  color: #4d4398;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line {
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line {
    padding: 0 4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::before,
#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::after {
  content: '';
  background: #4d4398;
  width: 2px;
  height: 80%;
  display: block;
  position: absolute;
}

@media only screen and (max-width: 900px) {

  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::before,
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::after {
    height: 75%;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-20deg);
  -ms-transform: translateY(-50%) rotate(-20deg);
  transform: translateY(-50%) rotate(-20deg);
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure .cont_ttl .diagonal span.line::after {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(20deg);
  -ms-transform: translateY(-50%) rotate(20deg);
  transform: translateY(-50%) rotate(20deg);
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure ul.note {
  margin-top: 20px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure ul.note {
    margin-top: 20px;
    margin-top: 2.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure ul.note li {
  font-size: 12px;
  line-height: 1.666666667;
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure ul.note li {
    font-size: clamp(10px, 2.667vw, 2.667vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .figure p.desc {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .figure p.desc {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list+.icon_list {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list+.icon_list {
    margin-top: 60px;
    margin-top: 8vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -30px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block+ul.note {
  margin-top: 30px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block+ul.note {
    margin-top: 30px;
    margin-top: 4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block+.double_list {
  margin-top: 50px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block+.double_list {
    margin-top: 60px;
    margin-top: 8vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block {
    display: block;
    margin: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set {
  position: relative;
  width: 33.33333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set+.set::before {
  content: '';
  width: 32px;
  height: 32px;
  background-image: url(../img/plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: -16px;
  top: 90px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set+.set::before {
    content: none;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set+.set {
    border-top: 1px #c1b5ca solid;
    padding-top: 20px;
    margin-top: 20px;
    padding-top: 2.667vw;
    margin-top: 2.667vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle {
  width: 214px;
  height: 214px;
  background-image: url(../img/triple_list_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  padding: 4px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle {
    width: 198px;
    height: 198px;
    width: 26.4vw;
    height: 26.4vw;
    padding: 3px;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner {
  background: #efe8f4;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl {
  font-size: 22px;
  color: #604cb6;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl {
    font-size: clamp(13px, 3.467vw, 3.467vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl sup {
  font-size: 50%;
}

@media only screen and (max-width: 480px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl sup {
    left: 2px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    display: inline-block;
    padding-left: 1.6em;
    padding-right: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.sub {
  font-size: 20px;
  font-weight: bold;
  color: #604cb6;
  line-height: 1;
  display: block;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.sub {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.sub>span {
  font-size: 36px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.sub>span {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.pink {
  font-size: 30px;
  color: #e4007f;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .circle .circle_inner h4.ttl span.pink {
    font-size: 4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .txt {
  margin-top: 1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .txt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    margin-top: 0;
    padding-left: 40px;
    padding-left: 5.333vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .txt .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set .txt .desc {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block .set.top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 901px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block.column2 {
    margin: 0 -100px;
  }
}

@media only screen and (min-width: 901px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block.column2 .set {
    padding: 0 100px;
  }
}

@media only screen and (min-width: 901px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list>.block.column2 .set .txt .desc {
    margin: 0 -5em;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list ul.note+dl.note {
  margin-top: 20px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list ul.note+dl.note {
    margin-top: 20px;
    margin-top: 2.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list ul.note li {
  font-size: 12px;
  line-height: 1.666666667;
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list ul.note li {
    font-size: clamp(10px, 2.667vw, 2.667vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px rgba(34, 34, 34, 0.4) solid;
  border-radius: 6px;
  padding: 10px 14px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note {
    padding: 16px;
    padding: 2.133vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dt {
  width: 35px;
  font-size: 12px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dt {
    width: 35px;
    width: 4.667vw;
    font-size: clamp(10px, 2.667vw, 2.667vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -24px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child {
    display: block;
    margin: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div {
  width: 33.33333333%;
  padding: 0 24px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div+div {
  position: relative;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div+div {
    padding-top: 12px;
    margin-top: 12px;
    padding-top: 1.6vw;
    margin-top: 1.6vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div+div::before {
  content: '';
  background: #c1b5ca;
  width: 1px;
  height: 85%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div+div::before {
    width: 100%;
    height: 1px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div {
    width: auto;
    padding: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div dt {
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div dt {
    font-size: clamp(9px, 2.4vw, 2.4vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div dd {
  font-size: 11px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list dl.note>dd dl.child>div dd {
    font-size: clamp(9px, 2.4vw, 2.4vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal {
    max-width: none;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block {
  margin: 0 -10px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -8px;
    margin: 0 -1.067vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set {
  width: 33.33333333%;
  padding: 0 10px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set+.set::before {
  content: none;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set+.set {
    border: none;
    padding-top: 0;
    margin-top: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set {
    padding: 0 8px;
    padding: 0 1.067vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set .circle {
  /**
  width: 214px;
  height: 214px;
  @include media900{
    width: 198px;
    height: 198px;
    width: 26.4vw;//750
    height: 26.4vw;//750
  }
  **/
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set .circle {
    width: 220px;
    height: 220px;
    width: 29.333vw;
    height: 29.333vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .triple_list.normal>.block .set .circle .circle_inner h4.ttl {
  padding-left: 0;
  text-indent: 0;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list {
  max-width: 732px;
  margin-left: auto;
  margin-right: auto;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list+ul.note {
  margin-top: 30px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list+ul.note {
    margin-top: 30px;
    margin-top: 4vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list {
    max-width: none;
    padding: 0 54px;
    padding: 0 7.2vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -40px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block {
    margin: 0 -48px;
    margin: 0 -6.4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set+.set::before {
  content: '';
  width: 32px;
  height: 32px;
  background-image: url(../img/plus.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set+.set::before {
    left: -16px;
    left: -2.133vw;
    width: 32px;
    height: 32px;
    width: 4.267vw;
    height: 4.267vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set {
    padding: 0 48px;
    padding: 0 6.4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square {
  width: 100%;
  height: 100%;
  min-height: 82px;
  /**
  background-image: url(../img/triple_list_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  **/
  border-radius: 12px;
  background: #efe8f4;
  border: 2px #d1c2e2 solid;
  padding: 0.8em 0.5em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square {
    min-height: 14.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl {
  font-size: 16px;
  color: #604cb6;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl sup {
  font-size: 50%;
}

@media only screen and (max-width: 480px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl sup {
    left: 2px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    display: inline-block;
    padding-left: 1.6em;
    padding-right: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl span.sub {
  font-size: 20px;
  font-weight: bold;
  color: #604cb6;
  line-height: 1;
  display: block;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl span.sub {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl span.sub>span {
  font-size: 36px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .double_list>.block .set .square .square_inner h4.ttl span.sub>span {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list {
    display: block;
    border-radius: 20px;
    border-radius: 2.667vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list {
    margin-left: -1.067vw;
    margin-right: -1.067vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec {
    width: auto;
    padding: 32px 0;
    padding: 4.267vw 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec h4.ttl {
  font-family: 'Satoshi-Bold', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec h4.ttl {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec p.catch {
  font-size: 14px;
  color: #fff;
  margin-bottom: 1.5em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec p.catch {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -5px -10px;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block+p.note {
  margin-top: 1em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block {
    margin: 0 -8px -16px;
    margin: 0 -1.067vw -2.133vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block .set {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block .set {
    padding: 0 8px;
    margin-bottom: 16px;
    padding: 0 1.067vw;
    margin-bottom: 2.133vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block .set .set_inner {
  border-radius: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block .set .set_inner {
    border-radius: 20px;
    border-radius: 2.667vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block .set .set_inner .img {
  text-align: center;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column2 {
  max-width: 250px;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column2 {
    max-width: 550px;
    max-width: 73.333vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column2 .set {
  width: 50%;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column2 .set {
    width: 33.33333333%;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column3 {
  max-width: 375px;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column3 {
    max-width: 550px;
    max-width: 73.333vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column3 .set {
  width: 33.33333333%;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec .block.column3 .set {
    width: 33.33333333%;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec p.note {
  font-size: 13px;
  font-weight: 500;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec p.note {
    font-size: clamp(10px, 2.667vw, 2.667vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec.pink {
  background: #f19cc1;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec.pink p.note {
  color: #e4007f;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec.blue {
  background: #7bcded;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .icon_list .sec.blue p.note {
  color: #008ac9;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt {
  max-width: 480px;
  margin: 0 auto;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .img {
  width: 180px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .img {
    width: 32.533vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt {
  font-family: 'FP-こぶりなゴシック StdN W6', serif;
  font-family: 'FP-こぶりなゴシック StdN W6', 'Noto Sans Japanese', serif;
  font-size: 20px;
  color: #e4007f;
  text-align: center;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt+dd {
  margin-top: 0.4em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt {
    font-size: 4.133vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line {
    padding: 0 2.133vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::before,
#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::after {
  content: '';
  background: #e4007f;
  width: 2px;
  height: 80%;
  display: block;
  position: absolute;
}

@media only screen and (max-width: 900px) {

  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::before,
  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::after {
    height: 75%;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-20deg);
  -ms-transform: translateY(-50%) rotate(-20deg);
  transform: translateY(-50%) rotate(-20deg);
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dt span.line::after {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(20deg);
  -ms-transform: translateY(-50%) rotate(20deg);
  transform: translateY(-50%) rotate(20deg);
}

#contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #604cb6;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .center_imgtxt .imgtxt .txt dl dd {
    font-size: 2.933vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link {
  max-width: 740px;
  margin: 80px auto 0;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link {
    max-width: 74.4vw;
    margin: 18.667vw auto 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .cont_ttl {
  margin-bottom: 20px;
  margin-left: -5em;
  margin-right: -5em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .cont_ttl {
    margin-bottom: 30px;
    margin-bottom: 4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .cont_ttl h3.ttl {
  font-family: 'FP-こぶりなゴシック StdN W3';
  font-size: 30px;
  color: #433d95;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .cont_ttl h3.ttl {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .cont_ttl h3.ttl span {
  font-family: 'FP-こぶりなゴシック StdN W6';
  display: block;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -38px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block {
    display: block;
    margin: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set {
  width: 50%;
  padding: 0 38px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set+.set {
    margin-top: 70px;
    margin-top: 9.333vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set {
    width: auto;
    padding: 0;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt {
  text-align: center;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .ttl {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .ttl+.price {
  margin-top: 0.3em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .ttl {
    font-size: clamp(14px, 3.733vw, 3.733vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .ttl span {
  font-weight: 400;
  font-size: 16px;
  display: block;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .ttl span {
    font-size: clamp(12px, 3.2vw, 3.2vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .price {
  font-family: 'Jost', 'Noto Sans Japanese', serif;
  font-size: 22px;
  line-height: 1.4;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .price {
    font-size: clamp(16px, 4.267vw, 4.267vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .price span.tax {
  font-size: 14px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .txt .price span.tax {
    font-size: clamp(10px, 2.667vw, 2.667vw);
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .btn {
  margin-top: 25px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block .set .set_inner .btn {
    margin-top: 30px;
    margin-top: 4vw;
  }
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block.column1 .set .set_inner .txt .ttl {
  margin-left: -5em;
  margin-right: -5em;
}

#contents .aaaproduct .product_frame .cover .info .info_inner .link .block.column1 .set .set_inner .img.wide {
  margin-left: -5em;
  margin-right: -5em;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame .cover .info .info_inner .link .block.column1 .set .set_inner .img.wide {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .kv {
    padding-top: 41.333vw;
  }
}

#contents .aaaproduct .product_frame.oil .kv .kv_inner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .kv .kv_inner {
    padding-top: 8vw;
  }
}

#contents .aaaproduct .product_frame.oil .kv .kv_inner .txt {
  top: 250px;
  top: 19.531vw;
  right: auto;
  left: 690px;
  left: 53.906vw;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .kv .kv_inner .txt {
    top: 0;
    left: auto;
    right: 48px;
    right: 6.4vw;
  }
}

#contents .aaaproduct .product_frame.oil .kv .kv_inner .txt .ttl span.sub {
  text-align: right;
}

#contents .aaaproduct .product_frame.oil .cover .info::before {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(153, 145, 198, 0.5)),
      color-stop(50%, rgba(236, 227, 255, 0.5)),
      to(rgba(153, 145, 198, 0.5)));
  background: linear-gradient(90deg,
      rgba(153, 145, 198, 0.5) 0%,
      rgba(236, 227, 255, 0.5) 50%,
      rgba(153, 145, 198, 0.5) 100%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .cover .info::after {
    background-image: url(../img/item_bg_bottom_sp_sec2.png);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .cover .info .deco_wrap::after {
    bottom: 72vw;
  }
}

#contents .aaaproduct .product_frame.oil .cover .info .deco_wrap .floating_txt {
  top: 90px;
  top: 120px;
  right: auto;
  left: 50px;
}

@media only screen and (min-width: 1025px) {
  #contents .aaaproduct .product_frame.oil .cover .info .info_inner .grd_ttl {
    margin: 0 -8em;
  }
}

#contents .aaaproduct .product_frame.oil .cover .info .info_inner .triple_list {
  margin-bottom: 80px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.oil .cover .info .info_inner .triple_list {
    margin-bottom: 80px;
    margin-bottom: 10.667vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .kv .kv_inner {
    padding-top: 8vw;
  }
}

#contents .aaaproduct .product_frame.hair .kv .kv_inner .txt {
  top: 240px;
  top: 18.75vw;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .kv .kv_inner .txt {
    top: 0;
  }
}

#contents .aaaproduct .product_frame.hair .cover .info::before {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(228, 177, 207, 0.5)),
      color-stop(50%, rgba(239, 209, 218, 0.5)),
      to(rgba(228, 177, 207, 0.5)));
  background: linear-gradient(90deg,
      rgba(228, 177, 207, 0.5) 0%,
      rgba(239, 209, 218, 0.5) 50%,
      rgba(228, 177, 207, 0.5) 100%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .cover .info::after {
    background-image: url(../img/item_bg_bottom_sp_sec3.png);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .cover .info .deco_wrap::after {
    bottom: 72vw;
  }
}

@media only screen and (min-width: 1025px) {
  #contents .aaaproduct .product_frame.hair .cover .info .info_inner .grd_ttl {
    margin: 0 -8em;
  }
}

#contents .aaaproduct .product_frame.hair .cover .info .info_inner .triple_list {
  margin-bottom: 80px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .cover .info .info_inner .triple_list {
    margin-bottom: 80px;
    margin-bottom: 10.667vw;
  }
}

#contents .aaaproduct .product_frame.hair .cover .info .info_inner .figure.text {
  position: relative;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .cover .info .info_inner .figure.text {
    padding-bottom: 150px;
    padding-bottom: 20vw;
  }
}

#contents .aaaproduct .product_frame.hair .cover .info .info_inner .figure.text .floating {
  position: absolute;
  left: 88px;
  bottom: 80px;
  width: 300px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.hair .cover .info .info_inner .figure.text .floating {
    left: 32px;
    left: 4.267vw;
    bottom: 0;
    width: 290px;
    width: 38.667vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .kv {
    padding-top: 41.333vw;
  }
}

#contents .aaaproduct .product_frame.stick .kv .kv_inner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .kv .kv_inner {
    padding-top: 8vw;
  }
}

#contents .aaaproduct .product_frame.stick .kv .kv_inner .txt {
  top: 250px;
  top: 19.531vw;
  right: auto;
  left: 690px;
  left: 53.906vw;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .kv .kv_inner .txt {
    top: -80px;
    top: -10.667vw;
    left: auto;
    right: 48px;
    right: 6.4vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .kv .kv_inner .txt .ttl span.main {
    text-align: right;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .kv .kv_inner .txt .ttl span.sub {
    text-align: right;
  }
}

#contents .aaaproduct .product_frame.stick .cover .info::before {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(153, 145, 198, 0.5)),
      color-stop(50%, rgba(236, 227, 255, 0.5)),
      to(rgba(153, 145, 198, 0.5)));
  background: linear-gradient(90deg,
      rgba(153, 145, 198, 0.5) 0%,
      rgba(236, 227, 255, 0.5) 50%,
      rgba(153, 145, 198, 0.5) 100%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .cover .info::after {
    background-image: url(../img/item_bg_bottom_sp_sec4.png);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.stick .cover .info .deco_wrap::after {
    bottom: 72vw;
  }
}

#contents .aaaproduct .product_frame.stick .cover .info .deco_wrap .floating_txt {
  top: 90px;
  top: 120px;
  right: auto;
  left: 50px;
}

@media only screen and (min-width: 1025px) {
  #contents .aaaproduct .product_frame.stick .cover .info .info_inner .grd_ttl {
    margin: 0 -8em;
  }
}

#contents .aaaproduct .product_frame.stick .cover .info .info_inner .figure.wide {
  margin-left: -96px;
  margin-right: -96px;
}

@media screen and (max-width: 1200px) {
  #contents .aaaproduct .product_frame.stick .cover .info .info_inner .figure.wide {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .kv {
    padding-top: 41.333vw;
  }
}

#contents .aaaproduct .product_frame.milk .kv .kv_inner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .kv .kv_inner {
    padding-top: 8vw;
  }
}

#contents .aaaproduct .product_frame.milk .kv .kv_inner .txt {
  top: 250px;
  top: 19.531vw;
  right: auto;
  left: 690px;
  left: 53.906vw;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .kv .kv_inner .txt {
    top: -80px;
    top: -10.667vw;
    left: auto;
    right: 48px;
    right: 6.4vw;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .kv .kv_inner .txt .ttl span.main {
    text-align: right;
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .kv .kv_inner .txt .ttl span.sub {
    text-align: right;
  }
}

#contents .aaaproduct .product_frame.milk .cover .info::before {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(153, 145, 198, 0.5)),
      color-stop(50%, rgba(236, 227, 255, 0.5)),
      to(rgba(153, 145, 198, 0.5)));
  background: linear-gradient(90deg,
      rgba(153, 145, 198, 0.5) 0%,
      rgba(236, 227, 255, 0.5) 50%,
      rgba(153, 145, 198, 0.5) 100%);
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .cover .info::after {
    background-image: url(../img/item_bg_bottom_sp_sec4.png);
  }
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .cover .info .deco_wrap::after {
    bottom: 72vw;
  }
}

#contents .aaaproduct .product_frame.milk .cover .info .deco_wrap .floating_txt {
  top: 90px;
  top: 120px;
  right: auto;
  left: 50px;
}

@media only screen and (min-width: 1025px) {
  #contents .aaaproduct .product_frame.milk .cover .info .info_inner .grd_ttl {
    margin: 0 -8em;
  }
}

#contents .aaaproduct .product_frame.milk .cover .info .info_inner .figure {
  margin-top: 100px;
}

@media only screen and (max-width: 900px) {
  #contents .aaaproduct .product_frame.milk .cover .info .info_inner .figure {
    margin-top: 70px;
    margin-top: 9.333vw;
  }
}

#contents .aaaproduct .product_frame.milk .cover .info .info_inner .figure.wide {
  margin-left: -96px;
  margin-right: -96px;
}

@media screen and (max-width: 1200px) {
  #contents .aaaproduct .product_frame.milk .cover .info .info_inner .figure.wide {
    margin-left: 0;
    margin-right: 0;
  }
}
body {
  letter-spacing: 0;
  overflow-x: hidden;
}
.pane-main {
  overflow-x: hidden;
}
.pane-main h1 {
  margin: 0;
  padding: 0;
}
.pane-main h2 {
  margin: 0;
  padding: 0;
}
.pane-main h3 {
  margin: 0;
  padding: 0;
}
.block-category-list--header {
  display: none;
}
.block_category_header {
  display: none;
}
.block-topic-path {
  display: none;
}
.pane-topic-path {
  display: none;
}
.block-category-list--goods {
  display: none;
}
.btn {
  display: block;
  margin: 0;
  padding: 0;
}
sup {
  vertical-align: baseline;
}
.price {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: #6d90d4;
}
