@charset "UTF-8";
/**************************************************/
/* mixin */
/**************************************************/
/***** font-size ******/
/**例
h1 {
	font-size: rem(24px); // -> 1.5rem
}
**/
/***** clearfix ******/
/***** opacity *****/
/***** placeholder *****/
/*************** 矢印 線タイプ ****************/
/*************** 矢印 線タイプ2重 ****************/
/*************** 矢印 塗りタイプ ****************/
/*************** 吹き出しボックス ****************/
/*************** フロー矢印 ****************/
/* 塗り矢印 */
/* 線矢印 */
/*************** テーブル風リスト ****************/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, select, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

/* html5要素 */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article, aside, dialog, figure, footer, header, time, picture,
hgroup, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
	vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before, q:after {
	content: "";
}

abbr, acronym {
	border: 0;
}

a {
	/*outline:none; アクセシビリティのためoutlineは消してはいけない*/
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/*************** フォーム ***************/
*:-moz-placeholder-shown {
	color: #aaaaaa;
}
*:-ms-input-placeholder {
	color: #aaaaaa;
}
*:placeholder-shown {
	color: #aaaaaa;
}

*::-webkit-input-placeholder {
	color: #aaaaaa;
}

*:-moz-placeholder {
	color: #aaaaaa;
	opacity: 1;
}

*::-moz-placeholder {
	color: #aaaaaa;
	opacity: 1;
}

*:-ms-input-placeholder {
	color: #aaaaaa;
}

button {
	font-family: YakuHanMPs, "Noto Serif JP", serif;
	vertical-align: middle;
	cursor: pointer;
}

input[type=text],
input[type=password],
textarea,
select {
	padding: 10px 5px;
	line-height: 1.4;
	min-height: 46px;
	border: 1px solid #aaaaaa;
	border-radius: 3px;
	background: #fafafa;
	color: #111111;
	font-size: 1rem;
	font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	vertical-align: middle;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
input[type=text]:hover,
input[type=password]:hover,
textarea:hover,
select:hover {
	border-color: #888888;
	background: #ffffff;
	color: #333333;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color: #67CBDF;
	background: #ffffff;
	color: #333333;
	-webkit-box-shadow: 0 0 0 3px rgba(103, 203, 223, 0.2);
	        box-shadow: 0 0 0 3px rgba(103, 203, 223, 0.2);
}
input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled,
select:disabled {
	border-color: #888888;
	background: #EBEBE4;
	color: #777777;
	cursor: not-allowed;
}

input[type=text],
input[type=password],
textarea {
	-webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
	position: relative;
	top: -0.1em;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

select {
	max-width: 100%;
	height: 46px;
}

label {
	cursor: pointer;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.5;
	min-width: 1530px;
	font-size: 1.0833333333rem;
	font-family: YakuHanMPs, "Noto Serif JP", serif;
	background: #ffffff;
	color: #393939;
	word-wrap: break-word;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 1530px) {
	body {
		min-width: 990px;
		font-size: 1.0833333333rem;
		-webkit-text-size-adjust: 100%;
	}
}
@media only screen and (max-width: 990px) {
	body {
		min-width: 320px;
		font-size: 0.9479166667rem;
		-webkit-text-size-adjust: 100%;
	}
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
	outline: none;
}

table a {
	word-break: break-all;
}

br {
	letter-spacing: 0;
}

a {
	color: #007ae5;
	text-decoration: none;
	-webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover {
	/*マウスをのせたとき*/
	color: #666666;
	text-decoration: underline;
}
a:active {
	/*マウスを押したとき*/
	color: #666666;
	text-decoration: none;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.sns-btn-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.sns-btn-list__item {
	margin-left: 15px;
	line-height: 1;
}

select.custom-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 30px;
	width: 200px;
	height: 50px;
	line-height: 40px;
	background-size: 10px 30px;
	background-position: right 10px center;
}
select.custom-select::-ms-expand {
	display: none;
}
select.custom-select.is-example1 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}
select.custom-select.is-example2 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}
select.custom-select.is-example3 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="0.7" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}
select.custom-select.is-example4 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}
select.custom-select.is-example5 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}
select.custom-select.is-example6 {
	background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="0.7" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
	background-repeat: no-repeat;
}

.l-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.l-row.is-no-gutter {
	margin-right: 0;
	margin-left: 0;
}
.l-row.is-no-gutter > [class^=l-col-], .l-row.is-no-gutter > [class*=" l-col-"] {
	padding-right: 0;
	padding-left: 0;
}
.l-row.is-s {
	margin-left: -5px;
	margin-right: -5px;
}
.l-row.is-s > [class^=l-col-], .l-row.is-s > [class*=" l-col-"] {
	padding-right: 5px;
	padding-left: 5px;
}
.l-row.is-m {
	margin-left: -15px;
	margin-right: -15px;
}
.l-row.is-m > [class^=l-col-], .l-row.is-m > [class*=" l-col-"] {
	padding-right: 15px;
	padding-left: 15px;
}
.l-row.is-l {
	margin-left: -30px;
	margin-right: -30px;
}
.l-row.is-l > [class^=l-col-], .l-row.is-l > [class*=" l-col-"] {
	padding-right: 30px;
	padding-left: 30px;
}

.l-col-1, .l-col-2, .l-col-3, .l-col-4, .l-col-5, .l-col-6, .l-col-7, .l-col-8, .l-col-9, .l-col-10, .l-col-11, .l-col-12,
.l-col-sp-1, .l-col-sp-2, .l-col-sp-3, .l-col-sp-4, .l-col-sp-5, .l-col-sp-6, .l-col-sp-7, .l-col-sp-8, .l-col-sp-9, .l-col-sp-10, .l-col-sp-11, .l-col-sp-12 {
	padding-left: 15px;
	padding-right: 15px;
}

.l-col-12 {
	width: 100%;
}

.l-col-11 {
	width: 91.66666667%;
}

.l-col-10 {
	width: 83.33333333%;
}

.l-col-9 {
	width: 75%;
}

.l-col-8 {
	width: 66.66666667%;
}

.l-col-7 {
	width: 58.33333333%;
}

.l-col-6 {
	width: 50%;
}

.l-col-5 {
	width: 41.66666667%;
}

.l-col-4 {
	width: 33.33333333%;
}

.l-col-3 {
	width: 25%;
}

.l-col-2 {
	width: 16.66666667%;
}

.l-col-1 {
	width: 8.33333333%;
}

@media only screen and (max-width: 1530px) {
	.l-col-tb-12 {
		width: 100%;
	}

	.l-col-tb-11 {
		width: 91.66666667%;
	}

	.l-col-tb-10 {
		width: 83.33333333%;
	}

	.l-col-tb-9 {
		width: 75%;
	}

	.l-col-tb-8 {
		width: 66.66666667%;
	}

	.l-col-tb-7 {
		width: 58.33333333%;
	}

	.l-col-tb-6 {
		width: 50%;
	}

	.l-col-tb-5 {
		width: 41.66666667%;
	}

	.l-col-tb-4 {
		width: 33.33333333%;
	}

	.l-col-tb-3 {
		width: 25%;
	}

	.l-col-tb-2 {
		width: 16.66666667%;
	}

	.l-col-tb-1 {
		width: 8.33333333%;
	}
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
@media only screen and (max-width: 990px) {
	.l-col-sp-12 {
		width: 100%;
	}

	.l-col-sp-11 {
		width: 91.66666667%;
	}

	.l-col-sp-10 {
		width: 83.33333333%;
	}

	.l-col-sp-9 {
		width: 75%;
	}

	.l-col-sp-8 {
		width: 66.66666667%;
	}

	.l-col-sp-7 {
		width: 58.33333333%;
	}

	.l-col-sp-6 {
		width: 50%;
	}

	.l-col-sp-5 {
		width: 41.66666667%;
	}

	.l-col-sp-4 {
		width: 33.33333333%;
	}

	.l-col-sp-3 {
		width: 25%;
	}

	.l-col-sp-2 {
		width: 16.66666667%;
	}

	.l-col-sp-1 {
		width: 8.33333333%;
	}
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/*************** ヘッダー ***************/
#l-header {
	position: relative;
	border-top: 5px solid #a92e30;
}
#l-header:before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #b38754;
}

