@charset "UTF-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

html  {
  font-family: "Noto Sans Japanese","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", serif;
  font-size: 62.5%;
  margin:0;
  padding:0;
  line-height:1;
  background: #fff;
  color: #333;
  letter-spacing: .2rem;
}
body {
  margin: 0;
  font-size: 1.4rem;
}
/*ボックスサイズ*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* === style base === */
p{
  line-height: 1.5;
  margin:0;
  padding:0;
}
img{
  line-height: 1;
  font-size: 0;
  margin:0;
  padding:0;
}
ul,ol,li{
  list-style-type: none;
  margin:0;
  padding: 0;
}
a{
  text-decoration: none;
  color:#3c3c3c;
  transition: .5s;
}
@media screen and (min-width: 769px) {
  a:hover{
    opacity: .8;
  }
}


/* === extra === */
.inner{
  max-width: 980px;
  margin:auto;
}
.left{
  float: left;
}
.right{
  float: right;
}
.sp{
  display: none;
}
.pc{
  display: block;
}
.object-fit-img {
  object-fit: cover;
  object-position: bottom;
  font-family: 'object-fit: cover;'
}


/* === clearfix === */
.clearfix:after{
  content:" ";
  clear:both;
  display:block;
}


/* ============ btn ============ */
/* 白抜きボタン */
.btn a{
  width: 220px;
  background-color: #fff;
  padding: 2rem 4rem;
  display: block;
  margin: auto;
  position: relative;
}
.btn a:before{
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content:"";
  right: 1.5rem;
  top: 50%;
  margin-top: -7px;
  position: absolute;
  display: block;
}
.btn.btn_vision a:before{
  background-color: #f2c200;
}
.btn.btn_sub a:before{
  background-color: #63c829;
}
.btn a:after{
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content:"";
  position: absolute;
  display: block;
  right: calc(1.5rem + 5px);
  top: 50%;
  margin-top: -3px;
}
/* 各色のボタン */
.btn_g button,
.btn_g a{
  width: 250px;
  padding: 2rem 4rem;
  display: block;
  margin: auto;
  position: relative;
  color: #fff;
  border: none;
}
.btn_g.btn_contact button,
.btn_g.btn_contact a{
  background-color: #f27800;
}
.btn_g.btn_subsideies button,
.btn_g.btn_subsideies a{
  background-color: #63c829;
}
.btn_g.btn_apply button,
.btn_g.btn_apply a{
  background-color: #333;
}
.btn_g button:before,
.btn_g a:before{
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content:"";
  right: 1.5rem;
  top: 50%;
  margin-top: -7px;
  position: absolute;
  display: block;
  background-color: #fff;
}
.btn_g button:after,
.btn_g a:after{
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content:"";
  position: absolute;
  display: block;
  right: calc(1.5rem + 5px);
  top: 50%;
  margin-top: -3px;
}
.btn_g.btn_contact button:after,
.btn_g.btn_contact a:after{
  border-top: 2px solid #f27800;
  border-right: 2px solid #f27800;
}
.btn_g.btn_subsideies button:after,
.btn_g.btn_subsideies a:after{
  border-top: 2px solid #63c829;
  border-right: 2px solid #63c829;
}
.btn_g.btn_apply button:after,
.btn_g.btn_apply a:after{
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

/* 黒ボーターボタン */
.btn_n a{
  width: 220px;
  border: 1px solid #000;
  display: block;
  padding: 2rem 4rem;
  margin: auto;
  position: relative;
}
.btn_n a:before{
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #000;
  content:"";
  right: 1.5rem;
  top: 50%;
  margin-top: -7px;
  position: absolute;
  display: block;
}
.btn_n a:after{
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content:"";
  position: absolute;
  display: block;
  right: calc(1.5rem + 5px);
  top: 50%;
  margin-top: -3px;
}




/* ============ header ============ */
header{
  height: 80px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  top: 0;
}
header .logo{
  margin: 20px 0 0px 30px;
}
.gnav {
  width: 50%;
}
.nav_btn{
  display: none;
}
.overray{
  display: none;
}
.gnav ul{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.gnav ul li{
  width: 20%;
}
.gnav ul li a{
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  height: 80px;
  line-height: 2;
  padding: 1.4rem 0 0;
  letter-spacing: .2rem;
}
.gnav ul li a span{
  display: none;
}
.gnav ul li a img{
  height: 23px;
}
.gnav ul li.nav01 a{
  background-color: #56c1e6;
}
.gnav ul li.nav02 a{
  background-color: #f2c200;
}
.gnav ul li.nav03 a{
  background-color: #63c829;
}
.gnav ul li.nav04 a{
  background-color: #dd392a;
}
.gnav ul li.nav05 a{
  background-color: #f27800;
}
.gnav ul li.nav01 a img{
  height: 20px;
}
.gnav ul li.nav05 a img{
  height: 15px;
}


/* ============ footer ============ */
/*#content + footer{
  margin: -140px 0 0;
}*/
footer{
  padding: 6rem 0;
  background-color: #fff;
}
footer .logo{
  text-align: center;
}
.fnav{
  margin: 3rem 0;
}
.fnav ul{
  display: flex;
  justify-content: space-between;
  width: 700px;
  margin: auto;
}
.fnav ul li{
  position: relative;
}
.fnav ul li:after{
  border-left: 1px solid #000;
  content:"";
  position: absolute;
  right: -3rem;
  top: 0;
  width: 1px;
  height: 100%;
}
.fnav ul li:last-child:after{
  display: none;
}
.copyright{
  font-size: 1.2rem;
  text-align: center;
}


/* ======================== input ======================== */
:placeholder-shown {
  color: #ccc;
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  background-color: #fff;
  border: 1px solid #ccc;
  padding: .6rem 1rem;
}


/* ======================== content ======================== */

#content{
  margin: 80px 0 0;
  position: relative;
}
.award .mainttl{
  background-color: #dd392a;
}
.contact .mainttl{
  background-color: #f27800;
}
.vision .mainttl{
  background-color: #f2c200;
}
.subsidies .mainttl{
  background-color: #63c829;
}
.mainttl{
  padding: 6rem 0 200px;
}
.mainttl h1{
  text-align: center;
  color: #fff;
}
.mainttl h1 img{
  width: 40px;
}
.mainttl h1 .ttl{
  font-size: 4.4rem;
  font-weight: normal;
  display: block;
  margin: 4rem 0 2rem;
  letter-spacing: .4rem;
}
.mainttl h1 .sub{
  display: block;
  font-weight: normal;
}
.mainttl p.lead{
  text-align: center;
  margin: 4rem 0;
  color: #fff;
}
.side_link{
  background-color: #63c829;
  position: fixed;
  top: 300px;
  right: 0;
  z-index: 80;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.side_link a{
  display: block;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}
.side_link a span{
  font-size: 2rem;
}

.content_top + section{
  margin: -120px auto 0;
}
section{
  padding: 6rem 0;
}
section.bg_gr{
  background-color: #eee;
}
section.content_top{
  position: relative;
  top: -140px;
  z-index: 2;
  padding: 0;
}
section .inner.bg_gr{
  background-color: #eee;
  padding: 6rem;
}
section .inner.bg_bb{
  background-color: #fff3c5;
  padding: 4rem;
}
.btn_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.btn_box li .btn_g {
  text-align: center;
  margin-bottom: 10px;
}
.btn_box .apply, .btn_box .apply a {
  font-size: 2.4rem;
  height: 80px;
  line-height: 80px;
}
.btn_box .detail, .btn_box .detail a {
  font-size: 2.0rem;
  line-height: 60px;
  height: 60px;
}
.btn_box li .btn_g a {
  width: 430px;
  padding: 0;
}
.target {
  position: relative;
}
.target h2 {
  margin-bottom: 60px;
}
.apply_box {
  position: absolute;
  top: 0;
  right: 0;
}
.apply_box ul {
  display: flex;
}
.apply_box li + li {
  margin-left: 20px;
}
.apply_box .btn_apply {
  font-size: 1.8rem;
  line-height: 60px;
  height: 60px;
}
.apply_box .btn_apply a {
  padding: 0 0 0 30px;
  width: 180px;
}

section h2{
  font-size: 2.4rem;
  position: relative;
  padding-left: 50px;
}
section h2:before{
  position: absolute;
  width: 40px;
  height: 2px;
  content:"";
  top: 50%;
  left: 0;
}
.award section h2:before{
  border-bottom: 2px solid #dd392a;
}
.vision section h2:before{
  border-bottom: 2px solid #f2c200;
}
.subsidies section h2:before{
  border-bottom: 2px solid #63c829;
}
section h3{
  font-size: 2rem;
}
.subsidies section h3{
  color: #63c829;
}
section h2 + h3{
  margin-top: 6rem;
}
section h4{
  font-size: 1.6rem;
  font-weight: bold;
}
section h3 + h4{
  margin-top: 3rem;
}
section p.lead{
  margin: 4rem 0;
}


/* ============ contact ============ */
.contact table{
  border-collapse: separate;
  border-spacing: 10px;
  width: 100%;
}
.contact table th{
  background-color: #f27800;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: .6rem 2rem;
  width: 35%;
}
.contact table th span.mark{
  background-color: #ffff00;
  color: #f27800;
  font-size: .8em;
  padding: 0 .4em;
  font-weight: normal;
  margin-left: .5rem;
}
.contact table td{
  width: 65%;
}
.contact table input,
.contact table textarea{
  width: 100%;
}
.contact table input[name="name"],
.contact table input[name="kana"],
.contact table input[name="zip"]{
  width: 60%;
}
.btn-comfirm{
  margin: 4rem 0 0;
}

/* ============ award ============ */
.award .flexslider li iframe{
  width: 100%;
  height: 540px;
}
#carousel ul li{
  width: 18%;
}
#carousel ul li img{
  width: 90%;
  height: auto;
}
#thumb{
  width: 90%;
  margin: 4rem auto;
}
.award_link{
  display: flex;
  justify-content: space-between;
}
.award_link li{
  display: table;
}
.award_link a{
  background-image: url(../images/award/btn_award.png);
  width: 300px;
  height: 80px;
  display: table-cell;
  vertical-align: middle;
  background-size: 300px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.8rem;
  padding-left: 100px;
}
.award_img{
  display: flex;
  justify-content: center;
  margin: 4rem 0 0;
}
.award_img li{
  margin: 0 2rem;
}

