@charset "UTF-8";

body{
	position: relative;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
}

.container-01{
	padding-right: 5%;
	padding-left: 5%;
}
.inner-01{
	padding-top: 80px;
	padding-bottom: 100px;
}
.inner-02{
	padding-top: 120px;
	padding-bottom: 120px;
}
.inner-01 > *:not(:last-child),
.inner-02 > *:not(:last-child){
	margin-bottom: 60px;
}
.inner-margin > *:not(:last-child){
	margin-bottom: 10px;
}
.grid-01{
	display: grid;
	grid-template-columns: repeat(3,1fr);
}
.grid-02{
	display: grid;
	grid-template-columns: repeat(5,1fr);
}
.grid-03{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}
.title-01{
	position: relative;
	padding-top: 130px;
	font-size: 3rem;
	text-align: center;
}
.title-01::after{
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	transform: translateX(50%);
	width: 300px;
	height: 120px;
	background: url(../img/icon_title_01.png) no-repeat center top / auto 120px;
}
.title-02{
	text-align: center;
	font-size: 2.2rem;
}
.img-01{
	margin-left: 20%;
}
.img-02{
	margin-right: 20%;
}
.img-03{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
.img-03 img{
	margin-right: auto;
	margin-left: auto;
}
.btn-layout > *:not(:last-child){
	margin-bottom: 20px;
}
.btn-01 a{
	position: relative;
	display: block;
	width: 100%;
	background: #004ea2;
	padding: .5em 2.2em .5em 1em;
	border-radius: 5px;
	color: #fff;
	transition: .6s;
}
.btn-01 a::after{
	content: '';
	position: absolute;
	bottom: 50%;
	right: 15px;
	transform: translateY(50%) rotate(45deg);
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	border-radius: 3px;
	transition: .6s;
}
.btn-01 a[target='_blank']::after{
	transform: translateY(50%);
}
.btn-01 a::before{
	content: '';
	position: absolute;
	bottom: 50%;
	right: 15px;
	transform: translateY(50%);
	width: 17px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	transition: .6s;
}
.btn-01 a[target='_blank']::before{
	right: 14px;
	transform: translateY(50%) rotate(135deg);
}
.btn-01 a:hover{
	background: #efca24;
	color: #000;
}
.btn-01 a:hover::before{
background: #000;
}
.btn-01 a:hover::after{
border-color: #000;
}

.layout-base{
	position: relative;
	width: 100%;
	height: 100vh;
}
.bg{
	/*
	position: fixed;*/
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	background: rgb(255, 242, 128);
	z-index: -1;
}
.bg-slide {
	width: 100%;
	height: 100px; /* 画像の高さ */
	margin: 20px 0;
	background-image: url(../img/bg_02.png);
	background-repeat: repeat-x;
	background-size: auto 100px; /* 画像の高さ */
	animation: loop 150s linear infinite;
}
.bg-reverse{
	animation-direction: reverse;
}

/*-------------------
HEADER BURGER
--------------------*/
.burger{
  position: relative;
	position: fixed;
	right: 20px;
	top: 20px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  z-index: 9999;
}
.burger p{
  font-size: 14px;
  line-height: 1;
}
.burger-btn{
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  width: 50px;
  height: 39px;

}
.burger-btn::after{
	content: '';
  position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translateX(50%) translateY(50%);
	width: 60px;
	height: 60px;

	background: #004ea2;
	border-radius: 50%;
	z-index: -1;
}
.bar{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .3s;
}    
.bar-top{   
  top: 10px;
}
.bar-mid{    
  top: 50%;
  transform: translate(-50%,-50%);
}
.bar-bottom{
  bottom: 10px;
}
.burger-btn.close .bar-top{
  transform: translate(-50%,10px) rotate(45deg);
  transition: transform .3s;
}    
.burger-btn.close .bar-mid{
  opacity: 0;
  transition: opacity .3s;
}    
.burger-btn.close .bar-bottom{
  transform: translate(-50%,-7px) rotate(-45deg);
  transition: transform .3s;
}
.nav-wrapper{
  position: fixed;
  top: 0;
  right: 0;
  display: none;
	max-width: 300px;
  width: 100%;
  height: 100vh;
  padding: 80px 20px 20px;
	background: #043e7c;
  overflow-y: auto;
  z-index: 999;
}

/*-------------------
HEADER NAV MENU
--------------------*/
.burger-box{
  height: 100%;
  padding: 20px 1em;
  background: #fff;
  overflow-y: auto;
}
.burger-nav >*{
	border-bottom: 3px dotted #efca24;
}
.burger-nav >*:not(:last-child){
	margin-bottom: 1.5em;
}
.burger-nav a{
	display: block;
  padding: 0.5em 0;
	color: #004ea2;
	font-size: 2rem;
}

.header{
	position: relative;
	height: 100%;
}
.header-img-01{
	position: absolute;
	right: 50%;
	bottom: 50%;
	transform: translateX(50%) translateY(50%);
	width: 70%;
	margin: auto;
}
.header-img-01 *{
	margin: auto;
}
.header-img-01 *:not(:last-child){
	margin-bottom: 20px;
}

.main{
	background: rgb(255, 250, 205);
}

.scroll{
	overflow-y: auto;
	width: 100%;
	height: 100%;
}

.footer{
	background: #fff;
}



/*-------------------
SCROLL TOP
--------------------*/
#scroll-top{
	
  position: fixed;
  right:20px;
	bottom: 20px;
  z-index: 99;
}
#scroll-top img{
  width: 80px;
}
/*
.no-scroll{
  overflow: hidden;
}
*/


