@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Belleza&family=M+PLUS+Rounded+1c&family=Noto+Sans&family=Noto+Serif&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
	color: #444444;
	text-align: left;
	line-height: 1.8em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	clear: both;
	overflow-x: hidden;
	/*
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
	*/
}
.wrapper {
	overflow: hidden;
}
a {text-decoration: none; }
a:link { color: var(--blue-color); }
a:visited { color: var(--blue-color); }
a:active { color: var(--blue-color); }
a:hover { color: var(--blue-color); transition: 0.5s ;}
a:hover { 
	opacity: 0.5;
	transition: 0.5s;
}
body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s;
}
body img{
	border-style:none;
	width: 100%;
	display: block;
}
body a img{
	border-style:none; 
}
ul,li{
	list-style-type:none;
	margin:0;
	padding:0;
}
:root {
	--blue-color: #183a63;
	--en-font: "Belleza", serif;;
}
/* SAMPLE
color: var(--blue-color);
font-family: var(--en-font);
*/

/*画像アニメーション*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}
@keyframes zoomOutAnime{
  from {
  transform: scale(1.1);
  opacity: 1;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}
.zoomOutTrigger{
    opacity: 100;
}
.zoomIn img{
  transform: scale(1);
  transition: .2s ease-in-out;
}
.zoomIn a:hover img{
  transform: scale(1.2);
}
.scrollanime {
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		opacity: 0;			
	}
	100% {
	opacity: 1;
	transform: translate(0);
	}
}
.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
.fadeInUp {
	transform: translateY(50px);
}
.fadeInDown {
	transform: translateY(-50px);
}
.fadeInLeft {
	transform: translateX(100px);
}
.fadeInRight {
	transform: translateX(-100px);
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time12 {
  animation-delay: 1.2s;
}

/*==========================================================
HEADER
==========================================================*/
header{
	display: block;
	clear: both;
	width: 100%;
	z-index: 100;
}
.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
}
@media screen and (max-width:1200px){
	.header_pc{
		display: none;
	}
	.header_sp {
		display: flex;
		align-items: center;
		width: 100%;
		height: 70px;
		margin: 0; 
	    padding: 0 20px;
		clear: both;
		background-color: var(--blue-color);
		transition: .5s;
		position: relative;
	}
	h1{
		width: 110px;
		margin-right: calc(100% - 280px);
	}
	.sp_h_contact a{
		width: 110px;
		height: 40px;
		background-color: #5278a0;
		color: #FFFFFF;
		font-size: 14px;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	/* NAVIGATION */
	.menu-trigger {
		display: inline-block;
		width: 36px;
		height: 28px;
		vertical-align: middle;
		cursor: pointer;
		top: 20px;
		right: 20px;
		z-index: 100;
		transform: translateX(0);
		transition: transform .5s;
		position: absolute;
	}
	.menu-trigger.active {
		transform: translateX(0px);
		position: fixed;
		top: 20px;
		right: 20px;
	}
	.menu-trigger span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #FFFFFF;
		transition: all .5s;
	}
	.menu-trigger.active span {
		background-color: var(--blue-color);
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(13px) rotate(-45deg);
	}
	.menu-trigger span:nth-of-type(2) {
		top: 13px;
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		transform: translateY(-13px) rotate(45deg);
	}
	.sp_menu {
		width: 300px;
		height: 100%;
		padding-top: 50px;
		background-color:rgba(255,255,255,0.9);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		transform: translate(350px);
		transition: all .5s;
	}
	.sp_menu.open {
		transform: translateZ(0);
	}
	.sp_menu li {
		text-align: center;
		padding: 10px 0;
		margin: 0 5%;
		border-bottom: 1px var(--blue-color) solid;
		box-sizing: border-box;
	}
	.sp_menu li.logo a{
		display: block;
		width: 134px;
		margin: 0 auto;
	}
	.sp_menu li.sns{
		display: flex;
		justify-content: center;
		border-bottom: none;
	}
	.sp_menu li.sns a{
		display: block;
		width: 35px;
		margin: 0 5px;
	}
	.sp_menu li a{
		font-size: 14px;
		color: var(--blue-color);
		font-weight: bold;
		line-height: 1.2em;
	}
	.sp_menu li a span{
		font-size: 12px;
		display: block;
	}
	.menuSub{
		border-top: 1px var(--blue-color) solid;
		margin-top: 10px;
		padding: 20px 0 5px 10px;
		display: flex;
		flex-wrap: wrap;
	}
	.menuSub li{
		border-bottom: none;
		padding: 0;
		margin: 0;
	}
	.menuSub li:nth-child(1),
	.menuSub li:nth-child(2),
	.menuSub li:nth-child(3){
		width: 33.333333%;
		margin-bottom: 10px;
		display: flex;
		justify-content: flex-start;
	}
	.menuSub li:nth-child(4),
	.menuSub li:nth-child(5){
		width: auto;
		display: flex;
		justify-content: flex-start;
	}
	.menuSub li:nth-child(5){
		margin-left: 20px;
	}
	.menuSub li a{
		position: relative;
		padding-left: 10px;
		font-weight: normal;
	}
	.menuSub li a::before{
		content: "";
		position: absolute;
		border-bottom: 1px var(--blue-color) solid;
		width: 5px;
		top: 50%;
		left: 0;
	}
}
@media screen and (min-width:1201px){
	.header_sp{
		display: none;
	}
	.header_pc{
		width: 100%;
		height: 70px;
		display: block;
		background-color: var(--blue-color);
		clear: both;
		position: relative;
	}
	.pc_navi_wrap{
		width: 80%;
		height: 70px;
		margin: 0 10%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	h1{
		width: 132px;
	}
	.pc_navi{
		width: 50%;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
	}
	.pc_navi li{
		height: 70px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.pc_navi li a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
		line-height: 1.3em;
	}
	.pc_navi li a span{
		font-size: 10px;
		display: block;
	}
	.pc_navi li:first-child{
		position: relative;
	}
	.menuSub{
  		position: absolute;
  		top:70px;
  		left: 0;
  		display: none;
  		width: 180px;
		background-color:rgba(82,120,160,0.8);
  		z-index: 1;
		padding: 10px 25px 15px 25px;
		box-sizing: border-box;
	}
	.menuSub li{
		display: block;
		padding: 5px 0;
		height: auto;
	}
	.menuSub li a{
		display: block;
		position: relative;
		padding-left: 15px;
	}
	.menuSub li a::before{
		content: "";
		position: absolute;
		border-bottom: 1px #FFFFFF solid;
		width: 5px;
		top: 50%;
		left: 0;
	}
	.pc_navi_sns{
		width: 120px;
		display: flex;
		justify-content: space-between;
		clear: both;
		transition: 0.5s;
	}
	.pc_navi_sns li{
		width: 35px;
	}
	.pc_header_bottom{
		width: 100%;
		display: block;
		background-color: #8F867E;
		clear: both;
		padding-top: 126px;
	}
	.bottom_btn{
		display: none;
	}
	.pc_rightbtn{
		position: absolute;
		top:130px;
		right: 0;
		z-index: 1;
	}
	.pc_rightbtn a{
		width: 60px;
		height: 140px;
		display: flex;
		align-items: center;
		justify-content: center;
		writing-mode: vertical-rl;
		color: #FFFFFF;
		background-color: #5278a0;
		border-radius: 10px 0 0 10px;
		font-size: 15px;
		font-weight: bold;
		box-shadow: 0 0 8px #FFFFFF;
	}
	.pc_rightbtn a img{
		width: 14px;
		margin-top: 5px;
	}
}
/*==========================================================
FOOTER
==========================================================*/
footer{
	width: 100%;
	display: block;
	clear: both;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
.banner_area{
	width: 100%;
	display: block;
	clear: both;
	background-color: #507399;
	padding: 60px 0;
}
@media screen and (max-width:699px){
	.banner_list{
		width: 70%;
		margin: 0 15%;
	}
	.banner_list li{
		margin-top: 20px;
	}
	.banner_list li:first-of-type{
		margin-top: 0;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	.banner_list{
		display: flex;
		justify-content: center;
	}
	.banner_list li{
		max-width: 500px;
		width: 42%;
		margin: 0 1%;
	}
}
@media screen and (min-width:1280px){
	.banner_list{
		display: flex;
		justify-content: center;
	}
	.banner_list li{
		width: 500px;
		margin: 0 20px;
	}
}
.footer_bg{
	width: 100%;
	display: block;
	clear: both;
	background-color: var(--blue-color);
}
.footer_inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	clear: both;
}
.footer_logo{
	width: 186px;
	margin-top: 45px;
}
.footer_nav{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 50px 0 20px 0;
}
.footer_nav li{
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 17px;
}
.footer_nav li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	line-height: 1.3em;
}
.footer_nav li a span{
	font-size: 10px;
	display: block;
}
.copyright{
	width: 100%;
	font-family: "Belleza", serif;
	color: #FFFFFF;
	font-size: 12px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px #FFFFFF solid;
}
@media screen and (max-width:699px){
	.footer_nav{
		flex-wrap: wrap-reverse;
	}
	.footer_nav li:nth-of-type(1){
		order: 4;
	}
	.footer_nav li:nth-of-type(2){
		order: 5;
	}
	.footer_nav li:nth-of-type(3){
		order: 1;
	}
	.footer_nav li:nth-of-type(4){
		order: 2;
	}
	.footer_nav li:nth-of-type(5){
		order: 3;
	}
}
/*==========================================================
COMMON
==========================================================*/
#page-top {
	width:55px;
	height:55px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
}
#page-top a {
  display:block;
  transition: all .3s ease;
}
main,
.contents_wrap{
	display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
.bg_lightblue{
	width: 100%;
	display: block;
	clear: both;
	overflow: hidden;
	background-color: #dde4eb;
}
.conttl{
	text-align: center;
	position: relative;
	margin-top: 185px;
}
.conttl::before{
	content: "";
	height: 80px;
	border: 1px var(--blue-color) solid;
	position: absolute;
	top: -100px;
	left: 50%;
}
.subpage_ttl{
	color: #FFFFFF;
	text-align: center;
	position: relative;
	padding-top: 155px;
}
.subpage_ttl::before{
	content: "";
	height: 80px;
	border: 1px #FFFFFF solid;
	position: absolute;
	top: 50px;
	left: 50%;
}
h2,
h3{
	font-weight: normal;
	line-height: 1.2em;
}
h2#wamsub{
	writing-mode: vertical-rl;
	color: #FFFFFF;
	background-color:rgba(82,120,160,0.5);
	border-left: 5px #5278a0 solid;
	border-right: 5px #5278a0 solid;
	letter-spacing: 20%;
	margin-top: 25px;
}
.conttl_en{
	font-family: var(--en-font);
	margin-top: 10px;
}
.subpage_ttl_en{
	font-family: var(--en-font);
	color: #FFFFFF;
	margin-top: 10px;
}
.btn a,
.btn2 a{
	max-width: 350px;
	width: 80%;
	height: 50px;
	margin: 0 auto;
	color: #FFFFFF;
	font-size: 14px;
	background-color: var(--blue-color);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.btn2 a{
	font-family: var(--en-font);
}
.btn3 a{
	max-width: 350px;
	width: 80%;
	height: 50px;
	color: #FFFFFF;
	font-size: 16px;
	background-color: var(--blue-color);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.btn a::before,
.btn a::after,
.btn2 a::before,
.btn2 a::after,
.btn3 a::before,
.btn3 a::after{
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background-color: #FFFFFF;
}
.btn a::before,
.btn2 a::before,
.btn3 a::before{
	transform: rotate(45deg);
	top: 50%;
	right: 10px;
	translate: 0 -50%;
}
.btn a::after,
.btn2 a::after,
.btn3 a::after{
	transform: rotate(-45deg);
	top: calc(50% + 3px);
	right: 10px;
}
@media screen and (max-width:699px){
	.pc{
		display: none;
	}
	h2,
	h3{
		font-size: 26px;
	}
	h2#wamsub{
		font-size: 40px;
		padding: 60px 30px;
	}
	.btn3.wamsub a{
		margin: 70px auto 0 auto;
	}
	.conttl_en,
	.subpage_ttl_en{
		font-size: 16px;
	}
	.contents1580{
		width: 94%;
		margin: 0 3%;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.contents1200{
		width: 94%;
		margin: 0 3%;
		display: block;
		clear: both;
		overflow: hidden;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	.sp{
		display: none;
	}
	h2,
	h3{
		font-size: 36px;
	}
	h2#wamsub{
		font-size: 50px;
		padding: 60px 35px;
	}
	.conttl_en,
	.subpage_ttl_en{
		font-size: 18px;
	}
	.contents1580{
		width: 94%;
		margin: 0 3%;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.contents1200{
		width: 94%;
		margin: 0 3%;
		display: block;
		clear: both;
		overflow: hidden;
	}
}
@media screen and (min-width:1280px){
	.sp{
		display: none;
	}
	h2,
	h3{
		font-size: 36px;
	}
	h2#wamsub{
		font-size: 60px;
		padding: 90px 40px;
	}
	.conttl_en,
	.subpage_ttl_en{
		font-size: 18px;
	}
	.max_con1580{
		max-width:1620px;
		margin:0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
	}
	.contents1580{
		width: 100%;
		max-width:1620px;
		margin: 0 auto;
		padding: 0 20px;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.contents1200{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}
}
.wam_footer{
	width: 100%;
	display: block;
	clear: both;
	overflow: hidden;
	background-color: #adc0d0;
	padding: 70px 0;
}
.wam_footer_inner,
.wam_footer_inner a{
	color: var(--blue-color);
}
.wam_footer_contact_con{
	display: flex;
	align-items: center;
}
.wam_footer_contact_ttl{
	font-family: var(--en-font);
}
.wam_footer_contact_txt{
	line-height: 1.5em;
	margin-top: 10px;
}
.wam_footer_contact_btn a,
.wam_footer_contact_btn2 a{
	width: 100%;
	display: block;
	font-family: var(--en-font);
	text-align: center;
	border: 1px var(--blue-color) solid;
	border-radius: 50px;
	position: relative;
	margin-top: 10px;
}
.wam_footer_contact_btn a::before,
.wam_footer_contact_btn a::after,
.wam_footer_contact_btn2 a::before,
.wam_footer_contact_btn2 a::after{
	content: "";
	position: absolute;
	width: 7px;
	height: 1px;
	background-color: var(--blue-color);
	right: 10px;
}
.wam_footer_contact_btn a::before,
.wam_footer_contact_btn2 a::before{
	transform: rotate(45deg);
	top: 43%;
	translate: 0 -50%;
}
.wam_footer_contact_btn a::after,
.wam_footer_contact_btn2 a::after{
	transform: rotate(-45deg);
	top: calc(43% + 4px);
}
@media screen and (max-width:935px){
	.wam_footer_logo{
		max-width: 210px;
		width: 50%;
		margin: 0 auto;
	}
	.wam_footer_contact{
		width: 80%;
		margin: 70px 10% 0 10%;
	}
	.wam_footer_contact_con{
		margin-top: 35px;
	}
	.wam_footer_contact_icon{
		max-width: 75px;
		width: 17%;
		margin-right: 5%;
	}
	.wam_footer_contact_infomail{
		width: 100%;
	}
	.wam_footer_contact_infoline{
		width: 55%;
	}
	.wam_footer_contact_ttl{
		font-size: 19px;
	}
	.wam_footer_contact_txt{
		font-size: 13px;
	}
	.wam_footer_contact_btn,
	.wam_footer_contact_btn2{
		width: 100%;
	}
	.wam_footer_contact_btn a,
	.wam_footer_contact_btn2 a{
		font-size: 13px;
	}
	.wam_footer_contact_lineqr{
		max-width: 56px;
		width: 20%;
		margin-left: 5%;
	}
}
@media screen and (min-width:936px) and (max-width:1280px){
	.wam_footer_inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.wam_footer_logo{
		width: 250px;
	}
	.wam_footer_contact{
		width: 50%;
		display: flex;
		justify-content: space-between;
	}
	.wam_footer_contact_l,
	.wam_footer_contact_r{
		width: 47%;
	}
	.wam_footer_contact_con:nth-of-type(2){
		margin-top: 45px;
	}
	.wam_footer_contact_icon{
		width: 50px;
		margin-right: 15px;
	}
	.wam_footer_contact_infomail{
		width: 100%;
	}
	.wam_footer_contact_infoline{
		width: 50%;
	}
	.wam_footer_contact_ttl{
		font-size: 22px;
	}
	.wam_footer_contact_txt{
		font-size: 13px;
	}
	.wam_footer_contact_btn{
		width: 70%;
	}
	.wam_footer_contact_btn2{
		width: 100%;
	}
	.wam_footer_contact_btn a,
	.wam_footer_contact_btn2 a{
		font-size: 14px;
	}
	.wam_footer_contact_lineqr{
		max-width: 56px;
		width: 20%;
		margin-left: 5%;
	}
}
@media screen and (min-width:1281px){
	.wam_footer_inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.wam_footer_logo{
		width: 250px;
	}
	.wam_footer_contact{
		width: 600px;
		display: flex;
		justify-content: space-between;
	}
	.wam_footer_contact_l,
	.wam_footer_contact_r{
		
	}
	.wam_footer_contact_con:nth-of-type(2){
		margin-top: 45px;
	}
	.wam_footer_contact_icon{
		width: 50px;
		margin-right: 15px;
	}
	.wam_footer_contact_ttl{
		font-size: 24px;
	}
	.wam_footer_contact_txt{
		font-size: 14px;
	}
	.wam_footer_contact_btn{
		width: 182px;
	}
	.wam_footer_contact_btn2{
		width: 115px;
	}
	.wam_footer_contact_btn a,
	.wam_footer_contact_btn2 a{
		font-size: 15px;
	}
	.wam_footer_contact_lineqr{
		width: 56px;
		margin-left: 15px;
	}
}

/* ================================================================================
 COVEER
================================================================================ */
.cover{
	width: 100%;
	height: calc(100vh - 70px);
	display: block;
	clear: both;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
.cover#wamtop,
.cover#mental,
.cover#physical,
.cover#mac{
	display: flex;
	justify-content: center;
	align-items: center;
}
.cover#hari{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.cover_wamsub{
	width: 100%;
	display: block;
	clear: both;
	background-color: #adc0d0;
	background-repeat: no-repeat;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@media screen and (max-width:699px){
	.cover#wamtop{
		background-image: url("images/cover_wamtop_sp.jpg");
		background-position: bottom center;
	}
	.cover#mental{
		background-image: url("images/cover_mental_sp.jpg");
		background-position: center center;
	}
	.cover#physical{
		background-image: url("images/cover_physical_sp.jpg");
		background-position: center center;
	}
	.cover#mac{
		background-image: url("images/cover_mac_sp.jpg");
		background-position: center center;
	}
	.cover_wamsub{
		height: 250px;
		background-image: url("images/subpage_cover_bg_sp.png");
		background-position: center center;
		background-size: 105%;
	}
	.cover#hari{
		background-image: url("images/cover_hari_sp.jpg");
		background-position: center center;
	}
}
@media screen and (min-width:700px){
	.cover#wamtop{
		background-image: url("images/cover_wamtop.jpg");
		background-position: center center;
	}
	.cover#mental{
		background-image: url("images/cover_mental.jpg");
		background-position: top center;
	}
	.cover#physical{
		background-image: url("images/cover_physical.jpg");
		background-position: top center;
	}
	.cover#mac{
		background-image: url("images/cover_mac.jpg");
		background-position: top center;
	}
	.cover_wamsub{
		height: 280px;
		background-image: url("images/subpage_cover_bg.png");
		background-position: top center;
	}
	.cover#hari{
		background-image: url("images/cover_hari.jpg");
		background-position: center center;
	}
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 PAGER
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.pagination {
	font-family: var(--en-font);
	font-size: 1.1em;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
	clear: both;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	width: auto;
	margin-right: 0.5em;
	padding: 0.4em 0.9em;
	background-color: #dde4eb;
	color: var(--blue-color);
	text-decoration: none;
	font-size:15px;
}
.pagination a:hover {
	background-color: var(--blue-color);
	color:#FFFFFF;
}
.pagination .current{
	background-color: var(--blue-color);
	color:#FFFFFF;
}
.pagination .pc_page_navi{display: none;}
@media screen and (min-width:700px) {
	.pagination .mb_page_navi{ display: none; }
	.pagination .pc_page_navi{ display: block; }
}



