@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
* {-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box
  }

html { font-size: 62.5%; color:#000; } /* 10px */
body { font-size: 1.6rem; } /* 16px */
p  { font-size: 1.6rem; } /* 16px */
li { font-size: 1.6rem; } /* 16px */
li p { font-size: 1.6rem; } /* 16px */

a {color:#409c63; text-decoration: none;}
a:hover{opacity: 0.7;}

body{font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;}
@media screen and (max-width:768px) {
  html{overflow-x: hidden;}
  body{overflow-x: hidden;}
}
p.txt{font-size: 2.1rem; line-height: 1.5;}
* p { line-height: 1.8;}
* img{max-width: 100%;}
/*----------------------------------------------------
 display
----------------------------------------------------*/
.dispN  { display: none !important; }
.dispB  { display: block !important; }
.dispI  { display: inline !important; }
.dispIB { display: inline-block !important; }
.dispT  { display: table !important; }
.dispTC { display: table-cell !important; }

@media screen and (max-width:768px) {
  .spdispN  { display: none !important; }
  .spdispB  { display: block !important; }
  .spdispI  { display: inline !important; }
  .spdispIB { display: inline-block !important; }
  .spdispT  { display: table !important; }
  .spdispTC { display: table-cell !important; }
}

/*----------------------------------------------------
 content ANIMATE
----------------------------------------------------*/
.effect-fade{
  opacity:0;
  transition:all 1000ms; 
}
.effect-fade.position-bottom{
  transform:translate(0,50px);
}
.effect-fade.position-left{
  transform:translate(-50px,0);
}
.effect-fade.position-right{
  transform:translate(50px,0);
}
.effect-fade.effect-scroll{
  opacity:1;
  transform:translate(0,0);  
}


/*----------------------------------------------------
 header
----------------------------------------------------*/
header {
  width: 100%;
  min-width: 1180px;
  background: #fff; 
  color:#737373;
  border-top:solid 14px #0059bd;
  border-bottom:solid 6px #0059bd;
}

#spHeader{ display: none; }
ul.spMenu1st{ display: none;}

#pcHeader {
  width: 1180px;
  padding:0;
  margin: 0 auto;
  background: #fff;
}

/*--------------------------------
 hdr_pc01
--------------------------------*/
.hdr_pc01{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:30px 0;
}
.hdr_pc01 .hdrBtn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hdr_pc01 .hdrBtn .flex2col{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hdr_pc01 .hdrBtn .flex2col li:first-child a{
  margin-left: 0;
}
.hdr_pc01 .hdrBtn .flex2col li a{
  display: block;
  margin-left: 10px;
}
.hdr_pc01 .hdrBtn .flex2col li.tel a{
  font-size: 3.8rem;
  color:#383838;
  font-weight: 700;
  text-decoration: none;
  padding-left: 43px;
  background:url(../img/top/hdr_tel.png) left center no-repeat;
}
.hdr_pc01 .hdrBtn .flex2col li.mail a{
  font-size: 2.4rem;
  color:#383838;
  font-weight: 700;
  letter-spacing: -0.2rem;
  text-decoration: none;
  padding:15px 0;
  padding-left: 43px;
  background:url(../img/top/hdr_mail.png) left center no-repeat;
}
.hdr_pc01 .hdrBtn .address{
  margin-left: 15px;
}
.hdr_pc01 .hdrBtn .address p{
  font-size: 1.6rem;
  font-weight: 700;
  color:#747474;
}
/*--------------------------------
 hdr_pc02
--------------------------------*/
.hdr_pc02 ul.gnavi {
  width: 1180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; 
}
.hdr_pc02 ul.gnavi li {
  width: 20%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 19.9%;
  flex: 0 1 19.9%;
  border-left: 1px solid #0059bd; 
}
.hdr_pc02 ul.gnavi li:last-child {
  border-right: 1px solid #0059bd; 
}
.hdr_pc02 ul.gnavi li a {
  position: relative;
  font-size: 1.8rem;
  color: #434343;
  font-weight: bold;
  display: block;
  padding: 20px;
  text-align: center; 
}
.hdr_pc02 ul.gnavi li a:after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -5px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #b2b2b2 transparent transparent transparent;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s; 
}
.hdr_pc02 ul.gnavi li a:hover {
  color: #0059bd; 
}
.hdr_pc02 ul.gnavi li a:hover:after {
  border-color: #0059bd transparent transparent transparent; 
}

@media screen and (max-width:768px) {
  /*----------------------------------------------------
   header
  ----------------------------------------------------*/
  header {
    min-width: 100%;
  }
  header #spHeader{
    display: block;
  }
  header #spHeader .spHeaderInner{
    width:94%;
    height: 20vw;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header #spHeader .spHeaderInner img{
    max-width: 100%;
    max-height: 20vw;
  }
  header #pcHeader{
    display: none;
  }
  .pageContent #topNavi{
    display: none;
  }

  /* menuBtn */
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 50px;
    height: 44px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 20px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
  }

  /* Accordion 1st */
  .spMenuWrap{
    position: relative;
  }
  ul.spMenu1st{
    display: none;
    border-top: solid 1px #fff;
    position: absolute;
    width: 100%;
    top:0;
    left:0;
    z-index: 999;
  }
  ul.spMenu1st > li{
    border-bottom: solid 1px #fff;
    background-color: #0059bd;
    color: #fff;
    font-family: "Rounded Mplus 1c";
    font-weight: 500;
  }
  ul.spMenu1st > li > a{
    padding: 15px 5%;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    display: block;
  }
  ul.spMenu1st > li > span{
    padding: 15px 5%;
    font-weight: 700;
    display: block;
    cursor: pointer;
    position: relative;
  }
  ul.spMenu1st > li > span:after{
      position: absolute;
      right:5%;
      font-family: 'Font Awesome 5 Free';
      content: '\f067';
      font-weight: 900;
      display: inline-block;
      width: 1em;
      color: #fff;
      text-indent: 0;
  }
  ul.spMenu1st > li > span.active:after{
      content: '\f068';
  }
  ul.spMenu1st > li > span:hover{
    opacity: 0.7;
  }

  /* Accordion 2nd */
  ul.spMenu2nd{
    display: none;
    border-top: solid 1px #c0d0f5;
  }

  ul.spMenu2nd > li{
    border-bottom: solid 1px #50b0d4;
    background-color: #fff;
    color: #50b0d4;
  }
  ul.spMenu2nd > li:last-child{
    border-bottom: none;
  }
  ul.spMenu2nd > li > a{
    padding: 15px 5% 15px 8%;
    text-decoration: none;
    color: #50b0d4;
    display: block;
  }



}


/*----------------------------------------------------
 footer
----------------------------------------------------*/
footer {
  width: 100%;
  background: #fff;
}
#footerInner {
  width: 1180px;
  padding:50px 0;
  margin: 0 auto;
  background: #fff; 
}
#footerInner .imgTit{
  margin-bottom: 70px;
}

