@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
.clearfix:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

@keyframes slidedown {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes slideup {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
del,
em,
img,
small,
strong,
b,
u,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
button,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  word-wrap: break-word;
}

html {
  font-size: 62.5%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: inherit;
  font-weight: inherit;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

a img {
  border: none;
}

article,
aside,
details,
figure,
footer,
header,
menu,
nav,
section,
summary {
  display: block;
}

:root {
  --cl-primary: #008A95;
  --cl-secondary: #008A95;
}

html,
body {
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  html,
  body {
    height: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #333;
}

* {
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
*:before, *:after {
  box-sizing: border-box;
}

a {
  transition: opacity 400ms ease;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h5,
h6 {
  line-height: 1.5;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

li,
ol {
  list-style: none;
}

button:focus,
input:focus,
a:focus {
  outline: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/*------------------- Wraper -------------------*/
.wrapper {
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  transform-origin: 0 0;
  position: relative;
  background-color: #fff;
}
@media only screen and (max-width: 480px) {
  .wrapper {
    width: 375px;
    height: auto;
    z-index: 50;
  }
}

#header {
  height: 96px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  transition-delay: 0.5s;
}
#header .logo_rakuvia {
  width: 150px;
}

.header_menu {
  display: flex;
  margin-left: auto;
  margin-right: 27px;
}

.header_menu_btn {
  position: relative;
  width: 96px;
  height: 80px;
  margin: 8px 4px 0;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.header_menu_btn img {
  width: 64px;
  height: 64px;
  margin-top: -4px;
  margin-bottom: -4px;
}

@media only screen and (max-width: 480px) {
  #header {
    height: 48px;
    box-shadow: none;
  }
  #header > figure img {
    width: 104px;
  }
  #header .logo_rakuvia {
    width: 70px;
  }
  .header_menu {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(100%);
    flex-direction: column;
    background: #E6E6E6;
    width: 300px;
    height: 100vh;
    box-sizing: border-box;
    padding: 0 12px;
    margin-right: 0;
    z-index: 20;
  }
  .header_menu.is-show {
    transform: translateX(0);
  }
  .header_menu_container {
    position: absolute;
    right: 0;
    top: 48px;
    width: 100%;
    height: 100vh;
    background: none;
    pointer-events: none;
  }
  .header_menu_container.is-show {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }
  .header_menu_btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    margin: 0;
    border-radius: 0;
    line-height: 48px;
    text-align: left;
    border: solid #ccc;
    border-width: 0 0 1px 0;
    color: #333;
    font-size: 14px;
    font-weight: bold;
  }
  .header_menu_btn a {
    display: flex;
    align-items: center;
  }
  .header_menu_btn img {
    width: 32px;
    height: 32px;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 16px;
    margin-left: 0;
  }
  .header_menu_toggle {
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 0.6rem;
    background-size: 32px 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../image/common/ic_menu.png);
    position: absolute;
    right: 8px;
    top: 8px;
  }
  .header_menu_toggle.is-show {
    background-image: url(../image/common/ic_menu_close.png);
  }
}
#main {
  display: flex;
  padding: 96px 15px 0 0;
  position: relative;
  background-color: #fff;
  z-index: 1;
  height: 100%;
}
@media only screen and (max-width: 480px) {
  #main {
    padding: 48px 0 0;
    display: block;
  }
}

.main_left {
  width: 1218px;
  flex: 0 0 auto;
  padding: 16px 25px 0;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .main_left {
    width: 100%;
    padding: 0;
  }
}

.main_right {
  flex: 1 1 auto;
  height: 984px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0px;
  padding-left: 25px;
  padding-top: 16px;
}
@media only screen and (max-width: 480px) {
  .main_right {
    overflow: hidden;
    padding: 0;
    height: auto;
  }
}
.main_right_scroll {
  width: 652px;
}
@media only screen and (max-width: 480px) {
  .main_right_scroll {
    width: 100%;
  }
}
.main_right::-webkit-scrollbar {
  width: 10px;
}
.main_right::-webkit-scrollbar-thumb {
  background-color: #9D9D9D;
  border-radius: 8px;
}

/*---- Main left ---*/
.main_img {
  position: relative;
}

.img_list {
  width: 100%;
  text-align: center;
  height: 876px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .img_list {
    height: 281px;
  }
}
.img_list img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#angelB {
  display: none;
}

#angelC {
  display: none;
}

#angelD {
  display: none;
}

