@charset "utf-8";


/* common */
/*---------------------------------*/
.text strong {
  background: -moz-linear-gradient(top, rgba(255,255,136,0) 0%, rgba(255,255,136,0) 49%, rgba(255,255,136,1) 50%, rgba(255,255,136,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,136,0) 0%,rgba(255,255,136,0) 49%,rgba(255,255,136,1) 50%,rgba(255,255,136,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,136,0) 0%,rgba(255,255,136,0) 49%,rgba(255,255,136,1) 50%,rgba(255,255,136,1) 100%);
}

/*-----------info_box_header------------*/
.info_box_header {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 174px;
  background: #25B3B0 no-repeat center center / cover;
  margin: 1em 0;
}

.info_box_header:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 3px solid rgba(255, 255, 255, .5);
}

.info_box_header .title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4em;
}

/*-----------info_sub_header------------*/
.info_sub_header {
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: .5em;
  border-bottom: 3px solid #AF1E23;
}

.info_sub_header .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #AF1E23;
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.4em;
}

.info_sub_header .title:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/ico_denpro.svg) no-repeat left center / contain;
  margin-right: .5em;
}

@media screen and (max-width: 640px) {
  .info_sub_header .title:before {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: .2em;
  }
}

/*-----------info_common_btn------------*/
.info_common_btn a {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 336px;
  min-height: 60px;
  margin: 1em auto;
  padding: .5em;
  border: 1px solid #25B3B0;
  color: #25B3B0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4em;
  transition: background .3s, color .3s;
}

.info_common_btn a:hover {
  background-color: #25B3B0;
  color: #fff;
}

.info_common_btn a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50%;
  background-color: rgba(255, 255, 255, .3);
}

@media screen and (max-width: 640px) {
  .info_common_btn a {
    max-width: initial;
    width: 90%;
    background-color: #25B3B0;
    border-radius: 10px;
    color: #fff;
  }

  .info_common_btn a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50%;
    background-color: rgba(255, 255, 255, .3);
  }
}








/* agent_eye_catch */
/*---------------------------------*/
.common_section.agent_eye_catch {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 300px;
  background: url(../img/info/agent_mv.jpg) no-repeat center bottom / cover;
  margin: 50px auto 60px;
}

.common_section.agent_eye_catch p {
  margin-left: 1em;
  color: #AF1E23;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.4em;
  text-shadow: 7px 7px 3px rgba(0, 0, 0, .15);
}

@media screen and (max-width: 640px) {
  .common_section.agent_eye_catch {
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    height: 46.8vw;
    margin: 7.8vw auto;
  }

  .common_section.agent_eye_catch p {
    margin-top: .5em;
    margin-left: 0;
    font-size: 2rem;
  }
}


