@charset "utf-8";

body {
  background-color: #fff;
  color: #555;
  margin: 0;
}

header {
  width: 100%;
  margin: 6px auto;
}

.forPC {
  display: none;
}

.mainImg {
  padding: 0 2%;
  box-sizing: border-box;
}

.logo {
  height: 28px;
}


.content-warp {
  width: 100%;
  margin: 20px auto;
}

.title_wrapper {
  width: 100%;
  color: #fff;
  background-color: #82A9DA;

}
.title_inner_wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  color: #fff;
  background: url(../coupon/image/bg_coupon2.png) no-repeat;
  background-position: -40px 80px;
  background-size: 220px;
}
.title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.lead {
  margin: 20px 16px 0;
  text-align: center;
  font-size: 14px;
}


.introWrap {
  margin: 0 auto 30px;
}

.introExample {
  background: #eee;
  width: 96%;
  margin: 0 auto;
  padding: 15px 15px 15px 40px;
  font-size: 13px;
  text-indent: -2em;
  box-sizing: border-box;
}

.introText {
  text-align: center;
  font-size: 12px;
}

h2 {
  font-size: 18px;
}

.step-warp {
  margin-bottom: 20px;
  justify-content: space-between;
}

.step-num {
  line-height: 25px;
  color: #fff;
  font-size: 15px;
  width: 25px;
  height: 25px;
  background-color: #82A9DA;
  border-radius: 100%;
  text-align: center;
  vertical-align: top;
  display: inline-block;
}

.step-content {
  margin: 0 0 0 3%;
  width: calc(95% - 25px);
  display: inline-block;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  line-height: 1.5;
}

.step-text a {
  color: #5782bf;
}

.step-text a:hover {
  opacity: 0.8;
}

.step-list {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
  font-size: 13px;
}

.step-list-red {
  color: #ff5b63;
}

.step-image-warp {
  margin: 20px auto;
  border: 2px solid #ddd;
  padding: 1%;
  box-sizing: border-box;
}

.step-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.noteWrap {
  background: #f2f2f2;
  font-size: 12px;
  padding: 30px 20px;
}

.noteList {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  box-sizing: border-box;
}

.noteList li {
  margin: 0 auto 15px;
}

.noteList li a {
  text-decoration: none;
  color: #4270ba;
}

.noteListDetails {
  margin: 10px auto;
  padding-left: 20px;
}

.noteListDetails li {
  margin: 3px auto;
  color: #888;
}

.noteListDetails span {
  font-size: 11px;
  padding-left: 10px;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 3%;
}

/*tabの形状*/
.tabWrap {
  border-bottom: 1px solid #82A9DA;
  width: 100%;
  margin: 0 auto;
}
.tab {
  font-size: 0;
  width: 98%;
  margin: 0 auto -1px;
  padding: 0;
  display: flex;
}
.tab li {
  width: 46%;
  margin: 0 2%;
  border: 1px solid #82A9DA;
  border-radius: 5px 5px 0 0;
  display: inline-block;
  color: #82A9DA;
  background: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: ease 0.2s opacity;
}
.tab li:hover {
  background: #d7e8ed;
}
.tab li a {
  text-decoration: none;
  color: #82A9DA;
  padding: 8px 0;
  display: block;
}
.tab li.active,
.tab li.active:hover {
  background: #82A9DA;
}
.tab li.active a {
  color: #fff;
}
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 10px 3%;
}
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
