@charset "utf-8";

/**************************************************
		Contents
**************************************************/
/* ===== Common ===== */
.listFlow {
  display: flex;
  margin-bottom: 40px;
  font-size: 1.13rem;
  line-height: 1.5;
  align-items: center;
  justify-content: space-between;
}
.listFlow li {
  position: relative;
  padding: 12px 7px;
  border: 3px solid #000;
  width: 220px;
  text-align: center;
}
.listFlow li::before {
  position: absolute;
  top: 50%;
  left: -33px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  width: 13px;
  height: 13px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
.listFlow li:first-child::before {
  display: none;
}
.listFlow li.active {
  border-color: #d9e002;
  background-color: #d9e002;
}

.listInfo {
  line-height: 1.5;
}
.listInfo dt {
  margin-bottom: 13px;
  font-size: 1.07rem;
  color: #d0021b;
}
.listInfo dd {
  margin-bottom: 30px;
  font-size: 0.88rem;
}
.listInfo dd:last-child {
  margin-bottom: 0;
}

/* ===== Step3 ===== */
.listDesign {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: normal;
}
.listDesign li {
  margin-bottom: 30px;
  margin-left: 25px;
  width: 300px;
  text-align: center;
}
.listDesign li label {
  display: block;
  position: relative;
  cursor: pointer;
}
.listDesign li label::before {
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #000;
  width: 100%;
  height: 100%;
  content: "";
  transition: border-color 0.3s, border-width 0.3s;
}
.listDesign li label:hover::before {
  border-width: 5px;
  border-color: #d9e002;
}
.listDesign li input {
  position: absolute;
  left: -100vw;
}

/* ===== Step4 ===== */
.date {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
.date .ext {
  display: inline-block;
  margin: 0 20px;
}
.linkBlack {
  color: #000;
}
.linkBlack:hover {
  opacity: 0.7;
}

/* ===== Flyer Preview ===== */
@font-face {
  font-family: GenShinGothic;
  src: url("../../create/TCPDF/fonts/GenShinGothic-Medium.ttf");
}
.flyerPreview {
  position: relative;
  margin: 0 auto 100px auto;
  border: 3px solid #000;
  width: 794px;
  height: 1123px;
  box-sizing: content-box;
  font-family: GenShinGothic, "Hiragino Maru Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  color: #000;
  overflow: hidden;
}
.flyerPreview img {
  width: 100%;
  height: auto;
}
.flyerPreview .design {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
.flyerPreview .top {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 55px;
  width: 100%;
  height: 948px;
  z-index: 20;
}
.flyerPreview .title {
  margin: 0 auto 15px auto;
  width: 100%;
  font-size: 60px;
  line-height: 1;
  text-align: center;
}
.flyerPreview .subtitle {
  margin: 0 auto 25px auto;
  width: 20em;
  font-size: 32px;
  line-height: 1.35;
  text-align: center;
}
.flyerPreview .photo {
  margin: 0 auto 30px auto;
  width: 445px;
}
.flyerPreview .data {
  margin: 0 auto;
  width: 30em;
  font-size: 20px;
  line-height: 1.7;
}
.flyerPreview .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 25px 30px 25px;
  width: 100%;
  height: 175px;
  z-index: 20;
}
.flyerPreview .logo {
  float: left;
  margin: 20px 15px 0 0;
  width: 70px;
}
.flyerPreview .text {
  float: left;
  width: 380px;
}
.flyerPreview .company {
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1;
}
.flyerPreview .tel {
  margin-bottom: 7px;
  font-size: 38px;
  line-height: 1;
}
.flyerPreview .address {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
}
.flyerPreview .comment {
  font-size: 12px;
  line-height: 1;
}
.flyerPreview .qrcode {
  float: right;
  margin: 20px 0 0 5px;
  width: 70px;
}
.flyerPreview .map {
  float: right;
  width: 200px;
}
