F@charset "utf-8";

/*
  File Name   : body.css
  Description : Write content styles
*/

/* root
============================================================ */
:root {
	--white: #fff;
	--lightgray: #f3f3f3;
	--black: #333;
	--gold: #ac9358;
	--red: #e30000;
	--dark-red: #820002;
	--background-base: #f2f2e0;
	--background-gray: #EFEFEF;
	--top-background: #ddd;
	--sidebar-odd: #F6F7EA;
	--sidebar-even: #F0EFDE;
	--personal-red: #960000;
	--business-red: #760000;
}

/* default
============================================================ */
/*** structure ***/
:root {
	--black: #333;
}

html {
	overflow-y: scroll;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	min-width: 320px;
	margin: 0;
	color: #333;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .06em;
	line-height: 1.8;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

@media print {
	body {
		-webkit-print-color-adjust: exact;
		color-adjust: exact;
	}
}

@media screen and (max-width: 811px) {
	body {
		font-size: 14px;
	}
}

body>footer,
body>header {
	width: 100%;
	min-width: 320px;
}

/*** text ***/
p {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
}

h1,
h2,
h3,
h4 {
	line-height: 1;
	margin: 0;
}

h4,
h5,
h6 {
	font-size: 1em;
	margin: 0;
}

small,
.font-small {
	font-size: .875em;
}

sub {
	vertical-align: baseline;
	position: relative;
	bottom: -0.2em;
	margin-left: 1px;
}

sup {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
	margin-left: 1px;
}

iframe {
	max-width: 100%;
	border: none;
}

/*** list ***/
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-style: normal;
	font-weight: normal;
}

li,
ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-style: normal;
	font-weight: normal;
}

/*** object ***/
embed,
object {
	vertical-align: bottom;
}

/*** presentation ***/
u {
	font-size: inherit;
	text-decoration: underline;
}

/*** hypertext ***/
a {
	font-size: inherit;
}

a:link {
	color: var(--black);
	outline: none;
	text-decoration: none;
}

a:hover,
a:active {
	opacity: .8;
	text-decoration: none;
}

a:visited {
	color: var(--black);
}

a img {
	border: none;
}

/*** edit ***/
del {
	color: #666;
	font-size: inherit;
	text-decoration: line-through;
}

ins {
	border-bottom: 1px dotted #ccc;
	font-size: inherit;
	text-decoration: none;
}

/*** forms ***/
legend {
	white-space: normal;
}