/* bn_area */
/*---------------------------------*/
.bn_area {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

.bn_area a {
  transition: opacity .3s;
}
.bn_area a:hover {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .bn_area {
    padding: 0 10%;
  }
}


/* service_section */
/*---------------------------------*/
.common_section.service_section {
  margin: 60px auto;
}

.common_section.service_section .section_body {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common_section.service_section .section_body .section_box {
  width: 48%;
}

.common_section.service_section .section_body .section_box.free .info_box_header {
  background-image: url(../img/info/service_sub_free.jpg);
}
.common_section.service_section .section_body .section_box.premium .info_box_header {
  background-image: url(../img/info/service_sub_premium.jpg);
}
.common_section.service_section .section_body .section_box.movie .info_box_header {
  background-image: url(../img/info/service_sub_movie.jpg);
}
.common_section.service_section .section_body .section_box.pickup .info_box_header {
  background-image: url(../img/info/service_sub_pickup.jpg);
}
.common_section.service_section .section_body .section_box.column .info_box_header {
  background-image: url(../img/info/service_sub_column.jpg);
}
.common_section.service_section .section_body .section_box.website .info_box_header {
  background-image: url(../img/info/service_sub_website.jpg);
}

.common_section.service_section .section_body .section_box .text p {
  margin: 1em 0;
}

.common_section.service_section .section_body .section_box .point {
  margin: 1em 0;  
}

.common_section.service_section .section_body .section_box .point li {
  display: -webkit-flex;
  display: flex;
  color: #AF1E23;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4em;
}

.common_section.service_section .section_body .section_box .point li:not(:last-child) {
  margin-bottom: .3em;
}

.common_section.service_section .section_body .section_box .point li:before {
  content: "";
  display: block;
  height: 1em;
  border-left: .5em solid #AF1E23;
  margin: .25em .3em 0 0;
}

.common_section.service_section .section_body .section_box .price {
  display: -webkit-flex;
  display: flex;
  margin: 1em 0;
}

.common_section.service_section .section_body .section_box .price dt,
.common_section.service_section .section_body .section_box .price dd {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  min-height: 60px;
  padding: .5em 1em;
  border: 1px solid #25B3B0;
}

.common_section.service_section .section_body .section_box .price dt {
  width: 216px;
  background-color: #25B3B0;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.4em;
}

.common_section.service_section .section_body .section_box .price dd {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 216px);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4em;
}

.common_section.service_section .section_body .section_box .price .strike {
  font-size: 1rem;
  text-decoration: line-through;
}
.common_section.service_section .section_body .section_box .price .arrow {
  margin: 0 .5rem;
}
.common_section.service_section .section_body .section_box .price .red {
  color: #AF1E23;
}
.common_section.service_section .section_body .section_box .price .small {
  font-size: 1rem;
}

.common_section.service_section .section_body .section_box .note {
  margin: 1em 0;  
}

.common_section.service_section .section_body .section_box .note li {
  display: -webkit-flex;
  display: flex;
  font-size: .93rem;
  line-height: 1.4em;
}

.common_section.service_section .section_body .section_box .note li:not(:last-child) {
  margin-bottom: .3em;
}

.common_section.service_section .section_body .section_box .note li:before {
  content: "\203B";
}

.common_section.service_section .section_body .section_box .info_common_btn.inpage a {
  border: 1px solid #AF1E23;
  color: #AF1E23;
}

.common_section.service_section .section_body .section_box .info_common_btn.inpage a:hover {
  background-color: #AF1E23;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .common_section.service_section {
    margin: 9.375vw auto;
  }

  .common_section.service_section .section_body .section_box {
    width: 100%;
  }

  .common_section.service_section .section_body .section_box:not(:last-child) {
    margin-bottom: 2em;
  }

  .common_section.service_section .section_body .section_box .price dt,
  .common_section.service_section .section_body .section_box .price dd {
    padding: .5em;
  }

  .common_section.service_section .section_body .section_box .price dt {
    width: 50%;
  }

  .common_section.service_section .section_body .section_box .price dd {
    width: 50%;
  }

  .common_section.service_section .section_body .section_box .info_common_btn.inpage a {
    background-color: #AF1E23;
    color: #fff;
  }
}


/* agent_section */
/*---------------------------------*/
.common_section.agent_section {
  background-color: #EFEADD;
  padding: 60px 0 80px;
}

.common_section.agent_section .section_header span:not(:last-child) {
  padding-right: .5em;
}

.common_section.agent_section .section_box:not(:last-child) {
  margin-bottom: 60px;
}

.common_section.agent_section .section_box .box_body {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}


.common_section.agent_section .section_box.what .image {
  width: 65%;
  padding: 0 10px;
}

.common_section.agent_section .section_box.what .text {
  width: 31%;
}


.common_section.agent_section .section_box.merit .box {
  width: 32%;
  background-color: #fff;
  border: 5px solid #388ECA;
}

.common_section.agent_section .section_box.merit .inner_header {
  background-color: #388ECA;
  padding: 1em .5em;
  border-bottom: 5px solid #388ECA;
  text-align: center;
}

.common_section.agent_section .section_box.merit .inner_header h4 {
  position: relative;
  display: inline;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4em;
}

.common_section.agent_section .section_box.merit .inner_header h4:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70px;
  display: block;
  width: 60px;
  height: 24px;
  background: url(../img/info/ico_point.svg) no-repeat center center / contain;
  margin: auto;
}

.common_section.agent_section .section_box.merit .text {
  padding: .6em .8em;
}


.common_section.agent_section .section_box.flow .box {
  position: relative;
  width: 23%;
  background-color: #fff;
  padding: .6em .8em;
  border: 4px solid #BD1C21;
}

