@charset "UTF-8";

/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆

  初期スタイル
  …要素に自動的につくスタイル

◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* -----------------------------
  セクション
-----------------------------*/
.main_column header {
	margin-bottom: 20px;
}

/* -----------------------------
  段落
-----------------------------*/

.contents table:not(:last-child) {
	margin-bottom: 15px;
}

/* -----------------------------
  リンク
-----------------------------*/
.contents a {
	color: #a80000;
}

/* hover */
.contents a:hover,
.header_links a:hover,
.site_footer a:hover,
.breadcrumb a:hover {
	opacity: 0.8;
}

/* ヘッダー・フッター */
.site_header a,
.site_footer a {
	text-decoration: none;
}

/* -----------------------------
  pre
-----------------------------*/
pre {
	white-space: pre-wrap;
}

/* -----------------------------
  その他
-----------------------------*/
.contents mark {
	margin: 2px 3px;
	background-color: #000;
	color: #fff;
	padding: 2px 5px 1px;
	border-radius: 3px;
	display: inline-block;
}

.contents em {
	font-style: italic;
}

.contents strong {
	font-weight: bold;
}

small {
	font-size: 12px;
}

figure {
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

figure figcaption {
	font-size: 12px;
	color: #999;
}

/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆

  汎用クラス
  …クラスを付与することでつけるスタイル

◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ================================================
  ブロック
================================================ */

/* -----------------------------
  フルサイズ要素の子要素
-----------------------------*/
.fullsize_inner {
	width: 930px;
	margin: 0 auto;
}

@media (max-width: 959px) {
	.fullsize_inner {
		width: auto;
		padding: 0 15px;
	}
}

/* -----------------------------
  セクション
-----------------------------*/
.main_column .section1:not(:last-child) {
	margin-bottom: 30px;
}

.main_column .section2 {
	margin-top: 30px;
}

.sub_column .section1:not(:last-child) {
	margin-bottom: 15px;
}

/* -----------------------------
  枠付きボックス
-----------------------------*/
.box_bordered {
	border: 1px solid #ddd;
	padding: 15px;
	background-color: #fff;
}

/* メインカラムは影つき */
.main_column .box_bordered {
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.05);
}

.main_column .box_bordered:not(:last-child) {
	margin-bottom: 20px;
	/* multi_columnsでは消す */
}

/* サブカラム */
.sub_column .box_bordered {
	padding: 10px;
}

.sub_column .box_bordered:not(:last-child) {
	margin-bottom: 15px;
}

/* 破線化 */
.box_bordered.dashed {
	border-style: dashed;
}

.box_bordered h1,
.box_bordered h2,
.box_bordered h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1.5;
}

.box_bordered h1 a,
.box_bordered h2 a,
.box_bordered h3 a {
	font-size: 16px;
}

.box_bordered p:not(:last-child):not(.image) {
	margin-bottom: 5px;
}

/* 画像 */
.box_bordered .image {
	overflow: hidden;
}

.multi_columns .box_bordered .image {
	margin-bottom: 15px;
}

.multi_columns .box_bordered .image img {
	width: 100%;
}

.column2 .box_bordered .image {
	max-height: 167px;
}

.column3 .box_bordered .image {
	max-height: 102px;
}

/* 埋め込み動画（YouTube） */
.youtube-wrap {  
    position: relative;  
    width: 80vw;  
    aspect-ratio: 16 / 9;  
    max-width: 440px;  
    overflow: hidden;  
}  

@media (max-width: 559px) {  
    .youtube-wrap{  
        margin: 0 -95px;  /* モバイル表示でラベル分左に */  
    }  
}  

.youtube-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}


/* -----------------------------
 リードボックス
-----------------------------*/
/* 矢印のためのアウター */
.box_lead_outer {
	padding-top: 40px;
	position: relative;
}

/* 矢印 */
.box_lead_outer::before,
.box_lead_outer::after {
	position: absolute;
	content: "";
	top: 0;
	display: inline-block;
	width: 2px;
	height: 40px;
	background-color: #000;
}

.box_lead_outer::before {
	left: calc(50% + 19px);
	transform: rotate(72deg);
	-webkit-transform: rotate(72deg);
}

.box_lead_outer::after {
	left: calc(50% - 19px);
	transform: rotate(-72deg);
	-webkit-transform: rotate(-72deg);
}

/* ボックス本体 */
.box_lead {
	padding: 15px;
	border: 2px solid #000;
	border-radius: 5px;
	text-align: center;
}

