@charset "UTF-8";
/* CSS Document */


/* -------------------------------------------

全体設定

 ---------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	width:100%;
	min-width: 1280px;
	color: #000;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	line-height:1.6;
}
a{
	color: #000;
	text-decoration: none;
	cursor: pointer!important;
	transition: 0.3s;
}
a:hover{
	opacity: 0.6;
}
img{
	width:100%;
	height: auto;
	vertical-align: bottom;
}
@media print, screen and (max-width: 680px) {
	body{
		min-width: 0;
		padding-top: 15vw;
	}
}

/* -------------------------------------------

ヘッダー

 ---------------------------------------------------*/
header{
	position: absolute;
	min-width: 1280px;
	width: 100%;
	height: 120px;
	top: 0;
	background: #fff;
	z-index: 9999;
	box-shadow: -2px 1px 15px -3px #777777;
}
header.fixed{
	position: fixed;
	top: 0;
	left: 0;
}
header .inner{
	position: relative;
	max-width: 1200px;
	margin: 10px auto 0;
}
header .inner .logo a{
	display: flex;
	align-items: center;
}
header .inner .logo img{
	width: 165px;
	margin: 0 15px 0 0;
}
header .inner .logo span{
	font-size: 22px;
	font-weight: 700;
}
header .inner .menu-trigger{
	display: none;
}
.gnav_btn{
	position: absolute;
	display: flex;
	top: 16px;
	right: 0
}
.gnav_btn a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 30px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #17458F;
	margin: 0 0 0 20px;
	transition: 800ms ease all;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	border: 2px solid #17458F;
	box-sizing: border-box;
}
.gnav_btn a:hover {
	background: #fff;
	color: #17458F;
	opacity: 1;
}
.gnav_btn a:last-child{
	background: #019FCB;
	border: 2px solid #019FCB;
}
.gnav_btn a:last-child:hover {
	background: #fff;
	color: #019FCB;
}
.gnav_sns_btn a{
	width: 30px;
	display: block;
}
.gnav{
	width: 100%;
	margin: 10px 0 0;
}
.gnav ul{
	display: flex;
	justify-content: flex-end;
}
.gnav ul li a{
	position: relative;
	font-size: 18px;
	margin: 0 0 0 30px;
}
.gnav ul li a:before {
	background: #17458F;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -3px;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.gnav ul li a:hover{
	opacity: 1;
}
.gnav ul li a:hover:before {
	transform-origin: center top;
	transform: scale(1, 1);
}

@media screen and (max-width: 680px) {
	header{
		position: fixed;
		min-width: 0;
		height: 15vw;
		padding: 0 3.5vw;
	}
	header .inner{
		display: flex;
		align-items: center;
		height: 100%;
		margin: 0;
	}
	header .inner .logo img{
		width: 25vw;
		margin: 0 2vw 0 0;
	}
	header .inner .logo span{
		font-size: 3vw;
	}
	header .inner .menu-trigger{
		display: block;
	}
	header .menu{
		position: fixed;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100vh;
		background: #fff;
		top: 0;
		right: 0;
		z-index: 9998;
		transform: translateX(100%);
		transition: all .5s;
		box-sizing: border-box;
		padding: 25vw 0 0;
	}
	header .menu.open {
		transform: translateZ(0);
	}	
	.gnav_btn{
		width: 100%;
		top: auto;
		bottom: 0;
		order: 2;
	}
	.gnav_btn a{
		width: 50%;
		height: 12.5vw;
		margin: 0;
	}
	.gnav{
		margin: 0 0 12.5vw;
		overflow-y: scroll;
		order: 1;
	}
	.gnav ul{
		display: block;
	}
	.gnav ul li a{
		display: flex;
		justify-content: space-between;
		font-size: 4vw;
		padding: 5vw 8vw;
		margin: 0;
		border-bottom: 1px solid #019fcb;
	}
	.gnav ul li:last-child a{
		border: none;
	}
	.gnav ul li a:before {
		display: none;
	}
	.gnav ul li a:after{
		content: '\f054';
    	font-family: 'Font Awesome 6 Pro';
    	color: #f7a81b;
	}
	.menu-trigger {
		position: fixed;
		width: 25vw;
		height: 25vw;
		top: -7.5vw;
		right: -2.5vw;
		z-index: 9999;
		background: #f7a81b;
		border-radius: 50%;
	}
	.menu-trigger_inner{
		position: absolute;
		width: 14.5vw;
		top: 11vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.menu-trigger span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all .5s;
	}
	.menu-trigger span:nth-of-type(2) {
		margin: 2.5vw 0;
		width: 12.5vw;
	}
	.menu-trigger span:nth-of-type(3) {
		width: 10.5vw;
	}
	.menu-trigger.active span:nth-of-type(1) {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, 50%) rotate(-15deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, 50%) rotate(15deg);
		width: 100%;
	}
	body.open{
		overflow-y: hidden;
	}
}

/* -------------------------------------------

フッター　バナー、SNS

 ---------------------------------------------------*/
.footer_cnts {
	width: 1200px;
	margin: 100px auto 0;
	display: flex;
	justify-content: center;
}
/* FB ----------------------------*/
.fb_tl{
	width: 340px;
	margin-right: 30px;
}
.fb-page,
.fb-page span,
.fb_tl iframe{
  width: 100% !important;
}

/* バナー --------------------------*/
.bnr_area{
	display: flex;
	flex-wrap: wrap;
	max-width: 640px;
	justify-content:space-between;
	align-content:flex-start;
}
.bnr_area a{
	display: block;
	width: 300px;
	margin: 0 10px 20px;
}
.bnr_wide{
	width: 540px;
	margin: 40px auto;
}
@media screen and (max-width: 680px) {
	.footer_cnts {
		margin: 15vw auto 0;
		width:100%;
		flex-direction:column-reverse;
	}
	.fb_tl{
		width: calc(100% - 8vw);
		margin-right: 0;
		margin: 10vw 4vw 0;
	}
	.fb_tl iframe{
		margin: 0 auto;
	}
	.bnr_area{ 
		width: 100%;
		box-sizing: border-box;
		padding: 0 2vw;
	}
	.bnr_area a{
		width: calc(50% - 4vw);
		margin: 0 2vw 4vw;
	}
	.bnr_wide{ 
		width: calc(100% - 8vw);
		margin: 13.5vw 4vw;
	}
}