/*---- list btn main ---*/
.list_btn_main {
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 99;
}
.list_btn_main li {
  margin-left: 16px;
}
.list_btn_main li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: var(--cl-secondary);
}
.list_btn_main li a img {
  width: 30px;
}
@media only screen and (max-width: 480px) {
  .list_btn_main {
    top: 8px;
    right: 8px;
  }
  .list_btn_main li {
    margin-left: 8px;
  }
  .list_btn_main li a {
    width: 44px;
    height: 44px;
  }
  .list_btn_main li a img {
    width: 18px;
  }
  .list_btn_main_left {
    display: flex;
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 99;
  }
  .list_btn_main_left li {
    margin-left: 8px;
  }
  .list_btn_main_left li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background-color: var(--cl-secondary);
  }
  .list_btn_main_left li a img {
    width: 18px;
  }
  .list_btn_main_left li a.ic_change_w img {
    width: 30px;
  }
}

/*---- menu_tab ---*/
@media only screen and (max-width: 480px) {
  #menu_tab {
    display: block;
    width: 100%;
    overflow-x: auto;
    padding-top: 8px;
    background: #666;
    margin-bottom: 17px;
  }
  #menu_tab::-webkit-scrollbar {
    height: 0;
    width: 0;
  }
  #menu_tab ul {
    width: auto;
    display: flex;
    padding-left: 2px;
  }
  #menu_tab ul li {
    flex: 0 0 auto;
  }
  #menu_tab ul li a {
    float: left;
    padding: 8px 24px 8px 16px;
    height: 36px;
    border-radius: 4px 4px 0 0;
    margin-left: 6px;
    background-color: #D6D6D6;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #A39F9F;
    opacity: 1;
  }
  #menu_tab ul li a.is-active {
    color: var(--cl-primary);
    background-color: #fff;
  }
  #menu_tab ul li a img {
    width: 20px;
    flex: 0 0 auto;
    margin-right: 8px;
  }
}
/*---- main_btn ---*/
.main_btn {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
}
.main_btn_left {
  display: flex;
  align-items: center;
}
.main_btn_left .ic_change {
  font-size: 18px;
  line-height: 20px;
  color: var(--cl-primary);
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.main_btn_left .ic_change img {
  width: 20px;
  position: relative;
  top: -3px;
}
.main_btn_right {
  display: flex;
  align-items: center;
}
.main_btn_right .ic_change_deco {
  font-size: 18px;
  line-height: 20px;
  color: var(--cl-primary);
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.main_btn_right .ic_change_deco img {
  width: 20px;
  position: relative;
  top: -3px;
}

.list_change {
  display: flex;
  margin-left: 16px;
}
.list_change li {
  width: 96px;
}
.list_change li:nth-child(n+2) {
  margin-left: 8px;
}
.list_change a {
  opacity: 0.5;
  border: 1px solid #707070;
  display: block;
}
@media only screen and (max-width: 480px) {
  .list_change a {
    border: none;
  }
}
.list_change a:hover {
  opacity: 1;
}
.list_change a.is-active {
  opacity: 1;
  position: relative;
}
.list_change a.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--cl-secondary);
}

.list_change_deco span {
  font-size: 14px;
  line-height: 20px;
  padding: 1px 0 7px;
  color: #fff;
  font-weight: bold;
  background-color: #B38C51;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .list_change_deco span {
    padding: 5px 0 13px;
  }
}
.list_change_deco li:nth-child(2) span {
  color: #8D8D8D;
  background-color: #FCFCFC;
}
.list_change_deco li:nth-child(3) span {
  color: #fff;
  background-color: #9F5B50;
}
.list_change_deco li:nth-child(4) span {
  color: #fff;
  background-color: #737D83;
}

.ic_zoomout {
  width: 240px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: var(--cl-primary);
  border-radius: 32px;
  display: none;
}
.ic_zoomout img {
  width: 20px;
  flex: 0 0 auto;
  margin-right: 8px;
}

/*---- zoom ---*/
.ic_change_sp {
  display: none;
}

.ic_zoomout_sp {
  display: none;
}

@keyframes zoom {
  0% {
    transform: translateY(-25vh);
    padding-right: 50vw;
  }
  100% {
    transform: translateY(0);
    padding-right: 0;
  }
}
#main,
.main_left,
.main_right {
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 480px) {
  #main,
  .main_left,
  .main_right {
    transition: 0s ease-in-out;
  }
}