.box_lead h1 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.box_lead .btn {
	color: #fff;
	font-size: 20px;
	padding: 20px;
	min-width: 210px;
	background-image: linear-gradient(
		to bottom,
		#bd0202 0%,
		#bd0202 49%,
		#a80000 50%,
		#a80000
	);
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#bd0202),
		color-stop(0.49, #bd0202),
		color-stop(0.5, #a80000),
		to(#a80000)
	);
	background-image: -moz-linear-gradient(
		top,
		#bd0202 0%,
		#bd0202 49%,
		#a80000 50%,
		#a80000
	);
}

/* -----------------------------
 イメージボックス
-----------------------------*/
.box_image {
	border-radius: 5px;
	overflow: hidden;
	padding: 0;
	line-height: 0;
}

/* .contents p~のstyleを打ち消すのに.contentsからの記述が必要 */
.contents .box_image:not(:last-child) {
	margin-bottom: 20px;
}

.contents .box_image:nth-last-child(2) {
	margin-bottom: 0;
}

.box_image img {
	width: 100%;
}

/* -----------------------------
 ボックス系の複数カラム化
-----------------------------*/
.multi_columns {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}

.multi_columns:not(:last-child) {
	margin-bottom: 20px;
}

.multi_columns .box_bordered,
.multi_columns .box_bordered:not(:last-child),
.multi_columns .box_bordered:last-child {
	margin-bottom: 0;
}

/* カラム数ごとのwidth */
/* デフォルトでは絶対サイズ */
/* box_bordered */
.multi_columns.column2 .box_bordered {
	width: 425px;
}

.multi_columns.column3 .box_bordered {
	width: 268px;
}

.main_column .multi_columns.column2 .box_bordered {
	width: 285px;
}

.main_column .multi_columns.column3 .box_bordered {
	width: 174px;
}

/* box_lead */
.main_column .multi_columns .box_lead {
	width: 280px;
}

/* box_image */
.main_column .multi_columns .box_image {
	width: 315px;
	align-self: flex-start;
	-webkit-align-self: flex-start;
	-ms-align-self: flex-start;
}

/* 一定画面サイズ以下で相対サイズ */
@media (max-width: 959px) {
	/* box_bordered */
	.multi_columns.column2 .box_bordered,
	.main_column .multi_columns.column2 .box_bordered {
		width: calc(49% - 32px);
	}

	.multi_columns.column3 .box_bordered,
	.main_column .multi_columns.column3 .box_bordered {
		width: calc(32% - 32px);
	}

	/* box_lead */
	.main_column .multi_columns .box_lead {
		width: calc(49% - 34px);
	}

	.main_column .multi_columns .box_lead .btn {
		min-width: 0;
		width: calc(80% - 30px);
	}

	/* box_image */
	.main_column .multi_columns .box_image {
		width: 48%;
	}
}

/* 一定画面サイズ以下で1カラム化 */
@media (max-width: 559px) {
	.multi_columns.column3 .box_bordered,
	.main_column .multi_columns.column3 .box_bordered {
		width: 100%;
	}

	.multi_columns.column3 .box_bordered:not(:last-child) {
		margin-bottom: 15px;
	}

	/* image_box */
	.main_column .multi_columns .box_image {
		width: 100%;
	}

	.contents .main_column .multi_columns .box_image:nth-last-child(2) {
		margin-bottom: 20px;
	}
}

/* -----------------------------
  挿絵つき文章
-----------------------------*/
.box_illustrated {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
}

.box_illustrated:not(:last-child) {
	margin-bottom: 15px;
}

.box_illustrated .image {
	width: 200px;
	line-height: 0;
	/* box_borderedと同じスタイル */
	padding: 10px;
	border: 1px solid #ddd;
	background-color: #fff;
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.05);
}

/* .contents p~のスタイルを打ち消すのに.contentsから記述 */
.contents .box_illustrated .image {
	margin-bottom: 0;
}

.box_illustrated .image img {
	width: 100%;
}

.box_illustrated .text {
	width: calc(100% - 222px - 15px);
}

/* 一定画面サイズ以下で相対サイズ */
@media (max-width: 559px) {
	.box_illustrated .image {
		width: calc(40% - 22px);
	}

	.box_illustrated .text {
		width: calc(60% - 10px);
	}
}

/* box_borderedと併用 */
.box_bordered.box_illustrated .image {
	padding: 0;
	border: none;
	box-shadow: none;
}

.box_bordered.box_illustrated .text {
	width: calc(100% - 200px - 15px);
}

.box_bordered.box_illustrated.small_image .image {
	width: 100px;
}

.box_bordered.box_illustrated.small_image .text {
	width: calc(100% - 100px - 15px);
}

/* ================================================
  見出し
================================================ */
.heading1,
.heading2,
.heading3,
.heading4 {
	font-weight: bold;
}

.heading1 {
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ddd;
	margin-bottom: 20px;
}

.heading2 {
	font-size: 16px;
	padding: 15px;
	border-radius: 5px;
	background-color: #f0f0f0;
	margin-bottom: 15px;
}

.heading3 {
	font-size: 16px;
	border-left: 2px solid #a80000;
	padding-left: 10px;
	margin-bottom: 15px;
}

.heading4 {
	margin-bottom: 15px;
}

/* ================================================
  段落
================================================ */
.contents p:not(:last-child) {
	margin-bottom: 10px;
}

.contents .sub_column p:not(:last-child) {
	margin-bottom: 5px;
}

.text_left {
	text-align: left;
}

.text_right {
	text-align: right;
}

.text_center {
	text-align: center;
}

/* ================================================
  ボタン
================================================ */

/* -----------------------------
  ボタン共通スタイル
-----------------------------*/
.btn {
	display: inline-block;
	text-decoration: none;
	border-radius: 5px;
	line-height: 1;
}

.btn:hover {
	opacity: 0.8;
	cursor: pointer;
}

.btn img {
	vertical-align: middle;
	margin-right: 5px;
}

/* -----------------------------
  ボタンの種類(色・形)
-----------------------------*/
/* 強調ボタン */
.btn.strong {
	background-color: #a40000;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}

/* 中くらいの強さのボタン */
.btn.normal {
	background-color: #000;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}

/* 補助情報ボタン */
.btn.aside {
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	padding: 10px;
}

/* -----------------------------
  ボタンの大きさ
-----------------------------*/
/* デフォルトより大きく */
.btn.big {
	padding: 15px 20px;
	font-size: 16px;
}

/* サブカラムでは幅100% */
.sub_column .btn {
	text-align: center;
	width: calc(100% - 20px);
}

.sub_column .btn.aside {
	width: calc(100% - 22px);
	/* ボーダー分多く引く */
}

/* ================================================
  リンク
================================================ */

/* -----------------------------
  矢印アイコン
-----------------------------*/
.arrow,
.box h1 a:not([target="_blank"]),
ul.news li a:not([target="_blank"]),
table.company a:not([target="_blank"]) {
	position: relative;
	padding-left: 15px;
}

.arrow::before,
.box h1 a:not([target="_blank"])::before,
ul.news li a:not([target="_blank"])::before,
.site_footer
	.doormat_nav
	ul.doormat_nav_items
	li:not(:first-child)
	a:not([target="_blank"])::before,
table.company a:not([target="_blank"])::before {
	position: absolute;
	content: "";
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border-right: 2px solid;
	border-top: 2px solid;
	border-color: #a40000;
	width: 5px;
	height: 5px;
	top: 4px;
	left: 0;
}

/* 個別スタイル */
.btn.arrow {
	padding-left: 23px;
}

.btn.arrow::before {
	left: 10px;
	top: 13px;
}

.btn.strong.arrow::before {
	border-color: #fff;
}

ul.news li a:not([target="_blank"]) {
	padding-left: 15px;
}

ul.news li a:not([target="_blank"])::before {
	top: 6px;
	left: 1px;
}

.site_footer
	.doormat_nav
	ul.doormat_nav_items
	li:not(:first-child)
	a:not([target="_blank"])::before {
	border-color: #999;
}

/* -----------------------------
  ウィンドウアイコン
-----------------------------*/
.window,
.box h1 a[target="_blank"],
ul.news li a[target="_blank"],
.list_categorized .list h1 a[target="_blank"],
.list_categorized .list li a[target="_blank"],
table.company a[target="_blank"] {
	position: relative;
	padding-left: 17px;
}

.window::before,
.window::after,
.box h1 a[target="_blank"]::before,
.box h1 a[target="_blank"]::after,
ul.news li a[target="_blank"]::before,
ul.news li a[target="_blank"]::after,
.list_categorized .list h1 a[target="_blank"]::before,
.list_categorized .list h1 a[target="_blank"]::after,
.list_categorized .list li a[target="_blank"]::before,
.list_categorized .list li a[target="_blank"]::after,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::before,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::after,
table.company a[target="_blank"]::before,
table.company a[target="_blank"]::after {
	position: absolute;
	content: "";
	display: inline-block;
	border-color: #a80000;
	border-style: solid;
	border-width: 0;
}

.window::before,
.box h1 a[target="_blank"]::before,
ul.news li a[target="_blank"]::before,
.list_categorized .list h1 a[target="_blank"]::before,
.list_categorized .list li a[target="_blank"]::before,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::before,
table.company a[target="_blank"]::before {
	top: 7px;
	left: 0;
	width: 8px;
	height: 6px;
	border-left-width: 1px;
	border-bottom-width: 1px;
}

.window::after,
.box h1 a[target="_blank"]::after,
ul.news li a[target="_blank"]::after,
.list_categorized .list h1 a[target="_blank"]::after,
.list_categorized .list li a[target="_blank"]::after,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::after,
table.company a[target="_blank"]::after {
	top: 4px;
	left: 2px;
	width: 5px;
	height: 3px;
	border-width: 2px;
	border-top-width: 3px;
}

/* 個別スタイル */
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::before,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::after {
	border-color: #999;
}

.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::before {
	top: 6px;
	left: 0;
}

.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"]::after {
	top: 3px;
	left: 2px;
}

.btn.window {
	padding-left: 25px;
}

.btn.window::before {
	top: 15px;
	left: 10px;
}

.btn.window::after {
	top: 12px;
	left: 12px;
}

.btn.strong.window::before,
.btn.strong.window::after {
	border-color: #fff;
}

/* ================================================
  table
================================================ */
.common_table_style th,
.common_table_style td {
	padding: 10px;
	border: 1px solid #ddd;
}

.common_table_style {
	width: 100%;
}

/* 列の場合の破線 */
.table_dashed.cols th + td {
	border-left-style: dashed;
}

.table_dashed.cols th {
	border-right-style: dashed;
}

/* 行の場合の破線 */
.table_dashed.rows th {
	border-bottom-style: dashed;
}

.table_dashed.rows tr:nth-of-type(2) td {
	border-top-style: dashed;
}

.th_nowrap th {
	white-space: nowrap;
}

.th_colored th {
	background-color: #f0f0f0;
}

.th_bold th {
	font-weight: bold;
}

/* ================================================
  リスト
================================================ */
.common_list_style:not(:last-child),
.common_list_style ul:not(:last-child),
.common_list_style ol:not(:last-child) {
	margin-bottom: 10px;
}

.common_list_style li:not(:last-child),
.common_list_style dt,
.common_list_style dd {
	margin-bottom: 5px;
}

ul.common_list_style li,
ol.common_list_style li {
	margin-left: 20px;
}

li > ul,
li > ol {
	margin-top: 10px;
}

li > ul:not(:last-child),
li > ol:not(:last-child) {
	margin-bottom: 5px;
}

ul.common_list_style li {
	list-style-type: disc;
}

ol.common_list_style {
	list-style: decimal;
}

ol.common_list_style > li > ol > li {
	list-style-type: katakana;
}

dl.common_list_style {
	margin-bottom: 20px;
}

.common_list_style dt {
	margin-top: 15px;
	font-weight: bold;
}

.common_list_style dd {
	margin-left: 15px;
}

/* -----------------------------
  ニュース
-----------------------------*/
ul.news {
	margin-bottom: 10px;
}

ul.news li {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	border-bottom: 1px dotted #ddd;
	padding: 10px 0;
}

body:not([class~="news"]) ul.news li:first-child {
	border-top: 1px dotted #ddd;
}

ul.news li time,
ul.news li span {
	display: block;
}

ul.news li time {
	width: 110px;
}

ul.news li span {
	width: calc(100% - 110px - 15px);
}

ul.news li span a {
	display: inline-block;
}

/* -----------------------------
  カテゴリー別リスト
-----------------------------*/
.list_categorized {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
}

.list_categorized:not(:last-child) {
	margin-bottom: 15px;
}

.list_categorized .category mark {
	display: inline-block;
	width: 70px;
	/* デフォルトのpaddingで80pxになる */
	text-align: center;
	margin: 0;
}

.list_categorized .list {
	width: calc(100% - 80px - 15px);
}

.list_categorized .list h1 {
	font-weight: bold;
	margin-bottom: 5px;
}

.list_categorized .list li {
	margin-bottom: 5px;
}

.list_categorized .list li a {
	display: inline-block;
}

/* -----------------------------
  横並びリスト
-----------------------------*/
.flex_list_style {
	display: -webkit-flex;
	display: flex;
}

.flex_list_style li {
	margin: 10px 10px;
}

/** 整ったらマニュアルに入れる

/* -----------------------------
  ダウンロード用リスト
-----------------------------*/
.download li a svg {
	position: relative;
	top: 3px;
	margin-right: 2px;
	fill: #a80000;
}

/** TODO:アイコン関係はwebフォントにかえたほうが汎用性あるかも

/* ================================================
  フォーム
================================================ */
input,
textarea {
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
	font-size: 14px;
}

/* ================================================
  その他
================================================ */
.font_bold {
	font-weight: bold;
}

.font_120 {
	font-size: 120%;
}

.font_140 {
	font-size: 140%;
}

.font_attention {
	color: #09c;
}

.note {
	font-size: 12px;
	color: #999;
}

.read_onry {
	display: none;
}

/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆

  個別スタイル
  …ページ、部分ごとのスタイル

◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ================================================
  トップページ
================================================ */

/* -----------------------------
  臨時お知らせエリア
-----------------------------*/
body.top .announce_head {
	padding: 10px 0;
	background-color: #fbf9e4;
	border-bottom: 1px solid #ddd;
	/* ヘッダと同じ色 */
}

body.top .announce_head h1 {
	margin: 0 0 10px;
	font-weight: bold;
}

body.top .announce_body {
	margin-bottom: 20px;
	border: #d9d397 1px solid;
	background-color: #fbf9e4;
	padding: 15px;
}

body.top .announce_body h1 {
	margin: 0 0 10px;
	font-weight: bold;
	font-size: 16px;
}

/* -----------------------------
  上部ユニット
-----------------------------*/
body.top .jumbotron {
	width: 100%;
	padding: 15px 0;
	min-height: 220px;
	background: url("../img/top_jumbotron.jpg") -300px -100px no-repeat #65635d;
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-flow: column wrap;
	-webkit-flex-flow: column wrap;
	-ms-flex-flow: column wrap;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	color: #fff;
	text-align: center;
	box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.2) inset;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	body.top .jumbotron:not(:target) {
		height: 250px;
		/* IE10・11 */
	}
}

@media (min-width: 1761px) {
	body.top .jumbotron {
		background-position: center center;
		background-size: cover;
	}
}

@media (max-width: 819px) {
	body.top .jumbotron {
		text-align: left;
	}
}

body.top .jumbotron h1 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 15px;
}

