/* Scss Document */
.pink {
  color: #ff147e;
}

/* Scss Document */
.page-header {
  background: #f5f5f5;
}

.page-body .section:nth-child(odd) {
  background: #222222;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-detail .chapter-title,
.section-flow .chapter-title,
.section-links .chapter-title {
  color: inherit;
}
.section-detail .chapter-title .title-en,
.section-flow .chapter-title .title-en,
.section-links .chapter-title .title-en {
  letter-spacing: normal;
}

.flow {
  border-top: 1px solid;
  counter-reset: flow;
}

.flow-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding: 60px 0;
  border-bottom: 1px solid;
  counter-increment: flow;
}
.flow-item .flow-no {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-positive: 0;
  -webkit-box-flex: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 180px;
  flex-basis: 180px;
  max-width: 180px;
  font-size: 90px;
  font-family: Cabin, sans-serif;
  line-height: 1;
  text-align: center;
}
.flow-item .flow-no::before {
  content: "0" counter(flow);
}
.flow-item .flow-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-positive: 0;
  -webkit-box-flex: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 180px;
  flex-basis: 180px;
  max-width: 180px;
}
.flow-item .flow-title .flow-title-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.flow-item .flow-title .flow-title-body {
  padding: 5px 15px;
  text-align: center;
}
.flow-item .flow-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px;
}
.flow-item + .flow-item::before {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 36px;
  height: 20px;
  margin-left: -18px;
  background: url("../img/icon_flow_arrow.svg") no-repeat center center;
  content: "";
}

@media all and (width <= 750px) {
  .flow-item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flow-item .flow-no {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 70px;
    line-height: 1;
    text-align: center;
  }
  .flow-item .flow-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flow-item .flow-title .flow-title-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .flow-item .flow-title .flow-title-body {
    padding: 5px 15px;
    text-align: center;
  }
  .flow-item .flow-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 15px;
  }
  .flow-item + .flow-item::before {
    position: absolute;
    top: -2px;
    left: 50%;
    width: 36px;
    height: 20px;
    margin-left: -18px;
    background: url("../img/icon_flow_arrow.svg") no-repeat center center;
    content: "";
  }
}
.section-links a.btn + a.btn {
  margin-top: 20px;
}

/* ---------- ---------- ---------- ---------- */
/*  */
/* ---------- ---------- ---------- ---------- */
.spec {
  margin: 2em 0;
  border-top: 1px solid;
}
.spec a:link,
.spec a:visited,
.spec a:hover,
.spec a:active {
  color: #ffa01e;
}

.spec-note {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid;
}
.spec-note ul {
  list-style: none;
}
.spec-note li {
  font-size: 12px;
}

.spec-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid;
}
.spec-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 3px;
  background: #fff;
  content: "";
}
.spec-item .spec-title {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  margin-bottom: 30px;
}
.spec-item .spec-title .title-en,
.spec-item .spec-title .title-jp {
  padding: 0 15px;
}
.spec-item .spec-title .title-en {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 28px;
  letter-spacing: 3px;
}
.spec-item .spec-title .title-jp {
  font-size: 12px;
  line-height: 20px;
}
.spec-item .spec-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}
.spec-item .spec-body.full {
  display: block;
}
.spec-item .spec-body .spec-txt {
  -ms-flex-preferred-size: 58%;
      flex-basis: 58%;
  margin-right: 2%;
}
.spec-item .spec-body .spec-detail {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.spec-item .spec-body .spec-detail ul {
  padding: 0;
  list-style: none;
}
.spec-item .spec-body .spec-detail li {
  display: inline-block;
  margin-right: 1em;
  font-size: 12px;
}
.spec-item .spec-body .spec-photo img {
  display: inline-block;
  width: calc(49% - 20px);
  margin: 10px;
  vertical-align: top;
}
.spec-item .spec-body img {
  margin-bottom: 1em;
}

@media all and (min-width: 601px) and (width <= 800px) {
  .spec-item .spec-body {
    display: block;
  }
  .spec-item .spec-body .spec-txt {
    margin-bottom: 15px;
  }
}
@media all and (max-width: 600px) {
  .spec-item {
    display: block;
  }
  .spec-item .spec-title {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
  .spec-item .spec-body {
    display: block;
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
  .spec-item .spec-body .spec-txt {
    -ms-flex-preferred-size: 63%;
        flex-basis: 63%;
    margin-right: 2%;
  }
}
.shooting-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shooting-photo-item {
  -ms-flex-preferred-size: 730px;
      flex-basis: 730px;
  margin-bottom: 20px;
}
.shooting-photo-item img {
  width: 100%;
}