@charset "UTF-8";
/* CSS Document */
body{
	background-color: #74b1e8;
}
.m-plus{
	font-family: 'M PLUS 1', sans-serif;
}
.inner{
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
.bg-img-yellow{
	background-image: url(../img/common/bg_yellow.jpg);
	background-size: contain;
}
/*header*/
.header-pc{
	display: flex;
	height: 90px;
}
.header-sp{
	display: none;
}



/*headline*/
.headline-h3 {
    font-family: 'M PLUS 1', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    position: relative;
	margin-bottom: 50px;
}
.headline-h3::before{
	content:'';
	background-image: url(../img/common/h3_left.png);
	background-size: cover;
	width: 100px;
	height: 85px;
	margin-right: 1rem;
}
.headline-h3::after{
	content:'';
	background-image: url(../img/common/h3_right.png);
	background-size: cover;
	width: 100px;
	height: 70px;
	margin-left: 1rem;
}
.headline-h3 span{
	display: block;
	background-color: #F6E05E;
	width: 60%;
	height: 20px;
	border-radius: 10px;
	position:absolute;
	z-index: -1;
	bottom: 0;
}
.headline-h3-w {
    font-family: 'M PLUS 1', sans-serif;
    color: #0091d3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    position: relative;
	margin-bottom: 50px;
}
.headline-h3-w::before{
	content:'';
	background-image: url(../img/common/h3_left.png);
	background-size: cover;
	width: 100px;
	height: 85px;
	margin-right: 1rem;
	z-index: 1;
}
.headline-h3-w::after{
	content:'';
	background-image: url(../img/common/h3_right.png);
	background-size: cover;
	width: 100px;
	height: 70px;
	margin-left: 1rem;
	z-index: 1;
}
.headline-h3-w span{
	display: block;
	background-color:  white;
	width: 60%;
	height: 20px;
	border-radius: 10px;
	position:absolute;
	bottom: 0;
}

/*button*/
.btn01 {
    background-color: #F6E05E;
    outline-style: dashed;
    outline-offset: 3px;
	outline-width: 3px;
    outline-color: #F6E05E;
    color: #2D3748;
    padding: 0.5rem 5rem;
    font-size: 26px;
    font-family: 'M PLUS 1', sans-serif;
	position: relative;
}
.btn01:hover::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 10px;
}

.btn01::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 20px;
	transition: all .5s;
}

.btn02 {
    background-color: #63B3ED;
    outline-style: dashed;
    outline-offset: 3px;
	outline-width: 3px;
    outline-color: #63B3ED;
    color: white;
    padding: 0.5rem 5rem;
    font-size: 26px;
    font-family: 'M PLUS 1', sans-serif;
	position: relative;
}
.btn02:hover::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 10px;
}

.btn02::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 20px;
	transition: all .5s;
}

.btn03 {
    background-color: #F6E05E;
    outline-style: dashed;
    outline-offset: 3px;
	outline-width: 3px;
    outline-color: #63B3ED;
    color: #2D3748;
    padding: 0.5rem 5rem;
    font-size: 26px;
    font-family: 'M PLUS 1', sans-serif;
	position: relative;
}
.btn03:hover::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 10px;
}

.btn03::after{
	content: '';
	background-image: url(../img/common/btn_icon.png);
	width: 65px;
	height: 60px;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 20px;
	transition: all .5s;
}

/*footer*/
footer .img-l{
	position: absolute;
	left: -30px;
    width: 30vw;
    top: 50%;
    transform: translateY(-50%);
}
footer .img-r {
    position: absolute;
    right: -30px;
    width: 30vw;
    top: 50%;
    transform: translateY(-50%);
}
.footer-inner{
	width: 80vw;
	margin-left: auto;
	margin-right: auto;
}

/*animation*/
.anim-img01.poyopoyo {
	animation: poyopoyo 3s ease-out infinite;
	animation-delay: 1s;
	opacity: 1;
  }
  @keyframes poyopoyo {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
  }
  .anim-img02.poyopoyo02 {
	animation: poyopoyo02 3s ease-out infinite;
	animation-delay: 4s;
	opacity: 1;
  }
  @keyframes poyopoyo02 {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
  }
  .anim-img03.poyopoyo03 {
	animation: poyopoyo03 4s ease-out infinite;
	animation-delay: 3s;
	opacity: 1;
  }
  @keyframes poyopoyo03 {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
  }
  .anim-img04.poyopoyo04 {
	animation: poyopoyo04 6s ease-out infinite;
	animation-delay: 2s;
	opacity: 1;
  }
  @keyframes poyopoyo04 {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
  }
  .anim-img05.poyopoyo05 {
	animation: poyopoyo05 3s ease-out infinite;
	animation-delay: 1s;
	opacity: 1;
  }
  @keyframes poyopoyo05 {
	0%, 40%, 60%, 80% {
	  transform: scale(1.0);
	}
	50%, 70% {
	  transform: scale(0.95);
	}
  }
  .fuwafuwa01 {
	animation: fuwafuwa01 3s infinite ease-in-out .8s alternate;
	display: inline-block;
	transition: 1.5s ease-in-out;
  }
  @keyframes fuwafuwa01 {
	0% {
	  transform:translate(0, 0) rotate(-7deg);
	}
	50% {
	  transform:translate(0, -7px) rotate(0deg);
	}
	100% {
	  transform:translate(0, 0) rotate(7deg);
	}
  }
  .fuwafuwa02 {
	animation: fuwafuwa02 3s infinite ease-in-out .8s alternate;
	display: inline-block;
	transition: 1.5s ease-in-out;
  }
  @keyframes fuwafuwa02 {
	0% {
	  transform:translate(0, 0) rotate(3deg);
	}
	50% {
	  transform:translate(0, -7px) rotate(0deg);
	}
	100% {
	  transform:translate(0, 0) rotate(-6deg);
	}
  }
  .fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(30px);
	  }
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
	.fadeUpTrigger{
		opacity: 0;
	}
	.delay-time02{
	animation-delay: 0.6s;
	}
	.delay-time04{
	animation-delay: 1.2s;
	}
	.delay-time06{
		animation-delay: 1.6s;
	}