button,
input,
label,
select,
textarea,
form img {
	vertical-align: middle;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

input,
select,
textarea {
	outline: none;
	color: #333;
	border: 1px solid #6c6c6c;
}

input[type="text"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="email"],
input[type="tel"],
input[type="telephone"],
input[type="url"],
input[type="password"],
select,
textarea {
	max-width: 100%;
	border-radius: 0;
}

button,
input[type="color"],
input[type="file"],
input[type="image"],
input[type="range"] {
	border: none;
	padding: 0;
	background: none;
}

input[type="checkbox"],
input[type="color"],
input[type="radio"],
input[type="range"],
select {
	cursor: pointer;
}

input[type="color"],
input[type="file"],
input[type="image"],
input[type="range"] {
	border: none;
}

input[type="password"] {
	ime-mode: disabled;
}

input[disabled],
input[readonly],
select[disabled],
select[readonly] {
	cursor: default;
}

textarea {
	resize: vertical;
}

label+label,
label+input[type="checkbox"],
label+input[type="radio"] {
	margin-left: 10px;
}

label>input[type="checkbox"],
label>input[type="radio"] {
	margin-right: 5px;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
	margin-left: 5px;
}

form a img {
	transition: opacity .2s ease-in-out;
}

form a img,
input[type="button"],
input[type="image"],
input[type="reset"],
input[type="submit"],
button {
	border-radius: 0;
	transition: opacity .2s ease-in-out;
}

form a:hover img,
form a:active img,
input[type="button"]:hover,
input[type="button"]:active,
input[type="image"]:hover,
input[type="image"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="submit"]:hover,
input[type="submit"]:active,
button:hover,
button:active {
	opacity: .8;
}

label.error,
input.error {
	background: #ffeeee;
}

/*** tables ***/
table {
	max-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

table th,
table td {
	font-size: inherit;
	word-break: break-all;
}

table th> :last-child,
table td> :last-child {
	margin-bottom: 0;
}

/*** image ***/
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}

/*** selection ***/
::-moz-selection {
	color: #fff;
	background: #999;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #999;
	text-shadow: none;
}

input::selection,
textarea::selection {
	color: #333;
}

/*** placeholder ***/
::placeholder {
	color: #6c6c6c;
	opacity: 1;
}

::-ms-input-placeholder {
	color: #6c6c6c;
	opacity: 1;
}

:focus::placeholder {
	color: transparent;
}

:focus::-ms-input-placeholder {
	color: transparent;
}

/* utiiities
============================================================ */
/*** float ***/
.com-clear {
	clear: both;
}

/*** hide ***/
.com-hide {
	position: absolute;
	z-index: -1;
	overflow: hidden;
	text-align: left;
	text-indent: -9999px;
}

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

.com-clearfix::after {
	clear: both;
}

/*** align ***/
.com-align_r {
	text-align: right !important;
}

.com-align_c {
	text-align: center !important;
}

.com-align_l {
	text-align: left !important;
}

.com-justify {
	text-align: justify;
}

/*** panel layout ***/
.com-panel-layout {
	display: table;
	width: auto;
	table-layout: fixed;
	word-spacing: -.4em;
	box-sizing: border-box;
}

.com-panel-layout .panel-layout-child,
.com-panel-layout>article,
.com-panel-layout>figure,
.com-panel-layout>li,
.com-panel-layout>div,
.com-panel-layout>p,
.com-panel-layout>section {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: top;
	word-spacing: normal;
	box-sizing: border-box;
}

/*** disable-tel ***/
.com-disable-tel {
	cursor: default !important;
	pointer-events: none !important;
	text-decoration: none !important;
}

/*** color ***/
.red {
	color: red;
}

.red2 {
	color: #f80000;
}

.orange {
	color: orange;
}

.blue {
	color: blue;
}

.navy {
	color: navy;
}

.green {
	color: green;
}

.yellow {
	color: yellow;
}

.yellow2 {
	color: #ffff00;
}

/* editor style
============================================================ */
/* body */
body.contentBody {
	padding: 15px;
}

/* a */
.contentBody a:link,
.contentBody a:visited {
	color: var(--red);
	text-decoration: underline;
}

.contentBody a[target="_blank"]::after,
.contentBody a.download::after,
.contentBody a[download]::after {
	font-family: "icomoon" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.contentBody a.download::after,
.contentBody a[download]::after {
	content: "\e9c7";
}

/* p */
.contentBody p {
	margin-bottom: 1em;
}

/* u */
.contentBody u {
	background: linear-gradient(transparent 60%, rgba(255, 255, 0, .4) 60%);
	text-decoration: none;
}

/* blockquote */
.contentBody blockquote {
	position: relative;
	margin: 0 0 2em;
	padding: 10px 20px;
	border-left: 5px solid #999;
	border-radius: 2px;
	font-size: 0.875em;
}

.contentBody blockquote::after {
	content: "”";
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	font-family: sans-serif;
	font-size: 6em;
	line-height: 0;
}

/* pre */
.contentBody pre {
	margin: 0 0 2em;
	padding: 11px 20px;
	border-radius: 2px;
	background: #eee;
	font-size: 0.875em;
}

/* pre, samp */
.contentBody pre,
.contentBody samp {
	font-family: sans-serif;
}

/* code */
.contentBody code {
	margin: 0 2px;
	padding: 0 3px;
	border: 1px solid #ddd;
	border-radius: 3px;
	background-color: #fafafa;
	font-family: sans-serif;
	font-size: 0.875em;
}

/* kbd */
.contentBody kbd {
	margin: 0 2px;
	padding: 0 3px;
	border: 1px solid #ddd;
	border-bottom: 3px solid #ddd;
	border-radius: 3px;
	background-color: #fafafa;
	font-family: sans-serif;
	font-size: 0.875em;
}

/* ul */
.contentBody ul {
	margin-bottom: 1em;
	text-indent: 0;
}

.contentBody ul>li {
	padding-left: .925em;
	line-height: 1.8;
	text-indent: -.925em;
}

.contentBody ul>li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-bottom: 4px;
	margin-right: 10px;
	background: var(--red);
	border-radius: 4px;
	vertical-align: middle;
}

/* ol */
.contentBody ol {
	counter-reset: item;
	margin-bottom: 1em;
	padding-left: 0;
}

.contentBody ol>li {
	padding-left: 1.3em;
	line-height: 1.8;
	text-indent: -1.3em;
}

.contentBody ol>li::before {
	content: counter(item)'.';
	counter-increment: item;
	padding-right: .5em;
}

/* table  */
.contentBody table {
	margin-bottom: 1em;
}

.contentBody table th,
.contentBody table td {
	padding: 15px 20px;
	vertical-align: top;
	border-width: 3px;
	border-color: #fff;
	border-style: solid;
}

.contentBody table th {
	background: var(--background-base);
}

.contentBody table td {
	background: var(--background-gray);
}

/* table border for TinyMCE 4 */
.contentBody table[border] {
	border-width: 1px;
}

.contentBody table[border=""],
.contentBody table[border="0"] {
	border: none;
}

.contentBody table[border] th,
.contentBody table[border] td {
	border-width: 1px;
	border-color: var(--black);
}

.contentBody table[border=""] th,
.contentBody table[border="0"] th,
.contentBody table[border=""] td,
.contentBody table[border="0"] td {
	border: none;
}

/* table border for TinyMCE 6~ */
.contentBody table.table_borders,
.contentBody table.table_borders th,
.contentBody table.table_borders td {
	border-width: 1px;
}

.contentBody table.table_no_borders,
.contentBody table.table_no_borders th,
.contentBody table.table_no_borders td {
	border: none;
}

@media screen and (max-width: 811px) {
	.contentBody table.corp-table {
		max-width: inherit;
	}

	.contentBody table.corp-table th,
	.contentBody table.corp-table td {
		padding: 10px 15px;
	}
}

/* corp-table  */
.contentBody table.corp-table th {
	border-right: 5px solid #fff;
	text-align: center;
	vertical-align: middle;
	background: #f3f3f3;
}

.contentBody table.corp-table td {
	background: #fff;
	border-bottom: 3px solid var(--lightgray);
}

.contentBody table.corp-table td> :last-child {
	margin-bottom: 0 !important;
}

/* title */
.contentBody h1,
.contentBody h2 {
	clear: both;
	margin-top: 3em;
	margin-bottom: 2em;
}

.contentBody h3,
.contentBody h4,
.contentBody h5,
.contentBody h6 {
	clear: both;
	margin-top: 2em;
	margin-bottom: 1em;
	line-height: 1.5;
}

.contentBody h1:first-child,
.contentBody h2:first-child,
.contentBody h3:first-child,
.contentBody h4:first-child,
.contentBody h5:first-child,
.contentBody h6:first-child {
	margin-top: 0;
}

.contentBody h1 {
	margin-bottom: 2em;
	padding: 20px 10px;
	border-top: 1px solid #6c6c6c;
	border-bottom: 1px solid #6c6c6c;
	font-size: 2em;
	letter-spacing: 5px;
	line-height: 1.3;
}

.contentBody h2 {
	margin-bottom: 1.5em;
	padding: 15px;
	background-color: var(--background-base);
	border-left: 10px solid var(--red);
	color: var(--black);
	font-size: 1.666666666666em;
	line-height: 1.3;
	letter-spacing: 1px;
	font-weight: normal;
}

.contentBody h3 {
	padding: 0 5px 5px;
	border-bottom: 1px dashed var(--red);
	font-size: 1.333333333333em;
	letter-spacing: 1px;
}

.contentBody h4 {
	padding-left: 1em;
	font-size: 1.2em;
	letter-spacing: 1px;
	text-indent: -1em;
}

.contentBody h4::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-bottom: 3px;
	margin-right: 10px;
	background: var(--red);
	vertical-align: middle;
	border-radius: 1px;
}

