@import url("css/reset.css");
@import url("css/header.css");
html {
  height: 100%;
}
body {
  color: #606060;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
.wrapper {
  flex: 1;
}
@media (min-width: 768px) {
  main {
    position: relative;
    height: calc(100% - 64px);
  }
  main section {
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}
/* ----------------------共通CSS----------------------- */
section {
  padding-top: 70px;
}
section > h2 {
  background-color: #FF9300;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.contents {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding: 1em;
}
.contents h3 {
  color: #FF9300;
  font-size: 18px;
  font-weight: 500;
}
.contents h4 {
  color: #FF9300;
  font-size: 18px;
  font-weight: 500;
}
.oranage_wrap ul li {
  border: 4px solid #FF9300;
  border-radius: 20px;
  padding: 1em;
}
.bg1 {
  background-color: #FAEDDA;
}
small {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}
small span {
  display: inline-block;
}
.screenshot {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  section > h2 {
    font-size: 23px;
  }
  .contents h3 {
    font-size: 20px;
  }
  .oranage_wrap ul li {
    padding: 1.5em;
  }
}
@media (min-width: 1024px) {
  section > h2 {
    font-size: 26px;
  }
  .contents h3 {
    font-size: 24px;
  }
}
/* -------------------使い方マニュアル------------------- */
.headcopy {
  width: 70%;
  max-width: 306px;
  margin: 80px auto 0;
  text-align: center;
}
.headcopy span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
/* -------------------初期設定について------------------- */
.intro {
  padding: 1em;
  width: 93%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.intro h3 {
  font-size: 20px;
}
.config ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.config ul li {
  border: 4px solid #FF9300;
  border-radius: 20px;
  flex: 1 1 auto;
  padding: 1em;
}
.config ul li h4 {
  color: #606060;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .intro h3 {
    font-size: 24px;
  }
  .intro h3 + p {
    text-align: center;
  }
  .config h3, .config h3 + p, .config h3 + p + p {
    text-align: center;
  }
  .config ul {
    flex-wrap: nowrap;
    width: 93%;
    max-width: 1025px;
    margin-left: auto;
    margin-right: auto;
  }
  .config ul li {
    flex: 0 0 48%;
    padding: 1.5em;
  }
  .config ul li h4 {
    font-size: 20px;
    margin-bottom: 0.5em;
  }
}
/* -------------------サービスの始め方------------------- */
.start ol {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.start ol li {
  margin-bottom: 3em;
  list-style-type: none;
  position: relative;
  margin-left: 45px;
}
.start ol li:last-child {
  margin-bottom: 0;
}
.start ol li h3 {
  border-bottom: 1px solid #FF9300;
  color: #606060;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 0.3em;
  margin-bottom: 0.3em;
}
.start ol li:nth-child(3) h3, .start ol li:nth-child(4) h3, .start ol li:nth-child(5) h3 {
  border-bottom: none;
}
.start ol li:nth-child(3), .start ol li:nth-child(4), .start ol li:nth-child(5) {
  border-bottom: 1px solid #FF9300;
}
.start ol li h3::before {
  background-size: cover;
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: -45px;
}
.start ol li:nth-child(1) h3::before {
  background-image: url("img/num_01.png");
}
.start ol li:nth-child(2) h3::before {
  background-image: url("img/num_02.png");
}
.start ol li:nth-child(3) h3::before {
  background-image: url("img/num_03.png");
}
.start ol li:nth-child(4) h3::before {
  background-image: url("img/num_04.png");
}
.start ol li:nth-child(5) h3::before {
  background-image: url("img/num_05.png");
}
.start ol li h3 span {
  color: #FF9300;
  font-size: 18px;
  font-weight: 500;
}
.start ol li.flex {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.start ol li.flex img {
  flex: 1 1 20%;
  max-width: 150px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .start ol {
    width: 88%;
  }
  .start ol li h3 {
    font-size: 20px;
  }
  .start ol li h3 span {
    font-size: 20px;
  }
  .start ol li h3::before {
    background-size: cover;
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -60px;
  }
  .start ol li.flex {
    align-items: flex-end;
  }
  .start ol li.flex img {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .start ol li h3 {
    font-size: 24px;
  }
  .start ol li h3 span {
    font-size: 24px;
  }
}
/* ----------------------楽しみ方---------------------- */
.fun .contents h3 span {
  position: relative;
}
.fun .contents h3 span::before, .fun .contents h3 span::after {
  content: "";
  display: inline-block;
  line-height: 1;
  width: 15px;
  height: 26px;
  background-size: cover;
  position: absolute;
}
.fun .contents h3 span::before {
  background-image: url("img/line_left.png");
  left: -12px;
}
.fun .contents h3 span::after {
  background-image: url("img/line_right.png");
  right: -12px;
}
.fun ul {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.fun ul + p {
  line-height: 1.5;
}
.fun ul + p + h3 {
  line-height: 1.5;
}
.fun ul li {
  max-width: 322px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
  .fun .contents h3 {
    margin-bottom: 1.5em;
  }
  .fun .contents h3 span {
    font-size: 24px;
  }
  .fun ul {
    width: 90%;
    max-width: 700px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .fun ul li {
    flex: 0 0 46%;
  }
  .fun .contents h3 span::before, .fun .contents h3 span::after {
    width: 15px;
    height: 35px;
  }
  .fun .contents h3 span::before {
    top: 3px;
    left: -20px;
  }
  .fun .contents h3 span::after {
    top: 3px;
    right: -20px;
  }
  .fun .contents h3 + p {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 4em;
  }
  .fun .contents ul + p + h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .fun .contents h3 + p {
    font-size: 24px;
  }
  .fun .contents ul + p {
    font-size: 18px;
  }
}
/* -------------------基本的な使い方------------------- */
.howto article + ul {
  background-color: #FAEDDA;
  padding: 3em;
}
.howto article + ul li{
	text-align: center;
}
.howto article + ul li:last-child {
	max-width: 200px;
}
.howto .oranage_wrap .flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.howto .oranage_wrap .flex div:last-child {
  flex: 1 1 35%;
  margin-right: 20px;
  max-width: 100px;
}
.howto .oranage_wrap .flex2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.howto .oranage_wrap .flex2 h4 {
  font-size: 14px;
  line-height: 1.5;
  margin-right: 1em;
  flex: 0 0 50%;
}
.howto .oranage_wrap .flex2 img {
  flex: 1 1 auto;
  max-width: 110px;
}
@media (min-width: 375px) {
  .howto .oranage_wrap .flex2 img {
    max-width: 130px;
  }
}
@media (min-width: 768px) {
  .howto article {
    width: 90%;
    max-width: 933px;
    margin: 0 auto 2em;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .howto article .pc_only {
    flex: 0 0 25%;
    max-width: 210px;
    margin-left: 5%;
  }
  .howto article + ul {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3em 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .howto article + ul li {
    flex: 0 0 31%;
    max-width: 257px;
    margin-bottom: 0;
  }
  .howto article + ul li:nth-child(2n) {
    margin-left: 0;
  }
  /*.howto article + ul li {
    flex: 0 0 47%;
  }
  .howto article + ul li:nth-child(even) {
    margin-left: 6%;
  }*/
  .howto article + ul li p {
    font-size: 14px;
  }
  .howto .flex_map {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
  }
  .howto .flex_map .screenshot {
    width: 100%;
    margin: 0 auto;
    flex: 0 0 48%;
    max-width: 400px;
  }
  .howto .flex_map + div {
    width: 95%;
    max-width: 970px;
    margin: 0 auto 3em;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .howto .flex_map + div .pc_only {
    flex: 0 0 40%;
    max-width: 286px;
    margin-left: 5%;
  }
  .howto .flex_map + div .pc_only h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
  .howto .flex_iphone {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 3em;
  }
  .howto .flex_iphone + div {
    width: 90%;
    max-width: 682px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .howto article + ul {
    justify-content: center;
  }
  .howto article + ul li {
    flex: 0 0 29%;
    max-width: 257px;
    margin-left: 2%;
    margin-right: 2%;
  }
  .howto article + ul li:nth-child(2n) {
    margin-left: 2%;
  }
  .howto .flex_map .screenshot {
    margin-left: 4%;
  }
}
/* ----------------トラブルシューティング---------------- */
.trouble h3 {
  color: #606060;
  border-bottom: 1px solid #FF9300;
  margin-bottom: 0.5em;
}
.trouble ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 768px) {
  .trouble h3 {
    font-size: 21px;
  }
  .trouble .contents div {
    width: 90%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .trouble h3 {
    font-size: 24px;
  }
}
/* -------------------TOPページに戻る------------------- */
.gotop a {
  background-color: #FF9300;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 9em;
  margin: 0 auto;
  padding: 0.3em 1em;
  text-align: center;
  transition: transform 0.3s;
}
.gotop a:hover {
  transform: scale(1.2);
}
/* -------------------footer------------------- */
footer {
  background-color: #FF9300;
  color: #fff;
  padding: 1em 0;
  text-align: center;
}