@charset "utf-8";

/* ==============================

	共通

============================== */
body, html {
	width: 100%;
	font-size: 18px;

	-webkit-appearance: none;
	-webkit-text-size-adjust: 100%;

	scroll-behavior: smooth;
}

body{
	color: #2D2021;
	line-height: 1.6;
/*	font-family: 'Noto Sans JP', sans-serif;*/
	font-weight: 400;
	min-height: 100vh;
}

a,
a img {
	transition: all 0.2s ease 0s;
	color: #2D2021;
	text-decoration: none;
}

a:hover,
a:hover img {
	opacity: 0.5;
}

img	{
	width: 100%;
}

.bold {
	font-weight: bold;
}

h2{
/*	font-family: 'Noto Sans JP', sans-serif;*/
font-size: 3rem;
	line-height: 1.2;
	font-weight: 900;
	margin-bottom: 40px;
	}

h3 {
/*	font-family: 'Noto Sans JP', sans-serif;*/
font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
}


.material-icons {
	display: inline-flex;
	vertical-align: middle;
	font-size: 130%;
	margin-top: -5px;
}



@media only screen and (max-width: 821px){
	body{
		font-size: 14px;
		line-height: 1.5;
	}
	h2{
		font-size: 1.6rem;
	}
}





/* ==============================

	カラー

============================== */
.red {
	color: #6E0B0B;
	font-weight: bold;
}

.line_y {
	background: linear-gradient(transparent 60%, #FBED11 0%);
	font-weight: bold;
}





/* ==============================

	ボタン

============================== */
/* メイン */
.wp-block-button a,
.contact_form input[type="submit"] {
	display: block;
	text-decoration: none;
	text-align: center;
	background: #000;
	border-radius: 0px;
	color: #FFF;
	font-weight: bold;
	margin: 0 auto;
	width: 360px;
	padding: 10px 40px;
}

.wp-block-button i {
	margin-left: 5px;
}

.wp-block-button a:hover,
.contact_form input[type="submit"]:hover {
	box-shadow: none;
	transform: translateX(5px);
}

@media only screen and (max-width: 821px){
/* メイン */
.wp-block-button {
	width: 100%;
}

.wp-block-button a,
.contact_form input[type="submit"] {
		width: 100%;
	}
}





/* ==============================

	その他

============================== */

/* PC/SP切り分け */
.sp_disp {
	display:none;
}

@media only screen and (max-width: 821px){
	.pc_disp {
		display:none;
	}

	.sp_disp {
		display:block;
	}
}

.shadow {
	filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.4));
}





/* ==============================

レイアウト

============================== */
.wrap {
	padding-top: 90px;
}

.content {
	padding-top: 80px;
}

.w960 {
	width: 960px;
	margin: 0 auto;
}

.w1100 {
	width: 1100px;
	margin: 0 auto;
}

.w1440 {
	width: 1440px;
	margin: 0 auto;
}




@media only screen and (max-width: 820px) {
	body {
		width: 100%;
	}

	.content {
		padding-top: 20px;
	}

	.w960,.w1100,.w1440 {
		width: 90%;
		margin: 0 auto;
	}

	.wrap {
		padding-top: 50px;
	}
}

@media (max-width: 1280px) and (min-width: 821px) {
	.w960,.w1100,.w1440 {
		width: 90%;
		margin: 0 auto;
	}
}

@media (max-width: 1440px) and (min-width: 1281px) {
	.w1440 {
		width: 90%;
		margin: 0 auto;
	}
}





/* ==============================

固定ナビゲーション

============================== */
/* 固定ナビゲーション */
.fix_nav a {
	color: #FFF;
	text-decoration: none;
	border: #fff 1px solid;
}



