@charset "UTF-8";
/*
 * parts.css
 *
 * 0. color
 * 1. title_text
 * 2. button-link
 * 3. icon
 * 4. box-column
 * 5. page-unique
 *
*/
/*******************
 * 0. color
*/


/*******************
 * 1. title
*/

/* title */
.site-title {
  line-height: 1em;
  letter-spacing: 0.2em;
  font-size: 19px;
  color: #000000;
  font-family: 'Pathway Gothic One', sans-serif;
}
.content-title {
  position: relative;
  font-size: 25px;
  padding-bottom: 23px;
  margin-bottom: 40px;
  letter-spacing: 6px;
  line-height: 1em;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  text-align: center;
}
.content-title.eng {
  font-size: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.content-title::after {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #2b1f1b;
}
.section-title,
.box-title {
  font-size: 20px;
  font-weight: bold;
  color: #595757;
  letter-spacing: 2.8px;
  margin-bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}
.title {
  position: relative;
  font-size: 16px;
  padding-bottom: 18px;
  margin-bottom: 30px;
  letter-spacing: 2px;
  line-height: 1em;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  text-align: center;
}
.title::after {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #2b1f1b;
}

@media screen and (max-width: 768px) {
  .site-title {
    font-size: 15px;
  }
  .content-title {
    position: relative;
    font-size: 23px;
    padding-bottom: 23px;
    margin-bottom: 30px;
  }
  .content-title.eng {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section-title,
  .box-title {
    font-size: 18px;
    font-weight: bold;
    color: #595757;
    letter-spacing: 2.8px;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
  }
}

/* text */
.text {
  font-size: 16px;
  line-height: 2.2;
}
.strong {}
.eng {
  letter-spacing: 0.2em;
  font-family: 'Pathway Gothic One', sans-serif;
}
@media screen and (max-width: 768px) {
  /* text */
  .text {
    font-size: 12px;
    line-height: 2.2;
  }
}


/*******************
 * 2. button-link
*/

/* anchor */
a {
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  background-position: top left;
  color: #0000ff;
  text-decoration: underline;
}

a:hover {
  color: #ff0000;
  background-position: bottom right;
  text-decoration: underline;
}

/* button */
.button {
  position: relative;
  box-sizing: border-box;
  width: 350px;
  display: inline-block;
  padding: 15px 20px 14px 30px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  background: #7d7d7d;
  transition: all ease-in-out .2s;
  font-size: 20px;
}
.button.middle {
  width: 200px;
  font-size: 12px;
  padding: 10px 20px 9px 30px;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../../common/svg/icon_arrow.svg) no-repeat center top;
  left: 20px;
  top: 50%;
  transform: translateY( -50%);
}
.button.middle::after {
  left: 14px;
  width: 6px;
  height: 10px;
  background: url(../../common/svg/icon_arrow.svg) no-repeat center top / 6px 10px;
}
.button:hover {
  color: #ffffff;
  background: #b1b1b1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 15px;
    padding: 13px 20px 12px 25px;
    font-weight: normal;
    width: auto;
    width: 300px;
  }
  .button.middle {
    width: auto;
    width: 130px;
    font-size: 10px;
  }
  .button::after {
    left: 14px;
    width: 5px;
    height: 9px;
    background: url(../../common/svg/icon_arrow.svg) no-repeat center top / 5px 9px;
  }
}
/* link */
.text-link {
  font-size: 15px;
  color: #7d7d7d;
}
.text-link:hover {
  color: #b1b1b1;
}

/* sort-list */
.sort-list {
  display: flex;
}
.sort-list li {
  margin-right: 20px;
}
.sort-list li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #595757;
  text-decoration: none;
  width: 170px;
  text-align: center;
  background-color: #ffffff;
  border: solid 1px #7d7d7d;
}
.sort-list li a::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #7d7d7d;
}
.sort-list li a:hover {
  color: #ffffff;
  background-color: #595757;
}
.sort-list li a:hover::after {
  background-color: #ffffff;
}