/* -------------------------------------------

フッター

 ---------------------------------------------------*/
footer{
	margin: 80px 0 0;
	padding: 40px 0 20px;
	background: #F7F7F7;
}
footer .inner{
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
footer .inner .info{
	line-height: 1.7;
}
footer .inner .info .logo{
	display: block;
	width: 166px;
	margin: 0 0 20px;
}
footer .inner .info .txt span{
	display: block;
	font-size: 20px;
	font-weight: 700;
}
footer .inner .info .tit_address{
	font-weight: 700;
	margin: 30px 0 0;
}
footer .inner .menu{
	display: flex;
	justify-content: space-between;
	width: 720px;
	margin: 18px 30px 0 0;
}
footer .inner .menu ul li{
	margin: 0 0 20px;
}
footer .copyright{
	display: block;
	text-align: right;
	max-width: 1200px;
	margin: 20px auto 0;
}
@media screen and (max-width: 680px) {
	footer{
		font-size: 4vw;
		margin: 15vw 0 0;
		padding: 7.5vw 8vw;
	}
	footer .inner{
		display: block;
	}
	footer .inner .info .logo{
		width: 41.5vw;
		margin: 0 0 5vw;
	}
	footer .inner .info .txt span{
		font-size: 5vw;
	}
	footer .inner .info .tit_address{
		margin: 7.5vw 0 0;
	}
	footer .inner .menu{
		display: block;
		width: 100%;
		margin: 10vw 0 0;
	}
	footer .inner .menu ul{
		display: flex;
		flex-wrap: wrap;
	}
	footer .inner .menu ul li{
		width: 50%;
		margin: 0 0 8.75vw;
	}
	footer .inner .menu ul li a{
		display: flex;
		align-items: center;
		line-height: 1.5;
	}
	footer .inner .menu ul li a:before{
		content: '\f054';
    	font-family: 'Font Awesome 6 Pro';
    	color: #f7a81b;
		margin: 0 2.5vw 0 0;
	}
	footer .copyright{
		text-align: center;
		margin: 10vw auto 0;
	}
}


/* -------------------------------------------

共通設定

 ---------------------------------------------------*/
.cnt_sec{
	padding: 50px 0;
	background: #F7F7F7;
}
.cnt_sec_inner{
	max-width: 1200px;
	margin: 30px auto 0;
	padding: 50px 100px;
	box-sizing: border-box;
	background: #fff;
}
.cnt_sec_txt{
	line-height: 1.7;
}
.tit_sec{
	color: #17458F;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}
.tit_sec .en{
	display: block;
	color: #555;
	font-size: 18px;
	margin: 14px 0 0;
}

/* フローティングバナー */
.f_bnr{
	display: block;
	position: fixed;
	top: 400px;
	right: 0;
	z-index: 800;
	padding: 10px;
	color: #fff;
	background-color: rgba(247,168,27,0.9);
	writing-mode: vertical-rl;
}


@media screen and (max-width: 680px) {
	.cnt_sec{
		padding: 15vw 4vw;
	}
	.cnt_sec_inner{
		margin: 8.75vw 0 0;
		padding: 6vw 4vw;
	}
	.cnt_sec_txt{
		font-size: 4vw;
	}
	.tit_sec{
		font-size: 6.5vw;
	}
	.tit_sec .en{
		font-size: 4vw;
		margin: 3vw 0 0;
	}
	/* フローティングバナー */
	.f_bnr{
		left: auto;
		bottom: 0;
		writing-mode:initial;
		text-align: center;
		top: auto;
		width: 100%;
		height: 24px;
	}
	body.top_page{
		padding-bottom: 24px;
	}
}

/* -------------------------------------------

TOPページ

 ---------------------------------------------------*/
.top_page header{
	display: none;
}
.top_page header.fixed{
	display: block;
}
.index_nav{
	position: absolute;
	display: flex;
	align-items: center;
	width: 90%;
	height: 90px;
	background: #fff;
	bottom: -45px;
	right: 0;
}
.index_nav .gnav_btn{
	order: 2; 
	position: static;
}
.index_nav .gnav_btn a{
	width: 120px;
	font-size: 14px;
}
.index_nav .gnav_sns_btn{
	order: 3; 
	position: static;
	margin: 0 0 0 20px;
}
.index_nav .gnav_sns_btn a{
	width: 30px;
	display: block;
}
.index_nav .gnav{
	order: 1;
	width: auto;
	margin: 0 20px 0 5.729vw;
}
.index_nav .gnav ul{
	justify-content: flex-start;
}
.index_nav .gnav ul li a{
	font-size: 18px;
}
.mv{
	position: relative;
	height: 90vh;
}
.mv:before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
.mv .inner{
	position: absolute;
	width: 950px;
	top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #fff;
	animation: fadein 6s ease-out;
}
.mv .inner .theme{
	font-size: 50px;
	font-weight: 700;
	line-height: 1.5;
}
.mv .inner .cap{
	font-size: 25px;
	margin: 15px 0 40px;
}
.mv .logo,
.mv .area{
	position: absolute;	
	color: #fff;
}
.mv .logo{
	display: flex;
	align-items: center;
	top: 15px;
	left: 50px;
}
.mv .logo img{
	width: 184px;
	margin: 0 30px 0 0;
}
.mv .logo span{
	font-size: 30px;
	font-weight: 700;
}
.mv .area{
	font-size: 30px;
	font-weight: 700;
	top: 26px;
	right: 50px;
}
.mv .bg{
	height: 100%;
	overflow: hidden;
}
.mv .bg img{
	height: 100%;
	object-fit: cover;
}
.information{
	padding: 116px 0 60px;
}
.information ul{
	max-width: 1000px;
	margin: 45px auto 30px;
	padding: 30px;
	box-sizing: border-box;
	background: #fff;
}
.information ul li{
	margin: 0 0 25px;
}
.information ul li a{
	display: flex;
	color: #242424;
}
.information ul li a .date:before{
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: #019FCB;
	font-size: 18px;
	margin: 0 15px 0 0;
}
.information ul li:last-child{
	margin: 0;
}
.information ul li a .date{
    width: 165px;
}
.information ul li a .txt {
    width: 775px;
    line-height: 1.5;
}
.information .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 30px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #17458F;
	margin: 0 auto;
	transition: 800ms ease all;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	border: 2px solid #17458F;
	box-sizing: border-box;
}
.information .btn:hover {
	background: #fff;
	color: #17458F;
	opacity: 1;
}

.top_page .overview{
	position: relative;
	color: #242424;
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 0 75px;
}
.top_page .overview .tit{
	font-size: 50px;
	font-weight: 700;
	line-height: 1.4;
}
.top_page .overview .logo{
	width: 256px;
	margin: 25px 0 80px;
}
.top_page .overview .logo span{
	display: block;
	color: #17458F;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	margin: -10px 0 0;
}
.top_page .overview .txt{
	position: relative;
	width: 600px;
	font-size: 18px;
	line-height: 1.7;
	padding: 96px 18px;
	box-sizing: border-box;
	background: #FAFAFA;
	z-index: 0;
}
.top_page .overview .wrap{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 744px;
	top: 160px;
	right: 0;
}
.top_page .overview .wrap .tagline{
	font-size: 20px;
	text-align: center;
	margin: 66px 40px 60px 0;
}
.top_page .overview .wrap .tagline span{
	display: block;
	font-size: 26px;
	font-weight: 700;
	margin: 20px 0 0;
}
.top_page .overview .wrap .tagline span br{
	display: none;
}
.top_page .overview .wrap .btn{
	display: flex;
	margin: 0 20px 0 0;
}
.top_page .overview .wrap .btn li{
	position: relative;
	width: 180px;
	margin: 0 0 0 10px;
	background: #019FCB;
}
.top_page .overview .wrap .btn li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 144px;
	height: 30px;
	color: #fff;
	text-align: center;
	transition: ease .2s;
}
.top_page .overview .wrap .btn li a:after{
	position: absolute;
	width: 36px;
	height: 30px;
	background: #0081A5;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: #fff;
	z-index: 100;
}
.top_page .overview .wrap .btn li a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background:#0081A5;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.top_page .overview .wrap .btn li a:hover{
	opacity: 1;
}
.top_page .overview .wrap .btn li a:hover span{
	z-index: 100;
}
.top_page .overview .wrap .btn li a:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.top_page .overview .wrap .btn li a span{
	z-index: 99;
}
.theme_rotary{
	padding: 60px 0 150px;
    box-sizing: border-box;
}
.theme_rotary h2{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.theme_img {
	width: 450px;
	margin: 40px auto 0;
}
.activities{
	padding: 70px 0 46px;
	background: #359FCB;
}
.activities .tit_sec,
.activities .tit_sec .en{
	color: #fff;
}
.activities ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1230px;
	margin: 50px auto 0;
}
.activities ul li{
	width: 380px;
	margin: 0 15px 70px;
}
.activities ul li a{
	color: #fff;
	text-align: center;
}
.activities ul li .tit{
	font-size: 18px;
	font-weight: 700;
	margin: 20px 0 15px;
}
@media print, screen and (max-width: 1480px) {
	.index_nav .gnav{
		margin: 0 20px 0 0;
	}
}
@media print, screen and (max-width: 1370px) {
	.index_nav .gnav ul li a{
		font-size: 17px;
	}
	.gnav ul li a {
	    margin: 0 0 0 20px;
	}
}
@media print, screen and (max-width: 680px) {
	div.top_page{
		padding-top: 0;
	}
	.top_page header{
		display: block;
	}
	.index_nav{
		display: none;
	}
	.mv{
		height: calc(100vh - 15vw);
	}
	.mv .inner{
		width: calc(100% - 7.5vw);
		margin: 0 3.75vw;
		left: 0;
		transform: translateY(-50%);;
	}
	.mv .inner .theme{
		font-size: 8vw;
	}
	.mv .inner .cap{
		font-size: 4.5vw;
		margin: 5.5vw 0 10vw;
	}
	.mv .logo{
		display: block;
		top: 6vw;
		left: 3.75vw;
	}
	.mv .logo img{
		width: 30vw;
		margin: 0 3vw 0 0;
	}
	.mv .logo span{
		display: block;
		font-size: 5.5vw;
	}
	.mv .area{
		font-size: 4.5vw;
		top: 28vw;
		right: auto;
		left: 3.75vw;
	}
	.information{
		padding: 15vw 0;
	}
	.information ul{
		margin: 8.75vw 0 7.5vw;
		padding: 6vw 4vw;
	}
	.information ul li{
		font-size: 4vw;
		margin: 0 0 6vw;
		line-height: 1.4;
	}
	.information ul li a .date{
		width: 32.5vw;
	}
	.information ul li a .date:before {
	    font-size: 4.5vw;
    	margin: 0 3.5vw 0 0;
	}
	.information ul li a .txt {
    	width: 59.5vw;
	}
	.information .btn{
		width: 50vw;
		height: 12vw;
		font-size: 4vw;
	}
	.top_page .overview{
		padding: 15vw 4vw 17vw;
	}
	.top_page .overview .tit{
		font-size: 9vw;
	}
	.top_page .overview .logo{
		width: 62.5vw;
		margin: 6.25vw 0 12.5vw;
	}
	.top_page .overview .logo span{
		font-size: 4.5vw;
		margin: -2.5vw 0 0;
	}
	.top_page .overview .txt{
		width: 100%;
		font-size: 4vw;
		padding: 7.5vw 4vw;
		margin: 0 0 8.5vw;
	}
	.top_page .overview .wrap{
		position: static;
		display: block;
		width: 100%;
	}
	.top_page .overview .wrap .tagline{
		font-size: 4.5vw;
		margin: 10vw 0;
	}
	.top_page .overview .wrap .tagline span{
		font-size: 6vw;
		margin: 4vw 0 0;
	}
	.top_page .overview .wrap .btn{
		display: block;
		margin: 0;
	}
	.top_page .overview .wrap .btn li{
		width: 100%;
		margin: 0 0 5vw;
	}
	.top_page .overview .wrap .btn li a{
		width: calc(100% - 12vw);
		height: 12vw;
		font-size: 4vw;
	}
	.top_page .overview .wrap .btn li a:after{
		width: 12vw;
		height: 12vw;
	}
	.top_page .overview .wrap .btn li a:before {
		display: none;
	}
	.theme_rotary{
		padding: 0 0 15vw;
	}
	.theme_rotary h2{
		font-size: 6.5vw;
	}
	.theme_img {
		width: 70%;
		margin: 7.5vw auto;
	}
	.activities{
		padding: 10vw 4vw;
	}
	.activities ul{
		margin: 8.75vw 0 7.5vw;
	}
	.activities ul li{
		width: 100%;
		margin: 0 0 12vw;
	}
	.activities ul li:last-child{
		margin: 0;
	}
	.activities ul li .tit{
		font-size: 4.5vw;
		margin: 5vw 0 3.75vw;
	}
	.activities ul li .cap{
		font-size: 4vw;
	}
}