/* ============ vision ============ */
.message{
  margin: 4rem 0;
}
.message p{
  margin: 2rem 0;
  line-height: 1.8;
}
.message p.name{
  text-align: right;
  font-size: 1.8rem;
}
.vision_link{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem auto 6rem;
}
.vision_link.nm{
  margin: 3rem auto 0;
}
.vision_link li{
  margin: 0 0 4rem;
}
.vision_link a{
  background-image: url(../images/vision/btn_vision.png);
  width: 300px;
  height: 80px;
  display: table-cell;
  vertical-align: middle;
  background-size: 300px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.8rem;
  padding-left: 110px;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .vision_link a{
    width: 250px;
  }
}
.vision_txt_link li{
  position: relative;
  margin: 2.5rem 0;
  font-size: 1.6rem;
  padding-left: 4rem;
  line-height: 1.6;
}
.vision_txt_link li:before{
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f2c200;
  content:"";
  left: 0;
  top: 50%;
  margin-top: -7px;
  position: absolute;
  display: block;
}
.vision_txt_link li:after{
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content:"";
  position: absolute;
  display: block;
  left: 5px;
  top: 50%;
  margin-top: -1px;
}
.vision_txt_link a{
  color: #f2c200;
  text-decoration: underline;
}
.vision table{
  width: 100%;
  margin: 4rem auto;
  line-height: 1.8;
  letter-spacing: 0;
}
.vision table tr{
  border-bottom: 10px solid #eee;
}
.vision table th{
  background-color: #f2c200;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 1rem 2rem;
  width: 35%;
  font-weight: normal;
}
.vision table td{
  width: 65%;
  background-color: #fff;
  padding: 1rem 2rem;
}
.vision .btn_g a{
  width: 300px;
}
.vision .btn_g img{
  height: 1.4rem;
  margin-right: 10px;
}