@media only screen and (max-width: 480px) {
  #header {
    transition-delay: 0s;
  }
}
@media only screen and (max-width: 480px) {
  .is-zoom #main,
  .is-zoom .main_left,
  .is-zoom .main_right {
    transition: 0.5s ease-in-out;
  }
}
.is-zoom #header {
  z-index: 1;
  transition-delay: 0s;
}
.is-zoom #main {
  padding-top: 0;
  margin-top: 0;
  padding-left: 96px;
  padding-right: 0;
}
@media only screen and (max-width: 480px) {
  .is-zoom #main {
    padding-left: 0;
    display: flex;
    align-items: center;
    text-align: center;
  }
}
.is-zoom .main_img {
  display: flex;
  height: 100%;
}
.is-zoom .main_btn {
  margin-top: 60px;
  align-items: baseline;
}
.is-zoom .img_list {
  flex: 0 0 auto;
  width: calc(100% - 384px);
}
@media only screen and (min-width: 481px) {
  .is-zoom .img_list {
    height: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .is-zoom .img_list {
    width: 100%;
  }
}
.is-zoom .main_left {
  width: 100%;
  margin-right: 0;
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .is-zoom .main_left {
    animation: zoom 0.75s ease;
  }
}
.is-zoom .main_right {
  display: none;
}
.is-zoom .main_btn_right {
  display: none;
}
.is-zoom .main_btn_left {
  flex-wrap: wrap;
  justify-content: center;
}
.is-zoom .main_btn_left .ic_change {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 24px;
}
.is-zoom .main_btn_left .ic_change img {
  width: 24px;
}
.is-zoom .ic_change_sp {
  display: block;
  width: 64px;
  height: 64px;
  background: var(--cl-primary);
  border-radius: 8px;
  color: #fff;
  margin: 0 12px 12px auto;
  text-align: center;
  padding-top: 16px;
  opacity: 1;
}
.is-zoom .ic_change_sp img {
  display: block;
  width: 30px;
  margin: 0 auto 5px;
}
.is-zoom .ic_change_sp span {
  font-size: 10px;
  font-weight: bold;
}
.is-zoom .ic_zoomout_sp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 44px;
  border: 2px solid var(--cl-primary);
  font-size: 14px;
  line-height: 20px;
  color: var(--cl-primary);
  font-weight: bold;
  border-radius: 26px;
  margin-top: 24px;
}
.is-zoom .ic_zoomout_sp figure {
  flex: 0 0 auto;
  width: 16px;
  margin-right: 8px;
}
.is-zoom .list_change {
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
}
.is-zoom .list_change li {
  width: 208px;
}
.is-zoom .list_change li:nth-child(n+2) {
  margin-left: 0;
  margin-top: 8px;
}
.is-zoom .list_change li img {
  width: 100%;
}
.is-zoom .list_change a.is-active::before {
  border-width: 8px;
}
.is-zoom .list_btn_main {
  display: none;
}
.is-zoom .ic_zoomout {
  display: flex;
  margin-top: 32px;
}
.is-zoom #menu_tab {
  display: none;
}
.is-zoom .list_btn_main_left {
  display: none;
}

/*---- Main right ---*/
/*---- selected color ---*/
.selected_color {
  margin-bottom: 16px;
}
.selected_color .title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: var(--cl-primary);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.list_select_color {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.list_select_color li {
  width: 20%;
  padding: 8px;
}
.list_select_color li:nth-child(2) .ttl {
  padding: 0 5px;
}
.list_select_color li .ttl {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  border: 1px solid #DDDDDD;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  font-weight: bold;
  margin-bottom: 4px;
  background-color: #FCFCFC;
  transition: background-color 0.3s ease;
}
.list_select_color li .txt {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
}
.list_select_color li a:hover {
  opacity: 1;
}
.list_select_color li a:hover .ttl {
  background-color: #E5E5E5;
}

/*---- category ---*/
.category {
  padding-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .category {
    padding: 0 12px;
    overflow: auto;
  }
}
@media only screen and (max-width: 480px) {
  .category_list_item {
    display: none;
    padding-bottom: 30px;
  }
  .category_list_item:first-child {
    display: block;
  }
}
.category_list_item:nth-child(n+2) {
  margin-top: 8px;
}
@media only screen and (max-width: 480px) {
  .category_list_item:nth-child(n+2) {
    margin-top: 0;
  }
}
.category_list_item > a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: #6B6B6E;
  padding: 9px 16px;
}
@media only screen and (max-width: 480px) {
  .category_list_item > a {
    display: none;
  }
}
.category_list_item > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 2px;
  height: 16px;
  background-color: #fff;
  margin-top: -7px;
  transition: 0.3s ease-in-out;
}
.category_list_item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.category_list_item > a figure {
  width: 30px;
  flex: 0 0 auto;
  margin-right: 16px;
}
.category_list_item > a.is-active::before {
  content: "";
  transform: rotate(90deg);
}
.category_list_item > a.is-active::after {
  width: 0;
}

