@charset "UTF-8";
/* CSS Document */
/******
変数、mixin
******/
/******
タグのリセット
******/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
html,
body {
  width: 100%;
  height: 100%;
  overscroll-behavior-y: none;
}

html {
  color: #333;
  background-color: #fff;
  /*Noto*/
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

body,
ul,
p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  border: 0;
  -webkit-touch-callout: none;
  pointer-events: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: inherit;
}

*:focus {
  outline: none;
}

/******
汎用クラス
******/
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/******
transition
******/
.fade-enter-active, .fade-leave-active {
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-leave-active {
  pointer-events: none;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.first .simu_img.fade-enter-active,
.first .simu_img.fade-leave-active {
  transition: none;
}

/******
コンテンツ内汎用クラス
******/
.to_menu {
  cursor: pointer;
}

.chip {
  border: solid 1px #e9e9e9;
}

.btn-round {
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .btn-round {
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
}

/******
structure
******/
body {
  background: #333;
  overflow: hidden;
}
@media (max-width: 480px) {
  body {
    /*overflow: auto;*/
  }
}

#header,
#main,
#footer {
  width: 100%;
}

#main {
  position: relative;
  width: 1920px;
  height: 1080px;
  overflow: auto;
  transform-origin: 0 0;
  background: #E6E6E6;
}
@media (max-width: 480px) {
  #main {
    width: 375px;
    overflow: hidden;
  }
}

/******
header
******/
#header {
  position: absolute;
  display: flex;
  z-index: 60;
  height: 96px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}
@media (max-width: 480px) {
  #header {
    height: 44px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    display: block;
  }
}

#header .logo {
  height: 100%;
}

.header_breadcrumbs,
.page_breadcrumbs {
  display: flex;
  height: 100%;
  font-weight: bold;
}

.page_breadcrumbs {
  align-items: center;
  height: 56px;
}
@media (max-width: 480px) {
  .page_breadcrumbs {
    height: 28px;
  }
}

.header_breadcrumbs {
  align-items: center;
  margin-left: 48px;
}

.header_breadcrumbs_item {
  position: relative;
  padding-left: 64px;
  font-weight: bold;
}
.header_breadcrumbs_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 64px;
  height: 100%;
  background-image: url(../img/arrow_breadcrumbs.png);
  background-size: 15px 23px;
  background-repeat: no-repeat;
  background-position: center;
}
.header_breadcrumbs_item.first {
  padding-left: 0;
}
.header_breadcrumbs_item.first::before {
  content: none;
}
.header_breadcrumbs_item.current .header_breadcrumbs_btn {
  color: #fff;
  border-color: #59454F;
  background-color: #59454F;
}
.header_breadcrumbs_item.current::before {
  background-image: url(../img/arrow_breadcrumbs_current.png);
}
.header_breadcrumbs_item.finish {
  cursor: pointer;
}
.header_breadcrumbs_item.finish .header_breadcrumbs_btn {
  color: #59454F;
  border-color: #59454F;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .header_breadcrumbs_item.finish .header_breadcrumbs_btn:hover {
  color: #fff;
  border-color: #59454F;
  background-color: #59454F;
}

.mouse .header_breadcrumbs_item.finish .header_breadcrumbs_btn:focus {
  color: #fff;
  border-color: #59454F;
  background-color: #59454F;
}

.mouse .header_breadcrumbs_item.finish .header_breadcrumbs_btn:active {
  color: #fff;
  border-color: #59454F;
  background-color: #4A3942;
}
.mouse .header_breadcrumbs_item.finish .header_breadcrumbs_btn:active span {
  opacity: 0.8;
}

.touch .header_breadcrumbs_item.finish .header_breadcrumbs_btn:active {
  color: #fff;
  border-color: #59454F;
  background-color: #4A3942;
}
.touch .header_breadcrumbs_item.finish .header_breadcrumbs_btn:active span {
  opacity: 0.8;
}

.touch .header_breadcrumbs_item.finish .header_breadcrumbs_btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .header_breadcrumbs_item.finish .header_breadcrumbs_btn input, .touch .header_breadcrumbs_item.finish .header_breadcrumbs_btn select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.header_breadcrumbs_btn {
  display: block;
  box-sizing: border-box;
  border-radius: 16px;
  border: solid 2px;
  width: 160px;
  height: 32px;
  text-align: center;
  line-height: 28px;
  color: #ccc;
  border-color: #ccc;
  font-size: 14px;
  letter-spacing: 1px;
}

.header_menu_toggle {
  width: 44px;
  height: 100%;
  margin-right: 6px;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/ic_menu.png");
  float: right;
}
.header_menu_toggle.current {
  background-image: url("../img/ic_menu_close.png");
}

