@charset "utf-8";

#content {
  margin: 80px auto;
}

.text_link {
  text-decoration: underline;
  transition: all .2s
}

.text_link.white {
  color: #fff;
}

.text_link.blue {
  color: #3728EA;
}

.text_link:hover {
  opacity: .7;
  transition: all .2s;
}

.btnwapper.justify{
  justify-content: space-between;
}

.btnwapper.clm2,
.btnwapper.clm3{
  justify-content: space-evenly;
}

.btnwapper+.btnwapper {
  margin-top: 30px;
}

@media screen and (max-width:768px) {
  .btnwapper.clm2 .btn {
    width: calc(50% - 10px);
  }

  .btnwapper.clm3 .btn {
    width: calc(100% / 3 - 10px);
    padding: 1rem;
  }
}

/* section0
   ----------------------------------------------------------------- */
.input_line {
  padding: 1.2vw;
  width: 100%;
}

.inputwapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inputwapper li {
  flex-grow: 1;
  /* 均等にする */
}

.inputwapper .wd-50per-pc {
  width: 50%;
  flex-grow: 0;
}

.inputwapper a:hover {
  opacity: 0.5;
}

input[type="file"] {
  display: none;
}

.inputwapper2 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.inputwapper2 a {
  display: flex;
  align-items: center;
  height: 14px;
  padding: 0 32px;
  color: #333;
  font: 500 14px;
  height: 40px;
}

.inputwapper2 a:hover {
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .inputwapper {
    display: block;
  }

  .inputwapper .wd-50per-pc {
    width: 100%;
  }

  .input_line {
    padding: 3.2vw;
  }

  ul li label {
    font-weight: 300;
    font-size: 1.35rem;
  }
}

/* エラー
   ----------------------------------------------------------------- */
.err_textbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.err_text {
  color: #C80032;
}

.err_text.clm2 {
  margin-left: 20%;
}

.err_text+.cmt {
  margin-top: 8px;
}

.inputtitle {
  padding: 1vw;
  background-color: #ECF4FB;
  display: table-cell;
  vertical-align: middle;
}

.asterisk::after {
  content: "※";
  color: #C80032;
  margin-left: 8px;
}

.inner_wapper {
  display: flex;
  align-items: center;
}

.inputwapper.clm2 li+li {
  margin-left: 20px;
}

.inner_wapper span {
  display: inline-block;
  width: 20%;
}

.inner_wapper input {
  flex: 1;
}

.inputarea {
  border: 1px solid #CECECE;
  border-radius: 0.4em;
  margin: 8px 0;
  padding: 0.5em;
  width: 100%;
  height: 40px;
  font-size: 1em;
  line-height: 1.2;
}

.inputareaRed {
  border: 1px solid #C80932;
  background-color: #FFE2E9;
}

.selection_area {
  border: 1px solid #CECECE;
  border-radius: 0.4em;
  margin: 8px 0;
  padding: 0.5em;
  width: 10em;
  height: 40px;
  font-size: 1em;
  line-height: 1.2;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.4) 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.4) 50%, transparent 50%);
  background-size: 5px 5px, 5px 5px;
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
  .inputtitle {
    padding: 3.2vw;
  }

  .inputtitle span {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    white-space: nowrap;
  }

  .asterisk::after {
    margin-left: 0.5vw;
  }

  .inputwapper.clm2 li+li {
    margin-left: 0;
  }
}

/**
 * ------------------------------------------------------------------------
 * ボタン
 * ------------------------------------------------------------------------
 */