/* form ui */
@keyframes scale_nanimetion {
  20% {
      -webkit-transform: scale(1,1);
         -moz-transform: scale(1,1);
          -ms-transform: scale(1,1);
           -o-transform: scale(1,1);
              transform: scale(1,1);
  }
  40% {
      -webkit-transform: scale(1.2,1.2);
         -moz-transform: scale(1.2,1.2);
          -ms-transform: scale(1.2,1.2);
           -o-transform: scale(1.2,1.2);
              transform: scale(1.2,1.2);
  }
  100% {
      -webkit-transform: scale(1,1);
         -moz-transform: scale(1,1);
          -ms-transform: scale(1,1);
           -o-transform: scale(1,1);
              transform: scale(1,1);
  }
}
input[type="radio"] {
  display: none;
}
.radio-parts {
  position: relative;
  display: inline-block;
  min-height: 1em;
  font-size: 15px;
  padding-left: 30px;
  cursor: pointer;
  color: #595757;
}
.radio-parts:before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  border: #d3d1cf solid 1px;
  border-radius: 20px;
  background-color: #faf9f7;
}
input[type="radio"] + .radio-parts:before {
  border: solid 1px #d3d3d3;
  background-color: #ffffff;
  -webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
      -ms-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;

}
input[type="radio"]:checked + .radio-parts:before {
  border: solid 1px #d3d3d3;
  background-color: #ffffff;
  animation: 0.4s ease-in-out 0s normal 1 scale_nanimetion;
}
input[type="radio"]:checked + .radio-parts:after {
  position: absolute;
  top: 3px;
  left: 7px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  content: "";
  display: block;
  background-color: #7d7d7d;
}
input[type="radio"].disable + .radio-parts:before,
input[type="radio"].disable:checked + .radio-parts:before {
  border: #d6d5d4 solid 1px;
  background-color: #e8e7e6;
}
input[type="radio"] + .radio-parts i {
  font-size: 12px;
  font-style: normal;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .radio-parts {
    font-size: 13px;
  }
}


/*******************
 * 3. icon
*/
.icon {}


/*******************
 * 4. box-column
*/

/* fix area */
.fix-area .fix-area-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate( -50%,-50%);
  margin-top: -30px;
  text-align: center;
}
.fix-area.position_initial .fix-area-inner {
  position: static;
  left: 0;
  top: 0;
  transform: none;
  margin-top: 0px;
  text-align: center;
}
.fix-area #footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* fix area */
  .fix-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    min-height: 680px;
    box-sizing: border-box;
  }
  .fix-area .fix-area-inner {
    padding: 0px 15px;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 0;
    text-align: center;
  }
  .fix-area #footer {
    position: fixed;
    background-color: rgba(255,255,255,.8);
  }
}

/* box */
.box {}

/* column */
.product-list {
  display: flex;
  justify-content: space-around;
}
.product-list .photo {
  position: relative;
  margin-bottom: 15px;
  transition: all ease-in-out .2s;
  opacity: 1;
}
.product-list li {
  margin-right: 17px;
  margin-left: 17px;
}
.product-list li a {
  text-decoration: none;
  color: #595757;
}
.product-list li a:hover {
  color: #7d7d7d;
}
.product-list li a:hover .photo,
.product-list li a:hover .tag_area {
  opacity: .6;
}
.product-list li a:hover .button {
  color: #ffffff;
  background: #b1b1b1;
  text-decoration: none;
}
.product-list li a.active .photo::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,.6);
}
.product-list li a.active .photo::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  content: "選択中";
  display: inline-block;
  width: auto;
  height: auto;
  padding: 5px;
  border: none;
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
}
.product-list .photo {
  position: relative;
}
.product-list .photo img {
  vertical-align: middle;
}
.product-list li .middle {
  width: 250px;
}
.product-list li .small {
  width: 150px;
}

.product-list .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: solid 1px #eeeeee;
}
.product-list .button {
  font-size: 16px;
  width: 100%;
  margin-top: 33px;
}