/* ================================================================================
 MARGIN and PADDING
================================================================================ */

.mt0,#mt0 {margin-top: 0px;}
.mt10,#mt10 {margin-top: 10px;}
.mt20,#mt20 {margin-top: 20px;}
.mt30,#mt30 {margin-top: 30px;}
.mt40,#mt40 {margin-top: 40px;}
.mt50,#mt50 {margin-top: 50px;}
.mt60,#mt60 {margin-top: 60px;}
.mt70,#mt70 {margin-top: 70px;}
.mt80,#mt80 {margin-top: 80px;}
.mt90,#mt90 {margin-top: 90px;}
.mt100,#mt100 {margin-top: 100px;}
.mt200,#mt200 {margin-top: 200px;}
.mt300,#mt300 {margin-top: 300px;}

.mb0,#mb0 {margin-bottom: 0px;}
.mb10,#mb10 {margin-bottom: 10px;}
.mb20,#mb20 {margin-bottom: 20px;}
.mb30,#mb30 {margin-bottom: 30px;}
.mb40,#mb40 {margin-bottom: 40px;}
.mb50,#mb50 {margin-bottom: 50px;}
.mb60,#mb60 {margin-bottom: 60px;}
.mb70,#mb70 {margin-bottom: 70px;}
.mb80,#mb80 {margin-bottom: 80px;}
.mb90,#mb90 {margin-bottom: 90px;}
.mb100,#mb100 {margin-bottom: 100px;}