/* -------------------------------------------

下層ページ

 ---------------------------------------------------*/
.page{
	padding-top: 120px;
}
.page_tit_area{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	margin: 0 0 70px;
	background-position: center;
	background-repeat:no-repeat;
/*	background: url("../images/message/bg_page_tit.jpg") no-repeat center;*/
	background-size: cover;
}
.page_tit_area:before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
.page_tit_area .tit{
	position: relative;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
	z-index: 99;
}
.page_tit_area .tit span{
	display: block;
	font-size: 18px;
	font-weight: 700;
}
@media screen and (max-width: 680px) {
	.page{
		padding-top: 15vw;
	}
	.page_tit_area{
		height: 35vw;
		margin: 0 0 15vw;
	}
	.page_tit_area .tit{
		font-size: 6vw;
	}
	.page_tit_area .tit span{
		font-size: 4vw;
	}
}


/* -------------------------------------------

会長挨拶ページ

 ---------------------------------------------------*/
.message_page .page_tit_area{
/*	background: url("images/bg/bg_message.jpg") no-repeat center;*/
    background-size: cover;
}
.message_page .overview{
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 100px;	
}
.message_page .overview .chairman{
	width: 214px;
}
.message_page .overview .chairman .name{
	font-weight: 700;
	line-height: 1.7;
	text-align: center;
	margin: 12px 0 0;
}
.message_page .overview .chairman .name span{
	display: block;
	font-size: 20px;
	font-weight: 700;
}
.message_page .overview .theme{
	max-width: 954px;
}
.message_page .overview .theme .tagline{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 54px 0;
	margin: 0 0 40px;
	background: #EBF9FF;
}
.message_page .overview .theme .tagline span{
	display: block;
	font-size: 30px;
	font-weight: 700;
}
.message_page .overview .theme .tagline:after{
	position: absolute;
	right: 0;
	top: 0;
	content:"";
	border-style: solid;
	border-width: 0 0 178px 100px;
	border-color: transparent transparent #fff transparent;
}
.message_page .overview .theme .comment{
	line-height: 1.7;
}
.message_page .policy ul{
	margin: 30px 0 0;
}
.message_page .policy ul li{
	line-height: 1.7;
	text-indent: -1em;
	margin: 0 0 20px 1em;
}
.message_page .policy ul li:last-child{
	margin: 0 0 0 1em;
}
.message_page .target{
	padding: 90px 0 0;
}
.message_page .target dl{
	max-width: 1000px;
	font-size: 18px;
	line-height: 1.8;
	margin: 40px auto 0;
}
.message_page .target dl dt{
	color: #17458F;
	font-weight: 700;
}
.message_page .target dl dd{
	margin: 0 0 32px;
}
.message_page .target dl dd table th{
	text-align: left;
	padding: 0 40px 0 0;
}
@media print, screen and (max-width: 680px) {
	.message_page .overview{
		display: block;
		margin: 0 auto 15vw;
		padding: 0 4vw;
	}
	.message_page .overview .chairman{
		width: 54vw;
		margin: 0 auto 7.5vw;
	}
	.message_page .overview .chairman .name{
		font-size: 4vw;
		text-align: right;
		margin: 3vw 0 0;
	}
	.message_page .overview .chairman .name span{
		font-size: 5vw;
	}
	.message_page .overview .theme .tagline{
		font-size: 4.5vw;
		padding: 7.5vw 4vw;
		margin: 0 0 8vw;
	}
	.message_page .overview .theme .tagline span{
		font-size: 6.5vw;
		margin: 4.5vw 0 0;
	}
	.message_page .overview .theme .tagline:after{
		display: none;
	}
	.message_page .overview .theme .comment{
		font-size: 4vw;
	}
	.message_page .policy ul{
		margin: 7.5vw 0 0;
	}
	.message_page .policy ul li{
		margin: 0 0 5vw 1em;
	}
	.message_page .policy ul li:last-child{
		margin: 0 0 0 1em;
	}
	.message_page .target{
		padding: 15vw 4vw 0;
	}
	.message_page .target dl{
		font-size: 4vw;
		margin: 8.75vw auto 0;
	}
	.message_page .target dl dd{
		margin: 0 0 8vw;
	}
	.message_page .target dl dd table th{
		padding: 0 7.5vw 0 0;
	}
}

