@charset "UTF-8";

/*-----------------------------------------------

-- 01 Variables
-- 02 コンテンツが少ない場合にフッターを最下部に固定
-- 03 基本
-- 04 ヘッダー
-- 05 グローバルナビゲーション
-- 06 ページトップへ戻る
-- 07 フッター
-- 08 ローディング画面
-- 09 404エラー画面
-- 10 ページネーション
-- 11 各ページ共通
-- 12 お知らせ一覧
-- 13 検索結果ページ
-- 14 投稿タイプページ
-- 15 共通固定ページ
-- 16 お見積り依頼バナー

.oswald(200-700) {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.poppins(100-900) {
    font-family: "Poppins", sans-serif;
    font-weight: <weight>;
    font-style: normal;
}
.manrope(200-800) {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

------------------------------------------------*/

/*------------------------------------------------
  01 Variables
------------------------------------------------*/
:root {
    /* Color */
	--primary-color:         #7fbe25;
	--primary-color-hover:   #a6d267;
	--secondary-color:       #00712d;
	--secondary-color-hover: #4d9c6c;
	--tertiary-color:        #38946e;
	--tertiary-color-hover:  #60a98b;
	--basic-text-color:      #293A3D;
	--gradation01:             linear-gradient(to bottom,  #7fbe25 0%,#00712d 100%);
	--light-gray:            #f5f7f9;

	/* width */
	--layout-sp-width:          calc(100% - 40px);
	--layout-max-width:         1920px;
	--layout-wide-width:        calc(100% - 80px);
	--layout-middle-width:      1520px;
	--layout-outer-width:       1320px;
	--layout-inner-width:       1160px;

    /* header-height */
    --header-pc-height:         100px;
	--header-pc-height-adjust: -100px;
	--header-sp-height:         60px;
	--header-sp-height-adjust: -60px;
	--header-search-pc-height:  60px;

	/* Block Margin */
	--block-margin-sp: 60px;
	--block-margin-pc: 120px;

	--layout-gap: 40px;
}

/*------------------------------------------------
  02 コンテンツが少ない場合にフッターを最下部に固定
------------------------------------------------*/
html {
	display: flex;
	flex-direction: column;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

main {
	flex-grow: 1;
	min-height: 1%;
	overflow: hidden;
}

@media screen and (min-width: 821px) {
	body {
		min-height: 100vh;
	}
}

/*------------------------------------------------
  03 基本
------------------------------------------------*/
html {
	font-size: 62.5%;
	background-color: #fff;
	color: var(--basic-text-color);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
body {
	font-size: 1.4rem;  /* 14px */
	line-height: 1.8;
	position: relative;
}
*, *::before, *::after {
	box-sizing: border-box;
}
.clearfix::after {
	content:'';
	display: block;
	clear: both;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: .7;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
/* ボタンタグの装飾リセット */
button {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    border-radius: 0;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;  /* 16px */
	}
}

/*----- イメージ下スペース削除 右クリック禁止 -----*/
img {
	vertical-align: middle;
	width: 100%;
}

/*----- PCで電話番号リンク無効 -----*/
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
	  /*    color: inherit;*/
	  text-decoration: none;
	  pointer-events: none;
	}
}

/*スマートフォンの時は非表示*/
@media screen and (max-width: 767px) {
	.only_pc {
		display: none;
	}
}

/*PCの時は非表示*/
@media screen and (min-width: 768px) {
	.only_sp {
		display: none;
	}
}

/* アニメーション ディレイ */
.delay01 {
	animation-delay: 0.5s;
}
.delay02 {
	animation-delay: 1s;
}
.delay03 {
	animation-delay: 1.5s;
}
.delay04 {
	animation-delay: 2s;
}
.delay05 {
	animation-delay: 2.5s;
}
.delay06 {
	animation-delay: 3s;
}

/*------------------------------------------------
  04 ヘッダー
------------------------------------------------*/
.header {
    position: sticky;
    top: 0;
	z-index: 2;
}
.header_wrap {
	background-color: #fff;
}
.header_inner {
	position: relative;
	height: var(--header-sp-height);
	display: flex;
	align-items: center;
}
.header_logo {
	width: 180px;
	height: auto;
	margin-left: 20px;
	position: relative;
	z-index: 3;
}
body.active .header_inner {
	background-color: var(--tertiary-color);
}
body.active .header_logo {
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(42deg) brightness(100%) contrast(105%);
}
.header_logo span {
	font-weight: 500;
	font-size: 1.2rem;
	color: #999;
}
.header_logo .logo_image {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 321px) {
	body.active .header_inner {
		border-bottom: 1px solid var(--tertiary-color);
	}
}

@media screen and (min-width: 1161px) {
	.header_inner {
		margin: auto;
		width: var(--layout-sp-width);
		max-width: var(--layout-wide-width);
		height: var(--header-pc-height);
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: start;
	}
	.header.box-shadow {
		box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	}
	.header_logo {
		width: 220px;
		margin-top: 15px;
		margin-left: 0;
	}
}

@media screen and (min-width: 1501px) {
	.header_inner {
		align-items: center;
	}
	.header_logo {
		width: 240px;
		margin-top: 0;
	}
}

@media screen and (min-width: 1601px) {
	.header_logo {
		width: 280px;
	}
}

/* 検索窓 SP */
@media screen and (max-width: 1160px) {
	.header_top.only_pc {
		display: none;
	}
	.search_parts.only_sp {
		display: block;
	}
	.search_parts {
		margin: 30px auto;
		width: var(--layout-sp-width);
	}
	.search_form {
		margin: auto;
		overflow: hidden;
		display: block;
		display: flex;
		width: 260px;
		height: 36px;
	}
	.search_form input {
		width: 210px;
		height: 36px;
		padding: 2px 1em;
		background-color: #fff;
		display: inline-block;
		box-sizing: border-box;
		outline: none;
		border: 1px solid var(--secondary-color);
	}
	.search_form input:focus, 
	.search_form input:active {
		cursor: text;
	}
}

/* 検索窓 PC */
@media screen and (min-width: 1161px) {
	.header_top {
		background-color: #000;
		height: 60px;
		display: flex;
		align-items: center;
	}
	.header_top_inner {
		margin: auto;
		width: calc(100% - 80px);
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: #fff;
	}
	.site_description {
		font-weight: 500;
		font-size: 1.2rem;
	}
	.search_form {
		overflow: hidden;
		display: flex;
		height: 36px;
	}
	.search_form input[type="search"] {
		width: 0;
		height: 36px;
		padding: 2px 1em;
		background-color: #555;
		display: inline-block;
		box-sizing: border-box;
		outline: none;
		opacity: 0;
		transition: .3s;
	}
	.search_form input[type="search"]:focus, 
	.search_form input[type="search"]:active {
		cursor: text;
		width: 200px;
	}
	.search_form:hover input[type="search"] {
		width: 200px;
		opacity: 1;
	}
	.search_form input[type="search"]::placeholder {
		color: #ddd;
		font-size: 1.4rem;
	}
	.search_form:hover button {
		cursor: pointer;
		opacity: .8;
	}
	input[type="search"]::-webkit-search-cancel-button {
		color-scheme: dark;
	}
}

.highlight {
	background-color: #ff0;
}

.search_form button {
	width: 50px;
	height: 36px;
	position: relative;
	border: 1px solid #333;
	border-radius: 3px;
	background-color: #000;
}
.search_form button::after {
	content: '';
	background-image: url('../images/icon_search.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
	position: absolute;
	width: 18px;
	height: 18px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*------------------------------------------------
  05 グローバルナビゲーション
------------------------------------------------*/
/*-- ドロワーメニュー --*/
#menu-btn-check {
	display: none;
}
.menu-btn {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: var(--tertiary-color);
	z-index: 3;
}
.menu-btn span {
	width: 20px;
	height: 2px;
	background-color: #fff;
	content: '';
	position: absolute;
	left: 50%;
	transition: all .3s;
}
.menu-btn span:nth-of-type(1) {
	top: 23px;
	transform: translateX(-50%);
}
.menu-btn span:nth-of-type(2) {
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.menu-btn span:nth-of-type(3) {
	bottom: 23px;
	transform: translateX(-50%);
}
.menu-btn.active span:nth-of-type(1) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	width: 20px;
}
.menu-btn.active span:nth-of-type(2) {
	display: none;
}
.menu-btn.active span:nth-of-type(3) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	width: 20px;
}
.header-nav__item {
	position: relative;
}
.header-nav__item a {
	display: block;
}
.header-nav__item .touch-btn {
	position: absolute;
	height: 100%;
}

/* -- スマホ/タブレットメニュー -- */
@media screen and (max-width: 1160px) {
	.header-nav-child__item.only_sp {
		display: block;
	}
	.menu-content a {
		color: #fff;
		font-weight: 500;
		font-size: 1.5rem;
		padding: 1em;
	}
	.header-nav__list {
		border-top: 1px solid rgba(255,255,255,0.3);
	}
	.header-nav__list:nth-of-type(2) {
		border-top: none;
	}
	.header-nav__list li a {
		border-bottom: 1px solid rgba(255,255,255,0.3);
		display: block;
		box-sizing: border-box;
		position: relative;
	}
	.header-nav-child__list li:last-of-type a {
		border-bottom: none;
	}
	.header-nav-child__item a {
		padding-left: calc(10px + 0.5em);
	}
	.header-nav-child__item:first-of-type a {
		padding-left: 0;
	}
	.parent::before, 
	.no-parent::before, 
	.header-nav-child__item a::before {
		display: block;
		content: "";
		position: absolute;
		right: 30px;
		top: calc(1em + 10px);
		margin:auto;
		width: 10px;
		height: 10px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	.parent::before {
		transition: .2s;
		transform: rotate(45deg);
	}
	.parent.active::before {
		transform: rotate(225deg);
	}
	.no-parent::before, 
	.header-nav-child__item a::before {
		transform: rotate(-45deg);
	}
	.header-nav-child__list {
		position: relative;
		visibility: visible;
		opacity: 1;
		display: none;
		transition: none;
		background-color: var(--secondary-color);
	}
	.header-nav-child__item {
		padding-left: 20px;
	}
	.header-nav-child__item a::after {
		content: '';
		width: 10px;
		height: 1px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.header-nav-child__item:first-of-type a::after {
		position: static;
	}
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: -1;
		background-color: var(--tertiary-color);
		transition: all 0.3s;
		padding: 60px 0 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;
	}
	.header-nav__item.item_contact.only_pc {
		display: none;
	}
	.contact_nav.only_sp {
		display: block;
		color: #fff;
		text-align: center;
		margin: auto;
		width: var(--layout-sp-width);
	}
	.contact_nav_item.item_tel a {
		display: inline-block;
		font-family: "Oswald", sans-serif;
		font-optical-sizing: auto;
		font-weight: 700;
		font-style: normal;
		font-size: 3.8rem;
		line-height: 1;
		padding: 0;
		padding-left: calc(32px + 0.25em);
		position: relative;
	}
	.contact_nav_item.item_tel a::before {
		content: '';
		width: 32px;
		height: 32px;
		background-image: url('../images/icon_tel.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 32px 32px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.contact_time {
		margin-top: 0.5em;
		margin-bottom: 1em;
		font-weight: 500;
	}
	.contact_nav_item.item_privacy {
		font-weight: 500;
		margin-top: 0.5em;
	}
	.contact_nav_item.item_contact a {
		display: block;
		position: relative;
		margin: auto;
		padding: 1em;
		padding-right: calc(20px + 1em);
		width: 100%;
		max-width: 420px;
		border-radius: 100px;
		border: 2px solid #fff;
	}
	.contact_nav_item.item_contact a::before, 
	.contact_nav_item.item_contact a::after {
		content: '';
		position: absolute;
		top: 50%;
	}
	.contact_nav_item.item_contact a::before {
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: #fff;
		transform: translateY(-50%);
		right: 2em;
	}
	.contact_nav_item.item_contact a::after {
		width: 6px;
		height: 6px;
		right: calc(2em + 8px);
		border-top: 2px solid var(--tertiary-color);
		border-right: 2px solid var(--tertiary-color);
		transform: translateY(-50%) rotate(45deg);
	}
	.header-nav__list.only_sp {
		display: block;
	}
}

@media screen and (min-width: 390px) {
	.contact_block_item:nth-of-type(1) a {
		padding: 1em 1.5em;
		font-size: 1.4rem;
	}
	.contact_nav_item.item_tel a {
		font-size: 4.5rem;
		padding-left: calc(40px + 0.25em);
	}
	.contact_nav_item.item_tel a::before {
		width: 40px;
		height: 40px;
		background-size: 40px 40px;
	}
}

@media screen and (min-width: 768px) {
	.contact_nav_item.item_tel a {
		font-size: 6rem;
		padding-left: calc(60px + 0.25em);
	}
	.contact_nav_item.item_tel a::before {
		width: 60px;
		height: 60px;
		background-size: 60px 60px;
	}
	.contact_time {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 551px) and (max-width: 1160px) {
	.header-nav__list, 
	.header-nav__list.only_sp {
		display: flex;
		flex-wrap: wrap;
	}
	.header-nav__item {
		width: 50%;
	}
}

@media screen and (min-width: 901px) and (max-width: 1160px) {
	.header-nav__item {
		width: calc(100% / 3);
	}
}

/* -- PCメニュー -- */
@media screen and (min-width: 1161px) {
	.header-nav-child__item.only_sp {
		display: none;
	}
	.menu-btn, 
	.navi-block-sp, 
	.header-nav__item.item-privacy {
		display: none;
	}
	.header-nav {
		height: var(--header-pc-height);
		position: absolute;
		right: 0;
	}
	.header-nav__list {
		display: flex;
		gap: 40px;
		height: var(--header-pc-height);
		position: relative;
	}
	.header-nav__item {
		height: 100%;
	}
	.header-nav__item a, 
	.header-nav__item.item_contact {
		font-weight: 700;
		display: flex;
		align-items: center;
		height: 100%;
	}
	.header-nav__item a {
		color: var(--primary-color);
		font-size: 1.3rem;
		align-items: flex-end;
		padding-bottom: 10px;
	}
	.header-nav__item a::after {
		content: '';
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 3px;
		background-color: var(--primary-color);
		transition: 0.3s;
	}
	.header-nav__item.item_contact {
		background-color: var(--tertiary-color);
		color: #fff;
		margin-right: -40px;
		font-size: 1.6rem;
		width: 320px;
	}
	.header-nav__item.item_contact span {
		text-align: center;
		width: 100%;
	}
	.header-nav__item.item_contact:hover {
		cursor: pointer;
	}
	.header-nav__item.item_contact a::after {
		display: none;
	}
	.header-nav__item a:hover::after, 
	.header-nav__item.current a::after {
		width: 100%;
	}
	.contact_dropdown {
		width: 100%;
		color: #fff;
		display: block;
		background: var(--gradation01);
		padding: 40px 30px;
		box-shadow: 0 10px 10px rgba(0,0,0,0.25);
	}
	.header-nav__item.item_contact > .contact_dropdown {
		position: absolute;
		z-index: -1;
		height: 0;
		top: -100%;
		right: 0;
		transform: scale(1,0);
		transition: .5s;
		opacity: 0;
	}
	.header-nav__item.item_contact:hover > .contact_dropdown {
		height: auto;
		opacity: 1;
		top: 100%;
		transform: scale(1,1);
	}
	.contact_heading {
		font-size: 1.6rem;
	}
	.contact_time {
		font-size: 1.6rem;
		text-align: center;
	}
	.contact_btn {
		margin-top: 1em;
		position: relative;
	}
	.contact_btn a {
		display: block;
		color: #fff;
		border: 2px solid #fff;
		padding: 1em 2em;
		border-radius: 100px;
		font-size: 1.5rem;
		font-weight: 600;
	}
	.contact_btn::before, 
	.contact_btn::after {
		content: '';
		position: absolute;
		top: 50%;
	}
	.contact_btn::before {
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: #fff;
		transform: translateY(-50%);
		right: 2em;
	}
	.contact_btn::after {
		width: 6px;
		height: 6px;
		right: calc(2em + 8px);
		border-top: 2px solid var(--tertiary-color);
		border-right: 2px solid var(--tertiary-color);
		transform: translateY(-50%) rotate(45deg);
	}
	.contact_btn:hover::before, 
	.contact_btn:hover::after {
		opacity: .8;
	}
	.contact_tel a {
		display: block;
		font-weight: 900;
		font-size: 3.2rem!important;
		font-style: normal;
		line-height: 1;
		margin: 0.2em 0 0.1em;
		position: relative;
		color: #fff!important;
		padding-left: calc(32px + 0.25em);
	}
	.contact_tel a::before {
		content: '';
		width: 32px;
		height: 32px;
		background-image: url('../images/icon_tel.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 32px 32px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(42deg) brightness(100%) contrast(105%);
	}
	/* 第二階層 */
	.header-nav__item .touch-btn::before, 
	.header-nav__item .touch-btn::after {
		position: absolute;
		top: 3px;
		right: 0;
		content:'';
		width: 12px;
		height: 2px;
		background-color: #aaa;
		transition: all 0.4s;
	}
	.header-nav__item .touch-btn::before {
		transform: rotate(0deg);
	}
	.header-nav__item .touch-btn::after {
		transform: rotate(-90deg);
	}
	.header-nav__item .touch-btn {
		width: 12px;
		height: 12px;
		right: -20px;
		bottom: 14px;
	}
	.header-nav__item .touch-btn:hover {
		cursor: pointer;
	}
	.header-nav__item:hover .touch-btn::after {
		transform: rotate(-180deg);
	}
	.header-nav__list > li > ul.header-nav-child__list {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: max-content;
		min-width: 9.5em;
		height: 0;
		transition: all .3s;
		visibility: hidden;
		z-index: -1;
		background-color: var(--tertiary-color);
	}
	.header-nav__list > li:hover > ul.header-nav-child__list {
		height: auto;
		opacity: 1;
		visibility: visible;
		top: 100%;
		box-shadow: 0 5px 10px rgba(0,0,0,.25);
	}
	.header-nav-child__item a {
		position: static;
		padding: 1em 1.5em;
		color: #fff;
		font-size: 1.4rem!important;
		font-weight: 500;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.header-nav-child__item a:hover {
		background-color: var(--tertiary-color-hover);
	}
	.header-nav-child__item a:hover::after {
		width: 0;
	}
	.header-nav-child__item:last-of-type a {
		border-bottom: none;
	}
	.header-nav__list.only_sp {
		display: none;
	}
	.contact_att {
		text-align: center;
		font-size: 1.4rem;
		color: #f00;
		text-shadow: 0 0 2px #fff;
	}
}

@media screen and (min-width: 1251px) {
	.header-nav__item a {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1301px) {
	.header-nav__item a {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 1501px) {
	.header-nav__item a {
		align-items: center;
		padding-bottom: 0;
	}
	.header-nav__item a::after {
		bottom: 5px;
	}
	.header-nav-child__item a, 
	.contact_btn a {
		padding-bottom: 1em;
	}
	.header-nav__item .touch-btn {
		top: 50%;
		transform: translateY(-50%);
	}
	.header-nav__item .touch-btn::before, 
	.header-nav__item .touch-btn::after {
		top: 6px;
	}
}

@media screen and (min-width: 1601px) {
	.header-nav__list {
		gap: 50px;
	}
	.header-nav__item.item_contact {
		width: 360px;
	}
	.contact_tel a {
		font-size: 3.7rem!important;
	}
}

@media screen and (min-width: 1801px) {
	.header-nav__item a, 
	.header-nav__item.item_contact {
		font-size: 1.8rem;
	}
}

/*------------------------------------------------
  06 ページトップへ戻る
------------------------------------------------*/
#pagetop {
	position: fixed;
	right: 0;
	bottom: 30px;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
	z-index: 1;
}
#pagetop a {
	display: flex;
	justify-content:center;
	align-items:center;
	background-color: var(--primary-color);
	width: 50px;
	height: 40px;
	cursor: pointer;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
}
#pagetop a:hover {
	background-color: var(--primary-color-hover);
	opacity: 1;
}
.pagetop_arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}

@media screen and (min-width: 821px) {
	#pagetop {
		bottom: 50px;
	}
}

@media screen and (min-width: 1001px) {
	#pagetop a {
		width: 80px;
		height: 60px;
	}
}

/*　上に上がる動き　*/
#pagetop.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(150px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/
#pagetop.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(150px);
	}
}