.l-header__copy {
	padding-top: 15px;
	padding-bottom: 3px;
	font-size: 0.75rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header__copy {
		display: none;
	}
}

.l-header-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 0;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-main {
		display: block;
		position: relative;
		padding: 0;
		height: auto;
	}
}

.l-header-main__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-main__logo {
		height: 55px;
	}
}
.l-header-main__logo img {
	width: 180px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-main__logo img {
		width: 120px;
	}
}

/*************** メインナビ ***************/
.l-main-navi-btn {
	display: none;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-btn {
		display: block;
		position: absolute;
		top: 2px;
		right: -15px;
		padding: 0;
		border: 0;
		background: transparent;
		-webkit-perspective: 1000px;
		        perspective: 1000px;
	}
}

.l-main-navi {
	display: block;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi {
		margin: 0;
		width: 100%;
	}
}

.l-main-navi .l-container {
	position: relative;
}

.l-main-navi-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	position: relative;
	height: 75px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-wrap {
		display: none;
		position: relative;
		z-index: 1;
		margin-left: -15px;
		margin-right: -15px;
		padding-top: 30px;
		padding-bottom: 30px;
		height: auto;
		background: #ede5dd;
		-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
		        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
	}
}
@media only screen and (min-width: 991px) {
	.l-main-navi-wrap {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
}

.l-main-navi-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 40px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list {
		display: block;
		margin-top: 0;
	}
}

.l-main-navi-list__item {
	margin-left: 40px;
	min-width: 75px;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list__item {
		margin-left: 0;
		min-width: 0;
		text-align: left;
	}
}

.l-main-navi-list__link {
	display: block;
	position: relative;
	font-size: 1rem;
	color: #393939;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list__link {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		position: relative;
		padding: 18px 30px;
		font-size: 1rem;
		font-weight: bold;
		background: #ede5dd;
	}
	.l-main-navi-list__link:after {
		display: block;
		content: "";
		margin-top: 0px;
		margin-left: auto;
		width: 8px;
		height: 8px;
		border-right: 1px solid #b38754;
		border-bottom: 1px solid #b38754;
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}
.l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
	color: #a92e30;
	text-decoration: none;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
		color: #393939;
		background: #ddd2ca;
	}
}
.l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
	color: #a92e30;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
		color: #393939;
	}
}

.l-main-navi-list__main {
	display: block;
	font-weight: bold;
}

.l-main-navi-list__sub {
	display: block;
	margin-top: 2px;
	font-size: 0.625rem;
	color: #777777;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-list__sub {
		margin-top: 0;
		margin-left: 15px;
		font-size: 0.75rem;
	}
}

.l-main-navi-contact {
	margin-top: 28px;
	margin-left: 30px;
	width: 180px;
	-webkit-font-feature-settings: "pkna";
	        font-feature-settings: "pkna";
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.l-main-navi-contact:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}
@media only screen and (max-width: 990px) {
	.l-main-navi-contact {
		margin: 30px 15px;
		width: calc(100% - 30px);
		font-size: 1.125rem;
	}
}
.l-main-navi-contact i {
	margin-right: 15px;
	font-size: 1.125rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-contact i {
		margin-right: 15px;
	}
}

.l-main-navi-contact__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	line-height: 45px;
	border: 1px solid #a92e30;
	border-radius: 23px;
	background: #a92e30;
	color: #ffffff;
}
.l-main-navi-contact__link:hover {
	text-decoration: none;
	background: rgba(169, 46, 48, 0.8);
	color: #ffffff;
}

.l-main-navi-btn-close {
	display: none;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi-btn-close {
		display: block;
		margin: 30px auto 0 auto;
		padding: 10px 15px;
		width: 120px;
		border: 1px solid #b38754;
		border-radius: 23px;
		background: transparent;
		color: #b38754;
		font-size: 0.875rem;
		text-align: center;
	}
	.l-main-navi-btn-close img {
		margin-right: 10px;
		margin-bottom: 2px;
		width: 12px;
	}
}

/*************** ヘルプナビ ***************/
.l-help-navi-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: -18px;
	right: 165px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-help-navi-list {
		position: static;
		display: block;
	}
}

.l-help-navi-list__item {
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 0.75rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-help-navi-list__item {
		padding-left: 0;
		padding-right: 0;
		border-bottom: 1px solid #cfbfac;
		font-size: 0.875rem;
	}
}
.l-help-navi-list__item:before {
	content: "";
	position: absolute;
	top: 2px;
	right: 0;
	width: 1px;
	height: 14px;
	background: #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-help-navi-list__item:before {
		content: none;
	}
}
.l-help-navi-list__item:first-child:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 1px;
	height: 14px;
	background: #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-help-navi-list__item:first-child:after {
		content: none;
	}
}

.l-help-navi-list__link {
	color: #777777;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-help-navi-list__link {
		display: block;
		padding: 15px 15px;
		color: #555555;
	}
	.l-help-navi-list__link:hover {
		text-decoration: none;
	}
}

/*************** 電話 ***************/
.l-header-tel,
.l-header-contact {
	position: absolute;
	top: 5px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-tel,
.l-header-contact {
		position: static;
	}
}

.l-header-tel {
	right: 120px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-tel {
		margin: 30px 30px 15px 30px;
	}
}

.l-header-contact {
	right: 0px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-contact {
		margin: 0px 30px 30px 30px;
	}
}

.l-header-tel__link,
.l-header-contact__link {
	font-size: 0.9375rem;
	color: #b38754;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-tel__link,
.l-header-contact__link {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		line-height: 60px;
		border: 1px solid #b38754;
		font-size: 1.125rem;
		background: #b38754;
		color: #ffffff;
	}
	.l-header-tel__link:hover,
.l-header-contact__link:hover {
		text-decoration: none;
		background: rgba(179, 135, 84, 0.8);
		color: #ffffff;
	}
	.l-header-tel__link i,
.l-header-contact__link i {
		margin-right: 15px;
	}
}
.l-header-tel__link:hover,
.l-header-contact__link:hover {
	text-decoration: none;
}

/*************** カート ***************/
.l-header-cart {
	position: absolute;
	top: -20px;
	right: 0;
	font-size: 0.875rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-cart {
		position: static;
		margin: 30px 15px;
	}
}

.l-header-cart__link {
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-cart__link {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		line-height: 45px;
		border: 1px solid #a92e30;
		border-radius: 23px;
		font-size: 1.125rem;
		background: #a92e30;
		color: #ffffff;
	}
	.l-header-cart__link:hover {
		text-decoration: none;
		background: #007ae5;
		color: #ffffff;
	}
	.l-header-cart__link i {
		margin-right: 15px;
	}
}
.l-header-cart__link:hover {
	text-decoration: none;
}

.l-header-cart__item {
	display: inline-block;
	margin-left: 5px;
	border-radius: 5px;
	min-width: 20px;
	line-height: 20px;
	background: #a92e30;
	color: #ffffff;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-header-cart__item {
		background: #ffffff;
		color: #a92e30;
	}
}