/* PC_サイド */
@media only screen and (min-width: 821px){
	.fix_nav {
		z-index: 9990;
		position: fixed;
		right: 0;
		top: 50%;
		transform: translate(0%, -50%);
	}

	.fix_nav li {
		font-size: 1.2rem;
		display: flex;
		writing-mode: vertical-rl;
		align-items: center;
	}

	.fix_nav a {
		color: #FFF;
		display: block;
		width: 60px;
		padding: 20px 0;
		font-size: 0.9rem;

		display: flex;
		writing-mode: vertical-rl;
		align-items: center;
		background-color: rgba(0,0,0,0.8);
	}


	.fix_nav a {
		margin-bottom: 5px;
	}

	.fix_nav a .material-icons {
		transform: rotate( 270deg )
		}
	}



/* SP_下部 */
@media only screen and (max-width: 821px){
	.fix_nav {
		position: fixed;
		bottom: 0;
		right: 0px;
		width: 100%;
		z-index: 9990;
		font-weight: bold;
	}

	.fix_nav ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: stretch;
	}

	.fix_nav li {
		width: calc(100% / 2);
		padding: 10px 5px;
		font-size: 1rem;
		display: table;
		text-align: center;
		line-height: 60px;

		background-color: rgba(0,0,0,0.8);
	}

	.fix_nav li a {
		display: table-cell;
		vertical-align: middle;
	}

	.fix_nav a i {
		margin-right: 5px;
	}

	.fix_nav a img {
		width: 26%;
		display: inline-block;
		margin-right: 6px;
	}

	.fix_nav li:first-child a img {
		width: 16%;
	}
}





/* ==============================

ヘッダー

============================== */
/* header_info */
header{
	background-color: #fff;
	width: 100%;
}

.header_info {
	padding: 20px 0;
}

header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_L {
	display: flex;
	align-items: center;
}

.header_logo img {
	width: 250px;
}

.header_L h1 {
	font-weight: normal;
}

.header_R {
	display: flex;
	align-items: center;
}

.header_R .header_tel {
	font-size: 2rem;
	text-align: center;
	margin-right: 20px;
	font-weight: 900;
}

.header_tel_top {
	font-weight: bold;
}



/* g-nav */
.g-nav {
	width: 100%;
	background-color: #000;
}

.g-nav ul {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.g-nav ul li {
	padding: 0 5px;
	border-right: 1px solid #FFF;
}

.g-nav ul li:first-child {
	border-left: 1px solid #FFF;
}

.g-nav ul a {
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	display: block;
	padding: 0 20px;
}

.g-nav ul a:hover {
	color: #000F83;
	background-color: #fff;
	padding: 0 20px;
	opacity: 1;
}



@media only screen and (max-width: 821px){
	.header_L {
		flex-direction: column;
		margin-left: 0;
	}

	.header_L p {
		-webkit-box-ordinal-group:2;
		-ms-flex-order:2;
		-webkit-order:2;
		order:2;
	}

	.header_L h1 {
		margin: 0 auto;
		margin-bottom: 10px;
		width: 100%;
		text-align: center;
		line-height: 1.4;

		-webkit-box-ordinal-group:1;
		-ms-flex-order:1;
		-webkit-order:1;
		order:1;
	}

	.header_R {
	}

	.g-nav {
		padding: 0;
	}
	#g-nav_wrapper nav {
		position: fixed;
		top: 0;
		left: -300px;
		width: 300px;
		height: 100%;
		padding-top: 0px;
		background:#000;
		font-size: 16px;
		box-sizing: border-box;
		z-index: 8888;
	}

	#g-nav_wrapper .g-nav ul {
		flex-direction: column;
		padding-top: 0;
	}

	#g-nav_wrapper nav ul li {
		display:block;
		padding: 15px 10px;
		border: none;
		border-bottom: 1px solid #FFF;
	}

	#g-nav_wrapper nav ul li:last-of-type {
		border-bottom: none;
	}

	.sp-menu_info {
		text-align: center;
	}

	.sp-menu_emergency {
		background-color: #fff;
		border-radius: 20px;
		color: #000F83;
		font-weight: bold;
		width: 80%;
		margin: 0 auto;
	}

	.g-nav .sp-menu_tel {
		margin: 10px 0;
	}

	.sp-menu_time {
		color: #fff;
		font-weight: bold;
	}

	.g-nav .sp-menu_sns {
		margin-top: 20px;
	}

	.g-nav .sp-menu_sns a {
		display: inline-block;
		padding: 0 5px;
	}

	.btn-gnavi{
		background-color: #000;
		position: fixed;
		top: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		z-index: 9999;
	}

	.btn-gnavi,
	.btn-gnavi span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}

	.btn-gnavi span {
		position: absolute;
		width: 30px;
		height: 5px;
		left: 10px;
		background-color: #fff;
		border-radius: 4px;
	}

	.btn-gnavi span:nth-of-type(1) {
		top: 10px;
	}

	.btn-gnavi span:nth-of-type(2) {
		top: 23px;
	}

	.btn-gnavi span:nth-of-type(3) {
		bottom: 10px;
	}


	.btn-gnavi.open span:nth-of-type(1) {
		-webkit-transform: translateY(20px) rotate(-45deg);
		transform: translateY(20px) rotate(-45deg);
		top: 3px;
	}
	.btn-gnavi.open span:nth-of-type(2) {
		opacity: 0;
	}
	.btn-gnavi.open span:nth-of-type(3) {
		-webkit-transform: translateY(-20px) rotate(45deg);
		transform: translateY(-20px) rotate(45deg);
		bottom: 3px;
	}

	#g-nav_wrapper .contents section p {
		position: absolute;
		top: 50%;
		width: 30%;
		line-height: 1.4;
		font-size: 20px;
		color: #fff;
		text-shadow: 0 0 6px #666;
	}

	#g-nav_wrapper .contents section:nth-child(odd) p {
		left: 10%;
	}

	#g-nav_wrapper .contents section:nth-child(even) p {
		right: 10%;
	}
}