body.top .jumbotron p {
	font-size: 16px;
}

body.top .jumbotron .btn.strong {
	background-color: #c00;
	border: 2px solid #fff;
}

/* -----------------------------
  事業
-----------------------------*/
body.top .business {
	width: 100%;
	padding: 20px 0;
	background-color: #f0f0f0;
	margin-bottom: 30px;
}

body.top .business .services .multi_columns {
	padding-left: 40px;
	padding-right: 40px;
}

body.top .business .services .multi_columns .service {
	display: flex;
	flex-direction: column;
	align-items: center;
}

body.top .business .services .multi_columns.column3 .service {
	flex-basis: 33%;
}

body.top .business .services .service h1 {
	width: 100%;
	text-align: center;
}

body.top .business .services .service .service_logo {
	max-width: 200px;
}

body.top .business .services .service .service_logo a {
	display: block;
	max-width: 100%;
}

body.top .business .services .service h1 small {
	text-decoration: none;
	font-weight: normal;
	color: #333;
	display: inline-block;
}

@media screen and (max-width: 799px) {
	body.top .business .services .multi_columns {
		padding-left: 0px;
		padding-right: 0px;
	}
}

@media screen and (max-width: 559px) {
	/*モバイルでは軸を反転*/

	body.top .business .services .multi_columns {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
	}

	body.top .business .services .multi_columns.column3 .service {
		flex-direction: row;
		row-gap: 20px;
		flex-basis: content;
	}

	body.top .business .services .service .service_logo {
		max-width: 130px;
	}

	body.top .business .services .service h1 {
		text-align: left;
	}
}

