@charset "utf-8";

:root {
  /* color */
  --white: #fff;
  --primary: #2e9cdc;
  --text: #232b39;
  --attention: #d94372;
  --blue: #2d60ad;
  --blue-light: #def1ff;
  --gray: #ccc;
  --gray-light: #f5f5f5;
  --gray-medium: #eee;
  --gray-dark: #9f9f9f;
  --orange: #eb5505;
  --black: #333;

  /* font */
  --font-btn: Helvetica, Arial, "メイリオ", "Meiryo", "sans-serif";

  /* size */
  --max-width: 980px;
  --space-5px: .3125rem;/* 5px */
}

/*----- reset -----*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*-----layout / common parts -----*/
body {
  font-size: .875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

.inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* SP表示 */
.display-pc {
  display: none;
}

/* PC表示 */
@media (min-width: 768px) {
  .display-sp {
    display: none;
  }

  .display-pc {
    display: block;
  }
}

/* タイトル */
.sec-ttl {
  margin: 0 0 1.25rem;
  padding: .625rem;
  background: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
  }
}

/*----- MV -----*/
.img-main {
  margin: 0 auto;
}

/*----- area-btn -----*/
.area-btn {
  background-color: var(--blue-light);
  color: var(--text);
  font-family: var(--font-btn);
  padding: 1.25rem 0 1.875rem;
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}

.area-btn .box-btn {
  background: var(--white) url(../../../img/campaign2/sp/bg_arrow_entry.png) center top no-repeat;
  background-size: 12%;
  margin: 0 auto 0;
  padding: 30px 6% 18px;
  width: 94%;
}

.area-btn .txt-lead {
  font-size: .875rem;
  padding: 10px 0;
  margin: 0;
  line-height: 1.2;
}

.area-btn .txt-lead:before {
  background: url(../../../img/campaign2/sp/line_l.png) left no-repeat;
  background-size: 2vw;
  content: " ";
  padding-left: 3vw;
}

.area-btn .txt-lead:after {
  background: url(../../../img/campaign2/sp/line_r.png) right no-repeat;
  background-size: 2vw;
  content: " ";
  padding-right: 3vw;
}

.area-btn .txt-lead-sub {
  font-size: .9375rem;
  max-width: 90%;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
  color: var(--orange);
  font-weight: bold;
}

.area-btn .box-btn .btn-main {
  margin: 0 auto 1.125rem;
  width: 100%;
}