.l-main-navi__copy {
	display: none;
	margin-bottom: 20px;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 0.75rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-main-navi__copy {
		display: block;
	}
}

/*************** フッター ***************/
#l-footer {
	position: relative;
	padding: 30px 0;
	font-size: 0.875rem;
	background: #a92e30;
	color: #ffffff;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	#l-footer {
		font-size: 0.625rem;
	}
}
#l-footer + iframe {
	display: none;
}
#l-footer:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #b38754;
}

.l-footer-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 30px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-main {
		display: block;
	}
}

.l-footer-navi-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-bottom: 15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-navi-list {
		display: block;
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 0;
	}
}

.l-footer-navi-list__item {
	position: relative;
	margin-right: 30px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-navi-list__item {
		margin-right: 0;
	}
}
.l-footer-navi-list__item:last-child {
	margin-right: 0;
}

.l-footer-navi-list__link {
	display: block;
	color: #ffffff;
	text-align: right;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-navi-list__link {
		position: relative;
		padding-left: 30px;
		padding-right: 30px;
		line-height: 45px;
		font-size: 0.875rem;
		text-align: left;
	}
	.l-footer-navi-list__link:before {
		content: "";
		display: block;
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -4px;
		width: 10px;
		height: 10px;
		border-right: 1px solid #666666;
		border-bottom: 1px solid #666666;
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}
.l-footer-navi-list__link:hover {
	color: #ffffff;
}

.l-footer-copy {
	margin-bottom: 15px;
}

.l-footer-main-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-main-wrap {
		display: block;
	}
}

.l-footer-logo {
	width: 180px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-logo {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
		width: 120px;
	}
}

.l-footer-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-bottom {
		display: block;
	}
}

.l-footer-info {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 0.75rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-footer-info {
		text-align: center;
	}
}

.l-copyright {
	font-size: 0.625rem;
	text-align: right;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-copyright {
		margin-top: 30px;
		font-size: 0.625rem;
		text-align: center;
	}
}

/*************** ボトム バナー ***************/
.l-bottom-bnr {
	margin-top: 60px;
	padding-bottom: 30px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-bottom-bnr {
		margin-top: 30px;
	}
}

.l-bottom-bnr-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-bottom-bnr-list {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}
}

.l-bottom-bnr-list__item {
	margin-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-bottom-bnr-list__item {
		margin-bottom: 20px;
		padding-left: 0;
		padding-right: 0;
		width: auto;
		text-align: center;
	}
}

.l-bottom-bnr-list__img {
	margin-bottom: 5px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-bottom-bnr-list__img img {
		max-width: 330px;
	}
}

.l-bottom-bnr-list__body {
	font-size: 0.875rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-bottom-bnr-list__body {
		font-size: 0.75rem;
	}
}

/*************** 固定フッター ***************/
.l-fix-link {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
}

.l-fix-link-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 5px;
	padding-bottom: 5px;
	height: 60px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-wrap {
		display: block;
		padding: 5px 15px;
		height: 90px;
		min-width: 320px;
	}
}

.l-fix-link__body {
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link__body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-bottom: 5px;
		font-size: 0.6875rem;
		height: 33px;
	}
}

.l-fix-link-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.l-fix-link-open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 30px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-open {
		display: block;
	}
}

.l-fix-link-open__tel {
	margin-right: 15px;
	font-size: 1.875rem;
	font-weight: bold;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-open__tel {
		margin-right: 0;
		font-size: 0.875rem;
	}
}

.l-fix-link-open__time {
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-open__time {
		font-size: 0.6875rem;
	}
}

.l-fix-link-contact {
	width: 180px;
	-webkit-font-feature-settings: "pkna";
	        font-feature-settings: "pkna";
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.l-fix-link-contact:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}
@media only screen and (max-width: 990px) {
	.l-fix-link-contact {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		width: auto;
	}
}
.l-fix-link-contact a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	line-height: 40px;
	border: 1px solid #ffffff;
	border-radius: 20px;
	background: #ffffff;
	color: #393939;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-contact a {
		border-radius: 10px;
		line-height: 35px;
	}
}
.l-fix-link-contact a:hover {
	text-decoration: none;
}
.l-fix-link-contact i {
	margin-right: 15px;
	font-size: 1.125rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-fix-link-contact i {
		margin-right: 10px;
	}
}

/*************** パンくず ***************/
.breadcrumbs {
	padding: 5px 0;
	font-size: 12px;
	background: #ede5dd;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.breadcrumbs {
		padding: 7px 0;
		font-size: 10px;
	}
}

.breadcrumbs-list {
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.breadcrumbs-list__item {
	position: relative;
	display: inline-block;
	margin-right: 25px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.breadcrumbs-list__item {
		margin-top: 3px;
		margin-bottom: 3px;
	}
}
.breadcrumbs-list__item a {
	color: #888888;
}
.breadcrumbs-list__item:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: -15px;
	margin-top: -4px;
	width: 6px;
	height: 6px;
	border-right: 1px solid #aaaaaa;
	border-bottom: 1px solid #aaaaaa;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.breadcrumbs-list__item:last-child {
	margin-right: 0;
}
.breadcrumbs-list__item:last-child a {
	color: #393939;
}
.breadcrumbs-list__item:last-child:before {
	content: none;
}

#top .breadcrumbs-list__item:before {
	content: none;
}

/*************** サイド ***************/
.l-side-bnr-list__item {
	margin-bottom: 15px;
}

.l-side-box {
	margin-bottom: 45px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-side-box {
		margin-bottom: 30px;
	}
}

.l-side-ttl {
	margin-bottom: 20px;
	font-size: 15px;
	color: #000000;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-side-ttl {
		margin-bottom: 10px;
	}
}

.l-side-list__item {
	position: relative;
	margin-bottom: 20px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-side-list__item {
		margin-bottom: 2px;
	}
}

.l-side-list__link {
	color: #696969;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-side-list__link {
		display: block;
		padding: 11px 15px;
		background: #fafafa;
		color: #696969;
	}
	.l-side-list__link:hover {
		background: #f0f0f0;
		text-decoration: none;
	}
}
.l-side-list__link:before {
	content: "- ";
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-side-list__link:before {
		content: none;
	}
}

/*************** スタイルガイド サイドナビ ***************/
.c-side-index-list__item {
	margin-bottom: 30px;
}

.c-side-index-list__link {
	display: block;
	padding: 0;
	border: none;
	font-size: 1rem;
	font-weight: bold;
	background: transparent;
}

.c-side-index-sub-list {
	margin-top: 10px;
}

.c-side-index-sub-list__item {
	margin-bottom: 5px;
}

.c-side-index-sub-list__link {
	display: block;
	padding: 5px 10px;
	font-size: 0.875rem;
	border-radius: 5px;
}
.c-side-index-sub-list__link.is-current {
	background: #fafafa;
	font-weight: bold;
}
.c-side-index-sub-list__link:hover {
	background: #fafafa;
	text-decoration: none;
}

/*************** コンテンツレイアウト ***************/
.l-container {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-container {
		width: 100%;
		min-width: 320px;
	}
}
@media only screen and (min-width: 991px) {
	.l-container {
		width: 990px;
	}
}
@media only screen and (min-width: 1531px) {
	.l-container {
		width: 1230px;
	}
}