.common_section.agent_section .section_box.flow .box:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -9.5%;
  bottom: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid #AF1E23;
  border-right: 2px solid #AF1E23;
  transform: rotate(45deg);
}

.common_section.agent_section .section_box.flow .inner_header {
  margin-bottom: .8em;
}

.common_section.agent_section .section_box.flow .inner_header .pref {
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2em;
}

.common_section.agent_section .section_box.flow .inner_header h4 {
  color: #AF1E23;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4em;
}

@media screen and (max-width: 640px) {
  .common_section.agent_section {
    padding: 9.375vw 0;
  }

  .common_section.agent_section .section_header span:not(:last-child) {
    padding-right: 0;
  }

  .common_section.agent_section .section_box:not(:last-child) {
    margin-bottom: 9.375vw;
  }

  .common_section.agent_section .section_box.what .image {
    width: 100%;
    padding: 0 0 1em;
  }

  .common_section.agent_section .section_box.what .text {
    width: 100%;
  }


  .common_section.agent_section .section_box.merit .box {
    width: 100%;
  }

  .common_section.agent_section .section_box.merit .box:not(:last-child) {
    margin-bottom: 1em;
  }

  .common_section.agent_section .section_box.merit .inner_header {
    padding: .5em;
  }


  .common_section.agent_section .section_box.flow .box {
    width: 100%;
  }

  .common_section.agent_section .section_box.flow .box:not(:last-child) {
    margin-bottom: 2em;
  }

  .common_section.agent_section .section_box.flow .box:not(:last-child):after {
    top: auto;
    right: 0;
    bottom: -1.4em;
    left: 0;
    transform: rotate(135deg);
  }

  .common_section.agent_section .section_box.flow .inner_header {
    margin-bottom: .3em;
  }
}


/* apply_section */
/*---------------------------------*/
.common_section.apply_section {
  padding-bottom: 100px;
}

.common_section.apply_section .section_header {
  display: block;
  background-color: #2C3E50;
  margin-bottom: 50px;
  padding: 1.5rem .5rem 1rem;
  text-align: center;
}

.common_section.apply_section .section_header h2,
.common_section.apply_section .section_header .tail {
  color: #fff;
}

.common_section.apply_section .section_header span:not(:last-child):after {
  content: "\30FB";
}

