@charset "UTF-8";
/***************　mixin　  ***************/ /***************　index　  ***************/

body{
  width: 100%;
  min-width: 1100px;
}
@media screen and (max-width: 768px) {
  body{min-width: auto;}
}
.haeading2-area{
  text-align: center;
}
.haeading2-area > h2{
  font-size: 32px;
  width: 1100px;
  margin: 0 auto 15px auto;
  background-image: url(../images/h2-dotted.jpg);
}
.haeading2-area > h2 > span{
  color:#217bbe;
}
@media screen and (max-width: 768px) {
  .haeading2-area > h2{
    width: 100%;
    background:none;
  }
}

.haeading2-area > img{
  margin-bottom: 15px;
}
.haeading2-area > p{
  margin-bottom: 20px;
}

.haeading3-area{
  background-color: #004d87;
  color: #fff;
  padding: 15px 0;
  font-weight: bold;
  margin-bottom: 40px;
}
.haeading3-area > h3{
  font-size: 29px;
  text-align: center;
}

main#index{
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  main#index{
    margin-top: 7vh;
  }
}

#top-area{
  background-image: url(../images/main-image.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 1100px 394px;
  animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
@media screen and (max-width: 768px) {
  #top-area{
    background: none;
    /*background-image: url(../images/main-image.jpg);
    background-size: 100% 55vw;*/
  }
  #top-area div > h1 > img{
    width: 100%;
  }
}

#main-view{
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #main-view{
    height: 70vw;
  }
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@keyframes fadeDownAnime{
  from{
  opacity: 0;
  transform: translateY(-100px);
  }

  to{
  opacity: 1;
  transform: translateY(0);
  }
}
@-webkit-keyframes fadeDownAnime{
  from{
  opacity: 0;
  transform: translateY(-100px);
  }

  to{
  opacity: 1;
  transform: translateY(0);
  }
}
@keyframes fadeRightAnime{
  from{
  opacity: 0;
  transform: translateX(100px);
  }

  to{
  opacity: 1;
  transform: translateX(0);
  }
}
@keyframes fadeLeftAnime{
  from{
  opacity: 0;
  transform: translateX(-100px);
  }

  to{
  opacity: 1;
  transform: translateX(0);
  }
}

#main-view > div{
  width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #main-view > div{
    width: 100%;
  }
}

#main-view-text01{
  opacity: 0;
  animation: fadeDownAnime 1.5s ease 0s 1 normal forwards;
}
#main-view-text01-sp{
  opacity: 0;
  animation: fadeDownAnime 1.5s ease 0s 1 normal forwards;
  display: none;
}
@media screen and (max-width: 768px) {
  #main-view-text01{
    display: none;
  }
  #main-view-text01-sp{
    display: block;
  }
}

h1{
  display: inline-block;
  text-align: left;
  margin-top: 150px;
  width: 100%;
}
h1 text{
  font-weight       : bold;
  font-size         : 55px;
  /*stroke            : #e8cb52;*/
  fill              : #217bbe;
  letter-spacing    : 4px;
  text-anchor       : middle;
  dominant-baseline : alphabetic;
}
h1 > svg:nth-of-type(2) text{
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  h1{margin-top: 30px;}
  h1 text{
    font-size: 5vw;
  }
}
h1 > svg > use:nth-of-type(1) {
  stroke-width      : 9px;
  paint-order       : stroke;
  stroke-linejoin   : round ;
}
h1 > svg > use:nth-of-type(2) {
  stroke-width : 0;
}

#main-view > #main-link{
}
#main-view > #main-link > a{
  display: block;
  width: 555px;
  height: 75px;
  background-image: url(../images/main-link.png);
  margin-top: 20px;
  transition: .2s;
  -webkit-transition: .2s;
}
#main-view > #main-link > a:hover{
  background-image: url(../images/main-link-on.png);
}
@media screen and (max-width: 768px) {
  #main-view > #main-link > a{
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}


#search{
  width: 1100px;
  margin: 0 auto 80px;
  animation: fadeIn .5s ease 0s 1 normal;
  -webkit-animation: fadeIn .5s ease 0s 1 normal;
}
#search > .tab > li{
  width: 50%;
  text-align: center;
  background: #dcdcdc;
  border-radius: 0 15px 0 0;
}
#search > .tab > li:first-of-type{
  border-radius: 15px 0 0 0;
}
#search > .tab > li.active{
  background: #00a5cf;
}
@media screen and (max-width: 768px) {
  #search{
    width: 100%;
  }
}