@media (orientation: portrait) {
	.l-main {
		min-height: 800px;
		/*
			@if $media-width == tb {
				// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
				// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
				@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
					@content;
				}
			}
			@if $media-width == min-tb {
				// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
				// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
				@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
					@content;
				}
			}
			@if $media-width == tb-vert {
				@media only screen and (max-width: $bp-tb-vert) {
					@content;
				}
			}
			@if $media-width == min-tb-vert {
				@media only screen and (min-width: $bp-min-tb-vert) {
					@content;
				}
			}
			@if $media-width == tb-hor {
				@media only screen and (max-width: $bp-tb-hor) {
					@content;
				}
			}
			@if $media-width == min-tb-hor {
				@media only screen and (min-width: $bp-min-tb-hor) {
					@content;
				}
			}
		*/
	}
}
@media only screen and (orientation: portrait) and (max-width: 990px) {
	.l-main {
		min-height: inherit;
	}
}
.l-main {
	min-height: 600px;
}

.l-contents-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 990px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-contents-wrap {
		display: block;
	}
}

.l-contents-side {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	width: 165px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-contents-side {
		margin-right: 0;
		width: auto;
	}
}

.l-contents-main {
	width: 780px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-contents-main {
		width: auto;
	}
}

/***** フルサイズコンテンツ(スタイルガイドページ) *****/
.l-full-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	border-top: 1px solid #cfbfac;
	min-width: 1290px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-full-container {
		display: block;
		min-width: inherit;
	}
}

.l-full-container__side {
	padding: 30px;
	width: 240px;
	background: #f5f5f5;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-full-container__side {
		width: auto;
	}
}

.l-full-container__main {
	padding: 0 30px;
	padding-top: 30px;
	width: 1050px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-full-container__main {
		padding: 0 15px;
		width: auto;
	}
}

/*************** コンテンツ間の余白 ***************/
.l-contents {
	padding-top: 75px;
	padding-bottom: 90px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-contents {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}
.l-contents.is-bg {
	background: #ede5dd;
}
.l-contents.is-border {
	border-top: 1px solid #cfbfac;
}
.l-contents .l-contents-box:last-child {
	margin-bottom: 0;
}

.l-contents-box {
	margin-bottom: 60px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.l-contents-box {
		margin-bottom: 45px;
	}
}

/*********************************************/
/* Components title */
/*********************************************/
.c-ttl-main {
	margin-bottom: 40px;
	line-height: 1.2;
	font-size: 2.25rem;
	font-weight: bold;
	color: #333333;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.c-ttl-main.is-left {
	text-align: left;
}
@media only screen and (max-width: 990px) {
	.c-ttl-main {
		margin-bottom: 30px;
		font-size: 1.875rem;
		text-align: center;
	}
}

.c-ttl-main__en {
	display: block;
	font-size: 3.75rem;
	font-weight: bold;
	color: #a92e30;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-ttl-main__en {
		font-size: 2.25rem;
	}
}

.c-ttl-main__ja {
	display: inline-block;
	padding-bottom: 15px;
	border-bottom: 1px solid #a92e30;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-ttl-main__ja {
		padding-bottom: 10px;
	}
}

.c-ttl-sub {
	position: relative;
	margin-bottom: 45px;
	font-size: 1.875rem;
	color: #000000;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-ttl-sub {
		margin-bottom: 30px;
		font-size: 1.5rem;
	}
}
.c-ttl-sub:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -15px;
	margin-left: -15px;
	width: 30px;
	height: 1px;
	background: #a92e30;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-ttl-sub:before {
		bottom: -10px;
	}
}
.c-ttl-sub.is-left {
	text-align: left;
}
.c-ttl-sub.is-left:before {
	left: 0;
	margin-left: 0;
}

.c-ttl-sub-s {
	margin-bottom: 20px;
	padding-left: 25px;
	border-left: 1px solid #a92e30;
	font-size: 1.3125rem;
	color: #000000;
	line-height: 1.4;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-ttl-sub-s {
		margin-bottom: 15px;
		padding-left: 15px;
		font-size: 1.125rem;
	}
}

.c-ttl-sub-ss {
	margin-bottom: 15px;
	font-size: 1rem;
	font-weight: bold;
	color: #000000;
	line-height: 1.4;
}

.c-lead {
	margin-bottom: 45px;
	font-size: 1.125rem;
	line-height: 1.8;
	text-align: center;
}

/*********************************************/
/* Components button */
/*********************************************/
.c-btn {
	display: inline-block;
	padding: 22px 35px 22px 20px;
	border: 1px solid #b38754;
	border-radius: 0px;
	min-width: 330px;
	line-height: 1.4;
	background: #b38754;
	color: #ffffff;
	font-size: 1.3125rem;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.2s 0s ease;
	transition: all 0.2s 0s ease;
	position: relative;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.c-btn:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	left: auto;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
@media only screen and (max-width: 990px) {
	.c-btn {
		padding: 15px 35px 15px 20px;
		min-width: 290px;
		font-size: 1rem;
	}
}
.c-btn:hover {
	border-color: #b38754;
	background-color: transparent;
	color: #b38754;
	-webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	        box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	text-decoration: none;
	position: relative;
}
.c-btn:hover:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	left: auto;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #b38754;
	border-bottom: 2px solid #b38754;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}

/***** ボタン 状態 *****/
.c-btn.is-primary {
	border-color: #a92e30;
	background: #a92e30;
	color: #ffffff;
	position: relative;
}
.c-btn.is-primary:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	left: auto;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-primary.is-no-arrow {
	position: relative;
}
.c-btn.is-primary.is-no-arrow:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: auto;
	left: 0px;
	margin-top: 0px;
	width: 0px;
	height: 0px;
	border-right: 0px solid #696969;
	border-bottom: 0px solid #696969;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-primary:hover {
	background: #ffffff;
	color: #a92e30;
	position: relative;
}
.c-btn.is-primary:hover:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	left: auto;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #a92e30;
	border-bottom: 1px solid #a92e30;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-success {
	border-color: #398439;
	background: #449d44;
	color: #ffffff;
}
.c-btn.is-success:hover {
	background: #398439;
	color: #ffffff;
}
.c-btn.is-link {
	border-color: #a92e30;
	border-width: 1px;
	background: #ffffff;
	color: #a92e30;
	position: relative;
}
.c-btn.is-link:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	left: auto;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #a92e30;
	border-bottom: 1px solid #a92e30;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-link:hover {
	position: relative;
	background: #a92e30;
	color: #ffffff;
}
.c-btn.is-link:hover:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	left: auto;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-disable {
	border-color: #dddddd;
	background: #e5e5e5;
	color: #aaaaaa;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: default;
}
.c-btn.is-disable:hover {
	margin: 0 2px 2px 0;
}
.c-btn.is-arrow {
	padding-right: 30px;
	position: relative;
}
.c-btn.is-arrow:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	left: auto;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #666666;
	border-bottom: 2px solid #666666;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-arrow-bottom {
	padding-right: 30px;
	position: relative;
}
.c-btn.is-arrow-bottom:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #666666;
	border-bottom: 2px solid #666666;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-no-arrow {
	position: relative;
}
.c-btn.is-no-arrow:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: auto;
	left: 0px;
	margin-top: 0px;
	width: 0px;
	height: 0px;
	border-right: 0px solid #696969;
	border-bottom: 0px solid #696969;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-back {
	position: relative;
	padding: 22px 20px 22px 35px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.c-btn.is-back:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: auto;
	left: 15px;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
.c-btn.is-back:hover {
	position: relative;
}
.c-btn.is-back:hover:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: auto;
	left: 15px;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #a92e30;
	border-bottom: 2px solid #a92e30;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	-webkit-transition: all 200ms 0s ease;
	transition: all 200ms 0s ease;
}
@media only screen and (max-width: 990px) {
	.c-btn.is-back {
		padding: 15px 20px 15px 35px;
	}
}
.c-btn.is-pdf {
	padding: 12px 45px;
}