.area-btn .box-btn .btn-main a img {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .area-btn {
    background: var(--blue-light) url(../../../img/campaign2/pc/bg_btn.jpg) center top no-repeat;
    background-size: 100% auto;
    padding: 36px 0 0;
    margin-bottom: 3.75rem;
  }

  .area-btn .box-btn {
    width: 100%;
    background: none;
    padding: 0;
  }

  .area-btn .txt-lead {
    font-size: 1.875rem;
    margin-bottom: 5%;
    padding: 0;
  }

  .area-btn .txt-lead:before {
    background: url(../../../img/campaign2/pc/line_l.png) left no-repeat;
    content: " ";
    padding-left: 26px;
  }

  .area-btn .txt-lead:after {
    background: url(../../../img/campaign2/pc/line_r.png) right no-repeat;
    content: " ";
    padding-right: 26px;
  }

  .area-btn .txt-lead-sub {
    color: var(--orange);
    font-size: 1.3125rem;
    font-weight: bold;
    margin-bottom: 1.625rem;
  }

  .area-btn .box-btn .btn-main {
    margin: 0 auto 1.125rem;
    width: 100%;
  }

  .area-btn .box-btn .btn-main a img {
    width: 61.2%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .area-btn {
    padding: 2% 0 0;
  }

  .area-btn .txt-lead {
    margin-bottom: 6%;
  }

  .area-btn .txt-lead-sub {
    width: 50%;
    margin: 2% auto 1%;
  }

  .area-btn .box-btn .btn-main {
    margin: 0 auto 1%;
  }
}

/*----- 特典申し込みの流れ -----*/
.sec-flow {
  margin-bottom: 2rem;
  padding: 2rem 0 2.5rem;
  background: var(--blue-light);
}

.flow-list {
  margin: 0 10px;
}

.flow-item {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px 0;
  margin: 0 auto 20px;
  width: 100%;
  padding-left: 7px;
}

.flow-item:last-child {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* ステップ数 */
.step__number {
  display: grid;
  place-content: center;
  margin-right: 1.125rem;
  position: relative;
  z-index: 5;
}

.step__number span {
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: bold;
  font-size: .75rem;
}

.step__number em {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-content: center;
  width: 2.25rem;
  height: 2.25rem;
}

/* ステップ */
.step__box {
  display: grid;
  grid-template-rows: repeat(2, auto) 1fr;
  gap: 10px 0;
  background: var(--white);
  border: solid 2px var(--primary);
  border-radius: 4px;
  font-size: .875rem;
  line-height: 1.4;
  font-feature-settings: "palt";
  padding: 15px;
  text-align: center;
  width: 100%;
  position: relative;
}

.step__box::before {
  content: "";
  display: block;
  background: var(--white);
  width: 4px;
  height: calc(100% + 25px);
  position: absolute;
  top: 0;
  left: -2.5rem;
}

/* ステップ1のみ */
.flow-item:first-child .step__box::before {
  height: calc(50% + 25px);
  top: 50%;
}

/* ステップ4のみ */
.flow-item:nth-child(5) .step__box::before {
  height: calc(100% + 45px);
  top: -20px;
}

/* ステップbox内 */
.step__ttl {
  color: var(--blue);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
}

.step__box img {
  display: block;
  margin: auto;
}

/* stepアイコン画像 個別指定 */
.step__box .icon-step-01 {
  width: 100px;
}

.step__box .icon-step-02 {
  width: 59px;
}

.step__box .icon-step-03 {
  width: 61px;
}

.step__box .icon-step-04 {
  width: 59px;
}

.step__box .icon-step-05 {
  width: 52px;
}

/* テキスト系 */
.step__txt {
  font-size: .875rem;
  text-align: left;
  line-height: 1.6;
}

.step__txt span {
  color: var(--attention);
}

.step__txt .txt-s {
  font-size: .9em;
}

/* 特典のカード */
.tokuten__item {
  position: relative;
  z-index: 10;
  padding-left: 0;
}

.tokuten__box {
  background: var(--white);
  border: solid 2px var(--attention);
  border-radius: 4px;
  line-height: 1.4;
  padding: 10px 16px;
  text-align: center;
  width: 100%;
  display: grid;
  grid-template-columns: 167px auto;
  grid-template-rows: repeat(3, auto);
  gap: 14px 15px;
  justify-content: center;
}

.tokuten__box .step__ttl {
  grid-column: 1/3;
  grid-row: 1/2;
  color: var(--attention);
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  margin-bottom: 0;
}

.tokuten__box img {
  grid-column: 1/2;
  grid-row: 2/3;
}

.tokuten__box .step__lead {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: center;
  font-size: .875rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  font-feature-settings: "palt";
}

.tokuten__box .step__lead em {
  color: var(--attention);
}

.tokuten__box .step__lead em span {
  font-size: 1.125rem;
}

.tokuten__box .step__txt {
  grid-column: 1/3;
  grid-row: 3/4;
  text-align: center;
  font-feature-settings: "palt";
}

/* 流れ PC版 */
@media (min-width: 768px) {
  .sec-flow {
    margin-bottom: 3.6875rem;
    padding: 3.6875rem 0 3.3125rem;
  }

  .flow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 20px;
    margin: 0;
  }

  .flow-item {
    display: block;
    width: calc((100% - 20px * 3) / 4);
    margin-bottom: 0;
    padding-left: 0;
  }

  .flow-item:last-child {
    width: calc((100% - 20px) / 2);
    margin-right: 0;
    padding-bottom: 0;
  }

  /* ステップ数 */
  .step__number {
    height: 3.4375rem;
    margin-bottom: 0.6875rem;
    margin-right: 0;
  }

  .step__box {
    width: 100%;
    height: calc(100% - 3.4375rem - .6875rem);
    /* STEPxの高さと余白を引く  */
    font-size: 1rem;
  }

  .step__box::before,
  .flow-item:first-child .step__box::before,
  .flow-item:nth-child(5) .step__box::before {
    width: calc(100% + 30px);
    height: 4px;
    top: -2.125rem;
    left: 0;
  }

  /* 特典のカード */
  .tokuten__box {
    width: 100%;
    height: calc(100% - 3.4375rem - .6875rem);
    /* STEPxの高さと余白を引く */
    margin-top: calc(3.4375rem + .6875rem);
    position: relative;
  }

  .tokuten__box::before {
    content: "";
    display: block;
    background: var(--white);
    width: 100%;
    height: 4px;
    position: absolute;
    top: -2.125rem;
    left: 0;
  }

  .tokuten__box--01 .step__txt {
    text-align: left;
  }

  /* 特典のカード その1 */
  .tokuten__box--01 {
    grid-template-columns: auto;
    grid-template-rows: repeat(3, auto) 1fr;
    column-gap: 0;
  }

  .tokuten__box--01 .img-tokuten-01 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .tokuten__box--01 .step__lead {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .tokuten__box--01 .step__txt {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  /* 特典のカード その2 */
  .tokuten__box--02 {
    grid-template-columns: 244px auto;
  }

  .tokuten__box--02 .step__lead {
    text-align: center;
  }
}

/*----- 応募要項 -----*/
.area-att {
  margin: .625rem 0 2.5rem;
  font-size: .875rem;
}

.area-att a {
  display: block;
  margin-top: 2.1875rem;
  text-align: center;
}

/* タイトル */
.att__ttl--main {
  margin: 0 10px 1.875rem;
  color: var(--primary);
  font-size: 1.375rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--primary);
}

.att__ttl--contents {
  margin: 0 0 1.25rem;
  padding: 0 0 .3125rem .625rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 1px solid var(--gray);
}

.att__ttl--box {
  margin-bottom: .625rem;
  font-size: 1rem;
}

/* ボックス */
.att__box {
  margin-bottom: 1.875rem;
}

/* リスト */
/* ulリスト */
.area-att ul>li,
.att__list--bullet>li {
  position: relative;
  padding: 0 0 0 1rem;
}

.area-att ul>li:not(:last-child),
.att__list--bullet>li:not(:last-child) {
  margin-bottom: var(--space-5px);
}

.area-att ul>li::before,
.att__list--bullet>li::before {
  content: " ";
  display: inline-block;
  width: .5rem;
  height: .5rem;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: .5625rem;
  left: 0;
}

/* olリスト */
.area-att ol>li,
.att__list--number>li {
  font-weight: bold;
  list-style-type: decimal;
  list-style-position: inside;
}

.area-att ol>li:not(:last-child),
.att__list--number>li:not(:last-child) {
  margin-bottom: .5rem;
}

.area-att ol>li p,
.att__list--number>li p {
  display: block;
  padding-left: 1.1rem;
  font-weight: normal;
}

/* 入れ子の場合 */
.area-att ul ul,
.area-att ul ol,
.att__list--bullet ul,
.att__list--bullet ol,
.area-att ol ul,
.area-att ol ol,
.att__list--number ul,
.att__list--number ol {
  margin: 1.25rem 0 0 1.25rem;
  padding: 0;
}

.area-att ul ul li,
.area-att ul ol li,
.att__list--bullet ul li,
.att__list--bullet ol li,
.area-att ol ul li,
.area-att ol ol li,
.att__list--number ul li,
.att__list--number ol li {
  margin-bottom: var(--space-5px);
}

.area-att .sup-exp {
  margin-top: 5px;
  padding: 10px 15px;
  border: 2px solid var(--gray-medium);
  background-color: var(--gray-light);
}

.area-att .sup-exp ul,
.area-att .sup-exp ol {
  margin-top: .625rem;
}

.area-att .sup-exp ul li,
.area-att .sup-exp ol li {
  margin-bottom: var(--space-5px);
}

.area-att .att__contents {
  margin: .9375rem 3% 1.875rem;
}

.area-att strong {
  display: block;
  padding: 0;
}

@media (min-width: 768px) {
  .att__ttl--main {
    margin-left: 0;
    margin-right: 0;
  }
}

/*----- 表 -----*/
.present-table {
  width: 100%;
  margin: 2% 0 4%;
  border-collapse: collapse;
}

.present-table th,
.present-table td {
  width: calc(100% / 3);
  padding: 4% 1%;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  border: 2px solid var(--white);
}

.present-table th {
  background: var(--blue-light);
  border-bottom: 2px solid var(--white);
  color: var(--primary);
}

.present-table td {
  background: var(--gray-medium);
  border-bottom: 2px solid var(--white);
}

/* thead */
.present-table thead th {
  padding-top: 2%;
  padding-bottom: 2%;
  border-bottom: 4px solid var(--white);
}

.present-table .table-margin {
  padding-top: 2%;
  padding-bottom: 2%;
}

.present-table thead th:nth-child(2) {
  border-right: 2px solid var(--white);
}

@media (min-width: 768px) {
  .present-table {
    width: 100%;
  }

  .present-table th,
  .present-table td {
    width: 20%;
    padding: 20px;
    line-height: inherit;
  }

  .present-table .table-margin {
    padding: 20px;
  }
}

/*----- 提供 -----*/
.sec-youkou .offer {
  margin: 1.875rem 3% 0;
  font-size: .875rem;
}

@media (min-width: 768px) {
  .sec-youkou .offer {
    margin: 3% 3% 0;
  }
}