.header_menu {
  display: flex;
  margin-left: auto;
  margin-right: 32px;
}
@media (max-width: 480px) {
  .header_menu {
    position: absolute;
    top: 44px;
    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.sp_show {
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .header_menu_bg_sp {
    position: absolute;
    top: 44px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
  }
}

.header_menu_btn {
  width: 96px;
  height: 80px;
  margin: 8px 8px 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;
}
.mouse .header_menu_btn:hover {
  background-color: #f2f2f2;
}
.mouse .header_menu_btn:hover img, .mouse .header_menu_btn:hover p {
  opacity: 0.8;
}

.mouse .header_menu_btn:focus {
  background-color: #f2f2f2;
}
.mouse .header_menu_btn:focus img, .mouse .header_menu_btn:focus p {
  opacity: 0.8;
}

.mouse .header_menu_btn:active {
  background-color: #ccc;
}
.mouse .header_menu_btn:active img, .mouse .header_menu_btn:active p {
  opacity: 0.8;
}

.touch .header_menu_btn:active {
  background-color: #ccc;
}
.touch .header_menu_btn:active img, .touch .header_menu_btn:active p {
  opacity: 0.8;
}

.touch .header_menu_btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .header_menu_btn input, .touch .header_menu_btn select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

@media (max-width: 480px) {
  .header_menu_btn {
    display: flex;
    align-items: center;
    width: 276px;
    height: 48px;
    margin: 0;
    border-radius: 0;
    line-height: 48px;
    text-align: left;
    border: solid #ccc;
    border-width: 0 0 1px 0;
    color: #333;
  }
}
.header_menu_btn a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .header_menu_btn a {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.header_menu_btn #imagesave_link {
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .header_menu_btn #imagesave_link {
    display: flex;
    align-items: center;
  }
}

.header_menu_btn img {
  width: 64px;
  height: 64px;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (max-width: 480px) {
  .header_menu_btn img {
    width: 32px;
    height: 32px;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 16px;
    padding-left: 8px;
  }
}

/******
page
******/
.page {
  position: absolute;
  width: 100%;
  top: 96px;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
@media (max-width: 480px) {
  .page {
    top: 44px;
  }
}
.page.current {
  display: block;
  opacity: 1;
}

.page-inner {
  position: relative;
  width: 1280px;
  height: 984px;
  margin: auto;
}
@media (max-width: 480px) {
  .page-inner {
    width: 328px;
    height: auto;
  }
}

.page-enter-to,
.page-leave {
  opacity: 1;
}

.page-enter,
.page-leave-to {
  opacity: 0;
}

/******
page-step
******/
@media (max-width: 480px) {
  #step1 {
    overflow: auto;
    height: calc(100% - 44px);
  }
}

.page_header {
  padding-top: 38px;
  display: flex;
}
@media (max-width: 480px) {
  .page_header {
    padding-top: 31px;
    justify-content: center;
  }
}
.page_header .logo {
  margin-right: 10px;
}
@media (max-width: 480px) {
  .page_header .logo {
    width: 96px;
    height: 32px;
    margin-right: 10px;
  }
}

.page_backbtn {
  position: absolute;
}

.page_backbtn_img {
  width: 64px;
  height: auto;
}

.page_backbtn_txt {
  text-align: center;
}

.page_breadcrumbs_item {
  position: relative;
  font-size: 20px;
  color: #808080;
}
@media (max-width: 480px) {
  .page_breadcrumbs_item {
    font-size: 10px;
  }
}
.page_breadcrumbs_item.first {
  color: #333;
}

.page_ttl {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 48px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .page_ttl {
    font-size: 16px;
    margin-top: 36px;
    margin-bottom: 16px;
  }
}

.page_ttl:before,
.page_ttl:after {
  content: "";
  height: 1px;
  background-color: #333;
  flex-grow: 1;
}
@media (max-width: 480px) {
  .page_ttl:before,
  .page_ttl:after {
    background-color: #707070;
  }
}

.page_ttl:before {
  margin-right: 76px;
}
@media (max-width: 480px) {
  .page_ttl:before {
    margin-right: 41px;
  }
}

.page_ttl:after {
  margin-left: 76px;
}
@media (max-width: 480px) {
  .page_ttl:after {
    margin-left: 41px;
  }
}

.select-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.select-item_img {
  width: 100%;
}

.step_select {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -32px;
}
@media (max-width: 480px) {
  .step_select {
    margin: 0 -8px;
  }
}
.step_select .select-item {
  padding: 32px;
}
@media (max-width: 480px) {
  .step_select .select-item {
    padding: 8px;
  }
}
.step_select .select-item a {
  background: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .step_select .select-item a:hover img,
.mouse .step_select .select-item a:hover .select-item_txt {
  opacity: 0.8;
}

.mouse .step_select .select-item a:focus img,
.mouse .step_select .select-item a:focus .select-item_txt {
  opacity: 0.8;
}

.mouse .step_select .select-item a:active {
  background: rgba(0, 0, 0, 0.2);
}
.mouse .step_select .select-item a:active img,
.mouse .step_select .select-item a:active .select-item_txt {
  opacity: 0.8;
}

.touch .step_select .select-item a:active {
  background: rgba(0, 0, 0, 0.2);
}
.touch .step_select .select-item a:active img,
.touch .step_select .select-item a:active .select-item_txt {
  opacity: 0.8;
}

.touch .step_select .select-item a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .step_select .select-item a input, .touch .step_select .select-item a select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.step_select .select-item_txt {
  margin: 0;
  text-align: center;
  font-weight: bold;
}

.step_select.select-top .select-item {
  width: 384px;
  height: auto;
}
@media (max-width: 480px) {
  .step_select.select-top .select-item {
    box-sizing: border-box;
    width: 50%;
  }
}
.step_select.select-top .select-item_txt {
  line-height: 64px;
  font-size: 24px;
}
@media (max-width: 480px) {
  .step_select.select-top .select-item_txt {
    line-height: 24px;
    font-size: 10px;
  }
}

p.support {
  margin-top: 40px;
  padding-top: 21px;
  margin-bottom: 20px;
  border-top: 1px solid #333;
  font-size: 12px;
  line-height: 24px;
  color: #333;
}
@media (max-width: 480px) {
  p.support {
    font-size: 10px;
    border-color: #707070;
  }
}
p.support .support-note {
  color: #999;
  font-size: 10px;
  line-height: 20px;
  padding-top: 1em;
  display: inline-block;
}

/******
simu
******/
#simu {
  width: 100%;
  height: 984px;
  overflow: hidden;
}
@media (max-width: 480px) {
  #simu {
    overflow: visible;
    height: calc(100% - 44px);
  }
}

.simu_img_wrapper,
.simu_clickarea_wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 480px) {
  .simu_img_wrapper,
  .simu_clickarea_wrapper {
    height: 250px;
  }
}