@media screen and (max-width: 768px) {
  .product-list {
   flex-wrap: wrap;
  }
  .product-list li {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .product-list li:nth-child(2n) {
    margin-right: 0;
  }
  .product-list .photo {
    margin-bottom: 10px;
    width: 100%;
  }
  .product-list li img,
  .product-list li .middle,
  .product-list li .small {
    width: 100%;
  }
  .product-list li .description {
    text-align: left;
  }
  .product-list li .description br {
    display: none;
    text-align: left;
  }
  .product-list .button {
    margin-top: 10px;
    font-size: 12.5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}


/*******************
 * 5. page-unique
*/

/* 00-op */
.opning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../imgs/bg_opning.png) no-repeat center center / cover;
}
.opning .opning-title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate( -50%,-50%);
  color: #ffffff;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .opning .opning-title {
    font-size: 18px;
  }
}


/* 01-top */
.has-background.fix-area {
  position:static;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  background:
    url(../../imgs/bg_top_left.jpg) repeat-y left center / 240px auto,
    url(../../imgs/bg_top_right.jpg) repeat-y right center / 240px auto;
}
@media screen and (max-width: 1180px) {
  .has-background.fix-area {
    background:
      url(../../imgs/bg_top_left.jpg) repeat-y left center / 150px auto,
      url(../../imgs/bg_top_right.jpg) repeat-y right center / 150px auto;
  }
}
@media screen and (max-width: 1024px) {
  .has-background.fix-area {
    background: none;
  }
}
@media screen and (max-width: 768px) {
  .has-background.fix-area {
    background:
    url(../../imgs/bg_sp_top_top.jpg) repeat-x top center / auto 80px,
    url(../../imgs/bg_sp_top_bottom.jpg) repeat-x bottom 70px center / auto 80px;
  }
  #page-top .mb60 {
    margin-bottom: 30px!important;
  }
  #page-top .mb30 {
    margin-bottom: 10px!important;
  }
  #page-top .fix-area.has-background .fix-area-inner {
    transform: translateY(-8%);
  }
}

/* 01-top02 */
#page-top-02 #header {
  background-color: rgba(255,255,255,.8);
}
#page-top-02 .fix-area {
  padding-top: 100px; 
}
#page-top-02 .fix-area-inner {
  position: static;
  left: 0;
  top: 0;
  transform: none;
  margin-top: 0px;
  text-align: center;
}
#page-top-02 .fix-area #footer {
  position: static;
  margin-top: 70px;
  left: 0;
  bottom: 0;
  width: 100%;
}
.attention_list {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.attention_list li:last-child {
  margin-bottom: 0px;
}
.attention_list li {
  position: relative;
  margin-bottom: 35px;
  display: block;
  padding: 25px;
  font-size: 15px;
  color: #595757;
  border: solid 1px #b5b5b5;
  overflow: hidden;
}
.attention_list li::after {
  content: "";
  position: absolute;
  top: -14px;
  left: -1px;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #b5b5b5;
  transform: rotate(45deg);
  transform-origin: left top;
}
.attention_list li h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px #bfbfbf;
  color: #d75252;
}
.attention_list li p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .attention_list {
    min-width: initial;
    width: auto;
    margin-bottom: 40px;
  }
  .attention_list li {
    font-size: 13px;
    text-align: left;
    word-break: break-all;
  }
  #page-top-02 .fix-area #footer {
    margin-top: 30px;
  }
}

