@charset "UTF-8";
/* Scss Document */
/* メディアクエリ
======================================== */
@media screen and (max-width: 768px) {
  .pc_ver {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp_ver {
    display: none;
  }
}

/* フォントサイズ
======================================== */
/**
 * SVG画像をアイコンに使いたい的ないろいろ
 *
 *  [Html] SVG塗りつぶしの色をBackground-Imageとして扱うときに変更する
 * https://code.i-harness.com/ja/q/cbfa3c
 */
/**
 * 下記SVGを変更した場合、インポートする側のCSSもアップする必要があります。注意してください。
 *
*/
/* --------------------
ヘッダー
--------------------*/
@media screen and (min-width: 768px) {
  #gNav li .coconimo span.active:after {
    background-color: #35a525;
  }
}
/*
カテゴリー内リンク
===================== */
.coconimolist__wrapper a {
  display: block;
  color: #FFF;
  text-decoration: none;
  background-color: #32a726;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  line-height: 1.25;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20256%22%20width%3D%22256%22%20height%3D%22256%22%20preserveAspectRatio%3D%22xMinYMid%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M128%2C0C57.3%2C0%2C0%2C57.3%2C0%2C128s57.3%2C128%2C128%2C128%2C128-57.3%2C128-128S198.7%2C0%2C128%2C0Zm-14.8%2C185.1l-13.6-13.6%2C40.4-40.4-39.6-39.6%2C13.6-13.6%2C53.2%2C53.2-54%2C54.1Z%22%20%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 3% center;
}

/* --------------------
コンテンツ
--------------------*/
.coconimoindex__wrapper,
.coconimolineup__wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .coconimoindex__wrapper,
  .coconimolineup__wrapper {
    margin-top: 50px;
  }
}

.coconimoindex__inner,
.coconimolineup__inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .coconimoindex__inner,
  .coconimolineup__inner {
    padding: 0 5%;
  }
}

.content__ttl {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .content__ttl {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 768px) {
  .coconimolist__wrapper {
    margin: 70px auto 0;
    padding: 90px 5% 0;
    background: url("../../master/img/asd/asdpagelist_bg_pc.jpg") top center no-repeat;
  }
  .coconimolist__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .coconimolist__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .coconimolist__inner > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 47%;
    margin-top: 20px;
    margin-right: 3%;
  }
  .coconimolist__inner > li:nth-child(2n) {
    margin-right: 0;
  }
  .coconimolist__inner a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 28px;
    padding: 20px 6%;
    background-size: 40px 40px;
    height: 110px;
  }
  .content__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .coconimolist__wrapper {
    margin: 20px auto 0;
    padding: 45px 5% 0;
    background: url("../../master/img/asd/asdpagelist_bg_sp.jpg") top center no-repeat;
  }
  .coconimolist__inner {
    max-width: 90%;
    margin: 0 auto;
  }
  .coconimolist__inner > li {
    margin-top: 10px;
  }
  .coconimolist__inner a {
    font-size: 16px;
    padding: 18px 6%;
    background-size: 20px 20px;
  }
}
.coconimolineup__image {
  width: 100%;
}
.coconimolineup__image p {
  margin-top: 40px;
  text-align: center;
}
.coconimolineup__image p.note {
  color: #ff0000;
}

/* ご利用の流れ */
#flow {
  margin-top: 80px;
}
#flow .flow__bg {
  background-size: auto auto;
  background-color: rgb(218, 241, 226);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgb(237, 247, 241) 10px, rgb(237, 247, 241) 20px);
}
#flow .flow__bg .flow__list__wrap {
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

.flow__list > li {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  counter-increment: number 1;
}
.flow__list > li::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
.flow__list > li:first-child::before {
  content: none;
}
.flow__list > li .flow__list__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow__list > li .flow__list__box > dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  line-height: 1.4;
}
.flow__list > li .flow__list__box > dt::before {
  content: counter(number);
  display: block;
  color: #32a726;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  /* ご利用の流れ */
  #flow .flow__bg {
    padding: 5% 0;
  }
  .flow__list > li {
    padding: 10px 20px;
    margin-top: 90px;
  }
  .flow__list > li:first-child {
    margin-top: 0;
  }
  .flow__list > li::before {
    width: 12%;
    height: 7.2%;
    background: #32a726;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: -13%;
    left: 0;
    right: 0;
  }
  .flow__list > li .flow__list__box > dt {
    min-height: 40px;
    padding-left: 40px;
    font-size: 1.4rem;
    margin-bottom: 0.5em;
  }
  .flow__list > li .flow__list__box > dt::before {
    width: 32px;
    height: 40px;
    line-height: 40px;
    font-size: 3em;
  }
}
@media screen and (min-width: 768px) {
  #flow .flow__bg {
    padding: 70px 0;
  }
  #flow .flow__bg .flow__list__wrap {
    max-width: 1280px;
  }
  #flow .flow__list__box > dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
  }
  .flow__list {
    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;
  }
  .flow__list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 40px;
    width: 30%;
    margin-right: 5%;
    margin-top: 30px;
  }
  .flow__list > li:nth-child(3n) {
    margin-right: 0;
  }
  .flow__list > li:nth-child(-n+3) {
    margin-top: 0;
  }
  .flow__list > li::before {
    width: 7.2%;
    height: 12%;
    background: #32a726;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    left: -12%;
    top: 0;
    bottom: 0;
  }
  .flow__list > li .flow__list__box > dt {
    min-height: 50px;
    padding-left: 40px;
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
  .flow__list > li .flow__list__box > dt::before {
    width: 40px;
    height: 50px;
    line-height: 50px;
    font-size: 3em;
  }
}
#qr {
  margin-top: 55px;
}