.pt0,#pt0 {padding-top: 0px;}
.pt10,#pt10 {padding-top: 10px;}
.pt20,#pt20 {padding-top: 20px;}
.pt30,#pt30 {padding-top: 30px;}
.pt40,#pt40 {padding-top: 40px;}
.pt50,#pt50 {padding-top: 50px;}
.pt60,#pt60 {padding-top: 60px;}
.pt70,#pt70 {padding-top: 70px;}
.pt80,#pt80 {padding-top: 80px;}
.pt90,#pt90 {padding-top: 90px;}
.pt100,#pt100 {padding-top: 100px;}
.pt130,#pt130 {padding-top: 130px;}

.pb0,#pb0 {padding-bottom: 0px;}
.pb10,#pb10 {padding-bottom: 10px;}
.pb20,#pb20 {padding-bottom: 20px;}
.pb30,#pb30 {padding-bottom: 30px;}
.pb40,#pb40 {padding-bottom: 40px;}
.pb50,#pb50 {padding-bottom: 50px;}
.pb60,#pb60 {padding-bottom: 60px;}
.pb70,#pb70 {padding-bottom: 70px;}
.pb80,#pb80 {padding-bottom: 80px;}
.pb90,#pb90 {padding-bottom: 90px;}
.pb100,#pb100 {padding-bottom: 100px;}