/* ============ subsidies ============ */
.bg_bb .ttl{
  font-size: 2.4rem;
  margin: 0 0 4rem;
}
.bg_bb .ttl span{
  color: #63c829;
  margin-right: 2rem;
}
.bg_bb .str_ttl{
  background-color: #fff100;
  color: #000;
  padding: .5rem 1rem;
  font-size: 2.4rem;
}.bg_bb .str_ttl span{
  font-size: 1.8vmin;
}
.bg_bb p.lead {
  margin: 2rem 0;
  line-height: 1.8;
}
.bg_bb p.lead strong{
  background-color: #fff100;
  font-weight: bold;
}
.bg_bb .btn_g a{
  width: 300px;
}
.bg_bb .btn_g img{
  height: 1.4rem;
  margin-right: 10px;
}
/* sub_list */
.sub_list{
  display: flex;
  justify-content: space-between;
  counter-reset: number 0; 
}
.sub_listbox{
  width: 23%;
  background-color: #63c829;
  border-radius: 5px;
  padding: 2.5rem 2rem;
  color: #fff;
  position: relative;
}
.sub_listbox .sub_ttl{
  letter-spacing: 0;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  position: relative;
  z-index: 2;
}
.sub_listbox .ttl{
  font-size: 2.8rem;
  letter-spacing: .8rem;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.sub_listbox:after{
  position: absolute;
  content: counter(number) " ";
  counter-increment: number 1;
  color: #81d15b;
  bottom: -15px;
  left: 0;
  font-weight: bold;
  font-size: 270px;
  z-index: 0;
  display: block;
}

/* sec */
.sec {
  background-color: #fff;
  margin: 0 auto 4rem;
}
.sec + h2{
  margin: 10rem 0 4rem;
}
.sec02{
  margin-bottom: 80px!important;
}
.subsidies .sec h3{
  padding: 2rem 4rem;
  color: #fff;
  font-size: 1.8rem;
}
.subsidies .sec01 h3{
  background-color: #63c829;
}
.subsidies .sec02 h3{
  background-color: #29c86c;
}
.sec .container{
  padding: 4rem;
}
.sec h4{
  font-size: 1.8rem;
  margin: 0 0 4rem;
}
.sec_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  counter-reset: number 0; 
}
.sec_list_box{
  width: 49%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem;
  color: #fff;
  position: relative;
}
.sec01 .sec_list_box{
  background-color: #63c829;
}
.sec02 .sec_list_box{
  background-color: #29c86c;
}
.sec_list_box:after{
  position: absolute;
  content: counter(number) " ";
  counter-increment: number 1;
  bottom: -5px;
  right: 0;
  font-weight: bold;
  font-size: 150px;
  z-index: 0;
  display: block;
}
.sec01 .sec_list_box:after{
  color: #81d15b;
}
.sec02 .sec_list_box:after{
  color: #5bd188;
}
.sec_list_box .txt{
  padding: 1.8rem 3rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.sec_list_box.all{
  justify-content: left;
  align-items: center;
  width: 100%;
}
.sec_list_box.all img{
  width: 20%;
  height: auto;
  object-fit: cover;
}
.sec_list_box.all:after{
  display: none;
}
.sec_list_box.all .txt p{
  margin: 0 0 2rem;
}

/* sub_link */
.sub_link{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin: 3rem auto 6rem;
}
.sub_link li{
  display: table;
  margin: 0 4rem 0 0;
}
.sub_link a{
  background-image: url(../images/subsidies/btn_sub.png);
  width: 300px;
  height: 80px;
  display: table-cell;
  vertical-align: middle;
  background-size: 300px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.8rem;
  padding-left: 110px;
  line-height: 1.4;
}

/* qa_list */
.qa_list{
  margin: 4rem 0;
}
.qa_list dt{
  background-color: #63c829;
  color: #fff;
  padding: 2rem 4rem;
  margin: 2rem 0 0;
  line-height: 1.8;
  cursor: pointer;
  position: relative;
}
.qa_list dt:before{
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  content:"";
  right: 1.5rem;
  top: 50%;
  margin-top: -7px;
  position: absolute;
  display: block;
}
.qa_list dt:after{
  width: 6px;
  height: 6px;
  border-top: 2px solid #63c829;
  border-right: 2px solid #63c829;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  content:"";
  position: absolute;
  display: block;
  right: calc(1.5rem + 4px);
  top: 50%;
  margin-top: -3px;
}
.qa_list dt.on:after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}
.qa_list dd{
  padding: 2rem 4rem;
  line-height: 1.8;
  display: none;
}
.qa_list dd:first-letter{
  color: #63c829;
}