/* -------------------------------------------

クラブ概要ページ

 ---------------------------------------------------*/
.overview_page .overview{
	max-width: 1000px;
	margin: 0 auto 85px;
}
.overview_page .overview dt{
	font-size: 22px;
	font-weight: 700;
	margin: 50px 0 20px;
}
.overview_page .overview dd{
	line-height: 1.7;
}
.overview_page .overview dd table{
	width: 100%;
	border: 1px solid #707070;
	border-collapse: collapse;
	border-spacing: 0;
}
.overview_page .overview dd table th,
.overview_page .overview dd table td{
	padding: 10px 0;
	text-align: center;
	border-left: 1px solid #707070;
	border-bottom: 1px solid #707070;
}
.overview_page .overview dd table tr.tit th{
	width: 370px;
	background: #DEDEDE;
}
.overview_page .overview dd table th.generation{
	width: 260px!important;
}
.overview_page .place dl{
	line-height: 1.7;
}
.overview_page .place dl dt{
	color: #17458F;
	font-size: 18px;
	font-weight: 700;
	margin: 30px 0 0;
}
.overview_page .place dl dt:first-of-type{
	margin: 0;
}
@media screen and (max-width: 680px) {
	.overview_page .overview{
		margin: 0 auto 15vw;
		padding: 0 4vw;
	}
	.overview_page .overview dt{
		font-size: 4.5vw;
		margin: 10vw 0 5vw;
	}
	.overview_page .overview dd{
		font-size: 4vw;
	}
	.overview_page .overview dd table{
		border: 1px solid #ccc;
	}
	.overview_page .overview dd table th,
	.overview_page .overview dd table td{
		padding: 2.5vw 0;
		border-left: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
	.overview_page .overview dd table tr.tit th{
		width: 40%;
	}
	.overview_page .overview dd table th.generation{
		width: 20%!important;
	}
	.overview_page .place dl dt{
		font-size: 4.5vw;
		margin: 7.5vw 0 0;
	}
	.overview_page .place dl dd{
		font-size: 4vw;
	}
}

/* -------------------------------------------

メンバー紹介ページ

 ---------------------------------------------------*/
.members_page .members{
	max-width: 1000px;
	margin: 0 auto;
}
.members_page .members table{
	width: 100%;
	margin: 40px 0 0;
}
.members_page .members table{
	width: 100%;
	border: 1px solid #707070;
	border-collapse: collapse;
	border-spacing: 0;
}
.members_page .members table th,
.members_page .members table td{
	padding: 10px 0;
	line-height: 1.4;
	text-align: center;
	border-left: 1px solid #707070;
	border-bottom: 1px solid #707070;
}
.members_page .members table td a{
	color: #0242EC;
	text-decoration: underline;
}
.members_page .members tr.tit th{
	background: #DEDEDE;
}
.members_page .members th.name{
	width: 270px;
}
.members_page .members th.company{
	width: 470px;
}
.members_page .members th.name{
	width: 260px;
}
.members_page .members table td .members_name{
	display: flex;
	justify-content: center;
}
.members_page .members table td .members_name .sei{
	display: block;
	text-align: left;
	margin-right: 5px;
}
.members_page .members table td .members_name .namae{
	display: block;	
	text-align: left;
}
.membersonly_login {
	max-width: 1000px;
    margin: 50px auto 85px;
}
@media screen and (max-width: 680px) {
	.members_page .members{
		font-size: 4vw;
		padding: 0 4vw;
	}
	.members_page .members table{
		margin: 8.75vw 0 0;
	}
	.members_page .members table{
		border: 1px solid #ccc;
	}
	.members_page .members table th,
	.members_page .members table td{
		padding: 2.5vw 0;
		border-left: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
	.members_page .members table tr.tit th{
		width: calc(100% / 3);
	}
	.membersonly_login {
	    margin: 12.5vw auto 15vw;
    	padding: 0 4vw;
	}
}

/* -------------------------------------------

フォーム

 ---------------------------------------------------*/
.contact_form .cap p{
	line-height: 1.7;
	margin: 0 0 32px;
}
.contact_form .required_txt{
	color: #f00;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 0 20px;
}
.contact_form .required_txt span{
	font-weight: 700;
	margin: 0 6px 0 0;
}
.contact_form dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 32px 0 0;
}
.contact_form dl dt,
.contact_form dl dd{
	display: flex;
	align-items: center;
	height: 70px;
}
.contact_form dl dt:nth-of-type(odd),
.contact_form dl dd:nth-of-type(odd){
	background: #F7F7F7;
}
.contact_form dl dt{
	width: 330px;
	color: #17458F;
	font-weight: 700;
	padding: 0 0 0 20px;
	box-sizing: border-box;
}
.contact_form dl dt .required{
	color: #f00;
	font-size: 12px;
	margin: 0 0 0 4px;
}
.contact_form dl dd{
	width: 670px;
}
.contact_form dl dd input{
	width: 100%;
}
.contact_form .txt input,
.contact_form textarea{
	width: 500px;
	height: 30px;
	font-size: 16px;
	padding: 0 10px;
	border: 1px solid #707070;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
input[type=radio], input[type=checkbox] {
	display: none;
}
.mw_wp_form .horizontal-item + .horizontal-item{
	margin-left: 0!important;
}
.contact_form .mwform-radio-field span{
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 50px 0 0;
	padding: 10px 10px 10px 36px;
	border-radius: 8px;
	cursor: pointer;
}
.contact_form .mwform-radio-field span:hover{
	background: rgba(1,159,203,0.4);
}
.contact_form .mwform-radio-field span:after,
.contact_form .mwform-radio-field span:before{
	content: "";
	position: absolute;
	top: 50%;
	display: block;
	border-radius: 50%;
}
.contact_form .mwform-radio-field span:after{
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	left: 10px;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	border: 1px solid #000;
	box-sizing: border-box;
}
.contact_form .mwform-radio-field span:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	left: 13px;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	background: #000;
	opacity: 0;
}
.contact_form input[type=radio]:checked + span:before {
	opacity: 1;
}
.contact_form .message{
	height: 220px;
}
.contact_form dt.message{
	align-items: flex-start;
	padding: 20px 0 0 20px;
	box-sizing: border-box;
}
.contact_form textarea{
	width: 500px;
	height: 180px;
	padding: 10px;
	resize: none;
}
.contact_form .btn_send input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background: #17458F;
    display: block;
	width: 200px;
    padding: 6px 0;
    margin: 66px auto 0;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
	transition: 800ms ease all;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	border: 2px solid #17458F;
	box-sizing: border-box;
}
.contact_form .btn_send input:hover {
	background: #fff;
	color: #17458F;
	font-weight: 700;
	opacity: 1;
}
.contact_form .info{
	margin: 100px 0 0;
}
.contact_form .info .tit{
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px 0;
}
.contact_form .info .txt{
	line-height: 1.7;
}
@media print, screen and (max-width: 680px) {
	.contact_form .cnt_sec_inner{
		padding: 6vw 0;
	}
	.contact_form .cap{
		font-size: 4vw;
		padding: 0 4vw;
	}
	.contact_form .required_txt{
		font-size: 3vw;
		margin: 7.5vw 0 7.5vw 6vw;
	}
	.contact_form .required_txt span{
		margin: 0 1.5vw 0 0;
	}
	.contact_form dl{
		display: block;
	}
	.contact_form dl dt,
	.contact_form dl dd{
		width: 100%;
		display: block;
		height: auto;
		font-size: 4vw;
		padding: 4vw;
		box-sizing: border-box;
	}
	.contact_form dl dt{
		padding: 6vw 4vw 0; 
	}
	.contact_form dl dd{
		padding: 6vw 4vw; 
	}
	.contact_form dl dt .required{
		font-size: 3vw;
		margin: 0 0 0 1vw;
	}
	.contact_form .txt input,
	.contact_form textarea{
		width: 100%;
		height: 10vw;
		padding: 0 2.5vw;
	}
	.contact_form .mwform-radio-field span{
		display: block;
		margin: 0;
		padding: 2.5vw 2.5vw 2.5vw 9vw;
		border-radius: 2vw;
	}
	.contact_form .mwform-radio-field span:after{
		left: 2.5vw;
		margin-top: -2vw;
		width: 4vw;
		height: 4vw;
	}
	.contact_form .mwform-radio-field span:before {
		left: 3.25vw;
		margin-top: -1.25vw;
		width: 2.5vw;
		height: 2.5vw;
	}
	.contact_form .message{
		height: auto;
	}
	.contact_form dt.message{
		padding: 6vw 4vw 0; 
	}
	.contact_form textarea{
		width: 100%;
		height: 35vw;
		padding: 2.5vw;
	}
	.contact_form .btn_send input {
		width: 50vw;
   		padding: 1.5vw 0;
    	margin: 10vw auto 0;
    	font-size:5vw;
	}
	.contact_form .info{
		margin: 10vw 0 0;
		padding: 0 4vw;
	}
	.contact_form .info .tit{
		font-size: 4.5vw;
		margin: 0 0 4vw 0;
	}
	.contact_form .info .txt{
		font-size: 4vw;
	}
}

