@charset "UTF-8";
.about {
  margin-top: 100px;
}
@media (max-width: 480px) {
  .about {
    margin-top: 50px;
  }
}

.footer {
  margin-top: 100px;
}
@media (max-width: 480px) {
  .footer {
    margin-top: 50px;
  }
}

.problem {
  padding: 100px 0 0;
}

.about {
  padding-bottom: 100px;
}
@media (max-width: 480px) {
  .about {
    padding-bottom: 50px;
  }
}

.points {
  padding: 100px 0 50px;
}
@media (max-width: 480px) {
  .points {
    padding: 50px 0 0;
  }
}

.hurdle {
  padding: 100px 0 50px;
}
@media (max-width: 480px) {
  .hurdle {
    padding-top: 50px;
  }
}

.flow {
  padding-top: 100px;
}
@media (max-width: 480px) {
  .flow {
    padding-top: 50px;
  }
}

.price {
  padding-top: 150px;
}
@media (max-width: 480px) {
  .price {
    padding-top: 50px;
  }
}

.qa {
  padding-top: 100px;
}
@media (max-width: 480px) {
  .qa {
    padding-top: 50px;
  }
}

.footer {
  padding: 30px 30px 50px;
}

/*********************************************************
全体
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.25em;
  line-height: 1.7;
}
@media (max-width: 1200px) {
  body {
    padding-top: 50px;
  }
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
  visibility: hidden;
}

li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

button,
input[type=submit],
input[type=reset] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*********************************************************
ヘッダー
*********************************************************/
.header {
  padding: 30px 10px 10px;
}
@media (max-width: 1200px) {
  .header {
    background: #fff;
    border-bottom: 1px solid #1f385c;
    height: 50px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }
}

.header__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .header__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 1201px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .header__inner {
    background: #fff;
    display: none;
    padding: 0 0 10px;
    position: absolute;
    top: 50px;
    width: 100%;
  }
}

.gnav__list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .gnav__list {
    display: block;
  }
}

.gnav__item {
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .gnav__item {
    margin-right: 0;
  }
}