/*top smooth*/
#page-top {
    position: fixed;
    bottom: 70px;
    right: -20px;
    z-index: 30;
}
#page-top a {
    text-decoration: none;
    width: 150px;
    display: block;
	transition: 1s ease;
}
#page-top a:hover {
	transform: translateY(-20px);
}

/* pager */
.column02 .wp-pagenavi {
    text-align: center;
    width: 55%;
    margin: 100px auto 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.column02 .previouspostslink {
    background-color: white;
    padding: 10px 30px;
    border: 1px solid #F6E05E;
    color: #707070;
    font-size: 22px;
}
.column02 .nextpostslink {
    background-color: white;
    padding: 10px 30px;
    border: 1px solid #F6E05E;
    color: #707070;
    font-size: 22px;
}
.colomn02 .smaller {
    color: #fff;
}




@media screen and (max-width:767px){
.inner{
	width: 90%;
	margin-right:auto;
	margin-left: auto;
}
/*headline*/
.headline-h3 {
    font-family: 'M PLUS 1', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
    margin-bottom: 50px;
}
.headline-h3::before {
    content: '';
    background-image: url(../img/common/h3_left.png);
    background-size: cover;
    width: 54px;
    height: 42px;
    margin-right: 1rem;
}
.headline-h3::after {
    content: '';
    background-image: url(../img/common/h3_right.png);
    background-size: cover;
    width: 62px;
    height: 45px;
    margin-left: 1rem;
}
.headline-h3 span {
    display: block;
    background-color: #F6E05E;
    width: 65%;
    height: 14px;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    bottom: -5px;
}
.headline-h3-w{
	font-size: 18px;
}
.headline-h3-w::before {
    width: 54px;
    height: 42px;
}
.headline-h3-w::after {
    width: 62px;
    height: 45px;
}
.headline-h3-w span {
    display: block;
    background-color: #fff;
    width: 65%;
    height: 14px;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    bottom: -5px;
}
/*btn*/
.btn01 {
    background-color: #F6E05E;
    outline-style: dashed;
    outline-offset: 3px;
    outline-width: 3px;
    outline-color: #F6E05E;
    color: #2D3748;
    padding: 0.5rem 1rem;
    font-size: 20px;
    font-family: 'M PLUS 1', sans-serif;
    position: relative;
    width: 80%;
    text-align: center;
}
.btn01::after {
    content: '';
    background-image: url(../img/common/btn_icon.png);
    width: 45px;
    height: 40px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 10px;
    transition: all .5s;
}
.btn02 {
    background-color: #63B3ED;
    outline-style: dashed;
    outline-offset: 3px;
    outline-width: 3px;
    outline-color: #63B3ED;
    color: #2D3748;
    padding: 0.5rem 1rem;
    font-size: 20px;
    font-family: 'M PLUS 1', sans-serif;
    position: relative;
    width: 80%;
    text-align: center;
}
.btn02::after {
    content: '';
    background-image: url(../img/common/btn_icon.png);
    width: 45px;
    height: 40px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 10px;
    transition: all .5s;
}
.btn03 {
    background-color: #F6E05E;
    outline-style: dashed;
    outline-offset: 3px;
    outline-width: 3px;
    outline-color: #63B3ED;
    color: #2D3748;
    padding: 0.5rem 1rem;
    font-size: 20px;
    font-family: 'M PLUS 1', sans-serif;
    position: relative;
    width: 80%;
    text-align: center;
}
.btn03::after {
    content: '';
    background-image: url(../img/common/btn_icon.png);
    width: 45px;
    height: 40px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 10px;
    transition: all .5s;
}



.header-pc{
	display: none;
}
.header-sp {
    display: flex;
    width: 100%;
    background-color: #fff;
    height: 61px;
    align-items: center;
    position: fixed;
    z-index: 85;
    box-shadow: 0px 1px 10px #7a7a7a;
}
/*hamburger menu*/
.menu-btn {
	position: fixed;
	top:  0;
	right: 0;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #ffffff;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #16336B;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #75B2E8;
    transition: all 0.8s;
    margin-top: 62px;
}
.menu-content ul {
	padding: 50px 10px 0;
}
.menu-content ul li {
	list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 70%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    margin: 0 auto 10px;
    font-size: 1.5rem;
}
footer .img-l{
	display: none;
}
footer .img-r {
	display: none;
}
#page-top {
    position: fixed;
    bottom: 70px;
    right: -30px;
    z-index: 30;
}
    
/* pager */
.column02 .wp-pagenavi {
    width: 100%;
    margin: 100px auto 170px auto;
}
.column02 .previouspostslink {
    padding: 10px 20px;
    font-size: 16px;
}
.column02 .nextpostslink {
    padding: 10px 20px;
    font-size: 16px;
}
    
}