/* -----------------------------
  メインカラム
-----------------------------*/
body.top .main_column .top_heading1 {
	font-weight: bold;
	border-left: 2px solid #a80000;
	font-size: 18px;
	padding-left: 10px;
	margin-bottom: 15px;
}

/* メンバー */
.worker_twitter_list {
	padding: 15px 15px 15px 17px;
	border: 1px dashed #ddd;
	margin-bottom: 15px;
}

.worker_twitter_list a {
	margin: 0 0 5px 2px;
	line-height: 0;
}

.worker_twitter_list a img {
	width: 50px;
	background-color: #fff;
}

/* -----------------------------
  サブカラム
-----------------------------*/
body.top .sub_column .banners p {
	line-height: 1;
}

body.top .sub_column .banners p:not(:last-child) {
	margin-bottom: 15px;
}

body.top .sub_column .tw_widget {
	line-height: 0;
	padding: 0;
	max-width: 520px;
}

/* ================================================
  ニュース
================================================ */
body.news article {
	line-height: 1.8;
}

body.news article footer {
	margin-top: 20px;
	padding: 10px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

/* ================================================
  代表取締役経歴
================================================ */
table.common_table_style.history th {
	width: 15%;
	white-space: nowrap;
}

table.common_table_style.history td {
	width: 85%;
}

/* ================================================
  技術記事執筆
================================================ */
.pickup_writing {
	padding: 15px;
	/* box_borderedと同じスタイル */
	border: 1px solid #ddd;
	background-color: #fff;
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.05);
}