/* ======================== index ======================== */
/* ============ mv ============ */
.mv{
  width: 100%;
  margin-top: 80px;
  position: fixed;
}
.index_container{
  position: relative;
  z-index: 3;
}
.mv {
  filter: blur(0px);
}
.slide_top{
  background-color: #56c1e6;
  background-image: url(../images/index/mainimg01.png);
  background-repeat: no-repeat;
  background-position: bottom -100px right -100px;
  background-size: 90%;
  height: 100%;
}
.slide_top h1{
  width: 50%;
  font-size: 4vw;
  letter-spacing: .4rem;
  margin: 6vw 30px 4vw;
}
.slide_top h1 span{
  font-size: 2.4vw;
}
.slide_top p{
  font-size: 1.2vw;
  margin: 0 30px;
  letter-spacing: .4rem;
  line-height: 2;
}
.slide_top p span{
  background-color: #fff;
}
.slide_ud{
  color: #fff;
  height: 100%;
}
.slide_ud .ud_flex{
  display: flex;
}
.slide_ud .txt{
  width: 40%;
  text-align: center;
  position: relative;
}
.slide_ud .txt div{
  position: absolute;
  width: 100%;
  height: 60%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.slide_ud .txt img{
  display: inline;
  width: 40px;
}
.slide_ud .txt .ud_ttl{
  font-size: 6vmin;
  letter-spacing: .6rem;
  margin: 3vmin 0;
}
.slide_ud .txt .ud_ttl span{
  display: block;
  font-size: .3em;
}
.slide_ud .txt .lead{
  line-height: 2;
  letter-spacing: .4rem;
  font-size: 1.4rem;
}
.slide_ud .img{
  width: 60%;
}
.slide_ud .img img{
  width: 100%;
  object-fit: cover;
}
.ud01{
  background-color: #f2c200;
}
.ud02{
  background-color: #63c829;
}
.ud03{
  background-color: #dd392a;
}
.scroll_btn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 69px;
  z-index: 10;
}
.scroll_btn a {
  display: block;
}

