@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #fefaf5;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1rem;
}

.orange {
  color: #ef9b32;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.5;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blue {
  color: #abcb48;
}

.white {
  color: #ffffff;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

.ft_30 {
  font-size: 3.0rem;
}

/* header */
header {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.header_bottom {
  background-color: #fef5eb;
  border-top: 5px solid #abcb48;
  border-bottom: 5px solid #ef9b32;
}

.header_bottominner {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 2vw
}

.logo {
  width: 230px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #abcb48;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin-right: 16px;
  background-color: #abcb48;
  margin: 0;
  top: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 1px;
  background: #fff;
  width: 30px;
  top: 30px;
}

.ham_btn span:nth-of-type(1) {
  top: 20px;
}

.ham_btn span:nth-of-type(2) {
  top: 40px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 23px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 35px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

/* MV */
.MV {
  position: relative;
  margin-top: 70px;
}

.MV_text {
  position: absolute;
  width: 100%;
  padding: 14px 6vw;
  background-color: rgb(255, 255, 255, 0.6);
  bottom: 10%;
}

.MV_text p {
  font-size: 2.0rem;
  text-align: justify;
  line-height: 1.8;
}

/* 共通 */
section {
  position: relative;
  padding: 100px 0 120px;
}
.sec
{
    position: relative;
  padding: 50px 0 60px;
}

.section_inner {
  padding: 0 6vw;
}

.section_ttl h2 {
  width: 100%;
  margin-bottom: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.contentInner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: justify;
  margin: 60px auto 0;
  width: 100%;
}

.content_lead {
  margin-bottom: 40px;
  line-height: 1.5;
}

.content_text p {
  margin-bottom: 40px;
}

.more a {
  display: block;
  width: 80%;
  max-width: 292px;
  margin: 40px auto;
  height: 62px;
  border-radius: 31px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ef9b32;
  font-size: 2.0rem;
  padding-right: 8rem;
  color: #ffffff;
}

.more.more_b a {

  background-color: #abcb48;
  color: #333333;

}

.more a::after {
  content: "";
  width: 75px;
  height: 8px;
  background-image: url(../img/arrow_w@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 25px;
  z-index: 1;

}

.more.more_b a::after {
  background-image: url(../img/arrow_b@2x.png);

}

.more a:hover {
  opacity: 1;
}

.more a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  transition: 1s all;
  z-index: 10;
}

.more a:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.more a p {
  margin-bottom: 0;
}

#top_02,
#top_04 {
  background-image: url(../img/sec3.png);
  
  
  color: #333333;
  padding: 120px 0 160px;
}

dl {
  width: 100%;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 700;
  color: #333333;
  font-size: 1.8rem;
}

dt,
dd {
  padding: 20px 8px 16px;
  border-bottom: 1px solid #333333;
  line-height: 1.8;
}

#top_02 {
  padding: 120px 0;
}

#top_02 .more {
  margin-top: 80px;
}

#top_03 .contentInner {
  margin: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#top_03 .content_item {
  position: relative;
  font-size: 1.8rem;
  padding-left: 3rem;
}

#top_03 .content_item::before {
  content: "";
  height: 100%;
  width: 12px;
  background-color: #ef9b32;
  position: absolute;
  top: 0;
  left: 0;
}

#top_03 .content_item .Q {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 40px;
}

#top_03 .content_item .Q::before {
  content: "Q.";
  font-size: 2.2rem;
  color: #ef9b32;
  position: absolute;
  top: -4px;
  left: 0;

}

#top_03 .content_item .A {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 0;
  font-weight: 500;
}

#top_03 .content_item .A::before {
  content: "A.";
  font-size: 2.2rem;
  color: #abcb48;
  position: absolute;
  top: -4px;
  left: 0;

}

#contact {
  padding: 0;
}

#contact .contact_inner {
  background-image: url(../img/sp_contact_bg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 120px 6vw 0;
  color: #ffffff;
}

#contact .section_inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  padding: 0;
}

#contact h2 {
  text-align: center;
  display: inline-block;
  font-size: 3.3rem;
}

#contact .section_lead {
  line-height: 2.2;
  text-align: left;
  display: inline-block;
  margin: 40px auto 0;
  font-size: 2.4rem;
}

#contact .section_text {
  line-height: 2.2;
  font-size: 1.8rem;
  text-align: left;
  display: inline-block;
  margin: 40px auto;
}
#contact .section_text p{
 display: flex;
 flex-direction: column;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin: 60px auto 100px;
}

.contact_btn {
  width: 100%;
}