/* -------------------------------------------

入会のご案内ページ

 ---------------------------------------------------*/
.join-us_page .pamphlet,
.join-us_cfrm_page .pamphlet,
.join-us_send_page .pamphlet{
	max-width: 1000px;
	margin: 0 auto 70px;
}
.join-us_page .pamphlet .cap,
.join-us_cfrm_page .pamphlet .cap,
.join-us_send_page .pamphlet .cap{
	line-height: 1.7;
	margin: 50px 0;
}
.join-us_page .pamphlet .wrap,
.join-us_cfrm_page .pamphlet .wrap,
.join-us_send_page .pamphlet .wrap{
	display: flex;
	justify-content: center;
}
.join-us_page .pamphlet .wrap a,
.join-us_cfrm_page .pamphlet .wrap a,
.join-us_send_page .pamphlet .wrap a{
	display: block;
	width: 400px;
	margin: 0 20px;
}
@media print, screen and (max-width: 680px) {
	.join-us_page .pamphlet,
	.join-us_cfrm_page .pamphlet,
	.join-us_send_page .pamphlet{
		margin: 0 auto 15vw;
		padding: 0 4vw;
	}
	.join-us_page .pamphlet .cap,
	.join-us_cfrm_page .pamphlet .cap,
	.join-us_send_page .pamphlet .cap{
		font-size: 4vw;
		margin: 7.5vw 0;
	}
	.join-us_page .pamphlet .wrap,
	.join-us_cfrm_page .pamphlet .wrap,
	.join-us_send_page .pamphlet .wrap{
		justify-content: space-between;
	}
	.join-us_page .pamphlet .wrap a,
	.join-us_cfrm_page .pamphlet .wrap a,
	.join-us_send_page .pamphlet .wrap a{
		width: 46%;
		margin: 0;
	}
	.join-us_page .cnt_sec.contact_form,
	.join-us_cfrm_page .cnt_sec.contact_form,
	.join-us_send_page .cnt_sec.contact_form{
		padding: 15vw 0 0;
	}
}

