
body {
	font-family: 'Noto Sans JP', 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: #00afd5;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	line-height: 1.6;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	padding: 15px 0!important;
	position: relative;
	z-index: 9999;
}
nav.gnav ul li {
	margin-left: 30px;
	position: relative;
}
nav.gnav ul li a {
	display: block;
}
nav.gnav .trigger {
	cursor: pointer;
}
nav.gnav .trigger [class^="icon_"] {
	height: 20px;
}
nav.gnav .trigger:hover + .window,
nav.gnav .window:hover {
	opacity: 1;
	visibility: visible;
}
nav.gnav .window {
	padding-top: 20px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	right: 0;
}
nav.gnav .window .inner {
	min-width: calc(160px - 40px);
	padding: 20px;
	border-radius: 5px;
	border: 1px #cfcfcf solid;
	background: #fff;
	position: relative;
}
nav.gnav .window .inner::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px #cfcfcf solid;
	border-left: 1px #cfcfcf solid;
	background: #fff;
	position: absolute;
	top: -4px;
	right: 20px;
	transform: rotate(45deg);
}
nav.gnav .window ul li {
	margin-left: 0;
	margin-bottom: 10px;
}
nav.gnav .window ul li:last-child {
	margin-bottom: 0;
}
nav.gnav .window ul li a {
	color: #000;
}
nav.gnav .window ul li a:hover {
	color: #00afd5;
	filter: brightness(1.1);
}
header .search_form {
	padding: 0;
	border-radius: 0;
	background: none;
}
header nav.gnav .window .search_form {
	min-width: 460px;
}
header .search_form input[type="search"] {
	width: calc(100% - 80px - 10px);
	padding: 6px 10px;
}
header .search_form input[type="button"] {
	width: 80px;
	height: 40px;
	padding-left: 15px;
	background-position: left 15px center;
	background-size: 16px;
	font-size: 14px;
}
header .btn {
	min-width: auto;
	padding: 15px 20px;
}