#main_simu_img_wrapper_k,
#main_simu_img_wrapper_d {
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.simu_clickarea_wrapper {
  z-index: 2;
}

.simu_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 center;
}
@media (max-width: 480px) {
  .simu_img {
    background-position: -30px center;
  }
}

#main_simu_img_wrapper_d .simu_img,
#print_contents_img_d .simu_img {
  background-position: 0 bottom;
}
@media (max-width: 480px) {
  #main_simu_img_wrapper_d .simu_img,
  #print_contents_img_d .simu_img {
    background-position: -30px center;
  }
}

.simu_clickarea_wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 51.25%;
}

.simu_clickarea_wrapper svg {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.simu_clickarea_wrapper svg#clickarea_d {
  top: 0;
}
.simu_clickarea_wrapper svg .cls-1 {
  fill: #fff;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}
.simu_clickarea_wrapper svg .cls-1:hover {
  opacity: 0.3;
}
.simu_clickarea_wrapper svg .cls-2 {
  opacity: 0;
  cursor: pointer;
}

.touch .simu_clickarea_wrapper svg .cls-1:hover {
  opacity: 0;
}
.touch .simu_clickarea_wrapper svg .cls-1:active {
  opacity: 0.3;
}

.simu_selectlist_show,
.simu_toggle_pov {
  display: flex;
  position: absolute;
  z-index: 5;
  box-sizing: border-box;
  width: 256px;
  height: 64px;
  bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #59454F;
  color: #fff;
  font-size: 20px;
  border-radius: 32px;
  line-height: 64px;
  cursor: pointer;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .simu_selectlist_show,
  .simu_toggle_pov {
    top: 205px;
    bottom: auto;
    width: 128px;
    height: 32px;
    border-radius: 16px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10px;
    font-weight: bold;
    background-color: rgba(168, 34, 34, 0.8);
    line-height: 32px;
  }
}

.simu_selectlist_show {
  right: 32px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 480px) {
  .simu_selectlist_show {
    right: 12px;
  }
}
.mouse .simu_selectlist_show:hover {
  color: #fff;
  border-color: #69515D;
  background-color: #69515D;
}
.mouse .simu_selectlist_show:hover img, .mouse .simu_selectlist_show:hover span {
  opacity: 0.8;
}

.mouse .simu_selectlist_show:focus {
  color: #fff;
  border-color: #69515D;
  background-color: #69515D;
}
.mouse .simu_selectlist_show:focus img, .mouse .simu_selectlist_show:focus span {
  opacity: 0.8;
}

.mouse .simu_selectlist_show:active {
  color: #fff;
  border-color: #4A3942;
  background-color: #4A3942;
}
.mouse .simu_selectlist_show:active img, .mouse .simu_selectlist_show:active span {
  opacity: 0.8;
}

.touch .simu_selectlist_show:active {
  color: #fff;
  border-color: #4A3942;
  background-color: #4A3942;
}
.touch .simu_selectlist_show:active img, .touch .simu_selectlist_show:active span {
  opacity: 0.8;
}

.touch .simu_selectlist_show {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .simu_selectlist_show input, .touch .simu_selectlist_show select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.simu_toggle_pov {
  left: 32px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 480px) {
  .simu_toggle_pov {
    left: 12px;
  }
}
.mouse .simu_toggle_pov:hover {
  color: #fff;
  border-color: #69515D;
  background-color: #69515D;
}
.mouse .simu_toggle_pov:hover img, .mouse .simu_toggle_pov:hover span {
  opacity: 0.8;
}

.mouse .simu_toggle_pov:focus {
  color: #fff;
  border-color: #69515D;
  background-color: #69515D;
}
.mouse .simu_toggle_pov:focus img, .mouse .simu_toggle_pov:focus span {
  opacity: 0.8;
}

.mouse .simu_toggle_pov:active {
  color: #fff;
  border-color: #4A3942;
  background-color: #4A3942;
}
.mouse .simu_toggle_pov:active img, .mouse .simu_toggle_pov:active span {
  opacity: 0.8;
}

.touch .simu_toggle_pov:active {
  color: #fff;
  border-color: #4A3942;
  background-color: #4A3942;
}
.touch .simu_toggle_pov:active img, .touch .simu_toggle_pov:active span {
  opacity: 0.8;
}

.touch .simu_toggle_pov {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .simu_toggle_pov input, .touch .simu_toggle_pov select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.simu_selectlist_icon,
.simu_toggle_pov_icon {
  width: 64px;
  height: 64px;
  padding-right: 24px;
}
@media (max-width: 480px) {
  .simu_selectlist_icon,
  .simu_toggle_pov_icon {
    width: 32px;
    height: 32px;
    padding-right: 7px;
  }
}

.simu_selectlist_icon {
  padding-right: 9px;
}
@media (max-width: 480px) {
  .simu_selectlist_icon {
    padding-right: 0;
  }
}

.simu_selectlist_wrapper.fade-enter-active, .simu_selectlist_wrapper.fade-leave-active {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .simu_selectlist_wrapper.fade-enter-active, .simu_selectlist_wrapper.fade-leave-active {
    top: 250px;
    height: calc(100% - 250px);
  }
}
@media (max-width: 480px) {
  .simu_selectlist_wrapper {
    position: relative;
    top: 250px;
    height: calc(100% - 250px);
  }
}

.simu_selectlist {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 800px;
  height: 920px;
  box-sizing: border-box;
  background-color: rgba(230, 230, 230, 0.95);
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 480px) {
  .simu_selectlist {
    position: relative;
    top: -10px;
    right: 0;
    width: 100%;
    height: calc(100% - 38px);
    background-color: #fff;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .simu_selectlist.simu_selectlist_top {
    position: absolute;
    top: auto;
    right: auto;
  }
}

.simu_selectlist_tab-wrapper {
  width: 100%;
  height: 42px;
  padding-top: 6px;
  overflow: auto;
  background: #666;
}

.simu_selectlist_tab-box {
  height: 49px;
  overflow: auto;
}

.simu_selectlist_tab {
  float: left;
  width: auto;
  box-sizing: border-box;
  min-width: 96px;
  padding: 0 10px;
  height: 32px;
  border-radius: 4px 4px 0 0;
  margin-left: 6px;
  background: #ccc;
  color: #999;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.simu_selectlist_tab.current {
  background: #fff;
  color: #59454F;
}
.mouse .simu_selectlist_tab:active {
  background: #fff;
  color: #59454F;
}

.touch .simu_selectlist_tab:active {
  background: #fff;
  color: #59454F;
}

.touch .simu_selectlist_tab {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .simu_selectlist_tab input, .touch .simu_selectlist_tab select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.simu_selectlist_header,
.modal_header {
  position: relative;
  width: 100%;
  height: 64px;
  font-size: 24px;
  font-weight: bold;
  background-color: #59454F;
  color: #fff;
  text-align: center;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
  z-index: 20;
}
@media (max-width: 480px) {
  .simu_selectlist_header,
  .modal_header {
    height: 40px;
    font-size: 14px;
    position: fixed;
    width: 94%;
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 480px) {
  .simu_selectlist_top .simu_selectlist_category-wrapper,
  .modal_contents {
    padding-top: 40px;
  }
}

.modal_esc .modal_header {
  display: none;
}

.simu_selectlist_title,
.modal_header_title {
  line-height: 64px;
}
@media (max-width: 480px) {
  .simu_selectlist_title,
  .modal_header_title {
    line-height: 40px;
  }
}

.btn-txt {
  position: absolute;
  top: 16px;
  box-sizing: border-box;
  width: 160px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 16px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .btn-txt:hover {
  background-color: #fff;
  color: #59454F;
}

.mouse .btn-txt:focus {
  background-color: #fff;
  color: #59454F;
}

.mouse .btn-txt:active {
  background-color: #ccc;
  border-color: #ccc;
}
.mouse .btn-txt:active img,
.mouse .btn-txt:active span {
  opacity: 0.8;
}

.touch .btn-txt:active {
  background-color: #ccc;
  border-color: #ccc;
}
.touch .btn-txt:active img,
.touch .btn-txt:active span {
  opacity: 0.8;
}

.touch .btn-txt {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .btn-txt input, .touch .btn-txt select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

@media (max-width: 480px) {
  .btn-txt {
    top: 11px;
    font-size: 8px;
    width: 82px;
    height: 18px;
    border-radius: 9px;
    padding-left: 9px;
    padding-right: 9px;
    line-height: 14px;
    border-width: 1px;
  }
}
.btn-txt span {
  width: 96px;
  display: inline-block;
}
@media (max-width: 480px) {
  .btn-txt span {
    width: 44px;
  }
}

.simu_selectlist_back {
  left: 32px;
}
.simu_selectlist_back span {
  width: 128px;
}

.simu_selectlist_close,
.modal_close {
  right: 32px;
}
@media (max-width: 480px) {
  .simu_selectlist_close,
  .modal_close {
    right: 11px;
  }
}
.simu_selectlist_close .icon_close,
.modal_close .icon_close {
  font-weight: bold;
  font-size: 21px;
  padding: 0 4px;
  width: auto;
}
@media (max-width: 480px) {
  .simu_selectlist_close .icon_close,
  .modal_close .icon_close {
    padding: 0 3px 0 2px;
    font-size: 11px;
  }
}

.simu_selectlist_now-item {
  background: #fff;
  height: 128px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.simu_selectlist_arrow_left,
.simu_selectlist_arrow_right {
  position: absolute;
  top: 32px;
  text-align: center;
  font-size: 14px;
  width: 192px;
  font-weight: bold;
  cursor: pointer;
}
.simu_selectlist_arrow_left .arrow_img,
.simu_selectlist_arrow_right .arrow_img {
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.simu_selectlist_arrow_left {
  left: 0;
}
.simu_selectlist_arrow_left .arrow_img {
  background-image: url(../img/btn_simu_back.png);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .simu_selectlist_arrow_left .arrow_img:hover {
  background-position: 0 -40px;
}

.mouse .simu_selectlist_arrow_left .arrow_img:focus {
  background-position: 0 -40px;
}

.mouse .simu_selectlist_arrow_left .arrow_img:active {
  background-position: 0 -80px;
}

.touch .simu_selectlist_arrow_left .arrow_img:active {
  background-position: 0 -80px;
}

.touch .simu_selectlist_arrow_left .arrow_img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .simu_selectlist_arrow_left .arrow_img input, .touch .simu_selectlist_arrow_left .arrow_img select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.simu_selectlist_arrow_right {
  right: 0;
}
.simu_selectlist_arrow_right .arrow_img {
  background-image: url(../img/btn_simu_next.png);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .simu_selectlist_arrow_right .arrow_img:hover {
  background-position: 0 -40px;
}

.mouse .simu_selectlist_arrow_right .arrow_img:focus {
  background-position: 0 -40px;
}

.mouse .simu_selectlist_arrow_right .arrow_img:active {
  background-position: 0 -80px;
}

.touch .simu_selectlist_arrow_right .arrow_img:active {
  background-position: 0 -80px;
}

.touch .simu_selectlist_arrow_right .arrow_img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .simu_selectlist_arrow_right .arrow_img input, .touch .simu_selectlist_arrow_right .arrow_img select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.simu_selectlist_now-item_selected {
  width: 416px;
  margin-left: 182px; /*margin:auto;*/
  padding-top: 24px;
}

.selectlist_now-item_thumb {
  width: 128px;
  height: 80px;
  margin-right: 16px;
  float: left;
  background: #eee;
}

.selectlist_now-item_area {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
.selectlist_now-item_area.long {
  margin-top: 0;
}

.selectlist_now-item_dname {
  font-size: 18px;
  color: #666;
}

.selectlist_now-item-up {
  position: absolute;
  border: solid 8px #59454F;
  border-radius: 8px;
  padding: 24px;
  background-color: rgba(230, 230, 230, 0.9);
  top: 32px;
  left: 32px;
  z-index: 20;
}
@media (max-width: 480px) {
  .selectlist_now-item-up {
    top: 20px;
    left: 0;
    padding: 20px;
    font-size: 10px;
    border-radius: 4px;
    border-width: 4px;
  }
}

.selectlist_now-item-up_thumb {
  width: 400px;
  height: 250px;
  background-size: contain;
}
@media (max-width: 480px) {
  .selectlist_now-item-up_thumb {
    width: 160px;
    height: 100px;
  }
}

.selectlist_now-item-up_dname {
  font-size: 18px;
}

.selectlist_now-item-up_close {
  position: absolute;
  top: -24px;
  right: -24px;
  background-color: #59454F;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .selectlist_now-item-up_close:hover {
  background-color: #69515D;
}

.mouse .selectlist_now-item-up_close:focus {
  background-color: #69515D;
}

.mouse .selectlist_now-item-up_close:active {
  background-color: #4A3942;
}

.touch .selectlist_now-item-up_close:active {
  background-color: #4A3942;
}

.touch .selectlist_now-item-up_close {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .selectlist_now-item-up_close input, .touch .selectlist_now-item-up_close select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

@media (max-width: 480px) {
  .selectlist_now-item-up_close {
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }
}
.selectlist_now-item-up_close img {
  width: 16px;
  height: 16px;
}
@media (max-width: 480px) {
  .selectlist_now-item-up_close img {
    width: 8px;
    height: 8px;
  }
}

.selectlist_headline {
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  box-sizing: border-box;
  padding-left: 40px;
  background: linear-gradient(90deg, rgba(82, 95, 102, 0.8) 0%, rgba(82, 95, 102, 0.8) 60%, rgba(82, 95, 102, 0.32) 100%);
  color: #fff;
}
@media (max-width: 480px) {
  .selectlist_headline {
    width: 351px; /*240pxだったが、ワークトップの長いカテゴリ名対策*/
    height: 16px;
    background: linear-gradient(90deg, rgba(82, 95, 102, 0.8) 0%, rgba(82, 95, 102, 0.8) 60%, rgba(82, 95, 102, 0.32) 100%);
    line-height: 16px;
    margin-left: 12px;
    font-size: 10px;
    padding-left: 10px;
  }
}

.selectlist_headline-notice {
  font-size: 14px;
}
@media (max-width: 480px) {
  .selectlist_headline-notice {
    font-size: 8px;
  }
}

.simu_selectlist_top .selectlist_headline {
  padding-bottom: 0;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .simu_selectlist_top .selectlist_headline {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.simu_selectlist_item-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .simu_selectlist_item-wrapper {
    margin-top: 6px;
    padding-left: 7px;
    padding-right: 7px;
  }
}

.simu_selectlist_top .simu_selectlist_item-wrapper {
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.simu_selectlist_category-wrapper {
  overflow: auto;
  height: 728px;
}
@media (max-width: 480px) {
  .simu_selectlist_category-wrapper {
    height: 100%;
  }
}

.simu_selectlist_top .simu_selectlist_category-wrapper {
  height: 856px;
}
@media (max-width: 480px) {
  .simu_selectlist_top .simu_selectlist_category-wrapper {
    height: calc(100% - 40px);
    padding-bottom: 10px;
  }
}

.simu_selectlist_category {
  margin-top: 10px;
}
@media (max-width: 480px) {
  .simu_selectlist_category {
    margin-top: 4px;
  }
}

.simu_selectlist_category:first-of-type {
  margin-top: 0px;
}
@media (max-width: 480px) {
  .simu_selectlist_category:first-of-type {
    margin-top: 16px;
  }
}
.simu_selectlist_category:first-of-type .selectlist_headline {
  margin-top: 0;
}
@media (max-width: 480px) {
  .simu_selectlist_category:first-of-type .selectlist_headline {
    margin-top: 0;
  }
}

.simu_selectlist_top .simu_selectlist_category:first-of-type {
  margin-top: 28px;
}
@media (max-width: 480px) {
  .simu_selectlist_top .simu_selectlist_category:first-of-type {
    margin-top: 11px;
  }
}

.selectlist_item {
  box-sizing: border-box;
  width: 20%;
  padding-top: 15px;
  padding-bottom: 9px;
  padding-left: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .selectlist_item:hover {
  background-color: #dadada;
}

.mouse .selectlist_item:focus {
  background-color: #dadada;
}

.mouse .selectlist_item:active {
  background-color: #b8b8b8;
}

.touch .selectlist_item:active {
  background-color: #b8b8b8;
}

.touch .selectlist_item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .selectlist_item input, .touch .selectlist_item select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

@media (max-width: 480px) {
  .selectlist_item {
    width: 90px;
    padding-top: 10px;
    padding-left: 5px;
  }
}

.selectlist_item.disable {
  pointer-events: none;
}
.selectlist_item.disable .selectlist_item_thumb {
  background-color: #dadada;
}
.selectlist_item.disable .selectlist_item_thumb img {
  opacity: 0.3;
}
.selectlist_item.disable .selectlist_item_dname {
  color: #ccc;
}

.selectlist_item_thumb {
  box-sizing: border-box;
  width: 128px;
  height: 80px;
  overflow: hidden;
}
.selectlist_item_thumb .selectlist_item_thumb_img {
  width: 128px;
  height: 80px;
  padding: 0;
}
@media (max-width: 480px) {
  .selectlist_item_thumb .selectlist_item_thumb_img {
    width: 80px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .selectlist_item_thumb {
    width: 80px;
    height: 50px;
  }
}

.selectlist_item.current .selectlist_item_thumb {
  border: #59454F solid 8px;
}
@media (max-width: 480px) {
  .selectlist_item.current .selectlist_item_thumb {
    border-width: 4px;
  }
}
.selectlist_item.current .selectlist_item_thumb .selectlist_item_thumb_img {
  margin: -8px;
}
@media (max-width: 480px) {
  .selectlist_item.current .selectlist_item_thumb .selectlist_item_thumb_img {
    margin: -4px;
  }
}

.selectlist_item_area {
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .selectlist_item_area {
    font-size: 10px;
  }
}

.selectlist_item_area_small,
.selectlist_now-item_area_small {
  font-size: 14px;
}
@media (max-width: 480px) {
  .selectlist_item_area_small,
  .selectlist_now-item_area_small {
    font-size: 6px;
  }
}

@media (max-width: 480px) {
  .selectlist_item_area_medium {
    font-size: 8px;
  }
}

.selectlist_item_dname {
  font-size: 14px;
}
@media (max-width: 480px) {
  .selectlist_item_dname {
    font-size: 7px;
  }
}

.selectlist_item_top {
  width: 50%;
  padding: 12px 0 12px 32px;
  margin-bottom: 0;
}
.selectlist_item_top.indent {
  margin-right: 50%;
}
@media (max-width: 480px) {
  .selectlist_item_top {
    padding: 7px 0 9px 12px;
    margin-bottom: 0;
  }
}
.selectlist_item_top .selectlist_item_thumb {
  width: 96px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  margin-right: 14px;
}
@media (max-width: 480px) {
  .selectlist_item_top .selectlist_item_thumb {
    width: 48px;
    height: 30px;
    margin-right: 8px;
  }
}
.selectlist_item_top .selectlist_item_thumb .selectlist_item_thumb_img {
  width: 100%;
  height: 100%;
}
.selectlist_item_top.current .selectlist_item_thumb {
  border: none;
}
.selectlist_item_top.current .selectlist_item_thumb .selectlist_item_thumb_img {
  margin: 0;
}
.selectlist_item_top .selectlist_item_dname {
  font-size: 18px;
  color: #666;
}
@media (max-width: 480px) {
  .selectlist_item_top .selectlist_item_dname {
    font-size: 8px;
    padding-left: 56px;
  }
}

/******
modal
******/
.modal,
.is_sp .simu_selectlist_wrapper_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_container,
.is_sp .simu_selectlist_top {
  position: relative;
  box-sizing: border-box;
  width: 1280px;
  height: 800px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(230, 229, 229, 0.95);
}
@media (max-width: 480px) {
  .modal_container,
  .is_sp .simu_selectlist_top {
    width: 94%;
    height: auto;
    max-height: 95%;
    overflow: auto;
  }
}

.is_sp .simu_selectlist_top {
  background-color: rgba(230, 229, 229, 0.95);
}

.modal_esc .modal_container {
  width: auto;
  height: auto;
  padding: 20px;
}

.modal_contents {
  display: flex;
  padding-top: 32px;
  flex-direction: column;
  justify-content: center;
}

.modal_url .modal_contents {
  padding-top: 48px;
}
@media (max-width: 480px) {
  .modal_url .modal_contents {
    padding-top: 64px;
  }
}

.modal_esc .modal_contents {
  padding-top: 0;
  font-size: 24px;
}
@media (max-width: 480px) {
  .modal_esc .modal_contents {
    font-size: 16px;
  }
}

.modal_contents > * {
  align-self: center;
}

.modal_ttl {
  margin-top: 0;
  font-weight: bold;
}

.modal_txt {
  margin-top: 10px;
}

.modal_url textarea {
  width: 1152px;
  height: 160px;
  margin-top: 48px;
  margin-bottom: 32px;
  box-sizing: border-box;
  padding: 37px 92px 36px 30px;
  font-size: 20px;
  border: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
@media (max-width: 480px) {
  .modal_url textarea {
    margin-top: 0;
    margin-bottom: 24px;
    width: 303px;
    height: 120px;
    padding: 20px 13px;
    font-size: 10px;
    border-radius: 0;
    font-size: 16px;
    transform: scale(0.625);
    width: 484px;
    height: 192px;
    margin-bottom: 0;
    padding: 32px 21px;
    margin-top: -14px;
    margin-bottom: -10px;
  }
}

.modal_url_text {
  margin-top: 50px;
  font-size: 20px;
}
@media (max-width: 480px) {
  .modal_url_text {
    margin-top: 0;
    font-size: 10px;
  }
}

.modal_url .modal_contents {
  padding-bottom: 12px;
}

.modal_url .qr_img {
  width: 240px;
  height: 240px;
}

.modal_btn {
  border: solid 2px #59454F;
  width: 512px;
  height: 64px;
  box-sizing: border-box;
  border-radius: 32px;
  line-height: 60px;
  font-size: 24px;
  color: #59454F;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mouse .modal_btn:hover {
  color: #fff;
  background-color: #69515D;
}

.mouse .modal_btn:focus {
  color: #fff;
  background-color: #69515D;
}

.mouse .modal_btn:active {
  color: #ccc;
  background-color: #4A3942;
  border-color: #4A3942;
}

.touch .modal_btn:active {
  color: #ccc;
  background-color: #4A3942;
  border-color: #4A3942;
}

.touch .modal_btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.touch .modal_btn input, .touch .modal_btn select {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

@media (max-width: 480px) {
  .modal_btn {
    font-size: 10px;
    width: 80%;
    height: 32px;
    line-height: 30px;
    border-width: 1px;
    border-radius: 20px;
    font-size: 14px;
  }
}

.modal_print .modal_btn {
  position: absolute;
  bottom: 29px;
  left: 384px;
}
@media (max-width: 480px) {
  .modal_print .modal_container {
    height: 50%;
  }
}
@media (max-width: 480px) {
  .modal_print #print_contents {
    transform: scale(0.18);
  }
}
.modal_print .print_contents_img {
  width: 848px;
  height: 477px;
}
.modal_print .loading {
  top: 263px;
}

.simu_img_wrapper.print-view {
  opacity: 1 !important;
  height: 1080px;
}
@media (max-width: 480px) {
  .simu_img_wrapper.print-view {
    height: 100%;
  }
}

.modal_esc .modal_btn {
  width: 200px;
  height: 36px;
  line-height: 36px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .modal_esc .modal_btn {
    width: auto;
    height: auto;
    line-height: normal;
    padding: 5px 35px;
  }
}

.modal_favorite .modal_contents {
  padding-top: 37px;
}
@media (max-width: 480px) {
  .modal_favorite .modal_contents {
    padding-top: 59px;
  }
}
.modal_favorite .favorite_main_text {
  padding-bottom: 39px;
  font-size: 20px;
  line-height: 100%;
}
@media (max-width: 480px) {
  .modal_favorite .favorite_main_text {
    font-size: 10px;
    padding-bottom: 20px;
  }
}
.modal_favorite .simu_img {
  background-position: center;
}

.favorite_howto {
  width: 100%;
  height: 348px;
  background: #fff;
}
@media (max-width: 480px) {
  .favorite_howto {
    height: 120px;
  }
}

.favorite_howto_txt_notice {
  font-size: 12px;
  color: #999;
  margin-top: 52px;
}
@media (max-width: 480px) {
  .favorite_howto_txt_notice {
    margin-top: 8px;
    font-size: 5px;
  }
}

.favorite_now {
  margin-left: 112px;
  margin-top: 32px;
  width: 448px;
  float: left;
}
@media (max-width: 480px) {
  .favorite_now {
    margin-left: 25px;
    margin-top: 16px;
    width: 128px;
  }
}

.favorite_howto_content {
  float: left;
  margin-left: 160px;
  margin-top: 64px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .favorite_howto_content {
    width: calc(100% - 177px);
    margin-left: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

#modal_favorite_simu_img_wrapper {
  position: relative;
  width: 448px;
  height: 252px;
}
@media (max-width: 480px) {
  #modal_favorite_simu_img_wrapper {
    width: 128px;
    height: 72px;
  }
}

.fav-item_title {
  color: #fff;
  background-color: #59454F;
  font-size: 16px;
  font-weight: bold;
  padding-left: 18px;
  height: 32px;
  line-height: 32px;
}
@media (max-width: 480px) {
  .fav-item_title {
    height: 16px;
    line-height: 16px;
    font-size: 8px;
  }
}

.modal_favorite_list {
  display: flex;
  width: 1168px;
  padding-top: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .modal_favorite_list {
    width: 297px;
    padding-top: 16px;
  }
}
.modal_favorite_list li {
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.modal_favorite_list .fav-item_title {
  background-color: #525f66;
}

#modal_favItem_simu_img_wrapper1,
#modal_favItem_simu_img_wrapper2,
#modal_favItem_simu_img_wrapper3,
#modal_favItem_simu_img_wrapper4,
.modal_favorite_simu_img_dummy {
  position: relative;
  width: 256px;
  height: 144px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  #modal_favItem_simu_img_wrapper1,
  #modal_favItem_simu_img_wrapper2,
  #modal_favItem_simu_img_wrapper3,
  #modal_favItem_simu_img_wrapper4,
  .modal_favorite_simu_img_dummy {
    width: 128px;
    height: 72px;
    margin-bottom: 9px;
  }
}

.modal_favorite_simu_img_dummy {
  background: #fff;
}

.modal_favorite_list_btn_box {
  display: flex;
  justify-content: space-between;
}

.modal_btn_small {
  display: inline-block;
  width: 120px;
  height: 32px;
  font-size: 16px;
  line-height: 27px;
}
@media (max-width: 480px) {
  .modal_btn_small {
    width: 60px;
    height: 16px;
    font-size: 8px;
    line-height: 14px;
  }
}

.modal_btn_small.disable {
  pointer-events: none;
  color: #323232;
  border-color: #323232;
  opacity: 0.2;
}

.modal_btn_small.modal_btn_sample {
  pointer-events: none;
  margin-right: 12px;
}
@media (max-width: 480px) {
  .modal_btn_small.modal_btn_sample {
    font-size: 8px;
    width: 45px;
    height: 12px;
    line-height: 9px;
  }
}

.favorite_howto_txt1,
.favorite_howto_txt2 {
  margin-top: 8px;
  height: 32px;
  line-height: 32px;
}
@media (max-width: 480px) {
  .favorite_howto_txt1,
  .favorite_howto_txt2 {
    font-size: 6px;
    margin-top: 4px;
    height: 12px;
    line-height: 12px;
  }
}

.favorite_howto_txt1 {
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .favorite_howto_txt1 {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .modal_howto .modal_contents {
    padding-top: 72px;
    box-sizing: border-box;
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .modal_contents_howto_img {
    width: 100%;
  }
}

#save_img_wrapper {
  display: none;
}
@media (max-width: 480px) {
  #save_img_wrapper {
    display: block;
    position: absolute;
    right: -2500px;
    bottom: -1406px;
    width: 2500px;
    height: 1406px;
  }
}
#save_img_wrapper .simu_img_wrapper {
  height: 100%;
}
#save_img_wrapper .simu_img_wrapper .simu_img {
  background-position: 0 0 !important;
}

.loading {
  position: absolute;
  z-index: 2000;
  left: calc(50% - 64px);
  top: calc(50% - 64px);
  width: 128px;
  height: 128px;
  background-image: url("../img/loading.png");
  background-size: 100%;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-timing-function: linear;
}
@media (max-width: 480px) {
  .loading {
    width: 64px;
    height: 64px;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
  }
}/*# sourceMappingURL=simu.css.map */