/* -------------------------------------------

お問い合わせページ

 ---------------------------------------------------*/
@media print, screen and (max-width: 680px) {
	.contact_page .contact_form .cnt_sec_inner,
	.contact_cfrm_page .contact_form .cnt_sec_inner,
	.contact_send_page .contact_form .cnt_sec_inner{
		padding: 0;
	}
}

/* -------------------------------------------

奉仕活動ページ

 ---------------------------------------------------*/
.activity_list{
	max-width: 1200px;
	margin: 200px auto;
}
.activity_list .cnt{
	display: flex;
	justify-content: space-between;
	margin: 100px 0 0;
}
.activity_list .cnt .img{
	width: 480px;
}
.activity_list .cnt .detail{
	width: 670px;
	color: #707070;
}
.activity_list .cnt .detail .tit{
	font-size: 24px;
	font-weight: 700;
}
.activity_list .cnt .detail .txt{
	line-height: 1.7;
	margin: 20px 0 40px;
}
.activity_list .cnt .detail a{
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height:30px;
	color:#fff;
	background:#17458F;
	cursor:pointer;
	transition:0.4s ease all;
}
.activity_list .cnt .detail a:hover{
	background:#fff;
	color:#17458F;
	opacity: 1;
}
.activity_list .cnt .detail a:before,
.activity_list .cnt .detail a:after{
	content:"";
	position:absolute;
	height:2px;
	width:0;
	background: #17458F;
	transition:0.4s ease all;
}
.activity_list .cnt .detail a:before{
	top:0;
	right:0;	
}
.activity_list .cnt .detail a:after{
	left:0;
	bottom:0;
}
.activity_list .cnt .detail a:hover:before,
.activity_list .cnt .detail a:hover:after{
	width:100%;
	transition:0.4s ease all;
}
.activity_category{
	max-width: 1000px;
	margin: 0 auto;
}
.activity_category .inner{
	display: flex;
	margin: 50px 0 0;
}
.activity_category .inner .txt{
	width: 50%;
	font-size: 18px;
	line-height: 2.2;
}
.activity_category .inner ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 50%;
}
.activity_category .inner ul li{
	margin: 0 0 20px;
	width: 240px;
}
.activity_category .inner ul li figcaption{
	text-align: center;
	margin: 10px 0 0;
}
@media print, screen and (max-width: 680px) {
	.activity_list{
		margin: 15vw auto 0;
		padding: 0 4vw;
	}
	.activity_list .cnt{
		display: block;
		margin: 12.5vw 0 0;
	}
	.activity_list .cnt .img{
		width: 100%;
	}
	.activity_list .cnt .detail{
		width: 100%;
		margin: 7vw 0 0;
	}
	.activity_list .cnt .detail .tit{
		font-size: 5.5vw;
	}
	.activity_list .cnt .detail .txt{
		font-size: 4vw;
		margin: 5vw 0 7vw;
	}
	.activity_list .cnt .detail a{
		width: 50vw;
		height:10vw;
		font-size: 4vw;
		margin: 0 auto;
	}
	.activity_list .cnt .detail a:before,
	.activity_list .cnt .detail a:after{
		display: none;
	}
	.activity_category{
		padding: 0 4vw;
	}
	.activity_category .inner{
		display: block;
		margin: 8.75vw 0 0;
	}
	.activity_category .inner .txt{
		width: 100%;
		font-size: 4vw;
	}
	.activity_category .inner ul{
		width: 100%;
		margin: 7.5vw 0 0;
	}
	.activity_category .inner ul li{
		width: 48%;
		margin: 0 0 5vw;
	}
	.activity_category .inner ul li figcaption{
		font-size: 3.5vw;
		margin: 2.5vw 0 0;
	}
}