@media screen and (max-width: 811px) {
	.contentBody h1 {
		margin-bottom: 1.25em;
		padding: 10px 5px;
		font-size: 1.666666666666em;
		letter-spacing: 2px;
	}

	.contentBody h2 {
		margin-top: 2em;
		margin-bottom: 1em;
		font-size: 1.2em;
	}

	.contentBody h3 {
		font-size: 1em;
	}

	.contentBody h4 {
		font-size: 1em;
	}
}

@media screen and (max-width: 481px) {
	.contentBody h1 {
		font-size: 1.333333333em;
	}
}

.contentBody .u-align-right {
	text-align: right;
}

.contentBody .u-align-left {
	text-align: left;
}

.contentBody .u-align-center {
	text-align: center;
}

.contentBody .alignRight,
.contentBody img.u-align-right,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"] {
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
}

.contentBody .alignLeft,
.contentBody img.u-align-left,
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.contentBody .alignCenter,
.contentBody .u-align-center {
	display: block;
	margin: 0 auto 20px;
}

@media screen and (max-width: 811px) {

	.contentBody .alignRight,
	.contentBody .alignLeft,
	.contentBody img.u-align-right,
	.contentBody img.u-align-left,
	.contentBody img[style*="float:right"],
	.contentBody img[style*="float: right"],
	.contentBody img[style*="float:left"],
	.contentBody img[style*="float: left"] {
		max-width: 38.2%;
	}
}

@media screen and (max-width: 481px) {

	.contentBody .alignRight,
	.contentBody .alignLeft,
	.contentBody img.u-align-right,
	.contentBody img.u-align-left,
	.contentBody img[style*="float:right"],
	.contentBody img[style*="float: right"],
	.contentBody img[style*="float:left"],
	.contentBody img[style*="float: left"] {
		display: block;
		float: none;
		max-width: 100%;
		margin: 0 auto 2.666em;
	}
}

.contentBody .col-2,
.contentBody .col-3 {
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	flex-wrap: nowrap;
	width: 100%;
}

.contentBody .col-2>*,
.contentBody .col-3>* {
	table-layout: fixed;
	padding-right: 20px;
	padding-left: 20px;
}

.contentBody .col-2>* {
	width: 50%;
}

.contentBody .col-3>* {
	width: calc(100% / 3 - .1px);
}

.contentBody .col-2> :first-child,
.contentBody .col-3> :first-child {
	padding-left: 0;
}

.contentBody .col-2> :last-child,
.contentBody .col-3> :last-child {
	padding-right: 0;
}

@media screen and (max-width: 811px) {

	.contentBody .col-2,
	.contentBody .col-3 {
		display: block;
	}

	.contentBody .col-2>*,
	.contentBody .col-3>* {
		width: auto;
		padding-right: 0;
		padding-left: 0;
	}
}

.contentBody> :last-child {
	margin-bottom: 0;
}

/* attached_icon
============================================================ */
.attached_icon {
	width: auto;
	height: 20px;
	margin: 5px 5px 5px 0;
	vertical-align: middle;
}

/* com-section
============================================================ */
.com-section,
.com-section>section {
	margin-bottom: 100px;
}

.com-section:last-child,
.com-section>section:last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {

	.com-section,
	.com-section>section {
		margin-bottom: 50px;
	}
}

/* com-sect-desc
============================================================ */
.com-sect-desc {
	margin-bottom: 55px;
}

.com-sect-desc:last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-sect-desc {
		margin-bottom: 25px;
	}
}

/* com-date-txt
============================================================ */
.com-date-txt {
	margin-bottom: 2.5em !important;
	text-align: right;
}

h1+.com-date-txt {
	margin-top: -3.5em !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	h1+.com-date-txt {
		margin-top: -1.25em !important;
	}
}

/* com-print-txt
============================================================ */
.com-print-txt {
	margin-bottom: 2.5em !important;
	text-align: right;
}

.com-print-txt a {
	display: inline-block;
	padding-left: 25px;
	background: url(../images/common/print-bg.svg) no-repeat left center;
	background-size: 20px auto;
}

h1+.com-print-txt {
	margin-top: -3.5em !important;
}

.com-date-txt+.com-print-txt {
	margin-top: -2.5em !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	h1+.com-print-txt {
		margin-top: -1.25em !important;
	}
}

/* com-print-link
============================================================ */
.com-print-link {
	margin-bottom: 2.5em !important;
	text-align: right;
}

