@charset "UTF-8";
.hvr {
  -webkit-transition: 0.3s;
}

.hvr:hover {
  opacity: .7;
}

/*
layout
 _________________________________________________________*/
.l-header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-mv {
  margin-top: 90px;
}

@media only screen and (max-width: 640px) {
  .l-header {
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
    height: 40px;
  }

  .l-mv {
    margin-top: 40px;
  }

  .wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
}
/*
header
 _________________________________________________________*/
.header {
  width: 960px;
  margin: 0 auto;
  padding: 10px;
  min-height: 1px;
}
.header:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.header-logo {
  float: left;
}

.header-conversion {
  float: right;
}

@media only screen and (max-width: 640px) {
  .header {
    width: 100%;
    padding: 0;
    height: 40px;
  }

  .header-logo {
    float: left;
    width: 230px;
    height: 35px;
    margin: 2px auto 3px 10px;
  }

  .header-conversion {
    display: none;
  }

  .header-navbutton {
    background: #03384a;
    width: 40px;
    height: 40px;
    float: right;
    position: relative;
    z-index: 100;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 20px;
    height: 18px;
    margin-top: 10px;
  }

  .menu-trigger span {
    position: absolute;
    left: 10px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all .4s;
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(20px) scale(0);
  }

  .menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-20px) scale(0);
  }

  .l-nav {
    background: rgba(12, 96, 75, 0.9);
    box-shadow: -1px -1px 2px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    right: -110%;
    top: 40px;
    width: 100%;
    height: 100vh;
    z-index: 10;
    -webkit-transition: 0.3s;
    z-index: 99;
  }
  .l-nav a {
    color: #2f2f2f;
  }

  .l-nav.is_open {
    right: 0;
  }

  .nav {
    padding: 15px;
  }

  .nav a {
    text-decoration: none;
    color: #fff;
  }

  .nav > li {
    border-bottom: 1px solid #7ba99e;
  }

  .nav > li {
    text-decoration: none;
    padding: 10px;
    display: block;
  }

  .navLayer {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.3s;
  }

  .navLayer.is_open {
    z-index: 1;
    background: rgba(255, 255, 255, 0.4);
  }
}
/*
mv
 _________________________________________________________*/
@media only screen and (min-width: 641px) {
  .mv {
    background: url(../images/mv_pc.jpg) no-repeat center top #fff;
    height: 400px;
    position: relative;
  }

  .mv-link a {
    width: 340px;
    height: 76px;
    background: url(../images/mv_button_pc.png);
    text-indent: -10000px;
    display: block;
    position: absolute;
    top: 303px;
    left: 50%;
    margin-left: 120px;
  }
}
@media only screen and (max-width: 640px) {
  .mv {
    background: url(../images/mv_sp.jpg) no-repeat center top;
    background-size: 100%;
    height: 0;
    padding-top: 98.4375%;
    position: relative;
  }

  .mv-link a {
    display: block;
    position: absolute;
    width: 100%;
    height: 13%;
    bottom: 6.4%;
    text-indent: -10000px;
  }
}
/*
 nav
 _________________________________________________________*/
@media only screen and (min-width: 641px) {
  .l-nav {
    background: url(../images/nav_bg.png);
  }

  .nav {
    width: 960px;
    height: 60px;
    margin: 0 auto;
  }
  .nav li {
    float: left;
    display: block;
    -webkit-transition: 0.3s;
  }
  .nav li:hover {
    background: url(../images/nav_bg_r.png);
  }
  .nav li a {
    display: block;
    height: 60px;
    text-indent: -10000px;
  }

  .nav-about a {
    width: 228px;
    background: url(../images/nav_about.png);
  }

  .nav-check a {
    width: 229px;
    background: url(../images/nav_check.png);
  }

  .nav-schedule a {
    width: 183px;
    background: url(../images/nav_schedule.png);
  }

  .nav-voice a {
    width: 166px;
    background: url(../images/nav_voice.png);
  }

  .nav-company a {
    width: 153px;
    background: url(../images/nav_company.png);
  }
}
/*
 content
 _________________________________________________________*/
.content {
  width: 960px;
  background: #fff;
  border-radius: 5px;
  margin: 30px auto 50px auto;
}

.content-title {
  padding: 20px 20px 10px 20px;
  border-bottom: 6px solid  #044053;
  position: relative;
}
.content-title:after {
  content: '';
  position: absolute;
  width: 10%;
  border-bottom: 3px solid #ffe847;
  right: 0;
  bottom: -6px;
  background: #fff;
  height: 20px;
}

