@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 300;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
a[href^="tel:"] {
    pointer-events: none;
}
header {
  max-width: 1200px;
  padding: 30px 20px 20px;
  margin: 0 auto;
  overflow: hidden;
}
header .logo {
  width: 250px;
  float: left;
  margin-top: 5px;
  margin-right: 30px;
}
header .logo img {
  width:100%;
}
.tagline {
  float: left;
  font-size: 14px;
  font-weight: 700;
}


header .btn_contact {
  float: right;
}
header .btn {
  font-weight: 700;
  border-radius: 6px;
  background-color: #009933;
  color: #fff;
  padding: 10px 40px;
  position: relative;
}
header .btn_contact a:before {  
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #fff;
  transition: all 0.3s;
}
header .btn_contact a:after { 
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 19px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #009933;
  transition: all 0.3s;
}
header .btn_contact a:hover:before { 
  right: 10px;
}
header .btn_contact a:hover:after { 
  background: #006633;
  right: 14px;
}
header .btn:hover {
  background-color: #006633;
}


.hilight_orange {
  color: #ff6840;
}

.mv {
  max-width: 1200px;
  height: 560px;
  background: url(../img/mv_bg.jpg) no-repeat;
  background-position: center top ;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
  position: relative;
}
.mv_text {
  margin-left: 20px;
  width: 840px;
}
.mv_text img {
  width: 100%;
}
.bnr {
  margin: 40px auto 0;
  max-width: 600px;
  text-align: center;
}
.bnr a img {
  width: 100%;
  transition: all  0.2s ease;
}
.bnr a:hover img {
  opacity: 0.7;
}

.performance {
  max-width: 1200px;
  height: 425px;
  background: url(../img/bg_performance.jpg) no-repeat;
  background-position: center top ;
  margin: 0 auto;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.performance_text {
  color: #fff;
  text-align: center;
  font-size: 90px;
  font-weight: 900;
  margin-top: 60px;
}

.text_lead {
  font-size: 50px;
  font-weight: 900;
  margin-top: 10px;
  background: linear-gradient( to right,  rgba(51,204,204,1) 25%, rgba(51,204,102,1) 75% );
  -webkit-background-clip: text;
  color: transparent;
}

.lead_wrap {
  background-image: url(../img/icon_question.svg);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left middle; 
  padding-left: 120px;
  height: 100px;
  display: table;
  margin: 0 auto;
}

.arrow {
  position: relative;
  margin-top: -20px;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 44%;
  width: 80px;
  height: 80px;
  border-top: 30px solid #cde5f1;
  border-right: 30px solid #cde5f1;
  transform: translateX(-50%) rotate(135deg);
}
.large {
  font-size: 150%;
}

.title {
  max-width: 1200px;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 150px auto 50px;
  border-bottom: 6px solid #ff6840;
}
.sec02 {
  max-width: 1200px;
  margin: 0 auto ;
  padding: 0 20px;
  font-size: 24px;
  overflow: hidden;
}
.l_contents {
  width: 55%;
  float: left;  
}
.l_contents .text02 {
  font-weight: 700;
  margin: 30px 0;
}
.l_contents .text02 li {
  padding-left:1.9em;
  text-indent:-1.9em;
}
.r_contents {
  width: 42%;
  float: right;  
}

.sec_contact {
  width: 100%;
  background-color: #fffaef;
  margin: 100px 0;
}
.sec_contact_inner {
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}
.sec_contact .value {
  position: relative;
  display: inline-block;
  padding: 0 80px;
  font-size: 40px;
  font-weight: 700;
  display: table;
  margin: 0 auto;
  text-align: center;
}
.sec_contact .value:before, .sec_contact .value:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 84px;
  height: 6px;
  background-color: black;
  -webkit-transform: rotate(-70deg);
  transform: rotate(70deg);
}
.sec_contact .value:before {
  left:0;
}
.sec_contact .value:after {
  right: 0;
  transform: rotate(-70deg);
}
.sec_contact .btn {
  font-weight: 700;
  border-radius: 6px;
  background-color: #000;
  background: linear-gradient(90deg, #00cccc, #00cc33);
  opacity: 0.8;
  color: #fff;
  padding: 40px 120px;
  position: relative;
  font-size: 60px;
  display: table;
  margin: 30px auto;
}
.sec_contact .btn_contact a:before {  
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  margin-top: -4px;
  background: #fff;
  transition: all 0.3s;
}
.sec_contact .btn_contact a:after { 
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 30px;
  width: 30px;
  height: 30px;
  margin-top: -4px;
  background: #33cc6a;
  transition: all 0.3s;
}
.sec_contact .btn_contact a:hover:before { 
  right: 15px;
}
.sec_contact .btn_contact a:hover:after { 
  background: #00cc33;
  right: 25px;
}
.sec_contact .btn:hover {
  opacity: 1;
}
.sec_contact .tel_area {
  text-align: center;
  font-weight: 700;
}
.sec_contact .tel_area .tel_number {
  font-size: 60px;
  color: #333;
}


.sec_contact.first {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px 0;
  position: relative;
  max-width: 1200px;

}
.fv_present {
  position: absolute;
  left: 240px;
  top: 0px; 
  width: 200px;
  z-index: 2;
}
.fv_present img {
  width: 100%;
  transition: all 0.3s;
}
.fv_present a:hover img {
  opacity: 0.9;
}

.sec_contact.first .btn{
  padding: 20px 100px 20px 100px;
  font-size: 40px;
}
.sec_contact.first .btn_contact a:before {  
  top: 40%;
  right: 20px;
  width: 25px;
  height: 25px;
  margin-top: -4px;
  background: #fff;
  transition: all 0.3s;
}
.sec_contact.first .btn_contact a:after { 
  top: 40%;
  right: 30px;
  width: 25px;
  height: 25px;
  margin-top: -4px;
  background: #33cc6a;
  transition: all 0.3s;
}
.sec_contact.first .btn_contact a:hover:before { 
  right: 15px;
}
.sec_contact.first .btn_contact a:hover:after { 
  background: #00cc33;
  right: 25px;
}
h2.ttl {
  position: relative;
  display: table;
  margin: 0 auto 60px;
  text-align: center;
  padding: 7px 10px;
  max-width: 1200px;
  width: 100%;
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  background: #33cc66;
}

h2.ttl:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -20px;
  border: 20px solid transparent;
  border-top: 30px solid #33cc66;
}