/*---- content_list ---*/
.content_list {
  display: none;
}
@media only screen and (max-width: 480px) {
  .content_list {
    display: block !important;
    opacity: 1 !important;
  }
}
.content_list.is-show {
  display: block;
}

/*---- tab_list ---*/
.tab_list {
  display: flex;
  margin: 8px -4px 0;
}
@media only screen and (max-width: 480px) {
  .tab_list {
    margin: 0 -4px 12px;
    position: relative;
  }
  .tab_list:after {
    content: "";
    top: 100%;
    left: 4px;
    right: 4px;
    position: absolute;
    border-bottom: 1px solid #D9D9D9;
  }
}
.tab_list li {
  width: 33.333%;
  padding: 0 4px;
}
.tab_list li a {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(157, 157, 157, 0.8);
  background-color: rgba(214, 214, 214, 0.5);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .tab_list li a {
    font-size: 12px;
    height: 32px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
}
.tab_list li a.is-active {
  color: #000;
  background-color: #D6D6D6;
}

/*---- tab_content ---*/
.tab_content {
  background-color: #D6D6D6;
  padding: 8px;
}
@media only screen and (max-width: 480px) {
  .tab_content {
    background: none;
    padding: 0;
  }
}

.tab_info {
  display: none;
}
.tab_info.is-show {
  display: block;
}

/*---- bl_info ---*/
.bl_info {
  padding: 16px 16px 0 16px;
  background-color: #fff;
}
@media only screen and (max-width: 480px) {
  .bl_info {
    padding: 0;
  }
}
.bl_info:nth-child(n+2) {
  margin-top: 8px;
}
@media only screen and (max-width: 480px) {
  .bl_info:nth-child(n+2) {
    border-top: 1px solid #E6E6E6;
    padding: 12px 0 0 0;
  }
}

.ttl_h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}
@media only screen and (max-width: 480px) {
  .ttl_h3 {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 12px;
  }
}

.ttl_h4 {
  font-size: 16px;
  line-height: 24px;
  padding: 2px 8px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
  background: rgb(107, 107, 110);
  background: linear-gradient(90deg, rgb(107, 107, 110) 0%, rgb(204, 204, 204) 100%);
}
@media only screen and (max-width: 480px) {
  .ttl_h4 {
    font-size: 10px;
    line-height: 1;
    margin-bottom: 8px;
    padding: 5px 8px;
  }
}

/*---- list_menu ---*/
.list_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -3.5px;
}
.list_menu li {
  width: 20%;
  padding: 0 8px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 480px) {
  .list_menu li {
    width: 25%;
    padding: 0 3.5px;
    margin-bottom: 12px;
  }
}
.list_menu li .txt {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
}
@media only screen and (max-width: 480px) {
  .list_menu li .txt {
    font-size: 10px;
    line-height: 14px;
    margin-top: 4px;
  }
}
.list_menu li a {
  position: relative;
  display: block;
}
.list_menu li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  transition: 0.3s ease;
  border: 0 solid #E5E5E5;
}
@media only screen and (max-width: 480px) {
  .list_menu li a:after {
    height: 49px;
  }
}
.list_menu li a.is-active:after {
  border: 6px solid var(--cl-secondary) !important;
}
@media only screen and (max-width: 480px) {
  .list_menu li a.is-active:after {
    border: 4px solid var(--cl-secondary) !important;
  }
}
.list_menu li a:hover {
  opacity: 1;
}
.list_menu li a:hover:after {
  border-width: 8px;
}
@media only screen and (max-width: 480px) {
  .list_menu li a:hover:after {
    border-width: 6px;
  }
}

.blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.blur.is-show {
  z-index: 100;
}

.img_list svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.img_list svg path {
  stroke: none;
  cursor: pointer;
}

.is-disable {
  opacity: 0.3;
  pointer-events: none;
}

.is-disable_show05 {
  opacity: 0.3;
  pointer-events: none;
}

.is-hide_second {
  display: none !important;
}

.is-disable_race_side {
  opacity: 0.3;
  pointer-events: none;
}

.is-disable_mirror {
  opacity: 0.3;
  pointer-events: none;
}

.is-hide {
  display: none !important;
}

.t-center {
  text-align: center;
}

.index01 {
  z-index: 1;
}

.index02 {
  z-index: 2;
}

.index03 {
  z-index: 3;
}

.index04 {
  z-index: 4;
}

.index05 {
  z-index: 5;
}

.index06 {
  z-index: 6;
}

.index07 {
  z-index: 7;
}

.index08 {
  z-index: 8;
}

.index09 {
  z-index: 9;
}

.index10 {
  z-index: 10;
}

.index11 {
  z-index: 11;
}

.index12 {
  z-index: 12;
}

.index13 {
  z-index: 13;
}

.index14 {
  z-index: 14;
}

.index15 {
  z-index: 15;
}

.index16 {
  z-index: 16;
}

.index17 {
  z-index: 17;
}

.index18 {
  z-index: 18;
}

.index19 {
  z-index: 19;
}

.index20 {
  z-index: 20;
}

.index21 {
  z-index: 21;
}

.index22 {
  z-index: 22;
}

.index23 {
  z-index: 23;
}

.index24 {
  z-index: 24;
}

.index25 {
  z-index: 25;
}

.index26 {
  z-index: 26;
}

.index30 {
  z-index: 30;
}

@media only screen and (min-width: 481px) {
  .pcNone {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .spNone {
    display: none !important;
  }
}
.modal {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.5);
  right: 0;
  bottom: 0;
  padding: 0 34px;
  display: none;
  z-index: 999;
}
@media only screen and (max-width: 480px) {
  .modal {
    position: fixed;
    padding: 0 12px;
  }
}
.modal_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}
@media only screen and (max-width: 480px) {
  .modal_container {
    padding: 68px 0 20px;
  }
}
.modal_content {
  width: 100%;
  border-radius: 8px;
  overflow: auto;
  max-height: 100%;
}
.modal_header {
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--cl-primary);
}
@media only screen and (max-width: 480px) {
  .modal_header {
    height: 48px;
  }
}
.modal_header_title {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .modal_header_title {
    font-size: 16px;
  }
}
.modal_close {
  width: 160px;
  height: 40px;
  padding-left: 16px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 19px;
  position: absolute;
  top: 12px;
  right: 17px;
  cursor: pointer;
}
.modal_close:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 14px;
  background: url("../image/common/ic_close.png") no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 480px) {
  .modal_close {
    font-size: 10px;
    font-weight: bold;
    width: 72px;
    height: 24px;
    right: 11px;
  }
  .modal_close:before {
    margin-top: -4px;
    left: 6px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.modal_contents {
  background-color: #fff;
  height: calc(100% - 64px);
}
.change_content {
  background-color: #E6E5E5;
  padding: 32px 42px 48px;
}
.change_content .list_change {
  flex-wrap: wrap;
  display: grid;
  gap: 12px 11px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.change_content .list_change li {
  width: auto;
  margin: 0;
}
.change_content .list_change a {
  opacity: 1;
}
.change_content .txt {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  margin-left: -10px;
  margin-right: -10px;
}

.recommend_content {
  display: flex;
  background-color: #fff;
}
.recommend_content > div {
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .recommend_content {
    display: block;
  }
  .recommend_content > div {
    width: 100%;
  }
}
.recommend_left {
  text-align: center;
  padding: 40px 32px 48px;
  background-color: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .recommend_left {
    padding: 32px 32px 48px;
  }
}
.recommend_left .txt {
  font-size: 18px;
  line-height: 20px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 32px;
}
@media only screen and (max-width: 480px) {
  .recommend_left .txt {
    font-size: 14px;
    line-height: 20px;
    margin: 0 -5px 20px;
  }
}
.recommend_left .img_main_recommend {
  margin-bottom: 24px;
}
.recommend_left .btn_simulate {
  background-color: var(--cl-primary);
  width: 360px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-radius: 28px;
}
@media only screen and (max-width: 480px) {
  .recommend_left .btn_simulate {
    width: 100%;
    height: 44px;
    font-size: 14px;
    border-radius: 26px;
  }
}
.recommend_right {
  text-align: center;
  padding: 40px 32px 48px;
}
.recommend_right .txt {
  font-size: 20px;
  line-height: 20px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 32px;
}
@media only screen and (max-width: 480px) {
  .recommend_right .txt {
    font-size: 14px;
    line-height: 20px;
    margin: 0 -5px 20px;
  }
}
.recommend_right .list_recommend_simulate {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 24px 25px;
}
@media only screen and (max-width: 480px) {
  .recommend_right .list_recommend_simulate {
    gap: 12px 11px;
  }
}
.recommend_right .item {
  position: relative;
}
.recommend_right .item::after {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 12px solid #DDDDDD;
  transition: 0.3s ease;
  opacity: 0;
}
.recommend_right .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid var(--cl-secondary);
  transition: 0.3s ease;
  opacity: 0;
}
@media only screen and (max-width: 480px) {
  .recommend_right .item::before {
    border: 6px solid var(--cl-secondary);
  }
}
.recommend_right .item:hover {
  opacity: 1;
}
.recommend_right .item:hover::after {
  opacity: 1;
}
.recommend_right .item.is-active::before {
  opacity: 1;
}
.recommend_right .item.is-active:after {
  content: none;
}

.insta_content {
  text-align: center;
  padding: 48px 24px 80px;
  background-color: rgba(230, 229, 229, 0.95);
  position: relative;
}
@media only screen and (max-width: 480px) {
  .insta_content {
    padding: 32px 20px;
  }
}
.insta_content .lds-spinner {
  display: none;
}
.insta_content > .txt {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 480px) {
  .insta_content > .txt {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
.insta_content .modal_instagram_txt {
  background: #fff;
  margin: 0 -20px 30px;
  padding: 15px 20px;
  text-align: left;
}
.insta_content .modal_instagram_txt_color {
  color: var(--cl-primary);
  font-weight: bold;
}
.insta_content .list_recommend_simulate {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 16px;
}
@media only screen and (max-width: 480px) {
  .insta_content .list_recommend_simulate {
    grid-template-columns: auto auto;
  }
}
.insta_content .list_recommend_simulate .txt {
  font-size: 20px;
  line-height: 21px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media only screen and (max-width: 480px) {
  .insta_content .list_recommend_simulate .txt {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 11px;
  }
}
.insta_content .list_recommend_simulate .img {
  margin-bottom: 8px;
  width: 208px;
  height: 208px;
  background-color: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .insta_content .list_recommend_simulate .img {
    width: 147px;
    height: 147px;
    overflow: hidden;
  }
}
.insta_content .btn_save_insta {
  display: flex;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 2px solid var(--cl-primary);
  font-size: 20px;
  font-weight: bold;
  color: var(--cl-primary);
  transition: 0.3s ease;
  opacity: 1;
}
@media only screen and (max-width: 480px) {
  .insta_content .btn_save_insta {
    height: 44px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 26px;
    margin-top: 0;
  }
}
.insta_content .btn_save_insta:hover {
  background-color: var(--cl-primary);
  color: #fff;
}
.insta_content .btn_save_insta.is-disable {
  opacity: 0.5;
}

.img_list_mutil {
  display: grid;
  grid-template-columns: auto auto;
  height: 60%;
}
.img_list_mutil_parent .selected_color .title {
  color: #333;
  background: none;
  padding: 24px 24px 12px;
  height: auto;
  border-radius: 0;
}
.img_list_mutil_parent .list_select_color li {
  width: 10%;
}
.img_list_mutil_parent .list_select_color li .ttl {
  height: 42px;
  font-size: 12px;
  line-height: 16px;
}
.img_list_mutil .is-save img {
  width: 100%;
  position: absolute;
  left: 50% !important;
  height: auto !important;
  max-width: none;
  top: 50%;
  transform: translate(-50%, -50%);
}

.is-save {
  position: relative;
  overflow: hidden;
}
.is-save img {
  width: auto;
  position: absolute;
  left: 0;
  max-width: none;
  height: 100%;
}

#angelB.is-save img {
  height: 103%;
}

#angelD.is-save img {
  left: -345px;
}

.howto_content {
  text-align: center;
  padding: 48px 80px;
  background-color: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .howto_content {
    padding: 32px 20px;
  }
}

.url_content {
  text-align: center;
  padding: 48px 40px;
  background-color: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .url_content {
    padding: 32px 20px;
  }
}
.url_content #id_qrcode {
  padding: 20px;
  background: #fff;
  display: inline-block;
  width: 240px;
  height: 240px;
}
.url_content .modal_url_text {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin: 48px 0;
  text-align: left;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  .url_content .modal_url_text {
    margin: 30px 0;
    padding: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
  }
}
.url_content #modal_url_textarea {
  background: #fff;
  width: 100%;
  margin-bottom: 48px;
  box-sizing: border-box;
  padding: 36px 32px;
  color: #000;
  resize: none;
  border: none;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  line-height: 28px;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
@media only screen and (max-width: 480px) {
  .url_content #modal_url_textarea {
    padding: 10px;
    font-size: 15px;
    height: 130px;
    line-height: 22px;
    margin-bottom: 30px;
  }
}
.url_content .btn_copy {
  width: 400px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--cl-primary);
  border-radius: 28px;
  border: 2px solid var(--cl-primary);
  cursor: pointer;
}
@media only screen and (max-width: 480px) {
  .url_content .btn_copy {
    width: 100%;
    height: 44px;
    border: 2px solid var(--cl-primary);
    font-size: 14px;
    line-height: 20px;
    color: var(--cl-primary);
    font-weight: bold;
    border-radius: 26px;
    margin-top: 0;
  }
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .lds-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.loading .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.loading .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.loading .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.loading .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.loading .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.loading .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.loading .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.loading .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.loading .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.loading .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.loading .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.loading .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.loading .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#print_contents {
  text-align: center;
  pointer-events: none;
  max-width: 1200px;
  padding: 2%;
}
@media only screen and (max-width: 480px) {
  #print_contents {
    padding: 2% 2% 4%;
  }
}
#print_contents .logo_print {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  #print_contents .logo_print img {
    width: 104px;
  }
}
#print_contents .logo_print_right {
  display: flex;
  padding-right: 30px;
}
#print_contents .logo_print_right span {
  flex: 0 0 auto;
  margin-top: 12px;
  margin-right: 10px;
  font-size: 14px;
}
#print_contents .logo_print_right img {
  width: 150px;
}
@media only screen and (max-width: 480px) {
  #print_contents .logo_print_right {
    padding-right: 10px;
  }
  #print_contents .logo_print_right span {
    margin-top: 6px;
    margin-right: 6px;
    font-size: 7px;
  }
  #print_contents .logo_print_right img {
    width: 70px;
  }
}
#print_contents .txt_select {
  font-weight: bold;
  padding: 1% 2% 3%;
  font-size: 2.2em;
  line-height: 2.8em;
  margin-bottom: -2em;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  #print_contents .txt_select {
    display: none;
  }
}
#print_contents .boxQR {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 20em;
  text-align: right;
  margin-bottom: 5.1em;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  #print_contents .boxQR {
    margin-bottom: 4em;
  }
}
#print_contents .boxQR #id_qrcode2 {
  width: 100%;
  width: 100px;
  height: 100px;
  margin-left: auto;
}
#print_contents .boxQR .modal_date {
  width: 100%;
  border-top: 1px solid #000;
  padding-top: 1em;
  margin-top: 1em;
  text-align: right;
  font-size: 1.7em;
}
@media only screen and (max-width: 480px) {
  #print_contents .boxQR .modal_date {
    font-size: 1.2em;
  }
}
#print_contents .list_select_color_print {
  text-align: left;
  width: 65%;
  margin-bottom: 1%;
}
@media only screen and (max-width: 480px) {
  #print_contents .list_select_color_print {
    display: none;
  }
}
#print_contents .list_select_color_print li {
  page-break-inside: avoid;
}
#print_contents .print_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1% 0 0;
}
@media only screen and (max-width: 480px) {
  #print_contents .print_bottom {
    padding: 0 3% 0 0;
    margin-top: 20px;
    justify-content: flex-end;
  }
}