/*------------------------------------------------
  07 フッター
------------------------------------------------*/
/* ロゴ・会社情報・コピーライト */
.footer_company_info {
	background-color: #f5f7f9;
}
.footer_company_info_inner {
	margin: auto;
	width: var(--layout-sp-width);
	max-width: calc(var(--layout-middle-width) + 80px);
	padding-top: 40px;
	padding-bottom: 30px;
}
.footer_logo {
	width: 200px;
}
.footer_address {
	margin-top: 20px;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.5;
}
.footer_nav_block {
	background-color: var(--primary-color);
	color: #fff;
	padding-top: 28px;
	padding-bottom: 28px;
}
.copyright {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
	font-size: 1.2rem;
	text-align: center;
	margin-top: 16px;
}

@media screen and (min-width: 360px) {
	.footer_address {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 671px) {
	.footer_company_info_inner {
		display: flex;
		align-items: center;
		gap: 30px;
	}
	.footer_address {
		margin-top: 0;
	}
}

@media screen and (min-width: 768px) {
	.footer_company_info_inner {
		gap: 40px;
	}
	.footer_logo {
		width: 280px;
	}
	.footer_address {
		font-size: 1.6rem;
	}
	.copyright {
		font-size: 1.3rem;
	}
}

@media screen and (min-width: 1161px) {
	.footer_company_info_inner {
		gap: 60px;
	}
	.footer_logo {
		width: 320px;
	}
	.footer_address {
		font-size: 1.8rem;
	}
	.footer_nav_block {
		padding-top: 42px;
		padding-bottom: 42px;
	}
	.copyright {
		margin-top: 35px;
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1301px) {
	.footer_nav_block {
		padding-top: 60px;
	}
	.copyright {
		margin-top: 60px;
	}
}

/* フッターナビ */
.footer-nav {
	margin: auto;
	width: var(--layout-sp-width);
	max-width: calc(var(--layout-middle-width) + 80px);
}
.footer-nav__list {
	column-count: 4;
	column-gap: 30px;
	column-rule: 1px solid #fff;
}
.footer-nav__item {
	margin-top: 0.5em;
	break-inside: avoid-column;
}
.footer-nav__item:first-of-type {
	margin-top: 0;
}
.footer-nav__item a {
	display: block;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.4;
}
.footer-nav-child__item {
	margin-top: 0.5em;
	padding-left: 1em;
	position: relative;
}
.footer-nav-child__item::before {
	content: '';
	width: 0.5em;
	height: 2px;
	background-color: rgba(255,255,255,0.5);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.footer-nav-child__item a {
	font-weight: 500;
	font-size: 1.2rem;
}

@media screen and (max-width: 1380px) {
	.footer-nav__item a {
		padding: 0.5em 0;
	}
}

/* スマホ・タブレットで非表示 */
@media screen and (max-width: 1160px) {
	.footer-nav {
		display: none;
	}
}

@media screen and (min-width: 1161px) {
	.footer-nav__list {
		column-count: 5;
		column-gap: 50px;
	}
}

@media screen and (min-width: 1381px) {
	.footer-nav__list {
		column-rule: 2px solid #fff;
		column-gap: 80px;
	}
	.footer-nav__item {
		margin-top: 1.5em;
	}
	.footer-nav__item a {
		font-size: 1.5rem;
		width: 100%;
		overflow: hidden;
		color: transparent;
		text-shadow: 0 -1.4em 0 #fff, 0 0 0 #fff;
		transition: text-shadow 0.3s;
	}
	.footer-nav__item a:hover {
		text-shadow: 0 0 0 #fff, 0 1.4em 0 #fff;
	}
	.footer-nav-child__item {
		margin-top: 1em;
	}
	.footer-nav-child__item a {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1451px) {
	.footer-nav__item a {
		font-size: 1.6rem;
	}
	.footer-nav-child__item a {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 1601px) {
	.footer-nav__item a {
		font-size: 1.8rem;
	}
	.footer-nav-child__item a {
		font-size: 1.6rem;
	}
}

/*------------------------------------------------
  08 ローディング画面
------------------------------------------------*/
.loading {
	/*ローディング画面の縦横幅を画面いっぱいになるように指定*/
	width: 100vw;
	height: 100vh;
	/*ローディング画面の表示位置を固定*/
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--primary-color);
	/*ローディング画面を0.5秒かけて非表示にする*/
	transition: all 0.5s linear;
	animation: bg-color 5s infinite;
	z-index: 999;
}
.loading_item {
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(42deg) brightness(100%) contrast(105%);
}
/*ローディング画面を非表示にする*/
.loading.loaded {
	/*0.5秒かけてopacityを0にする*/
	opacity: 0;
	visibility: hidden;
}
.loading_item {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*アニメーション設定*/
@keyframes bg-color {
	0% {
		background-color: var(--primary-color);
	}
	33% {
		background-color: var(--secondary-color);
	}
	66% {
		background-color: var(--quaternary-color);
	}
	100% {
		background-color: var(--primary-color);
	}
}

@media screen and (min-width: 821px) {
	.loading_logo {
		width: 260px;
	}
	.loading-text {
		font-size: 3rem;
	}
}

/*------------------------------------------------
  09 404エラー画面
------------------------------------------------*/
.main-conts_inner {
	margin: 30px;
}
.error-conts {
    padding: 2em 1em;
    text-align: center;
    /*background-color: rgba(255, 255, 255, .85);*/
    margin: auto;
}
.error-conts_h2 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.error-conts_h2 span {
    display: block;
}
.error-conts_h2_large {
    font-weight: 700;
}
.error-conts_h2_small {
    font-weight: 500;
}
.error-conts_p {
    font-weight: 500;
    margin-top: 1em;
    line-height: 2em;
}

@media screen and (max-width: 767px) {
    .main-conts_inner {
        padding: 100px 20px;
    }
    .error-conts_h2_large {
        font-size: 8rem;
    }
    .error-conts_h2_small {
        font-size: 2rem;
    }
    .error-conts_p {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
	.main-conts_inner {
		margin: 30px auto;
		padding: 80px 0;
		width: 95%;
		max-width: var(--layout-inner-width);
	}
	.error-conts {
        width: 560px;
    }
    .error-conts_h2_large {
        font-size: 15rem;
    }
    .error-conts_h2_small {
        font-size: 4rem;
    }
    .error-conts_p {
        font-size: 1.8rem;
    }
}

/*------------------------------------------------
  10 ページネーション
------------------------------------------------*/
.pager-list {
    height: 32px;
    line-height: 1;
    width: 100%;
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.pager-list,
.pager-list a {
    align-items: center;
    display: flex;
    justify-content: center;
}
.pager-list a {
    border: 1px solid var(--tertiary-color);
    color: var(--tertiary-color);
    flex-direction: column;
    height: calc(var(--layout-gap)/1.25);
    margin: 0 calc(var(--layout-gap)/8);
    min-width: calc(var(--layout-gap)/1.25);
    padding: 0 calc(var(--layout-gap)/6);
    width: calc(var(--layout-gap)/1.25);
	background-color: #fff;
}
.pager-list a.next {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
	color: #fff;
	min-width: calc(var(--layout-gap) * 1.8);
    padding: 0 calc(var(--layout-gap) / 1.75);
}
.pager-list a.current {
    border: 1px solid var(--tertiary-color);
	font-weight: 700;
}
.pager-list a.current,
.pager-list a:hover {
    background-color: var(--tertiary-color);
    color: #fff;
}

@media screen and (min-width: 768px) {
    .pager-list a {
        font-size: 1.4rem;
    }
    .pager-list {
        height: 42px;
        margin: 30px auto 100px;
    }
    .pager-list a {
        height: var(--layout-gap);
        margin: 0 calc(var(--layout-gap) / 8);
        min-width: var(--layout-gap);
        padding: 0 calc(var(--layout-gap) / 6);
        width: var(--layout-gap);
    }
    .pager-list a.next {
		min-width: calc(var(--layout-gap) * 2);
        padding: 0;
    }
}

/*------------------------------------------------
  11 各ページ共通
------------------------------------------------*/
/* ページタイトル */
.page_title {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 350px;
}
.page_title_inner {
	margin: auto;
	width: var(--layout-sp-width);
	max-width: var(--layout-inner-width);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.page_title_item {
	width: calc(100% - 40px);
	max-width: 590px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(255,255,255,0.8);
	border-radius: 20px;
	padding: 20px;
}
.common_title {
	font-weight: 900;
	font-size: 2rem;
	color: #000;
	text-align: center;
}
.common_title span {
	display: block;
}
.common_title span:nth-of-type(2) {
	text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
	font-size: 110%;
	color: var(--tertiary-color);
	line-height: 1;
}
.page_title_list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 0.5em;
}
.page_title_list_item {
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 700;
	border-radius: 100px;
	padding: 0.25em 2em;
}
.page_title_annotation {
	border-top: 1px solid #000;
	width: 100%;
	margin-top: 20px;
	padding-top: 20px;
	font-weight: 700;
}
.old_site, 
.dl_btn {
	margin: auto;
	margin-top: 50px;
	width: 90%;
	max-width: 360px;
}
.old_site a, 
.dl_btn a {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	color: #fff;
	background-color: var(--primary-color);
	padding: 1em;
	border-radius: 10px;
	border: 8px double #67a410;
	line-height: 1.5;
}
.member_list_wrap .old_site {
	margin-top: 0;
	margin-bottom: 100px;
	max-width: 400px;
}
.dl_btn a span {
	position: relative;
	padding-right: calc(33px + 0.5em);
}
.dl_btn a span::after {
	content: '';
	background-image: url(../images/icon_pdf.svg);
	background-repeat: no-repeat;
	background-size: 33px 40px;
	width: 33px;
	height: 40px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	filter: brightness(0) saturate(100%) invert(100%) sepia(35%) saturate(0%) hue-rotate(202deg) brightness(107%) contrast(101%);
}

@media screen and (min-width: 768px) {
	.page_title {
		height: 450px;
	}
	.page_title_item {
		border-radius: 25px;
		padding: 40px;
	}
	.page_title_list {
		flex-direction: row;
		gap: 10px;
	}
	.common_title {
		font-size: 4rem;
	}
	.page_title_annotation {
		text-align: center;
	}
	.dl_btn {
		margin-top: 80px;
	}
}

@media screen and (min-width: 1161px) {
	.page_title_item {
		border-radius: 30px;
	}
	.page_title_annotation {
		font-size: 1.8rem;
	}
	.old_site a {
		font-size: 1.4rem;
		height: 80px;
	}
	.dl_btn a {
		font-size: 1.8rem;
		height: 80px;
	}
	.member_list_wrap .old_site {
		margin-top: -50px;
	}
}

/* 見出し */
.common_heading span, 
.common_sub_heading span {
	display: block;
	line-height: 1;
}
.common_heading span:first-of-type {
	font-weight: 900;
	font-style: normal;
	font-size: 1.6rem;
	color: var(--tertiary-color);
}
.common_heading span:last-of-type {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	text-transform: uppercase;
	margin-top: 0.5em;
}
.common_heading.heading_light span:first-of-type, 
.common_heading.heading_light span:last-of-type {
	color: #fff;
}

/* 「詳しく見る」ボタン */
.common_read_more {
	margin-top: 50px;
}
.common_read_more a {
	display: inline-block;
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--primary-color);
	position: relative;
	padding-right: 60px;
}
.common_read_more a::after, 
.common_read_more a::before {
	position: absolute;
	content: '';
	top: 50%;
}
.common_read_more a::before {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-color);
	right: 0;
	transform: translateY(-50%);
}
.common_read_more a::after {
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	right: 18px;
}
.common_lead {
	margin-top: 1.5em;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 2;
	color: var(--secondary-color);
	text-align: center;
}
.common_lead.lead_light {
	color: #fff;
}
.common_lead_inner {
	display: inline-block;
	text-align: left;
}

/* ページ概要 */
.page_outline {
	margin-top: 40px;
	text-align: center;
	font-weight: 900;
	font-size: 1.6rem;
	color: #000;
}
.page_outline .underline {
	border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
	.common_heading span:first-of-type {
		font-size: 2rem;
	}
	.common_heading span:last-of-type {
		font-size: 4.8rem;
	}
	.page_outline {
		margin-top: 60px;
		font-size: 2rem;
	}
}

@media screen and (min-width: 1161px) {
	.page_outline {
		margin-top: 80px;
		font-size: 2.4rem;
	}
}

/*------------------------------------------------
  12 お知らせ一覧
------------------------------------------------*/
.news_list_item {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #e6e6e6;
}
.news_list_item:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}
.news_list_heading {
    font-weight: 500;
}
.news_list_link {
    display: block;
    position: relative;
    padding: 1em 0;
    padding-right: calc(40px + 1em);
}
.news_list_link::before, 
.news_list_link::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 0;

}
.news_list_link::before {
    background-color: #f7f5f3;
    border-radius: 50%;
}
.news_list_link::after {
    background-image: url('../images/arrow_left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 12px;
}
.news_list_nolink {
    padding: 1em 0;
    display: block;
}
.news_list_info {
    font-size: 1.4rem;
}
.news_date {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #8f9ca3;
    border-right: 1px solid #e6e6e6;
    padding-right: 1em;
}
.news_cate {
    color: var(--tertiary-color);
    font-weight: 500;
    padding-left: 1em;
}
.news_cate a {
    display: inline;
}

@media screen and (min-width: 1001px) {
    .news_list_item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

/*------------------------------------------------
  13 検索結果ページ
------------------------------------------------*/
.page_title.title_search {
    background-image: url('../images/header_bg.jpg');
}
.search-content {
	padding-top: 60px;
	padding-bottom: 60px;
}
.search-content-inner {
	margin: auto;
	width: var(--layout-sp-width);
	max-width: var(--layout-inner-width);
}
.no-item {
	text-align: center;
	font-weight: 500;
	color: #c91212;
	margin-bottom: 10em;
	font-size: 1.6rem;
}
.search-heading {
	border: 1px solid var(--tertiary-color);
	padding: 1em;
}
.search-detail {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--tertiary-color);
}
.search-number {
	margin: 0 0.25em;
	font-size: 2rem;
	color: #c91212;
}
.num-detail {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.2rem;
}
.search-results-wrap {
	margin-top: 50px;
	counter-reset: resalt_count;
}
.search-results-content {
	margin: 1.5em 0;
	padding: 1em 0;
	border-bottom: 1px solid #d1dbe8;
}
.search-results-content:last-of-type {
	border-bottom: none;
}
.search-result__title {
	font-size: 1.6rem;
	font-weight: 700;
	padding-left: 1em;
	color: var(--tertiary-color);
	position: relative;
}
.search-result__title::before {
	counter-increment: resalt_count;
    content: counter(resalt_count)".";
	font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--tertiary-color);
}
.search-result__excerpt {
	margin-left: 1em;
}

@media screen and (min-width: 768px) {
	.search-content {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.no-item {
		font-size: 1.8rem;
	}
	.search-detail {
		font-size: 1.8rem;
	}
	.search-number {
		font-size: 2.4rem;
	}
	.num-detail {
		font-size: 3rem;
	}
	.search-result__title {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 1161px) {
	.search-content {
		padding-top: 120px;
		padding-bottom: 150px;
	}
	.no-item {
		font-size: 2rem;
	}
}

/*------------------------------------------------
  14 投稿タイプページ
------------------------------------------------*/
.post_block {
	padding-top: 60px;
}
.post_block.post_block_single {
	padding-bottom: 60px;
}
.post_block_inner {
	margin: auto;
	width: var(--layout-sp-width);
	max-width: var(--layout-inner-width);
}

/* 投稿が無い場合 */
.no-entory {
	margin-top: 50px;
}
.no-entory p {
	text-align: center;
	font-weight: 700;
	color: var(--tertiary-color);
}

/* 一覧ページ */
.post_list_outer {
	margin-top: 50px;
	margin-bottom: 50px;
}
.post_list_wrap {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.post_list_item {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.post_list_title {
	order: 4;
	font-weight: 700;
	margin-top: 0.5em;
	margin-bottom: 30px;
	padding: 0 20px;
	line-height: 1.35;
}
.post_list_eyecatch {
	order: 1;
	overflow: hidden;
	aspect-ratio: 1 / 0.666;
}
.post_list_eyecatch a img {
	width: 100%;
	height: auto;
	transform: scale(1.1);
	transition: all 0.8s 0s ease;
}
.post_list_eyecatch a:hover img {
	transform: scale(1.0);
}
.post_list_info {
	order: 2;
	display: flex;
	margin: 1em 0;
	padding: 0 20px;
}
.post_list_content {
	order: 5;
	margin-top: 1em;
	font-size: 1.4rem;
	padding: 0 20px 30px;
}

/* 詳細ページ */
.post_single {
	margin-top: 50px;
}
.post_title {
	font-weight: 700;
	font-size: 1.8rem;
	color: #000;
}
.post_date {
	margin-top: 1em;
	margin-bottom: 1em;
}
.post_list_date time, 
.post_date time {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
	color: #999;
	line-height: 1;
	position: relative;
	padding-left: calc(16px + 0.5em);
}
.post_list_date time:nth-of-type(2), 
.post_date time:nth-of-type(2) {
	margin-left: 1em;
	padding-left: calc(16px + 1.5em);
	border-left: 1px solid #ccc;
}
.post_list_date time::before, 
.post_date time::before {
	content: '';
	background-repeat: no-repeat;
	background-size: 16px 16px;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.post_list_date time:nth-of-type(1):before, 
.post_date time:nth-of-type(1):before {
	background-image: url('../images/icon_published.svg');
	left: 0;
}
.post_list_date time:nth-of-type(2):before, 
.post_date time:nth-of-type(2):before {
	background-image: url('../images/icon_modified.svg');
	left: 1em;
}
.post_cate {
	display: flex;
	margin-bottom: 1em;
}
.post_cate a, 
.post_list_category a {
	font-weight: 500;
	font-size: 1.1rem;
	padding: 0.55em 1.5em;
	border-radius: 100px;
	background-color: var(--tertiary-color);
	color: #fff;
}
.post_detail {
	padding-top: 30px;
	margin-bottom: 30px;
	border-top: 3px solid var(--tertiary-color);
}
.post_detail h1, 
.post_detail h2, 
.post_detail h3, 
.post_detail h4, 
.post_detail h5, 
.post_detail h6 {
	font-weight: 700;
	margin-bottom: 2em;
	line-height: 1.6;
	color: #777;
}
.post_detail h1 {
	font-size: 2.6rem;
	color: #fff;
	background-color: var(--tertiary-color);
	padding: 0.25em 0.5em;
	border-left: 10px solid var(--primary-color);
}
.post_detail h2 {
	font-size: 2.4rem;
	color: var(--tertiary-color);
	border-left: 10px solid var(--tertiary-color);
	padding-left: 0.25em;
}
.post_detail h3 {
	font-size: 2.2rem;
	position: relative;
	padding: 1rem 0;
	border-bottom: 6px solid var(--tertiary-color);
}
.post_detail h3::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 10%;
	height: 6px;
	background-color: var(--primary-color);
}
.post_detail h4 {
	font-size: 2rem;
}
.post_detail h5 {
	font-size: 1.8rem;
}
.post_detail h6 {
	font-size: 1.6rem;
}
.post_detail p {
	line-height: 2;
	margin-bottom: 2em;
}
.post_detail p:last-of-type {
	margin-bottom: 0;
}
.post_detail strong {
	font-weight: 700;
}
.post_detail em {
	font-style: italic;
	padding: 0.5em 0;
}
.post_detail ul, 
.post_detail ol {
	margin: 1em 0;
}
.post_detail ul li, 
.post_detail ol li {
	padding: 0.25em 0;
	position: relative;
}
.post_detail ul li {
	padding-left: 1em;
}
.post_detail ol {
	counter-reset: li_count;
}
.post_detail ul li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0.9em;
}
.post_detail ol li {
	text-indent: -1em;
	padding-left: 1em;
}
.post_detail ol li::before {
	counter-increment: li_count;
	content: counter(li_count)".";
	color: var(--primary-color);
	margin-right: 0.4em;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.post_detail blockquote {
    position: relative;
	margin-top: 2em;
    padding: 1em 1em 1em 40px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777;
    border-left: 4px solid var(--primary-color);
}
.post_detail blockquote:before {
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    content: "“";
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    font-size: 60px;
    line-height: 1;
}
.post_detail blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
	color: #000;
	font-weight: 500;
}
.post_detail blockquote cite {
    display: block;
    text-align: right;
    color: #888;
    font-size: 0.9em;
}
.post_detail img {
	width: auto;
}
.post_detail a {
	font-weight: 500;
	color: var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}

/* 記事中の画像配置 */
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignleft {
	display: block;
	margin-left: 0;
	margin-right: auto;
}
.alignright {
	display: block;
	margin-left: auto;
	margin-right: 0;
}

/* SNSボタン */
.addtoany_share_save_container {
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	justify-content: center;
}

/* 次の記事、前の記事のナビゲーションのスタイル */
nav.navigation {
	margin-top: 60px;
}
.nav-links {
	font-size: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nav-links .nav-next {
	margin-left: auto;
}
.nav-links .nav-previous + .nav-next {
	margin-left: -1px;
}
.nav-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.5em;
	background-color: var(--tertiary-color);
	font-weight: 500;
	color: #fff;
	position: relative;
}
.nav-links a:hover {
	background-color: var(--tertiary-color-hover);
}
.nav-links .nav-previous a::before, 
.nav-links .nav-next a::before {
	content: '';
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	position: absolute;
	top: 50%;
}
.nav-links .nav-previous a::before {
	border-left: 2px solid #fff;
	left: 2em;
	transform: translateY(-50%) rotate(-45deg);
}
.nav-links .nav-next a::before {
	border-right: 2px solid #fff;
	right: 2em;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
	.post_block {
		padding-top: 90px;
	}
	.post_block.post_block_single {
		padding-bottom: 90px;
	}
	.post_cate a, 
	.post_list_category a {
		font-size: 1.3rem;
	}
	.post_title {
		font-size: 2.5rem;
	}
	.post_detail blockquote {
		padding: 1em 1em 1em 60px;
	}
	.post_detail blockquote:before {
		font-size: 90px;
	}
	.nav-links {
		font-size: 1.6rem;
		flex-direction: row;
	}
	.nav-links div[class^="nav-"] {
		width: calc(50% - 5px);
	}
	.post_list_outer {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	.post_list_wrap {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 100px 30px;
	}
	.post_list_item {
		width: calc(50% - 15px);
	}
	.post_list_title {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1161px) {
	.post_block {
		padding-top: 120px;
	}
	.post_block.post_block_single {
		padding-bottom: 120px;
	}
	.post_detail h1 {
		font-size: 3.2rem;
		padding: 0.5em 0.75em;
		border-left: 20px solid var(--primary-color);
	}
	.post_detail h2 {
		font-size: 3rem;
		padding-left: 0.5em;
	}
	.post_detail h3 {
		font-size: 2.8rem;
	}
	.post_detail h4 {
		font-size: 2.6rem;
	}
	.post_detail h5 {
		font-size: 2.4rem;
	}
	.post_detail h6 {
		font-size: 2.2rem;
	}
	.post_list_item {
		width: calc((100% / 3) - 20px);
	}
	nav.navigation {
		margin-top: 90px;
	}
}

@media screen and (min-width: 1601px) {
	.post_block {
		padding-top: 180px;
	}
	.post_block.post_block_single {
		padding-bottom: 180px;
	}
}

/*------------------------------------------------
  15 共通固定ページ
------------------------------------------------*/
.common_block {
	padding-top: 60px;
	margin: auto;
	width: var(--layout-sp-width);
	max-width: var(--layout-inner-width);
}

@media screen and (min-width: 768px) {
	.common_block {
		padding-top: 90px;
	}
}

@media screen and (min-width: 1161px) {
	.common_block {
		padding-top: 120px;
	}
}

@media screen and (min-width: 1601px) {
	.common_block {
		padding-top: 180px;
	}
}

/*------------------------------------------------
  16 お見積り依頼バナー
------------------------------------------------*/
.common_estimate_banner {
	margin: auto;
	margin-top: 60px;
	margin-bottom: 60px;
	background-color: #fff;
	border-radius: 20px;
	overflow: hidden;
	max-width: 900px;
}
.common_estimate_banner a {
	display: block;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.common_estimate_banner {
		margin-top: 90px;
		margin-bottom: 100px;
		border-radius: 29px;
	}
}

@media screen and (min-width: 1161px) {
	.common_estimate_banner {
		margin-top: 120px;
		margin-bottom: 130px;
	}
}

@media screen and (min-width: 1601px) {
	.common_estimate_banner {
		margin-top: 160px;
		margin-bottom: 180px;
	}
}
