@charset"utf-8";
/* "*"
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
/* "html"
-------------------------------------------------- */
html{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}
/* "body"
-------------------------------------------------- */
body {
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: -0.01rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.6rem;
  color: #000;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}
/* "p"tag
-------------------------------------------------- */
p{
  font-size: 1.6rem;
  margin-bottom: 0;
}
p.p-txt{
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  p{
    font-size: 1.5rem;
  }
  p.p-txt{
    line-height: 1.8;
  }
}
/* "a"tag
-------------------------------------------------- */
a{
  color: #000;
  text-decoration: none;
}
/* "li/ol/ul" Tag
-------------------------------------------------- */
ol li{
  font-size: 1.6rem;
  line-height: 1.6;
  margin-left: 2.0rem;
}
ul li{
  font-size: 1.6rem;
  list-style-type: none;
  line-height: 1.6;
}
@media print, screen and (max-width: 767px) {
  ol li,
  ul li{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
/* "dt dd" Tag
-------------------------------------------------- */
dl dt,
dl dd{
  font-size: 1.6rem;
  line-height: 1.6;
}

@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
/* decoration
-------------------------------------------------- */
.bold{
  font-weight: bold;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}
/* color
-------------------------------------------------- */
.white {
  color: #FFFFFF;
}
.red {
  color: #DE4830;
}
.blue {
  color: #156CA3;
}
.orange {
  color: #E9872E;
}
.green {
  color: #26AE90;
}
.brown {
  color: #AD8141;
}
/* margin
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
/* forPC,forSP
-------------------------------------------------- */
.forPC{
  display: inline;
}
.forSP{
  display: none;
}
@media screen and (max-width: 767px) {
  .forPC{
    display: none;
  }
  .forSP{
    display: inline;
  }
}
/* wrapper
-------------------------------------------------- */
#wrapper{
  width: 100%;
}

/* inner
-------------------------------------------------- */
div.inner{
  max-width: 1200px;
  margin: 0 auto;
}
div.ditail_inner{
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .inner{
    width: 95%;
    margin: 0 auto;
  }
}
/* content
-------------------------------------------------- */
div.content{
  width: 97%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  div.content{
    width: 95%;
  } 
}

/* img
-------------------------------------------------- */
img{
  width: 100%;
  height: auto;
}

/* "h" tag
-------------------------------------------------- */
h2.h2-cmn{
  margin-bottom: 5rem;
  font-size: 3.0rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
h2.h2-cmn-ftr {
  font-size: 2.0rem;
  line-height: 1.3;
  font-weight: bold;
}
h3.h3-cmn{
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #05a5bd;
  border-bottom: 1px solid #05a5bd;
}
@media print, screen and (max-width: 767px) {
  h2.h2-cmn{
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  h3.h3-cmn{
    padding-bottom: 0.3rem;
    font-size: 2.0rem;
  }
}

/* header
-------------------------------------------------- */
header.top-head{
  z-index: 50;
  width: 100%;
  height: 10rem;
  top: 0;
  background-color: rgba(255,255,255,1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
}
header div.logo-area{
  margin-left: 2rem;
  width: 28rem;
}
header div.logo-area img{
  width: 100%;
  height: auto;
}
header div.logo-area img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
/* nav */
header div.nav-area nav.nav-wrap a.nav-button{
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  text-align: center;
  line-height: 1.6;
  margin-right: 3.5rem;
  font-size: 1.6rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li:last-child{
  margin-right: 2rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
  color: #05a5bd;
  transition: 0.6s;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child{
  position: relative;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul{
  display: none;
  position: absolute;
  z-index: 9;
  background-color: rgba(255,255,255,1);
  padding: 1.5rem 0 1.5rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul li{
  width: 24.5rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  margin-right: 0;
  text-align: left;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul li:last-child{
  margin-bottom: 0;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav > li.has-child li:hover > a {
  transition: 0.6s;
  color: #05a5bd;
  opacity: 1;
}
header div.nav-area nav.nav-wrap.open{
  display: block;
}
header div.nav-area nav.nav-wrap.close{
  display: none;
  opacity: 1;
  cursor: auto;
}
@media print, screen and (min-width: 1025px) {
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 1024px) {
  /* clicked hamburger button screen */
  header div.nav-area{
    display: block;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items: none;
  }
  header div.nav-area nav.nav-wrap{
    left: 0;
    top: 0;
    display: none;
    z-index: 90;
    background: rgba(255,255,255,1);
    width: 100%;
    height: 100%;
    position: fixed;
  }
  header div.nav-area nav.nav-wrap div.nav-screen{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }  
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
    position: relative;
    margin: 6rem auto 0;
    width: 85%;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
    width: 100%;
    margin-bottom: 1.2rem;
    margin-right: inherit;
    text-align: left;
    display: block;
    height: auto;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #000;
    font-size: 1.6rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child a.fes:hover{
    color: inherit;
    transition: inherit;
    cursor: inherit;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul{
    display: block;
    background: inherit;
    position: inherit;
    padding: 0.5rem 0 0;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul li{
    list-style-type: disc;
    width: inherit;
    padding-left: inherit;
    padding-right: inherit;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul li::before{
    content: "・ ";
    font-weight: bold;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.has-child ul li > a{
    display: inline;
  }
  /* hamburger button */
  header div.nav-area a.nav_button{
    height: 2.2rem;
    position: absolute;
    right: 2.0rem;
    top: 3.7rem;
    width: 2.7rem;
    z-index: 101;
    cursor: pointer;
  }
  header div.nav-area span.nav_line{
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  header div.nav-area span.line_center{
    top: 10px;
  }
  header div.nav-area span.line_bottom{
    bottom: 0;
  }
  header div.nav-area span.line_top.active{
    top: 10px;
    transform: rotate(45deg);
  }
  header div.nav-area span.line_center.active{
    transform:scaleX(0);
  }
  header div.nav-area span.line_bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
  }
}
@media print, screen and (max-width: 767px) {
  header.top-head{
    height: 9rem;
  }
  header div.logo-area{
    margin-left: 1.2rem;
    width: 22rem;    
    height: auto;
  }
}

/* button
-------------------------------------------------- */
div.button-area{
  width: 20rem;
  margin: 0 auto;
}
div.button-area.endevent{
  width: 20rem;
  margin: 5rem auto 0;
}
a.button,
input.button{
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  background: #05a5bd;
  border: 1px solid #05a5bd;
  border-radius: 0.5rem;
  display: inline-block;
  width: 20rem;  
  height: 5.4rem;
  line-height: 5.2rem;
  text-align: center;
}
a.button.white,
input.button.white{
  color: #05a5bd;
  background: #fff;
  border: 1px solid #05a5bd;
}
a.button.orange,
input.button.orange{
  color: #fff;
  background: #f15929;
  border: 1px solid #f15929;
}
input[type="submit"] {
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  background: #05a5bd;
  border: 1px solid #05a5bd;
  display: inline-block;
  width: 20rem;  
  height: 5.4rem;
  line-height: 5.2rem;
  text-align: center;
  border-radius: 1rem;
}
a.button:hover,
input.button:hover{
  background: #fff;
  color: #05a5bd;
  transition: .5s;
}
a.button.white:hover,
input.button.white:hover{
  background: #05a5bd;
  color: #fff;  
  border: 1px solid #05a5bd;
}
a.button.orange:hover,
input.button.orange:hover{
  background: #fff;
  color: #f15929;  
  border: 1px solid #f15929;
}
@media print, screen and (max-width: 767px) {
  div.button-area{
    width: 18rem;
  }
  a.button,
  input.button{
    width: 18rem;
    font-size: 1.4rem;
    height: 5.2rem;
    line-height: 5.0rem;
  }
  input[type="submit"] {
    width: 18rem;
    height: 5.2rem;
    line-height: 5.0rem;
  }
}
/* IE対応 */
@media print, screen and (-ms-high-contrast:none) {
  a.button,
  input.button{
    height: 5.5rem;
    line-height: 5.3rem;
  }
  input[type="submit"] {
    height: 5.5rem;
    line-height: 5.3rem;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec div.swiper-container div.swiper-slide{
  width: 100%;
  height: calc(100vh - 10rem);
  position: relative;
  margin-top: 10rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv01{
  background: url(../img/top/mainvisual01.jpg) center bottom / cover no-repeat;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv02{
  background: url(../img/top/mainvisual02.jpg) center bottom / cover no-repeat;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv03{
  background: url(../img/top/mainvisual03.jpg) center top / cover no-repeat;
}
section.mainvisualSec .swiper-slide.swiper-slide-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh - 10rem);
  width: 100%;
  background: rgba(0, 0, 0, 0.25)!important;
}
section.mainvisualSec div.swiper-container div.swiper-slide{
  background-size: cover;
  background-position: center bottom;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area,
section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area{
  position: absolute;
  top: 47%;
  right: 0;
  transform: translateY(-53%);
  z-index: 1;
  width: 55rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area{
  position: absolute;
  top: 46%;
  right: 0;
  transform: translateY(-54%);
  z-index: 1;
  width: 55rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area h2.copy{
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.3;
  font-weight: bold;
  text-shadow: 2px 2px 0 #333;
}
section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area p.sub{
  color: #fff;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 1.6;
  text-shadow: 2px 2px 0 #333;
  margin-top: 2rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area div.button-area{
  margin: 3rem auto 0 0;
  width: 24rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area div.button-area a.button{
  background: rgba(0, 0, 0, 0.35);
  font-size: 1.7rem;
  color: #fff;
  border: 2px solid #fff;
  width: 24rem;
  line-height: 5rem;
}
section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area div.button-area a.button:hover{
  background: #30373F;
  color: #fff;
}
section.mainvisualSec div.swiper-pagination{
  margin-bottom: 1rem;
}
section.mainvisualSec span.swiper-pagination-bullet-active{
  background: #fff!important;
}
section.mainvisualSec span.swiper-pagination-bullet{
  border:4px solid #fff!important;
  background: none;
  width: 10px!important;
  height: 10px!important;
  margin-right: 1.5rem!important;
}
section.mainvisualSec div.swiper-button-prev,
section.mainvisualSec div.swiper-container-rtl div.swiper-button-next{
  top: 51.5%!important;
  left: 1.5rem!important;
  background-image: none;
  width: 4rem;
}
section.mainvisualSec div.swiper-button-next,
section.mainvisualSec div.swiper-container-rtl div.swiper-button-prev{
  top: 51.5%!important;
  right: 1.5rem!important;
  background-image: none;
  width: 4rem;
}
section.mainvisualSec div.swiper-button-prev:hover,
section.mainvisualSec div.swiper-container-rtl div.swiper-button-next:hover,
section.mainvisualSec div.swiper-button-next:hover,
section.mainvisualSec div.swiper-container-rtl .swiper-button-prev:hover{
  opacity: 0.4;
  transition: 0.6s;
}
@media print, screen and (max-width: 960px) {
  section.mainvisualSec div.swiper-container {
    height: inherit;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide{
    height: 0;
    padding-bottom: 90.5%;
  }
  section.mainvisualSec .swiper-slide.swiper-slide-active::after {
    height: 0;
    padding-bottom: 90.5%;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area{
    top: 46%;
    transform: translateY(-51%);
  }
  section.mainvisualSec div.swiper-button-next,
  section.mainvisualSec div.swiper-container-rtl div.swiper-button-prev{
    top: 48%!important;
  }
}
@media print, screen and (max-width: 767px) {
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01{
    background: url(../img/top/mainvisual01_sp.jpg) center bottom / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02{
    background: url(../img/top/mainvisual02_sp.jpg) left center / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03{
    background: url(../img/top/mainvisual03_sp.jpg) center top / cover no-repeat;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide{
    height: 0;
    padding-bottom: 110%;
    margin-top: 9rem;
  }
  section.mainvisualSec .swiper-slide.swiper-slide-active::after {
    height: 0;
    padding-bottom: 110%;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area{
    width: 90%;
    margin: 0 auto;
    top: 44%;
    left: 0;
    right: 0;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area h2.copy,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area h2.copy,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area h2.copy{
    font-size: 3.2rem;
    line-height: 1.2;
    text-align: center;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area p.sub,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area p.sub,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area p.sub{
    font-size: 1.8rem;
    line-height: 1.6;
    margin-top: 2rem;
    text-align: center;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area div.button-area{
    margin: 3rem auto 0;
    width: 22rem;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide div.copy-area div.button-area a.button{
    font-size: 1.6rem;
    width: 22rem;
    line-height: 4.9rem;
  }
  section.mainvisualSec div.swiper-button-prev,
  section.mainvisualSec div.swiper-container-rtl div.swiper-button-next{
    display: none;
  }
  section.mainvisualSec div.swiper-button-next,
  section.mainvisualSec div.swiper-container-rtl .swiper-button-prev{
    display: none;
  }
}
@media print, screen and (max-width: 560px) {
  section.mainvisualSec div.swiper-container div.swiper-slide{
    height: calc(100vh - 9rem);
  }
  section.mainvisualSec .swiper-slide.swiper-slide-active::after {
    height: calc(100vh - 9rem);
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area{
    top: 48%;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area h2.copy,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area h2.copy,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area h2.copy{
    font-size: 7.4vw;
    line-height: 1.2;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv01 div.copy-area p.sub,
  section.mainvisualSec div.swiper-container div.swiper-slide.mv02 div.copy-area p.sub{
    font-size: 4.8vw;
    line-height: 1.6;
    margin-top: 6%;
  }
  section.mainvisualSec div.swiper-container div.swiper-slide.mv03 div.copy-area p.sub{
    font-size: 4.8vw;
    line-height: 1.6;
    margin-top: 4%;
  }
  section.mainvisualSec div.swiper-pagination{
    display: inline;
  }
}

/* aboutTopSec
-------------------------------------------------- */
section.aboutTopSec{
  margin: 10rem 0 0;
}
section.aboutTopSec div.block.b01{
  margin-bottom: 3rem;
}
section.aboutTopSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.aboutTopSec div.wrap div.txt-area{
  width: 50%;
}
section.aboutTopSec div.wrap div.img-area{
  width: 46%;  
}
section.aboutTopSec div.button-area{
  margin: 7rem auto 0;
}
@media print, screen and (max-width: 767px) {
  section.aboutTopSec{
    margin: 7rem 0 0;
  }
  section.aboutTopSec div.block.b01{
    margin-bottom: 3rem;
  }
  section.aboutTopSec div.wrap{
    display: block;
  }
  section.aboutTopSec div.wrap div.txt-area{
    width: 100%;
    margin-top: 3rem;
  }
  section.aboutTopSec div.wrap div.img-area{
    width: 100%;
  }
  section.aboutTopSec div.button-area{
    margin: 5rem auto 0;
  }
}

/* projectTopSec
-------------------------------------------------- */
h3.h3-projectTop{
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2rem;
}
section.projectTopSec{
  margin: 10rem 0 0;
}
section.projectTopSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section.projectTopSec div.wrap div.box{
  width: 31%;
}
section.projectTopSec div.wrap div.box div.img-area img{
  border-radius: 50%;
}
section.projectTopSec div.wrap div.box div.txt-area{
  margin: 5rem 0 0;
}
section.projectTopSec div.wrap div.box div.txt-area p{
  font-size: 1.5rem;
}
section.projectTopSec div.wrap div.box div.button-area{
  width: 18rem;
  margin: 5rem auto 0;
}
section.projectTopSec div.wrap div.box div.button-area a{
  width: 18rem;
}
@media print, screen and (max-width: 767px) {
  h3.h3-projectTop{
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
  }
  section.projectTopSec{
    margin: 7rem 0 0;
  }
  section.projectTopSec div.wrap{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  section.projectTopSec div.wrap div.box{
    width: 48.5%;
  }
  section.projectTopSec div.wrap div.box.b03{
    margin-top: 3rem;
  }
  section.projectTopSec div.wrap div.box div.txt-area{
    margin: 3rem 0 0;
  }
  section.projectTopSec div.wrap div.box div.button-area{
    margin: 3rem auto 0;
  }
}
@media print, screen and (max-width: 560px) {
  section.projectTopSec div.wrap{
    display: block;
  }
  section.projectTopSec div.wrap div.box{
    width: 90%;
    margin: 0 auto;
  }
  section.projectTopSec div.wrap div.box.b02{
    margin-top: 5rem;
  }
  section.projectTopSec div.wrap div.box.b03{
    margin-top: 5rem;
  }
}

/* lectureSec
-------------------------------------------------- */
section.lectureSec{
  margin: 10rem 0 0;
  padding: 7rem 0;
  background: #F0F0F0;
}
section.lectureSec div.content div.lecturelist{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.lectureSec div.content div.lecturelist div.box{
  width: 32%;
  background: #fff;
  -webkit-box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 2.5%;
  position: relative;
}
section.lectureSec div.content div.lecturelist div.box.blank{
  background: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  margin-bottom: 0;
  padding: 0;  
}
section.lectureSec div.content div.lecturelist div.box:hover{
  opacity: 0.5;
  transition: 0.6s;
}
section.lectureSec div.content div.lecturelist div.box a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 100;
}
section.lectureSec div.content div.lecturelist div.box div.img-area{
  width: 100%;
  height: auto;
}
section.lectureSec div.content div.lecturelist div.box div.img-area img{
  width: 100%;
  height: auto;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area{
  padding: 1.5rem 1rem;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag{  
  display: inline-block;
  margin-bottom: 1.5rem;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag a{
  position: relative;
  width: inherit;
  padding: 0.6rem 0.8rem 0.7rem;
  display: inline-block;
  text-align: center;
  pointer-events: none;
  font-size: 1.3rem;
  color: #fff;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag.now{
  background: #FBBBB9;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag.finish{
  background: #08233E;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag.end{
  background: #B5B5B5;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag.before{
  background: #B81F0D;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date{
  display: inline-block;
  margin: 0 1.5rem 0 1rem;
  font-weight: bold;
  width: 4rem;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.month{
  line-height: 1.4;
  text-align: center;
  font-size: 1.3rem;
  display: block;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.day{
  line-height: 1.4;
  text-align: center;
  font-size: 2.0rem;
  display: block;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title{
  padding-left: 1.5rem;
  border-left: 1px solid #333;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dt.week{
  line-height: 1.4;
  font-size: 1.4rem;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dd.name{
  line-height: 1.4;
  color: #888;
  font-size: 1.4rem;
  margin: 0.3rem 0 0.4rem;
}
section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dd.title{
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.5rem;
}
section.lectureSec div.content div.button-area{
  margin-top: 3rem;
}
@media print, screen and (max-width: 767px) {
  section.lectureSec{
    margin: 7rem auto 0;
    padding: 5rem 0;
  }
  section.lectureSec div.content div.lecturelist div.box{
    width: 48.5%;
    margin-bottom: 3%;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag a{
    padding: 0.4rem 0.6rem 0.5rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date{
    width: 5rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.month{
    font-size: 1.2rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.day{
    font-size: 2.1rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title{
    padding-left: 1.5rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dt.week{
    font-size: 1.4rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dd.name{
    font-size: 1.4rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dd.title{
    font-size: 1.5rem;
  }
  section.lectureSec div.content div.button-area{
    margin-top: 4rem;
  }
}
@media print, screen and (max-width: 560px) {
  section.lectureSec div.content div.lecturelist{
    display: block;
  }
  section.lectureSec div.content div.lecturelist div.box{
    width: 100%;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area{
    padding: 1rem 0.7rem 1.2rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.wrap{
    display: inherit;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.tag{
/*    padding: 0.5rem 0.7rem 0.6rem;*/
    margin-bottom: 0.8rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date{
    display: inline-block;
    margin: 0 1.5rem 0 0;
    font-size: 1.5rem;
    width: inherit;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dl{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.month{
    line-height: 1.4;
    text-align: left;
    font-size: 1.4rem;
    display: inline-block;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.day{
    line-height: 1.4;
    text-align: left;
    font-size: 1.4rem;
    display: inline-block;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_date dt span.day::after{
    content: "日";
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title{
    padding-left: 0;
    border-left: inherit;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dt.week{
    line-height: 1.4;
    font-weight: normal;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  section.lectureSec div.content div.lecturelist div.box div.txt-area div.lecture_title dd.title{
    line-height: 1.3;
    font-weight: normal;
    font-size: 1.4rem;
  }
}
/* IE対応 */
@media print, screen and (-ms-high-contrast:none) {
  section.lectureSec div.content div.lecturelist a.a_box div.box dl dt.tag{
    padding: 0.6rem 0.5rem 0.1rem;
  }
  section.lectureSec div.content div.lecturelist a.a_box div.box dl dd.title{
    margin: 1.5rem 0 0;
    height: 5rem;
    line-height: 1.8;
  }
}

/* newsSec
-------------------------------------------------- */
section.newsSec{
  margin: 10rem auto 0;
}
section.newsSec div.content input[type="radio"]{
  display:none;
}
section.newsSec div.content div.categoryTab{
  font-size :0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  margin-bottom: 3rem;
}
section.newsSec div.content div.categoryTab label{
  width: 11rem;
  text-align: center;
  line-height: 2.8;
  display: inline-block;
  cursor: pointer;
  transition: ease 0.4s opacity;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 1rem;
  text-shadow: inherit;
}
section.newsSec div.content div.categoryTab label.tab1_label{
  border: 1px solid #05a5bd;
  background: #05a5bd;
}
section.newsSec div.content div.categoryTab label.tab2_label{
  border: 1px solid #05a5bd;
  background: #05a5bd;
}
section.newsSec div.content div.categoryTab label.tab3_label{
  border: 1px solid #05a5bd;
  background: #05a5bd;
}
section.newsSec div.content div.categoryTab label.tab4_label{
  border: 1px solid #05a5bd;
  background: #05a5bd;
}
section.newsSec div.content div.categoryTab label:last-child{
  margin-right: 0;
}
section.newsSec div.content div.categoryTab label:hover{
  color: #fff;
  opacity: 0.4;
  transition: 0.5s;
}
section.newsSec div.content div.panel_area{
  background:#fff;
}
section.newsSec div.content div.panel_area div.tab_panel{
  width:100%;
  display:none;
}
section.newsSec #tab1:checked ~ .categoryTab .tab1_label,
section.newsSec #tab2:checked ~ .categoryTab .tab2_label,
section.newsSec #tab3:checked ~ .categoryTab .tab3_label,
section.newsSec #tab4:checked ~ .categoryTab .tab4_label {
  border: 1px solid #05a5bd;
  background-color: #fff;
  color: #05a5bd;
}
section.newsSec #tab1:checked ~ .panel_area #panel1,
section.newsSec #tab2:checked ~ .panel_area #panel2,
section.newsSec #tab3:checked ~ .panel_area #panel3,
section.newsSec #tab4:checked ~ .panel_area #panel4 {
  display:block;
}


section.newsSec div.content div.newslist{
  margin-bottom: 5rem;  
}
section.newsSec div.content div.newslist div.box{
  margin-bottom: 3.0rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted #888;
}
section.newsSec div.content div.newslist div.box:last-child{
  margin-bottom: 0;
}
section.newsSec div.content div.newslist div.box dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.newsSec div.content div.newslist div.box dl dt.date{
  font-size: 1.4rem;
  color: #000;
  line-height: 1.4;
  margin-right: 1rem;
}
section.newsSec div.content div.newslist div.box dl dd.tag a{
  position: relative;
  width: inherit;
  display: inline-block;
  text-align: center;
  pointer-events: none;
  font-size: 1.3rem;
  padding: 0 0.6rem 0.3rem;
  line-height: 1.6;
  color: #fff;
}
section.newsSec div.content div.newslist div.box dl dd.tag.news{
  background: #f5cc3d;
}
section.newsSec div.content div.newslist div.box dl dd.tag.report{
  background: #faacaa;
}
section.newsSec div.content div.newslist div.box dl dd.tag.media{
  background: #6B96F6;
}
section.newsSec div.content div.newslist div.box p.title{
  padding-top: 1rem;
  line-height: 1.6;
}
section.newsSec div.content div.newslist div.box p a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
section.newsSec div.content div.button-area{
  width: 20rem;
  margin: 5rem 0 0 auto;  
}
@media print, screen and (max-width: 767px) {
  section.newsSec{
    margin: 7rem auto 0;
  }
  section.newsSec div.content{
    position: relative;
  }
  section.newsSec div.content div.categoryTab{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  section.newsSec div.content div.categoryTab label {
    font-size: 1.4rem;
    width: 32%;
    margin-right: 0;
    margin-bottom: 1.0rem;
  }
  section.newsSec div.content div.newslist{
    margin-bottom: 3rem;
  }
  section.newsSec div.content div.newslist div.box dl dd.tag a{
    font-size: 1.2rem;
  }
  section.newsSec div.content div.button-area{
    width: 18rem;
    margin: 5rem auto 0 auto;  
  }
}
@media print, screen and (max-width: 560px) {
  section.newsSec div.content div.categoryTab label {
    width: 49%;
  }
}

/* footer
-------------------------------------------------- */
/* "h"tag */
h3.h3-cmn-ftr {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;  
  line-height: 1.3;
  font-weight: bold;
}
footer{
  margin: 10rem auto 0;
  background: rgba(175, 175, 175,0.1);
}
footer div.content div.footer-area{  
  padding: 8rem 0 6rem;
  border-bottom: 1px solid #333;
}
footer div.content div.footer-area div.footer-menu ul.footernav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer div.content div.footer-area div.footer-menu ul.footernav li{
  width: 25%;
  text-align: center;
}
footer div.content div.footer-area div.footer-menu ul.footernav li i{
  margin-left: 0.4rem;
}
footer div.content div.footer-area div.footer-menu ul.footernav li a{
  color: #1A1A1A;
  font-weight: bold;
}
footer div.content div.footer-area div.footer-menu ul.footernav li:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.footer-area div.footer-logo{
  width: 21rem;
  height: auto;
  margin: 5rem auto 5rem;
}
footer div.content div.footer-area div.footer-logo div.logo-area{
  width: 13rem;
  margin: 0 auto;
}
footer div.content div.footer-area div.footer-logo div.logo-area img{
  width: 100%;
  height: auto;
}
footer div.content div.footer-area div.footer-logo img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul{
  width: 21rem;
  margin: 2rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li{
  margin-right: 1.2rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.facebook{
  width: 4.3rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.instagram{
  width: 4.0rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.youtube{
  width: 5.0rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.line{
  width: 4.0rem;  
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li:last-child{
  margin-right: 0;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img{
  width: 100%;
  height: auto;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.footer-area div.prof-area{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer div.content div.footer-area  div.prof-area div.button-area{
  margin: 0 0 0 15rem;
}
footer div.content div.footer-area  div.prof-area div.button-area i{
  margin-left: 0.4rem;
}
footer div.content div.copyright-area{
  padding: 2rem 0;
}
footer div.content div.copyright-area div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer div.content div.copyright-area div.list ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer div.content div.copyright-area div.list ul li:first-child{
  margin-right: 2.5rem;
}
footer div.content div.copyright-area div.list ul li a{
  color: #1A1A1A;
  font-weight: bold;
}
footer div.content div.copyright-area div.list ul li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
@media print, screen and (max-width: 960px) {
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 33.33333%;
    line-height: 2.5;
    margin-bottom: inherit;
  }
}
@media print, screen and (max-width: 767px) {
  footer{
    margin: 7rem auto 0;
  }
  footer div.content div.footer-area{  
    padding: 6rem 0;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 50%;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  footer div.content div.footer-area div.footer-logo{
    width: 20rem;
    height: auto;
    margin: 0 auto;
  }
  footer div.content div.footer-area div.footer-logo div.logo-area{
    width: 11rem;
    margin: 0 auto 1.5rem;
  }
  footer div.content div.footer-area div.footer-logo div.sns-area ul{
    width: 20rem;
    margin: 1rem auto 0;
  }
  footer div.content div.footer-area div.prof-area{
    display: block;
  }
  footer div.content div.footer-area div.prof-area div.text-area{
    text-align: center;
  }  
  footer div.content div.footer-area div.prof-area div.text-area p{
    text-align: center;
    margin: 1rem auto 3rem;
    line-height: 1.8;
  }
  footer div.content div.footer-area div.prof-area div.button-area{
    margin: 3rem auto 0;
    width: 18rem;
  }
  footer div.content div.copyright-area{
    text-align: center;    
  }
  footer div.content div.copyright-area div.wrap{
    display: block;
  }
  footer div.content div.copyright-area div.list ul{
    display: block;
    margin-bottom: 1rem;
  }
  footer div.content div.copyright-area div.list ul li{
    text-align: center;
  }
  footer div.content div.copyright-area div.list ul li:first-child{
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}