.sec03,
.sec04 {
  max-width: 1200px;
  margin: auto ;
  padding: 0 20px;
}

.ceo_comment {
  background: url(../img/ceo.jpg) no-repeat left top;
  max-width: 1200px;
  height: 535px;
}
.ceo_comment .inner {
  background-color: rgba(255,255,255,0.95);
  padding: 40px 2%;
  width: 56%;
  margin-left: 40%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  box-shadow: 0px 0px 10px 0px rgba(109, 109, 109, 0.2);
}

.ceo_comment .inner .lead {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ceo_profile {
  width: 67%;
  margin: 30px 0 60px;
}
.ceo_profile .ttl {
  margin-bottom: 10px;
  font-weight: 700;
}
.ceo_profile .ttl span {
  font-size: 30px;
  margin-right: 20px;
}

.sec03 h3 {
  max-width: 1200px;
  border-bottom: 4px solid #ccc;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.sec03 .book {
  width: 50%;
  float:left;
  margin-bottom: 60px;
}
.sec03 .book dt {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.sec03 .book dd {
  overflow: hidden;
}
.sec03 .book dd img {
  width: 32%;
  float: left;
  margin-right: 3%;
}
.sec03 .book dd p {
  width: 56%;
  float: left;
  font-size: 14px;
  margin-bottom: 15px;
  padding-right: 8%;
}
.sec03 .book dd p.lead {
  font-size: 16px;
  font-weight: 700
}

.sec03 .entrust {
  overflow: hidden;
}
.sec03 .entrust li {
  width: 50%;
  float: left;
  overflow: hidden;
  margin-bottom: 30px;
}
.sec03 .entrust li img {
  width: 36%;
  float: left;
  margin-right: 4%;
}
 .sec03 .entrust li .text {
  width: 55%;
  float: left;
  padding-right: 5%;
 }
 .sec03 .entrust li .lead {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.marker {
  background: linear-gradient(transparent 70%, #fff000 70%);
}

.sec04 .staff p {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
}
.sec04 .staff .lead {
  font-size: 50px;
  margin-bottom: 30px;
}
.sec04 .text{
  background-image: 
    url(../img/baloon01.svg),
    url(../img/baloon02.svg);
  background-position:
    left 140px center,
    right 140px center;
  background-repeat:
    no-repeat;
  background-size:
    140px;
}

.sec04 .staff ul {
  margin: 30px 0 90px;
  overflow: hidden;
}
.sec04 .staff li {
  width: 30%;
  margin-right: 5%;
  float: left;
  height: 300px;
  position: relative;
  color: #fff;
}
.sec04 .staff li:last-child {
  margin-right: 0;
}
.sec04 .staff01 { background: url(../img/staff01.jpg) no-repeat center top;}
.sec04 .staff02 { background: url(../img/staff02.jpg) no-repeat center top;}
.sec04 .staff03 { background: url(../img/staff03.jpg) no-repeat center top;}

.sec04 .staff li div {
  text-align: center;
  display: table;
  font-size: 16px;
  font-weight: 700;
  margin: 240px auto 0;
}
.sec04 .staff li div span {
  background-color: #33cc66;
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-block;
}

footer a{
  text-align: right;
}

.ribbon {
  max-width: 1110px;
  width: 92.5%;
  display: table;
  margin: 0 auto;
  position: relative;
  height: 45px;
  text-align: center;
  box-sizing: border-box;
}
.ribbon:before {/*左側のリボン端*/
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -45px;
  z-index: -2;
  border: 30px solid #ef572f;
  border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon:after {/*右側のリボン端*/
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -45px;
  z-index: -2;
  border: 30px solid #ef572f;
  border-right-color: transparent;/*山形に切り抜き*/
}

.ribbon h3 {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0;
  line-height: 60px;
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
  background: #ff6840;/*真ん中の背景色*/
}
.ribbon h3:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 25px #d2360d;/*左の折り返し部分*/
}
.ribbon h3:after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 25px #d2360d;/*右の折り返し部分*/
}
.sec04 .present {
  max-width: 1100px;
  margin: 60px auto 30px;
  overflow: hidden;
}
.sec04 .present h4 {
  font-size: 45px;
  font-weight: 700;
  color: #ff6840;
}
.sec04 .present img {
  width: 18%;
  float: left;
  margin-top: 15px;
}
.sec04 .present .book_text {
  width: 78%;
  float: right;
}
.sec04 .present .main_text {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 30px;
}
.sec05 {
  width: 100%;
  margin-top: 150px;
}
.sec05 .inner {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

.sec05 h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #33cccc, #33cc66);
  padding: 10px 0;
}
.sec06 {
  max-width: 1200px;
  margin: auto ;
  padding: 0 20px;
  overflow: hidden;
}

.sec06 h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 60px 0 20px;
}
.sec06 .table_l {
  width: 50%;
  border: 1px solid #ccc; 
  float: left;
  min-height: 360px;
  margin-bottom: 30px;
}
 
.sec06 th,
.sec06 td {
  padding: 20px;
  border: 1px solid #ccc;
  font-weight: 400;
}
.sec06  .small {
  font-size: 16px;
}
.sec06  span.small {
  font-size: 12px;
}
.sec06 td img {
  width: 40px;
  margin-left: 15px;
  vertical-align: middle;
}
.sec06 .table_r {
  width: 50%;
  border: 1px solid #ccc; 
  border-left: none;
  float: right;
  min-height: 360px;
  margin-bottom: 30px;
}
.sec06 .table_r th {
  border-left: none;
}
.sec06 .map {
  width: 48%;
  float: left;
  margin-right: 4%;
}
.sec06 .map a {
  color: #333;
}
.sec06 .map02 {
  margin-right: 0;
}
.sec06 .map iframe {
  width: 100%;
  height: 500px;
  margin-top: 20px;
}
.sec07{
  max-width: 1200px;
  margin: auto ;
  padding: 0 20px;
}
.sec07 a{
  color:black;
  text-decoration: underline;
}
.sec07 a :visited{
  color:black;
  text-decoration: underline;
}
footer {
  background: linear-gradient(90deg, #33cccc, #33cc66);
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 10px;
  margin-top: 100px;
}

.sp_only {
  display: none;
}

.bottomTelNo{
  display:none ;
}
/* thanksページ */
.thanks header {
  border-bottom: 1px solid #dedede;
}
.thanks section {
  max-width: 1200px;
  padding: 200px 20px; 
  margin: 0 auto;
  text-align: center;
  font-size: 20px; 
  font-weight: 600;
}
.thanks section h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  background: linear-gradient( to right,  rgba(51,204,204,1) 25%, rgba(51,204,102,1) 75% );
  -webkit-background-clip: text;
  color: transparent;
}
.thanks section p {
  margin-bottom: 20px;
}
.thanks section .btn_corp {
  text-align: center;
  margin-top: 60px;
}
.thanks section .btn {
  font-weight: 700;
  border-radius: 6px;
  background-color: #009933;
  color: #fff;
  padding: 10px 40px;
  position: relative;
}
.thanks section .btn_corp a:before {  
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #fff;
  transition: all 0.3s;
}
.thanks section .btn_corp a:after { 
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 19px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #009933;
  transition: all 0.3s;
}
.thanks section .btn_corp a:hover:before { 
  right: 10px;
}
.thanks section .btn_corp a:hover:after { 
  background: #006633;
  right: 14px;
}
.thanks section .btn:hover {
  background-color: #006633;
}

.pc_only {
	display: none;
}
.sp_only {
	display: block;
}


@media screen and (max-width: 1024px){
  body {
    font-size: 16px;
  }
  header {
    padding: 30px 10px 20px;
  }
  header .logo {
    width: 30%;
    margin-right: 2%;
  }
  .tagline {
    font-size: 12px;
  }
  .mv {
    height: 500px;
    padding: 20px 2%;
    background-position :50% 50%;
  }
  .mv_text {
    width: 100%;
    margin-left: 0;
  }
  .fv_present {
    left: 20px;
  }
  .bnr {
    margin-top: 20px;
  }
  .bnr a img {
    width: 96%;
  }
  .performance {
    margin-top: 40px;
    height: 300px;
    background-position :50% 50%;
  }
  .performance_text {
    font-size: 60px;
  }
  .lead_wrap {
    background-size: 15%;
    padding-left: 18%;
    background-position: 2% 15%;
  }
  .arrow {
    margin-top: 0px;
  }
  .arrow::before {
    right: 35%;
  }
  .sp_only {
    display: block;
  }
  .sec_contact {
    margin: 40px 0;
  }
  .sec_contact .btn {
    font-size: 40px;
  }
  .sec03, .sec04 { 
    padding: 0;
  }
  .sec03 .book {
    width: 46%;
    padding: 0 2%;
  }
  .sec03 .book dd img {
    margin-bottom: 5px;
  }
  .sec03 .book dd p {
    width: 100%;
    float: none;
  }
  h2.ttl {
    font-size: 40px;
    width: 96%;
    padding :15px 2%;
  }
  .ceo_comment {
    background-size: 120%;
    background-position: 100% 50%;
  }
  .ceo_comment .inner {
    box-shadow :none;
    margin-left: 36%;
  }
  .ceo_profile {
    width: 96%;
    padding: 0 2%;
    margin: 10px 0 30px;
  }
  .title {
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .sec_contact .value {
    line-height: 1.2;
    font-size: 30px;
  }
  .sec04 .text {
    background-position: left 20px center, right 20px center;
    background-size: 180px;
  }
  .sec04 .staff li {
    width: 32%;
    margin-right: 2%;
    height: auto;
  }
  .sec04 .staff li div {
    margin-top: 200px;
  }
  .ribbon h3 {
    width: 95%;
    font-size: 25px;
  }
  .ribbon:before {
    left: -20px;
    border: 25px solid #ef572f;
    border-left-color: transparent;
  }
  .ribbon:after {
    right: -20px;
    border: 25px solid #ef572f;
    border-right-color: transparent;
  }
  .sec04 .present {
    margin-top: 30px;
    padding: 0 2%;
  }
  .sec04 .present h4 {
    font-size: 30px;
  }
  .sec04 .present .main_text {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .sec03 .book dt {
    font-size: 25px;
  }
  .sec06 .small {
    font-size: 12px;
  }

}








/*@media screen and (max-width:559px){*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  header {
    padding: 10px 2%;
  }
  header .logo {
    width: 55%;
    margin-bottom: 10px;
    margin-right:10px;
  }
  header .btn_contact {
    width: 38%;
    margin-bottom: 10px;
  }
  header .btn_contact a:before,
  header .btn_contact a:after {
    display: none;
  }
  header .btn {
    padding: 8px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    display: block;
    position: static;
  }
  .tagline {
    font-size: 10px;
    float: none;
    clear: both;
  }
  .mv {
    height: 240px;
    padding: 10px 2%;
  }
  .performance {
    margin-top: 20px;
    margin-bottom: 30px;
    height: 100px;
    background-position :50% 50%;
    background-size: cover;
  }
  .performance_text {
    font-size: 25px;
    margin-top: 20px;
    line-height: 1.2;
  }
  .text_lead {
    font-size: 25px;
    margin-top: 0;
    line-height: 1.2;
  }
  .arrow {
    margin-top: -40px;
  }
  .arrow::before {
    right: 35%;
    width: 40px;
    height: 40px;
    border-top: 20px solid #cde5f1;
    border-right: 20px solid #cde5f1;
  }
  .title {
    font-size: 20px;
    margin-top: 80px;
  }
  .sec02 {
    padding: 0 2%;
    font-size: 20px;
  }
  .r_contents,
  .l_contents {
    float: none;
    width: 100%;
  }
  .r_contents img {
    width: 100%;
  }

  .sec_contact {
    margin: 40px 0;
  }
  .fv_present {
    width: 32%;
    left: 10px;
    top: -10px;
  }
  .sec_contact.first .btn{
    width: 56%;
    padding: 10px 4% 10px 26%;
    font-size: 18px;
    margin: 0 auto;
    display: table;
  }
  .sec_contact_inner {
    padding: 20px 2%;
  }
  .sec_contact .value {
    width: 96%;
    padding: 0 2%;
    font-size: 16px;
  }
  .sec_contact .value:before,
  .sec_contact .value:after {
    width: 50px;
    height: 2px;
  }
  .sec_contact .btn {
    font-size: 25px;
    width: 96%;
    padding: 10px 2%;
    margin: 10px 0;
    text-align: center;
  }
  .sec_contact .btn_contact a:before,
  .sec_contact .btn_contact a:after {
    display: none;
  }
  .sec_contact .tel_area {
    font-size: 12px;
  }
  .sec_contact .tel_area .tel_number {
    font-size: 30px;
  }
  .sec03, .sec04 { 
    padding: 0;
  }
  h2.ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
  h2.ttl:before {
    border: 10px solid transparent;
    border-top: 20px solid #33cc66;
  }
  .ceo_comment {
    background-size: auto;
    background-position: 35% center ;
  }
  .ceo_comment .inner {
    width: 88%;
    margin: 0 auto;
    top: 360px;
    padding: 10px 4%;
  }
  .ceo_comment .inner {
    font-size: 16px;

  }
  .ceo_comment .inner .lead {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .ceo_profile {
    width: 96%;
    padding: 0 2%;
    margin: 10px 0 30px;
  }
  .ceo_profile .ttl span {
    font-size: 20px;
    margin-right: 5px;
  }
  .sec03 .book {
    width: 96%;
    padding: 0 2%;
    margin-bottom: 30px;
    float: none;
  }
  .sec03 .book dt {
    font-size: 20px;
  }
  .sec03 .book dd p {
    width: 100%;
    float: none;
    font-size: 10px;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .sec03 .book dd p.lead {
    font-size: 16px;
  }
  .sec03 .entrust li {
    width: 96%;
    padding: 0 2%;
    float: none;
  }
  .sec03 .entrust li .text {
    width: 60%;
    padding-right: 0;
  }
  .sec03 .entrust li .lead {
    font-size: 20px;
  }
  .sec04 .staff {
    padding: 0 2%;
  }
  .sec04 .staff p {
    font-size: 18px;
  }
  .sec04 .staff .lead {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .sec04 .text {
    background-position: left 0px center, right 0px center;
    background-size: 80px;
  }
  .sec04 .staff ul {
    margin-bottom: 30px;
  }
  .sec04 .staff li {
    width: 32%;
    margin-right: 2%;
    height: auto;
  }
  .sec04 .staff01, .sec04 .staff02, .sec04 .staff03 {
    background-size: contain;
  }
  .sec04 .staff li div {
    font-size: 9px;
    /*margin-top: 84px;*/
	margin-top: 70px;
  }
  .sec04 .staff li div span {
    padding: 0 2px;
    margin-bottom: 3px;
  }
  .ribbon h3 {
    width: 95%;
    font-size: 14px;
    line-height: 40px;
  }
  .ribbon:before {
    content: '';
    position: absolute;
    width: 0px;
    bottom: -5px;
    left: -7px;
    z-index: -2;
    border: 20px solid #ef572f;
    border-left-color: transparent;
  }
  .ribbon:after {
    content: '';
    position: absolute;
    width: 0px;
    bottom: -5px;
    right: -7px;
    z-index: -2;
    border: 20px solid #ef572f;
    border-right-color: transparent;
  }
  .sec04 .present h4 {
    font-size: 20px;
  }
  .sec04 .present p {
    font-size: 10px;
  }
  .sec04 .present .main_text {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .sec05 {
    margin-top: 60px;
  }
  .sec05 h2 {
    font-size: 25px;
  }
  .sec05 .inner {
    max-width: 768px;
    width: 96%;
    padding: 0 2%;
    margin-top: 20px;
  }
  div.mfp_buttons button:before,
  div.mfp_buttons button:after {
    display: none;
  }
  .sec06 {
    padding: 0 2%;
  }
  .sec06 .inner th,
  .sec06 .inner td {
    font-size: 16px;
  }
  .sec06 .table_l,
  .sec06 .table_r {
    width: 100%;
    float: none;
  }
  .sec06 .table_l {
    margin-bottom: 0;
  }
  .sec06 .table_r {
    border-left: 1px solid #ccc;
    border-top: none;
  }
  .sec06 .table_r th,
  .sec06 .table_r td {
    border-top: none;
  }
  .sec06 th,
  .sec06 td {
    padding: 5px 8px;
  }
  .sec06 .table_l th,
  .sec06 .table_r th {
    width: 28%;
  }
  .sec06 span.small {
    font-size: 10px;
  }
  .sec06 .map {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
  .sec06 .map .small {
    font-size: 14px;
  }
  .sec06 .map iframe {
    margin-top: 10px;
    height: 300px;
  }
  .sec06 .map h4 {
    font-weight: 600;
  }
  .sec07{
    padding: 0 2%;
  }

  footer {
    font-size: 14px;
    font-weight: 400;
    margin-top: 60px;
  }
  .bottomTelNo{
    width:100%;
    background: linear-gradient(90deg, #33cccc, #33cc66);
    text-align:center;
    display:block;
    position: fixed;
    bottom:0px;
  }
  .bottomTelNo a{
    color:#fff;
    padding-top:5px;
    padding-bottom:10px;
    display:block;
    font-size:14px;
    font-weight: bold;
    line-height: 1.2;
  }
  .bottomTtlData{
    font-size:25px;
  }

  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }

  /* thanksページ */
  .thanks section {
    max-width: 1200px;
    width: 96%;
    padding: 60px 2%; 
    font-size: 16px; 
    text-align: left;
  }
  .thanks section h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
  }
  .thanks section p {
    margin-bottom: 10px;
  }
  .thanks section .btn_corp a:before,
  .thanks section .btn_corp a:after {
    display: none;
  }

}