/* スマホ版 メニュー -----------------------*/
nav.gnav_sp {
    z-index: 2;
    width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
    position: fixed;
    top: 0;
    left: 0;
}
nav.gnav_sp.active {
    opacity: 1;
	visibility: visible;
}
nav.gnav_sp .close {
    width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
nav.gnav_sp ul {
    width: calc(100% - 40px - 80px);
	max-width: 360px;
	height: calc(100% - 30px);
	padding: 15px 20px;
    background: #fff;
	position: relative;
	z-index: 2;
	transition: all .3s;
	transform: translateX(-100%);
}
nav.gnav_sp.active ul {
	transform: translateX(0);
}
nav.gnav_sp ul li {
    width: 100%;
	padding: 15px 0;
    border-bottom: 1px dotted #ccc;
}
nav.gnav_sp ul li:first-child {
	margin-bottom: 30px;
    padding: 0;
    border-bottom: none;
}
nav.gnav_sp ul li:last-child {
    border-bottom: none;
}
header nav.gnav_sp ul li .search_form {
	padding: 0;
    background: none;
}
header nav.gnav_sp ul li .search_form input[type="search"] {
	width: calc(100% - 40px - 5px);
}
header nav.gnav_sp ul li .search_form input[type="button"] {
	width: 40px;
	padding-left: 0;
	background-position: center center;
}
nav.gnav_sp ul li a {
    display: block;
	font-size: 14px;
	position: relative;
}
nav.gnav_sp ul li a::after {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-top: 2px #00afd5 solid;
	border-right: 2px #00afd5 solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
}

.gnavToggle {
    z-index: 3;
    display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    width: 40px;
    height: 46px;
    text-align: center;
    cursor: pointer;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 20px;
    top: 0;
}
.gnavToggle span {
    display: block;
    width: 100%;
	margin-bottom: 5px;
    border-bottom: solid 2px #004171;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.gnavToggle span:nth-child(3) {
	margin-bottom: 0;
}
.gnavToggle.active span {
    border-bottom: solid 2px #fff;
}
.gnavToggle.active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-20deg);
    -moz-transform: translateY(8px) rotate(-20deg);
    transform: translateY(8px) rotate(-20deg);
}
.gnavToggle.active span:nth-child(2) {
	opacity: 0;
}
.gnavToggle.active span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(20deg);
    -moz-transform: translateY(-6px) rotate(20deg);
    transform: translateY(-6px) rotate(20deg);
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main {
	min-height: calc(100vh - 76px - 42px);
	background: #efefef;
	position: relative;
}
main.login {
	min-height: calc(100vh - 50px - 42px);
}
section {
	padding: 60px 0!important;
	position: relative;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.max680 {
	max-width: 680px;
	margin: auto;
}
.max460 {
	max-width: 460px;
	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;
}
.row.just_end {
	justify-content: flex-end;
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_20 {
	margin-right: 20px;
}

.boad {
	padding: 60px;
	border-radius: 20px;
	background: #fff;
}

/* フォント */
h2 {
	color: #004171;
	font-size: 24px;
	text-align: center;
}
h3 {
	padding-left: 10px!important;
	border-left: 6px #004171 solid!important;
	color: #004171;
	font-size: 18px;
	line-height: 1.2;
}
h3 span {
	display: inline-block;
}
.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_18 {
	font-size: 18px;
}
.font_20 {
	font-size: 20px;
}
.font_24 {
	font-size: 24px;
}
.font_40 {
	font-size: 40px;
	line-height: 1.4;
}
.txt_center {
	text-align: center;
}
.bold {
	font-weight: 700;
}
.blue {
	color: #00afd5;
}
.navy {
	color: #004171;
}
.gray {
	color: #999;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}
.txt_done {
	padding: 5px 10px;
	background: #f5f7f9;
}

/* ボタン */
.link {
	color: #00afd5;
	text-decoration: underline;
}
.btn {
	display: inline-block;
	min-width: 300px;
	padding: 20px 0;
	border-radius: 5px;
	background: #00afd5;
	color: #fff;
	text-align: center;
	font-weight: 700;
}
.btn span {
	display: inline-block;
	padding-right: 20px;
	position: relative;
}
.btn span::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
}
.btn.second {
	box-sizing: border-box;
	border: 3px #00afd5 solid;
	background: #fff;
	color: #00afd5;
}
.btn.second span::after {
	border-color: #00afd5;
}

/* アイコン */
[class^="icon_"] {
	display: inline-block;
	padding-left: 1.8em;
	position: relative;
}
[class^="icon_"]::before {
	content: "";
	display: block;
	width: 100%;
	height: 130%;
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.icon_pen::before {
	background-image: url("../img/icon_pen.png");
}
.icon_cmt::before {
	background-image: url("../img/icon_comment.png");
}
.icon_search::before {
	background-image: url("../img/icon_search.png");
}
.icon_member::before {
	background-image: url("../img/icon_member.png");
}

/* 検索窓 */
.search_form {
	padding: 20px;
	border-radius: 10px;
	background: #d5e2e6;
}
.search_form input[type="search"] {
	width: calc(100% - 100px - 10px);
}
.search_form input[type="button"] {
	width: 100px;
	height: 46px;
	padding-left: 20px;
	background-position: left 20px center;
	background-size: 18px;
	background-repeat: no-repeat;
	background-image: url("../img/icon_search_wh.png");
	font-size: 16px;
}

/* パンくず */
nav.pannav {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}
nav.pannav ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
nav.pannav ul li {
	margin-right: 10px;
	padding-right: 20px;
	position: relative;
}
nav.pannav ul li::after {
	content: "\03e";
	display: block;
	color: #999;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 0;
}
nav.pannav ul li:last-child::after {
	display: none;
}
nav.pannav ul li a {
	display: block;
}
nav.pannav ul li:last-child a {
	color: #999;
	pointer-events: none;
}

/*==================================================================================
INDEX
==================================================================================*/
ul.cate_list li {
	width: calc(50% - 10px);
}
ul.cate_list li a {
	display: block;
	padding: 30px 20px;
	border-radius: 10px;
	background: #fff;
	font-weight: 700;
	text-align: center;
	position: relative;
}
ul.cate_list li a::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px #00afd5 solid;
	border-right: 2px #00afd5 solid;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
}

/*==================================================================================
faq
==================================================================================*/
/* accordion ---------------------------------------------------------------------*/
dl.accordion {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
dl.accordion dt {
	padding: 20px 60px 20px 70px;
	background: #fff;
	cursor: pointer;
	transition: all .3s;
	position: relative;
}
dl.accordion dt::before {
	content: "Q.";
	display: block;
	color: #00afd5;
	font-size: 28px;
	font-weight: 700;
	position: absolute;
	top: 15px;
	left: 30px;
}
dl.accordion dt::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 3px #00afd5 solid;
	border-bottom: 3px #00afd5 solid;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
dl.accordion dt.open::after {
	transform: translateY(-50%) rotate(-135deg);
}
dl.accordion dd {
	display: none;
	padding: 30px 60px 30px 70px;
	background: #e9f3f5;
	position: relative;
}
dl.accordion dd::before {
	content: "A.";
	display: block;
	color: #d50148;
	font-size: 28px;
	font-weight: 700;
	position: absolute;
	top: 28px;
	left: 30px;
	opacity: 0;
	transition: all .3s;
}
dl.accordion dt.open + dd::before {
	opacity: 1;
}
/* 質問者情報 */
dl.accordion .note {
	padding: 0 60px 10px 70px;
	background: #fff;
	transition: all .3s;
}
dl.accordion dt.open ~ .note {
	padding: 10px 60px 10px 70px;
}
.icon_camera {
	padding-left: 25px;
}
.icon_camera::before {
	width: 20px;
	height: 20px;
	background-image: url("../img/icon_camera.png");
}
/* 続きを見る ---------------------------------------*/
dl.accordion dt div:last-child {
	display: none;
}

/* モーダルウィンドウ ------------------------------------------------------------------------*/
dl.accordion dd .modal_wrap {
	margin-top: 10px;
}
.modal_wrap input {
	display: none;
}
.modal_overlay {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}
.modal_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
}
.modal_content {
	position: relative;
	align-self: center;
	width: 60%;
	max-width: 800px;
	box-sizing: border-box;
	transition: .3s;
}
.close_button {
	color: #fff;
	width: 24px;
	height: 24px;
	background: url("../img/icon_cancel.png") center center / contain no-repeat;
	cursor: pointer;
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 10;
}
.modal_wrap input:checked ~ .modal_overlay {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}
.open_button {
	display: inline-block;
	cursor: pointer;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 10px!important;
	background: #efefef;
}
footer .copy {
	font-size: 12px;
	text-align: center;
}

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: calc(46px - 2px);
	height: calc(46px - 2px);
	border: 1px #004171 solid;
	border-radius: 50%;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px #004171 solid;
	border-right: 2px #004171 solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}

/*==================================================================================
管理ページ
==================================================================================*/
body.admin header {
	background: #004171;
	color: #fff;
}
body.admin header a {
	color: #fff;
}
/* レイアウト */
body.admin main {
	min-height: calc(100vh - 50px - 42px);
}
body.admin section {
	padding: 20px 0 60px!important;
}
body.admin main.login section {
	padding: 60px 0!important;
}
/* ボタン */
body.admin .link {
	color: #0e7bbb;
}
body.admin .btn {
	background: #0e7bbb;
}
body.admin .btn.sub {
	background: #cfcfcf;
}
.btn.size_s {
	min-width: 200px;
	padding: 15px 0;
}
.btn.size_ss {
	min-width: 60px;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 300;
}
/* アイコン */
.icon_logout::before {
	background-image: url("../img/icon_logout.png");
}
/* テーブル */
body.admin table {
	width: 100%;
	background: #fff;
}
body.admin table tr {
	border-bottom: 1px #efefef solid;
}
body.admin table tr:hover {
	background: #f3f6f7;
}
body.admin table th {
	padding: 6px 10px;
	border-right: 1px #fff solid;
	background: #d5e2e6;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
}
body.admin table th:last-child,
body.admin table td:last-child {
	border-right: none;
}
body.admin table td {
	padding: 10px 20px;
	border-right: 1px #efefef solid;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	line-height: 1.4;
	vertical-align: middle;
}
body.admin table.post td:not(:nth-child(3)) {
	white-space: nowrap;
}
body.admin table.post td:not(:nth-child(n+3)) {
	font-size: 12px;
}
body.admin table.post td:nth-child(-n+3) {
	text-align: left;
}
body.admin table.post td:nth-child(4),
body.admin table.post td:nth-child(5) {
	color: #e99600;
	font-weight: 700;
	text-align: center;
}
body.admin table.post td:nth-child(4) .off {
	color: #ccc;
}
.orange {
	color: #e99600;
}
/* ページナビ */
nav.pagenav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
nav.pagenav ul a,
nav.pagenav ul span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	margin: 0 2px;
	border-radius: 3px;
	box-sizing: border-box;
	color: #004171;
	font-size: 14px;
	text-decoration: none!important;
}
nav.pagenav ul span.current {
	background: #004171;
	color: #fff;
}
nav.pagenav ul span.extend {
	width: auto;
}
nav.pagenav ul a:hover {
	background: #efefef;
}

/*==================================================================================
紹介ページ
==================================================================================*/
section#about {
	padding: 100px 0 60px!important;
}
section#about::before {
	content: "";
	display: block;
	width: 540px;
	height: 600px;
	background: url("../img/japan.png") center center / contain no-repeat;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}