/* -------------------------------------------

年間スケジュールページ

 ---------------------------------------------------*/
.schedule_page .schedule{
	max-width: 1000px;
    margin: 0 auto;
}
.sche_cap{
	line-height: 1.6;
}

.sche_table{
	width: 100%;
	border-collapse: collapse;
    border-spacing: 0;
    margin: 40px 0 0;
}
.sche_table table{
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
}
.sche_table th,
.sche_table td{
	padding: 10px 0;
    line-height: 1.4;
	box-sizing: border-box;
}
.sche_table th{
	background: #DEDEDE;
    border-left: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.sche_table td{
    text-align: center;
    border-left: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.sche_table .date{
	width: 300px;	
}
.sche_table .content{
	width: 350px;
}
.sche_table .event{
	width: 350px;
}
.sche_table .reikai_date{
	width: 100px;
	text-align: right;
}
.sche_table .reikai_num{
	width: 100px;
}

@media print, screen and (max-width: 680px) {
	.schedule_page .schedule{
		font-size: 4vw;
		padding: 0 4vw;
		box-sizing: border-box;
	}
	.sche_table{
		font-size: 4vw;
		padding: 0 4vw;
		overflow-x: auto;
		box-sizing: border-box;
	}
	.sche_table table{
		margin: 8.75vw 0 0;
		width: 1000px;
	}
	.sche_table table th,
	.sche_table table td{
		padding: 2.5vw 0;
	}
}
/* -------------------------------------------

ロータリークラブについてページ

 ---------------------------------------------------*/
.about_rotary{
	max-width: 1200px;
	margin: 0 auto;
}
.about_rotary .tit_theme{
	font-size: 26px;
	font-weight: 700;
	text-align: center;
}
.about_rotary .img_theme{
	max-width: 500px;
	margin: 70px auto 0;
}
.about_rotary .tit{
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 100px 0 40px;
}
.about_rotary .txt{
	line-height: 1.7;
}
.about_rotary p a {
	color: #0242EC;
    text-decoration: underline;
}
@media print, screen and (max-width: 680px) {
	.about_rotary{
		padding: 0 4vw;
	}
	.about_rotary .tit_theme{
		font-size: 6vw;
	}
	.about_rotary .img_theme{
		width: 87.5vw;
		margin: 10vw auto 0;
	}
	.about_rotary .tit{
		font-size: 4.5vw;
		margin: 15vw 0 10vw;
	}
	.about_rotary .txt{
		font-size: 4vw;
	}
}

/* -------------------------------------------

お知らせ・週報

 ---------------------------------------------------*/
.single .page_tit_area,
.information_page .page_tit_area,
.membersonly_page .page_tit_area,
.category .page_tit_area{
    background: url(images/bg/bg_info.jpg) no-repeat center;
    background-size: cover;
}
.single .info_wrap{
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
.single .info_wrap .detail{
	width: 840px;
}
.single .info_wrap .detail .tit{
	color: #17458F;
	font-size: 26px;
	font-weight: 700;
	border-bottom: 1px solid #707070;
	padding: 0 0 18px;
}
.single .info_wrap .detail .info{
	display: flex;
	justify-content: flex-end;
	font-size: 14px;
	margin: 20px 0 0;
}
.single .info_wrap .detail .info .cate,
.single .info_wrap .detail .info .date{
	font-weight: 700;
	margin: 0 0 0 14px;
}
.single .info_wrap .detail .content{
	line-height: 1.8;
	padding: 60px 0;
	border-bottom: 1px solid #707070;
}
.single .info_wrap .detail .content a{
	color: #0242EC;
    text-decoration: underline;
}
.single .info_wrap .detail .pager_nav{
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
}
.single .info_wrap .detail .pager_nav a{
	display: flex;
	align-items: center;
}
.single .info_wrap .detail .pager_nav a i{
	color: #0056AC;
	font-size: 18px;
	margin: 0 15px 0 0;
}
.single .info_wrap .detail .pager_nav .next a i{
	margin: 0 0 0 15px;
}
.single .info_wrap .side{
	width: 280px;
}
.single .info_wrap .side .tit{
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	background: #17458F;
}
.single .info_wrap .side ul li{
	margin: 24px 0 0;
}
.single .info_wrap .side ul li a{
	display: flex;
	color: #242424;
	line-height: 1.4;
}
.single .info_wrap .side ul li a:before,
.info_archive ul li a .date:before{
	content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: #019FCB;
	font-size: 18px;
	margin: 0 15px 0 0;
}
.info_archive ul{
	max-width: 1200px;
	margin: 80px auto 0;
}
.info_archive ul li{
	margin: 0 0 45px;
}
.info_archive ul li a{
	display: flex;
}
.info_archive ul li a .date{
	width: 165px;
}
.info_archive ul li a .txt{
	width: 1035px;
	line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
	.single .info_wrap{
		display: block;
		padding: 0 4vw;
	}
	.single .info_wrap .detail{
		width: 100%;
	}
	.single .info_wrap .detail .tit{
		font-size: 5vw;
		padding: 0 0 4.5vw;
	}
	.single .info_wrap .detail .info{
		font-size: 3.5vw;
		margin: 5vw 0 0;
	}
	.single .info_wrap .detail .info .cate,
	.single .info_wrap .detail .info .date{
		margin: 0 0 0 3.5vw;
	}
	.single .info_wrap .detail .content{
		font-size: 4vw;
		padding: 8vw 0 10vw;
	}
	.single .info_wrap .detail .pager_nav{
		margin: 5vw 0 0;
	}
	.single .info_wrap .detail .pager_nav a{
		font-size: 4vw;
	}
	.single .info_wrap .detail .pager_nav a i{
		font-size: 4.5vw;
		margin: 0 3.5vw 0 0;
	}
	.single .info_wrap .detail .pager_nav .next a i{
		margin: 0 0 0 3.5vw;
	}
	.single .info_wrap .side{
		width: 100%;
		margin: 15vw 0 0;
	}
	.single .info_wrap .side .tit{
		height: 12vw;
		font-size: 4.5vw;
	}
	.single .info_wrap .side ul li{
		margin: 6vw 0 0;
	}
	.single .info_wrap .side ul li a{
		font-size: 4vw;
	}
	.single .info_wrap .side ul li a:before,
	.info_archive ul li a .date:before{
		font-size: 4.5vw;
		margin: 0 3.5vw 0 0;
	}
	.info_archive ul{
		margin: 10vw auto 0;
		padding: 0 4vw;
	}
	.info_archive ul li{
		margin: 0 0 7.5vw;
	}
	.info_archive ul li a .date{
		width: 32.5vw;
	}
	.info_archive ul li a .txt{
		width: 59.5vw;
	}
	
}

/* -------------------------------------------

週報ページ

 ---------------------------------------------------*/
.report_page .download{
	max-width: 1000px;
	margin: 0 auto;
}
.report_page .download ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0 0;
}
.report_page .download ul li{
	width: 180px;
	margin: 0 25px 68px 0;
}
.report_page .download ul li:nth-child(5n){
	margin: 0 0 68px 0;
}
.report_page .download ul li a{
	display: block;
}
.report_page .download ul li .cap{
	font-size: 15px;
	text-align: center;
	margin: 18px 0 0;
}
.weeklyreport .page_tit_area{
    background: url(images/bg/bg_report.jpg) no-repeat center;
    background-size: cover;
}
.weeklyreport .info_wrap .detail .content a{
	display: block;
	width: 300px;
}
@media print, screen and (max-width: 680px) {
	.report_page .download{
		padding: 0 4vw;
	}
	.report_page .download ul{
		display: flex;
		margin: 10vw 0 0;
	}
	.report_page .download ul li{
		width: 46%;
		margin: 0 0 10vw;
	}
	.report_page .download ul li:nth-child(5n){
		margin: 0 0 10vw;
	}
	.report_page .download ul:after {
		display: block;
		content:"";
		width: 46%;
	}
	.report_page .download ul li .cap{
		font-size: 4vw;
		margin: 4vw 0 0;
	}
	.weeklyreport .info_wrap .detail .content a{
		width: 100%;
	}	
}


/* -------------------------------------------

プラグラム

 ---------------------------------------------------*/
.img_program{
	max-width: 800px;
	margin: 0 auto;
}
.img_program img {
	margin: 40px 0 30px;
	border: 1px solid #ccc;
}
.img_program .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 30px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #17458F;
	margin: 0 auto;
	transition: 800ms ease all;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	border: 2px solid #17458F;
	box-sizing: border-box;
}
.img_program .btn:hover {
	background: #fff;
	color: #17458F;
	opacity: 1;
}
@media print, screen and (max-width: 768px) {
	.img_program{
		display: block;
		padding: 0 4vw;
	}
	.img_program img {
		margin: 8.75vw 0 7.5vw;
	}
	.img_program .btn{
		width: 50vw;
		height: 12vw;
		font-size: 4vw;
	}
}
/* -------------------------------------------

ページャー

 ---------------------------------------------------*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 0;
}
.wp-pagenavi a.page,
.wp-pagenavi span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	color: #17458F;
	font-size: 18px;
	font-weight: 500;
	background: #fff;
	border: 1px solid #17458F;
	box-sizing: border-box;
	padding: 0;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
	color: #17458F;
	font-size: 20px;
	margin: 0 30px;
	border: none;
}
.wp-pagenavi span.pages{
	display: none;
}
.wp-pagenavi span.current{
	color: #fff;
	font-weight: 500;
	background: #17458F;
}
@media print, screen and (max-width: 680px) {
	.wp-pagenavi{
		margin: 5vw 0 0;
	}
	.wp-pagenavi a.page,
	.wp-pagenavi span{
		width: 10vw;
		height: 10vw;
		font-size: 4vw;
	}
	.wp-pagenavi a.nextpostslink{
		font-size: 4.5vw;
		margin: 0 5vw;
	}
}



.smp_only{
	display: none;
}
@media print, screen and (max-width: 768px) {
	.smp_only{
		display: block;
	}
	.pc_only{
		display: none;
	}
}