/* 02-select01 */
@media screen and (max-width: 768px) {
  /* fix area */
  #page-select-01 .fix-area {
    padding-top: 100px;
    padding-bottom: 86px;
  }
}
/* 02-select02 */
@media screen and (max-width: 768px) {
  /* fix area */
  #page-select-02 .fix-area {
    padding-top: 70px;
    align-items: initial;
    height: auto;
  }
  #page-select-02 .sort-list-wrap {
    max-width: auto;
    max-width: initial;
    flex-wrap: wrap;    
  }
  #page-select-02 .sort-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
  }
  #page-select-02 .sort-list li {
    width: 48%;
    margin: 0;
  }
  #page-select-02 .sort-list li a {
    width: auto;
    font-size: 10px;
  }
  #page-select-02 .product-list-wrap .product-list {
    width: auto;
    padding: 10px;
    height: calc(100vh - 360px);
  }
  #page-select-02 .product-list-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
  #page-select-02 .sort-list-wrap .button.middle {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    width: 220px;
  }
  #page-select-02 .product-list li {
    width: calc(50% - 20px);
  }
  #page-select-02 .fix-area #footer {
    position: static;
  }
}

/* 02-select03 */
#page-select-02 .fix-area {
  padding-top: 90px; 
}
#page-select-02 .fix-area-inner {
  position: static;
  left: 0;
  top: 0;
  transform: none;
  margin-top: 0px;
  text-align: center;
}
.product-list-wrap {
  height: calc(100vh - 290px);
  padding: 20px 0 20px;
  background-color: #f7f8f8;
}
.product-list-wrap .product-list {
  width: 1240px;
  padding: 20px 0 20px 25px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-color: #ffffff;
}
.product-list-wrap .title-bdr-right {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  color: #7d7d7d;
  z-index: 2;
  margin-bottom: 10px;
}
.product-list-wrap .title-bdr-right::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f0f0f0;
  left: 0;
  top: 50%;
  z-index: -1;
}
.product-list-wrap .title-bdr-right span {
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  display: inline-block;
  padding-right: 10px;
}
.sort-list-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.product-list-wrap .product-list {
  justify-content: initial;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 390px);
}
.product-list-wrap .product-list li {
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.product-list-wrap .product-list .product-name,
.product-list-wrap .product-list .product-price,
.product-list-wrap .product-list .product-face {
  font-size: 13px;
  font-weight: bold;
  display: block;
  text-align: left;
}
.product-list-wrap .product-list .photo {
  margin-bottom: 5px;
}
.product-list-wrap .graph {
  margin-top: 10px;
  margin-bottom: 25px;
  position: relative;
  height: 30px;
  width: 100%;
  background-color: #d9d9d9;
}
.product-list-wrap .graph span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 30px;
  background-color: #1868e1;
  transition: all ease-in-out;
}
.product-list-wrap .caption {
  font-size: 12px;
}
.product-list-wrap .text-area {
  font-size: 15px;
  font-weight: bold;
}
.product-list-wrap .text-area strong {
  color: #1868e1;
  line-height: 1em;
  font-weight: bold;
  font-size: 30px;
  padding-left: 3px;
  padding-right: 3px;
}
.product-list-wrap .is-wait .graph span {
  background-color: #d60000;
}
.product-list-wrap .is-wait .text-area strong {
  color: #d60000;
}
@media screen and (max-width: 768px) {
  /* fix area */
  #page-select-03 .fix-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.product-list .tag_area {
  padding-top: 10px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  transition: all ease-in-out .2s;
}
.product-list .tag_area span {
  display: block;
  font-size: 13px;
  line-height: 1em;
  width: 105px;
  padding: 5px 5px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #1868e1;
  color: #ffffff;
}
.product-list .tag_area.is-wait span {
  background-color: #d60000;
}
@media screen and (max-width: 768px) {
  .product-list .tag_area span {
    font-size: 10px;
    font-weight: bold;
    width: 49%;
    padding: 10px 0px;
  }
}
/* 03-select04 */
#page-select-04 .product-list-wrap {
  width: 700px;
  padding-top: 90px;
  box-sizing: border-box;
  height: 100vh;
}
#page-select-04 .sort-list-wrap {
  width: 590px;
  background-color: #ffffff;
}
#page-select-04 .product-list-wrap .product-list {
  width: 590px;
  height: calc(100vh - 180px);
}
#page-select-04 .product-list-wrap.select-total .product-box {
  width: 590px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 23px 30px 0px;
  height: calc(100vh - 235px);
  background-color: #ffffff;
  text-align: left;
  overflow-y: scroll;
  overflow-x: unset;
}
#page-select-04 .product-list-wrap.select-total h3 {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: 15px;
}
#page-select-04 .product-list-wrap.select-total h3::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  margin-right: 15px;
  background-color: #b5b5b5;
}
#page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li {
  padding:10px 15px;
  display: flex;
  border: solid 1px #b5b5b5;
  border-radius: 40px;
  line-height: 1em;
  margin-bottom: 20px;
}
#page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li h4{
  display: block;
  padding-right: 20px;
  margin-right: 20px;
  border-right: solid 1px #b5b5b5;
}
#page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li strong {
  font-weight: normal;
  font-size: 18px;
}
#page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li span {
  font-size: 12px;
}
#page-select-04 .product-list-wrap.select-total .product-list {
  padding: 23px 30px 0px;
  height: calc(100vh - 235px);
}
#page-select-04 .product-list-wrap .product-list li {
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
}
#page-select-04 .product-list-wrap.select-total .product-list li {
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 5px;
  border-bottom: solid 1px #eeeeee;
}
#page-select-04 .product-list-wrap.select-total .product-list li a {
  font-size: 11px;
  padding: 3px 6px;
  border: solid 1px #7d7d7d;
  color: #7d7d7d;
}
#page-select-04 .product-list-wrap.select-total .product-list li a:hover {
  color: #ffffff;
  background-color: #2b1f1b;
}
#page-select-04 .product-list-wrap.select-total .product-list li .product-list-name {
  font-weight: bold;
}
#page-select-04 .product-list-wrap.select-total .product-list li .product-list-name span {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  margin-right: 15px;
  font-size: 15px;
  letter-spacing: 1.5px;

}
#page-select-04 .product-list-wrap.select-total .product-list li .product-list-name span::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY( -50%);
  width: 9px;
  height: 17px;
  background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 9px 17px;
}
#page-select-04 .product-list-wrap.select-total .product-list li .product-list-price {
  font-weight: bold;
}
.product-list-right {
  display: flex;
}
#page-select-04 .preview-area {
  width: calc(100vw - 700px);
}
#page-select-04 #container article {
  display: flex;
}
#page-select-04 .preview-area {
  padding-top: 90px;
  padding-left: 50px;
  padding-right: 50px;
}
#page-select-04 .preview-area-item {
  position: relative;
  height: calc(100vh - 152px);
  border: solid 1px #eeeeee;
  overflow: hidden;
}
#page-select-04 .preview-area-item > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#page-select-04 .preview-area .section-title {
  text-align: left;
  margin-bottom: 5px;
}
#page-select-04 .preview-area .text {
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
}
#page-select-04 .product-list-total {
  background-color: #ffffff;
  width: 590px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 25px 30px;
  box-sizing: border-box;
}
#page-select-04 .decision-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page-select-04 .product-list-total li {
  width: 48%;
}
#page-select-04 .product-list-total .total-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eeeeee;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#page-select-04 .product-list-total .total-item p {
  font-weight: bold;
  font-size: 18px;
}
#page-select-04 .product-list-total .button {
  font-size: 13px;
  width: auto;
  display: block;
  padding: 22px 10px;
}
#page-select-04 .product-list-total .button::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 9px;
  background: url(../../common/svg/icon_arrow.svg) no-repeat center top / 6px 9px;
  top: 50%;
  left: auto;
  right: 10px;
  transform-origin: left left;
  transform: translateY( -50%);
}
#page-select-04 .fix-area.position_initial .copyright {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #page-select-04 .fix-area.position_initial {
    display: block;
  }
  #page-select-04 .fix-area.position_initial #footer {
    position: static;
  }
  #page-select-04 #container article {
    display: block;
  }
  #page-select-04 .preview-area {
    padding: 60px 0 0;
    width: 100%;
    margin-bottom: -105px;
  }
  #page-select-04 .preview-area-item {
    margin-top: 0px;
    height: calc(100vh - 426px);
    background-color: #ffffff;
  }
  #page-select-04 .preview-area-item img {
    width: 90%;
    max-width: 550px;
  }
  #page-select-04 .sort-list-wrap {
    width: auto;
    margin: 0;
    padding: 15px 15px 0;
  }
  #page-select-04 .product-list-wrap {
    padding-top: 120px;
    width: auto;
    height: 400px;
    margin-right: -15px;
    margin-left: -15px;
  }
  #page-select-04 .product-list-wrap.select-total {
    height: auto;
  }
  #page-select-04 .product-list-wrap.select-doll .product-list {
    height: 214px;
    width: 100vw;
    overflow-y: hidden;
    overflow-x: scroll;
    flex-wrap: initial;
    align-items: flex-start;
    padding-left: 0px;
    padding-right: 0px;
  }
  #page-select-04 .product-list-wrap.select-total .product-list {
    height: auto;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }
  #page-select-04 .product-list-total {
    width: auto;
  }
  #page-select-04 .product-list-wrap.select-doll .product-list li {
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  #page-select-04 .product-list-wrap.select-doll .product-list li:first-child {
    padding-left: 8px;
  }
  #page-select-04 .product-list-wrap.select-doll .product-list li:last-child {
    padding-right: 8px;
  }
  #page-select-04 .product-list-wrap.select-doll .product-list li,
  #page-select-04 .product-list-wrap.select-doll .product-list li img {
    height: 144px;
    width: auto;
  }
  .product-list-wrap.select-doll .product-list .product-name, 
  .product-list-wrap.select-doll .product-list .product-price {
    font-size: 10px;
  }
  #page-select-04 .preview-area .text {
    margin-bottom: 10px;
  }
  #page-select-04 .copyright {
    text-align: center;
  }
  #page-select-04 .product-list-total .button {
    font-size: 12px;
  }
  #page-select-04 .product-list-total li {
  }
  #page-select-04 .product-list-wrap.select-total .product-list li .product-list-price {
    display: flex;
    align-items: center;
  }
  #page-select-04 .product-list-wrap.select-total .product-list li {
    align-items: center;
  }
  #page-select-04 .product-list-wrap.select-total .product-list li .product-list-name {
    font-size: 10px;
  }
  #page-select-04 .product-list-wrap.select-total .product-list li .product-list-name span {
    font-size: 10px;
    padding-right: 15px;
    margin-right: 7px;
  }
  #page-select-04 .product-list-wrap.select-total .product-list li .product-list-name span::after {
    background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 6px 8px;
  }
  #page-select-04 .product-list-wrap.select-total h3 {
    font-size: 18px;
}
  /* product-box */
  #page-select-04 .product-list-wrap.select-total .product-box {
    width: auto;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 23px 15px 0px;
    height: auto;
    background-color: #ffffff;
    text-align: left;
    overflow-y: initial;
    overflow-x: initial;
  }
  #page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li {
    padding: 0 0 2px;
    display: block;
    border: none;
    border-radius: 0;
    line-height: 1.6;
    margin-bottom: 21px;
    border-bottom: solid 1px #b5b5b5;
  }
  #page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li h4{
    display: block;
    padding-right: 0;
    margin-right: 0;
    font-weight: bold;
    border-right: none;
  }
  #page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li strong {
    font-weight: normal;
    font-size: 18px;
  }
  #page-select-04 .product-list-wrap.select-total .product-box .sample-doll-list li span {
    font-size: 12px;
  }
  .product-list-wrap .text-area {
    font-size: 12px;
  }
  .product-list-wrap .text-area strong {
    font-size: 24px;
  }
  .product-list-wrap .caption {
    font-size: 11px;
  }
}