.img_list_print .img_list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 11px;
  height: auto;
}
.img_list_print .img_list > div {
  display: block !important;
  position: relative;
}
.img_list_print .img_list img#wallFull {
  position: relative;
}

.img_list_print_container {
  position: relative;
  padding: 0 3%;
  height: 780px;
}
@media only screen and (max-width: 480px) {
  .img_list_print_container {
    height: 240px;
  }
}
.img_list_print_container .loading {
  z-index: 1001;
}
.img_list_print_container:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 3%;
  right: 3%;
  background: rgb(230, 229, 229);
  z-index: 1000;
  opacity: 1;
  transition: 0.5s ease;
}
.img_list_print_container.is-hidebg::before {
  opacity: 0;
}
.img_list_print_container.is-hidebg .loading {
  display: none;
}

.print_btn {
  width: 400px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--cl-primary);
  border-radius: 28px;
  border: 2px solid var(--cl-primary);
  cursor: pointer;
  pointer-events: auto;
}
@media only screen and (max-width: 480px) {
  .print_btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 26px;
    margin-top: 0;
  }
}

/*** modal favorite ***/
.modal_favorite .modal_contents {
  display: block;
}
.modal_favorite .modal_favorite_text {
  padding: 25px 0;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  background: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .modal_favorite .modal_favorite_text {
    line-height: 22px;
    font-size: 12px;
    padding: 18px 0;
  }
}
.modal_favorite .favorite_content {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 30px 0;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_content {
    padding: 20px 0;
  }
}
.modal_favorite .img_list {
  height: 368px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .img_list {
    height: 117px;
  }
}
.modal_favorite .favorite_simu {
  width: 50%;
  padding: 0 40px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu {
    padding: 0 10px;
  }
}
.modal_favorite .favorite_simu_content {
  padding-right: 20px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu_content {
    padding-right: 10px;
  }
}
.modal_favorite .favorite_simu .ttl {
  color: #fff;
  background-color: var(--cl-primary);
  font-size: 16px;
  font-weight: bold;
  padding-left: 18px;
  height: 32px;
  line-height: 32px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu .ttl {
    font-size: 12px;
    padding-left: 12px;
    height: 28px;
    line-height: 28px;
  }
}
.modal_favorite .modal_btn_small {
  border: solid 2px var(--cl-primary);
  box-sizing: border-box;
  border-radius: 32px;
  color: var(--cl-primary);
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 120px;
  height: 32px;
  font-size: 16px;
  line-height: 28px;
  pointer-events: none;
  margin-right: 12px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .modal_btn_small {
    border-width: 1px;
    width: 70px;
    height: 20px;
    font-size: 11px;
    line-height: 18px;
    margin-right: 5px;
  }
}
.modal_favorite .favorite_simu_txt1 {
  margin-top: 8px;
  line-height: 32px;
  margin-bottom: 24px;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu_txt1 {
    line-height: 15px;
    margin-bottom: 15px;
    font-size: 10px;
  }
}
.modal_favorite .favorite_simu_txt2 {
  margin-top: 8px;
  line-height: 32px;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu_txt2 {
    line-height: 15px;
    margin-bottom: 15px;
    font-size: 10px;
  }
}
.modal_favorite .favorite_simu_txt_notice {
  font-size: 14px;
  color: #999;
  margin-top: 52px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_simu_txt_notice {
    line-height: 13px;
    margin-top: 15px;
    font-size: 8px;
  }
}
.modal_favorite .favorite_list {
  display: flex;
  flex-wrap: wrap;
  padding: 32px 20px;
  background-color: rgba(230, 229, 229, 0.95);
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_list {
    padding: 20px 0;
  }
}
.modal_favorite .favorite_list * {
  box-sizing: border-box;
}
.modal_favorite .favorite_list_item {
  width: 25%;
  justify-content: center;
  padding: 0 20px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_list_item {
    width: 50%;
    padding: 0 10px;
  }
  .modal_favorite .favorite_list_item:nth-child(n+3) {
    margin-top: 20px;
  }
}
.modal_favorite .favorite_list .ttl {
  color: #fff;
  background-color: var(--cl-primary);
  font-size: 16px;
  font-weight: bold;
  padding-left: 18px;
  height: 32px;
  line-height: 32px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .favorite_list .ttl {
    font-size: 12px;
    padding-left: 12px;
    height: 28px;
    line-height: 28px;
  }
}
.modal_favorite .group_btn {
  display: flex;
  justify-content: center;
}
.modal_favorite .group_btn span {
  margin: 0 5px;
  pointer-events: auto;
}
.modal_favorite .group_btn span.is-disable {
  pointer-events: none;
  color: #323232;
  border-color: #323232;
  opacity: 0.2;
}
.modal_favorite .is-btn02 {
  display: none;
}
.modal_favorite .simu_favorite_item {
  margin-bottom: 20px;
}
.modal_favorite .simu_favorite_item .img_list {
  height: 178px;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .simu_favorite_item .img_list {
    height: 117px;
  }
}
.modal_favorite #simu_favorite {
  position: relative;
  width: 100%;
}
.modal_favorite #simu_favorite img {
  width: 100%;
}
.modal_favorite .simu_favorite_item {
  position: relative;
  width: 100%;
  height: 178px;
  background: #fff;
}
@media only screen and (max-width: 480px) {
  .modal_favorite .simu_favorite_item {
    height: 117px;
    margin-bottom: 10px;
  }
}
.modal_favorite .simu_favorite_item img {
  width: 100% !important;
}/*# sourceMappingURL=style.css.map */