section#about .sub_ttl span {
	display: inline-block;
	padding: 0 30px;
	position: relative;
}
section#about .sub_ttl span::before {
	content: "\0ff3c";
	font-size: 24px;
	position: absolute;
	top: 0;
	left: 0;
}
section#about .sub_ttl span::after {
	content: "\0ff0f";
	font-size: 24px;
	position: absolute;
	top: 0;
	right: 0;
}
section#about .ttl {
	padding: 20px;
	border-radius: 10px;
	background: rgba(255,255,255,0.4);
	text-align: center;
}
section#about .ttl p {
	display: inline-block;
	position: relative;
}
section#about .ttl p::after {
	content: "";
	display: block;
	width: 140px;
	height: 260px;
	background: url("../img/tatsujin.png") center center / contain no-repeat;
	position: absolute;
	top: 2%;
	right: -35%;
}
section#about ul li {
	padding-left: 120px;
	position: relative;
}
section#about ul li::before {
	content: "";
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-position: center;
	background-size: 70%;
	background-repeat: no-repeat;
	background-color: rgba(42,172,211,0.2);
	position: absolute;
	top: -10px;
	left: 0;
}
section#about ul li:nth-child(1)::before {
	background-image: url("../img/icon_p01.png");
}
section#about ul li:nth-child(2)::before {
	background-image: url("../img/icon_p02.png");
}
section#about ul li:nth-child(3)::before {
	background-image: url("../img/icon_p03.png");
}
section#about ul li:nth-child(4)::before {
	background-image: url("../img/icon_p04.png");
}
section#about ul li:nth-child(5)::before {
	background-image: url("../img/icon_p05.png");
}
section#about ul li:nth-child(6)::before {
	background-image: url("../img/icon_p06.png");
}
section#about ul li:nth-child(7)::before {
	background-image: url("../img/icon_p07.png");
}
section#about ul li p {
	padding: 20px 40px;
	border-radius: 10px;
	background: rgba(255,255,255,0.6);
	position: relative;
}
section#about ul li p::before {
	content: "";
	display: block;
	width: 20px;
	height: 18px;
	background: url("../img/fukidasi.png") center center / contain no-repeat;
	position: absolute;
	left: -20px;
	bottom: 15px;
}