.content-main {
  padding: 20px;
}

@media only screen and (max-width: 640px) {
  .content {
    width: 100%;
    margin: 0px auto 30px auto;
    border-radius: 0;
  }

  .content-title {
    padding: 10px 10px 5px 10px;
    border-bottom: 6px solid  #044053;
    position: relative;
  }
  .content-title img {
    width: 200px;
  }
  .content-title:after {
    content: '';
    position: absolute;
    width: 10%;
    border-bottom: 3px solid #ffe847;
    right: 0;
    bottom: -6px;
    background: #fff;
    height: 20px;
  }

  .content-main {
    padding: 10px;
  }
}
@media only screen and (min-width: 641px) {
.top-attention{
  width: 960px;
  margin: 30px auto 0 auto;
  
}
.top-attention .clear{
  clear: both;
}
.top-attention dl{
  width: 475px;
  float: left;
  border-radius: 6px;
   box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
}
.top-attention dl:first-child{
  margin-right: 10px;

}
.top-attention dt img{
  border-top-right-radius: 6px;
   border-top-left-radius: 6px;
}
.top-attention dd{
  background: #fff189;
  min-height: 120px;
  padding: 15px 20px;
   border-bottom-right-radius: 6px;
   border-bottom-left-radius: 6px;
}
.top-attention dd span{
  font-size: 1.3rem;
}
}
@media only screen and (max-width: 640px) {
  .top-attention{
  width: 100%;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
.top-attention dl{
  width: 100%;
  float: none;
  margin-top: 20px;
  border-radius: 6px;
}
.top-attention dl:first-child{
  margin-right: 0;

}
.top-attention dt img{
  border-top-right-radius: 6px;
   border-top-left-radius: 6px;
}
.top-attention dd{
  background: #fff189;
  min-height: auto;
  padding: 15px 10px;
}
.top-attention dd span{
  font-size: 1.3rem;
}
  }
/*
 about
 _________________________________________________________*/
.about-text {
  margin-bottom: 30px;
}

.about-q {
  min-height: 1px;
}
.about-q:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.about-q dt {
  display: block;
  float: left;
  width: 100px;
}
.about-q dd {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
  width: 600px;
  background: #24856d;
  background: -moz-linear-gradient(top, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  background: -webkit-linear-gradient(top, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  background: linear-gradient(to bottom, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25866e', endColorstr='#25866e',GradientType=0 );
  font-size: 20px;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
}
.about-q dd:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 14px 8px 0;
  border-color: transparent #24856d transparent transparent;
}

.about-a {
  min-height: 1px;
  padding-left: 100px;
  margin-top: -20px;
}
.about-a:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.about-a dt {
  float: right;
  width: 183px;
}
.about-a dd {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
  width: 600px;
  background: #ffed6c;
  border-radius: 5px;
  padding: 20px;
  font-size: 1.6rem;
}
.about-a dd:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffed6c;
}

@media only screen and (max-width: 640px) {
  .about-text {
    margin-bottom: 10px;
  }

  .about-q {
    margin-bottom: 20px;
  }
  .about-q dt {
    width: 20%;
  }
  .about-q dd {
    margin-left: 5%;
    width: 75%;
    font-size: 1.6rem;
    padding: 10px;
  }

  .about-a {
    padding-left: 0;
    margin-top: 0;
  }
  .about-a dt {
    width: 25%;
  }
  .about-a dd {
    margin-left: 0;
    width: 70%;
    padding: 10px;
    font-size: 1.4rem;
  }
}
/*
 check
 _________________________________________________________*/
.check .content-main {
  padding-bottom: 0;
}

.check-text {
  margin-bottom: 30px;
}

.check-list {
  background: #fff189;
  border-radius: 5px;
  min-height: 1px;
  padding: 20px 10px;
}
.check-list:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.check-list li {
  display: block;
  width: 48%;
  margin: 5px 1%;
  float: left;
  background: #fff;
  box-shadow: 1px 1px 1px 1px rgba(213, 196, 70, 0.2);
  padding: 14px 14px 14px 24px;
  font-weight: bold;
  position: relative;
}
.check-list li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background: #24856d;
  background: -moz-linear-gradient(top, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  background: -webkit-linear-gradient(top, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  background: linear-gradient(to bottom, #25866e 0%, #2b8b74 48%, #207d65 49%, #25866e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25866e', endColorstr='#25866e',GradientType=0 );
}
.check-list li.is-full {
  width: 98%;
}

.check-caution {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  text-align: right;
  padding-right: 15px;
}

@media only screen and (max-width: 640px) {
  .check-text {
    margin-bottom: 10px;
  }

  .check-list {
    background: #fff189;
    border-radius: 5px;
    min-height: 1px;
    padding: 10px;
  }
  .check-list:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }
  .check-list li {
    width: 100%;
    margin: 5px 0;
    padding: 8px 8px 8px 16px;
    font-size: 1.3rem;
  }
  .check-list li.is-full {
    width: 100%;
  }

  .check-caution {
    padding-right: 0px;
  }
}
/*
 area
 _________________________________________________________*/
.area-text {
  margin-bottom: 10px;
}

.area-table table {
  border-collapse: collapse;
  padding: 0px;
  margin: 0px auto;
  width: 100%;
}

.area-table th {
  margin: 0;
  padding: 15px 10px 15px 10px;
  color: #000;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  width: 120px;
  background: #ebf4c3;
  border: 1px solid #d2e095;
}

.area-table td {
  margin: 0;
  padding: 15px 5px;
  text-align: left;
  font-size: 15px;
  border: 1px solid #d2e095;
}

@media only screen and (max-width: 640px) {
  .area-text {
    margin-bottom: 10px;
  }

  .area-table table {
    border-collapse: collapse;
    padding: 0px;
    margin: 0px auto;
    width: 100%;
  }

  .area-table th,
  .area-table td {
    display: block;
    width: 100%;
    padding: 5px;
  }

  .area-table td {
    font-size: 1.4rem;
  }
}
/*
 schedule
 _________________________________________________________*/
.schedule .content-main {
  padding: 0;
}

.schedule-wrapper {
  text-align: center;
  position: relative;
  background: url(../images/schedule_bg.jpg) center top no-repeat;
  height: 745px;
  border-radius: 0 0 5px 5px;
}

.schedule-timeline {
  padding-top: 25px;
}

.schedule-point1 {
  position: absolute;
  top: 150px;
  left: 10px;
}

.schedule-point2 {
  position: absolute;
  top: 410px;
  right: 10px;
}

@media only screen and (max-width: 640px) {
  .schedule-wrapper {
    background: none;
    height: auto;
    min-height: 1px;
    padding: 10px;
  }
  .schedule-wrapper:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }

  .schedule-timeline {
    padding: 0 0 15px 0;
  }

  .schedule-point1 {
    position: static;
    width: 50%;
    float: left;
  }

  .schedule-point2 {
    position: static;
    width: 50%;
    float: right;
  }
}
/*
 voice
 _________________________________________________________*/
.voice-unit dt figure {
  display: inline-block;
  position: relative;
  bottom: -15px;
  padding-left: 10px;
  z-index: 1;
}
.voice-unit dt .name {
  color: #24856d;
  font-weight: bold;
  font-size: 2.0rem;
  padding-top: 30px;
  padding-left: 20px;
  display: inline-block;
}
.voice-unit dd {
  background: #fff189;
  border-radius: 5px;
  box-shadow: 1px 1px 1px 0px #d3d3d3;
  padding: 20px;
}

.voice-unit:nth-child(2n) dd {
  background: #f3f9d7;
}

@media only screen and (max-width: 640px) {
  .voice-unit dt figure {
    display: inline-block;
    position: relative;
    bottom: -15px;
    padding-left: 10px;
    z-index: 1;
  }
  .voice-unit dt figure img {
    width: 50px;
  }
  .voice-unit dt .name {
    color: #24856d;
    font-weight: bold;
    font-size: 1.6rem;
    padding-top: 20px;
    padding-left: 10px;
    display: inline-block;
  }
  .voice-unit dd {
    background: #fff189;
    border-radius: 5px;
    box-shadow: 1px 1px 1px 0px #d3d3d3;
    padding: 15px 10px;
    font-size: 1.4rem;
  }

  .voice-unit:nth-child(2n) dd {
    background: #f3f9d7;
  }
}
/*
 faq
 _________________________________________________________*/
.faq-unit {
  margin-bottom: 30px;
}
.faq-unit dt {
  border-radius: 5px;
  display: block;
  position: relative;
  border: 1px solid #c8dad6;
  background: #f3f9d7;
  padding: 14px 14px 14px 50px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.8rem;
}
.faq-unit dt:before {
  content: 'Q.';
  background: #24856d;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  padding: 14px 0;
  box-sizing: border-box;
}
.faq-unit dd {
  padding-left: 50px;
}

@media only screen and (max-width: 640px) {
  .faq-unit {
    margin-bottom: 20px;
  }
  .faq-unit dt {
    border-radius: 5px;
    display: block;
    position: relative;
    border: 1px solid #c8dad6;
    background: #f3f9d7;
    padding: 6px 6px 6px 40px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .faq-unit dt:before {
    content: 'Q.';
    background: #24856d;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    text-align: center;
    height: 100%;
    padding: 6px 0;
    box-sizing: border-box;
  }
  .faq-unit dd {
    padding-left: 40px;
  }
}
/*
 other
 _________________________________________________________*/
.other {
  width: 960px;
  margin: 0 auto 50px auto;
}

.other-wrapper {
  margin: 0 -10px;
  min-height: 1px;
}
.other-wrapper:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.other-title {
  text-align: center;
  background: url(../images/title_other_bg.jpg);
  height: 40px;
}

.other-box {
  border: 1px solid #24856d;
  background: #fff;
  padding: 20px;
  width: 470px;
  float: left;
  margin: 10px;
}

.other-box__title {
  border-bottom: 1px solid #24856d;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.other-box__title:before {
  content: '　';
  background: #24856d;
  width: 8px;
  display: inline-block;
  margin-right: 10px;
}

.other-box__text img {
  float: right;
  margin-left: 30px;
}

@media only screen and (max-width: 640px) {
  .other {
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 10px;
  }

  .other-wrapper {
    margin: 0;
  }

  .other-title {
    text-align: center;
    background: url(../images/title_other_bg.jpg);
    height: auto;
  }

  .other-box {
    border: 1px solid #24856d;
    background: #fff;
    padding: 10px;
    width: auto;
    float: none;
    margin: 10px 0;
  }

  .other-box__title {
    border-bottom: 1px solid #24856d;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .other-box__title:before {
    content: '　';
    background: #24856d;
    width: 8px;
    display: inline-block;
    margin-right: 10px;
  }

  .other-box__text img {
    margin-left: 20px;
    width: 100px;
  }
}
/*
 other
 _________________________________________________________*/
.companyinfo {
  width: 960px;
  margin: 0 auto 50px auto;
}

.companyinfo-wrapper {
 
  min-height: 1px;
}
.companyinfo-wrapper:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.companyinfo-title {
  text-align: center;
  background: url(../images/title_lasmile_bg.jpg);
  height: 40px;
  margin-bottom: 40px;
}

.companyinfo-box {
  border: 1px solid #12afca;
  background: #fff;
  padding: 20px;
  width: 316px;
  min-height: 200px;
  float: left;
  margin: 10px 0;
}
.companyinfo-box:nth-child(2){
  margin-left: 6px;
   margin-right:6px;
}
.companyinfo-box__title {
  border-bottom: 1px solid #12afca;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.companyinfo-box__title:before {
  content: '　';
  background: #12afca;
  width: 8px;
  display: inline-block;
  margin-right: 10px;
}
.companyinfo-link{
  width: 382px;
  margin: 20px auto 0 auto;
}


@media only screen and (max-width: 640px) {
  .companyinfo {
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 10px;
  }

  .companyinfo-wrapper {
    margin: 0;
  }

  .companyinfo-title {
    text-align: center;
    background: url(../images/title_other_bg.jpg);
    height: auto;
    margin-bottom: 20px;
  }

  .companyinfo-box {
   
    background: #fff;
    padding: 10px;
    width: auto;
    float: none;
    margin: 10px 0;
    min-height:auto;
  }
.companyinfo-box:nth-child(2){
  margin-left: 0;
   margin-right:0;
}
  .companyinfo-box__title {
   
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .companyinfo-box__title:before {
    content: '　';
    
    width: 8px;
    display: inline-block;
    margin-right: 10px;
  }
.companyinfo-link{
  width: 100%;
  margin: 20px auto 0 auto;
}

}
/*
 company
 _________________________________________________________*/
.company-table table {
  border-collapse: collapse;
  padding: 0px;
  margin: 0px auto;
  width: 100%;
}

.company-table th {
  margin: 0;
  padding: 15px 10px 15px 10px;
  color: #000;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  width: 120px;
  background: #ebf4c3;
  border: 1px solid #d2e095;
}

.company-table td {
  margin: 0;
  padding: 15px 5px;
  text-align: left;
  font-size: 15px;
  border: 1px solid #d2e095;
}

@media only screen and (max-width: 640px) {
  .company-text {
    margin-bottom: 10px;
  }

  .company-table table {
    border-collapse: collapse;
    padding: 0px;
    margin: 0px auto;
    width: 100%;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 5px;
  }

  .company-table td {
    font-size: 1.4rem;
  }
}
/*
 form
 _________________________________________________________*/
.form {
  background: #fff;
  padding-bottom: 50px;
}

.form-heading {
  position: relative;
  border-top: #24856d solid 5px;
  height: 200px;
  background: url(../images/form_header_bg.jpg);
}

.form-heading__title {
  position: absolute;
  left: 50%;
  margin-left: -246px;
  top: -45px;
}

.form-main {
  background: #fff;
  border: 1px solid #efeded;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  top: -20px;
  width: 960px;
  margin: 0 auto;
  padding: 20px 60px;
}

.form-error {
  text-align: center;
  color: #ff0000;
  font-weight: bold;
  margin: 20px auto;
}

.form-table {
  width: 100%;
}
.form-table tr {
  border-bottom: 1px solid #e1e1e1;
}
.form-table td, .form-table th {
  padding: 15px 0;
}
.form-table td li{
  text-align: left;
  padding: 3px 0;
}
.form-table th {
  font-weight: bold;
}
.form-table th:before {
  content: '　';
  width: 8px;
  height: 100%;
  display: inline-block;
  background: #24856d;
  margin-right: 8px;
}
.form-table .req {
  background: #f0740c;
  display: inline-block;
  margin: 0 5px;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 3px;
  padding: 0 10px;
  line-height: 20px;
}
.form-table textarea,
.form-table input {
  border-radius: 2px;
  border: 1px solid #dddddd;
  background: #f7f7f7;
  padding: 4px;
}
.form-table input.text {
  width: 80%;
}
.form-table textarea {
  width: 100%;
  height: 100px;
}

.form-submit {
  background: url(../images/form_send_button.png) no-repeat;
  width: 370px;
  height: 85px;
  margin: 20px auto;
  border: none;
  cursor: pointer;
  text-indent: -10000px;
  display: block;
}

@media only screen and (max-width: 640px) {
  .form {
    padding-bottom: 30px;
  }

  .form-heading {
    position: static;
    height: auto;
  }

  .form-heading__title {
    position: static;
    margin-top: -15px;
    margin-left: 0;
  }

  .form-main {
    position: relative;
    top: 0;
    width: 100%;
    padding: 10px;
  }

  .form-error {
    margin: 10px auto;
  }

  .form-table {
    width: 100%;
  }
  .form-table tr {
    border-bottom: 1px solid #e1e1e1;
  }
  .form-table td, .form-table th {
    display: block;
  }
  .form-table th {
    padding: 10px 0 10px 0;
  }
  .form-table td {
    padding: 0 0 10px 0;
  }
  .form-table textarea,
  .form-table input.text {
    border-radius: 2px;
    border: 1px solid #dddddd;
    background: #f7f7f7;
    padding: 4px;
    font-size: 1.6rem;
    box-sizing: border-box;
  }
  .form-table input.text {
    width: 100%;
  }
  .form-table textarea {
    width: 100%;
    height: 100px;
  }

  .form-submit {
    background: url(../images/form_send_button.png) no-repeat;
    background-size: 100%;
    width: 185px;
    height: 43px;
    margin: 20px auto;
    border: none;
    cursor: pointer;
    text-indent: -10000px;
    display: block;
  }
}
/*
 send
 _________________________________________________________*/
.send-text {
  width: 50%;
  margin: 100px auto;
  background: #fff;
  border-radius: 5px;
  padding: 40px 20px;
  text-align: center;
}
.send-text .title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 640px) {
  .send-text {
    width: 80%;
    margin: 20px auto 100px auto;
    background: #fff;
    border-radius: 5px;
    padding: 20px 20px;
    text-align: center;
  }
  .send-text .title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
/*
 footer
 _________________________________________________________*/
.l-footer {
  background: #044053;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  font-size: 1.2rem;
}

@media only screen and (max-width: 640px) {
  .l-footer {
    padding-bottom: 80px;
  }
}
/*
 sp-fixedconversion
 _________________________________________________________*/
@media only screen and (max-width: 640px) {
  .sp-fixedconversion {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px;
    z-index: 100;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
  }
}

.bnr-web{
	width:960px;
	margin:30px auto 0 auto;
	box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 640px) {
.bnr-web{
	width:96%;
	margin:0 auto;
	padding: 20px 0;
}

}