.common_section.apply_section .section_body {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

.common_section.apply_section .section_body .caution {
  margin-bottom: 30px;
  padding: 1em;
  border: 1px solid #AE4C4C;
  text-align: center;
}
.common_section.apply_section .section_body .caution.info_box {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  padding: 1em 2em;
  text-align: left;
}

.common_section.apply_section .section_body .caution b {
  font-weight: 700;
}
.common_section.apply_section .section_body .caution .red {
  color: #AE4C4C;
  font-weight: 500;
}

.common_section.apply_section .section_body .caution p:not(:last-child) {
  margin-bottom: 1em;
}

.common_section.apply_section .section_body .caution .link_btn {
  text-align: center;
}

.common_section.apply_section .section_body .caution .link_btn a {
  display: inline-block;
  background-color: #16A085;
  margin-bottom: 1em;
  padding: .5rem 2rem .6rem;
  color: #fff;
  text-decoration: none;
  transition: background .3s;
}
.common_section.apply_section .section_body .caution .link_btn a:hover {
  background-color: #F3C224;
}

.common_section.apply_section .section_body form input[type=checkbox],
.common_section.apply_section .section_body form input[type=radio] {
  width: .8rem;
  height: .8rem;
  -webkit-transform-origin: left middle;
  -webkit-transform: scale( 2 , 2 );
  margin: 0 .8em 0 .5em;
}

.common_section.apply_section .section_body form input[type="text"],
.common_section.apply_section .section_body form input[type="number"],
.common_section.apply_section .section_body form input[type="date"],
.common_section.apply_section .section_body form textarea {
  padding: .5em;
  border: 1px solid #2C3E50;
  font-size: 1.06rem;
  line-height: 130%;
}

.common_section.apply_section .section_body form input[type="text"],
.common_section.apply_section .section_body form input[type="number"],
.common_section.apply_section .section_body form input[type="date"] {
  width: 150px;
  max-width: 100%;
  height: 2.5em;
}

.common_section.apply_section .section_body form select {
  width: 3em;
  height: 2.5em;
  border: 1px solid #2C3E50;
  font-size: 1.06rem;
  line-height: 130%;
  text-align: center;
}
.common_section.apply_section .section_body form select[name="year"] {
  width: 5em;
}
.common_section.apply_section .section_body form .sep {
  padding: 0 .4em 0 .2em;
}

.common_section.apply_section .section_body form input[readonly=readonly] {
  background-color: #f0f0f0;
}

.common_section.apply_section .section_body form .clinic input[type="text"] {
  width: 400px;
}
.common_section.apply_section .section_body form .zip input[type="text"]:nth-child(1) {
  width: 60px;
}
.common_section.apply_section .section_body form .zip input[type="text"]:nth-child(2) {
  width: 80px;
}
.common_section.apply_section .section_body form .addr input[type="text"]:nth-child(1) {
  width: 80px;
}
.common_section.apply_section .section_body form .addr input[type="text"]:nth-child(2) {
  width: 100px;
}
.common_section.apply_section .section_body form .addr input[type="text"]:nth-child(3) {
  width: 250px;
}
.common_section.apply_section .section_body form .bldg input[type="text"] {
  width: 350px;
}
.common_section.apply_section .section_body form .tel input[type="text"] {
  width: 220px;
}
.common_section.apply_section .section_body form .mail input[type="text"],
.common_section.apply_section .section_body form .url input[type="text"] {
  width: 300px;
}

.common_section.apply_section .section_body form textarea {
  width: 100%;
  height: 6.5em;
}
.common_section.apply_section .section_body form .message textarea {
  height: 20em;
}

.common_section.apply_section .section_body form label {
  display: inline-block;
  margin-right: 1em;
}

.common_section.apply_section .section_body form .purpose {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 112px;
  background-color: #F2F2F2;
  margin-bottom: 40px;
  padding: 1em;
}

.common_section.apply_section .section_body form .purpose label {
  margin: 0 1em;
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.3em;
}

.common_section.apply_section .section_body form dl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.common_section.apply_section .section_body form dt {
  width: 240px;
  padding: .8em .5em;
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.3em;
}

.common_section.apply_section .section_body form dt .must {
  position: relative;
  top: -.2rem;
  display: inline-block;
  background-color: #EB984E;
  margin-left: .5rem;
  padding: .3rem .4rem;
  border-radius: .2rem;
  color: #fff;
  font-weight: 400;
  font-size: .82rem;
  line-height: 1em;
}

.common_section.apply_section .section_body form dd {
  width: calc(100% - 240px);
  background-color: #F2F2F2;
  padding: 1em;
}
.common_section.apply_section .section_body form .ex dd {
  background-color: #E4DBC7;
  border: 2px solid #B69347;
}

.common_section.apply_section .section_body form .alert {
  background-color: #FFD9D9;
  margin-left: auto;
  padding: .5em 1em;
  border: 0;
}

.common_section.apply_section .section_body form .submit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 40px 0 1rem;
}

.common_section.apply_section .section_body form .submit input[type=submit] {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  height: 60px;
  background-color: #25B3B0;
  margin: 0 5px;
  border: 5px solid #94DAD9;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transition: opacity .3s;
}
.common_section.apply_section .section_body form .submit input[type=submit].prev {
  background-color: #666;
  border-color: #aaa;
}

.common_section.apply_section .section_body form .submit input[type=submit]:hover {
  opacity: .7;
}

.common_section.apply_section .section_body form .caption {
  text-align: center;
}

.common_section.apply_section .section_body form .note {
  margin-top: .5rem;
}
.common_section.apply_section .section_body form .note.red {
  color: #AE4C4C;
  font-size: .93rem;
  line-height: 1.35em;
}

.common_section.apply_section .section_body form .error {
  margin-left: .5rem;
  color: #AE4C4C;
  font-weight: 600;
}

.common_section.apply_section .section_body form .zip_assist {
  display: inline-block;
  background-color: #fff;
  padding: .2rem .5rem;
  border: 1px solid #999;
  border-radius: .3rem;
  transition: background .3s;
}
.common_section.apply_section .section_body form .zip_assist:hover {
  background-color: #AF1E23;
  color: #fff;
}