.com-print-link a {
	display: inline-block;
	padding-left: 25px;
	background: url(../images/common/print-bg.png) no-repeat left center;
	background-size: 20px auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {}

/* print-btn-list
============================================================ */
.com-print-btn-list {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 2000;
	width: 100%;
	padding: 20px;
	background: rgba(0, 0, 0, .8);
	text-align: center;
}

.com-print-btn-list a {
	position: relative;
	display: inline-block;
	margin: 0 10px;
	color: #fff;
	font-weight: bold;
	letter-spacing: .08em;
}

.com-print-btn-list a.close {
	padding-left: 23px;
}

.com-print-btn-list a.close::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 19px;
	height: 2px;
	background: #fff;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.com-print-btn-list a.close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 19px;
	height: 2px;
	background: #fff;
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.com-print-btn-list a.print {
	padding-left: 25px;
	background: url(../images/common/print-bg-wht.svg) no-repeat left center;
	background-size: 20px auto;
}

@media print {
	.com-print-btn-list {
		display: none;
	}
}

/* com-btn-list
============================================================ */
.sect-form .com-btn-list {
	text-align: center;
}

.com-btn-list {
	margin: 4em 0 -20px;
}

.com-btn,
.com-btn:link,
.com-btn:visited,
.com-btn-list a,
.com-btn-list a:link,
.com-btn-list a:visited {
	position: relative;
	display: inline-block;
	min-width: 215px;
	margin: 0 7px 20px;
	padding: 13px 40px 13px 22px;
	border: 1px solid #820002;
	background: #820002;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.6;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}

.com-btn.disable,
.com-btn-list a.disable {
	background: #820002;
	color: var(--dark-red);
	border-color: #820002;
	cursor: default;
}

.com-btn.left-arrow,
.com-btn-list a.left-arrow {
	padding-right: 22px;
	padding-left: 40px;
}

.com-btn::after,
.com-btn-list a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	display: inline-block;
	width: 9px;
	height: 9px;
	border-top: 2px solid #820002;
	border-right: 2px solid #820002;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.com-btn.left-arrow::after,
.com-btn-list a.left-arrow::after {
	right: inherit;
	left: 16px;
	-webkit-transform: translateY(-50%) rotate(225deg);
	transform: translateY(-50%) rotate(225deg);
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-btn-list {
		margin: 3em 0 -15px;
	}

	.com-btn,
	.com-btn:link,
	.com-btn:visited,
	.com-btn-list a,
	.com-btn-list a:link,
	.com-btn-list a:visited {
		margin-bottom: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: .933333333333em;
	}

	.com-btn::after,
	.com-btn-list a::after {
		width: 7px;
		height: 7px;
	}
}

@media screen and (max-width: 481px) {
	.com-btn-list {
		margin: 2em 0 -10px;
	}

	.com-btn,
	.com-btn:link,
	.com-btn:visited,
	.com-btn-list a,
	.com-btn-list a:link,
	.com-btn-list a:visited {
		min-width: inherit;
		margin: 0 0 10px;
	}
}

/* com-category-list
============================================================ */
.sect-category-list .sect-category-list-title {
	color: var(--red);
	border-bottom: 1px solid var(--red);
	margin-bottom: 20px;
	padding-block: 20px;
	font-size: 1.2em;
}

.com-category-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}

.com-category-list li {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border: 1px solid var(--gold);
	text-indent: 0;
	vertical-align: top;
	word-spacing: normal;
}

.com-category-list.-wrap-link li {
	display: flex;
	align-items: stretch;
	padding-bottom: 0;
}

.com-category-list.-wrap-link li>a {
	display: block;
	width: 100%;
	padding-bottom: 10px;
	text-decoration: none;
}

.com-category-list li:nth-child(2n+2) {
	margin-right: 0;
}

.com-category-list li::before {
	content: none;
}

.com-category-list li .thumb {
	display: block;
}

.com-category-list li .thumb a {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 248px;
}

.com-category-list li .thumb img {
	display: block;
	width: 100%;
	height: 248px;
	object-fit: cover;
}

.com-category-list li .title {
	position: relative;
	display: block;
	margin: 10px 20px 0;
	font-size: 1em;
}

.com-category-list li .description {
	display: block;
	min-height: 70px;
	margin: 10px 20px 0;
	padding: 10px 0 0;
	border-top: 1px solid #6c6c6c;
}

.com-category-list li .date {
	display: block;
	padding-left: 20px;
	font-size: .875em;
}

@media screen and (max-width: 1060px) {

	.com-category-list li .thumb a,
	.com-category-list li .thumb img {
		height: 23.397vw;
	}
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.sect-category-list .sect-category-list-title {
		border-bottom: none;
		margin-bottom: 0;
	}

	.com-category-list {
		margin: 0 0 -15px;
		grid-template-columns: repeat(2, 1fr);
	}

	.com-category-list li {
		width: 100%;
		line-height: 1.6;
	}

	.com-category-list li .thumb a,
	.com-category-list li .thumb img {
		height: 47.349vw;
	}

	.com-category-list li .title::before {
		top: 6px;
		width: 18px;
		height: 18px;
	}

	.com-category-list li .title::after {
		top: 12px;
		width: 6px;
		height: 6px;
	}
}

@media screen and (max-width: 811px) {
	.com-category-list {
		grid-template-columns: 100%;
		gap: 0;
	}

	.com-category-list li:not(:first-child) {
		border-top: none;
	}

	.com-category-list.-wrap-link li>a {
		padding-bottom: 10px;
	}

	.com-category-list li .title {
		margin: 10px 10px 0;
	}
}

/* com-news-list
============================================================ */
.com-news-list ul {
	margin: 0;
}

.com-news-list ul li {
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: 30px 0;
	border-bottom: 1px dotted #6c6c6c;
	line-height: 1.6;
	text-indent: 0;
}

.com-news-list.-wrap-link ul li {
	padding: 0;
}

.com-news-list ul li::before {
	content: none;
}

.com-news-list ul li:first-child {
	border-top: 1px dotted #6c6c6c;
}

.com-news-list ul li:last-child {
	margin-bottom: 0;
}

.com-news-list.-wrap-link ul li>a {
	display: block;
	width: 100%;
	padding: 30px 0;
	text-decoration: none;
}

.com-news-list ul li .list-category-mark {
	width: 95px;
	padding: 3px 5px;
	background: #6c6c6c;
	color: #fff;
	font-size: .75em;
	line-height: 2.1;
	text-align: center;
}

.com-news-list ul li .thumb {
	display: inline-block;
	width: 100px;
	padding-left: 20px;
}

.com-news-list ul li .thumb img {
	width: 100%;
	height: auto;
}

.com-news-list ul li .date {
	padding-left: 20px;
	width: 145px;
	color: #6c6c6c;
	font-size: .75em;
	line-height: 2.4;
	letter-spacing: 2px;
}

.com-news-list ul li .title {
	width: calc(100% - 95px - 145px);
	padding-left: 10px;
}

.com-news-list.-wrap-link ul li>a .title {
	text-decoration: underline;
}

.com-news-list.-wrap-link ul li>a:hover .title {
	text-decoration: none;
}

.com-news-list ul li .title .new {
	background: #f80000;
	color: #fff;
	margin-left: 6px;
	padding: 2px 5px;
	font-size: .8em;
}

.com-news-list ul li .title a {
	line-height: 1.7;
}

.com-news-list ul li>*:first-child {
	padding-left: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-news-list ul li {
		flex-wrap: wrap;
		padding: 15px 0;
	}

	.com-news-list.-wrap-link ul li {
		padding: 0;
	}

	.com-news-list.-wrap-link ul li>a {
		padding: 15px 0;
	}

	.com-news-list ul li .thumb {
		width: 70px;
	}

	.com-news-list ul li .date {
		width: auto;
	}

	.com-news-list ul li .title {
		width: 100%;
		margin-top: 12px;
		padding-left: 0;
	}
}

/* com-mini-schedule
============================================================ */
.com-mini-schedule .calendar-nav {
	text-align: center;
	margin-bottom: 5px;
}

.com-mini-schedule .calendar-nav span {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}

.com-mini-schedule .calendar-nav span:last-child {
	margin-right: 0;
}

.com-mini-schedule .calendar-nav .now-month {
	font-weight: bold;
	vertical-align: middle;
}

.com-mini-schedule .calendar-nav .prev-month a,
.com-mini-schedule .calendar-nav .next-month a {
	display: inline-block;
	font-weight: bold;
	text-decoration: underline;
	vertical-align: middle;
	cursor: pointer;
}

.com-mini-schedule .calendar-nav .prev-month a:hover,
.com-mini-schedule .calendar-nav .next-month a:hover {
	text-decoration: none;
	opacity: .8;
}

.com-mini-schedule .calendar-nav .prev-month a::before,
.com-mini-schedule .calendar-nav .next-month a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
}