.pickup_writing:not(:last-child) {
	margin-bottom: 20px;
}

.pickup_writing hgroup,
.pickup_writing .body_illustrated,
.pickup_writing .comment {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}

.pickup_writing hgroup {
	margin-bottom: 15px;
}

.pickup_writing .category mark {
	display: inline-block;
	width: 70px;
	text-align: center;
	margin: 0;
}

.pickup_writing .title {
	width: calc(100% - 80px - 15px);
}

.pickup_writing hgroup h1 {
	font-weight: bold;
	margin-bottom: 5px;
}

.pickup_writing hgroup h1,
.pickup_writing hgroup h1 a {
	font-size: 16px;
}

.pickup_writing .body_illustrated {
	margin-bottom: 15px;
}

.pickup_writing .body_illustrated .image {
	width: 100px;
}

.pickup_writing .body_illustrated .image img {
	width: 100%;
}

.pickup_writing .body_illustrated .text {
	width: calc(100% - 100px - 15px);
}

.pickup_writing .comment {
	margin-bottom: 15px;
	background-color: #f0f0f0;
	padding: 15px;
}

.pickup_writing .comment .image {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	overflow: hidden;
}

.pickup_writing .comment .image img {
	width: 100%;
}

.pickup_writing .comment .text {
	width: calc(100% - 60px - 10px);
}

.pickup_writing .sale {
	padding-top: 15px;
	border-top: 1px dashed #ddd;
}

.pickup_writing .sale > section:not(:last-child) {
	padding-bottom: 10px;
}

.pickup_writing .sale,
.pickup_writing .sale h1,
.pickup_writing .sale a {
	font-size: 12px;
}

.pickup_writing .sale h1 {
	border-left: 2px solid #ddd;
	padding-left: 8px;
	margin-bottom: 5px;
}

.pickup_writing .sale ul {
	padding-left: 10px;
}

.pickup_writing .sale li {
	display: inline;
	margin-right: 5px;
}

/* ================================================
  お問い合わせ
================================================ */
table.contact input[type="text"] {
	width: 300px;
}

table.contact textarea {
	width: calc(100% - 22px);
}

table.contact th {
	padding: 15px 10px;
	width: 27%;
}

table.contact td {
	padding: 15px;
	width: 73%;
}