/* ==============================

フッター

============================== */
/* フッター */
footer {
	text-align: center;
	padding: 20px 0;
}

.footer_info {
	justify-content: center
}

.copyright {
	background-color: none;
	padding: 5px 0 10px 0;
	color: #000;
	font-weight: bold;
}

.copyright small {
	font-size: 11px;
	padding: 0;
}



@media only screen and (max-width: 821px){
	footer {
		padding: 30px 30px 100px 30px;
	}
	
	footer .inner_ul {
		text-align: center;
	}

	footer .inner_ul li {
		width: 100%;
	}

	footer .inner_ul ul li {
		width: 100%;
	}

	footer .inner_ul ul .btn a {
		width: 100%;
	}

	.copyright {
		padding-bottom: 100px;
	}
}



@media (max-width: 1280px) and (min-width: 821px) {
	footer .inner_ul ul .btn a {
		width: 100%;
	}
	
	footer .footer_li_btn {
		width: 540px;
	}
	
}





/* ==============================

	投稿-1カラム-

============================== */
/* blog_cat */
.blog_cat ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 40px;
}

.blog_cat ul li {
	margin: 10px;
}



/* blog_list */
.blog_list {
	margin-bottom: 100px;
}

.blog_list h2 {
	text-align: center;
	font-size: 2rem;
	display: block;
	margin-bottom: 60px;
}

.blog_list h2::after {
	display: none;	
}

.blog_list li h3 {
	font-size: 1.2rem;
	font-weight: 400;
}

.blog_list li {
	margin-bottom: 40px;
	border-bottom: 1px solid #ccc;
	padding: 0px 20px 40px 20px;
}

.blog_list li:last-child {
	border-bottom: none;
}

.blog_date {
	margin-bottom: 0px;
}



/* blog_article */
.blog_article h2 {
	text-align: center;
	font-size:2rem;
	font-weight: bold;
}

.blog_article h2::after {
	display: none;
}





/* ==============================

コンタクトフォーム

============================== */
/* contact_form */
#contact-form {
	margin-bottom: 100px;
}

.contact_form {
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.1));
	padding: 50px;
}

