
body {
	font-family: "zen-kaku-gothic-new", sans-serif;
	font-weight: 400;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: 20px;
	line-height: 2.2;
}
:root {
    --blue: #005290;
}
/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	padding: 12vh 0 8vh!important;
	position: relative;
	z-index: 9999;
}
header::before {
	content: "";
	display: block;
	width: 120%;
	height: 190%;
	border-radius: 0 0 100% 100%;
	background: linear-gradient(to bottom, #fff 0%, #fff 50%, #c5d1db 100%);
	position: absolute;
	top: -85%;
	left: 50%;
	transform: translateX(-50%);
}
header p {
	letter-spacing: 0.05em;
	position: relative;
	z-index: 2;
}
/*header .font_60 {
	font-family: "vdl-v7gothic", sans-serif;
	font-weight: 700;
}*/
header .logo {
    position: relative;
    z-index: 2;
}
header .logo img {
    max-width: 460px;
    margin: auto;
}
/* メニュー */
nav.gnav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px;
	border-radius: 10px;
	background: #fff;
	position: relative;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
nav.gnav ul li {
	padding: 0 30px;
	border-right: 1px #000 solid;
}
nav.gnav ul li:first-child {
	border-left: 1px #000 solid;
}
nav.gnav ul li a {
	display: block;
	font-size: 18px;
	font-family: biz-udmincho, sans-serif;
	font-weight: 400;
}
nav.gnav ul li a:hover {
	color: var(--blue);
}
nav.gnav ul.fix {
	padding: 30px 20px;
	border-radius: 0;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	animation: gnav .6s;
}
@keyframes gnav {
	0% {opacity: 0; transform: translateY(-100%);}
	100% {opacity: 1; transform: translateY(0);}
}
/* サイド固定 */
#side_fix {
	padding-bottom: 20px;
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 9999;
	overflow: hidden;
}
#side_fix a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 200px;
	border-radius: 10px 0 0 10px;
	background: var(--blue);
	color: #fff;
	writing-mode: vertical-rl;
	letter-spacing: -0.1em;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	transform: translateX(100%);
}
#side_fix a.show {
	transform: translateX(0);
}
/*safari用*/
::-webkit-full-page-media, :future, :root #side_fix a {
	letter-spacing: 0;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
section {
	padding: 120px 0!important;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}

/* フォント */
h2 {
	font-family: biz-udmincho, sans-serif;
	font-weight: 400;
}
h3 {
	line-height: 2.2;
	font-weight: 400;
}
.font_16 {
	font-size: 16px;
}
.font_20 {
	font-size: 20px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_40 {
	font-size: 40px;
}
.font_50 {
	font-size: 50px;
}
.font_60 {
	font-size: 60px;
}
.txt_center {
	text-align: center;
}
.bold {
	font-weight: 700;
}
.mincho {
	font-family: biz-udmincho, sans-serif;
}
.line1 {
	line-height: 1;
}
.line1_4 {
	line-height: 1.4;
}
.line1_6 {
	line-height: 1.6;
}
.blue {
	color: var(--blue);
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/**/
.anker {
	margin-top: -120px;
	padding-top: 120px;
}
.wrap {
	display: inline-block;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	40% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.third {
	animation: fadeinup_3rd 1.4s;
}
@keyframes fadeinup_3rd {
	0% {opacity: 0; transform: translateY(30px);}
	57.14% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

/*==================================================================================
当協会の概要
==================================================================================*/
section#about {
	padding: 200px 0 120px!important;
	/*background: #eef2f5;*/
	background: #fff;
}
section#about table {
	width: 100%;
	max-width: 680px;
	margin: auto;
}
section#about table tr {
	border-bottom: 1px #999 dashed;
}
section#about table th {
	padding: 20px;
	color: var(--blue);
	vertical-align: middle;
	font-weight: 700;
}
section#about table td {
	padding: 20px;
	vertical-align: middle;
}
/*==================================================================================
活動目的
==================================================================================*/
section#purpose {
	padding-bottom: 0!important;
}
section#purpose h2.font_50 {
}
section#purpose .service {
	padding: 120px 0;
	background: url("../img/purpose_bg.jpg") center top / cover no-repeat;
}
section#purpose .service .col4 {
	width: calc(100% / 4 - 20px);
	box-sizing: border-box;
	padding: 60px 20px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