/***** ボタン サイズ *****/
.c-btn.is-s {
	padding: 4px 5px;
	font-size: 0.75rem;
}
.c-btn.is-m {
	padding: 11px 30px;
}
.c-btn.is-l {
	padding: 15px 30px;
	font-size: 1.125rem;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-btn.is-l {
		padding: 11px 30px;
		font-size: 1rem;
	}
}

.c-more {
	text-align: center;
}

/*********************************************/
/* Components alert */
/*********************************************/
.c-alert {
	padding: 15px;
	border: 1px solid #cccccc;
	border-radius: 5px;
}
.c-alert.is-s {
	padding: 5px 10px;
	font-size: 0.875rem;
}
.c-alert.is-m {
	padding: 15px;
	font-size: 1rem;
}
.c-alert.is-l {
	padding: 15px;
	font-size: 1.3125rem;
}
.c-alert.is-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}
.c-alert.is-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
.c-alert.is-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.c-alert.is-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.c-error {
	margin-top: 5px;
	padding: 5px 10px;
	border-radius: 5px;
	border: 2px solid #ffcfcf;
	background: #fff0f0;
	color: #ff0000;
}

.u-em,
.c-em {
	font-weight: bold;
	color: #ff6600;
}

/*********************************************/
/* Components table */
/*********************************************/
/*** テーブル風リスト 01 ***/
.c-tbl-list-type01 {
	width: 100%;
}

.c-tbl-list-type01__tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type01__tr {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
.c-tbl-list-type01__tr:last-child {
	border-bottom: 1px solid #cfbfac;
}

.c-tbl-list-type01__th,
.c-tbl-list-type01__td {
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-all;
}

.c-tbl-list-type01__th {
	padding: 10px 15px;
	width: 180px;
	border-right: 1px solid #cfbfac;
	color: #000000;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type01__th {
		padding: 5px 10px 5px 0px;
		width: 90px;
		font-size: 0.75rem;
	}
}

.c-tbl-list-type01__td {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 10px 15px 10px 30px;
	color: #696969;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type01__td {
		padding: 5px 0px 5px 10px;
		font-size: 0.75rem;
	}
}

/*** テーブル風リスト 02 ***/
.c-tbl-list-type02 {
	width: 100%;
}

.c-tbl-list-type02__tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.c-tbl-list-type02__tr:last-child {
	border-bottom: 1px solid #cfbfac;
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type02__tr {
		display: block;
		margin-bottom: 30px;
		padding-top: 0;
		padding-bottom: 0;
		border-top: 0;
	}
	.c-tbl-list-type02__tr:last-child {
		border-bottom: 0;
	}
}

.c-tbl-list-type02__th,
.c-tbl-list-type02__td {
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-all;
}

.c-tbl-list-type02__th {
	padding: 15px;
	width: 180px;
	border-right: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type02__th {
		margin-bottom: 10px;
		padding: 0;
		width: auto;
		border-right: 0;
		color: #000000;
		text-align: left;
	}
}

.c-tbl-list-type02__td {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-type02__td {
		padding: 0;
	}
}

/*** ２項目テーブル風リスト ***/
.c-tbl-second-list {
	border-top: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-second-list {
		border-top: 0;
	}
}

.c-tbl-second-list__tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	border-bottom: 1px solid #cfbfac;
}

.c-tbl-second-list__th {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 15px;
	width: 240px;
	background: #cccccc;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-second-list__th {
		display: block;
		padding: 5px 15px;
		width: 100%;
		border-bottom: 0;
		font-size: 0.75rem;
	}
}

.c-tbl-second-list__ttl {
	font-weight: bold;
	color: #ffffff;
}

.c-tbl-second-list__td {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 15px;
	border-right: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-second-list__td {
		padding: 10px 15px;
		font-size: 0.75rem;
	}
}
.c-tbl-second-list__td.is-02 {
	border-right: 0;
}

/*** 横並びテーブル風リスト ***/
.c-tbl-list-double {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-double {
		display: block;
	}
}

.c-tbl-list-double__tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: -1px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #cfbfac;
	width: 50%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-double__tr {
		padding-top: 10px;
		padding-bottom: 10px;
		border-left: 0;
		border-right: 0;
		width: auto;
	}
}
.c-tbl-list-double__tr:nth-child(even) {
	border-left: 0;
}

.c-tbl-list-double__th,
.c-tbl-list-double__td {
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-all;
}

.c-tbl-list-double__th {
	padding: 10px 15px;
	width: 120px;
	border-right: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-double__th {
		padding: 5px 10px;
		width: 90px;
		font-size: 0.75rem;
	}
}

.c-tbl-list-double__td {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 10px 15px;
	color: #696969;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl-list-double__td {
		padding: 5px 10px;
		font-size: 0.75rem;
	}
}

/*************** table ***************/
.c-tbl {
	width: 100%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl {
		font-size: 0.75rem;
	}
}

.c-tbl__th {
	padding: 10px 20px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background: #ede5dd;
	width: 165px;
	vertical-align: top;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl__th {
		padding: 5px 10px;
		width: 105px;
	}
}

.c-tbl__td {
	padding: 10px 20px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background: #ffffff;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tbl__td {
		padding: 5px 10px;
	}
}

/*********************************************/
/* Components pager */
/*********************************************/
.pager-list {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.pager-list__item {
	margin-left: 10px;
	margin-right: 10px;
	width: 45px;
	line-height: 43px;
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.pager-list__item {
		margin-left: 5px;
		margin-right: 5px;
		width: 40px;
		line-height: 38px;
		font-size: 0.875rem;
	}
}
.pager-list__item span {
	display: block;
	border: 1px solid #007ae5;
	border-radius: 50%;
	background: #007ae5;
	color: #ffffff;
	text-decoration: none;
}
.pager-list__item.pager_omit span {
	border-color: #aaaaaa;
	background: #ffffff;
	color: #393939;
}

.pager-list__link {
	display: block;
	border: 1px solid #007ae5;
	border-radius: 50%;
	background: #ffffff;
	color: #007ae5;
	text-decoration: none;
}
.pager-list__link:hover {
	background: #007ae5;
	color: #ffffff;
	text-decoration: none;
}

/***** ページャー 四角 *****/
.pager.is-square .pager-list__item span {
	border-radius: 0;
}
.pager.is-square .pager-list__link {
	border-radius: 0;
}

/***** ページャー 角丸 *****/
.pager.is-square-r .pager-list__item span {
	border-radius: 5px;
}
.pager.is-square-r .pager-list__link {
	border-radius: 5px;
}

/*********************************************/
/* Components */
/*********************************************/
/*************** 汎用リスト ***************/
.c-card-list-type {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-card-list-type {
		display: block;
		margin-left: 0px;
		margin-right: 0px;
	}
}

.c-card-list-type__item {
	margin-bottom: 60px;
	padding-left: 15px;
	padding-right: 15px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-card-list-type__item {
		margin-bottom: 30px;
		padding-left: 0px;
		padding-right: 0px;
		width: auto;
	}
}

.c-card-list-type__link {
	overflow: hidden;
	display: block;
	border: 1px solid #cfbfac;
	border-radius: 5px;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.c-card-list-type__link:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}
.c-card-list-type__link:hover {
	text-decoration: none;
}

.c-card-list-type__img {
	--imgWidth: 540;
	--imgHeight: 360;
	--imgRatio: calc(var(--imgHeight) / var(--imgWidth));
	min-height: 205px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-card-list-type__img {
		--containerWidth: calc(100vw - (15px * 2) - 20px);
		--imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
		min-height: var(--imgShowHeight);
	}
}

.c-card-list-type__txt {
	padding: 15px;
}

.c-card-list-type__ttl {
	margin-bottom: 15px;
	font-size: 1.125rem;
	font-weight: bold;
	color: #000000;
}

.c-card-list-type__body {
	color: #393939;
}

/*************** カテゴリーリスト ***************/
/* カテゴリ用 */
.c-category-list-type01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-category-list-type01 {
		display: block;
	}
}

.c-category-list-type01__item {
	margin-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-category-list-type01__item {
		margin-bottom: 30px;
		width: auto;
	}
}

.c-category-list-type01__link {
	display: block;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.c-category-list-type01__link:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}

.c-category-list-type01__img {
	position: relative;
	margin-bottom: 10px;
	--imgWidth: 580;
	--imgHeight: 385;
	--imgRatio: calc(var(--imgHeight) / var(--imgWidth));
	min-height: 210px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 1530px) {
	.c-category-list-type01__img {
		--containerWidth: calc((100vw - (15px * 4)) / 3);
		--imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
		min-height: auto;
	}
}
@media only screen and (max-width: 990px) {
	.c-category-list-type01__img {
		--containerWidth: calc(100vw - (15px * 2) - 20px);
		--imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
		min-height: var(--imgShowHeight);
	}
}

.c-category-list-type01__ttl {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-size: 1.875rem;
	background: rgba(0, 0, 0, 0.1);
	color: #ffffff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-category-list-type01__ttl {
		font-size: 1.125rem;
	}
}

/* 内容用 */
.c-category-list-type02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-category-list-type02 {
		display: block;
	}
}

.c-category-list-type02__item {
	margin-bottom: 50px;
	padding-left: 10px;
	padding-right: 10px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-category-list-type02__item {
		margin-bottom: 30px;
		width: auto;
	}
}

.c-category-list-type02__link {
	display: block;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.c-category-list-type02__link:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}
.c-category-list-type02__link:hover {
	text-decoration: none;
}

.c-category-list-type02__img {
	--imgWidth: 580;
	--imgHeight: 385;
	--imgRatio: calc(var(--imgHeight) / var(--imgWidth));
	min-height: 210px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 1530px) {
	.c-category-list-type02__img {
		--containerWidth: calc((100vw - (15px * 4)) / 3);
		--imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
		min-height: auto;
	}
}
@media only screen and (max-width: 990px) {
	.c-category-list-type02__img {
		--containerWidth: calc(100vw - (15px * 2) - 20px);
		--imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
		min-height: var(--imgShowHeight);
	}
}

.c-category-list-type02-txt {
	position: relative;
	padding: 30px 15px;
	border: 1px solid #cfbfac;
	background: #ffffff;
}

.c-category-list-type02-txt__ttl {
	margin-bottom: 15px;
	font-size: 1.125rem;
	color: #000000;
}

.c-category-list-type02-txt__category {
	position: absolute;
	top: -15px;
	right: -1px;
	padding: 5px 15px;
	min-width: 120px;
	background: #a92e30;
	color: #ffffff;
	font-size: 0.75rem;
	text-align: center;
}

.c-category-list-type02-txt__body {
	color: #393939;
}

/*********************************************/
/* Components */
/*********************************************/
/********** タイトルリスト **********/
.c-tile-list {
	-webkit-column-count: 3;
	   -moz-column-count: 3;
	        column-count: 3;
	-webkit-column-gap: 0;
	   -moz-column-gap: 0;
	        column-gap: 0;
	margin-left: -5px;
	margin-right: -5px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-tile-list {
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
	}
}

.c-tile-list__item {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	-moz-column-break-inside: avoid;
	     break-inside: avoid;
	padding: 5px;
	-webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/*************** メディア ***************/
/* メディア 01 */
.c-media-type01__img {
	margin-bottom: 30px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type01__img {
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 15px;
	}
}

.c-media-type01__body {
	line-height: 1.8;
}

/* メディア 02 (画像左右) */
.c-media-type02-box:nth-child(even) .c-media-type02__txt {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-left: 0;
	margin-right: 30px;
	line-height: 1.8;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type02-box:nth-child(even) .c-media-type02__txt {
		margin-right: 0;
	}
}

.c-media-type02-box {
	margin-bottom: 60px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type02-box {
		margin-bottom: 45px;
	}
}

.c-media-type02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type02 {
		display: block;
	}
}
.c-media-type02.is-no-image .c-media-type02__txt {
	margin-left: 0;
}

.c-media-type02__img {
	width: 435px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type02__img {
		margin-bottom: 15px;
		width: auto;
	}
}

.c-media-type02__txt {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-left: 30px;
	line-height: 1.8;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-media-type02__txt {
		margin-left: 0;
	}
}

.c-media-type02__body {
	line-height: 1.8;
}

/*************** 吹き出しボックス ***************/
.c-msg-box {
	padding: 15px;
	border-radius: 10px;
	background: #cccccc;
}

.c-msg-box.is-arrow-bottom {
	position: relative;
}
.c-msg-box.is-arrow-bottom:before {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	margin-left: -20px;
	left: 50%;
	width: 0px;
	height: 0px;
	border: solid transparent;
	border-top-color: #666666;
	border-width: 20px;
}

.c-msg-box.is-arrow-left {
	position: relative;
}
.c-msg-box.is-arrow-left:before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	margin-left: -10px;
	right: 100%;
	width: 0px;
	height: 0px;
	border: solid transparent;
	border-top-color: #666666;
	border-right-color: #666666;
	border-width: 10px;
}

/*************** ギャラリーリスト ***************/
.c-galley-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-galley-list {
		margin-left: -5px;
		margin-right: -5px;
	}
}

.c-galley-list__item {
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	width: 25%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-galley-list__item {
		margin-bottom: 15px;
		padding-left: 5px;
		padding-right: 5px;
		width: 50%;
	}
}

.c-galley-list__img figcaption {
	margin-top: 10px;
	font-size: 0.875rem;
}

/*************** 画像リスト ***************/
.c-img-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-img-list {
		margin-left: -5px;
		margin-right: -5px;
	}
}

.c-img-list__item {
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	width: 25%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-img-list__item {
		margin-bottom: 10px;
		padding-left: 5px;
		padding-right: 5px;
		width: 50%;
	}
}

.c-img-list__img figcaption {
	margin-top: 5px;
	font-size: 0.875rem;
}

/*************** テキストリスト ***************/
.c-list__item {
	position: relative;
	padding: 15px;
	border-bottom: 1px solid #cfbfac;
	font-size: 1.125rem;
	color: #000000;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-list__item {
		padding: 10px;
		font-size: 1.125rem;
	}
}
.c-list__item:first-child {
	border-top: 1px solid #cfbfac;
}

/*************** フローリスト ***************/
.c-flow-list {
	counter-reset: item;
}

.c-flow-list__item {
	margin-bottom: 60px;
	padding: 30px;
	border: 1px solid #cfbfac;
	position: relative;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
.c-flow-list__item:before {
	content: "";
	display: block;
	position: absolute;
	top: calc(100% + -5px);
	left: 50%;
	width: 30px;
	height: 30px;
	border-style: solid;
	border-color: transparent transparent #a92e30 #a92e30;
	border-width: 4px;
	-webkit-transform: rotate(-45deg) translateX(-50%);
	        transform: rotate(-45deg) translateX(-50%);
}
@media only screen and (max-width: 990px) {
	.c-flow-list__item {
		padding: 15px;
	}
}
.c-flow-list__item:last-child:before {
	content: none;
}

.c-flow-list__ttl {
	margin-bottom: 25px;
	font-size: 1.3125rem;
	font-weight: bold;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-flow-list__ttl {
		margin-bottom: 15px;
	}
}

.c-flow-list__ttl-step {
	display: inline-block;
	margin-right: 15px;
	padding: 3px 10px;
	font-size: 1rem;
	background: #b38754;
	color: #ffffff;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-flow-list__ttl-step {
		margin-bottom: 5px;
		font-size: 0.875rem;
	}
}
.c-flow-list__ttl-step:after {
	counter-increment: item;
	content: counter(item);
	margin-left: 5px;
	font-weight: bold;
}

.c-flow-list__ttl-txt {
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-flow-list__ttl-txt {
		display: block;
	}
}

.c-flow-list__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-flow-list__box {
		display: block;
	}
}

.c-flow-list__img {
	margin-right: 30px;
	width: 240px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-flow-list__img {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 15px;
	}
}

.c-flow-list__body {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	line-height: 1.8;
}

/*************** カラーリスト ***************/
.c-color-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.c-color-list__item {
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	width: 20%;
	font-size: 0.75rem;
}

.c-color-list__bg {
	margin-bottom: 10px;
	background: #cccccc;
	height: 90px;
}

.c-color-list__bg.is-main {
	background: #a92e30;
}

.c-color-list__bg.is-base {
	background: #ffffff;
}

.c-color-list__bg.is-accent {
	background: #b38754;
}

.c-color-list__bg.is-danger {
	background: #ff0000;
}

.c-color-list__bg.is-warning {
	background: #8a6d3b;
}

.c-color-list__bg.is-success {
	background: #3c763d;
}

.c-color-list__bg.is-info {
	background: #31708f;
}

.c-color-list__bg.is-link {
	background: #007ae5;
}

.c-color-list__ttl {
	margin-bottom: 10px;
	font-weight: bold;
}

.c-color-list__body.is-main {
	color: #a92e30;
}

.c-color-list__body.is-base {
	color: #ffffff;
}

.c-color-list__body.is-accent {
	color: #b38754;
}

.c-color-list__body.is-danger {
	color: #ff0000;
}

.c-color-list__body.is-warning {
	color: #8a6d3b;
}

.c-color-list__body.is-success {
	color: #3c763d;
}

.c-color-list__body.is-info {
	color: #31708f;
}

.c-color-list__body.is-link {
	color: #007ae5;
}

/*************** カテゴリーリスト ***************/
.c-contents-category-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 45px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-list {
		display: block;
		margin-bottom: 45px;
	}
}

.c-contents-category-list__item {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-list__item {
		width: auto;
		margin-bottom: 2px;
	}
}

.c-contents-category-list__link {
	display: block;
	padding: 12px;
	background: #fafafa;
	color: #393939;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-list__link {
		padding-left: 15px;
		padding-right: 15px;
		text-align: left;
	}
}
.c-contents-category-list__link:hover, .c-contents-category-list__link.is-on {
	background: #eeeeee;
	text-decoration: none;
}
.c-contents-category-list__link.is-page-link {
	position: relative;
}
.c-contents-category-list__link.is-page-link:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 1px solid #777777;
	border-bottom: 1px solid #777777;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

/***** カテゴリーリスト 02 *****/
.c-contents-category-type02-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 45px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type02-list {
		display: block;
		margin-bottom: 45px;
	}
}

.c-contents-category-type02-list__item {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type02-list__item {
		width: auto;
		margin-bottom: 2px;
	}
}

.c-contents-category-type02-list__link {
	display: block;
	padding: 12px;
	border-radius: 5px;
	border: 1px solid #007ae5;
	background: #ffffff;
	color: #007ae5;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type02-list__link {
		padding-left: 15px;
		padding-right: 15px;
		text-align: left;
	}
}
.c-contents-category-type02-list__link:hover {
	background: rgba(0, 122, 229, 0.8);
	color: #ffffff;
	text-decoration: none;
}
.c-contents-category-type02-list__link.is-on {
	background: #007ae5;
	color: #ffffff;
	text-decoration: none;
}

/***** カテゴリーリスト 03 *****/
.c-contents-category-type03-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 45px;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type03-list {
		display: block;
		margin-bottom: 45px;
	}
}

.c-contents-category-type03-list__item {
	border-right: 1px solid #cfbfac;
	width: 33.3333%;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type03-list__item {
		margin-bottom: 1px;
		border-right: 0;
		border-bottom: 1px solid #cfbfac;
		width: auto;
	}
}
.c-contents-category-type03-list__item:first-child {
	border-left: 1px solid #cfbfac;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type03-list__item:first-child {
		border-top: 1px solid #cfbfac;
		border-left: 0;
	}
}

.c-contents-category-type03-list__link {
	display: block;
	padding: 12px;
	background: #ffffff;
	color: #007ae5;
	text-align: center;
	/*
		@if $media-width == tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
				@content;
			}
		}
		@if $media-width == min-tb {
			// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
			// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
			@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
				@content;
			}
		}
		@if $media-width == tb-vert {
			@media only screen and (max-width: $bp-tb-vert) {
				@content;
			}
		}
		@if $media-width == min-tb-vert {
			@media only screen and (min-width: $bp-min-tb-vert) {
				@content;
			}
		}
		@if $media-width == tb-hor {
			@media only screen and (max-width: $bp-tb-hor) {
				@content;
			}
		}
		@if $media-width == min-tb-hor {
			@media only screen and (min-width: $bp-min-tb-hor) {
				@content;
			}
		}
	*/
}
@media only screen and (max-width: 990px) {
	.c-contents-category-type03-list__link {
		padding-left: 15px;
		padding-right: 15px;
		text-align: left;
	}
}
.c-contents-category-type03-list__link:hover {
	background: rgba(0, 122, 229, 0.8);
	color: #ffffff;
	text-decoration: none;
}
.c-contents-category-type03-list__link.is-on {
	background: #007ae5;
	color: #ffffff;
	text-decoration: none;
}

/***** タブメニュー *****/
.c-tab-navi-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-tab-navi-list__item {
	margin-right: 5px;
}

.c-tab-navi-list__btn {
	padding: 10px 15px;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	background: #ffffff;
	text-align: center;
}
.c-tab-navi-list__btn.is-active, .c-tab-navi-list__btn[aria-selected=true] {
	background: #a92e30;
	color: #ffffff;
}
.c-tab-navi-list__btn:hover {
	background: rgba(169, 46, 48, 0.8);
	color: #ffffff;
}

.c-tab-contents {
	padding: 15px;
	border: 1px solid #cccccc;
}

.c-tab-contents-box {
	display: none;
	opacity: 1;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}
.c-tab-contents-box.is-active {
	display: block;
}
.c-tab-contents-box.is-fadeout {
	opacity: 0;
}
.c-tab-contents-box.is-fadein {
	opacity: 1;
}

.c-tab-contents__item[aria-hidden=true] {
	display: none;
}

/***** ドロップダウンメニュー *****/
.c-dropdown-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-dropdown-list__item {
	position: relative;
	margin-right: 5px;
}

.c-dropdown-list__btn {
	display: block;
	padding: 10px 20px;
	border: 1px solid #007ae5;
	border-radius: 5px;
	font-size: 1rem;
	background: #f5f5f5;
	color: #007ae5;
	text-decoration: none;
}

