@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  max-width: 1080px;
  padding:0 20px;
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding:0 20px;
   margin: 0 auto;
   overflow: hidden;
   }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 20px;
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * ボディ
/* ------------------------------------------------------------------------------------------------- */

body.layout-lower
.visual {
  background: url("../../_images/flow/visual.png") no-repeat;
  background-size: cover;
  background-position: bottom;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
}


/* ****************************************************************************************************
   * ご利用の流れ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.flow {
  position: relative;
  padding-top: 120px;
  padding-bottom: 150px;
}

#message {
  padding-bottom: 0;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.flow .title-1 {
  color: var(--c-orange);
  font-size: 3.4rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .flow .title-1 {
    color: var(--c-orange);
    font-size: 2.4rem;
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

#flow {
  position: relative;
  padding-top: 120px;
}
.flow .flow-list {}

.flow .flow-list .item ~ .item {
  margin-top: 80px;
}
.flow .flow-list .item {
  position: relative;
  padding: 40px 40px 40px 100px;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flow .flow-list .item::after {
  content: "";
  display: block;
  background: url("../../_images/flow/arrow.png") no-repeat;
  width: 80px;
  height: 25px;
  background-size: 80px 25px;
  position: absolute;
  bottom: -55px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* 番号*/
.flow .flow-list .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.flow .flow-list .item-1::before {
  background: url("../../_images/flow/num-01.png") no-repeat;
  width: 100px;
  height: 69px;
  background-size: 100px 69px;
}
.flow .flow-list .item-2::before {
  background: url("../../_images/flow/num-02.png") no-repeat;
  width: 114px;
  height: 69px;
  background-size: 114px 69px;
}
.flow .flow-list .item-3::before {
  background: url("../../_images/flow/num-03.png") no-repeat;
  width: 111px;
  height: 69px;
  background-size: 111px 69px;
}
.flow .flow-list .item-4::before {
  background: url("../../_images/flow/num-04.png") no-repeat;
  width: 113px;
  height: 69px;
  background-size: 113px 69px;
}
.flow .flow-list .item-5::before {
  background: url("../../_images/flow/num-05.png") no-repeat;
  width: 112px;
  height: 69px;
  background-size: 112px 69px;
}
.flow .flow-list .item-6::before {
  background: url("../../_images/flow/num-06.png") no-repeat;
  width: 113px;
  height: 69px;
  background-size: 113px 69px;
}
.flow .flow-list .item-7::before {
  background: url("../../_images/flow/num-07.png") no-repeat;
  width: 110px;
  height: 69px;
  background-size: 110px 69px;
}


.flow .flow-list .icon {
  width: 20%;
  text-align: center;
  display: block;
  margin: 0 auto;
}


.flow .flow-list .title {
  position: relative;
  font-size: 3.0rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  line-height: 1.4;
  width: 30%;
}
.flow .flow-list .title::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
}
.flow .flow-list .text {
  position: relative;
  width: 65%;
  padding-left: 30px;
}
.flow .flow-list .item:nth-child(odd) .text {
  border-left: 2px solid #f07e91;
}
.flow .flow-list .item:nth-child(even) .text {
  border-left: 2px solid #f29200;
}

.flow .flow-list .item:nth-child(odd) {
  background: #ffe5ea;
}
.flow .flow-list .item:nth-child(even) {
  background: #fdeed7;
}
.flow .flow-list .item-3 {
}
.flow .flow-list .item-4 {
}
.flow .flow-list .item-5 {
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  #flow {
    position: relative;
    padding-top: 60px;
  }
  .flow .flow-list .item ~ .item {
    margin-top: 40px;
  }
  .flow .flow-list .item {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    display: block;
    justify-content: flex-start;
    align-items: center;
  }
  .flow .flow-list .item::after {
    content: "";
    display: block;
    background: url("../../_images/flow/arrow.png") no-repeat;
    width: 40px;
    height: 13px;
    background-size: 40px 13px;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  /* 番号*/
  .flow .flow-list .item-1::before {
  background: url("../../_images/flow/num-01.png") no-repeat;
  width: 50px;
  height: 34px;
  background-size: 50px 34px;
}
.flow .flow-list .item-2::before {
  background: url("../../_images/flow/num-02.png") no-repeat;
  width: 57px;
  height: 34px;
  background-size: 57px 34px;
}
.flow .flow-list .item-3::before {
  background: url("../../_images/flow/num-03.png") no-repeat;
  width: 55px;
  height: 34px;
  background-size: 55px 34px;
}
.flow .flow-list .item-4::before {
  background: url("../../_images/flow/num-04.png") no-repeat;
  width: 56px;
  height: 34px;
  background-size: 56px 34px;
}
.flow .flow-list .item-5::before {
  background: url("../../_images/flow/num-05.png") no-repeat;
  width: 56px;
  height: 34px;
  background-size: 56px 34px;
}
.flow .flow-list .item-6::before {
  background: url("../../_images/flow/num-06.png") no-repeat;
  width: 56px;
  height: 34px;
  background-size: 56px 34px;
}
.flow .flow-list .item-7::before {
  background: url("../../_images/flow/num-07.png") no-repeat;
  width: 55px;
  height: 34px;
  background-size: 55px 34px;
}
  
  /* アイコン*/
  .flow .flow-list .icon {
    width: 100%;
  }
  .flow .flow-list .item-1 .icon img {
    width: 65px;
  }
  .flow .flow-list .item-2 .icon img {
    width: 60px;
  }
  .flow .flow-list .item-3 .icon img {
    width: 40px;
  }
  .flow .flow-list .item-4 .icon img {
    width: 51px;
  }
  .flow .flow-list .item-5 .icon img {
    width: 75px;
  }
  .flow .flow-list .item-6 .icon img {
    width: 63px;
  }
  .flow .flow-list .item-7 .icon img {
    width: 42px;
  }

  .flow .flow-list .title {
    font-size: 2.4rem;
    width: 100%;
    text-align: center;
  }
  .flow .flow-list .item:nth-child(odd) .title {
    border-bottom: 2px solid #f07e91;
  }
  .flow .flow-list .item:nth-child(even) .title {
    border-bottom: 2px solid #f29200;
  }
  .flow .flow-list .text {
    position: relative;
    width: 100%;
    margin-top: 1em;
    padding-right: 0;
    padding-left: 0;
  }
  .flow .flow-list .item:nth-child(odd) .text {
    border-left: 0;
  }
  .flow .flow-list .item:nth-child(even) .text {
    border-left: 0;
  }
}