.common_section.apply_section .section_body .rule-privacy {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 65px;
  background-color: #F2F2F2;
  margin-top: 30px;
}

.common_section.apply_section .section_body .rule-privacy li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #4D4D4D;
}

@media screen and (max-width: 640px) {
  .common_section.apply_section {
    padding-bottom: 9.375vw;
  }

  .common_section.apply_section .section_header {
    margin-bottom: 7.8vw;
  }

  .common_section.apply_section .section_header span:not(:last-child):after {
    content: none;
  }

  .common_section.apply_section .section_body {
    padding: 0 1.5vw;
  }

  .common_section.apply_section .section_body .caution {
    margin-bottom: 7.8vw;
    text-align: left;
  }

  .common_section.apply_section .section_body form input[type="text"] {
    width: 48%;
  }

  .common_section.apply_section .section_body form .clinic input[type="text"] {
    width: 100%;
  }
  .common_section.apply_section .section_body form .zip input[type="text"]:nth-child(1) {
    width: 30%;
  }
  .common_section.apply_section .section_body form .zip input[type="text"]:nth-child(2) {
    width: 40%;
  }
  .common_section.apply_section .section_body form .zip .btn {
    display: inline-block;
    margin-top: .5em;
  }
  .common_section.apply_section .section_body form .addr input[type="text"]:nth-child(1) {
    width: 40%;
  }
  .common_section.apply_section .section_body form .addr input[type="text"]:nth-child(2) {
    width: 50%;
  }
  .common_section.apply_section .section_body form .addr input[type="text"]:nth-child(3) {
    margin-top: .5em;
    width: 100%;
  }
  .common_section.apply_section .section_body form .bldg input[type="text"] {
    width: 100%;
  }
  .common_section.apply_section .section_body form .tel input[type="text"] {
    width: 100%;
  }
  .common_section.apply_section .section_body form .mail input[type="text"],
  .common_section.apply_section .section_body form .url input[type="text"] {
    width: 100%;
  }

  .common_section.apply_section .section_body form .purpose {
    margin-bottom: 6.25vw;
  }

  .common_section.apply_section .section_body form .purpose label {
    font-size: 1.2rem;
  }

  .common_section.apply_section .section_body form .apply label {
    margin-top: .3em;
    margin-bottom: .3em;
  }

  .common_section.apply_section .section_body form dl {
    margin-bottom: 4.68vw;
  }

  .common_section.apply_section .section_body form dt {
    width: 100%;
    padding: 0 0 .5em;
  }

  .common_section.apply_section .section_body form dd {
    width: 100%;
  }

  .common_section.apply_section .section_body form .submit {
    margin: 2rem 0;
  }

  .common_section.apply_section .section_body form .submit > li {
    width: 50%;
  }

  .common_section.apply_section .section_body form .submit input[type=submit] {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1em .5em;
    font-size: 1rem;
  }

  .common_section.apply_section .section_body form .caption {
    font-size: .8rem;
  }

  .common_section.apply_section .section_body .rule-privacy {
    margin-top: 4.68vw;
  }

  .common_section.apply_section .section_body .rule-privacy li {
    font-size: .8rem;
  }

  .common_section.apply_section .section_body .rule-privacy li:not(:last-child) {
    margin-right: .5em;
    padding-right: .5em;
  }
}


/* info_thanks */
/*---------------------------------*/
.common_section.info_thanks {
  margin: 50px 0 100px;
}

.common_section.info_thanks .text {
  margin: 50px 0;
  font-size: 1.06rem;
}

.common_section.info_thanks .apply_service {
  background-color: #EFEADD;
  margin: 50px 0;
  padding: 2rem 1rem 2rem;
}

.common_section.info_thanks .apply_service dt {
  margin-bottom: .5em;
  color: #2C3E50;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3em;
  text-align: center;
}

.common_section.info_thanks .apply_service dd {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.common_section.info_thanks .apply_service .list li {
  margin: .3em 0;
  color: #666;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3em;
}

.common_section.info_thanks .apply_service .list li:before {
  content: "\30FB";
}

@media screen and (max-width: 640px) {
}











