@charset "utf-8";

@media print, screen and (min-width: 601px) {
	.display-sp {
		display:none !important;
	}
}
@media screen and (max-width: 600px) {
	.display-pc {
		display:none !important;
	}
}

html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	vertical-align:baseline;
	background:transparent;
	list-style-type:none;
	font-size: medium;
	color: #000;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: normal;
	line-height: 1.6em;
}

a {
	text-decoration: none;
}

a:hover{
	text-decoration: none;
}

* {
	box-sizing:border-box;
	margin: 0;
	padding: 0;
}

img {
	vertical-align:bottom;
	width:100%;
}

.hov-opa:hover {
	opacity:0.8;
	transition: 0.2s ease-in-out;
}

a.anchor {
	display: block;
	padding-top: 10px;
	margin-top: -10px;
}

/* -----------------------------------------------------------------------
　見出し
--------------------------------------------------------------------------*/
.noto700 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}

.noto800 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
}

/* -----------------------------------------------------------------------
　ヘッダーメニュー
--------------------------------------------------------------------------*/
.header {
	width:100%;
	height:70px;
	padding:0 30px 0 65px;
	display: flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
	position:relative;
	z-index:5;
}

.header-logo {
	width:180px;
	padding-top:10px;
	transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1100px) {
	.header {
		padding:0 15px 0 30px;
	}
}

@media screen and (max-width: 650px) {
	.header {
		padding:0 0 0 12px;
		height:50px;
	}
	.header-logo {
		width:150px;
		padding-top:7px;
	}
}

@media screen and (max-width: 500px) {
	.header-logo {
		width:138px;
		padding-top:7px;
	}
}

.drawer_hidden {
	display:none !important;
}

@media print, screen and (min-width: 1001px) {
	.drawer_open,
	.sp-nav-logo {
		display:none !important;
	}
	.nav_list {
		display:flex;
	}
	.nav_list li a {
		display:inline-block;
		padding:0 4px;
		margin:0 17px;
		font-size:15.5px;
		line-height:70px;
		color:#000;
		position:relative;
		transition: 0.2s ease-in-out;
	}
	.nav_list li a::after {
		position: absolute;
		background:#000;
		content: '';
		display: block;
		width:0;
		height: 1px;
		bottom:17px;
		left:0;
		transition: 0.2s ease-in-out;
		z-index:5;
	}
	.nav_list li a:hover::after {
		width:100%;
	}
}

@media screen and (min-width:1001px) and ( max-width:1260px) {
	.header {
		padding:0 15px 0 30px;
	}
	.nav_list li a {
		font-size:15px;
		margin:0 10px;
	}
}

@media screen and (max-width: 1050px) {
	.nav_list li a {
		font-size:14.5px;
	}
}

@media screen and (max-width: 1000px) {
	.nav-wrap {
		position:absolute;
		top:0;
		right:0;
	}
	/* ハンバーガーアイコンの設置スペース */
	.drawer_open {
		display: flex;
		height: 70px;
		width: 70px;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 100;
		cursor: pointer;
	}
	/* ハンバーガーメニューのアイコン */
	.drawer_open span,
	.drawer_open span:before,
	.drawer_open span:after {
		content: '';
		display: block;
		height: 3px;
		width: 35px;
		border-radius: 3px;
		background: #000;
		transition: 0.5s;
		position: absolute;
	}
	/* 三本線の一番上の棒の位置調整 */
	.drawer_open span:before {
		bottom: 10px;
	}
	/* 三本線の一番下の棒の位置調整 */
	.drawer_open span:after {
		top: 10px;
	}
	/* アイコンがクリックされたら真ん中の線を透明にする */
	#drawer_input:checked ~ .drawer_open span {
		background: rgba(255, 255, 255, 0);
	}
	/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
	#drawer_input:checked ~ .drawer_open span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#drawer_input:checked ~ .drawer_open span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	/* メニューのデザイン*/
	.nav_content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%; /* メニューを画面の外に飛ばす */
		z-index: 90;
		background: #fff;
		transition: .5s;
		padding:45px 10% 0;
	}
	.sp-nav-logo {
		width:210px;
		margin:0 auto 60px;
	}
	.nav_list {
		list-style: none;
	}
	.nav_list li {
		display:block;
		width:100%;
		height:60px;
		transition: 0.3s ease-in-out;
	}
	.nav_list li:hover {
		background:#f7f5f3;
	}
	.nav_list li a {
		display:block;
		width:100%;
		font-size:19px;
		font-weight:bold;
		color:#000;
		text-align:center;
		line-height:60px;
	}
	/* アイコンがクリックされたらメニューを表示 */
	#drawer_input:checked ~ .nav_content {
		left: 0;
	}
	body.active {
  		height: 100%;
  		overflow: hidden;
	}
}

@media screen and (min-width:701px) and ( max-width:900px) {
	.nav_content {
		padding:45px 6% 0;
	}
}

@media screen and (max-width: 650px) {
	.drawer_open {
		height: 50px;
		width: 60px;
	}
	.nav_content {
		padding:30px 0 0;
	}
	.sp-nav-logo {
		width:160px;
		margin:0 auto 45px;
	}
	.nav_list {
		display:block;
		flex-wrap: nowrap;
	}
	.nav_list li {
		width:85%;
		height:50px;
		margin:0 auto;
		border-radius:8px;
	}
	.nav_list li a {
		font-size:18px;
		line-height:44px;
	}
}