/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li a{
  font-size: 25px;
	display: block;
	background:#dcdcdc;
	/*margin:0 2px;*/
	padding:15px 20px 10px;
  border-radius: 0 15px 0 0;
}
#search > .tab > li:first-of-type a{
  border-radius: 15px 0 0 0;
}
@media screen and (max-width: 768px) {
  .tab li a{
    font-size: 16px;
  }
}

.tab li.active a{
  color: #fff;
	background:#00a5cf;
}

/*エリアの表示非表示と形状*/
.area {
	display: none;
	opacity: 0;
	background: #fff;
	padding:40px 20px;
  border: solid 7px #00a5cf;
  width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .area{
    width: 100%;
  }
}

.area.is-active {
    display: block;
    opacity: 1;
    /*
    animation-name: displayAnime;
    animation-duration: .8s;
    animation-fill-mode: forwards;*/
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.slide-items {
  width: 1000px;
  height: 100%;
  margin: auto;
  margin-bottom: 50px!important;
}
.slide-items{
  text-align: center;
}

.slide-items img {
  width: 235px;
  object-fit: cover;
  margin: auto;
}
.slide-items p{
  width: 235px;
  margin: 5px auto 0;
}
.slide-items li > a > p:first-of-type{
  height: 2rem;
}
.slide-items li > a > p:nth-of-type(2){
  text-align: left;
  /*font-size: 0.9rem;*/
  color: #fff;
  font-weight: bold;
  background-color: #00a5cf;
  padding: 10px;
  border-radius: 8px;
}
.slide-items a:hover p{
  text-decoration: underline;
}
.slide-items li > a:hover > p:nth-of-type(2){
  background-color: #0282a1;
  text-decoration: none;
}

.slick-dots{
  bottom: -35px!important;
}
.slick-dots li{
  margin: 0;
}
.slick-dots li button:before{
  font-size: 9px;
}
.slide-arrow{
  width: 25px!important;
  z-index: 2;
  position: absolute;
  top: 35%;
  cursor: pointer;
}
.next-arrow{ right:-2rem!important; }
.prev-arrow{ left:-2rem!important; }
.slide-patternB > .slide-arrow,
.slide-patternC > .slide-arrow,
.slide-patternD > .slide-arrow{
  top: 22%;
}
@media screen and (max-width: 768px) {
  .slide-items {
    width: 100%;
  }
  .next-arrow{ right:1rem!important; }
.prev-arrow{ left:1rem!important; }
}

#voice-movie,#env-movie{
  margin-bottom: 120px;
}

#env-movie > div:nth-of-type(2){
  width: 420px;
  margin: 60px auto 0;
}
#env-movie > div > a {
  display: block;
  width: 420px;
  padding: 10px 0;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color:#00a5cf;
  border: 2px solid #00a5cf;
  border-radius: 10px;
  -webkit-transition: .4s;
  filter: drop-shadow(2px 2px 0 #00a5cf);
}
#env-movie > div > a:hover{
  filter: none;
  margin: 5px 0 0 2px;
  background-color: #00a5cf;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #env-movie > div:nth-of-type(2){
    width: 100%;
  }
  #env-movie > div > a {
    width: 100%;
  }
}


#top-area01,#top-area02,#top-area03{
  width: 1100px;
  margin: auto;
  padding: 30px;
  background-color: #e0f2ff;
  border-radius: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top-area01,#top-area02,#top-area03{
    width:100%;
  }
  #top-area01 img,#top-area02 img,#top-area03 img{
    width: 100%;
  }
}
#top-area01{
  display: flex;
  flex-wrap: wrap;
}
#top-area01 > div:nth-of-type(2){
  margin-left: 40px;
}
#top-area01 > div:nth-of-type(2) > p:first-of-type{
  padding-bottom: 6px;
  color: #004d87;
  font-weight: bold;
  font-size: 2.3rem;
  text-shadow:0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
  /*background-color: #ffff00;*/
  background: linear-gradient(transparent 0%, transparent 50%, #ffff00 50%, #ffff00 100%);
  font-weight: bold;
  margin-bottom: 20px;
}
#top-area01 > div:nth-of-type(2) > p:nth-of-type(2){
  font-size: 1.4rem;
  line-height: 2.3rem;
  margin-bottom: 20px;
}
#top-area01 > div:nth-of-type(2) > div{
  width: 500px;
  background-color: #217bbe;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
  -webkit-transition: .4s;
}
#top-area01 > div:nth-of-type(2) > div:hover{
  opacity: .8;
}
#top-area01 > div:nth-of-type(2) > div > a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
#top-area01 > div:nth-of-type(2) > div > a::after{
  content: '';
  display: block;
  background-image: url(../images/arrow-w-s.svg);
  width:12px;
  height: 20px;
  position: absolute;
  top :36%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #top-area01 > div:first-of-type{
    margin-bottom: 2rem;
  }
  #top-area01 > div:nth-of-type(2){
    margin: 0;
  }
  #top-area01 > div:nth-of-type(2) > div{
    width: 100%;
    font-size: 1.5rem;
  }
  #top-area01 > div:nth-of-type(2) > p:first-of-type{
    line-height: 2.5rem;
    background: none;
  }
}


