@charset "UTF-8";
/* CSS Document */
body{
	line-height: 1.4;
	font-size: 13.5px;
	font-family: "Sawarabi Mincho", serif;
}

h2{
	text-align: left;
	font-size: 34px;
	line-height: 1.5;
	margin-bottom: 30px;
}
p{
	font-size: 26px;
	line-height: 1.8;
	text-align: left;
}
.title-h2{
	font-size: 30px;
	color: #000;
	font-weight: bold;	
	border-bottom: 2px solid #ddd;
	width: 5em;
	margin: 0 auto;
	letter-spacing:3px;
	margin-bottom: 40px;
}
.center{
	text-align: center;
	margin: 0 auto;
}
.right{
	text-align: right;
}
.left{
	text-align: left;
}
.inner{
  max-width: 768px;
	width: 100%;
	text-align: center;	
  margin: 0 auto;
}
.flex {
  width: 100%;	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
img{
	width: 100%;
}
/* =======================================
mainvisual
======================================= */
#mainvisual{
	background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%),url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
	background-size: cover;
}
/* =======================================
Sec01
======================================= */
#sec01 p{
	text-align: center;
	padding: 110px 0;
	font-size: 34px;
	background: url(../img/bg-obi.png);
    background-repeat: no-repeat;
    background-position: center;
	background-size: contain;
}

/* =======================================
Sec02
======================================= */
.bg-blue{
	background: linear-gradient(to top, transparent 0%, transparent 90%, #fff 100%),url(../img/bg-sec02.jpg);
    background-repeat: no-repeat;
    background-position: top center;
	background-size: cover;
}
#sec02 .inner{
	background: #013b98;
	padding: 100px 40px;
}
#sec02 h2,#sec02 p{
	color: #fff;
}
#sec02 img{
	margin-top: 50px;
	margin-bottom: 50px;
}
#sec02 img.cheki02,
#sec02 img.cheki03{
	max-width:480px ;
}

/* =======================================
sec03
======================================= */
#sec03 .inner{
	padding: 80px 80px 100px;
	background: url(../img/bg_paper.jpg), #e5d4c2;
    background-repeat: no-repeat;
}
#sec03 h2{
	max-width: 400px;
	width: 80%;
    margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
}
#sec03 figure{
	margin-top: 100px;
	width: 100%;
}

#sec03 .swiper img{
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}

#sec03 .swiper-pagination {
    left: 0;
    width: 100%;
}
#sec03 .swiper-pagination-bullet {
    margin: -10px 5px;
}
#sec03 .swiper .last-page{
	background: url(../img/slider08.jpg);
    background-repeat: no-repeat;
    background-position: center;
	background-size: contain;
	width: 100%!important;
	height: 638.7px;
	padding-top: 40px;
}
#sec03 .swiper .last-page a img{
	max-width: 70px;
}
/* =======================================
ボトムバナー
======================================= */
#bottombanner {
	margin-top: 100px;
}
#bottombanner a{
	display: block;
  }
#bottombanner a img{
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
	#sec03 .swiper-wrapper{
		height: 700px !important;
	}
}
@media screen and (max-width: 767px){

	h2 {
		font-size: 24px;
	}
	p {
		font-size: 18px;
	}
img{
	width: 100%;
}
#sec01 p {
    padding: 30px 0;
    font-size: 24px;
    background-size: cover !important;
}
#sec02 .inner {
    padding: 40px 20px;
}

#sec02 .aori img {
    margin-top: 0px !important;
}
#sec03 .inner {
    padding: 40px 20px 40px;
}
#sec03 figure,
#bottombanner {
    margin-top: 40px;
}
#sec03 .swiper-wrapper{
    height: 550px !important;
}
#sec03 .swiper .last-page {
    background-position: center top;
    padding-top: 40px;
	height: 127vw !important;
}
#bottombanner {
    padding: 11px 0;
}
#bottombanner a img {
	width: 90%!important;
}}


/* =======================================
文字アニメーション
======================================= */
.text-animation {
	opacity: 0;
  }
	.text-animation.show {
	  opacity: 1;
	}
	  
	  .text-animation.show .text-animation-span {
		display: inline-block;
		overflow: hidden;
  
	  }
	  .text-animation.show span {
		display: inline-block;
		letter-spacing: 0.1em;
		animation: showText .3s backwards;
	  }

  
  @keyframes showText {
	0% {
	  opacity: 0;
	  transform: translateY(100%);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }