@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	各固定ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	body直下にid名「wrapper」のdivがあります。
	こちらには、固定ページごとに異なるclass名(post-〇)が付与されますので、
	ご活用ください。
	
	【例】
	<body>
	<div id="wrapper" class="post-2 page type-page status-publish has-post-thumbnail hentry">

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



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

	レイアウト

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper{
	}

	main.outer_wrap {
		position: relative;
		max-width: none;
		/* max-width: 1920px; 固定幅レイアウト時 */
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 186px 0;
		margin: 0 auto;
		background: url(../img/bg_stripe01.jpg) center -196px / auto repeat-y;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wrapper {
	}

	main.outer_wrap {
		position: relative;
		width: 100%;
		min-height: 50vh;
		padding: 18vw 0;
		background: url(../img/bg_stripe01.jpg) center -31vw / 155% repeat-y;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		padding: 0 4vw;
	}
}





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

	メイン画像

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.main_cate {
		position: relative;
		background: url(../img/cate_main.jpg) center top / cover no-repeat;
		height: 23.7vw;
	}
	.main_cate_in {
		font-weight: 500;
		font-size: 2.5vw;
		color: #fff;
		position: absolute;
		z-index: 1;
		bottom: 7.3vw;
		left: 8.4vw;
		letter-spacing: 0.2vw;
		text-align: left;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		text-shadow: #000 1px 0 10px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		background: url(../img/cate_main.jpg) center top / cover no-repeat;
		height: 60vw;
	}
	.main_cate_in {
		font-weight: 500;
		font-size: 5vw;
		color: #fff;
		position: absolute;
		z-index: 1;
		bottom: 19vw;
		left: 7vw;
		letter-spacing: 0.05em;
		text-align: left;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		text-shadow: #000 1px 0 10px;
	}
}





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

	マージンボックス

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 120px;
	}
	.top_middle {
		margin-top: 80px;
	}
	.top_short {
		margin-top: 40px;
	}
	.top_vshort {
		margin-top: 20px;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 120px;
	}
	.bottom_middle {
		margin-bottom: 80px;
	}
	.bottom_short {
		margin-bottom: 40px;
	}
	.bottom_vshort {
		margin-bottom: 20px;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 120px;
		margin-bottom: 120px;
	}
	.both_middle {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.both_short {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.both_vshort {
		margin-top: 20px;
		margin-bottom: 20px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 16vw;
	}
	.top_middle {
		margin-top: 12vw;
	}
	.top_short {
		margin-top: 8vw;
	}
	.top_vshort {
		margin-top: 4vw;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 16vw;
	}
	.bottom_middle {
		margin-bottom: 12vw;
	}
	.bottom_short {
		margin-bottom: 8vw;
	}
	.bottom_vshort {
		margin-bottom: 4vw;
	}

	/* 両方にマージンを空ける
	----------------------------------------------- */
	.both_long {
		margin-top: 16vw;
		margin-bottom: 16vw;
	}
	.both_middle {
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
	.both_short {
		margin-top: 8vw;
		margin-bottom: 8vw;
	}
	.both_vshort {
		margin-top: 4vw;
		margin-bottom: 4vw;
	}

}




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

	パディングボックス

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 120px;
	}
	.p_top_middle {
		padding-top: 80px;
	}
	.p_top_short {
		padding-top: 40px;
	}
	.p_top_vshort {
		padding-top: 20px;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 120px;
	}
	.p_bottom_middle {
		padding-bottom: 80px;
	}
	.p_bottom_short {
		padding-bottom: 40px;
	}
	.p_bottom_vshort {
		padding-bottom: 20px;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.row_middle {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.row_short {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.row_vshort {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 16vw;
	}
	.p_top_middle {
		padding-top: 12vw;
	}
	.p_top_short {
		padding-top: 8vw;
	}
	.p_top_vshort {
		padding-top: 4vw;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 16vw;
	}
	.p_bottom_middle {
		padding-bottom: 12vw;
	}
	.p_bottom_short {
		padding-bottom: 8vw;
	}
	.p_bottom_vshort {
		padding-bottom: 4vw;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 16vw;
		padding-bottom: 16vw;
	}
	.row_middle {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}
	.row_short {
		padding-top: 8vw;
		padding-bottom: 8vw;
	}
	.row_vshort {
		padding-top: 4vw;
		padding-bottom: 4vw;
	}


	/* 背景色を伸ばす
	----------------------------------------------- */
	.row_sp {
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




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

	カラーボックス

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* カラー01 */
	.row_c01 {
		background: url(../img/bg_cube.jpg) center top / 50px repeat;
	}

	/* カラー02 */
	.row_c02 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,#fdfdfd;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 60px;
		border: 4px solid #111;
		background-color: #fff;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* カラー01 */
	.row_c01 {
		background: url(../img/bg_cube.jpg) center top / 10% repeat;
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		background: url(../img/spacer.gif) center top / auto auto repeat ,#fdfdfd;
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 8vw;
		border: 1vw solid #111;
		background-color: #fff;
	}
}




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

	見出し

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		padding-top: 56px;
	}
	.h2_cate h2 {
		position: relative;
		text-align: center;
		font-size: 32px;
		letter-spacing: 0.12em;
	}
	.h2_cate span {
		display: block;
		font-size: 14px;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		margin-top: 19px;
		letter-spacing: 0.09em;
	}
	.h2_cate h2:before {
		position: absolute;
		content: '';
		background: url(../img/icon.png) center top / contain no-repeat;
		width: 47px;
		height: 35px;
		top: -56px;
		left: 50%;
		margin-left: -23px;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #000000;
		padding: 0 0 16px 0 !important;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		letter-spacing: 0.05em;
	}
	
	/* h4見出し
	----------------------------------------------- */
	.h4_cate {
	}
	.h4_cate h4 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		letter-spacing: 0.05em;
	}
	
	/* テキスト
	----------------------------------------------- */
	.cate_text01 {
		font-size: 18px;
		text-align: center;
		letter-spacing: 0.11em;
	}
	.cate_text01 p + * {
		margin-top: 1.95em;
	}
	.cate_text02 {
		font-size: 18px;
		letter-spacing: 0.11em;
	}
	.cate_text02 p + * {
		margin-top: 1.95em;
	}

}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		padding-top: 11vw;
	}
	.h2_cate h2 {
		position: relative;
		text-align: center;
		font-size: 5vw;
		letter-spacing: 0.12em;
		line-height: 1.4;
	}
	.h2_cate span {
		display: block;
		font-size: 3vw;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		margin-top: 4vw;
		letter-spacing: 0.09em;
	}
	.h2_cate h2:before {
		position: absolute;
		content: '';
		background: url(../img/icon.png) center top / contain no-repeat;
		width: 9vw;
		height: 7vw;
		top: -11vw;
		left: 50%;
		margin-left: -4.5vw;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid #000000;
		padding: 0 0 1.5vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		letter-spacing: 0.05em;
	}

	/* h4見出し
	----------------------------------------------- */
	.h4_cate {
	}
	.h4_cate h4 {
		font-size: 5vw;
		font-weight: 500;
		line-height: 1.4 !important;
		text-align: center;
		letter-spacing: 0.05em;
	}

	/* テキスト
	----------------------------------------------- */
	.cate_text01 {
		text-align: center;
		letter-spacing: 0.11em;
	}
	.cate_text01 p + * {
		margin-top: 1.3em;
	}
	.cate_text02 {
		letter-spacing: 0.11em;
	}
	.cate_text02 p + * {
		margin-top: 1.3em;
	}

}




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

	共通ボタン

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 40px;
	}
	.link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.link_common ul li {
		display: inline-block;
		font-size: 22px;
		letter-spacing: 0;
		margin-left: 20px;
	}
	.link_common ul li:first-of-type {
		margin-left: 0;
	}
	.link_common ul li a {
		background-color: #ededed;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
		position: relative;
		color: #111111;
		font-size: 20px;
		display: block;
		letter-spacing: 0.055em;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		font-weight: bold;
	}
	.link_common ul li a::after {
		position: absolute;
		content: '';
		background: url(../img/arrow01.png) center top / contain no-repeat;
		width: 12px;
		height: 15px;
		top: 50%;
		right: 21px;
		margin-top: -7.5px;
	}
	
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
		margin-top: 6vw;
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
	}
	.link_common ul li {
		margin-top: 2vw;
	}
	.link_common ul li:first-of-type {
		margin-top: 0;
	}
	
	.link_common ul li a {
		position: relative;
		color: #111111;
		font-size: 4.5vw;
		display: block;
		letter-spacing: 0.055em;
		background-color: #ededed;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 0 0.9em;
		margin-left: auto;
		margin-right: auto;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		font-weight: bold;
	}
	.link_common ul li a:after {
		position: absolute;
		content: '';
		background: url(../img/arrow01.png) center top / contain no-repeat;
		width: 2.8vw;
		height: 4vw;
		top: 50%;
		right: 6vw;
		margin-top: -1.8vw;
	}
	
	
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここから各固定ページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


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

	実績紹介部分

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