#top-area02 > #top-area02-A{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
#top-area02 > #top-area02-A > div > p:first-of-type,#top-area02 > #top-area02-A > div > p:nth-of-type(2){
  padding-bottom: 6px;
  color: #004d87;
  font-weight: bold;
  font-size: 2.3rem;
  text-shadow:0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
  /*background-color: #ffff00;*/
  background: linear-gradient(transparent 0%, transparent 50%, #ffff00 50%, #ffff00 100%);
  font-weight: bold;
  margin-bottom: 10px;
}
#top-area02 > #top-area02-A > div > p:nth-of-type(2){
  width: 57%;
}
#top-area02 > div > p{
  font-size: 1.4rem;
  line-height: 2.3rem;
  margin: 0 0 20px 30px;
}
#top-area02 > #top-area02-B{
  width: 1040px;
}
#top-area02-B > div{
  text-align: center;
  background-image: url(../images/top_bg.jpg);
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 1.5rem;
}
#top-area02-B > div > p{
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#top-area02-B > div > p > span{
  color: #ffff00;
}
#top-area02-B > div > a{
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #0ebde9;
  padding: 15px;
  margin: auto;
  width: 65%;
  -webkit-transition: .4s;
}
#top-area02-B > div > a:hover{
  opacity: 0.8;
}


@media screen and (max-width: 768px) {
  #top-area02 > #top-area02-A > div > p:first-of-type, #top-area02 > #top-area02-A > div > p:nth-of-type(2){
    line-height: 2.5rem;
    background: none;
  }
  #top-area02 > div > a:first-of-type{
    margin-bottom: 2rem;
  }
  #top-area02-B > div > a{
    width: 100%;
  }
  #top-area02 > #top-area02-A > div > p:nth-of-type(2){
    width: 100%;
  }
  #top-area02 > #top-area02-B{
    width: 100%;
  }
  #top-area02 > #top-area02-B > div:last-of-type{
    margin: 2rem 0 0 0 ;
  }
  #top-area02 > #top-area02-B > div > div > a{
    padding: 1.2rem 2rem 1rem 2rem;
  }
  #top-area02 > #top-area02-B > div > div > a::after{
    top :40%;
  }
  #top-area02 > div > p{
    margin: 0 0 20px 0;
  }
}

#top-area03 > div,
#top-area03 > ul{
  display: flex;
  flex-wrap: wrap
}
#top-area03 > div > p{
  padding-bottom: 6px;
  color: #004d87;
  font-weight: bold;
  font-size: 2.3rem;
  text-shadow:0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
  /*background-color: #ffff00;*/
  background: linear-gradient(transparent 0%, transparent 50%, #ffff00 50%, #ffff00 100%);
  font-weight: bold;
  margin-bottom: 30px;
}
#top-area03 > ul > li{
  padding: 0 18px;
  width: 33.3333%;
  border-right: 3px solid #fff;
}
#top-area03 > ul > li:last-of-type{
  border: none;
}
#top-area03 > ul > li > p{
  font-size: 1.4rem;
  line-height: 2rem;
  height: 11rem;
}
#top-area03 > ul > li > div{
  width: 300px;
  background-color: #217bbe;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  border: 2px solid #004d87;
  border-radius: 5px;
  position: relative;
  -webkit-transition: .4s;
  filter: drop-shadow(3px 3px 0 #004d87);
  margin: 0 3px 3px 0;
}
#top-area03 > ul > li > div:hover{ 
  filter: none;
  margin: 3px 0 0 3px;
}
#top-area03 > ul > li > div > a{
  display: block;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 15px;
}
#top-area03 > ul > li > div > a::after{
  content: '';
  display: block;
  background-image: url(../images/arrow-w-m.svg);
  width:21px;
  height: 33px;
  position: absolute;
  top :30%;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #top-area03 > div > p{
    line-height: 2.5rem;
    background: none;
  }
  #top-area03 > ul > li{
    padding: 0;
    width: 100%;
    border: none;
    margin-bottom: 1.4rem;
  }
  #top-area03 > ul > li > p{
    height: auto;
    margin-bottom: .8rem;
  }
  #top-area03 > ul > li > div{
    width: 100%;
  }
}