@charset "UTF-8";


body {
  font-family: sans-serif;
  font-size: 100%;
  margin: inherit;
}

.page-header{
  position: relative;
  background: #FFF;
  display: block;
  width: 100%;
  height: 75px;
}

.logo img{
  width: 38%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  padding-left: 8px;
}

/*----------------------------------

ボタン関連

---------------------------------- */


@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}


.btn_header{
  display: block;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 1px 1px 2px #a5a5a5;
  background: linear-gradient(to top, rgba(247,173,100,1), rgba(253,126,0,1) 20%,  rgba(247,173,100,1));
  position: absolute;
  top: 50%;
  right: 0%;
  margin-right: 8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 50%;
}

a.btn_header{
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
}


.btn_header::after{
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}


/*----------------------------------

main

---------------------------------- */

#main_content {
  min-height: 100vh;
  position: relative;
  /*←footerの高さ*/
  padding-bottom: 80px;
  box-sizing: border-box;
}

footer{
  width: 100%;
  background: #00ac97;
  color: #FFF;
  text-align: center;
  padding: 12px 0;
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
}

.top_main_sp{
  display: block;
  width: 100%;
}

.top_main_pc{
  display: none;
}

.wrapper_a{
  position: relative;
  display: block;
  border: solid 2px #444;
  border-radius: 10px;
  margin: 50px 8px 16px;
  padding: 8px;
}

.wrapper_b{
  position: relative;
  display: block;
  border-radius: 10px;
  margin: 16px 8px 16px;
  padding: 8px;
  background-color: #fdfde7;
}


.wrapper_a > h2,
.wrapper_b > h2{
  display: block;
  background: #fd7e00;
  border-radius: 5px;
  color: #FFF;
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
  padding: 6px 0;
  width: 60%;
}

.wrapper_a > h2{
  position: absolute;
  top: -3%;
  right: 8px;
}

.wrapper_a > ul{
  margin-top: 0;
}

.wrapper_a > ul li{
  margin-bottom: 5px;
}

.wrapper_a > ul li:before{
  content: '';
  background-image: url(images/icon_bag.png);
  display:inline-block;
  width: 18px;
  height: 18px;
  margin-top: -3.5px;
  margin-right:3px;
  background-size: contain;
  vertical-align: middle;
}

.illust_a img{
  width: 35%;
  margin-top: -17%;
}

.illust_b img{
  margin-top: -20%;
  width: 35%;
  float: right;
}

.feature_txt{
  width: 65%;
  display: block;
  word-break: break-all;
}

.feature_sub_txt{
  width: 100%;
  word-break: break-all;
  margin-bottom: 16px;
}

.bg > h2{
  display: block;
  background: #fd7e00;
  color: #FFF;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  padding: 8px 0;
}

/*
.triangle{
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-top: 30px solid #ffe400;
  margin: 0 auto;
}*/

.san_box {
  background: #ffe400;
  position: relative;
  margin: 0 0 30px;
}
.san_box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  border-color: #fd7e00 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

/*----------------------------------

ご利用の流れ

---------------------------------- */


.step-wrap {
 counter-reset: count;
 margin: 16px 8px;
 position: relative;
}

.step-content {
 padding: 1em 0 1.3em 2.5em;
 margin: 0;
 position: relative;
}
.step-content::before {
 content: "";
 display: block;
 width: 55px;
 height: 55px;
 background: #f7ad64;
 border-radius: 50%;
 position: absolute;
 top: 0;
 left: -3px;
}
.step-content::after {
 content: "";
 display: block;
 height: calc(100% - 55px);
 border-left: solid 2px #f7ad64;
 position: absolute;
 top: 55px;
 left: 23px;
}

.step-label {
 color: #FFF;
 font-weight: bold;
 font-size: 12px;
 position: absolute;
 top: 6px;
 left: 9px;
}

.step-label::after {
 counter-increment: count;
 content: counter(count);
 position: absolute;
 font-size: 30px;
 top: 8px;
 left: 7px;
}

/*.step-title {
 font-weight: bold;
 font-size: 120%;
 margin-left: 1.5em;
}*/

.step-body {
 padding-left: 20px;
 padding-bottom: 16px;
 border-bottom: dotted 2px #ddd;
}
.step-wrap > :last-of-type::after {
 display: none;
}


/*----------------------------------

フォーム　 レスポンシブ

---------------------------------- */

.form_wrapper {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  /*width: 100%;*/
  padding: 0 8px;
}

.form-item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.form-item:first-child {
  border-top: inherit;
}

.add_name{
  margin-top: 9px;
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
}

.form-item:nth-child(6) {
  border-top: 0px solid #2c2c2c;
}


.Label_name {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

.Label_name .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #fd1616;
  color: #FFF;
  font-size: 14px;
}

.form-item-input,
.postal-code-item_left,
.postal-code-item_right{
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  background: #eaedf2;
  font-size: 18px;
}