.contact_btn a {
  width: 100%;
  max-width: 349px;
  height: 70px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ef9b32;
  font-size: 3.0rem;
  position: relative;
  color: #ffffff;
  margin: 0 auto;
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  transition: 1s all;
}

.contact_btn a:hover::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.contact_btn p {
  padding-left: 4rem;
}

.contact_btn a::before {
  content: "";
  position: absolute;
  left: 27px;
  height: 33px;
  width: 33px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact_btn.tel a::before {
  background-image: url(../img/tel@2x.png);
  z-index: 10;
}

.contact_btn.mail a::before {
  background-image: url(../img/mail@2x.png);
  height: 20px;
  width: 28px;
  left: 40px;
  z-index: 10;
}

.contact_btn.chat::before {
  background-image: url(../img/chat@2x.png);
  height: 39px;
  width: 46px;
  left: 40px;
  z-index: 10;
}

#contact .map {
  display: block;
  width: 100%;
}

#contact .map iframe {
  display: block;
  width: 100%;
  height: 500px;
}

footer {
  color: #333333;

}

.footer_inner {
  background-size: cover;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  padding: 40px 6vw 0;
}

.footer_logo {
  width: 100%;

}

.footer_nav {
  padding: 0 20px 40px;

}

.footer_nav li {
  margin-bottom: 14px;
  text-align: left;
}

.footer_nav li a {
  color: #ef9b32;
  font-size: 2rem;
}

.cr {
  padding: 10px 0;
  background-color: #ef9b32;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
}

#go_top {
  width: 47px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
}

/* spスタイル */
@media screen and (max-width: 480px) {
  .MV_text p {
    font-size: 4vw;
  }
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
  }

  .header_upper {
    padding: 10px 2vw;
  }

  .logo {
    width: 800px;
  }

  .header_bottominner {
    padding: 0;
  }

  .header_nav {
    width: 100%;
  }

  .header_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
  }






  header a {
    color: #ef9b32;
  }


















  .MV_text {

    padding: 20px 6vw;

  }

  .MV_text p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 4.0rem;

  }

  section {
    padding: 160px 6vw 160px;
  }

  .section_inner {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0;
  }

  .section_ttl h2 {
    width: 50%;
    max-width: 800px;
    margin: 0 auto 0 0;
  }

  .section_lead {
    padding: 0;
    text-align: center;
  }

  .contentInner {
    flex-direction: row;
    max-width: 1440px;
    margin: 0px auto 60px;
    gap: 60px;
    width: 100%;
  }

  .more a {
    font-size: 2.4rem;
  }

  #top_01 .contentInner {
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    max-width: 1660px;
    margin: 0px 0 80px;
    gap: 60px;
  }

  #top_01 .content_img {
    width: 60%;
  }

  #top_01 .content_text {
    padding-left: 5%;
  }

  #top_04 {
    padding: 120px 6vw 100px;

  }

  #top_04 .contentInner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 80px auto 140px;
    gap: 40px;
  }


  dl {
    max-width: 700px;
    margin: 0;
  }

  .description-item {
    display: flex;
  }

  dt,
  dd {
    padding: 24px 8px 20px;
    line-height: 1.8;
  }

  dt {
    width: 200px;
  }

  dd {
    width: calc(100% - 200px);
  }

  #top_02 {
    padding: 120px 6vw 100px;
  }

  #top_02 .section_ttl h2 {
    width: 50%;
    max-width: 800px;
    margin: 0 0 0 auto;
  }

  #top_02 .contentInner {
    margin: 60px auto;
  }

  #top_02 .content_text {
    width: 100%;
    padding-right: 40px;

  }

  #top_02 .content_img {
    width: 100%;

  }

  #top_03 .section_ttl h2 {
    width: 50%;
    max-width: 800px;
    margin:  0 auto;
  }





  #top_03 .contentInner {
    
    gap: 80px;
    max-width: 1120px;
    margin: 100px auto;
    
    align-items: flex-start;
  }
  #top_03 .content_item {
   
    padding-left: 5rem;
}

  #top_03 .content_item .Q {
   
    padding-left: 5rem;
 
  }
  

  
  #top_03 .content_item .A {
    
    padding-left: 5rem;
  
  }











  #contact {
    padding: 0;
  }

  #contact .section_inner {
    max-width: none;
    flex-direction: row;
  }

  #contact .map iframe {
    height: 100%;
  }

  #contact .contact_inner {
    background-image: url(../img/contact_bg@2x.png);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    width: 100%;
  }

  #contact h2{
 font-size:5.0rem ;
 width: 100%;
  }
  #contact .section_lead {
    margin-bottom: 0;
  }
  #contact .section_text p{
    display: flex;
    flex-direction: row;
    gap: 10px;
   }

  .contact_btn--wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 720px;
    gap: 0;
    margin: 80px auto 0;
    padding: 0;
  }

  .contact_btn {
    width: 100%;
    min-width: 390px;
  }

  .footer_inner {
    flex-direction: column;
    gap: 40px;
 align-items: center;
    padding: 60px 0;
    max-width: 1280px;
  }

  .footer_item01 {
    margin: 0;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 540px;
  }

  .footer_logo {
    max-width: 800px;
    margin: 0;
    width: 100%;
  }

  .footer_item02 {
    max-width: 800px;
    margin: auto 0 0;
    padding: 0;
    gap: 60px;
  }

  .footer_nav {
    width: 100%;
    margin: auto 0 0;
    padding: 0;
    min-width: 710px;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .footer_nav ul li {
    padding: 0 10px 0px;
    margin: 0;
    display: flex;
    justify-content: space-around;
   
    position: relative;
    text-align: center;
  }

  .footer_deco {
    width: 100%;
  }

  #go_top {
    width: 60px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
  }
}
/*-----------------------------------------------------------------

下層ページ

------------------------------------------------------------------*/
.h2_ttl_about
{
    background: url("../img/h2_ttl_about.png") no-repeat center;
    background-size: cover;
    height: 36vw;
}
.h2_ttl_activity
{
    background: url("../img/h2_ttl_activity.png") no-repeat center;
    background-size: cover;
    height: 36vw;
}
.h2_ttl_business
{
    background: url("../img/h2_ttl_business.png") no-repeat center;
    background-size: cover;
    height: 36vw;
}
.h2_ttl_contact
{
    background: url("../img/h2_ttl_contact.png") no-repeat center;
    background-size: cover;
    height: 36vw;
}
.h2_ttl_faq
{
    background: url("../img/h2_ttl_faq.png") no-repeat center;
    background-size: cover;
    height: 36vw;
}
.h2 {
  position: relative;
  margin-top: 70px;
}