@media (max-width: 799px) {
	table.contact input[type="text"] {
		width: calc(100% - 22px);
	}

	table.contact th {
		width: 35%;
	}

	table.contact td {
		width: 65%;
	}
}

table.contact mark {
	font-size: 12px;
	margin-right: 10px;
}

table.contact .must {
	background-color: #f60;
}

table.contact .option {
	background-color: #999;
}

/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆

  基本レイアウト
  …ヘッダー・フッター・コンテンツなど大まかなレイアウト

◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

/* ================================================
  全体
================================================ */

/* -----------------------------
  フッターを最下部に置くためのスタイル
-----------------------------*/
html {
	height: 100%;
	overflow-y: scroll;
}

body {
	height: 100%;
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 100vh;
}

/* ================================================
  ヘッダー
================================================ */
.site_header {
	top: 0;
	left: 0;
	width: 100vw;
	height: 60px;
	position: fixed;
	background-color: #fff;
	border-top: 5px solid #000;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	z-index: 3000;
}

.site_header .fullsize_inner {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	align-items: center;
	justify-content: space-between;
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	display: -ms-flex;
	-ms-align-items: center;
	-ms-justify-content: space-between;
}

.site_header h1 {
	margin-top: 5px;
	margin-bottom: -5px;
}

.site_header h1 img {
	width: 117px;
	height: 54px;
}

.site_header .header_links .sns {
	text-align: right;
	padding-bottom: 5px;
}

.site_header .sns img:hover {
	opacity: 0.8;
}

.site_header nav a:link,
.site_header nav a:visited {
	font-weight: bold;
	color: #000;
}

/* ナビ表示ボタン */
.site_header .button_outer {
	display: none;
}

.site_header .btn_nav {
	padding: 5px;
	border: 1px solid #ddd;
	background-color: #fff;
	border-radius: 3px;
	outline: 0;
}

.site_header .btn_nav .bar {
	display: block;
	width: 15px;
	height: 2px;
	margin-bottom: 3px;
	background-color: #ddd;
}

.site_header .btn_nav .bar:last-child {
	margin-bottom: 0;
}