.com-mini-schedule .calendar-nav .prev-month a::before {
	border-width: 6px 8px 6px 0;
	border-color: transparent #333 transparent transparent;
}

.com-mini-schedule .calendar-nav .next-month a::after {
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
}

.com-mini-schedule .mini-calendar {
	table-layout: fixed;
	border-collapse: collapse;
	width: auto;
	margin: 0 auto;
}

.com-mini-schedule .mini-calendar .cal-head {
	width: auto;
	height: auto;
	padding: 2px 5px;
	color: #333;
	background: #f8f7f7;
	border: 1px solid #6c6c6c;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day {
	width: auto;
	height: auto;
	padding: 2px 5px;
	border: 1px solid #6c6c6c;
	text-align: center;
	vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day.gogoshinryoubi {
	background: #c4d9ea;
}

.com-mini-schedule .mini-calendar .cal-day.kyuushinbi {
	background: #ffd3d3;
}

.com-mini-schedule .mini-calendar .cal-day.pre_month,
.com-mini-schedule .mini-calendar .cal-day.next_month {
	background: #f8f7f7;
}

.com-mini-schedule .mini-calendar .cal-head.saturday,
.com-mini-schedule .mini-calendar .cal-day.saturday {
	color: #0a5fa0;
}

.com-mini-schedule .mini-calendar .cal-head.sunday,
.com-mini-schedule .mini-calendar .cal-day.sunday {
	color: #f80000;
}

/* com-calendar-legends
============================================================ */
.com-calendar-legends ul {
	margin: 5px 0 0;
	text-align: center;
}

.com-calendar-legends ul>li {
	display: inline-block;
	margin-right: 5px;
	padding-left: 0;
	font-size: .933333333333em;
	text-indent: 0;
}

.com-calendar-legends ul>li:last-child {
	margin-right: 0;
}

.com-calendar-legends ul>li::before {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-bottom: 4px;
	margin-right: 5px;
	border-radius: 0;
	background: #333;
	vertical-align: middle;
}

.com-calendar-legends ul>li.all-day::before {
	background: #ffd3d3;
}

.com-calendar-legends ul>li.afternoon::before {
	background: #c4d9ea;
}

/* com-side-menu-list
============================================================ */
.com-side-menu-list {
	margin-bottom: 40px;
}

.com-side-menu-list:last-child {
	margin-bottom: 0;
}

.com-side-menu-list li {}

.com-side-menu-list h3 a {
	padding: 15px 15px;
	display: block;
	background: var(--dark-red);
	color: #fff;
	font-size: 1em;
}

.com-side-menu-list ul li {
	font-size: 0.875em;
}

.com-side-menu-list ul li:nth-child(even) {
	background: var(--sidebar-even);
}

.com-side-menu-list ul li:nth-child(odd) {
	background: var(--sidebar-odd);
}

.com-side-menu-list ul li a,
.com-side-menu-list ul li span {
	padding: 10px 15px;
	display: block;
}

.com-side-menu-list ul li span.active {
	font-weight: bold;
	border: 2px solid var(--dark-red);
}

.com-side-menu-list ul li ul li,
.com-side-menu-list ul li ul li:first-child,
.com-side-menu-list ul li ul li:last-child {
	margin: 0;
	padding: 0 0 0 10px;
	border: none;
	text-indent: 0;
}

.com-side-menu-list ul li ul li a,
.com-side-menu-list ul li ul li span {
	position: relative;
	padding-left: 15px;
	font-weight: lighter;
}

.com-side-menu-list ul li ul li a::before,
.com-side-menu-list ul li ul li span::before {
	content: "";
	display: block;
	position: absolute;
	left: -3px;
	top: calc(50% - 2px);
	width: 8px;
	height: 8px;
	background: none;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.com-side-menu-list ul li ul li ul li {
	padding-left: 20px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-side-menu-list {
		margin-bottom: 20px;
	}
}

/* com-side-bnr-list
============================================================ */
.com-side-bnr-list {
	margin-bottom: 40px;
}

.com-side-bnr-list:last-child {
	margin-bottom: 0;
}

.com-side-bnr-list li {
	margin-bottom: 20px;
}

.com-side-bnr-list li:last-child {
	margin-bottom: 0;
}

.com-side-bnr-list li img {
	width: 100%;
	height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-side-bnr-list {
		margin-bottom: 20px;
	}

	.com-side-bnr-list li {
		margin-bottom: 10px;
	}
}

/* com-faq
============================================================ */
.com-faq-wrap {
	width: 100%;
	margin: 0 auto;
}

.com-faq {
	position: relative;
	margin-bottom: 40px;
}

.com-faq:last-child {
	margin-bottom: 0;
}

.com-faq .title {
	position: relative;
	border: 1px solid #6c6c6c;
	margin: 0;
	padding: 13px 55px 13px calc(1.2em + 15px + 20px);
	font-size: 1.333333333333em;
	font-weight: bold;
	color: #333;
	background: #fff;
	line-height: 1.4;
	text-indent: calc(-1.2em - 15px);
	cursor: pointer;
}

.com-faq .title::after {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 25px;
	top: calc(50% - 4px);
	width: 15px;
	height: 15px;
	border-top: 1px solid #6c6c6c;
	border-right: 1px solid #6c6c6c;
	transition: all .2s ease-in-out;
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.com-faq .title.active::after {
	top: calc(50% + 4px);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

.com-faq .title .title-q {
	display: inline-block;
	margin-right: 15px;
	font-weight: bold;
	text-indent: 0;
}

.com-faq .body {
	display: none;
	background: #f8f8f8;
}

.com-faq .body .body-inner {
	padding: 25px 30px;
	text-align: justify;
}

.com-faq .body .body-inner> :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-faq {
		margin-bottom: 30px;
	}

	.com-faq .title {
		padding: 13px 45px 13px calc(1.2em + 10px + 20px);
		text-indent: calc(-1.2em - 10px);
	}

	.com-faq .title::after {
		right: 20px;
		width: 13px;
		height: 13px;
	}

	.com-faq .title .title-q {
		margin-right: 10px;
	}

	.com-faq .body .body-inner {
		padding: 20px 25px;
	}
}

@media screen and (max-width: 481px) {
	.com-faq {
		margin-bottom: 25px;
	}

	.com-faq .title {
		padding: 8px 40px 8px calc(1.2em + 5px + 15px);
		text-indent: calc(-1.2em - 5px);
		font-size: 1.2em;
		line-height: 1.35;
	}

	.com-faq .title::after {
		right: 15px;
		width: 12px;
		height: 12px;
	}

	.com-faq .title .title-q {
		margin-right: 5px;
	}

	.com-faq .body .body-inner {
		padding: 15px 20px;
	}
}

/* com-table
============================================================ */

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-table1 {
		width: 100%;
		border-right: none !important;
		border-left: none !important;
	}

	.com-table1 th,
	.com-table1 td {
		display: block;
		width: 100% !important;
		height: auto !important;
		border-right: none !important;
		border-left: none !important;
	}

	.com-table1 td {
		min-height: 45px;
	}

	.com-table3-wrap,
	.com-table4-wrap {
		position: relative;
		margin-bottom: 1em;
	}

	.com-table3-wrap::after,
	.com-table4-wrap::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 20px;
		height: 100%;
		background: linear-gradient(to left, rgba(0, 0, 0, .20) 0%, rgba(0, 0, 0, 0) 100%);
	}

	.com-table3-scroll,
	.com-table4-scroll {
		overflow: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.com-table3-wrap .com-table3,
	.com-table4-wrap .com-table4 {
		margin-bottom: 0 !important;
	}

	.com-table3-wrap .com-table3 th,
	.com-table3-wrap .com-table3 td,
	.com-table4-wrap .com-table4 th,
	.com-table4-wrap .com-table4 td {
		display: table-cell !important;
		width: auto !important;
	}
}

@media screen and (max-width: 481px) {
	.com-table2 {
		border-right: none !important;
		border-left: none !important;
	}

	.com-table2 th,
	.com-table2 td {
		display: block;
		width: 100% !important;
		height: auto !important;
		border-right: none !important;
		border-left: none !important;
	}
}

/* com-signature
============================================================ */
.com-signature address {
	margin-top: 100px;
	padding: 20px;
	border: 1px solid #6c6c6c;
}

.com-signature address span {
	display: block;
	font-style: normal;
}

.com-signature address .department {
	margin-bottom: .5em;
	border-bottom: 1px solid #6c6c6c;
	font-size: 1.333333333333em;
	font-weight: bold;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-signature address {
		margin-top: 50px;
		padding: 20px;
	}

	.com-signature address .department {
		font-size: 1.2em;
	}
}

/* com-asterisk-list
============================================================ */
.com-asterisk-list,
.contentBody .com-asterisk-list {
	list-style: none;
	text-indent: 0;
}

.com-asterisk-list>li,
.contentBody .com-asterisk-list>li {
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
	vertical-align: middle;
}

.com-asterisk-list>li::before,
.contentBody .com-asterisk-list>li::before {
	content: "※";
	display: inline;
	width: auto;
	height: auto;
	margin-bottom: 0;
	margin-right: 0;
	background: none;
	border-radius: 0;
	text-indent: 0;
	vertical-align: top;
}

.com-asterisk-list>li>*,
.contentBody .com-asterisk-list>li>* {
	text-indent: 0;
}

.com-asterisk-list>li :last-child,
.contentBody .com-asterisk-list>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {}

/* com-asterisk-num-list
============================================================ */
.com-asterisk-num-list,
.contentBody .com-asterisk-num-list {
	counter-reset: anum;
	list-style: none;
	text-indent: 0;
}

.com-asterisk-num-list>li,
.contentBody .com-asterisk-num-list>li {
	counter-increment: anum;
	list-style: none;
	padding-left: 2em;
	text-indent: -2em;
	vertical-align: middle;
}

.com-asterisk-num-list>li::before,
.contentBody .com-asterisk-num-list>li::before {
	content: "※"counter(anum);
	display: inline;
	width: auto;
	height: auto;
	margin-bottom: 0;
	margin-right: 0;
	background: none;
	border-radius: 0;
	text-indent: 0;
	vertical-align: top;
}

.com-asterisk-num-list>li>*,
.contentBody .com-asterisk-num-list>li>* {
	text-indent: 0;
}

.com-asterisk-num-list>li :last-child,
.contentBody .com-asterisk-num-list>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {}

/* com-cercle-list
============================================================ */
.com-cercle-list {
	list-style: none;
	text-indent: 0;
}

.com-cercle-list>li {
	list-style: none;
	padding-left: .925em;
	text-indent: -.925em;
}

.com-cercle-list>li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-bottom: 4px;
	margin-right: 5px;
	background: #333;
	border-radius: 4px;
	vertical-align: middle;
}

.com-cercle-list>li>* {
	text-indent: 0;
}

.com-cercle-list>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-cercle-list>li::before {
		width: 6px;
		height: 6px;
		margin-bottom: 2px;
	}
}

