@charset "UTF-8";
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.slick-dots {
  display: none !important;
}

.add-cart {
  width: 100%;
}

.product .detail_table{
  margin-top: 20px;
  width: 100%;
  border: 1px solid #000;
}
.product .detail_table tr{
  border-bottom: 1px solid #000;
}
.product .detail_table th,
.product .detail_table td{
  padding: 10px;
  line-height: 1.5;
}
.product .detail_table th{
  width: 30%;
  min-width: 150px;
  background-color: #e8faff;
  border-right: 1px solid;
}
.product .detail_table td{
  width: 70%;
}


@media screen and (max-width:1024px){
  .product .detail_table{
    width: 100%;
  }
}

@media screen and (max-width:480px){
  .product .detail_table th, .product .detail_table td {
    display: inline-block;
    width: 100% !important;
  }
  .product .detail_table th{
    border-right: 0;
    border-bottom: 1px solid #000;
  }
}


/* レスポンシブ
=================================================*/
body {
  min-width: 1330px;
}

@media (min-width: 1025px) and (max-width: 1329px) {
  body {
    min-width: 1200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    min-width: 960px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  body {
    min-width: 700px;
  }
}

@media (max-width: 480px) {
  body {
    min-width: inherit;
  }
}

/* 商品詳細
=================================================*/
.product {
  width: 100%;
}

.product--top {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .product--top {
    display: block;
  }
}

.product__thumbnail {
  width: 50%;
}

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

.product__detail {
  width: 50%;
  padding: 0 50px 50px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product__detail {
    padding: 0 30px 20px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__detail {
    padding: 0 30px 20px;
  }
}

@media (max-width: 480px) {
  .product__detail {
    width: 100%;
    margin-top: 20px;
    padding: 0 0px 20px;
  }
}

.product__detail__name {
  font-size: 30px;
  font-weight: bold;
  color: #707070;
  line-height: 1.7;
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__detail__name {
    font-size: 18px;
  }
}

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

.product__detail__cost {
  margin-top: 20px;
  color: #CC645A;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.7;
}

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

.product__detail__cost span {
  font-size: 16px;
  margin-left: 13px;
  font-weight: normal;
}

.product__detail__image {
  display: flex;
  align-items: center;
  margin-top: 45px;
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__detail__image {
    display: block;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .product__detail__image {
    display: block;
    margin-top: 30px;
  }
}

.product__detail__image a {
  display: block;
}

.product__detail__image a + a {
  margin-left: 10px;
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__detail__image a + a {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .product__detail__image a + a {
    margin-left: 0;
    margin-top: 20px;
  }
}

.product__detail__text {
  margin-top: 40px;
  line-height: 1.7;
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__detail__text {
    margin-top: 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .product__detail__text {
    margin-top: 20px;
    font-size: 16px;
  }
}

.product__images {
  display: flex;
  margin-top: 35px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.product__images div.slideThumb {
  display: block;
  width: 23.5%;
  margin: 0 2px !important;
  display: inline-block;
  flex-shrink: 0;
}
@media (min-width: 481px) and (max-width: 768px) {
  .product__images a {
    width: calc(33.3333% - 10px * 2 /3);
  }
  .product__images div.slideThumb {
    width: 32%;
  }
}

@media (max-width: 480px) {
  .product__images a {
    width: 100%;
  }
  .product__images div.slideThumb {
    width: 30%;
    margin: 0 2px !important;
    display: inline-block;
    flex-shrink: 0;
  }
}

.product__images div + div {
  /* margin-left: 55px; */
}

@media (min-width: 481px) and (max-width: 768px) {
  .product__images a + a {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .product__images a + a {
    margin-left: 0;
    margin-top: 30px;
  }
}

.product__desc {
  margin-top: 90px;
  font-size: 24px;
  font-weight: bold;
  color: #707070;
  line-height: 2.08;
}

@media (max-width: 480px) {
  .product__desc {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.img-1 {
  max-width: 400px;
  width: 100%;
}

.img-2 {
  max-width: 220px;
  width: 100%;
  height: 100%;
}

/* 注文入力フォーム
=================================================*/
.order {
  margin-top: 200px;
  width: 100%;
}

@media (max-width: 480px) {
  .order {
    margin-top: 100px;
  }
}

.order__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.7;
  color: #707070;
  position: relative;
  text-indent: 4em;
}

@media (max-width: 480px) {
  .order__title {
    text-indent: 0;
    font-size: 24px;
    text-align: center;
  }
}

.order__title:before {
  position: absolute;
  top: -32px;
  left: 40px;
  content: "";
  display: inline-block;
  width: 95px;
  height: 91px;
  background: url(../img/bag.png) no-repeat;
  background-size: contain;
}

@media (max-width: 480px) {
  .order__title:before {
    width: 80px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.order__title span {
  font-size: 24px;
}

@media (max-width: 480px) {
  .order__title span {
    font-size: 14px;
    display: block;
  }
}

.order__list {
  padding: 0 30px 70px;
}

@media (max-width: 480px) {
  .order__list {
    padding: 0 0 30px;
  }
}

.order__list dt {
  font-size: 30px;
  margin-top: 64px;
  font-weight: bold;
  color: #707070;
}

@media (max-width: 480px) {
  .order__list dt:first-child {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .order__list dt {
    font-size: 20px;
  }
}

.order__list dt span {
  font-size: 23px;
  font-weight: normal;
}

@media (max-width: 480px) {
  .order__list dt span {
    font-size: 16px;
  }
}

.order__list dt .need {
  color: #DE5D50;
}

@media (max-width: 480px) {
  .order__list dt .need {
    font-size: 16px;
  }
}

.order__list dd {
  margin-top: 22px;
}

@media (max-width: 480px) {
  .order__list dd {
    margin-top: 20px;
  }
}

/* input selectタグ 共通
=================================================*/
input, select {
  padding: 24px 22px;
  font-size: 18px;
  color: #555;
  border-radius: 3px;
}

@media (max-width: 480px) {
  input, select {
    font-size: 16px;
    padding: 18px 16px;
  }
}

select {
  width: 207px;
  background: #F8F8F8;
  border: 1px solid #ccc;
}

.agree {
  font-size: 30px;
  font-weight: bold;
  color: #707070;
}

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

/* input
=================================================*/
input {
  width: 100%;
  border: 1px solid #ccc;
  color: #909090;
}

/* カスタムセレクトボックス
=================================================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/select.png);
  background-repeat: no-repeat;
  background-size: 16px 11px;
  background-position: right 17px center;
}

select:hover {
  cursor: pointer;
}

/* テキストエリア
=================================================*/
textarea {
  width: 100%;
  height: 225px;
  border: 1px solid #ccc;
  color: #909090;
  border-radius: 3px;
}

/* inputタグ横のリンク 共通css
=================================================*/
dd a {
  font-size: 25px;
  color: #0092C4;
  position: relative;
  padding-left: 57px;
}

@media (max-width: 480px) {
  dd a {
    padding-left: 40px;
  }
}

dd a:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #53535D;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
}

@media (max-width: 480px) {
  dd a:before {
    left: 0px;
  }
}

/* デザインテンプレート
=================================================*/
.design input {
  width: 280px;
}

.design a {
  position: relative;
}

.design a:before {
  content: "▶︎";
  position: absolute;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 入稿日
=================================================*/
.day input {
  max-width: 280px;
  width: 100%;
}

.day a {
  position: relative;
}

.day a:before {
  content: "?";
  position: absolute;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 同意
=================================================*/
.agree input {
  width: 280px;
}

.agree a {
  position: relative;
}

.agree a:before {
  content: "▶︎";
  position: absolute;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* checkbox
=================================================*/
.checkbox dt {
  display: inline-block;
}

.checkbox dd {
  display: inline-block;
}

@media (min-width: 481px) and (max-width: 768px) {
  .checkbox dd {
    display: inline;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .checkbox dd {
    display: inline;
    font-size: 16px;
  }
}

/* カスタマイズ
=================================================*/
input[type=checkbox] {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  input[type=checkbox] {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .checkbox a {
    font-weight: normal;
  }
}

/* アップロード
=================================================*/
.upload {
  padding: 30px 30px 70px;
}

@media (max-width: 480px) {
  .upload {
    padding: 30px 0px;
  }
}

.upload__title {
  max-width: 400px;
  width: 100%;
}

.upload__link {
  display: flex;
}

@media (max-width: 480px) {
  .upload__link {
    display: block;
    margin-top: 20px;
  }
}

.upload__link a {
  display: block;
  cursor: pointer;
}

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

.upload__link--left {
  max-width: 400px;
  width: 100%;
}

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

.upload__link--right {
  max-width: 225px;
  width: 100%;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .upload__link--right {
    width: 100%;
    margin: 20px auto 0;
  }
}

.upload__text {
  margin-top: 33px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.7;
  color: #707070;
}

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

.upload__file {
  margin-top: 54px;
}

.upload__file__select {
  width: 423px;
  display: block;
  cursor: pointer;
}

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

.upload__file__add {
  width: 231px;
  display: inline-block;
  cursor: pointer;
}

@media (max-width: 480px) {
  .upload__file__add {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}

.upload__file__delete {
  width: 124px;
  display: inline-block;
  margin: 47px 0 0 20px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .upload__file__delete {
    display: block;
    width: 40%;
    margin: 20px auto 0;
  }
}

.upload__causion {
  margin-top: 68px;
  font-size: 24px;
  line-height: 2.08;
  color: #707070;
}

@media (max-width: 480px) {
  .upload__causion {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.link__btn {
  display: flex;
  margin-top: 42px;
}

@media (max-width: 480px) {
  .link__btn {
    display: block;
    margin: 40px 0 0;
  }
}

.link__btn a {
  display: block;
}

@media (max-width: 480px) {
  .link__btn a {
    display: inline-block;
  }
}

.link__btn .cart {
  max-width: 423px;
  width: 100%;
}

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

.link__btn .mail {
  max-width: 480px;
  width: 100%;
  margin-left: 51px;
}

@media (max-width: 480px) {
  .link__btn .mail {
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
}

.back {
  margin-top: 120px;
  padding-bottom: 97px;
}

@media (max-width: 480px) {
  .back {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 80px;
  }
}

.back a {
  display: block;
  width: 220px;
}

@media (max-width: 480px) {
  .back a {
    display: inline-block;
    width: 150px;
  }
}

/* sp時改行
=================================================*/
@media (min-width: 481px) and (max-width: 768px) {
  .br {
    display: block;
    margin-top: 10px;
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {

}

@media (max-width: 480px) {
  .br {
    display: block;
    margin-top: 10px;
    font-size: 20px;
  }

  .product__images div {
    width: 100%;
  }

  .product__images div + div {
    margin-left: 0;
    margin-top: 50px;
  }
}

.add-cart {
  background-image: url(/html/template/default/assets/img/mypage/rezi-bg.png);
  background-repeat: no-repeat;
  color: #707070;
  background-size: cover;
  height: 70px;
}

.slick-initialized .slick-slide {
  border: 1px solid black;
}

.product .product__desc table th{
  min-width: 150px;
}


@media screen and (max-width: 768px) {
  .product .product__desc table{

  }
  .product .product__desc table tr,
  .product .product__desc table th,
  .product .product__desc table td{
    display: inline-block;
    width: 100%;
  }
  .product .product__desc table tr{
    padding: 5px 0 0 0;
    border-bottom: 1px solid;
  }
  .product .product__desc table th{

  }
  .product .product__desc table td{

  }
}



.detail_order {
  max-width: 300px;
  height: 100%;
  width: 100%;
}


.tsuboi_im_box{
  width: 60%;
  margin: auto;
  margin-bottom: 40px;
}
.tsuboi_im_box.wadano{
  width: 80%;
}
.tsuboi_text{
  font-family: source-han-sans-japanese, sans-serif;
  color: #707070;
  font-weight: 700;
  font-size: 110%;
  text-align: left;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .tsuboi_text{
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .tsuboi_im_box.wadano{
    width: 100%;
  }
  .tsuboi_im_box {
    width: 100%;
    margin-bottom: 20px;
  }
  .tsuboi_text {
    font-size: 12px;
  }
}

.seeneBtnWrap{
  margin-top: 30px;
}

.seeneBtnWrap .headTxt{

}
.seeneBtnWrap .headTxt h4 {

}
.seeneBtnWrap ul{
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.seeneBtnWrap ul li{
  width: 23%;
  margin-right: 2.6666%;
}
.seeneBtnWrap ul li:nth-child(4){
  margin-right: 0;
}
.seeneBtnWrap ul li a{
  display: block;
  width: 100%;
  text-align: center;
  background-color: #858585;
  border-radius: 10px;
  padding: 15px 0;
  color: #fff;
  font-size: 18px;
  transition: .3s;
}
.seeneBtnWrap ul li a:hover{
  opacity: .7;
}
.seeneBtnWrap ul li a.sotsugyoBtn{
  background-color: #f2a2c3;
  border:  1px solid #f2a2c3;
}
.seeneBtnWrap ul li a.keiroBtn{
  background-color: #858585;
  border:  1px solid  #858585;
}
.seeneBtnWrap ul li a.monBtn{
  background-color: #cd4343;
  border:  1px solid #cd4343;
}
.seeneBtnWrap ul li a.fadBtn{
  background-color: #3091d2;
  border:  1px solid #3091d2;
}
.addImgBox {
  display: block;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .seeneBtnWrap ul li a{
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .addImgBox {
    width: 100%;
  }
  .seeneBtnWrap{
    margin-top: 10px;
  }
  .seeneBtnWrap ul li{
    width: 48%;
    margin-right: 4%;
  }
  .seeneBtnWrap ul li:nth-child(2){
    margin-right: 0;
  }
  .seeneBtnWrap ul li:nth-child(n+3){
    margin-top: 4%;
  }
  .seeneBtnWrap ul li:nth-child(4){
    margin-right: 0;
  }
}