/* カテゴリアイコン色 */
.works_icon span {
	background-color: #222222;
	color: #ffffff;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.works_wrap {
		position: relative;
		width: 1000px;
		margin:0 auto;
	}
	.works_wrap ul {
		font-size: 0;
		text-align: center;
	}
	.works_wrap > ul > li {
		display: inline-block;
		vertical-align: top;
		text-align: left;
		width: 320px;
		margin-left: 20px;
		font-size: 16px;
	}
	.works_wrap > ul > li:nth-of-type(3n+1) {
		margin-left: 0;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(16px);
		-webkit-transform: translateY(16px);
		-ms-transform: translateY(16px);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		width: 100%;
		height: 213px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 18px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.works_wrap {
		position: relative;
		margin: 0 auto;
	}
	.works_wrap > ul {
	}
	.works_wrap > ul > li {
		position: relative;
		padding: 0;
		margin-top: 6vw;
	}
	.works_wrap > ul > li:first-of-type {
		margin-top: 0;
	}

	.works_wrap > ul > li > a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		
		border: 1px solid #cccccc;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: relative;
		height: 0;
	}
	.works_icon span {
		position: relative;
		display: inline-block;
		transform: translateY(4vw);
		-webkit-transform: translateY(4vw);
		-ms-transform: translateY(4vw);
		padding: 0 0.5em 0.1em;
		z-index: 1;
	}


	/* サムネイル画像 */
	.works_thumb img {
		max-width: 100%;
		width: 100%;
		height: 62vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 4vw;
	}

}





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

	会社概要

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