/* -----------------------------------------------------------------------
　トップ画像
--------------------------------------------------------------------------*/
@media print, screen and (min-width: 1201px) {
	.main-img-tab,
	.main-img-sp {
		display:none !important;
	}
	.top-main-wrap {
		position:relative;
		width:100%;
		height:689px;
		overflow:hidden;
	}
	.main-img {
		position:absolute;
		width:2000px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media screen and (min-width:1001px) and ( max-width:1200px) {
	.main-img-tab,
	.main-img-sp {
		display:none !important;
	}
	.top-main-wrap {
		position:relative;
		width:100%;
		height:57.416vw;
		overflow:hidden;
	}
	.main-img {
		position:absolute;
		width:166.666%;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media screen and (min-width:651px) and ( max-width:1000px) {
	.main-img-pc,
	.main-img-sp {
		display:none !important;
	}
	.top-main-wrap {
		width:100%;
	}
	.main-img {
		width:100%;
	}
}

@media screen and (max-width: 650px) {
	.main-img-pc,
	.main-img-tab {
		display:none !important;
	}
	.top-main-wrap {
		position:relative;
	}
}

/* -----------------------------------------------------------------------
　「企業・自治体の方へ」ボタン
--------------------------------------------------------------------------*/
@media print, screen and (min-width: 1001px) {
	.sp-only {
		display:none !important;
	}
	.fv-link-btn {
		display:block;
		width:300px;
		height:66px;
		background:#d5c7ec;
		border-radius:12px 0 0 12px;
		position:absolute;
		right:0;
		bottom:135px;
		font-size:19px;
		font-weight:bold;
		color:#000;
		line-height:66px;
		padding-left:35px;
		transition: 0.2s ease-in-out;
	}
	.fv-link-btn:hover {
		background:#dccef1;
		transform:scale(1.04,1.04);
		transition: 0.2s ease-in-out;
	}
	.fv-link-btn2 {
		background:#fbcd37;
		bottom:50px;
	}
	.fv-link-btn2:hover {
		background:#fdd655;
	}
}

@media screen and (max-width: 1200px) {
	.fv-link-btn {
		width:280px;
		bottom:125px;
	}
	.fv-link-btn2 {
		bottom:40px;
	}
}

@media screen and (max-width: 1000px) {
	.fv-link-btn {
		display:none !important;
	}
}

/* -----------------------------------------------------------------------
　フッター
--------------------------------------------------------------------------*/
footer {
	border-top:1px solid #666;
	padding:20px; 
}

@media print, screen and (min-width: 741px) {
	.address-br01,
	.address-br02 {
		display:none !important;
	}
}

@media print, screen and (min-width: 501px) {
	.address-br01 {
		display:none !important;
	}
}

.footer-inner {
	max-width:700px;
	margin:0 auto 20px;
}

.footer-site-name {
	font-size:17px;
	margin-bottom:3px;
}

.footer-address {
	font-size:15px;
}

.footer-copyright {
	font-size:11px;
	color:#444;
	text-align:center;
}

@media screen and (max-width: 600px) {
	.footer-site-name {
		font-size:16px;
	}
	.footer-address {
		font-size:14px;
	}
	.footer-copyright {
		text-align:left;
	}
}

/* -----------------------------------------------------------------------
　お問い合わせボタン
--------------------------------------------------------------------------*/
.contact-btn {
	display:block;
	width:300px;
	height:90px;
	background:#439cd9;
	border-radius:12px;
	margin:70px auto;
	font-size:22px;
	font-weight:bold;
	letter-spacing:0.03em;
	color:#fff;
	line-height:90px;
	text-align:center;
	transition: 0.3s ease-in-out;
}

.contact-btn:hover {
	transform:scale(1.03,1.03);
	transition: 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
	.contact-btn {
		width:240px;
		height:70px;
		margin:50px auto;
		font-size:20px;
		line-height:70px;
	}
}

/* -----------------------------------------------------------------------
　ボタン黒　ラウンド
--------------------------------------------------------------------------*/
.btn-wrap {
	text-align:center;
	padding:40px 0;
}

.btn-black {
	display:inline-block;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	letter-spacing:0.03em;
	line-height:58px;
	background:#777;
	padding:0 32px;
	border-radius:40px;
	transition: 0.3s ease-in-out;
}

.btn-black-overprint {
	background:rgba(0,0,0,0.6);
}

.btn-black:hover {
	transform:scale(1.03,1.03);
	transition: 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
	.btn-wrap {
		text-align:center;
		padding:30px 0;
	}
	.btn-black {
		font-size:16px;
		line-height:54px;
		padding:0 30px;
	}
}

/* -----------------------------------------------------------------------
　ボタンオレンジ　ラウンド
--------------------------------------------------------------------------*/
.btn-orange {
	display:inline-block;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	letter-spacing:0.03em;
	line-height:1.6;
	background:#e6571b;
	padding:15px 32px;
	border-radius:25px;
	transition: 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
	.btn-orange {
		font-size:15.5px;
		padding:12px 30px;
	}
}

/* -----------------------------------------------------------------------
　見出し・タイトル
--------------------------------------------------------------------------*/
.top-title-en {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:53px;
	color:#bbb;
	text-align:center;
	margin:0 0 10px;
	letter-spacing:0.01em;
	transition: 0.2s ease-in-out;
}

.top-title-en-overprint {
	color:#000;
	opacity:0.35;
}

.top-title-jp {
	display:block;
	max-width:1000px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:37px;
	text-align:center;
	line-height:1.5;
	margin:0 auto 50px;
	letter-spacing:0.02em;
	position:relative;
	transition: 0.2s ease-in-out;
	z-index:1;
}

.top-title-jp::before {
	position: absolute;
	content: '';
	display: block;
	width:100%;
	height: 28px;
	bottom:-5px;
	left:0;
	transition: 0.2s ease-in-out;
	z-index:-1;
}

.title-jp-gray::before {
	background:#ddd;
}

.title-jp-green::before {
	background:#dae000;
}

.title-jp-white::before {
	background:#fff;
}

@media screen and (max-width: 1000px) {
	.top-title-en {
		font-size:46px;
		margin:0 0 8px;
	}
	.top-title-jp {
		font-size:34px;
		margin:0 auto 30px;
	}
	.top-title-jp::before {
		height: 20px;
		bottom:-3px;
	}
}

@media screen and (max-width: 800px) {
	.top-title-en {
		font-size:37px;
		margin:0 0 8px;
	}
	.top-title-jp {
		font-size:30px;
		margin:0 auto 30px;
	}
}

@media screen and (max-width: 600px) {
	.top-title-en {
		font-size:32px;
		margin:0 0 6px;
	}
	.top-title-jp {
		font-size:25px;
		margin:0 auto 30px;
	}
	.top-title-jp::before {
		height: 18px;
		bottom:-3px;
	}
}

/* -----------------------------------------------------------------------
　お知らせ
--------------------------------------------------------------------------*/
.top-news-wrap {
	background:#f7f7f7;
	padding:30px 40px 20px;
}

@media screen and (max-width: 600px) {
	.top-news-wrap {
		padding:20px 5% 10px;
	}
}

.news-list {
	list-style: none;
	padding: 0;
	max-width:1000px;
	margin: 0 auto 40px;
	border-top:1px solid #aaa;
}

.news-list-top {
	margin: 0 auto;
}

.news-list .news-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding:20px 0 20px 5px;
	border-bottom:1px solid #aaa;
}

.news-list .news-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.news-list .news-date {
	white-space: nowrap;
	font-size: 16px;
	width: 130px;
	padding-top:2px;
}

.news-list .news-category {
	display: inline-block;
	width: 145px;
	text-align: center;
	padding: 4px 0;
	font-size: 14px;
	color: #fff;
	white-space: nowrap;
}

.news-category.seminar {
	background-color: #439cd9;
}

.news-category.kaiho {
	background-color: #58ae33;
}

.news-category.course {
	background-color: #f99429;
}

.news-category.mailmag {
	background-color: #e5809c;
}

.news-category.other {
	background-color: #aaa;
}

.news-list .news-title {
	flex: 1;
	text-decoration: none;
	font-size: 16px;
	color: #000;
	line-height:1.75;
	padding:2px 0 0 20px;
}

.news-list .news-title:hover {
	color:#439cd9;
	text-decoration:underline;
}

@media screen and (max-width: 768px) {
	.news-list .news-item {
		flex-wrap: wrap;
	}
	.news-list .news-date {
		width: auto;
	}
	.news-list .news-title {
		flex-basis: 100%;
		padding-left:0;
	}
}

@media screen and (max-width: 600px) {
	.news-list {
		margin: 0 auto 25px;
	}
	.news-list-top {
		margin: 0 auto;
	}
	.news-list .news-meta {
		gap: 2px;
	}
	.news-list .news-date {
		font-size: 15px;
		padding:0 10px 0 0;
	}
	.news-list .news-category {
		width: 130px;
		padding: 2px 0;
		font-size: 12px;
	}
	.news-list .news-title {
		font-size: 15px;
	}
}

/* -----------------------------------------------------------------------
　お知らせ 一覧
--------------------------------------------------------------------------*/
.news-cate-list {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:25px;
}

.news-cate-list li a {
	display:inline-block;
	padding: 4px 20px;
	border-radius:25px;
	font-size:16px;
	font-weight:bold;
	letter-spacing:0.02em;
	color:#fff;
	margin:0 8px 16px;
	transition: 0.3s ease-in-out;
}

.news-cate-list li a:hover {
	opacity:0.7;
}

.btn-all {
	background-color: #444;
}

.btn-seminar {
	background-color: #439cd9;
}

.btn-kaiho {
	background-color: #58ae33;
}

.btn-course {
	background-color: #f99429;
}

.btn-mailmag {
	background-color: #e5809c;
}

.btn-other {
	background-color: #aaa;
}

@media screen and (max-width: 800px) {
	.news-cate-list {
		margin-bottom:20px;
	}
	.news-cate-list li a {
		font-size:14.5px;
		margin:0 5px 10px;
	}
}

@media screen and (max-width: 600px) {
	.news-cate-list {
		margin-bottom:15px;
	}
	.news-cate-list li a {
		font-size:13px;
		margin:0 5px 10px;
	}
}
@media screen and (max-width: 500px) {
	.news-cate-list {
		margin-bottom:12px;
	}
	.news-cate-list li a {
		font-size:12.5px;
		margin:0 5px 10px;
	}
}

/* -----------------------------------------------------------------------
 ページネーション
--------------------------------------------------------------------------*/
.pagenation {
	margin-top: 12px;
	text-align: center;
}

.pagenation a {
	transition: all 0.3s ease 0s;
}

.pagenation a:hover {
	opacity: 0.6;
}

.pagenation a.next,
.pagenation a.prev {
	font-size: 30px;
}

.pagenation a.next:hover,
.pagenation a.prev:hover {
	opacity: 0.6;
}

.page-numbers {
	background: #fff;
	border: 1px solid #999;
	color: #999;
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	height: 40px;
	line-height: 38px;
	margin-right: 10px;
	min-width: 40px;
	text-align: center;
	text-decoration: none;
}

.page-numbers:last-child {
	margin-right: 0;
}

.page-numbers.current {
	background: #000;
	border: 1px solid #000;
	color: #fff;
	font-weight: 700;
}

.page-numbers.dots {
	display: inline-block;
	border: 1px solid #999;
	color: #bbb;
	width: 40px;
	font-size: 18px;
	line-height: 38px;
	vertical-align: bottom;
}

.page-numbers.next,
.page-numbers.prev {
	display: inline-block;
	border: 1px solid #999;
	color: #bbb;
	width: 40px;
	font-size: 14px;
	line-height: 28px;
	vertical-align: bottom;
}



/* -----------------------------------------------------------------------
　お知らせ　記事ページ
--------------------------------------------------------------------------*/
.news-waku {
	position: relative;
	max-width:840px;
	margin:30px auto 0;
	padding: 75px 60px 35px;
	background-color: #fff;
}

.news-waku.waku-seminar {
	border: 2px solid #439cd9;
}

.news-waku.waku-kaiho {
	border: 2px solid #58ae33;
}

.news-waku.waku-course {
	border: 2px solid #f99429;
}

.news-waku.waku-mailmag {
	border: 2px solid #e5809c;
}

.news-waku.waku-other {
	border: 2px solid #aaa;
}

.news-waku .news-meta {
  position: absolute;
  top: 0;
  left: 0;
  right: 30px;
}

.news-waku .news-category {
  display: inline-block;
  padding: 4px 30px;
}

.news-waku .news-category a {
	font-size: 17px;
	color: #fff;
}

.news-waku .news-date {
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 16px;
  color: #000;
}

.news-waku .news-title {
	margin: 10px 0 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
	font-size: 24px;
	font-weight:bold;
}

.news-waku h2 {
	font-size: 19px;
	font-weight:bold;
	margin:35px 0 10px;
}

.news-waku h3 {
	font-size: 18px;
	font-weight:bold;
	margin:7px 0 3px;
}

.news-waku p {
	font-size:18.5px;
	text-align: justify;
	line-height:1.8;
	margin-bottom:18px;
}

.news-waku p span.bold {
	font-size:18.5px;
	font-weight:bold;
}

.news-waku p a {
	font-size:18.5px;
	color:#439cd9;
	text-decoration:underline;
}

.news-waku p a:hover {
	opacity:0.8;
	text-decoration:none;
}

@media screen and (max-width: 650px) {
	.news-waku {
		padding: 70px 40px 25px;
	}
	.news-waku .news-meta {
		right: 20px;
	}
	.news-waku .news-category {
		 font-size: 15px;
	}
	.news-waku .news-date {
		top: 15px;
		font-size: 15px;
	}
	.news-waku .news-title {
		margin: 10px 0 25px;
		padding-bottom: 20px;
		font-size: 22px;
		line-height: 1.55;
	}
	.news-waku h2 {
		font-size: 17.5px;
	}
	.news-waku p {
		font-size:16.5px;
		line-height:1.65;
		margin-bottom:18px;
	}
	.news-waku p span.bold {
		font-size:16.5px;
	}
	.news-waku p a {
		font-size:16.5px;
	}
}

@media screen and (max-width: 550px) {
	.news-waku {
		padding: 55px 25px 25px;
	}
	.news-waku .news-date {
		font-size: 14px;
	}
	.news-waku .news-title {
		margin: 7px 0 22px;
		padding-bottom: 20px;
		font-size: 20px;
	}
	.news-waku h2 {
		font-size: 17px;
	}
	.news-waku p {
		font-size:16px;
		margin-bottom:18px;
	}
	.news-waku p span.bold {
		font-size:16px;
	}
	.news-waku p a {
		font-size:16px;
	}
}

/* -----------------------------------------------------------------------
　研修・セミナー情報
--------------------------------------------------------------------------*/
.seminar-list {
	list-style: none;
	padding: 0;
	border-top:1px solid #aaa;
	margin:40px auto;
}

.seminar-item {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
	padding:20px 0 20px 5px;
	border-bottom:1px solid #aaa;
}

.seminar-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.seminar-list .news-date {
	white-space: nowrap;
	font-size: 16px;
	width: 130px;
}

.seminar-list .news-category {
	display: inline-block;
	width: 145px;
	text-align: center;
	padding: 4px 0;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
}

.seminar-title {
	flex: 1;
	text-decoration: none;
	font-size: 20px;
	color: #000;
	line-height:1.75;
	flex-basis: 100%;
}

.seminar-title:hover {
	color:#439cd9;
	text-decoration:underline;
}

@media screen and (max-width: 600px) {
	.seminar-list {
		margin:25px auto;
	}
	.seminar-title {
		font-size: 17px;
	}
}

/* -----------------------------------------------------------------------
　セクションラップ
--------------------------------------------------------------------------*/
.section-wrap {
	padding:60px 40px;
}

.section-wrap2 {
	padding:60px 40px 0;
}

@media screen and (max-width: 600px) {
	.section-wrap {
		padding:35px 5% 30px;
	}
	.section-wrap2 {
		padding:35px 5% 0;
	}
}

/* -----------------------------------------------------------------------
　トップ　ボタンパネル
--------------------------------------------------------------------------*/
@media print, screen and (min-width: 901px) {
	.top-btn-panel-wrap {
		max-width:1000px;
		margin:30px auto 90px;
		display:flex;
		justify-content: space-between;
	}
	.top-btn-panel {
		display:block;
		width:31.5%;
		border-radius:20px;
		overflow:hidden;
		transition: 0.3s ease-in-out;
	}
}

@media screen and (min-width:601px) and ( max-width:900px) {
	.top-btn-panel-wrap {
		max-width:640px;
		margin:0 auto 40px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.top-btn-panel {
		display:block;
		width:48%;
		margin:0 2% 3vw;
		border-radius:16px;
		overflow:hidden;
		transition: 0.3s ease-in-out;
	}
	.top-btn-panel:nth-child(2n) {
    	margin-right:0;
	}
	.top-btn-panel:nth-child(2n+1) {
    	margin-left:0;
	}
}

@media screen and (max-width: 600px) {
	.top-btn-panel-wrap {
		max-width:260px;
		margin:0 auto 40px;
	}
	.top-btn-panel {
		display:block;
		margin-bottom:30px;
		border-radius:16px;
		overflow:hidden;
		transition: 0.3s ease-in-out;
	}
}

.top-btn-panel:hover {
	transform:scale(1.04,1.04);
	transition: 0.3s ease-in-out;
}

/* -----------------------------------------------------------------------
　トップ　食品保健指導士とは
--------------------------------------------------------------------------*/
.top-about-text {
	font-size:23px;
	font-weight:bold;
	line-height:1.8;
	text-align:center;
	margin:55px 0;
}

.mb-30 {
	margin:55px 0 30px;
}

.mt-40 {
	margin:40px 0 55px;
}

.top-about-text span.green-large {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:30px;
	color:#2a7b5c;
	margin:0 4px;
}

.top-about-text span.blue-large {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:30px;
	color:#439cd9;
	margin:0 4px;
}

@media screen and (max-width: 820px) {
	.top-about-text {
		font-size:19px;
		text-align:left;
		margin:25px 0;
	}
	.top-about-text span.green-large,
	.top-about-text span.blue-large {
		font-size:24px;
	}
	.top-about-br {
		display:none !important;
	}
}

@media screen and (max-width: 600px) {
	.top-about-text {
		font-size:17px;
		margin:20px 0;
	}
	.top-about-text span.green-large,
	.top-about-text span.blue-large {
		font-size:19px;
	}
}

@media print, screen and (min-width: 821px) {
	.top-cut-wrap {
		max-width:1000px;
		margin:0 auto 20px;
		display:flex;
		justify-content: space-between;
	}
	.top-cut {
		width:50%;
	}
}

@media screen and (max-width: 820px) {
	.top-cut-wrap {
		max-width:480px;
		margin:0 auto 20px;
	}
}

/* -----------------------------------------------------------------------
　トップ　食品保健指導士とは（リンク）
--------------------------------------------------------------------------*/
.about-nav li {
	margin-bottom:30px;
}

.about-nav li a {
	position: relative;
	display:block;
	font-size:25px;
	font-weight:bold;
	color:#000;
	text-decoration:underline;
	text-underline-offset:0.3em;
	text-decoration-color:#2a7b5c;
    padding-left: 23px;
    transform: scale(1,1);
	transform-origin: left center;   
    transition: 0.3s ease-in-out;
}

.about-nav li a::before {
	position: absolute;
	content: '';
    width: 0;
    height: 0;
    border: solid 11px transparent;
    border-left: solid 15px #2a7b5c;
    top: 40%;
    left: 0;
    margin-top: -6px;
}

.about-nav li a:hover {
	opacity:0.7;
	color:#439cd9;
	text-decoration-color:#439cd9;
	transform:scale(1.02,1.02);
}

.about-nav li a:hover::before {
	border-left: solid 15px #439cd9;
}

.top-about-link-img {
	opacity:0.9;
	border-radius:20px;
	overflow:hidden;
}

@media print, screen and (min-width: 951px) {
	.soudan-sp {
		display:none !important;
	}
	.top-about-link-block {
		max-width:940px;
		margin:80px auto 10px;
		position:relative;
	}
	.top-about-link-img {
		max-width:720px;
		margin:0 0 0 auto;
	}
	.about-nav {
		position:absolute;
		top:35px;
		left:20px;
		z-index:2;
	}
}

@media screen and (max-width: 950px) {
	.about-nav li {
		margin-bottom:22px;
	}
	.about-nav li a {
		font-size:23px;
		padding-left: 20px;
	}
	.about-nav li a::before {
		border: solid 10px transparent;
    	border-left: solid 13px #2a7b5c;
	}
	.about-nav {
		margin-bottom:35px;
	}
	.soudan-pc {
		display:none !important;
	}
	.top-about-link-block {
		max-width:600px;
		margin:50px auto 10px;
	}
}

@media screen and (max-width: 600px) {
	.about-nav li {
		margin-bottom:17px;
	}
	.about-nav li a {
		font-size:19px;
		padding-left: 16px;
	}
	.about-nav li a::before {
		border: solid 9px transparent;
    	border-left: solid 10px #2a7b5c;
    	top: 42%;
	}
	.top-about-link-block {
		max-width:600px;
		margin:50px auto 0;
	}
}

@media screen and (max-width: 500px) {
	.about-nav li {
		margin-bottom:12px;
	}
	.about-nav li a {
		font-size:17px;
		padding-left: 13px;
	}
	.about-nav li a::before {
		border: solid 7.5px transparent;
    	border-left: solid 9px #2a7b5c;
    	top: 48%;
	}
}

/* -----------------------------------------------------------------------
　インタビュー　ピックアップ
--------------------------------------------------------------------------*/
.interview-picup-block {
	background:#dae000;
	width:100%;
	margin:0;
	padding:0 40px 40px;
}

@media print, screen and (min-width: 901px) {
	.br-interview-picup {
		display:none !important;
	}
}

.giza-upper {
  background: linear-gradient(30deg, #dae000 50%, transparent 52%),
    linear-gradient(330deg, #dae000 50%, transparent 52%);
  background-size: 85px 90px;
  background-position: center;
  height: 60px;
  margin-bottom:-1px;
}

.giza-lower {
  background: linear-gradient(-30deg, #dae000 50%, transparent 52%),
    linear-gradient(-330deg, #dae000 50%, transparent 52%);
  background-size: 85px 90px;
  background-position: center;
  height: 60px;
  transform: rotate(180deg);
  margin-top:-1px;
}

@media print, screen and (min-width: 901px) {
	.interview-picup-wrap {
		max-width:1150px;
		border-left:2px solid #fff;
		margin:100px auto 30px;
		display:flex;
	}
	.interview-picup-wrap li {
		width:33.333%;
		border-right:2px solid #fff;
		padding:0 40px;
		transition: 0.2s ease-in-out;
	}
}

.interview-picup-wrap li a {
	display:block;
}

.interview-picup-wrap li:hover {
	background:rgba(255,255,255,0.2);
}

.interview-picup-photo {
	width:52%;
	margin:0 auto 25px;
}

.interview-picup-title {
	font-size:18px;
	font-weight:bold;
	text-align: justify;
	line-height:1.5;
	margin-bottom:12px;
}

.interview-picup-katagaki {
	font-size:16px;
}

.interview-picup-name {
	font-size:21px;
}

.interview-picup-name span {
	font-size:16px;
	margin-left:4px;
}

.btn-wrap-interview-picup {
	text-align:center;
	padding:40px 0 0;
}

@media screen and (max-width: 1000px) {
	.interview-picup-photo {
		width:60%;
	}
}

@media screen and (min-width:671px) and ( max-width:900px) {
	.giza-upper {
	  background-size: 75px 90px;
	}
	.giza-lower {
	  background-size: 75px 90px;
	}
	.interview-picup-wrap {
		max-width:640px;
		margin:100px auto 30px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.interview-picup-wrap li:nth-child(2n+1) {
		border-left:2px solid #fff;
	}
	.interview-picup-wrap li {
		width:50%;
		border-right:2px solid #fff;
		padding:0 40px;
		margin-bottom:50px;
		transition: 0.2s ease-in-out;
	}
}

@media screen and (max-width: 670px) {
	.giza-upper {
	  background-size: 55px 90px;
	}
	.giza-lower {
	  background-size: 55px 90px;
	}
	.interview-picup-wrap {
		max-width:360px;
		margin:50px auto 0;
		border-top:2px solid #fff;
	}
	.interview-picup-wrap li {
		border-bottom:2px solid #fff;
		padding:30px 0 20px;
		transition: 0.2s ease-in-out;
	}
	.interview-picup-photo {
		width:40%;
	}
	.btn-wrap-interview-picup {
		padding:40px 0 0;
	}
}

@media screen and (max-width: 600px) {
	.interview-picup-title {
		font-size:17px;
	}
	.interview-picup-katagaki {
		font-size:14px;
	}
	.interview-picup-name {
		font-size:18px;
	}
}

/* -----------------------------------------------------------------------
　下層ページ　ページタイトル
--------------------------------------------------------------------------*/
.page-title-wrap {
	position:relative;
	overflow:hidden;
	transition: 0.2s ease-in-out;
}

.bg-green {
	background:#dae000;
}

.bg-orange {
	background:#fbcd37;
}

.bg-purple {
	background:#d5c7ec;
}

@media print, screen and (min-width: 1201px) {
	.page-title-inner {
		width:1200px;
		margin:0 auto;
	}
	.page-title-inner-2 {
		height:120px;
	}
}
@media screen and (min-width:901px) and ( max-width:1200px) {
	.page-title-wrap {
		width:100%;
		height:171px;
	}
	.page-title-inner {
		width:1200px;
		position:absolute;
		top:0;
		left: 50%;
		transform: translateX(-50%);
	}
	.page-title-inner-2 {
		height:120px;
	}
}
@media screen and (min-width:651px) and ( max-width:900px) {
	.page-title-wrap {
		width:100%;
		height:150px;
	}
	.page-title-inner {
		width:1050px;
		position:absolute;
		top:0;
		left: 50%;
		transform: translateX(-50%);
	}
	.page-title-inner-2 {
		height:120px;
	}
}

@media print, screen and (min-width: 651px) {
	.page-title-box {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.page-title-inner-2 img {
	width:100%;
	height:100%;
	object-fit: cover;
}

.page-title-en {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:37px;
	color:#fff;
	line-height:1;
	text-align:center;
	margin-bottom:13px;
	letter-spacing:0.01em;
	transition: 0.2s ease-in-out;
}

.page-title-en-2 {
	margin-bottom:0;
}

.page-title-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:33px;
	line-height:1.4;
	text-align:center;
	letter-spacing:0.02em;
	z-index:1;
	transition: 0.2s ease-in-out;
}

@media screen and (max-width: 900px) {
	.page-title-en {
		font-size:31px;
		margin-bottom:10px;
	}
	.page-title-en-2 {
		margin-bottom:0;
	}
	.page-title-jp {
		font-size:30px;
	}
}

@media print, screen and (min-width: 501px) {
	.page-title-br {
		display:none !important;
	}
}

@media screen and (max-width: 650px) {
	.page-title-wrap {
		padding:35px 0 20px;
	}
	.title-bg {
		display:none !important;
	}
	.page-title-en {
		font-size:26px;
		margin-bottom:7px;
	}
	.page-title-wrap-2 {
		padding:15px 0 12px;
	}
	.page-title-en-2 {
		margin-bottom:0;
	}
	.page-title-jp {
		font-size:26px;
	}
}

@media screen and (max-width: 550px) {
	.page-title-en {
		font-size:23px;
		margin-bottom:7px;
	}
	.page-title-jp {
		font-size:23px;
	}
}

/* -----------------------------------------------------------------------
　下層ページ　食品保健指導士とは
--------------------------------------------------------------------------*/
.body-block-wrap {
	max-width:660px;
	margin:0 auto;
}

.question-heading-bar {
	position:relative;
	width:100%;
	background:#dae002;
	border-radius:38px;
	padding:18px 30px;
	margin:50px 0 45px;
}

.question-heading-bar-purple {
	background:#d5c7ec;
}

.question-heading {
	font-size:23px;
	font-weight:bold;
	color:#000;
	text-align:center;
	line-height:1.5;
}

.question-heading-tail {
	position:absolute;
	right:90px;
	bottom:-22px;
	width:30px;
}

.body-block-inner {
	padding:0 20px 10px;
}

.body-blue-waku {
	border:3px solid #439cd9;
	padding:33px 40px 25px;
	border-radius:26px;
	margin:40px 0;
}

.body-blue-waku-2 {
	margin:40px 0 0;
}

.blue-waku-title {
	font-size:23px;
	font-weight:bold;
	color:#439cd9;
	text-align:center;
	margin-bottom:23px;
}

.body-text {
	font-size:18.5px;
	text-align: justify;
	line-height:1.8;
	margin-bottom:18px;
}

.body-text span.blue {
	font-size:18.5px;
	font-weight:bold;
	color:#439cd9;
	margin:0 2px;
}

.body-text-kome {
	font-size:16.5px;
	text-align: justify;
	line-height:1.7;
	margin-bottom:10px;
}

.blue-waku-zu {
	margin:30px 0 16px;
}

.body-block-heading {
	font-size:22px;
	font-weight:bold;
	line-height:1.5;
	text-indent:-1.35em;
	padding-left:1.35em;
	margin:53px 0 28px;
}

.body-block-sub-heading {
	font-size:20px;
	font-weight:bold;
	color:#439cd9;
	margin:28px 0 10px;
}

.advisary-heading {
	border-top:1px solid #439cd9;
	padding-top:30px;
	font-size:21px;
	font-weight:bold;
	color:#439cd9;
	line-height:1.5;
	text-align:center;
	margin:45px 0 28px;
}

.inner-box-blue {
	border:1px solid #439cd9;
	padding:28px 25px 15px;
	margin-bottom:15px;
}

.body-text-center {
	font-size:18px;
	font-weight:bold;
	text-align:center;
	line-height:1.5;
	margin-bottom:35px;
}

.small-heading-center {
	font-size:18px;
	font-weight:bold;
	text-align:center;
	line-height:1.5;
	margin-bottom:15px;
}

.body-text-list {
	font-size:17px;
	line-height:1.5;
	text-indent:-1em;
	padding-left:1em;
	margin-bottom:10px;
}

.body-text-list-blue {
	font-weight:bold;
	color:#439cd9;
}

@media screen and (max-width: 750px) {
	.br-advisary {
		display:none !important;
	}
	.body-text-center {
		text-align: justify;
	}
}

@media screen and (max-width: 650px) {
	.question-heading-bar {
		padding:16px 27px;
		margin:20px 0 30px;
	}
	.question-heading {
		font-size:20px;
	}
	.blue-waku-title {
		font-size:21px;
		margin-bottom:20px;
	}
	.body-text {
		font-size:16.5px;
		line-height:1.7;
		margin-bottom:18px;
	}
	.body-text span.blue {
		font-size:16.5px;
	}
	.body-text-kome {
		font-size:15.5px;
	}
	.body-blue-waku {
		padding:26px 33px 20px;
		margin:30px 0;
	}
	.body-blue-waku-2 {
		margin:30px 0 0;
	}
	.body-block-heading {
		font-size:19px;
		margin:48px 0 25px;
	}
	.body-block-sub-heading {
		font-size:18px;
		margin:25px 0 6px;
	}
	.advisary-heading {
		font-size:19px;
	}
	.inner-box-blue {
		padding:22px 20px 12px;
	}
	.body-text-center {
		font-size:17px;
		margin-bottom:30px;
	}
	.small-heading-center {
		font-size:16.5px;
	}
	.body-text-list {
		font-size:15.5px;
		margin-bottom:7px;
	}
}

@media screen and (max-width: 550px) {
	.question-heading-bar {
		padding:13px 24px;
	}
	.question-heading {
		font-size:16.5px;
	}
	.body-block-inner {
		padding:0 13px 5px;
	}
	.blue-waku-title {
		font-size:18px;
		margin-bottom:16px;
	}
	.body-text {
		font-size:16px;
		margin-bottom:18px;
	}
	.body-text span.blue {
		font-size:16px;
	}
	.body-text-kome {
		font-size:15px;
	}
	.body-blue-waku {
		padding:24px 22px 12px;
	}
	.body-block-heading {
		font-size:18px;
		margin:38px 0 20px;
	}
	.body-block-sub-heading {
		font-size:17px;
		margin:20px 0 4px;
	}
	.advisary-heading {
		font-size:15px;
	}
	.inner-box-blue {
		padding:18px 12px 10px;
	}
	.body-text-center {
		font-size:14.5px;
		margin-bottom:25px;
	}
	.small-heading-center {
		font-size:13px;
	}
	.body-text-list {
		font-size:14px;
		margin-bottom:7px;
	}
}

/* -----------------------------------------------------------------------
　下層ページ　資格を取るには
--------------------------------------------------------------------------*/
.body-green-bg {
	margin-top:30px;
	background:#f4f7e4;
	padding:30px 40px 15px;
}

.heading-center-black {
	font-size:19px;
	font-weight:bold;
	text-align:center;
	line-height:1.5;
	margin-bottom:15px;
}

.text-link-black {
	font-size:16px;
	font-weight:bold;
	color:#000;
	text-decoration:underline;
}

.text-link-black:hover {
	color:#439cd9;
}

.body-block-heading span.large-number {
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	font-size:70px;
	font-weight:500;
	position: relative;
	top: 8px;
	margin-right:30px;
	line-height:1;
}

.body-shikaku-list {
	font-size:18px;
	text-align: justify;
	line-height:1.7;
	text-indent:-2em;
	padding-left:2em;
	margin-bottom:18px;
}

.nagare {
	max-width:480px;
	margin:65px auto 40px;
}

.nagare-caption {
	margin-top:30px;
	font-size:15px;
}

.hiyou {
	margin-top:40px;
}

@media screen and (max-width: 650px) {
	.body-green-bg {
		margin-top:20px;
		padding:25px 35px 10px;
	}
	.heading-center-black {
		font-size:18px;
	}
	.text-link-black {
		font-size:15px;
	}
	.body-block-heading span.large-number {
		font-size:60px;
	}
	.body-shikaku-list {
		font-size:16.5px;
	}
	.nagare-caption {
		font-size:14px;
	}
}
@media screen and (max-width: 550px) {
	.body-green-bg {
		padding:25px 30px 5px;
	}
	.heading-center-black {
		font-size:16.5px;
	}
	.text-link-black {
		font-size:14px;
	}
	.body-block-heading span.large-number {
		font-size:57px;
	}
	.body-shikaku-list {
		font-size:16px;
	}
}

/* -----------------------------------------------------------------------
　申し込みバナー
--------------------------------------------------------------------------*/
.bnr-wrap {
	padding:60px 0 30px;
}

.bnr-mosikomi {
	display:block;
	transition: 0.2s ease-in-out;
}

.bnr-mosikomi:hover {
	transform:scale(1.02,1.02);
}

@media screen and (max-width: 600px) {
	.bnr-wrap {
		padding:50px 0 0;
	}
	.bnr-mosikomi {
		max-width:280px;
		margin:0 auto;
	}
}

/* -----------------------------------------------------------------------
　インタビュー　一覧
--------------------------------------------------------------------------*/
.interview-lead-box {
	max-width:620px;
	margin:0 auto 50px;
}

.interview-block-wrap {
	max-width:800px;
	margin:0 auto;
}

.interview-panel {
	display:block;
	border:1px solid #999;
	padding:25px 35px 30px;
	margin-bottom:40px;
	transition: 0.3s ease-in-out;
}

.interview-panel:hover {
	background: rgba(218, 224, 0, 0.05);
	border:1px solid #dae000;
}

@media print, screen and (min-width: 681px) {
	.interview-panel-photo-sp {
		display:none !important;
	}
	.interview-panel-inner {
		display:flex;
		justify-content: space-between;
	}
	.interview-panel-text-wrap {
		width:67%;
	}
	.interview-panel-photo-pc {
		width:26%;
	}
}

.interview-panel-shoulder {
	font-size:16px;
	font-weight:bold;
	color:#888;
	letter-spacing:0.03em;
	margin-bottom:5px;
}

.interview-panel-title {
	font-size:23px;
	font-weight:bold;
	line-height:1.4;
	margin-bottom:27px;
}

.interview-panel-name-box {
	border-left:10px solid #dae000;
	padding-left:16px;
}

.interview-panel-syozoku {
	font-size:14px;
	line-height:1.45;
	margin-bottom:2px;
}

.interview-panel-katagaki {
	font-size:16.5px;
	font-weight:bold;
	margin-bottom:10px;
}

.interview-panel-name {
	font-size:23px;
	font-weight:bold;
	line-height:1.2;
}

.interview-panel-name span.small {
	font-size:14px;
}

.interview-panel-addreess {
	font-size:13px;
}

@media screen and (max-width: 850px) {
	.interview-panel-text-wrap {
		width:calc(100% - 220px);
	}
	.interview-panel-photo-pc {
		width:180px;
	}
	.interview-panel-title {
		font-size:22px;
	}
	.interview-panel-name {
		font-size:22px;
	}
}

@media screen and (max-width: 680px) {
	.interview-panel-photo-pc {
		display:none !important;
	}
	.interview-block-wrap {
		max-width:500px;
		margin:0 auto;
	}
	.interview-panel {
		padding:17px 26px 22px;
		margin-bottom:30px;
	}
	.interview-panel-text-wrap {
		width:100%;
	}
	.interview-panel-photo-sp {
		max-width:160px;
		margin:0 auto 30px;
	}
	.interview-panel-title {
		font-size:19px;
		margin-bottom:22px;
	}
	.interview-panel-katagaki {
		font-size:16px;
	}
	.interview-panel-name {
		font-size:19px;
	}
}

/* -----------------------------------------------------------------------
　インタビュー　記事ページ
--------------------------------------------------------------------------*/
.interview-page-wrap {
	max-width:800px;
	border:1px solid #999;
	padding:30px 45px 40px;
	margin:0 auto 25px;
}

@media print, screen and (min-width: 681px) {
	.interview-photo-sp {
		display:none !important;
	}
	.interview-page-title-wrap {
		display:flex;
		justify-content: space-between;
	}
	.interview-panel-text-wrap {
		width:70%;
	}
	.interview-photo-pc {
		width:26%;
		padding-top:4px;
	}
}

.interview-page-title-wrap {
	padding-bottom:35px;
	border-bottom:2px dotted #dae000;
	margin-bottom:40px;
}

.interview-title {
	font-size:24px;
	font-weight:bold;
	line-height:1.45;
	margin-bottom:50px;
}

.interview-question {
	font-size:19.5px;
	font-weight:bold;
	color:#439cd9;
	line-height:1.7;
	text-align: justify;
	margin:35px 0 20px;
}

.interview-question:before {
	content: "";
	display:inline-block;
	width:50px;
	height:6px;
	margin-right:7px;
	border-top:1px solid #439cd9;
}

.interview-book-title {
	margin:50px 0 12px;
	border-top:2px dotted #dae000;
	padding-top:20px;
	font-size:19px;
	font-weight:bold;
}

.book-link {
	display:block;
	font-size:17px;
	color:#000;
	line-height:1.6;
	text-decoration:underline;
	text-align: justify;
	margin-bottom:7px;
}

.book-link:hover {
	color:#439cd9;
}

.book-auther {
	font-size:17px;
}

@media screen and (max-width: 850px) {
	.interview-panel-text-wrap {
		width:calc(100% - 220px);
	}
	.interview-photo-pc {
		width:180px;
	}
	.interview-title {
		font-size:22px;
		margin-bottom:30px;
	}
}

@media screen and (max-width: 680px) {
	.interview-photo-pc {
		display:none !important;
	}
	.interview-page-wrap {
		max-width:500px;
		padding:20px 25px 25px;
		margin:0 auto 20px;
	}
	.interview-panel-text-wrap {
		width:100%;
	}
	.interview-title {
		font-size:19px;
		margin-bottom:22px;
	}
	.interview-photo-sp {
		max-width:160px;
		margin:0 auto 30px;
	}
}

@media screen and (max-width: 650px) {
	.interview-question {
		font-size:17px;
	}
	.interview-question:before {
		width:40px;
		height:5px;
	}
	.interview-book-title {
		font-size:16.5px;
	}
	.book-link {
		font-size:16px;
	}
	.book-auther {
		font-size:16px;
	}
}
@media screen and (max-width: 550px) {
	.interview-question {
		font-size:16.5px;
	}
	.interview-question:before {
		width:37px;
		height:5px;
	}.interview-book-title {
		font-size:16px;
	}
	.book-link {
		font-size:15.5px;
	}
	.book-auther {
		font-size:15.5px;
	}
}

/* -----------------------------------------------------------------------
　食品保健指導士会のご案内
--------------------------------------------------------------------------*/
.nav_about li a {
	position: relative;
	display:block;
	width:230px;
	height:50px;
	padding-right: 15px;
	background:#fbcd37;
	border-radius:25px;
	font-size:18px;
	font-weight:bold;
	letter-spacing:0.02em;
	line-height:50px;
	color:#000;
	text-align:center;
	margin:0 15px;
	transition: 0.3s ease-in-out;
}

.nav_about li a:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-bottom: solid 2px #333;
	border-right: solid 2px #333;
	transform: rotate(45deg);
	position: absolute;
	top: 20px;
	right: 28px;
	margin: auto;
}

@media print, screen and (min-width: 801px) {
	.nav_about {
		display:flex;
		justify-content: center;
		margin-bottom:60px;
	}
}

@media screen and (min-width:571px) and ( max-width:800px) {
	.nav_about {
		display:flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom:20px;
	}
	.nav_about li a {
		margin:0 15px 20px;
	}
}

@media screen and (max-width: 570px) {
	.nav_about {
		margin-bottom:35px;
	}
	.nav_about li a {
		margin:0 auto 15px;
	}
}


/* -------------------　ごあいさつ　----------------------*/
.message-box {
	border:3px solid #fbcd37;
	max-width:880px;
	margin:0 auto 20px;
	padding:50px 75px;
}

@media screen and (max-width: 800px) {
	.message-box {
		padding:45px 45px;
		margin:0 auto;
	}
}

@media screen and (max-width: 600px) {
	.message-box {
		padding:30px 25px;
		margin-bottom:20px;
	}
}

.message-title {
	font-size:26px;
	font-weight:bold;
	text-align:center;
	margin-bottom:35px;
}

.message-signature-wrap {
	text-align:right;
	margin:40px 0 0;
}

.message-signature-inner {
	display:inline-block;
	text-align:left;
}

.message-signature-katagaki {
	font-size:16px;
}

.message-signature-name {
	font-size:22px;
}

.message-signature-name span.small {
	font-size:13px;
}

@media screen and (max-width: 600px) {
	.message-title {
		font-size:23px;
		margin-bottom:25px;
	}
	.message-signature-wrap {
		margin:30px 0 0;
	}
	.message-signature-katagaki {
		font-size:14.5px;
	}
	.message-signature-name {
		font-size:18px;
	}
	.message-signature-name span.small {
		font-size:12px;
	}
}

/* -------------------　会員のメリット　----------------------*/
.section-wrap-orange {
	background:#f8edc8;
	padding:50px 40px 30px;
}

.about-heading {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:33px;
	text-align:center;
	line-height:1.5;
	margin:0 auto 50px;
}

@media screen and (max-width: 600px) {
	.section-wrap-orange {
		padding:35px 5% 30px;
	}
	.about-heading {
		font-size:25px;
		margin:0 auto 30px;
	}
}

.about-title-bar {
	max-width:800px;
	height:80px;
	margin:0 auto 30px;
	background:#fff;
	border-radius:40px;
	display:flex;
}

.about-title-bar-number-box {
	width:100px;
	padding-left:40px;
	display:flex;
	align-items: center;
}

.about-title-bar-number {
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	font-size:48px;
	font-weight:500;
	line-height:1;
}

.about-title-bar-heading-box {
	width:calc(100% - 100px);
	display:flex;
	align-items: center;
}

.about-title-bar-heading {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size:25px;
	line-height:1.5;
}

.merit-body-wrap {
	max-width:720px;
	padding:0 15px;
	margin:0 auto 80px;
}

@media print, screen and (min-width: 701px) {
	.merit-body-flex-inner {
		padding-top:15px;
		display:flex;
		justify-content: space-between;
	}
	.merit-01-text-wrap {
		width:62%;
	}
	.mail-mag-img {
		width:31%;
	}
}

@media screen and (max-width: 700px) {
	.merit-body-wrap {
		padding:0 25px;
	}
	.merit-01-text-wrap {
		margin-bottom:40px;
	}
	.mail-mag-img {
		max-width:250px;
		margin:0 auto;
	}
}

.merit-heading {
	font-size:18.5px;
	font-weight:bold;
	margin:35px 0 5px;
}

.merit-text {
	font-size:18px;
	line-height:1.7;
	text-align: justify;
}

.about-btn-wrap {
	text-align:center;
	padding:40px 0 0;
}

@media screen and (max-width: 600px) {
	.about-title-bar {
		padding:10px 0;
		height:auto;
	}
	.about-title-bar-number-box {
		width:70px;
		padding-left:30px;
	}
	.about-title-bar-number {
		font-size:38px;
	}
	.about-title-bar-heading {
		font-size:19px;
	}
	.merit-body-wrap {
		padding:0 15px;
	}
	.merit-heading {
		font-size:16.5px;
		margin:25px 0 5px;
	}
	.merit-text {
		font-size:16px;
	}
}

/* -------------------　ご入会方法　----------------------*/
.join-btn {
	display:block;
	width:100%;
	padding:20px 0;
	background:#fbcd37;
	margin:30px auto 20px;
	font-size:21px;
	font-weight:bold;
	letter-spacing:0.03em;
	color:#000;
	line-height:1.45;
	text-align:center;
	transition: 0.3s ease-in-out;
}

.join-btn:hover {
	transform:scale(1.01,1.01);
	transition: 0.3s ease-in-out;
}

.price-block {
	max-width:300px;
	margin:50px auto 0;
}

.price-bar {
	width:100%;
	height:50px;
	background:#fbcd37;
	border-radius:25px;
	font-size:21px;
	font-weight:bold;
	letter-spacing:0.03em;
	color:#000;
	line-height:50px;
	text-align:center;
	margin-bottom:18px;
}

@media screen and (max-width: 600px) {
	.join-btn {
		padding:12px 0;
		font-size:17px;
	}
	.price-block {
		max-width:270px;
		margin:35px auto 0;
	}
	.price-bar {
		height:46px;
		font-size:18px;
		line-height:46px;
	}
}

/* -------------------　組織概要　----------------------*/
.section-wrap-gray {
	background:#f2f2f2;
	padding:40px 40px 50px;
}

@media screen and (max-width: 600px) {
	.section-wrap-gray {
		padding:20px 5% 15px;
	}
}

.gaiyo-table {
	max-width:680px;
	margin:0 auto 20px;
	background:#fff;
}

@media print, screen and (min-width: 601px) {
	.gaiyo-table-row {
		display:flex;
	}
	.table-row-orange {
		background:#fbcd37;
	}
	.gaiyo-table-title-cell {
		width:160px;
		border-right:3px dotted #fbcd37;
		padding:10px 0 10px 15px;
		font-size:18px;
	}
	.table-row-orange .gaiyo-table-title-cell {
		border-right:3px dotted #fff;
	}
	.gaiyo-table-content-cell {
		width:calc(100% - 180px);
		padding:10px 0 10px 15px;
		font-size:18px;
	}
}

.gaiyo-table-link-text {
	font-size:18px;
	color:#439cd9;
	text-decoration:underline;
}

.gaiyo-table-link-text:hover {
	text-decoration:none;
}

@media screen and (max-width: 900px) {
	.gaiyo-table-title-cell {
		font-size:17px;
	}
	.gaiyo-table-content-cell {
		font-size:17px;
	}
	.gaiyo-table-link-text {
		font-size:17px;
	}
}

@media screen and (max-width: 600px) {
	.gaiyo-table-title-cell {
		background:#fbcd37;
		padding:6px 0 6px 10px;
		font-size:16px;
	}
	.gaiyo-table-content-cell {
		padding:10px;
		font-size:16px;
	}
	.gaiyo-table-link-text {
		font-size:16px;
	}
}

/* -----------------------------------------------------------------------
　認定資格の更新について
--------------------------------------------------------------------------*/
.price-block2 {
	max-width:500px;
	margin:50px auto 60px;
}

.price-bar span {
	font-size:15px;
}

.tani {
	margin-bottom:50px;
}

/* -----------------------------------------------------------------------
　企業・自治体の方へ
--------------------------------------------------------------------------*/
.for-biz-heading {
	font-size:22px;
	font-weight:bold;
	line-height:1.5;
	margin:50px 0 30px;
}

.for-biz-list-wrap {
	margin:30px 0;
}

.for-biz-list {
	font-size:18.5px;
	text-align: justify;
	line-height:1.6;
	text-indent:-1.15em;
	padding-left:1.15em;
	margin-bottom:7px;
}

.for-biz-heading2 {
	font-size:19px;
	line-height:1.5;
	margin:45px 0 6px;
}

@media screen and (max-width: 650px) {
	.for-biz-heading {
		font-size:19px;
		margin:48px 0 25px;
	}
	.for-biz-list {
		font-size:16.5px;
		margin-bottom:18px;
	}
	.for-biz-heading2 {
		font-size:17.5px;
		margin:35px 0 6px;
	}
}

@media screen and (max-width: 550px) {
	.for-biz-heading {
		font-size:18px;
		margin:38px 0 20px;
	}
	.for-biz-list {
		font-size:16px;
		margin-bottom:18px;
	}
	.for-biz-heading2 {
		font-size:16.5px;
		margin:30px 0 3px;
	}
}

/* --------------------------　メールボタン　-------------------------*/
.mail-btn {
	display:block;
	width:200px;
	height:46px;
	padding:5px 3px 0 28px;
	background:#b596e8;
	border-radius:23px;
	transition: 0.2s ease-in-out;
}

.mail-btn-inner {
	display:flex;
}

.mail-icon {
	width:16%;
	padding-top:1px;
}

.mail-btn-text {
	width:81%;
	text-align:center;
	font-size:17.5px;
	font-weight:bold;
	line-height:35px;
	letter-spacing:0.03em;
	color:#fff;
	padding-right:10px;
}

.mail-btn:hover {
	opacity:0.8;
	transition: 0.2s ease-in-out;
}

@media screen and (max-width: 600px) {
	.mail-btn {
		transform:scale(0.9,0.9);
	}
	.contact-text {
		font-size:14.5px;
	}
}

/* -----------------------------------------------------------------------
　404
--------------------------------------------------------------------------*/
.page-wrap-404 {
	padding:50px 20px;
}

.entry-404 {
	padding: 150px 0 100px;
	text-align: center;
}

.entry-404-head {
	color: #aaa;
	font-family: "Lato", sans-serif;
	font-size: 58px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 36px;
}

.entry-404-lead {
	color: #aaa;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 24px;
}

.entry-404-content {
	color: #aaa;
}

.entry-404-btn {
	margin-top: 50px;
}

.entry-404-btn .btn {
	padding:10px 12px;
	background: #bbb;
	color: #fff;
	border-radius:5px;
}

.entry-404-btn .btn:hover {
	background: #ccc;
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.entry-404 {
		padding: 70px 0 50px;
	}
	.entry-404-head {
		font-size: 40px;
		margin-bottom: 36px;
	}
	.entry-404-head span {
		display: block;
	}
	.entry-404-head span::after {
		display: none;
	}
	.entry-404-lead {
		font-size: 20px;
		margin-bottom: 34px;
	}
	.entry-404-lead .m_sp {
		display: block;
	}
	.entry-404-content {
		font-size: 12px;
	}
	.entry-404-btn {
		margin-top: 55px;
	}
}

@media screen and (max-width: 600px) {
	.entry-404-head {
		font-size: 36px;
		margin-bottom: 25px;
	}
	.entry-404-lead {
		font-size: 17px;
		margin-bottom: 24px;
	}
}