/* com-cercle-list2
============================================================ */
.com-cercle-list2 {
	list-style: none;
	text-indent: 0;
}

.com-cercle-list2>li,
.contentBody .com-cercle-list2>li {
	list-style: none;
	padding-left: .925em;
	text-indent: -.925em;
}

.com-cercle-list2>li::before,
.contentBody .com-cercle-list2>li::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-bottom: 4px;
	margin-right: 5px;
	background: none;
	border: 1px solid #333;
	border-radius: 100%;
	vertical-align: middle;
}

.com-cercle-list2>li>* {
	text-indent: 0;
}

.com-cercle-list2>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-cercle-list2>li::before {
		width: 8px;
		height: 8px;
		margin-bottom: 2px;
	}
}

/* com-paren-num-list
============================================================ */
.com-paren-num-list,
.contentBody .com-paren-num-list {
	counter-reset: pnum;
	list-style: none;
	text-indent: 0;
}

.com-paren-num-list>li,
.contentBody .com-paren-num-list>li {
	counter-increment: pnum;
	list-style: none;
	position: relative;
	padding-left: 30px;
	text-indent: 0;
}

.com-paren-num-list>li::before,
.contentBody .com-paren-num-list>li::before {
	content: "("counter(pnum) ") ";
	position: absolute;
	left: 0;
	padding-right: 0;
}