.form-item-input{
  margin-left: 40px;
  width: 100%;
  max-width: 410px;
}

.postal-code-item_left{
  margin-left: 40px;
  width: 30%;
}

.postal-code-item_right{
  width: 30%;
}

.form-item-textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.form_btn {
    border-radius: 6px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #fd7e00;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    border: solid 1px #e07001;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
}

/*　---- ここからフォーム　スマホ対応　---- */
@media screen and (max-width: 480px) {
  .form_wrapper {
    margin-top: 8px;
  }
  .form-item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

  .form-item:nth-child(6) {
    padding-top: inherit;
  }

　.postal_code{
    display: flex;
  }

  .add_name{
    margin-top: 9px;
  }

  .postal-code-item_left,
  .postal-code-item_right{
    width: 30%;
    margin-left: 0;
    margin-top: 9px;
    height: 40px;
    border-radius: 6px;
    background: #eaedf2;
    font-size: 16px;
  }


  .Label_name {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  .Label_name .isMsg {
    margin-top: 0;
  }
  .required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 34px;
    font-size: 12px;
  }

  .form-item-input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 16px;
  }

  .form-item-textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 150px;
    flex: inherit;
    font-size: 16px;
  }
}


/*----------------------------------

デフォルトリセット

---------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  margin:0;
  padding:0;
}

a {
  text-decoration:none;
}

/*
a,
a:visited,
a:hover,
a:active {
  color: #2c2c2c;
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin-block-start: inherit;
  margin-block-end: inherit;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: inherit;
    margin-block-end: inherit;
    margin-inline-start: inherit;
    margin-inline-end: inherit;
    padding-inline-start: inherit;
}

li {
  list-style-type: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

/* ==================================================================================== */
/*  タブレット用
/* ==================================================================================== */

@media screen and (min-width:600px){

  .page-header{
    height: 90px;
  }

  .logo img{
    width: 25%;
    padding-left: 40px;
  }

  .btn_header{
    margin-right: 40px;
    width: 30%;
    padding: 16px 0;
  }

  .top_main_sp{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

 /* ここから下はPCと同じ*/

  #main_content {
    max-width: 700px;
    margin: 0 auto;
  }

  .concept{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    font-size: 1rem;
  }

  footer{
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .bg{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 20px 0 ;
  }

  .bg > h2 {
    font-size: 2rem;
  }


  .wrapper_a > h2,
  .wrapper_b > h2{
    font-size: 1.5rem;
    padding: 20px 0;
    width: 60%;
  }

  .wrapper_a > h2{
    top: 3%;
  }

  .illust_b img{
    margin-top: -15%;
  }

  .feature_txt,
  .feature_sub_txt,
  .wrapper_a > ul li{
    font-size: 1.2rem;
  }

  .wrapper_a > ul li:before{
    width: 18px;
    height: 18px;
    margin-right:8px;
  }


  .step-body {
    padding-left: 30px;
    padding-bottom: 16px;
    font-size: 1.2rem;
  }

  .san_box {
    background: initial;
    position: initial;
    margin: initial;
  }
  .san_box:after {
    content: "";
    width: initial;
    height: initial;
    border-style: initial;
    border-width: initial;
    border-color: initial;
    position: initial;
    top: initial;
    left: initial;
    right: initial;
  }

  a.btn_header{
    font-size: 1.6rem;
  }

}

/* ==================================================================================== */
/*  PC用
/* ==================================================================================== */


@media screen and (min-width:1025px){

  .page-header{
    height: 150px;
  }

  .logo img{
    width: 15%;
    padding-left: 40px;
  }

  .btn_header{
    margin-right: 40px;
    width: 30%;
    padding: 26px 0;
    font-size: 2rem;
  }


  #main_content {
    max-width: 700px;
    margin: 0 auto;
  }

  .top_main_sp{
    display: none;
  }

  .top_main_pc{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }


  footer{
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .bg{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 20px 0 ;
  }

  .bg > h2 {
    font-size: 2rem;
  }


  .wrapper_a > h2,
  .wrapper_b > h2{
    font-size: 1.5rem;
    padding: 20px 0;
    width: 60%;
  }

  .wrapper_a > h2{
    top: 3%;
  }

  .illust_b img{
    margin-top: -15%;
  }

  .feature_txt,
  .feature_sub_txt,
  .wrapper_a > ul li{
    font-size: 1.2rem;
  }

  .wrapper_a > ul li:before{
    width: 18px;
    height: 18px;
    margin-right:8px;
  }


  .step-body {
    padding-left: 30px;
    padding-bottom: 16px;
    font-size: 1.2rem;
  }

  .san_box {
    background: initial;
    position: initial;
    margin: initial;
  }
  .san_box:after {
    content: "";
    width: initial;
    height: initial;
    border-style: initial;
    border-width: initial;
    border-color: initial;
    position: initial;
    top: initial;
    left: initial;
    right: initial;
  }

  a.btn_header{
    font-size: 1.6rem;
  }

}