.c-dropdown-child-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10000;
	width: 100%;
	border-radius: 5px;
	background: #f5f5f5;
	opacity: 0;
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.c-dropdown-child-list[aria-hidden=false] {
	display: block;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	-webkit-transform: rotateX(0);
	        transform: rotateX(0);
	-webkit-animation: fadeIn 0.2s ease 0s;
	        animation: fadeIn 0.2s ease 0s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
.c-dropdown-child-list.is-panel1 {
	width: 300px;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
		-webkit-transform: rotateX(-30deg);
		        transform: rotateX(-30deg);
	}
	100% {
		opacity: 1;
		-webkit-transform: rotateX(0);
		        transform: rotateX(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		-webkit-transform: rotateX(-30deg);
		        transform: rotateX(-30deg);
	}
	100% {
		opacity: 1;
		-webkit-transform: rotateX(0);
		        transform: rotateX(0);
	}
}
.c-dropdown-child-list__link {
	display: block;
	padding: 15px;
}
.c-dropdown-child-list__link:hover {
	background: #007ae5;
	color: #ffffff;
}

.form-list .c-check-list {
	margin-top: 10px;
}

.c-check-list__item {
	margin-bottom: 15px;
}
.c-check-list__item:last-child {
	margin-bottom: 0;
}

/*********************************************/
/* Utility */
/*********************************************/
/* clearfix */
.u-cl:before, .u-cl:after {
	content: " ";
	display: table;
}

.u-cl:after {
	clear: both;
}

.u-cl {
	*zoom: 1;
}

/* font関連 */
.u-bold {
	font-weight: bold !important;
}

.u-through {
	text-decoration: line-through;
}

.u-font-xs {
	font-size: 10px !important;
}

.u-font-ss {
	font-size: 12px !important;
}

.u-font-s {
	font-size: 14px !important;
}

.u-font-m {
	font-size: 16px !important;
}

.u-font-l {
	font-size: 21px !important;
}

.u-font-ll {
	font-size: 30px !important;
}

.u-font-xl {
	font-size: 48px !important;
}

.u-mincho {
	font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
}

.u-mincho-noto {
	font-family: YakuHanMPs, "Noto Serif JP", serif;
}

.u-mincho-sawarabi {
	font-family: YakuHanMPs, "Sawarabi Mincho", serif;
}

.u-gothic-noto {
	font-family: YakuHanJPs, "Noto Sans Japanese", sans-serif;
}

.u-gothic-rounded {
	font-family: "M PLUS Rounded 1c", sans-serif;
}

/* float */
.u-float-left {
	float: left;
}

.u-float-right {
	float: right;
}

/* text-align */
.u-align-left {
	text-align: left !important;
}

.u-align-center {
	text-align: center !important;
}

.u-align-right {
	text-align: right !important;
}

/* vertical-align */
.u-valign-top {
	vertical-align: top !important;
}

.u-valign-middle {
	vertical-align: middle !important;
}

.u-valign-bottom {
	vertical-align: bottom !important;
}

/* bottom-margin */
.u-mb0 {
	margin-bottom: 0px !important;
}

.u-mb5 {
	margin-bottom: 5px !important;
}

.u-mb10 {
	margin-bottom: 10px !important;
}

.u-mb15 {
	margin-bottom: 15px !important;
}

.u-mb20 {
	margin-bottom: 20px !important;
}

.u-mb25 {
	margin-bottom: 25px !important;
}

.u-mb30 {
	margin-bottom: 30px !important;
}

.u-mb35 {
	margin-bottom: 35px !important;
}

.u-mb40 {
	margin-bottom: 40px !important;
}

.u-mb45 {
	margin-bottom: 45px !important;
}

.u-mb50 {
	margin-bottom: 50px !important;
}

.u-mb60 {
	margin-bottom: 60px !important;
}

.u-mbxs {
	margin-bottom: 5px !important;
}

.u-mbss {
	margin-bottom: 10px !important;
}

.u-mbs {
	margin-bottom: 15px !important;
}

.u-mbm {
	margin-bottom: 45px !important;
}

.u-mbl {
	margin-bottom: 60px !important;
}

.u-mbll {
	margin-bottom: 120px !important;
}

.u-mbxl {
	margin-bottom: 240px !important;
}

/* padding */
.u-plrs {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.u-plrm {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

/* 幅 */
.u-ws {
	width: 50px;
}

.u-wm {
	width: 100px;
}

.u-wl {
	width: 200px;
}

.u-w-half {
	width: 50%;
}

.u-w-max {
	width: 100%;
}

/* 色 */
.u-red {
	color: #eb0800;
}

.u-required {
	color: #eb0800;
}

/* 必須 */
.u-date {
	color: #888888;
}

/* 日付 */
.u-dpn {
	display: none;
}

.u-pc-only {
	display: block;
}

.u-sp-only {
	display: none;
}

img.u-pc-only {
	display: inline;
}

img.u-sp-only {
	display: none;
}

@media only screen and (max-width: 990px) {
	.u-pc-only {
		display: none;
	}

	.u-sp-only {
		display: block;
	}

	img.u-pc-only {
		display: none;
	}

	img.u-sp-only {
		display: inline;
	}
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/* opacity */
.u-opa a img,
.u-opa-img img,
.u-opa-box {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.u-opa a img:hover,
.u-opa-img img:hover,
.u-opa-box:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.u-spr {
	overflow: hidden;
	white-space: nowrap;
	text-indent: 150%;
	border: 0;
	cursor: pointer;
}

.u-spr::-moz-focus-inner {
	padding: 0;
	border: none;
}

.u-pre {
	padding: 15px;
	background: #333333;
	color: #ffffff;
}

/***** 画像 *****/
.u-img {
	margin-bottom: 15px;
}

/***** テキスト *****/
.u-txt {
	line-height: 1.8;
}

@media only screen and (max-width: 990px) {
	.u-list-txt {
		padding-left: 0;
	}
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/* input画像ボタンにつける */
.u-input-img {
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: pointer;
}

.u-input-img:hover {
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

/* inputテキストボタンにつける */
.u-input-txt {
	padding: 0;
	border: none;
	background: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.u-input-txt:hover {
	padding: 0;
	border: none;
	background: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	cursor: pointer;
	text-decoration: underline;
}

.u-hidden {
	overflow: hidden;
}

.u-overbg {
	margin-left: -500%;
	margin-right: -500%;
	padding-left: 500%;
	padding-right: 500%;
}

.u-overframe {
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}

/***** iframeの高さをレスポンシブ対応 *****/
.iframe-content {
	position: relative;
	width: 100%;
	padding: 56.25% 0 0 0;
}
.iframe-content iframe, .iframe-content img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.iframe-content img {
	-o-object-fit: cover;
	   object-fit: cover;
}
.iframe-content .lazy-iframe {
	cursor: pointer;
}
.iframe-content .lazy-iframe img {
	z-index: 1;
}
.iframe-content .lazy-iframe .play-btn {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	height: 100%;
	background-color: transparent;
}
.iframe-content .lazy-iframe .play-btn:hover .play-btn-icon .st0 {
	fill: #ff0000;
	fill-opacity: 1;
}
.iframe-content .lazy-iframe .play-btn-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -32px;
	margin-top: -21px;
	z-index: 50;
}
.iframe-content .lazy-iframe.is-active iframe {
	z-index: 100;
}

.play-btn {
	width: 64px;
	height: 43px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.play-btn-icon {
	width: 64px;
	height: 43px;
	-webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
	transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}
.play-btn-icon .st0 {
	fill: #212121;
	fill-opacity: 0.8;
}
.play-btn-icon .st1 {
	fill: #ffffff;
	fill-opacity: 1;
}

/***** 見た目を隠したいとき *****/
.u-visually-hidden {
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	margin: -1px;
	border: 0;
	padding: 0;
	width: 4px;
	height: 4px;
}