section#purpose .service .col4 .icon img {
	width: 90px;
	margin: auto;
}
/*==================================================================================
入会のご案内
==================================================================================*/
section#information {
	background: url("../img/info_bg.jpg") center bottom / cover no-repeat;
}
section#information .num {
	width: 200px;
	letter-spacing: 0.05em;
	position: relative;
}
section#information .num::after {
	content: "";
	display: block;
	width: 120px;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 50%;
	right: 0;
}
section#information .cont {
	width: calc(100% - 200px - 30px);
	box-sizing: border-box;
	padding: 20px 40px;
	border: 1px #000 solid;
	border-radius: 10px;
	background: #fff;
}
/*==================================================================================
直近の主な活動
==================================================================================*/
section#works .txt {
	width: 50%;
}
section#works .img {
	width: calc(50% - 40px);
}
section#works .img .img01 {
	width: 70%;
	margin: 0 10% 0 auto;
}
section#works .img .img02 {
	width: 70%;
	margin-top: -30%;
}
section#works .img .img03 {
	width: 60%;
	margin: -15% 0 0 auto;
}
/*==================================================================================
会員向けサポート制度
==================================================================================*/
section#member {
	background: url("../img/member_bg.jpg") center center / cover no-repeat;
}
section#member .col2 {
	width: calc(50% - 20px);
	box-sizing: border-box;
	padding: 30px 40px 20px;
	border: 1px #000 solid;
	border-radius: 20px;
	background: #fff;
	position: relative;
}
section#member .col2::after {
	content: "";
	display: block;
	width: 50px;
	height: 70px;
	background: #333;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 15px), 0 100%);
	position: absolute;
	top: -3px;
	left: 40px;
}
section#member .ttl {
	padding-left: 70px;
}
/*==================================================================================
入会申込み
==================================================================================*/
section#entry {
	background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f3f7f9 100%);
}
section#entry .btn {
	display: block;
	padding: 30px 100px 30px 80px;
	border-radius: 10px;
	background: var(--blue);
	color: #fff;
	position: relative;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
section#entry .btn::before {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}
section#entry .btn::after {
	content: "";
	display: block;
	border: 6px transparent solid;
	border-right: none;
	border-left: 10px var(--blue) solid;
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 20px 0!important;
}
footer .copy {
	font-size: 14px;
	text-align: center;
}

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: calc(40px - 2px);
	height: calc(40px - 2px);
	border: 1px #000 solid;
	border-radius: 50%;
	background: #fff;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px #000 solid;
	border-right: 1px #000 solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}