/* 00-howto */
#page-howto #container {
  padding-top: 165px;
}
#page-howto #header {
  background-color: rgba(255,255,255,.8);
}
.howto-box-area {
  width: 1115px;
  margin-left: auto;
  margin-right: auto;
}
.howto-box-area .wrapper {
  position: relative;
  min-height: 1335px;
  background: url(../../common/imgs/dotted_v.png) repeat-y center top;
}
.howto-box {
  position: absolute;
  width: 480px;
  box-sizing: border-box;
  background-color: #f7f8f8;
  padding: 26px 47px 35px;
  font-size: 14px;
  left: 0;
  top: 45px;
}
.howto-box::before {
  top: 50%;
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 1px;
  background-color: #7d7d7d;
  right: -80px;
}
.howto-box::after {
  top: 50%;
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 7.5px;
  background-color: #7d7d7d;
  right: -77px;
  transform: translate( 50%, -50%);
  transform-origin: left top;
}
.howto-box:nth-child(2n) { right: 0; left: auto;}
.howto-box:nth-child(2) { top: calc(170px + 45px);}
.howto-box:nth-child(3) { top: calc(340px + 45px);}
.howto-box:nth-child(4) { top: calc(510px + 45px);}
.howto-box:nth-child(5) { top: calc(680px + 45px);}
.howto-box:nth-child(6) { top: calc(850px + 45px);}
.howto-box:nth-child(7) { top: calc(1020px + 45px);}
.howto-box:nth-child(8) { top: calc(1190px + 45px);}