/* メニュー(通常) */
@media (min-width: 700px) {
	.site_header nav ul {
		display: flex;
		display: -webkit-flex;
		display: -ms-flex;
		justify-content: flex-end;
		display: -webkit-flex;
		-webkit-justify-content: flex-end;
		display: -ms-flex;
		-ms-justify-content: flex-end;
	}

	.site_header nav ul li {
		border-right: 1px solid #ddd;
		padding: 0 10px;
	}

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

/* メニュー(画面サイズが狭くなった時) */
@media (max-width: 699px) {
	/* 高さが狭くなる */
	.site_header {
		padding: 5px 0;
		height: 45px;
	}

	.site_header h1 img {
		width: auto;
		height: 40px;
	}

	/* SNSボタンとメニューが消える */
	.site_header .sns,
	.site_header nav ul {
		display: none;
	}

	/* メニュー表示用ボタンが出る */
	.site_header .button_outer {
		display: block;
		text-align: right;
	}

	.site_header nav ul {
		position: absolute;
		top: 53px;
		left: 0px;
		width: 100%;
		background-color: #fff;
		border-top: 1px solid #ddd;
	}

	.site_header nav ul li a {
		display: block;
		padding: 10px;
		border-bottom: 1px solid #ddd;
	}
}

/* ================================================
  フッター
================================================ */
.site_footer {
	margin-top: auto;
}

.site_footer .doormat_nav .fullsize_inner,
.site_footer .copy .fullsize_inner {
	display: flex;
	justify-content: space-between;
	display: -webkit-flex;
	display: -ms-flex;
}

/* -----------------------------
  フッターナビゲーション(.doormat_nav)
-----------------------------*/
.site_footer .doormat_nav {
	background-color: #f0f0f0;
	padding: 15px 0;
}

.site_footer .doormat_nav .fullsize_inner > ul {
	margin: 20px 0;
	flex-basis: 25%;
}

.site_footer .doormat_nav ul.doormat_nav_items li:not(:last-child) {
	margin-bottom: 3px;
}

.site_footer .doormat_nav ul.doormat_nav_items li a {
	color: #666;
	font-size: 12px;
}

.site_footer .doormat_nav ul.doormat_nav_items li a:hover {
	text-decoration: underline;
}

.site_footer .doormat_nav ul.doormat_nav_items li:first-child a {
	font-size: 14px;
}

/* アイコン用位置揃え */
.site_footer .doormat_nav ul.doormat_nav_items li:not(:first-child) a,
.site_footer .doormat_nav ul.doormat_nav_items li a[target="_blank"] {
	position: relative;
	padding-left: 15px;
}

/* 画面が狭い場合、フレキシブルを解除 */
@media (max-width: 729px) {
	.wrapper {
		padding-bottom: 0;
	}

	.site_footer {
		position: relative;
	}

	.site_footer .doormat_nav,
	.site_footer .doormat_nav .fullsize_inner {
		display: block;
		padding: 0;
	}

	.site_footer .doormat_nav ul.doormat_nav_items {
		margin: 0;
		padding: 5px 0;
		border-top: 1px solid #ddd;
	}

	.site_footer .doormat_nav ul.doormat_nav_items li {
		padding: 5px 10px 5px 15px;
	}
}

/* -----------------------------
  コピーライト
-----------------------------*/
.site_footer .copy {
	background-color: #000;
	padding: 10px 0;
}

.site_footer .copy,
.site_footer .copy a {
	color: #fff;
	font-size: 12px;
}

.site_footer .copy .fullsize_inner {
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}

/* iPhone5sまで */
@media (max-width: 320px) {
	.site_footer .copy .fullsize_inner {
		display: block;
	}
}

/* ================================================
  本文
================================================ */

/* -----------------------------
  コンテンツ
-----------------------------*/
main {
	margin-top: 86px;
	/*固定ヘッダー分の余白*/
}

.contents {
	margin-bottom: 40px;
}

body.page .contents {
	width: 930px;
	margin: 0 auto 40px auto;
	flex: 1;
}

@media (max-width: 959px) {
	body.page .contents {
		width: auto;
		padding: 0 15px;
	}
}

@media (max-width: 699px) {
	main {
		margin-top: 61px;
		/*固定ヘッダー分の余白*/
	}
}

/* -----------------------------
  画像
-----------------------------*/
.contents img {
	max-width: 100%;
}

/* -----------------------------
  1カラムレイアウト
-----------------------------*/
.page_1column .main_column {
	margin: 0 auto;
}

/* -----------------------------
  2カラムレイアウト
-----------------------------*/
body.page .contents,
body.top .top_columns {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	-webkit-justify-content: space-between;
	display: -ms-flex;
	-ms-flex-wrap: wrap;
	-ms-justify-content: space-between;
}

.main_column {
	width: calc(100% - 280px);
}

.sub_column {
	width: 250px;
}

@media (max-width: 749px) {
	.main_column,
	.sub_column {
		width: 100%;
	}

	.main_column:not(:last-child) {
		margin-bottom: 30px;
	}

	.sub_column:not(:last-child) {
		margin-bottom: 20px;
	}
}

/* -----------------------------
  パンくずリスト
-----------------------------*/
.breadcrumb {
	background-color: #f0f0f0;
	padding: 5px 0;
	margin-bottom: 20px;
}

.breadcrumb li {
	display: inline;
}

.breadcrumb li:not(:first-child) {
	margin-left: 10px;
}

.breadcrumb li:first-child img {
	margin-bottom: -3px;
}

.breadcrumb li:not(:first-child) {
	position: relative;
	padding-left: 20px;
}

.breadcrumb li:not(:first-child)::after {
	position: absolute;
	top: 4px;
	left: 0px;
	width: 7px;
	height: 7px;
	content: "";
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border-right: 1px solid #999;
	border-top: 1px solid #999;
}

.breadcrumb li a {
	color: #a80000;
}

/* -----------------------------
  トップへ戻るボタン
-----------------------------*/
.to_pagetop a {
	position: fixed;
	right: 15px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #000;
	z-index: 3001;
}

.to_pagetop a::after {
	position: absolute;
	top: 17px;
	right: 14px;
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.to_pagetop a:hover {
	background-color: #666;
}

@media (max-width: 1040px) {
	.to_pagetop {
		display: none;
	}
}

/* ================================================
  サブカラム
================================================ */
body.page_2column .sub_column .aside_content {
	position: sticky;
	top: 121px;
}

/* -----------------------------
  ナビゲーション
-----------------------------*/
body.page_2column .sub_column nav {
	margin-bottom: 20px;
}

body.page_2column .sub_column nav ul {
	border: 1px solid #000;
}

body.page_2column .sub_column nav li a {
	display: block;
	padding: 10px;
	border: 1px solid #000;
	background-color: #fff;
	color: #000;
	text-decoration: none;
}

body.page_2column .sub_column nav li:not(:first-child) a {
	border-top-width: 0;
}

body.page_2column .sub_column nav li:not([class~="current"]) a:hover {
	background-color: #f0f0f0;
}

body.page_2column .sub_column nav .current a {
	position: relative;
	padding-right: 25px;
	background-color: #a80000;
	color: #fff;
	font-weight: bold;
}

body.page_2column .sub_column nav .current a::before {
	position: absolute;
	top: 16px;
	right: 13px;
	width: 7px;
	height: 7px;
	content: "";
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
}

/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆

  マニュアル用

◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

.m__heading1 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	padding: 10px;
	background-color: #fc0;
}

.m__code {
	padding: 10px 15px;
	border: 1px dashed #ccc;
	background-color: #ffe;
}

/* ================================================
  採用情報
================================================ */

body.careers section.box_bordered {
	margin: 1em 0;
}

/* ================================================
  追加スタイル
  重複を防ぐため、class名にはadd--を追記する
================================================ */

/* -----------------------------
  baseフッター
-----------------------------*/

.add--footer-wrap {
	flex-wrap: wrap;
}

.add--copy_text {
	width: 140px;
}

.add--copy_policy {
	flex: 1;
}

.add--copy_policy p {
	display: inline-block;
	padding-right: 5px;
}

.add--copy_policy p::after {
	content: "|";
	color: #838383;
	position: relative;
	left: 5px;
}

.add--copy_policy p:last-child::after {
	content: "";
}

.site_footer .doormat_nav ul.add--footer-logos {
	margin: 0;
	flex-basis: 50%;
	align-self: flex-end;
}

.site_footer .doormat_nav ul.add--footer-logos .add--footer-logos-flex {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.add--footer-logos .add--footer-logos-psf {
	flex-basis: 15%;
	padding-right: 20px;
	padding-left: 20px;
}

.add--footer-logos .add--footer-logos-psf img {
	width: 100%;
}

.add--footer-logos .add--footer-logos-isms {
	flex-basis: 35%;
	padding-right: 20px;
}

.add--footer-logos .add--footer-logos-isms img {
	width: 100%;
}

@media (max-width: 729px) {
	.site_footer .doormat_nav ul.add--footer-logos .add--footer-logos-flex {
		justify-content: center;
	}

	.site_footer .doormat_nav ul.add--footer-logos .add--footer-logos-psf {
		flex-basis: 20%;
	}

	.site_footer .doormat_nav ul.add--footer-logos .add--footer-logos-isms {
		flex-basis: 60%;
	}
}

/* -----------------------------
  注意書き用スタイル 公開されていないページなど。
  2018/11/21使用個所 => careers/sales-assistant/
-----------------------------*/

.add--alert {
	margin-bottom: 20px;
	border: #d9d397 1px solid;
	background-color: #fbf9e4;
	padding: 15px;
}

p.add--alert strong {
	color: #a80000;
}

/* -----------------------------
  ヘッダー付きリストグループ リストを並列する際に用いる
-----------------------------*/

.add--list_group_wrapper > .add--list_group {
	margin-bottom: 15px;
}

.add--list_group_wrapper > .add--list_group:last-child {
	margin-bottom: 0;
}

.add--list_header {
	font-weight: bold;
	position: relative;
	margin-bottom: 5px;
	padding-left: 13px;
}

.add--list_header::before {
	content: "";
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	border: 2px solid;
	border-color: #a40000;
	background-color: #880000;
	width: 3px;
	height: 3px;
	position: absolute;
	top: 6px;
	left: 0;
}

/* -----------------------------
  /news/article/ のページネーション
-----------------------------*/
.add--pagination,
.add--pagination li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.add--pagination li {
	min-width: 44px;
	min-height: 44px;
}

.add--pagination a {
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-left-width: 0;
	min-width: 44px;
	min-height: 44px;
	box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

.add--pagination {
	padding-top: 1px;
	text-decoration: none;
	border-left-width: 0;
	box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.35);
}

.add--pagination li:not([class*="current"]) a {
	color: #000000;
}

.add--pagination li:not([class*="current"]) a:hover {
	background-color: #f0f0f0;
}

.add--pagination li:not([class*="current"]) a:focus,
.add--pagination li:not([class*="current"]) a:active {
	background-color: #f0f0f0;
}

.add--pagination li:first-of-type a {
	border-left-width: 1px;
}

.add--pagination li:first-of-type a,
.add--pagination li:last-of-type a,
.add--pagination li:nth-of-type(2) a,
.add--pagination li:nth-last-of-type(2) a {
	padding: 0 10px;
}

.add--pagination li:first-of-type span,
.add--pagination li:last-of-type span,
.add--pagination li:nth-of-type(2) span,
.add--pagination li:nth-last-of-type(2) span {
	/* screen readers only */
	/*position: absolute;
 top: -9999px;
 left: -9999px;*/
}

.add--pagination li.current a {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(168, 0, 0, 1);
	box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.25);
	cursor: default;
	pointer-events: none;
}

.add--pagination li.add--pagination_nolink {
	cursor: default;
	pointer-events: none;
	color: #bbb;
}

.add--pagination li.add--pagination_nolink a {
	color: #bbb;
	text-decoration: none;
}

@media only screen and (max-width: 64.063em) {
	.add--pagination li:first-child,
	.add--pagination li:last-child {
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.add--pagination li:nth-of-type(2) a {
		border-left-width: 1px;
	}
}

@media only screen and (max-width: 40.063em) {
	.add--pagination li {
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.add--pagination li.current,
	.add--pagination li:first-of-type,
	.add--pagination li:last-of-type,
	.add--pagination li:nth-of-type(2),
	.add--pagination li:nth-last-of-type(2) {
		position: initial;
		top: initial;
		left: initial;
	}

	.add--pagination li:nth-of-type(2) a {
		border-left-width: 0;
	}
}

@media only screen and (max-width: 30.063em) {
	h1 {
		font-size: 1.35em !important;
	}

	.add--pagination li:first-child,
	.add--pagination li:last-child {
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.add--pagination li:nth-of-type(2) a {
		border-left-width: 1px;
	}
}

@media only screen and (max-width: 15.063em) {
	/* For watches? */

	.add--pagination li {
		width: 50%;
	}

	.add--pagination li.current {
		order: 2;
		width: 100%;
		border-left-width: 1px;
	}
}