/* ============ news ============ */
.news{
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.news h2{
  background-color: #f77cb0;
  color: #fff;
  width: 250px;
  padding: 4vw 30px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
}
.news h2 img{
  margin-right: 2rem;
}
.news ul{
  width: 100%;
  margin: 4vw 0 4vw 30px;
}
.news ul li{
  margin: 0 0 3vw;
}
.news ul li:last-child{
  margin: 0;
}
.news ul li span{
  margin-right: 1rem;
}
.news a{
  color: #f77cb0;
  text-decoration: underline;
}


/* ============ index_content ============ */
.index_content{
  display: flex;
  justify-content: space-between;
}
.index_content > div{
  width: 50%;
}
.index_content .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ic_vision{
  flex-direction: row-reverse;
  background-color: #f2c200;
}
.ic_sub{
  background-color: #63c829;
}
.ic_award{
  background-color: #dd392a;
  padding: 6rem 0 0;
}
.ic_award .aw_list{
  background-color: #eeeeee;
  margin: 200px 0 0;
  position: relative;
  padding: 0 0 6rem;
}
.ic_award .aw_pos{
  margin: 0 auto -90px;
  top: -150px;
  position: relative;
  z-index: 2;
}
.ic_award ul{
  display: flex;
  justify-content: space-between;
}
.ic_award ul li{
  background-color: #fff;
  width: 300px;
  color: #333;
}
.ic_award ul li p{
  padding: 3rem;
  text-align: left;
  line-height: 1.8;
}
.ic_award ul li .ttl{
  color: #dd392a;
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 0;
}
.ic_award ul li p + p{
  margin-bottom: 4rem;
}
.ic .txt{
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
.ic_award .txt{
  display: block;
}
.ic .txt .ic_pos{
  width: 100%;
}
.ic .txt .ic_pos > img,
.ic .txt > img{
  width: 40px;
}
.ic .txt .ud_ttl{
  font-size: 6vmin;
  letter-spacing: .6rem;
  margin: 3vmin 0;
  margin-bottom: 6vmin;
}
.ic .txt .ud_ttl span{
  display: block;
  font-size: .3em;
}
.ic .txt .lead{
  line-height: 2;
  letter-spacing: .4rem;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