.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 16px; line-height: 1.8}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 100px 0 120px!important;
		overflow: hidden;
	}
	header::before {
		width: 160%;
		height: 180%;
		border-radius: 0 0 50% 50%;
		top: -85%;
	}
	header p {
		margin-bottom: 0!important;
	}
    header .logo {
		margin-bottom: 0!important;
    }
    header .logo img {
        width: 70%;
        max-width: 340px;
    }
	/* スマホ版 メニュー -----------------------*/
	nav.gnav {
	    z-index: 2;
	    width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
	    position: fixed;
	    top: 0;
	    left: 0;
	}
	nav.gnav.active {
	    opacity: 1;
		visibility: visible;
	}
	nav.gnav ul {
	    width: 100%;
		padding: 60px 20px;
		border-radius: 0;
	    background: #fff;
	    text-align: center;
		top: 0;
	}
	nav.gnav ul li {
	    width: 100%;
		border-right: none;
	    border-bottom: 1px dotted #ccc;
	}
	nav.gnav ul li:first-child {
		border-left: none;
	}
	nav.gnav ul li a {
	    padding: 15px 0;
		font-size: 16px;
	}
	nav.gnav ul.fix {
		padding: 60px 20px;
		background: #fff;
		position: relative;
		animation: none;
	}
	.gnavToggle {
	    z-index: 9999;
	    display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	    width: 36px;
	    height: 36px;
	    text-align: center;
	    cursor: pointer;
	    position: fixed;
	    right: 20px;
	    top: 15px;
	}
	.gnavToggle span {
	    display: block;
	    width: 100%;
		margin-bottom: 5px;
	    border-bottom: 2px var(--blue) solid;
	    transition: .35s ease-in-out;
	}
	.gnavToggle span:last-child {
		margin-bottom: 0;
	}
	.gnavToggle.active span:nth-child(1) {
	    transform: translateY(7px) rotate(-45deg);
	}
	.gnavToggle.active span:nth-child(2) {
		opacity: 0;
	}
	.gnavToggle.active span:nth-child(3) {
	    transform: translateY(-7px) rotate(45deg);
	}
	/* サイド固定 */
	#side_fix {
		top: 10%;
	}
	#side_fix a {
		width: 40px;
		height: 160px;
		letter-spacing: 0;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	section {
		padding: 60px 0!important;
	}
	.container {
		max-width: 680px;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_40 {
		margin-bottom: 30px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
	h3 {
		font-size: 16px;
		line-height: 1.8;
	}
	.font_16 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 26px;
	}
	.font_40 {
		font-size: 30px;
	}
	.font_50 {
		font-size: 34px;
	}
	.font_60 {
		font-size: 40px;
	}
	/**/
	.anker {
		margin-top: -80px;
		padding-top: 80px;
	}
	/*==================================================================================
	当協会の概要
	==================================================================================*/
	section#about {
		padding: 60px 0!important;
	}
	section#about table th {
		padding: 15px;
		text-align: left;
	}
	section#about table td {
		padding: 15px;
	}
	/*==================================================================================
	活動目的
	==================================================================================*/
	section#purpose .service {
		padding: 60px 0;
	}
	section#purpose .service .col4 {
		width: calc(100% / 2 - 15px);
		margin-bottom: 30px;
		padding: 40px 20px 30px;
		border-radius: 10px;
	}
	section#purpose .service .col4 .icon img {
		width: 80px;
	}
	/*==================================================================================
	入会のご案内
	==================================================================================*/
	section#information .num {
		width: 80px;
	}
	section#information .num::after {
		width: 30px;
	}
	section#information .cont {
		width: calc(100% - 80px - 20px);
		padding: 15px 20px;
	}
	section#information .cont .font_30 {
		font-size: 20px;
	}
	/*==================================================================================
	直近の主な活動
	==================================================================================*/
	section#works .txt {
		width: 100%;
		max-width: 460px;
		margin: 0 auto 40px;
	}
	section#works .img {
		width: 100%;
		max-width: 540px;
		margin: auto;
	}
	section#works .img .img01 {
		width: 55%;
		margin: 0 10% 0 auto;
	}
	section#works .img .img02 {
		width: 55%;
		margin-top: -23%;
	}
	section#works .img .img03 {
		width: 45%;
		margin: -15% 0 0 auto;
	}
	/*==================================================================================
	会員向けサポート制度
	==================================================================================*/
	section#member .col2 {
		width: 100%;
		max-width: 460px;
		margin: 0 auto 20px;
		padding: 20px 20px 15px;
		border-radius: 10px;
	}
	section#member .col2::after {
		width: 40px;
		height: 60px;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 10px), 0 100%);
		left: 20px;
	}
	section#member .ttl {
		padding-left: 55px;
	}
	/*==================================================================================
	入会申込み
	==================================================================================*/
	section#entry .btn {
		padding: 30px 80px 30px 40px;
	}
	section#entry .btn::before {
		width: 30px;
		height: 30px;
		right: 30px;
	}
	section#entry .btn::after {
		border: 5px transparent solid;
		border-right: none;
		border-left: 8px var(--blue) solid;
		right: 40px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 20px 0!important;
	}
	footer .copy {
		font-size: 12px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(30px - 2px);
		height: calc(30px - 2px);
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		width: 4px;
		height: 4px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	p {font-size: 14px;}
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 80px 0 120px!important;
	}
	header::before {
		height: 100%;
		top: -10%;
	}
	header .font_60 {
		font-size: 26px;
	}
	/* サイド固定 */
	#side_fix a {
		width: 34px;
		height: 120px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* フォント */
	h3 {
		font-size: 14px;
	}
	.font_16 {
		font-size: 12px;
	}
	.font_20 {
		font-size: 14px;
	}
	.font_24 {
		font-size: 18px;
	}
	.font_30 {
		font-size: 20px;
	}
	.font_40 {
		font-size: 20px;
	}
	.font_50 {
		font-size: 24px;
	}
	.font_60 {
		font-size: 30px;
	}
	/*==================================================================================
	当協会の概要
	==================================================================================*/
	section#about table th {
		padding: 15px 0;
		vertical-align: top;
		white-space: nowrap;
	}
	section#about table th p {
		font-size: 12px;
	}
	section#about table td {
		padding: 15px 0 15px 20px;
	}
	/*==================================================================================
	活動目的
	==================================================================================*/
	section#purpose .service .col4 {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 20px;
		padding: 30px 20px 20px;
	}
	section#purpose .service .font_24 {
		font-size: 20px;
	}
	/*==================================================================================
	入会のご案内
	==================================================================================*/
	section#information .num {
		width: 36px;
		font-size: 20px;
	}
	section#information .num::after {
		width: 10px;
	}
	section#information .cont {
		width: calc(100% - 36px - 8px);
		padding: 5px 15px;
		border-radius: 5px;
	}
	section#information .cont .font_30 {
		font-size: 16px;
	}
	/*==================================================================================
	会員向けサポート制度
	==================================================================================*/
	section#member .col2::after {
		width: 30px;
		height: 45px;
	}
	section#member .ttl {
		padding-left: 45px;
	}
	/*==================================================================================
	入会申込み
	==================================================================================*/
	section#entry .font_60 {
		font-size: 24px;
	}
	section#entry .btn {
		padding: 20px 70px 20px 30px;
		font-size: 20px!important;
	}
	section#entry .btn::before {
		width: 24px;
		height: 24px;
		right: 30px;
	}
	section#entry .btn::after {
		border: 4px transparent solid;
		border-right: none;
		border-left: 7px var(--blue) solid;
		right: 38px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}