.gnav__link {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}
@media (min-width: 1201px) {
  .gnav__link {
    position: relative;
  }
  .gnav__link::after {
    background: #ff0062;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: 0.2s;
    transform: scale(0, 1);
    width: 100%;
    height: 1px;
  }
  .gnav__link:hover::after {
    transform: scale(1, 1);
  }
}
@media (max-width: 1200px) {
  .gnav__link {
    border-bottom: 1px solid #1f385c;
    display: block;
    padding: 10px 28px 10px 5px;
    position: relative;
  }
  .gnav__link::after {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 320px) {
  .gnav__link {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .header__btn {
    margin: 10px auto 0;
    max-width: 300px;
  }
}

.menu-btn {
  position: absolute;
  top: 8px;
  right: 10px;
}
@media (min-width: 1201px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 30px;
}

.menu-btn__bar {
  background: #1f385c;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  background: #1f385c;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::before {
  margin-top: -11px;
}
.menu-btn__bar::after {
  margin-top: 10px;
}

.close .menu-btn__bar {
  background: transparent;
}
.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}
.close .menu-btn__bar::before {
  transform: rotate(45deg);
}
.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

/*********************************************************
お問い合わせボタン
*********************************************************/
.contact-btn {
  background: #ff0062;
  border-color: #cd3a50;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-radius: 30px;
  color: #fff;
  display: block;
  padding: 10px 50px;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.contact-btn:hover {
  border-color: #ff0062;
  top: 2px;
  left: 2px;
}

/*********************************************************
メインビジュアル
*********************************************************/
.mv {
  text-align: center;
}
@media (max-width: 768px) {
  .mv {
    background: #d8f8f7;
  }
}

.mv__inner {
  height: 100%;
  position: relative;
}

.mv__btn {
  position: absolute;
  bottom: 23%;
  left: 50%;
  text-align: center;
}
@media (min-width: 2001px) {
  .mv__btn {
    transform: translateX(-150%);
  }
}
@media (min-width: 1201px) and (max-width: 2000px) {
  .mv__btn {
    transform: translateX(-130%);
  }
}
@media (max-width: 1200px) {
  .mv__btn {
    bottom: 10%;
    left: 20%;
  }
}
@media (max-width: 768px) {
  .mv__btn {
    top: 45%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .mv__btn {
    top: 43%;
  }
}
.mv__btn p {
  margin-bottom: 10px;
}
.mv__btn .contact-btn {
  font-size: 24px;
}
@media (max-width: 480px) {
  .mv__btn .contact-btn {
    font-size: 18px;
  }
}

/*********************************************************
こんなお悩みありませんか
*********************************************************/
.problem {
  position: relative;
}

.problem__ttl {
  background: #282828;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  position: absolute;
  top: -20px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 400px) {
  .problem__ttl {
    font-size: 16px;
  }
}
@media (max-width: 300px) {
  .problem__ttl {
    white-space: inherit;
  }
}

.problem__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .problem__list {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 600px) {
  .problem__list {
    align-items: center;
    flex-direction: column;
  }
}

.problem__item {
  background: #f2f4f4;
  border-radius: 15px;
  padding: 10px 15px;
  position: relative;
  width: 200px;
}
@media (max-width: 600px) {
  .problem__item {
    width: 98%;
    max-width: 300px;
  }
}
@media (min-width: 601px) {
  .problem__item:nth-child(2) {
    margin: 0 15px;
  }
}
@media (max-width: 600px) {
  .problem__item:nth-child(2) {
    margin: 50px 0;
  }
}
.problem__item:nth-child(2) p {
  padding-top: 90px;
}
.problem__item img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}
.problem__item p {
  font-size: 14px;
  padding-top: 80px;
  text-align: center;
}

.problem__arrow {
  padding: 30px 0;
  text-align: center;
}
.problem__arrow img {
  width: 40px;
}

/*********************************************************
検索連動型ショッピング広告なら！
*********************************************************/
.recommend__ttl {
  display: flex;
  justify-content: center;
}
.recommend__ttl img {
  margin-right: 15px;
  width: 250px;
}
@media (max-width: 340px) {
  .recommend__ttl img {
    margin-right: 5px;
    width: 200px;
    width: 70vw;
  }
}
.recommend__ttl span {
  align-self: flex-end;
  font-size: 20px;
  font-weight: bold;
  line-height: 0.7;
}
@media (max-width: 340px) {
  .recommend__ttl span {
    font-size: 14px;
  }
}

.recommend__wrap {
  background-image: url(http://ad.gigamedia.jp/image.php?id=009);
  margin-top: 20px;
  background-repeat: repeat-x;
  padding: 20px 0;
  position: relative;
}
.recommend__wrap::before, .recommend__wrap::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 180px;
  position: absolute;
  top: -50px;
}
@media (max-width: 768px) {
  .recommend__wrap::before, .recommend__wrap::after {
    display: none;
  }
}
.recommend__wrap::before {
  background-image: url(http://ad.gigamedia.jp/image.php?id=010);
  left: 50%;
  margin-left: -380px;
  width: 180px;
}
.recommend__wrap::after {
  background-image: url(http://ad.gigamedia.jp/image.php?id=011);
  right: 50%;
  margin-right: -380px;
  width: 110px;
}
.recommend__wrap h3 {
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.recommend__point {
  margin: 50px auto;
  width: 90%;
  max-width: 800px;
}

/*********************************************************
そもそも、検索連動型ショッピング広告とは？
*********************************************************/
.about {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .about {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.about__ttl {
  position: relative;
}
.about__ttl img {
  position: absolute;
  top: -50px;
  left: 150px;
}
@media (max-width: 800px) {
  .about__ttl img {
    left: 15%;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .about__ttl img {
    top: -15px;
  }
}
@media (max-width: 400px) {
  .about__ttl img {
    top: 0;
  }
}

.about__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .about__container {
    flex-direction: column;
  }
}

.about__img {
  width: 55%;
}
@media (max-width: 800px) {
  .about__img {
    padding-top: 50px;
    text-align: center;
    width: 100%;
  }
}

.about__txt {
  padding-top: 150px;
  width: 43%;
}
@media (max-width: 800px) {
  .about__txt {
    padding-top: 50px;
    width: 100%;
  }
}
.about__txt p:not(:first-child) {
  margin-top: 1em;
}

/*********************************************************
service-image
*********************************************************/
.service-image {
  background-image: url(http://ad.gigamedia.jp/image.php?id=017);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  text-align: center;
}
.service-image img {
  width: 1000px;
}

/*********************************************************
3つのポイント
*********************************************************/
.points {
  background: #f2f4f4;
}

.points__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .points__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.points__nav {
  margin-top: 50px;
}

.points__ttl {
  color: #1f385c;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 600px) {
  .points__ttl {
    font-size: 24px;
  }
}
.points__ttl span {
  color: #ff0062;
  font-weight: bold;
}

.points__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 800px) {
  .points__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .points__list {
    align-items: center;
    flex-direction: column;
  }
}

.points__item {
  width: 250px;
}
@media (max-width: 250px) {
  .points__item {
    width: 100%;
  }
}
@media (min-width: 601px) {
  .points__item:nth-child(2) {
    margin: 0 15px;
  }
}
@media (max-width: 600px) {
  .points__item:nth-child(2) {
    margin: 30px 0;
  }
}

.points__link {
  background: #abedef;
  border-color: #1f385c;
  border-radius: 80px;
  border-style: solid;
  border-width: 1px 1px 7px 7px;
  color: #1f385c;
  display: block;
  font-size: 12px;
  padding: 50px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.points__link:hover {
  border-width: 1px;
  margin-bottom: 6px;
  top: 6px;
}
.points__link::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  transform: rotate(135deg);
  margin-left: -8px;
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.points__link strong {
  color: #ff0062;
  display: block;
  font-size: 18px;
}

.points__check {
  background: #1f385c;
  border-radius: 50%;
  display: block;
  margin-left: -20px;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
}
.points__check::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 8px;
  width: 16px;
  transform: rotate(135deg);
  color: #fff;
  margin: -8px 0 0 -10px;
  position: absolute;
  top: 50%;
  left: 50%;
}

/*********************************************************
ポイント
*********************************************************/
.point {
  counter-reset: num 0;
}

.point__ttl {
  background: #abedef;
  border-color: #1f385c;
  border-radius: 70px;
  border-style: solid;
  border-width: 1px 1px 7px 7px;
  color: #1f385c;
  display: flex;
  align-items: center;
  padding: 30px;
}
@media (max-width: 600px) {
  .point__ttl {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .point__ttl {
    flex-direction: column;
  }
}

.point__wrap {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
  counter-increment: num 1;
  margin-top: 50px;
}
@media (max-width: 1100px) {
  .point__wrap {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.point__num {
  border-right: 1px solid #ff0062;
  color: #ff0062;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1;
  margin-right: 20px;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .point__num {
    border-right: none;
    border-bottom: 1px solid #ff0062;
    margin-right: 0;
    margin-bottom: 10px;
    padding-right: 0;
    padding-bottom: 10px;
  }
}
.point__num::before {
  content: counter(num, decimal-leading-zero);
}

.point__txt {
  font-weight: bold;
}
@media (max-width: 600px) {
  .point__txt {
    font-size: 14px;
  }
}
.point__txt strong {
  color: #ff0062;
}

.point__pcblock {
  display: block;
  font-weight: bold;
}
@media (max-width: 480px) {
  .point__pcblock {
    display: inline;
  }
}

.point-box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .point-box {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .point-box {
    margin-top: 30px;
  }
}
.point-box.-re {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .point-box.-re {
    flex-direction: column;
  }
}

.point-box__img {
  text-align: center;
}
@media (min-width: 601px) {
  .point-box__img {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
  }
}
@media (max-width: 600px) {
  .point-box__img {
    text-align: center;
    width: 100%;
  }
}
.point-box__img img {
  width: 70%;
}
@media (max-width: 600px) {
  .point-box__img img {
    width: 300px;
  }
}

.point-box__txt {
  width: 66%;
}
@media (max-width: 600px) {
  .point-box__txt {
    margin-top: 15px;
    width: 100%;
  }
}
.point-box__txt p:not(:first-child) {
  margin-top: 1em;
}

/*********************************************************
ハードルが高い！
*********************************************************/
.hurdle__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .hurdle__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.hurdle__ttl {
  color: #1f385c;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 600px) {
  .hurdle__ttl {
    font-size: 24px;
  }
}
.hurdle__ttl span {
  color: #ff0062;
  font-weight: bold;
}

.hurdle__txt {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .hurdle__txt {
    margin-top: 30px;
  }
}

.hurdle__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 800px) {
  .hurdle__container {
    flex-direction: column-reverse;
  }
}

.hurdle__img {
  margin-right: 30px;
  width: 400px;
}
@media (max-width: 800px) {
  .hurdle__img {
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
}

.detail {
  background: #f2f4f4;
  border: 2px solid #1f385c;
  border-radius: 15px;
  color: #1f385c;
  padding: 20px 10px;
  position: relative;
}
@media (max-width: 800px) {
  .detail {
    display: flex;
    flex-wrap: wrap;
  }
}
.detail::before {
  content: "";
  position: absolute;
  z-index: 2;
}
@media (min-width: 801px) {
  .detail::before {
    border-color: transparent #1f385c transparent transparent;
    border-width: 15px 50px 15px 0;
    border-style: solid;
    height: 0;
    width: 0;
    top: 50%;
    left: -50px;
  }
}
@media (max-width: 800px) {
  .detail::before {
    border-color: #1f385c transparent transparent transparent;
    border-width: 30px 25px 0 25px;
    border-style: solid;
    height: 0;
    width: 0;
    bottom: -30px;
    left: 50%;
    margin-left: -25px;
  }
}
.detail::after {
  content: "";
  position: absolute;
  z-index: 2;
}
@media (min-width: 801px) {
  .detail::after {
    border-color: transparent #f2f4f4 transparent transparent;
    border-width: 15px 50px 15px 0;
    border-style: solid;
    height: 0;
    width: 0;
    top: 50%;
    left: -43px;
  }
}
@media (max-width: 800px) {
  .detail::after {
    border-color: #f2f4f4 transparent transparent transparent;
    border-width: 30px 25px 0 25px;
    border-style: solid;
    height: 0;
    width: 0;
    bottom: -27px;
    left: 50%;
    margin-left: -25px;
  }
}

.detail__box {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}
@media (min-width: 801px) {
  .detail__box:nth-child(2) {
    margin: 15px 0;
  }
}
@media (max-width: 800px) {
  .detail__box:first-child {
    width: 100%;
  }
  .detail__box:nth-child(2), .detail__box:nth-child(3) {
    margin-top: 4%;
    width: 48%;
  }
  .detail__box:nth-child(2) {
    margin-right: 4%;
  }
}

.detail-info {
  font-size: 14px;
}

.detail-info__ttl {
  font-size: 18px;
  font-weight: bold;
}

.detail-info__content {
  display: flex;
  font-size: 12px;
}
@media (max-width: 800px) {
  .detail-info__content {
    justify-content: center;
    margin-top: 15px;
  }
}
@media (max-width: 400px) {
  .detail-info__content {
    flex-direction: column;
  }
}
.detail-info__content dl {
  margin-left: 1em;
}
@media (max-width: 400px) {
  .detail-info__content dl:last-child {
    margin-top: 15px;
  }
}
.detail-info__content dt {
  font-weight: bold;
}
.detail-info__content li {
  line-height: 1.5;
  list-style-type: "・";
  margin-left: 1em;
}

.detail__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .detail__container {
    display: block;
    text-align: center;
  }
}

.detail__txt {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .detail__txt {
    font-size: 16px;
  }
}

.detail__icon {
  text-align: center;
  width: 120px;
}
@media (max-width: 800px) {
  .detail__icon {
    margin: 15px auto 0;
  }
}
.detail__icon img {
  width: 50px;
}
.detail__icon img:nth-child(2) {
  margin-left: 10px;
}

/*********************************************************
導入フロー
*********************************************************/
.flow__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .flow__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.flow__ttl {
  padding-top: 70px;
  position: relative;
}
.flow__ttl span {
  background: #1f385c;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  padding: 10px 25px;
  position: absolute;
  top: 0;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 380px) {
  .flow__ttl span {
    font-size: 12px;
  }
}
@media (max-width: 270px) {
  .flow__ttl span {
    padding: 10px;
    white-space: inherit;
    width: 98%;
  }
}
.flow__ttl span::after {
  border-color: #1f385c transparent transparent transparent;
  border-width: 15px 10px 0 10px;
  border-style: solid;
  height: 0;
  width: 0;
  content: "";
  margin-left: -10px;
  position: absolute;
  bottom: -15px;
  left: 50%;
}
.flow__ttl h2 {
  color: #1f385c;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.flow__txt {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .flow__txt {
    margin-top: 30px;
  }
}

.flow-list {
  counter-reset: flownum 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .flow-list {
    margin: 50px auto 0;
    max-width: 700px;
  }
}
@media (max-width: 680px) {
  .flow-list {
    display: block;
  }
}

.flow-slit__item {
  counter-increment: flownum 1;
  position: relative;
  width: 320px;
}
@media (max-width: 680px) {
  .flow-slit__item {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    max-width: 320px;
  }
}
.flow-slit__item:first-child .flow-list__box {
  background: #00a9d6;
}
@media (max-width: 680px) {
  .flow-slit__item:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media (min-width: 681px) and (max-width: 1200px) {
  .flow-slit__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (min-width: 1201px) {
  .flow-slit__item:nth-child(n+4) {
    margin-top: 70px;
  }
}
.flow-slit__item:last-child .flow-list__box {
  background: linear-gradient(-60deg, #1f385c 50%, #00a9d6 0);
}
@media (min-width: 1201px) {
  .flow-slit__item:first-child::after {
    border-color: transparent transparent transparent #00a9d6;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(2)::after, .flow-slit__item:nth-child(4)::after, .flow-slit__item:nth-child(5)::after {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(5)::before {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    left: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(5)::after {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(4)::before {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
  }
  .flow-slit__item:nth-child(4)::after {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    left: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(3)::before {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
  }
  .flow-slit__item:nth-child(3)::after {
    border-color: transparent transparent transparent #1f385c;
    border-width: 9px 0 9px 18px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    right: -28px;
    top: 50%;
  }
}
@media (max-width: 680px) {
  .flow-slit__item:first-child::after {
    border-color: #00a9d6 transparent transparent transparent;
    border-width: 18px 9px 0 9px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
  }
  .flow-slit__item:nth-child(2)::after, .flow-slit__item:nth-child(3)::after, .flow-slit__item:nth-child(4)::after, .flow-slit__item:nth-child(5)::after {
    border-color: #1f385c transparent transparent transparent;
    border-width: 18px 9px 0 9px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
  }
}

.flow-list__num {
  background: #fff;
  border: 1px solid #1f385c;
  border-radius: 50%;
  color: #1f385c;
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  position: absolute;
  top: 10px;
  left: 15px;
  text-align: center;
  width: 50px;
  height: 50px;
  z-index: 1;
}
.flow-list__num.-blue {
  border-color: #00a9d6;
  color: #00a9d6;
}
.flow-list__num::before {
  content: counter(flownum);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  width: 50px;
  height: 50px;
}

.flow-list__category {
  color: #1f385c;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: normal;
  text-align: right;
}
.flow-list__category span {
  color: #00a9d6;
  font-weight: bold;
}

.flow-list__box {
  background: #1f385c;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding: 10px;
  position: relative;
  text-align: center;
}
.flow-list__box p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/*********************************************************
料金表
*********************************************************/
.price__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .price__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.price__ttl {
  color: #1f385c;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.price-table {
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 480px) {
  .price-table {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
  }
}
.price-table th,
.price-table td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.price-table th {
  color: #fff;
  font-weight: bold;
}
.price-table td {
  border: 1px solid #333;
}
@media (max-width: 600px) {
  .price-table td {
    border-width: 0 1px 1px;
  }
}

.price-table__initial th {
  background: #ff0062;
  border: 1px solid #ff0062;
}
.price-table__initial td {
  padding: 34px 30px;
}
@media (max-width: 600px) {
  .price-table__initial td {
    padding: 34px 15px;
  }
}

@media (max-width: 600px) {
  .price-table__monthly {
    margin-top: 30px;
  }
}
.price-table__monthly th {
  background: #00a9d6;
  border: 1px solid #00a9d6;
}
.price-table__monthly td {
  padding: 10px 30px 30px;
}
@media (max-width: 600px) {
  .price-table__monthly td {
    padding: 10px 15px 30px;
  }
}

.price-table__container {
  display: flex;
  justify-content: center;
}
@media (max-width: 400px) {
  .price-table__container {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 401px) {
  .price-table__container p:last-child {
    align-self: flex-end;
  }
}
@media (max-width: 400px) {
  .price-table__container p:last-child {
    margin-top: 10px;
  }
}

.price-table__price {
  color: #ff0062;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
.price-table__price span {
  font-size: 24px;
  font-weight: bold;
}

.price-table__txt {
  font-size: 14px;
  margin-bottom: 5px;
}

/*********************************************************
よくあるご質問
*********************************************************/
.qa__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .qa__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.qa__ttl {
  color: #1f385c;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .qa__ttl {
    margin-bottom: 30px;
  }
}

.qa-list {
  border: 1px solid #333;
  margin-top: 10px;
  padding: 5px;
}

.qa-list__q {
  cursor: pointer;
  margin-left: 1.5em;
  padding: 20px 30px 20px 20px;
  position: relative;
  text-indent: -1.5em;
}
.qa-list__q::before, .qa-list__q::after {
  background: #333;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
}
.qa-list__q::before {
  transform: translate(-10px, -10px);
  transition: 0.3s;
  width: 1px;
  height: 20px;
}
.qa-list__q::after {
  transform: translateY(-1px);
  width: 20px;
  height: 1px;
}
.qa-list__q.-open::before {
  opacity: 0;
}

.qa-list__a {
  background: #00a9d6;
  color: #fff;
  display: none;
  padding: 20px;
}

/*********************************************************
フッター
*********************************************************/
.footer {
  background: #1f385c;
  color: #fff;
}

.footer__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
@media (max-width: 1100px) {
  .footer__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.footer__link {
  display: flex;
  justify-content: center;
}
.footer__link li:first-child {
  margin-right: 150px;
}
@media (max-width: 600px) {
  .footer__link li:first-child {
    margin-right: 50px;
  }
}
.footer__link a {
  color: #fff;
  text-decoration: underline;
}
.footer__link a:hover {
  text-decoration: none;
}

.footer__container {
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  .footer__container {
    align-items: center;
    flex-direction: column;
  }
}

.footer__logo {
  margin-right: 100px;
  text-align: center;
}
@media (max-width: 480px) {
  .footer__logo {
    margin-right: 0;
  }
}
.footer__logo img {
  width: 130px;
}

@media (max-width: 480px) {
  .footer__address {
    font-size: 14px;
    margin-top: 20px;
  }
}

.copyright {
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
@media (max-width: 480px) {
  .copyright {
    font-size: 10px;
  }
}

/*********************************************************
PageTopボタン
*********************************************************/
.page-top {
  cursor: pointer;
  padding-bottom: 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.page-top__link {
  background: #fff;
  text-decoration: none;
  color: #1f385c;
  text-align: center;
  display: block;
  padding: 3px 0;
  position: relative;
  width: 50px;
  height: 45px;
  border-radius: 5px;
}
.page-top__link:hover {
  background: #f2f4f4;
}
.page-top__link::after {
  border-style: solid;
  border-width: 4px 4px 0 0;
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  transform: rotate(-45deg);
  color: #1f385c;
  margin: -6px 0 0 -10px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.page-top__txt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}