.contact_form table {
	width: 100%;
}

.contact_form th,
.contact_form td {
	width: 100%;
	display: block;
}

.contact_form th {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.2rem;
	color: #BD9E4B;
}

.contact_form th .attention {
	font-size: 0.8rem;
	background-color: #FF7B7B;
	color: #fff;
	padding: 2px 10px;
	border-radius: 4px;
	margin-left: 10px;
}

.contact_form td {
	margin-bottom: 40px;
}

.contact_form input {
	width: 100%;
	border: none;
	background: #ECECEC;
	padding: 20px;
	border-radius: 4px;
}

.contact_form textarea {
	width: 100%;
	height: 200px;
	border: none;
	background: #ECECEC;
	padding: 20px;
	border-radius: 4px;
}

.contact_form input[type="radio"] {
	display: none;
}

.form_radio {
	margin-top: 20px;
}

.form_radio label span {
	border: 1px solid #a5a5a5;
	border-radius: 4px;
	padding: 10px 20px;
	transition: all 0.2s ease 0s;
}

.form_radio label input[type="radio"]:checked + span {
	border: 1px solid #CE1A3B;
	background-color: #CE1A3B;
	color: #FFF;
}

.form_radio .error {
	margin-top: 15px;
}

.contact_form .radio_label {
	display: inline-block;
	font-weight: bold;
	font-size: 1.2rem;
	margin: 10px 10px 0 0;
}

.contact_form h3 {
	text-align: center;
	font-weight: normal;
	font-size: 1.6rem;
	border-top: 3px double #c2c2c2;
	border-bottom: 3px double #c2c2c2;
	padding: 20px 0;

	margin-bottom: 30px;
}

.contact_form .form_column {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

.contact_form .form_column li {
	width: calc(100%/3 - 20px);
}

#contact-form .submit-btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

.contact_form input[type="submit"] {
	width: 360px;
	padding: 20px 40px;
	cursor: pointer;
	display: block;
}

.contact_form input[type="submit"]:hover {
	opacity: 1;
}

#contact-form .submit-btn .return {
	background: #999999;
	color: #FFF;
	box-shadow: 0px 10px #787878;
}


@media only screen and (max-width: 820px){
	#contact-form {
		margin-bottom: 50px;
	}

	.contact_form {
		padding: 20px;
		padding-bottom: 30px;
	}

	.contact_form.w960 {
		width: 100%;
	}

	.contact_form tr:last-child td {
		margin-bottom: 20px;
	}

	.form_radio label span {
		display: block;
	}

	.contact_form input[type="submit"] {
		width: 49%;
		padding: 20px;
	}
	
}


/* サンクスメッセージ */
.thx-message {
	text-align: center;
	margin-bottom: 100px;
}

.thx-message p {
	margin-bottom: 40px;
}



@media only screen and (max-width: 820px){
	#info .contact_form.w960 {
		width: 100%;
		padding: 20px;
	}

	#info .contact_form input[type="submit"] {
		width: 100%;
	}
	
	#info .contact_form .form_column li {
		width: 100%;
		margin-bottom: 20px;
	}

}




/* ==============================

	ブログ一覧

============================== */

.news_list li {
	margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    padding: 0px 20px 40px 20px;
}



/* ==============================

	ブログ詳細

============================== */
.entry {
	margin-top: 60px;
}

.entry h2 {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 20px 0;
}

.entry h3 {
	padding-top: 60px;
	margin-bottom: 10px;
}

.entry h4 {
	font-weight: bold;
	padding-top: 20px;
	margin-bottom: 10px;
}

.entry p,
.entry .wp-block-image {
	margin-bottom: 20px;
}

.entry ul {
	list-style: disc;
	margin: 20px 0;
}

.nav_entry {
	border-top: 1px solid #787878;
	padding-top: 60px;
	margin: 60px 0;
	display: flex;
	justify-content: center
}

.nav_entry p {
	margin: 0 10px;
}