.copyright{
	padding: .5em;
	background:#043e7c;
	color: #fff;
	font-size: 12px;
	text-align: center;
}



@keyframes loop {
	from {
			background-position: 0 0;
	}
	to {
			background-position: -2000px 0; /* 画像のマイナス幅 */
	}
}







#top{
	background: url(../img/bg_03.png) no-repeat top /100%, url(../img/bg_04.png) no-repeat bottom /100%, #fff;
}
.top-text-01{
	font-size: 2.2rem;
	line-height: 200%;
	text-align: center;
}
#about{
	background:#043e7c;
	color: #fff;
}
.about-text-01{
	font-size: 1.8rem;
	line-height: 200%;
}
.about-text-02{
	margin-bottom: 30px;
	font-size: 3rem;
	line-height: 150%;
	color: #efca24;
}
#dream{
	background: #fff;
}
.dream-box > *:not(:last-child) {
	margin-bottom: 20px;
}
.dream-img-01{
	position: relative;
	padding-right: 80px;
	padding-bottom: 20px;
}
.dream-img-01::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 200px;
	background: url(../img/bg_01_01.png) no-repeat right bottom / 80px auto;
}
.dream-img-01::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 40px;
	height: 20px;
	background: url(../img/bg_01_02.png) no-repeat right bottom / auto 20px;
}
.arrow{
	position: relative;
	height: 50px;
	margin-bottom: 20px;
}
.swiper-wrapper {
  transition-timing-function: linear;
}

#slide-03 .swiper-button-prev{
	right: 10px;
	left: auto;
}
#slide-03 .swiper-button-next{
	left: 10px;
	right: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
	transform: rotate(45deg);
	width: 35px;
	height: 35px;
  margin: auto;
	border-radius: 3px;
	transition: .3s;
}
/* 前への矢印カスタマイズ */
#slide-03 .swiper-button-prev:after {
	border-top: 4px solid #004ea2;
	border-right: 4px solid #004ea2;
}
/* 次への矢印カスタマイズ */
#slide-03 .swiper-button-next:after {
	border-bottom: 4px solid #004ea2;
	border-left: 4px solid #004ea2;
}
#slide-03 .swiper-button-prev:hover::after,
#slide-03 .swiper-button-next:hover::after{
border-color: #e60012;
}
.arrow-pagination .swiper-pagination{
	bottom: 10px;
	left: auto;
	right: 50%;
	transform: translateX(50%);
	width: 80% !important;
}
.arrow-pagination{
	transform: rotate(180deg);
}




@media screen and (max-width:1050px) {

}

@media screen and (min-width:769px) {
	.layout-base{
		/* display: flex; */
		padding-left: 40%;
	}
	.header{
		width: 40%;
		position: fixed;
		left: 0;
	}
	.main{
		/* position: absolute; */
		/* width: 60%; */
		/* height: 100%; */
		/*
		right: 0;*/
		max-width: 700px;
		margin-right: auto;
		margin-left: 0;
	}
	.bg{
		position: fixed;
	}
}
@media screen and (max-width:768px) {
	.bg{
		position: absolute;
	}
}

@media screen and (max-width:550px) {

}