.ftrCont{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ftrCont img{
  width: 100%;
  max-width: 100%;
}
.ftrCont .txt{
  width: 450px;
  margin-right: 40px;
}
.ftrCont .txt h4{
  font-size: 1.5rem;
  color:#50b0d4;
  font-weight: 700;
  margin-bottom: 15px;
}
.ftrCont .txt p.tt{
  margin-bottom: 40px;
}
.ftrCont .txt p.access{
  color:#575757;
  font-size: 1.5rem;
  line-height: 1.5;
}
.ftrCont .gmap{
  width: calc( 100% - 490px );
}

@media screen and (max-width:768px) {
  footer {
    width: 100%;
  }
  #footerInner {
    padding:25px 0;
    width: 94%;
    margin:0 auto;
    height: 100%; 
  }
  #footerInner .imgTit{
    margin-bottom: 35px;
  }
  .ftrCont{
    display: block;
  }
  .ftrCont .txt{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ftrCont .txt h4{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .ftrCont .txt p.tt{
    margin-bottom: 20px;
  }
  .ftrCont .txt p.access{
    font-size: 1.0rem;
  }
  .ftrCont .gmap{
    width: 100%;
  }
}

#copyRight p{
  min-width: 1180px;
  margin:0 auto;
  padding:10px 0;
  text-align: center;
  color:#50b0d4;
  font-size: 1.4rem;
}
@media screen and (max-width:768px) {
  #copyRight p{
    min-width: 94%;
    margin:0 auto;
    font-size: 0.8rem;
  }
}

/*----------------------------------------------------
 content
----------------------------------------------------*/
#content {
  width: 100%;
  min-width: 1180px;
  background: #fff;
  position: relative;
}
@media screen and (max-width:768px) {
  #content {
    min-width: 100%;
  } 
}
/*----------------------------------------------------
TITLEs
----------------------------------------------------*/
.imgTit{
  text-align: center;
}
.imgTit img{
  max-width: 100%;
}



/*====================================================
 toppage
====================================================*/
/* slider */
/*.slider{
  min-width: 1180px;
}
.slider img{
  width: 100%;
  max-width: 100%;
}
.slick-dots,
.slick-arrow{
  display: none !important;
}
@media screen and (max-width:768px) {
  .slider{
    min-width: 100%;
  } 
}*/

.secWrapper.mv{
  width: 100%;
}
.secWrapper.mv img{
  width: 100%;
  min-width: 100%;
}
/*====================================================
 secWrapper
====================================================*/
.secWrapper{
  width: 100%;
  min-width: 1180px;
  background: #fff;
}
.secOuter {
  width: 1180px;
  margin: 0 auto;
  zoom: 1;
}
.secInner {
  width: 800px;
  margin: 0 auto;
  zoom: 1;
}

@media screen and (max-width:768px) {
  .secWrapper{
    width: 100%;
    min-width: 100%; 
  }
  .secOuter {
    width: 94%;
    margin:0 auto;
  }
  .secInner {
    width: 100%;
  }
}

/*====================================================
 SEC01
====================================================*/
.sec01 .leadBox{
  border:solid 3px #000;
  border-radius: 12px;
  padding:30px 80px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  background-color: #fff;
}
.sec01 .leadBox .absImg{
  position: absolute;
  left:30px;
  bottom:100px;
}
.sec01 .leadBox .leadBoxInner{
  width: 830px;
}
.sec01 .leadBox .leadTit{
  font-size: 2.9rem;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: solid 1px #000;
  margin-bottom: 20px;
}
.sec01 .leadBox .leadTit span{
  font-size: 1.7rem;
}
.sec01 .leadBox p.txt{font-size: 2.0rem; line-height: 1.6;}

@media screen and (max-width:768px) {
  .sec01 .leadBox{
    border:solid 2px #000;
    border-radius: 8px;
    padding:15px 15px;
    display: block;
  }
  .sec01 .leadBox .absImg{
    position: absolute;
    left: 15px;
    top: -10px;
    max-width: 15%;
  }
  .sec01 .leadBox .absImg img{
    max-width: 100%;
  }
  .sec01 .leadBox .leadBoxInner{
    width: 100%;
  }
  .sec01 .leadBox .leadTit{
    font-size: 2.2rem;
    line-height: 1.4;
    padding-bottom: 20px;
    border-bottom: solid 1px #000;
    margin-bottom: 20px;
    padding-left: 20%;
  }
  .sec01 .leadBox .leadTit span{
    font-size: 1.3rem;
  }
  .sec01 .leadBox p.txt{font-size: 1.5rem; line-height: 1.6;}
}

/*====================================================
 SEC02
====================================================*/
.sec02{
  background: linear-gradient(-135deg, #007ac3 , #122981);
  padding-top: 240px;
  margin-top: -240px;
}
.sec02 .ico3Col{
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
}
.sec02 .ico3Col > dl{
  width: calc( (100% - 100px) / 3 );
  margin-right: 50px;
}
.sec02 .ico3Col > dl:nth-child(3n){
  margin-right: 0;
}
.sec02 .ico3Col > dl dt{
  margin-bottom: 20px;
}
.sec02 .ico3Col > dl p.txt{
  font-size: 2.4rem;
  font-weight: 700;
  color:#fff;
}

.sec02 .point2Col dl{
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.sec02 .point2Col dl > dt{
  width: 200px;
  background-color: #007ac3;
  color:#fff;
  font-size: 2.8rem;
  padding:25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 10px 0 0 10px;
}
.sec02 .point2Col dl > dd{
  width: calc( 100% - 200px );
  background-color: #fff;
  color:#000;
  font-size: 2.3rem;
  padding:25px 0 25px 30px;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 0 10px 10px 0;
}

@media screen and (max-width:768px) {
  .sec02{
    padding-top: 120px;
    margin-top: -120px;
  }
  .sec02 .ico3Col{
    display: block;
  }
  .sec02 .ico3Col > dl{
    width: 80%;
    margin-right: 0;
    margin:0 auto 20px;
  }
  .sec02 .ico3Col > dl:nth-child(3n){
    margin-right: 0;
    margin:0 auto;
  }
  .sec02 .ico3Col > dl dt{
    margin-bottom: 15px;
    width: 60%;
    margin: 0 auto;
  }
  .sec02 .ico3Col > dl p.txt{
    font-size: 1.6rem;
    font-weight: 700;
    color:#fff;
  }

  .sec02 .point2Col dl{
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
  .sec02 .point2Col dl > dt{
    width: 25%;
    background-color: #007ac3;
    color: #fff;
    font-size: 1.6rem;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 5px 0 0 5px;
  }
  .sec02 .point2Col dl > dd{
    width: 75%;
    background-color: #fff;
    color: #000;
    font-size: 1.5rem;
    padding: 5px 10px 5px 10px;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 0 5px 5px 0;
  }

}

/*====================================================
 SEC03
====================================================*/
.sec03 .sec03Tit{
  width: 1180px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -35px;
}
.sec03 .sec03Tit .lead{
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 30px;
}
.sec03 .sec03Tit .lead span{
  font-size: 2.4rem;
  font-weight: 700;
}

.sec03Cont01{
  background-color: #f7941c;
  padding:30px 0 20px;
  border-bottom: solid 4px #fff;
}
.sec03Cont01 .secOuter{
  position: relative;
}
.sec03Cont01 p{
  color:#fff;
  font-size: 2.2rem;
  font-weight: 700;
}
.sec03Cont01 p span{
  font-size: 5.4rem;
}
.sec03Cont01 .secOuter:after{
  content: '';
  display: inline-block;
  width: 130px;/*画像の幅*/
  height: 60px;/*画像の高さ*/
  background-image: url(../img/top/sec03Cont01_bg.png);
  background-size: contain;
  position: absolute;
  bottom: -80px;
  right: 200px;
}

.sec03Cont02{
  background-color: #f7941c;
  padding:30px 0 20px;
}
.sec03Cont02 .lead2Col{
  display: flex;
  justify-content: flex-start;
}
.sec03Cont02 .lead2Col > div{
  width: 50%;
  color:#fff;
}
.sec03Cont02 .lead2Col > div.text h3{
  font-size: 3.3rem;
}
.sec03Cont02 .lead2Col > div.text h3 span{
  font-size: 5.4rem;
}
.sec03Cont02 .lead2Col > div.text p{
  font-size: 2.7rem;
  font-weight: 700;
}
.sec03Cont02 .lead2Col > div.text p span{
  display: inline-block;
  background-color: #fff;
  color: #f7941c;
}
.sec03Cont02 .lead2Col > div.img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec03 .imgBg img{
  width: 100%;
}


@media screen and (max-width:768px) {
  .sec03 .sec03Tit{
    width: 94%;
    margin: 0 auto;
    background-color: #fff;
    display: block;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -35px;
  }
  .sec03 .sec03Tit .lead{
    font-size: 2.2rem;
    line-height: 1.6;
    padding-bottom: 30px;
  }
  .sec03 .sec03Tit .lead span{
    font-size: 1.8rem;
  }

  .sec03Cont01{
    background-color: #f7941c;
    padding:20px 0 20px;
    border-bottom: solid 2px #fff;
  }
  .sec03Cont01 .secOuter{
    position: relative;
  }
  .sec03Cont01 p{
    color:#fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
  }
  .sec03Cont01 p span{
    font-size: 3.6rem;
  }
  .sec03Cont01 .secOuter:after{
    content: '';
    display: inline-block;
    width: 65px;
    height: 30px;
    background-image: url(../img/top/sec03Cont01_bg.png);
    background-size: contain;
    position: absolute;
    bottom: -50px;
    right: calc(50% - 32px);
  }

  .sec03Cont02 .lead2Col{
    display: block;
  }
  .sec03Cont02 .lead2Col > div{
    width: 100%;
    margin-bottom:20px; 
  }
  .sec03Cont02 .lead2Col > div.text{
    text-align: center;
  }
  .sec03Cont02 .lead2Col > div.text h3{
    font-size: 2.2rem;
  }
  .sec03Cont02 .lead2Col > div.text h3 span{
    font-size: 2.2rem;
  }
  .sec03Cont02 .lead2Col > div.text p{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .sec03Cont02 .lead2Col > div.text p span{
    display: inline-block;
    background-color: #f7941c;
    color: #fff;
  }
  .sec03Cont02 .lead2Col > div.img{
    display: flex;
    align-items: center;
    justify-content: center;
  }


}
/*====================================================
 SEC04
====================================================*/
.sec04 .leadBox {
    border: solid 3px #f7941c;
    border-radius: 12px;
    padding: 30px 80px;
    background-color: #fff;
}
.sec04 .leadBox .leadTit{
  font-size: 3.6rem;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: solid 1px #f7941c;
  margin-bottom: 20px;
  width: 820px;
  margin: 0 auto;
  text-align: center;
}
.sec04 .leadBox .leadTit span{
  font-size: 1.7rem;
}
.sec04 .leadBox p.txt{
  width: 860px;
  margin:0 auto;
  text-align: center;
  font-size: 2.5rem; 
  line-height: 1.6;
}
@media screen and (max-width:768px) {
  .sec04 .leadBox {
      border: solid 2px #f7941c;
      border-radius: 8px;
      padding: 15px 15px;
      background-color: #fff;
  }
  .sec04 .leadBox .leadTit{
    font-size: 2.4rem;
    line-height: 1.6;
    padding-bottom: 10px;
    border-bottom: solid 1px #f7941c;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .sec04 .leadBox p.txt{
    width: 100%;
    margin:0 auto;
    text-align: center;
    font-size: 1.8rem; 
    line-height: 1.4;
  }
}
/*====================================================
 SEC05-tit
====================================================*/
.sec05-tit{
  background-color: #0059bd;
}
.sec05-tit h2{
  color:#fff;
  font-size: 4.0rem;
  text-align: center;
  padding:20px 0;
}
@media screen and (max-width:768px) {
  .sec05-tit h2{
    color:#fff;
    font-size: 2.4rem;
    text-align: center;
    padding:10px 0;
    line-height: 1.4;
  }
}
/*====================================================
 SEC05
====================================================*/
.sec05 {
  background:url(../img/top/sec05_bg.png) left center no-repeat;
  background-size: cover;
}
.sec05 .secOuter{
  position: relative;
}
.sec05ico3Col{
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  margin-bottom: 0px;
}
p.caution{margin-bottom: 60px;}
.sec05ico3Col > dl{
  width: 30%;
  text-align: center;
}
.sec05ico3Col > dl > dt{
  margin-bottom: 25px;
}
.sec05ico3Col > dl > dd{
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec05ico3Col{
    display: block;
  }
  p.caution{margin-bottom: 30px;}
  .sec05ico3Col > dl{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .sec05ico3Col > dl > dt{
    width: 60%;
    margin:0 auto 15px;
  }
  .sec05ico3Col > dl > dd{
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 700;
  }
}



.talkSec{
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.talkSec .talk p{
  font-size: 2.7rem;
}
.talkSec .talk{
  background-color: #fff;
  color:#f79722;
  border-radius: 25px;
  padding: 20px 40px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  width: 55%;
  border: solid 4px #0059bd;
  margin-top: -20px;
}
.talkSec .talk p.auth{
  text-align: right;
}
.talkSec .talk:nth-child(odd){
  color:#f79722;
  border: solid 4px #f79722;
  margin-right: 45%;
  padding: 20px 30px 20px 20px;
}
.talkSec .talk:nth-child(even){
  color:#0059bd;
  border: solid 4px #0059bd;
  margin-left: 45%;
  padding: 20px 20px 20px 30px;
}
.talkSec .talk:nth-child(odd):after{
  content: '';
  display: inline-block;
  width: 60px;
  height: 51px;
  background-image: url(../img/top/baloon-ico-odd.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: -60px;
  bottom: 10px;
}
.talkSec .talk:nth-child(even):before{
  content: '';
  display: inline-block;
  width: 60px;
  height: 51px;
  background-image: url(../img/top/baloon-ico-even.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -60px;
  bottom: 10px;
}

@media screen and (max-width:768px) {
  .talkSec{
    width: 90%;
    margin:0 auto;
    position: relative;
  }
  .talkSec .talk{
    background-color: #fff;
    border-radius: 14px;
    padding: 15px 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    width: 90%;
    margin-top: -10px;
  }
  .talkSec .talk p{
    font-size: 1.8rem;
  }
  .talkSec .talk:nth-child(odd){
    margin-right: 10%;
    border: solid 2px #f79722;
    padding: 10px 15px 10px 15px;
  }
  .talkSec .talk:nth-child(even){
    margin-left: 10%;
    border: solid 2px #0059bd;
    padding: 10px 15px 10px 15px;
  }
  .talkSec .talk:nth-child(odd):after{
    content: '';
    display: inline-block;
    width: 24px;
    height: 20px;
    background-image: url(../img/top/baloon-ico-odd.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: -24px;
    bottom: 5px;
  }
  .talkSec .talk:nth-child(even):before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 20px;
    background-image: url(../img/top/baloon-ico-even.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: -24px;
    bottom: 5px;
  }
}

.talkSec h3.lead{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  color:#ee780f;
  text-shadow:
    1px 0 0 #fff,
    0 1px 0 #fff,
    -1px 0 0 #fff,
    0 -1px 0 #fff
}
.sec05 .secOuter .absImg{
  position: absolute;
  left:0;
  bottom:-300px;
}
@media screen and (max-width:768px) {
  .talkSec h3.lead{
    font-size: 1.8rem;
    line-height: 1.4;
    text-shadow:
      1px 0 0 #fff,
      0 1px 0 #fff,
      -1px 0 0 #fff,
      0 -1px 0 #fff;
    width: 90%;
    margin-left: 10%;
  }
  .sec05 .secOuter .absImg{
    position: absolute;
    left: 3%;
    bottom: -40px;
    max-width: 15%;
  }
}

/*====================================================
 SEC05-btm
====================================================*/
.sec05-btm{
  background-color: #f7941c;
}

/*====================================================
 SEC06-tit
====================================================*/
.sec06-tit{
  background-color: #ffb55b;
  border-top: solid 9px #f7941c;
}
.sec06-tit h2{
  color:#fff;
  font-size: 3.6rem;
  text-align: center;
  padding:40px 0;
}
@media screen and (max-width:768px) {
  .sec06-tit h2{
    color:#fff;
    font-size: 2.0rem;
    text-align: center;
    padding:10px 0;
    line-height: 1.4;
  }
}

/*====================================================
 SEC06-01
====================================================*/
.sec06-01{
  background-color: #f7941c;
}
.sec06-01 .secOuter{
  position: relative;
}
.sec06-01 .secOuter:after{
  position: absolute;
  content: "";
  right: 0;
  margin-left: -40px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #f7941c;
}
.sec06-01 .secOuter:before{
  position: absolute;
  content: "COATING";
  font-size: 4.6rem;
  font-weight: 700;
  right: 0;
  top:50px;
  color:#ffb55b;
}
.sec06-01 .secInner{
  width: 1080px;
  margin:0 auto;
}
.sec06-01 .numTit{
  font-size: 2.3rem;
  color:#fff;
  margin-top: 25px;
  margin-bottom: 10px;
}
.sec06-01 .numTit span{
  display: inline-block;
  margin-right: 10px;
  font-size: 1.9rem;
  padding: 2px 8px;
  background-color: #fff;
  color: #f7941c;
}
.sec06-01 .lead{
  margin-left: 60px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec06-01 .secOuter:before{
    font-size: 2.8rem;
    top:20px;
  }
  .sec06-01 .secOuter:after{
    position: absolute;
    content: "";
    right: 20px;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #f7941c;
  }
  .sec06-01 .secInner{
    width: 100%;
  }
  .sec06-01 .numTit{
    font-size: 2.0rem;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .sec06-01 .numTit span{
    margin-right: 10px;
    font-size: 1.8rem;
    padding: 0px 8px;
  }
  .sec06-01 .lead{
    margin-left: 40px;
  }
}
/*====================================================
 SEC06-02
====================================================*/
.sec06-02{
  background-color: #fff;
}
.sec06-02 .secOuter{
  position: relative;
}
/*.sec06-02 .secOuter:after{
  position: absolute;
  content: "";
  left: 0;
  margin-left: -40px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #fff;
}*/
.sec06-02 .secOuter:before{
  position: absolute;
  content: "PR";
  font-size: 4.6rem;
  font-weight: 700;
  right: 10px;
  top: 60px;
  color:#ccc;
}
.sec06-02 .secInner{
  width: 1080px;
  margin:0 auto;
}
.sec06-02 .numTit{
  font-size: 2.3rem;
  color:#000;
  margin-top: 25px;
  margin-bottom: 10px;
}
.sec06-02 .numTit span.square{
  display: inline-block;
  margin-right: 10px;
  font-size: 1.9rem;
  padding: 2px 8px;
  background-color: #f7941c;
  color: #fff;
}
.sec06-02 .numTit span.gray{
  color:#8e8c8c;
  background-color: inherit;
  padding: 0;
}
.sec06-02 .lead{
  margin-left: 60px;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .sec06-02 .secOuter:before{
    font-size: 2.8rem;
    top:30px;
    right:20px;
  }
  .sec06-02 .secInner{
    width: 100%;
    margin:0 auto;
  }
  .sec06-02 .numTit{
    font-size: 2.0rem;
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .sec06-02 .numTit span.square{
    margin-right: 10px;
    font-size: 1.8rem;
    padding: 0px 8px;
  }
  .sec06-02 .lead{
    margin-left: 40px;
  }

}

/*====================================================
 SEC07
====================================================*/
.sec07{
  position: relative;
}
.sec07 h2.circle{
  position: absolute;
  top: 30px;
  width: 1180px;
  display: flex;
  justify-content: center;
}
.sec07 h2.circle span{
  width: 85%;
  margin: 0 auto;
  color: #f7941c;
  font-size: 2.6rem;
  text-align: center;
  border: solid 2px #f7941c;
  border-radius: 50px;
  padding: 10px 0;
  background-color: #fff;
  display: block;
}
.sec07 .secInner{
  width: 100%;
  border:solid 2px #f7941c;
  border-radius: 20px;
  padding:30px 40px ;
}


.sec07 p.lead{
  font-size: 1.8rem;
  color:#595656;
  font-weight: 700;
}

.sec07 .sec07Bnr2Col{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.sec07 dl.circle{
  border-radius: 20px;
  border:solid 2px #f7941c;
  margin-bottom: 25px;
}
.sec07 dl.circle > dt{
  border-radius: 15px 15px 0 0  ;
  background-color: #f7941c;
  padding:15px 0;
  text-align: center;
  color:#fff;
  font-size: 3.0rem;
}
.sec07 dl.circle > dd{
  border-radius: 0 0 15px 15px;
  padding:15px 30px;
}

.sec07 dl.circle .flex2Col{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.sec07 dl.circle .flex2Col > p{
  width: 50%;
}
.sec07 dl.circle.num02{border:solid 2px #ea5413;}
.sec07 dl.circle.num02 > dt{background-color: #ea5413;}
.sec07 dl.circle.num03{border:solid 2px #007ac3;}
.sec07 dl.circle.num03 > dt{background-color: #007ac3;}

.sec07 dl.circle.num02{
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
}
.sec07 dl.circle.num02 dd{
  border-radius: 0 0 0 0 ;
}
.circle02-btm {
  border-radius: 0 0 20px 20px;
  margin-bottom: 25px;
  background-color: #ea5413;
  color:#fff;
}
.circle02-btm p{
  padding:8px 15px;
  text-align: center;
  font-weight: 700;
}


.sec07 dl.circle.num02 .lead2{
  color:#ea5413;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}

.sec07 dl.circle.num02 .flex4Col{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec07 dl.circle.num02 .flex4Col > li{
  width: calc(100% / 4);
  border-right: solid 2px #ea5413;
}
.sec07 dl.circle.num02 .flex4Col > li:last-child{
  border-right: none;
}

.sec07 dl.circle.num03 .flex3Col{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec07 dl.circle.num03 .flex3Col > li{
  width: calc(100% / 3);
  border-right: solid 2px #007ac3;
}
.sec07 dl.circle.num03 .flex3Col > li:last-child{
  border-right: none;
}

.sec07 .bnr img{
  width: 100%;
}

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

  .sec07 h2.circle {
      position: absolute;
      top: 5px;
      left: 0;
      width: 100%;
  }
  .sec07 h2.circle span {
      width: 85%;
      margin: 0 auto;
      color: #f7941c;
      font-size: 1.8rem;
      text-align: center;
      border: solid 2px #f7941c;
      border-radius: 50px;
      padding: 10px 15px;
      background-color: #fff;
      display: block;
  }

.sec07 .secInner {
    border-radius: 15px;
    padding: 30px 15px 20px;
}
.sec07 dl.circle > dt {
    border-radius: 15px 15px 0 0;
    background-color: #f7941c;
    padding: 10px 15px;
    font-size: 2.2rem;
    line-height: 1.4;
}
.sec07 dl.circle > dd {
    border-radius: 0 0 15px 15px;
    padding: 10px 15px;
}

.sec07 p.lead {
    font-size: 1.6rem;
}
.sec07 .sec07Bnr2Col li{
  text-align: center;
}
.sec07 dl.circle .flex2Col {
    display: block;
}
.sec07 dl.circle .flex2Col > p{
  width: 100%;
}
.sec07 dl.circle .flex2Col > p:last-child{
  text-align: center;
}
.sec07 dl.circle.num02 .flex4Col{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sec07 dl.circle.num02 .flex4Col > li{
  width: calc(100% / 2);
  border-right: solid 2px #ea5413;
  margin-bottom: 10px;
  text-align: center;
}
.sec07 dl.circle.num02 .flex4Col > li:nth-child(2n){
  border-right: none;
}

.sec07 dl.circle.num03 .flex3Col{
  display: block;
  text-align: center;
}
.sec07 dl.circle.num03 .flex3Col > li{
  width: 100%;
  border-right:none;
}

.sec07 dl.circle.num02 .lead2 {
    font-size: 1.5rem;
}






}

/* ============================
    OTHER SITE CONTENT
=============================== */
.en-title {
    font-family: "Lato", sans-serif;
}
.container {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.section-about img,
.section-hikari img {
    display: block;
    max-width: 100%;
    height: auto;
}

.section-about {
  padding-top: 40px;
  padding-bottom: 100px; }
  .section-about .title span {
    display: block;
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px; }
  .section-about .title img {
    margin: 0 auto 20px; }
  .section-about .title h4 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px; }
  .section-about .title h5 {
    color: #0059bd;
    text-align: center; }
  .section-about .content {
    margin-top: 15px; }
    .section-about .content .company-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: -15px; 
      width: 100%;
    }
      .section-about .content .company-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px;
        /*max-width: calc(100% / 5); }*/
        max-width: calc(100% / 6); }
        .section-about .content .company-list li img {
          max-width: 100%;
          max-height: 100px;
          margin-left: auto;
          margin-right: auto; }

.section-hikari .freshion-logo {
  position: relative; }
  .section-hikari .freshion-logo .container:after {
    position: absolute;
    top: -32px;
    display: block;
    content: "";
    background: url(../img/other/logo-freshion-circle.png) 0 0 no-repeat;
    width: 65px;
    height: 65px;
    background-size: 100%;
    z-index: 9999; }
  .section-hikari .freshion-logo.left .container:after {
    left: 40px; }
  .section-hikari .freshion-logo.right .container:after {
    right: 40px; }

.section-hikari .section-hikari-onestop {
  background: #0059bd;
  padding-top: 30px;
  padding-bottom: 30px; }
  .section-hikari .section-hikari-onestop .title {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px; }
    .section-hikari .section-hikari-onestop .title h3 {
      color: #fff;
      font-size: 3.2rem;
      margin-bottom: 20px; }
  .section-hikari .section-hikari-onestop .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section-hikari .section-hikari-onestop .content .thumb {
      width: 350px; }
    .section-hikari .section-hikari-onestop .content .text {
      color: #fff;
      width: calc(100% - 350px);
      padding-left: 40px;
      margin-top: 40px; }
      .section-hikari .section-hikari-onestop .content .text h4 {
        font-size: 2.4rem;
        margin-bottom: 30px; }
      .section-hikari .section-hikari-onestop .content .text p {
        line-height: 2;
        font-weight: bold; }

.section-hikari .section-hikari-effect {
  padding-top: 30px;
  padding-bottom: 40px; }
  .section-hikari .section-hikari-effect .title {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    margin-bottom: 30px; }
    .section-hikari .section-hikari-effect .title h3 {
      color: #0059bd;
      font-size: 3.2rem;
      margin-bottom: 20px; }
  .section-hikari .section-hikari-effect .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section-hikari .section-hikari-effect .content .thumb {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      width: 480px; }
    .section-hikari .section-hikari-effect .content .text {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      width: calc(100% - 480px);
      padding-right: 40px; }
      .section-hikari .section-hikari-effect .content .text h4 {
        font-size: 2.4rem;
        margin-bottom: 30px; }
      .section-hikari .section-hikari-effect .content .text p {
        font-weight: bold;
        line-height: 2; }

.section-hikari .section-hikari-result {
  background: #0059bd;
  padding-top: 30px;
  padding-bottom: 60px; }
  .section-hikari .section-hikari-result .title {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px; }
    .section-hikari .section-hikari-result .title h3 {
      color: #fff;
      font-size: 3.2rem;
      margin-bottom: 20px; }
  .section-hikari .section-hikari-result .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section-hikari .section-hikari-result .content .evidence-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: -10px;
      margin-right: -10px; }
      .section-hikari .section-hikari-result .content .evidence-list li {
        width: calc(100% / 6.01);
        padding-left: 10px;
        padding-right: 10px; }
        .section-hikari .section-hikari-result .content .evidence-list li .thumb {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          width: 100%;
          margin-bottom: 20px; }
        .section-hikari .section-hikari-result .content .evidence-list li .text {
          text-align: center; }
          .section-hikari .section-hikari-result .content .evidence-list li .text h4 {
            color: #fff;
            font-size: 1.5rem; }
    .section-hikari .section-hikari-result .content .text {
      color: #fff;
      width: calc(100%); }
      .section-hikari .section-hikari-result .content .text h4 {
        font-size: 2.4rem;
        margin-bottom: 30px; }
      .section-hikari .section-hikari-result .content .text p {
        font-weight: bold;
        line-height: 2; }
        .section-hikari .section-hikari-result .content .text p strong {
          font-size: 2.4rem;
          padding-left: 10px; }

.section-hikari .section-hikari-example {
  background: #f3f3f4; }
  .section-hikari .section-hikari-example .title {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px; }
    .section-hikari .section-hikari-example .title h3 {
      color: #0059bd;
      font-size: 3.2rem;
      letter-spacing: .5em; }
  .section-hikari .section-hikari-example .slides .slide .thumb {
    background: #202e3b; }
    .section-hikari .section-hikari-example .slides .slide .thumb img {
      max-height: 525px;
      margin-left: auto;
      margin-right: auto; }
  .section-hikari .section-hikari-example .slides .slide .description {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px; }
    .section-hikari .section-hikari-example .slides .slide .description h4 {
      font-weight: bold; }
      .section-hikari .section-hikari-example .slides .slide .description h4 span {
        text-transform: uppercase;
        color: #0059bd;
        margin-right: 20px; }
  .section-hikari .section-hikari-example .slide-pager li {
    padding-left: 5px;
    padding-right: 5px; }
    .section-hikari .section-hikari-example .slide-pager li .thumb {
      padding-left: 2px;
      padding-right: 2px; }
      .section-hikari .section-hikari-example .slide-pager li .thumb:active {
        outline: none; }
      .section-hikari .section-hikari-example .slide-pager li .thumb:hover {
        opacity: .7;
        cursor: pointer; }
  .section-hikari .section-hikari-example .example-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px; }
    .section-hikari .section-hikari-example .example-list li {
      width: 33.3%;
      padding: 15px; }
      .section-hikari .section-hikari-example .example-list li .inner {
        position: relative; }
        .section-hikari .section-hikari-example .example-list li .inner:hover .overlay {
          opacity: 1; }
        .section-hikari .section-hikari-example .example-list li .inner .overlay {
          opacity: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 89, 189, 0.6);
          -webkit-transition: all ease .3s;
          -o-transition: all ease .3s;
          transition: all ease .3s; }
          .section-hikari .section-hikari-example .example-list li .inner .overlay .text {
            text-align: center; }
            .section-hikari .section-hikari-example .example-list li .inner .overlay .text p {
              color: #fff;
              font-size: 3.2rem;
              font-weight: bold; }
            .section-hikari .section-hikari-example .example-list li .inner .overlay .text h5 {
              color: #fff; }
  .section-hikari .section-hikari-effect .graphs {
    padding-top: 40px;
    padding-bottom: 30px; }
    .section-hikari .section-hikari-effect .graphs .graphs-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 30px; }
      .section-hikari .section-hikari-effect .graphs .graphs-list li {
        width: 24.9%;
        text-align: center;
        border-left: 1px solid #434343; }
        .section-hikari .section-hikari-effect .graphs .graphs-list li:last-child {
          border-right: 1px solid #434343; }
        .section-hikari .section-hikari-effect .graphs .graphs-list li p {
          font-weight: bold;
          margin-bottom: 5px; }
        .section-hikari .section-hikari-effect .graphs .graphs-list li span {
          font-size: 2.2rem;
          font-weight: bold; }
          .section-hikari .section-hikari-effect .graphs .graphs-list li span.lightblue {
            color: #00a0e9; }
          .section-hikari .section-hikari-effect .graphs .graphs-list li span.blue {
            color: #172981; }
          .section-hikari .section-hikari-effect .graphs .graphs-list li span.orange {
            color: #ee780c; }
    .section-hikari .section-hikari-effect .graphs img {
      margin-left: auto;
      margin-right: auto; }

.section-hikari .section-hikari-about {
  background: #0059bd;
  padding-top: 30px;
  padding-bottom: 60px; }
  .section-hikari .section-hikari-about .title {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px; }
    .section-hikari .section-hikari-about .title h3 {
      color: #fff;
      font-size: 3.2rem;
      margin-bottom: 20px; }
  .section-hikari .section-hikari-about .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section-hikari .section-hikari-about .content .thumb {
      width: 454px; }
    .section-hikari .section-hikari-about .content .text {
      color: #fff;
      width: calc(100% - 454px);
      padding-left: 40px; }
      .section-hikari .section-hikari-about .content .text h4 {
        font-size: 2.4rem;
        margin-bottom: 30px; }
      .section-hikari .section-hikari-about .content .text p {
        font-weight: bold;
        line-height: 2; }
        .section-hikari .section-hikari-about .content .text p span {
          color: #83bdff; }

@media screen and (max-width: 1180px) {
  .container {
    width: 100%; }
  .header {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 15px;
    margin-bottom: 15px; }
    .header .container .sitename {
      width: 100%;
      margin-bottom: 20px; }
      .header .container .sitename h1 {
        text-align: center; }
    .header .container .header-right {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%; }
      .header .container .header-right .title {
        width: 100%;
        height: 40px;
        margin-right: 0; }
  .global-menu {
    display: none; }
  .global-menu-sp {
    display: block; }
    .global-menu-sp .menu-toggle {
      width: 100%;
      text-align: center;
      padding-top: 10px;
      padding-bottom: 10px;
      margin-left: auto;
      margin-right: auto;
      background: #0059bd; }
      .global-menu-sp .menu-toggle span {
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold; }
    .global-menu-sp ul {
      display: none;
      background: #f3f3f4; }
      .global-menu-sp ul.active {
        display: block; }
      .global-menu-sp ul li:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
      .global-menu-sp ul li a {
        display: block;
        color: #0059bd;
        font-weight: bold;
        text-align: center;
        padding: 20px; }
  .key-visual .kv-img ul li {
    height: 200px; }
  .key-visual .kv-bottom {
    padding-left: 20px;
    padding-right: 20px; }
    .key-visual .kv-bottom .title h3 {
      font-size: 2.4rem; }
      .key-visual .kv-bottom .title h3 br {
        display: none; }
  .section-hikari .section-hikari-onestop {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px; }
    .section-hikari .section-hikari-onestop .title h3 {
      font-size: 2.4rem; }
    .section-hikari .section-hikari-onestop .content .thumb {
      width: 100%; }
      .section-hikari .section-hikari-onestop .content .thumb img {
        margin-left: auto;
        margin-right: auto; }
    .section-hikari .section-hikari-onestop .content .text {
      width: 100%;
      padding-left: 0; }
  .section-hikari .section-hikari-effect {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px; }
    .section-hikari .section-hikari-effect .title h3 {
      font-size: 2.4rem; }
    .section-hikari .section-hikari-effect .content .thumb {
      width: 100%;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      margin-bottom: 40px; }
      .section-hikari .section-hikari-effect .content .thumb img {
        margin-left: auto;
        margin-right: auto; }
    .section-hikari .section-hikari-effect .content .text {
      width: 100%;
      padding-right: 0; }
  .section-hikari .section-hikari-result {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px; }
    .section-hikari .section-hikari-result .title h3 {
      font-size: 2.4rem; }
      .section-hikari .section-hikari-result .title h3 br {
        display: none; }
    .section-hikari .section-hikari-result .content .evidence-list li {
      width: 33.3%; }
    .section-hikari .section-hikari-result .content .text {
      width: 100%;
      padding-right: 0; }
  .section-hikari .section-hikari-example {
    padding-left: 20px;
    padding-right: 20px; }
    .section-hikari .section-hikari-example .title h3 {
      font-size: 2.4rem; }
      .section-hikari .section-hikari-example .title h3 br {
        display: none; }
    .section-hikari .section-hikari-example .example-list {
      margin: -8px; }
      .section-hikari .section-hikari-example .example-list li {
        padding: 8px; }
        .section-hikari .section-hikari-example .example-list li .inner .overlay {
          opacity: 1; }
          .section-hikari .section-hikari-example .example-list li .inner .overlay .text p {
            font-size: 2.4rem; }
    .section-hikari .section-hikari-effect .graphs .graphs-list li {
      width: 50%;
      padding: 8px; }
      .section-hikari .section-hikari-effect .graphs .graphs-list li:nth-child(even) {
        border-right: 1px solid #434343; }
  .section-hikari .section-hikari-about {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px; }
    .section-hikari .section-hikari-about .title h3 {
      font-size: 2.4rem; }
    .section-hikari .section-hikari-about .content .thumb {
      width: 100%;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      margin-bottom: 40px; }
      .section-hikari .section-hikari-about .content .thumb img {
        margin-left: auto;
        margin-right: auto; }
    .section-hikari .section-hikari-about .content .text {
      width: 100%;
      padding-left: 0;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
  .section-price .title {
    padding-left: 20px;
    padding-right: 20px; }
  .section-price .price-faq {
    padding-left: 20px;
    padding-right: 20px; }
    .section-price .price-faq .sub-title h4 {
      font-size: 2.4rem; }
  .section-price .bottomline {
    padding-left: 20px;
    padding-right: 20px; }
    .section-price .bottomline p br {
      display: none; }
  .section-news {
    padding-left: 20px;
    padding-right: 20px; }
    .section-news .title h3 {
      font-size: 2.4rem; }
    .section-news .content {
      height: 500px; }
      .section-news .content dl dt {
        width: 100%;
        margin-bottom: 5px; }
        .section-news .content dl dt span {
          margin-right: 20px; }
          .section-news .content dl dt span:not(.new) {
            display: none; }
        .section-news .content dl dt p {
          width: auto;
          padding-left: 0; }
      .section-news .content dl dd {
        width: 100%; }
  .bottom-contact {
    padding-left: 20px;
    padding-right: 20px; }
    .bottom-contact a.btn {
      width: 100%; } 
}


@media screen and (max-width: 768px) {
  .container {
    width: 100%; }
  * {
    letter-spacing: 0; }
  * p {
    font-size: 1.3rem; }
  section p {
    font-weight: normal !important; }
  .header .container .header-right .contact {
    margin-top: 10px; }
    .header .container .header-right .contact ul li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 10px; }
    .header .container .header-right .contact ul li p {
      font-size: 2.4rem; }
  .key-visual .kv-top {
    padding-left: 20px;
    padding-right: 20px; }
  .key-visual .kv-bottom .sub-title {
    text-align: center;
    width: 80%; }
  .section-about {
    padding-left: 20px;
    padding-right: 20px; }
    .section-about .content .company-list {
      margin: -4px; }
      .section-about .content .company-list li {
        width: 14%;
        max-width: 50%;
        padding: 4px; }
      .section-about .content .company-list li.size-s {
        width: 10%;
        max-width: 50%;
        padding: 4px;
    }
        .section-about .content .company-list li .logo_mk {
        width: 70%;
        }
        .section-about .content .company-list li .logo_amamoto {
        width: 40%;
        }
        .section-about .content .company-list li img {
          max-width: 100%;
          height: auto; }
  .section-hikari .section-hikari-result .content .evidence-list li {
    width: 50%; }
  .section-hikari .section-hikari-example .example-list li {
    width: 50%; }
  .section-hikari .section-hikari-effect .graphs .graphs-list li {
    width: 100%;
    border-right: 1px solid #434343; }
  .section-price .price-faq .faq-list li .plans .plan {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important; }
    .section-price .price-faq .faq-list li .plans .plan:not(:last-child) {
      margin-bottom: 20px; }
  .bottom-contact p {
    font-size: 1.5rem; }
  .bottom-contact a.btn img {
    display: none; }
  .bottom-contact a.btn span {
    font-size: 2.2rem;
    margin-left: 0; }
  .section-hikari .section-hikari-result .content .text p strong {
    font-size: 1.5rem; }
  .section-hikari .section-hikari-result .content .evidence-list li {
    width: 33.3%; }
  .section-hikari .section-hikari-onestop .content .text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px; }
  .section-hikari .section-hikari-onestop .content .thumb {
    width: 80%;
    margin-left: auto;
    margin-right: auto; }
  .section-price .title h3 {
    font-size: 2.2rem; }
  .section-price .bottomline p {
    font-size: 1.8rem;
    font-weight: bold !important; }
  .key-visual .kv-bottom .title h3 {
    font-size: 1.8rem; }
  .section-hikari .section-hikari-onestop .title h3,
  .section-hikari .section-hikari-effect .title h3,
  .section-hikari .section-hikari-result .title h3,
  .section-hikari .section-hikari-about .title h3,
  .section-price .price-faq .sub-title h4 {
    font-size: 2.0rem; 
    line-height: 1.4;}
  .section-price .price-faq .faq-list li .plans .plan .inner h5 {
    font-size: 1.8rem; } 
}

/* ============================
     END：OTHER SITE CONTENT 2
================================ */
.section-news {
  padding-bottom: 100px; }
  .section-news .title {
    text-align: center;
    margin-bottom: 30px; }
    .section-news .title h3 {
      display: block;
      font-size: 3.0rem;
      font-weight: bold; }
  .section-news .content {
    height: 300px;
    overflow-y: scroll; }
    .section-news .content dl {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-bottom: 15px;
      margin-bottom: 15px;
      border-bottom: 1px dashed #b9b9b9; }
      .section-news .content dl dt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 285px; }
        .section-news .content dl dt span {
          display: inline-block;
          padding: 7px 10px 3px;
          width: 85px; }
          .section-news .content dl dt span.new {
            display: inline-block;
            color: #fff;
            font-size: 1.3rem;
            text-transform: uppercase;
            text-align: center;
            background: #0059bd; }
        .section-news .content dl dt p {
          width: calc(100% - 85px);
          padding-left: 20px; }
      .section-news .content dl dd {
        width: calc(100% - 286px); }
        .section-news .content dl dd a {
          display: block;
          color: #434343; }
          .section-news .content dl dd a:hover {
            opacity: .7; }

.bottom-contact {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #0059bd; }
  .bottom-contact p {
    color: #fff;
    font-weight: bold;
    text-align: center; }
  .bottom-contact a.btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 610px;
    height: 70px;
    background: #fff;
    margin: 20px auto 0; }
    .bottom-contact a.btn:hover {
      opacity: .7; }
    .bottom-contact a.btn:before {
      position: absolute;
      top: -1px;
      left: -1px;
      display: block;
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 20px 0 0;
      border-color: #0058bd transparent transparent transparent; }
    .bottom-contact a.btn img {
      width: 34px;
      height: 27px; }
    .bottom-contact a.btn span {
      color: #0059bd;
      font-size: 2.6rem;
      letter-spacing: .2em;
      font-weight: bold;
      margin-left: 40px; }

.footer {
  width: 100%;
  min-width: 1180px;
  padding-top: 12px;
  padding-bottom: 12px; }
  .footer .copyright {
    text-align: center; }

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

  .section-news {
    padding-left: 20px;
    padding-right: 20px; }
    .section-news .title h3 {
      font-size: 2.4rem; }
    .section-news .content {
      height: 500px; }
      .section-news .content dl dt {
        width: 100%;
        margin-bottom: 5px; }
        .section-news .content dl dt span {
          margin-right: 20px; }
          .section-news .content dl dt span:not(.new) {
            display: none; }
        .section-news .content dl dt p {
          width: auto;
          padding-left: 0; }
      .section-news .content dl dd {
        width: 100%; }
  .bottom-contact {
    padding-left: 20px;
    padding-right: 20px; }
    .bottom-contact a.btn {
      width: 100%; }
}

@media screen and (max-width: 768px) {
  .footer{
    min-width: 100%;
  }


}

/*====================================================
 ftr3Col
====================================================*/
.ftr3Col{
  width: 80%;
  margin: 40px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr3Col > .innerCol{
  margin:0 15px;
}
@media screen and (max-width: 768px) {
  .ftr3Col{
    width: 100%;
  }
  .ftr3Col > .innerCol{
    margin:0 5px;
  }
  .bottom-contact.pd-none{
    padding-top: 0;
    padding-bottom: 0;
  }
  .bottom-contact.pd-none a.btn{
    width: 80%;
    height: 40px;
  }
  .bottom-contact.pd-none a.btn span {
      color: #0059bd;
      font-size: 2.0rem;
      letter-spacing: .2em;
      font-weight: bold;
      margin-left: 0;
  }

}
/*====================================================
 OTHER > levels
====================================================*/
.levels h3{
  font-size: 2.8rem;
  color:#595656;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}
.levels .levels3Col{
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
.levels .levels3Col > p{
  text-align: center;
}
@media screen and (max-width: 768px) {
  .levels .levels3Col{
    display: block;
  }
  .levels .levels3Col > p{
    margin-bottom: 20px;
  }
  .levels .levels3Col > p img{
    margin:0 auto;
  }
  .levels h3{
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

/*====================================================
 page RESULT.HTML
====================================================*/
.section-hikari.page-result .section-hikari-result .content .evidence-list li {
    width: calc(100% / 3.01);
    padding-left: 10px;
    padding-right: 10px;
}
@media screen and (max-width: 768px){
  .section-hikari.page-result .section-hikari-result .content .evidence-list li {
      width: 50%;
  }
}


/*====================================================

 MAIL FORM PRO

====================================================*/
.secOuter.mpp .leadBox{
  width: 80%;
  margin:0 auto;
}
form#mailformpro dl {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
form#mailformpro dl dt {
    float: none;
    width: 20%;
    clear: both;
    font-size: 1.6rem;
    padding: 20px 0px;
    text-align: right;
    border-top: none;
    margin: 0px;
}
.must {
    display: block;
    background-color: #C00;
    border: none; 
    text-shadow: none; 
    padding: 4px 7px;
    font-size: 1.3rem;
    color: #FFF;
    float: left;
    margin: 0px 10px;
    border-radius: 0px;
    box-shadow: none;
    background-image:none;
}
form#mailformpro dl dd {
    width: 80%;
    border-top: none;
    margin: 0px;
    padding: 15px 5px 15px 5px;
    font-size: 1.6rem;
    line-height: 1.5em;
    text-align: left;
}
.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  border: solid 1px #CCC;
  border-radius: 0px;
  box-shadow: none;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
}

.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
    border-radius: 0px;
    padding: 15px 50px;
    border: solid 1px #CCC;
    background: #fff;
    text-shadow: none;
    font-size: 1.8rem;
    cursor: pointer;
    outline: none;
}
.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
    background: #fff;
    opacity: 0.7;
    box-shadow: 0px 2px 15px #ccc;
}

@media screen and (max-width: 768px){
  .secOuter.mpp .leadBox{
    width: 100%;
  }
  form#mailformpro dl {
    display: block;
  }
  form#mailformpro dl dt {
      width: 100%;
      font-size: 1.6rem;
      padding: 20px 10px 5px;
      text-align: left;
  }
  .must { 
      padding: 4px 7px;
      font-size: 1.2rem;
      color: #FFF;
      margin: 0px 5px;
  }
  form#mailformpro dl dd {
      width: 100%;
      padding: 10px 5px 20px 5px;
      font-size: 1.6rem;
  }
}


/*====================================================
 ADJUST
====================================================*/
/* adjust margin-bottom */
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb55 {margin-bottom: 55px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb65 {margin-bottom: 65px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb75 {margin-bottom: 75px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb85 {margin-bottom: 85px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb95 {margin-bottom: 95px !important;}
.mb100 {margin-bottom: 100px !important;}

/* adjust width */
.w05{width: 5%;}
.w10{width: 10%;}
.w15{width: 15%;}
.w20{width: 20%;}
.w25{width: 25%;}
.w30{width: 30%;}
.w40{width: 40%;}
.w45{width: 45%;}
.w50{width: 50%;}
.w55{width: 55%;}
.w60{width: 60%;}
.w65{width: 65%;}
.w70{width: 70%;}
.w75{width: 75%;}
.w80{width: 80%;}
.w85{width: 85%;}
.w90{width: 90%;}
.w95{width: 95%;}
.w100{width: 100%;}

@media screen and (max-width: 768px) {
  .spW05{width: 5%;}
  .spW10{width: 10%;}
  .spW15{width: 15%;}
  .spW20{width: 20%;}
  .spW25{width: 25%;}
  .spW30{width: 30%;}
  .spW40{width: 40%;}
  .spW45{width: 45%;}
  .spW50{width: 50%;}
  .spW55{width: 55%;}
  .spW60{width: 60%;}
  .spW65{width: 65%;}
  .spW70{width: 70%;}
  .spW75{width: 75%;}
  .spW80{width: 80%;}
  .spW85{width: 85%;}
  .spW90{width: 90%;}
  .spW95{width: 95%;}
  .spW100{width: 100%;}
}

/*----------------------------------------------------
 padding adjust
----------------------------------------------------*/
.pd-l{padding:120px 0 70px;}
.pd-m{padding:90px 0 70px;}
.pd-s{padding:60px 0 60px;}

.pt-l{padding-top:90px;}
.pt-m{padding-top:60px;}
.pt-s{padding-top:30px;}

.pb-l{padding-bottom:90px;}
.pb-m{padding-bottom:60px;}
.pb-s{padding-bottom:30px;}

@media screen and (max-width:768px) {
  .pd-l{padding:60px 0 35px;}
  .pd-m{padding:45px 0 35px;}
  .pd-s{padding:30px 0 30px;}

  .pt-l{padding-top:45px;}
  .pt-m{padding-top:30px;}
  .pt-s{padding-top:15px;}

  .pb-l{padding-bottom:45px;}
  .pb-m{padding-bottom:30px;}
  .pb-s{padding-bottom:15px;}
}

/* text-align */
.alnR {text-align: right !important;}
.alnL { text-align: left !important; }
.alnC { text-align: center !important; }


/*----------------------------------------------------
 clearfix
----------------------------------------------------*/
.clearfix:after {
  content:".";
  display:block;
  height:0.1px;
  visibility:hidden;
  clear:both;
  font-size:0.1em;
  line-height:0;
  }
.clearfix { min-height:1px; }
* html .clearfix  { height:1px; };