.howto-box:nth-child(2n)::before { right: auto; left: -80px;}
.howto-box:nth-child(2n)::after { right: auto; left: -92px;}

.howto-box .box-title {
  text-align: left;
  margin-bottom: 12px;
}
.howto-box .box-title span {
  position: relative;
  top: 2px;
  padding-right: 16px;
  color: #000000;
  font-size: 28px;
  font-family: 'Pathway Gothic One', sans-serif;	
}
.start-end {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #000000;
  font-size: 35px;
  font-family: 'Pathway Gothic One', sans-serif;
  letter-spacing: 6px;
  margin-right: -15px;
  text-align: center;
}
.caution-area {
  padding-top: 100px;
  margin-bottom: 135px;
}
.caution-area .section-title,
#page-top-02 .section-title {
  padding-top: 75px;
  font-size: 25px;
  color: #000000;
  letter-spacing: 5px;
  background: url(../../common/svg/icon_caution.svg) no-repeat center top / 40px 40px;
  margin-bottom: 100px;
}
.caution-area .wrapper {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.caution-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.caution-list {
  margin-bottom: -65px;
}
.caution-list li {
  width: 445px;
  margin-bottom: 65px;
}
.caution-list li .photo {
  margin-bottom: 10px;
}
.caution-list li .photo img {
  max-width: 100%;
}
.caution-title {
  border-bottom: solid 1px #bfbfbf;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  #page-howto #container {
    padding-top: 100px;
  }
  .start-end {
    padding: 10px 0;
  }
  .howto-box-area {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .howto-box-area .wrapper {
    padding: 60px 0;
  }
  .howto-box {
    position: relative;
    width: auto;
    padding: 15px;
    margin-bottom: 60px;
  }
  div:last-child.howto-box {
    margin-bottom: 0;
  }
  .howto-box .box-title {
    text-align: center;
  }
  .howto-box .box-title span {
    display: block;
    margin: 0 0 5px;
    padding-right: 0;
  }
  .howto-box:nth-child(n) {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .howto-box::before {
    display: none;
  }
  .howto-box::after,
  .howto-box:nth-child(2n)::after {
    left: auto;
    top: -0;
    right: 50%;
    transform: translate( 50%, -50%);
    z-index: 10;
  }
  .caution-area .wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .caution-area .section-title,
  #page-top-02 .section-title {
    padding-top: 65px;
    font-size: 20px;
  }
  .caution-list {
    display: block;
  }
  .caution-list li {
    width: 100%;
  }
  .caution-title {
    font-size: 16px;
  }
}