.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .container {
		max-width: calc(100% - 40px);
	}
	nav.gnav {
		display: none;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main,
	main.login {
		min-height: calc(100vh - 46px - 38px);
	}
	section {
		padding: 30px 0!important;
	}
	.container {
		max-width: 680px;
	}
	.sp_max360 {
		max-width: 360px;
		margin: auto;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	.boad {
		padding: 30px;
		border-radius: 10px;
	}
	/* フォント */
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 14px;
		line-height: 1.4;
	}
	.font_12 {
		font-size: 10px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_18 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_40 {
		font-size: 28px;
	}
	/* ボタン */
	.btn {
		min-width: 240px;
		padding: 16px 0;
		font-size: 14px;
	}
	/* 検索窓 */
	.search_form {
		padding: 10px;
		border-radius: 5px;
	}
	.search_form input[type="search"] {
		width: calc(100% - 70px - 5px);
	}
	.search_form input[type="button"] {
		width: 70px;
		height: 40px;
		padding-left: 15px;
		background-position: left 10px center;
		background-size: 16px;
		font-size: 12px;
	}
	/* パンくず */
	nav.pannav {
		margin-bottom: 10px;
		position: relative;
		top: 10px;
	}
	nav.pannav ul li::after {
		font-size: 10px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	ul.cate_list li {
		width: 100%;
		margin-bottom: 10px;
	}
	ul.cate_list li a {
		padding: 20px 40px 20px 20px;
		border-radius: 5px;
		text-align: left;
	}
	ul.cate_list li a::after {
		width: 4px;
		height: 4px;
		right: 20px;
	}
	/*==================================================================================
	faq
	==================================================================================*/
	/* accordion ---------------------------------------------------------------------*/
	dl.accordion {
		border-radius: 5px;
	}
	dl.accordion dt {
		padding: 15px 40px 15px 50px;
	}
	dl.accordion dt::before {
		font-size: 20px;
		top: 15px;
		left: 15px;
	}
	dl.accordion dt::after {
		width: 6px;
		height: 6px;
		right: 20px;
	}
	dl.accordion dd {
		padding: 15px 40px 15px 50px;
	}
	dl.accordion dd::before {
		font-size: 20px;
		top: 18px;
		left: 15px;
	}
	/* 質問者情報 */
	dl.accordion .note {
		padding: 0 40px 10px 50px;
	}
	dl.accordion dt.open ~ .note {
		padding: 10px 40px 10px 50px;
	}
	.icon_camera {
		padding-left: 20px;
	}
	.icon_camera::before {
		width: 16px;
		height: 16px;
	}
	/* モーダルウィンドウ ------------------------------------------------------------------------*/
	.modal_content {
		width: calc(100% - 40px);
		max-width: 680px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer .copy {
		font-size: 10px;
	}

	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(40px - 2px);
		height: calc(40px - 2px);
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		width: 8px;
		height: 8px;
	}
	/*==================================================================================
	紹介ページ
	==================================================================================*/
	section#about {
		padding: 60px 0!important;
	}
	section#about::before {
		width: 360px;
		height: 410px;
	}
	section#about .sub_ttl span::before,
	section#about .sub_ttl span::after {
		top: auto;
		bottom: 0;
	}
	section#about .ttl {
		margin-bottom: 100px;
		padding: 20px 10px;
	}
	section#about .ttl p::after {
		width: 70px;
		height: 130px;
		top: 70%;
		right: -2%;
	}
	section#about ul li {
		padding-left: 90px;
	}
	section#about ul li::before {
		width: 74px;
		height: 74px;
		top: -6px;
	}
	section#about ul li p {
		padding: 20px;
	}
	section#about ul li p::before {
		width: 16px;
		height: 14px;
		left: -16px;
		bottom: auto;
		top: 30px;
	}
	section#about .btn {
		width: 100%;
		min-width: 0;
		margin: 0 0 15px;
	}
	section#about .btn.second {
		order: 2;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.container.sp_pdnon {
		width: 100%;
		padding: 0;
	}
	.boad {
		padding: 30px 20px;
	}
	.container.sp_pdnon .boad {
		border-radius: 0;
	}
	/* フォント */
	.font_40 {
		font-size: 23px;
	}
	/* 検索窓 */
	.search_form {
		border-radius: 0;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	ul.cate_list li {
		margin-bottom: 2px;
	}
	ul.cate_list li a {
		border-radius: 0;
	}
	/*==================================================================================
	faq
	==================================================================================*/
	/* accordion ---------------------------------------------------------------------*/
	dl.accordion {
		border-radius: 0;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none;
	}
	/*==================================================================================
	紹介ページ
	==================================================================================*/
	section#about {
		padding: 30px 0 60px!important;
	}
	section#about .font_24 {
		font-size: 16px;
	}
	section#about ul {
		padding: 0 0 0 15px;
	}
	section#about ul li {
		padding-left: 80px;
	}
	section#about ul li::before {
		width: 64px;
		height: 64px;
		top: 0;
	}
	section#about ul li p {
		padding: 15px;
		border-radius: 0;
	}
	section#about ul li p::before {
		top: 40px;
	}
	section#about .row.sp_max360 {
		padding: 0 15px;
	}
}