.company_map iframe {
	filter: grayscale(1);
}

.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	取扱品目

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

.item_box01 {
	background-color: #ededed;
}
.item_box02 {
	background-color: #cecece;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {	
	.item_title {
		position: relative;
		color: #111111;
		font-size: 20px;
		display: block;
		padding: 40px;
		letter-spacing: 0.05em;
		text-align: center;
	}
	
	.item_text {
		position: relative;
		color: #111111;
		display: block;
		padding: 40px 40px 40px 0;
		letter-spacing: 0.05em;
		line-height: 1.8;
	}
	
	.contact_tel,
	.contact_fax {
		text-align: center;
	}
	.contact_tel a,
	.contact_fax a {
		font-weight: bold;
		font-size: 45px;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.055em;
		pointer-events: none;
	}
	.contact_tel a span,
	.contact_fax a span {
		font-size: 30px;
		margin-right: 10px;
	}
	
	.contact_text {
		text-align: center;
	}
	
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.item_title {
		position: relative;
		color: #111111;
		font-size: 4.5vw;
		display: block;
		padding: 10vw 6vw 0;
		letter-spacing: 0.05em;
		text-align: center;
	}
	
	.item_text {
		position: relative;
		color: #111111;
		display: block;
		padding: 6vw 6vw 10vw;
		letter-spacing: 0.05em;
	}
	
	.contact_tel,
	.contact_fax {
		text-align: center;
	}
	.contact_fax {
		margin-top: -2vw;
	}
	.contact_tel a,
	.contact_fax a {
		font-weight: bold;
		font-size: 8vw;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		letter-spacing: 0.055em;
	}
	.contact_tel a span,
	.contact_fax a span {
		font-size: 5.5vw;
		margin-right: 1vw;
	}
	
	.contact_text {
		text-align: center;
	}
	
	.item_row02 .top_short {
		margin-top: 4vw;
	}
	
	
}





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

	取引先メーカー

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.maker_row {
		margin-left: 8vw;
		margin-right: 8vw;
	}
}





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

	ご発注の流れ

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

.page-flow .outer_wrap {
	padding-bottom: 0;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
	/* ボタン
	----------------------------------------------- */
	.flow_btn {
	}
	.flow_btn ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.flow_btn ul li {
		display: inline-block;
		letter-spacing: 0;
		margin-left: 20px;
	}
	.flow_btn ul li:first-of-type {
		margin-left: 0;
	}
	.flow_btn ul li a {
		background-color: #111111;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 1em 6.2em 0.9em;
		position: relative;
		color: #ffffff;
		font-size: 26px;
		display: block;
		letter-spacing: 0.055em;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		font-weight: bold;
	}
	
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
	/* リンク
	----------------------------------------------- */
	.flow_btn {
	}
	.flow_btn ul {
		text-align: center;
	}
	.flow_btn ul li {
		display: block;
		font-size: 4vw;
	}
	.flow_btn ul li {
		margin-top: 4vw;
	}
	.flow_btn ul li:first-of-type {
		margin-top: 0;
	}
	
	.flow_btn ul li a {
		position: relative;
		color: #ffffff;
		font-size: 4.5vw;
		display: block;
		letter-spacing: 0.055em;
		background-color: #111111;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 1em 0 1.1em;
		margin-left: auto;
		margin-right: auto;
		font-family: 'Roboto Condensed', 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
		font-weight: bold;
	}
	
	
}





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

	 お問い合わせ / 見積もり

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

.page-contact .outer_wrap,
.page-request .outer_wrap {
	padding-bottom: 0;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	〇〇ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	〇〇ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	〇〇ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	〇〇ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}