.h2_text {
  position: absolute;
  width: 100%;
  padding: 14px 6vw;
  background-color: rgb(255, 255, 255, 0.6);
  top: 50%;
    transform: translateY(-50%);
}

.h2_text p {
  font-size: 2.0rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .h2_text p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 5.0rem;
  }
}
.h3_ttl
{
    text-align: center;
    color: #ef9b32;
    font-size: max(2.4vw , 2.4rem);
    position: relative;
    padding: 3vw;
    margin-top: 6rem;
}
.h3_ttl
{
    background: url("../img/h3_ttl_bg.png")no-repeat center;
    background-size: contain;
}
.h4_ttl
{
    text-align: center;
    color: #ef9b32;
    font-size: max(2vw , 2rem);
    padding: 3rem 0 0 0;
}
@media screen and (min-width: 960px) {
  .h4_ttl {
    text-align: center;
    color: #ef9b32;
    font-size: max(2vw , 2rem);
    padding: 3rem 0 0 0;
      margin-bottom: 3rem;
  }
}
.re
{
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.sec .content_text
{
    width:  48%;
}
.sec .content_img
{
    width:  47%;
}
@media screen and (max-width: 960px) {
  .sec .contentInner .content_text {
  width: 100%;
}
    .sec .contentInner .content_img {
  width: 100%;
}
}
.name
{
    text-align: right;
    margin-top: 2rem;
    display: flow-root;
}
.box_con {
  max-width: 900px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con {
    width: 95%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
    font-size: 1.8rem;
    padding: 1rem;
    margin-top: 5rem;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 30%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    vertical-align: top;
    text-align: left;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    background: #97ae88;
    padding: .8em .2em;
    color: #fff;
  }
}
.box_con form table tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con form table tr .box_br {
  display: block;
}
.box_con form table tr select {
  border: 1px solid #97ae88;
}
.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}
.box_con form table tr .radio02-input + label {
  padding-left: 23px;
  margin-right: 20px;
  position: relative;
}
.box_con form table tr .radio02-input + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr .radio02-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #97ae88;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    background: #EEEEEE;
}
.box_con form table tr textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
    text-align: left;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
    font-size: 2rem;
    font-weight: 600;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;

}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_num ul li {
    font-size: 1.8rem;
    line-height: 1.7;
    list-style: square outside none;
    margin: 0 0 0 4rem;
    padding: 0;
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
    font-size: 1.8rem;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}