.com-paren-num-list>li :last-child,
.contentBody .com-paren-num-list>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {

	.com-paren-num-list>li,
	.contentBody .com-paren-num-list>li {
		padding-left: 25px;
	}
}

/* com-circle-num-list
============================================================ */
.com-circle-num-list,
.contentBody .com-circle-num-list {
	counter-reset: cnum;
	list-style: none;
	text-indent: 0;
}

.com-circle-num-list>li,
.contentBody .com-circle-num-list>li {
	counter-increment: cnum;
	list-style: none;
	position: relative;
	padding-left: 25px;
	text-indent: 0;
}

.com-circle-num-list>li::before,
.contentBody .com-circle-num-list>li::before {
	content: counter(cnum);
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	height: 16px;
	width: 16px;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #333;
	border-radius: 100%;
	font-size: .75em;
	font-weight: bold;
	letter-spacing: -.8px;
	line-height: 13px;
	text-align: center;
}

.com-circle-num-list>li :last-child,
.contentBody .com-circle-num-list>li :last-child {
	margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {

	.com-circle-num-list>li,
	.contentBody .com-circle-num-list>li {
		padding-left: 20px;
	}

	.com-circle-num-list>li::before,
	.contentBody .com-circle-num-list>li::before {
		top: 6px;
		height: 14px;
		width: 14px;
		font-size: .7em;
		line-height: 12px;
	}
}

/* com-strike
============================================================ */
.com-strike {
	text-decoration: line-through;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
	-webkit-text-decoration-style: double;
	text-decoration-style: double;
	-webkit-text-decoration-color: #f80000;
	text-decoration-color: #f80000;
	-webkit-text-decoration-thickness: 2px;
	text-decoration-thickness: 2px;
}

/* com-col-left-img
============================================================ */
.com-col-left-img {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 2em;
}

.com-col-left-img>.text {
	order: 2;
	width: calc(60% - 20px);
	margin-left: 20px;
}

.com-col-left-img>.img {
	order: 1;
	width: calc(40% - 20px);
	margin-right: 20px;
}

.com-col-left-img>.img img {
	width: 100%;
	height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-col-left-img {
		display: block;
	}

	.com-col-left-img>.text,
	.com-col-left-img>.img {
		width: 100%;
		margin: 0;
	}
}

/* com-col-right-img
============================================================ */
.com-col-right-img {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 2em;
}

.com-col-right-img>.text {
	width: calc(60% - 20px);
	margin-right: 20px;
}

.com-col-right-img>.img {
	width: calc(40% - 20px);
	margin-left: 20px;
}

.com-col-right-img>.img img {
	width: 100%;
	height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-col-right-img {
		display: block;
	}

	.com-col-right-img>.text,
	.com-col-right-img>.img {
		width: 100%;
		margin: 0;
	}
}

/* com-col-text
============================================================ */
.com-col-text {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 2em;
}

.com-col-text>.text1 {
	width: calc(50% - 20px);
	margin-right: 20px;
}

.com-col-text>.text2 {
	width: calc(50% - 20px);
	margin-left: 20px;
}

.com-col-text>.text3 {
	width: calc(33% - 20px);
	margin-left: 20px;
}

.com-col-text>.text3:first-child {
	margin-left: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-col-text {
		display: block;
	}

	.com-col-text>.text1,
	.com-col-text>.text2,
	.com-col-text>.text3 {
		width: 100%;
		margin: 0;
	}
}

/* com-col-img
============================================================ */
.com-col-img {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 2em;
}

.com-col-img>.img1 {
	width: calc(50% - 20px);
	margin-right: 20px;
}

.com-col-img>.img2 {
	width: calc(50% - 20px);
	margin-left: 20px;
}

.com-col-img>.img1 img,
.com-col-img>.img2 img {
	height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-col-img {
		display: block;
	}

	.com-col-img>.img1,
	.com-col-img>.img2 {
		margin: 0;
	}

	.com-col-img>.img1 {
		margin-bottom: 20px;
	}
}

/* com-border-box
============================================================ */
.com-border-box {
	border: 1px solid #ccc;
	margin-bottom: 2em;
	padding: 25px 30px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.com-border-box {
		padding: 10px 15px;
	}
}

/* pc-only/sp-only
============================================================ */
@media screen and (min-width: 812px) {
	.sp-only {
		display: none !important;
	}
}

@media print {
	.sp-only {
		display: none !important;
	}
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.pc-only {
		display: none !important;
	}
}

/* greater/less
============================================================ */
@media screen and (min-width: 812px) {
	.greater-w812 {
		display: inherit !important;
	}

	.less-w811,
	.less-w481 {
		display: none !important;
	}
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {

	.greater-w812,
	.less-w481 {
		display: none !important;
	}

	.less-w811 {
		display: inherit !important;
	}

	.is-tablet :hover {
		opacity: 1 !important;
		color: inherit !important;
	}
}

@media screen and (min-width: 482px) {
	.greater-w482 {
		display: inherit !important;
	}
}

@media screen and (max-width: 481px) {
	.greater-w482 {
		display: none !important;
	}

	.less-w481 {
		display: inherit !important;
	}
}

@media print {

	.less-w811,
	.less-w481 {
		display: none !important;
	}
}

/* Styles
================================================== */

/* 管理画面エディタ上のスタイルXX のテキスト変更したい場合は以下を参考にコメント追加ください。(spanタグ) */
/* selector:style class:style1 title:スタイル1 */
.style1 {
	font-size: 150%;
}

.style2 {
	color: var(--gold);

}

.style3 {
	color: navy;
}

.style4 {
	color: green;
}

.style5 {
	color: yellow;
}

.style6 {
	color: #ffff00;
}

.style7 {
	font-size: 125%;
	color: #fff;
}

.style8 {
	background: linear-gradient(transparent 60%, #ff99cc 0%);
}

.style9 {
	background: var(--personal-red);
}

.style9 a {
    background: var(--personal-red);
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #fff!important;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: bold;
	font-size: 100%;
	text-decoration: none;
}
.style9 a:hover {
    background: #333;
    color: #FFF!important;
}
.style9 a:after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.style9 a:hover:after {
    border-color: #FFF;
}

.style9 a:link, .style9 a:visited{
	text-decoration: none!important;
}




.style10 {}

/* 管理画面エディタ上で独自クラスでスタイル追加したい場合、以下のように追記ください。(pタグ) */
/* selector:style class:p-sankoubunken title:参考文献 tag:p
  （有効にしたい場合、1行で閉じること）
.p-sankoubunken,
.contentBody p.p-sankoubunken
{
}
*/


.waku {
	padding: 3%;
	margin: 2em 0;
	background: #960400;
	box-shadow: 0px 0px 0px 10px #960600;
	border: dashed 2px white;
}

.waku p {
	margin: 0;
	padding: 0;
}


/* video-category-list
============================================================ */
.video-category-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.video-category-list li {
	border: 1px solid var(--gold);
	background: var(--background-base);
}

.video-category-list li a {
	display: grid;
	height: 100%;
}

.video-category-list li a .thumb {
	width: 100%;
	height: 250px;
	background: #820002;
}

.video-category-list li a .thumb img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.video-category-list li a .title {
	font-size: 1.25em;
	font-weight: bold;
	text-decoration: underline;
	padding: 10px 20px;
}

@media screen and (max-width: 811px) {
	.video-category-list {
		grid-template-columns: 1fr;
		max-width: 450px;
		margin-inline: auto;
	}
}

@media screen and (max-width: 481px) {
	.video-category-list li a .thumb {
		height: 56.25vw;
	}
}

/* com-title
============================================================ */
.com-title {
	text-align: center;
}

.com-title-ja {
	font-size: 1.8em;
}

.com-title-en {
	font-family: 'Zen Maru Gothic', sans-serif;
	color: var(--red);
	text-transform: capitalize;
	margin-top: 10px;
}

.com-title._white .com-title-ja{
	color: #fff;
}

.com-title._white .com-title-en {
	color: var(--gold);
}

/* osusume
============================================================ */
.contentBody .osusume {
	background: url(/theme/sn-default/images/personal/gift-bg.jpg) no-repeat;
	background-size: cover;
	background-position: bottom;
	padding: 6em 3em 3em;
	position: relative;
	margin-top: 3em;
}

.contentBody h2.osusume-title {
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translate(-50%);
	max-width: 330px;
	width: 100%;
	background: none;
	border: none;
	margin-bottom: 0;
	padding: 0;
}

.contentBody ul.osusume-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.contentBody ul.osusume-list li {
	text-indent: 0;
	padding: 0;
}

.contentBody ul.osusume-list li::before {
	content: none;
}

.contentBody ul.osusume-list li a {
	color: var(--black);
	text-decoration: none;
}

.contentBody ul.osusume-list li img {
	border: 2px solid var(--gold);
}

.com-section .contentBody ul.osusume-list li img {
	border: 2px solid var(--gold);
	width: 100%;
}

.contentBody ul.osusume-list li h3 {
	color: var(--personal-red);
	background: none;
	border: none;
	margin: 0;
	margin-top: 20px;
	padding: 0;
}

.contentBody ul.osusume-list li p {
	font-size: 0.875em;
	margin: 0;
	margin-top: 15px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
	.contentBody .osusume {
		padding: 4em 2em 2em;
		margin-top: 3em;
	}

	.contentBody h2.osusume-title {
		max-width: 300px;
	}

	.contentBody ul.osusume-list {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media screen and (max-width: 481px) {
	.contentBody h2.osusume-title {
		max-width: 200px;
	}

	.contentBody ul.osusume-list {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}






/* top-category_contact-list
------------------------------------------------------------ */


.top-category_contact-list .contentBody table td {
    background: #fff;
}