.btntable,
a.btntable,
button.btntable {
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding: 0.9rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--navy,
a.btn--navy,
button.btn--navy {
  color: #fff;
  background-color: #21445B;
}

.btn--navy:hover,
a.btn--navy:hover {
  color: #fff;
  background: #194C6E;
}

.btn.btn--white,
a.btn--white {
  padding: 0.8rem 1.2rem;
  margin-right: 24px;
  color: #333;
  background-color: #fff;
}

.btn--white:hover,
a.btn--white:hover {
  color: #fff;
  background: #194C6E;
}

.btn--gray,
button.btn--gray {
  color: #333333;
  background: #E8E8E8;
}

button.btn--blue {
  background: #3BB8F0;
  padding: 14px 68px;
}

.btn--orange {
  background: #FFAC4E;
}

.btn.text-sml {
  font-size: 14px;
}

@media screen and (max-width:768px) {

  .btntable,
  a.btntable,
  button.btntable {
    margin: 8px 0;
  }
}

/**
 * ------------------------------------------------------------------------
 * Upload form
 * ------------------------------------------------------------------------
 */
.clientArea {
  display: flex;
  justify-content: center;
  background-color: #F5F6F6;
  padding: 40px 10%;
}

.clientNmame::before {
  font-size: 1.2rem;
  content: "施主さま氏名："
}

.clientMail::before {
  font-size: 1.2rem;
  content: "メールアドレス："
}

.upload-wrap {
  max-width: 712px;
  padding: 0 !important;
}

.upload-wrap h2 {
  margin-bottom: 72px;
}

.alert {
  color: #C80032;
  font-weight: bold;
  line-height: 1.5;
}

.alert+.alert {
  margin-top: 27px;
}

.alert-area {
  padding: 0 16px;
  margin-bottom: 30px;
}

.attention {
  background-color: #ECF4FB;
  padding: 3.2rem;
  margin: 32px auto;
  text-align: center;
  width: 72rem;
}

.upload-wrap .contact {
  background: #E3E3E3;
  padding: 24px 20px;
  margin-bottom: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upload-wrap table {
  width: 100%;
}

.upload-item {
  width: 500px;
}

.drag-drop {
  display: block;
  padding: 3.2vw;
  border: #CECECE solid 1px;
  background-color: #F4F4F4;
  border-radius: 0.5rem;
  text-align: center;
}

.drag-drop img {
  width: 10rem;
}

.drag-drop-info {
  display: block;
}

.is-file-uploaded .drag-drop {
  display: none;
}

.uploaded {
  display: none;
  position: relative;
}

.is-file-uploaded .uploaded {
  display: block;
}

.uploaded p {
  padding-bottom: 8px;
  border-bottom: #D3DFEA solid 1px;
}

.uploaded img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.uploaded object {
  width: 100%;
  height: 500px;
}

.l_detail {
  width: 100%;
  position: relative;
  margin-top: 15px;
}

.uploadedpic {
  display: block;
  width: 20rem;
  padding-top: 16px;
  margin: 0 auto;
}

.trushbinpic {
  width: 4rem;
  margin-left: auto;
  margin-right: 0;
  margin-top: 10px;
  z-index: 1;
  display: block;
}

.messageArea {
  display: block;
  width: 720px;
  height: 120px;
  margin: 0 auto 40px auto;
  border: solid 1px #D3DFEA;
}

.upload-wrap .btnwapper {
  padding: 0 24px;
}

.upload-wrap .btnwapper .btn:hover {
  opacity: .7;
}

@media screen and (max-width:768px) {
  .clientArea {
    display: block;
  }

  .attention {
    width: 100%;
  }

  .upload-wrap .contact {
    display: block;
  }

  .upload-wrap .contact .btntable {
    width: 100%;
  }

  .upload-item {
    width: 100%;
  }

  .drag-drop-info {
    display: none;
  }

  .drag-drop img {
    width: 80vw;
  }

  .uploadedpic {
    width: 80vw;
  }

  .trushbinpic {
    width: 10vw;
  }

  .messageArea {
    width: 80vw;
  }

  .upload-wrap .btnwapper {
    display: block;
  }

  .upload-wrap .btn {
    width: 100%;
  }

  .upload-wrap .btn+.btn {
    margin-top: 16px;
  }
}

/**
 * ------------------------------------------------------------------------
 * Mypage
 * ------------------------------------------------------------------------
 */
.mypage {
  background: #F5F6F6;
  padding: 80px 0;
}

.mypage_subhead {
  font-size: 2rem;
  margin-bottom: 56px;
  font-weight: 700;
  text-align: center;
}

.contwapper {
  display: flex;
  justify-content: center;
  padding: 0;
}

.nav_L {
  display: block;
  width: 214px;
}

.nav_L ul {
  border: solid 1px #DCE1DE;
}

.nav_L li {
  height: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.nav_L .home::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/icon_home.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(0, -50%);
}

.nav_L .member::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/icon_member.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(0, -50%);
}

.nav_L .contact::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/icon_mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(0, -50%);
}

.active {
  background-color: #fff;
}

.nav_L .member {
  border-top: solid 1px #DCE1DE;
  border-bottom: solid 1px #DCE1DE;
}

.nav_R {
  margin-left: 32px;
}

.flexboxR {
  display: flex;
  justify-content: space-between;
}

.flexboxR li {
  text-align: center;
}

.flexboxR li+li {
  margin-left: 32px;
}

.flexboxR dl {
  padding: 24px 0;
  border: solid 1px #EDEDED;
  width: 214px;
  height: 216px;
  background-color: #fff;
  position: relative;
}

.s_title {
  font-size: 18px;
  font-weight: 800;
}

.flexboxR img {
  width: 113px;
}

.checked {
  width: 26px;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translate(-50%, 0);
}

.ShippingNumber {
  background-color: #ECF4FB;
  padding: 3.2rem;
  margin: 32px auto;
  text-align: center;
}

.step4 {
  width: 100%;
  background-color: #FFE8D0;
  padding: 24px 24%;
  margin-bottom: 40px;
}

.step4 .s_title {
  text-align: center;
}

.step4 img {
  width: 67px;
}

.step4 .step-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #EDEDED;
  background-color: #fff;
  padding: 2.4rem;
  margin-top: 16px;
}

.step4 .step-txt {
  font-weight: bold;
}

.step5 {
  background-color: #D0F4FF;
}

@media screen and (max-width:768px) {
  .ShippingNumber {
    width: 100%;
  }
}

@media screen and (max-width:960px) {
  .nav_L {
    display: none;
  }

  .nav_R {
    margin-left: 0;
  }

  .flexboxR {
    display: block;
  }

  .flexboxR li+li {
    margin-left: 0;
  }

  .flexboxR dl {
    width: 100%;
  }

  .step2 {
    margin: 32px 0;
  }

  .step4 {
    padding: 2.4rem;
  }
}
