@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*!
* ress.css • v1.0.1
* MIT License
* github.com/filipelinhares/ress
*/
/* # =================================================================
# Global selectors
# ================================================================= */
/**
* 1. All browsers without overlaying scrollbars
* 2. iOS 8+

* 1. すべてのブラウザで、スクロールバーのオーバーレイを無し。
* 2. iOS 8+
*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

*,
::before,
::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

/**
* 1. Inherit text-decoration and vertical align to ::before and ::after pseudo elements

* 1. 「::before」と「::after」に、「text-decoration」と「vertical-align」を継承。
*/
::before,
::after {
	text-decoration: inherit;
	/* 1 */
	vertical-align: inherit;
}
.photo img{
	width:30%;
	height:5%;
}
/**
* 1. Set `background-repeat: no-repeat` to all elements
* 2. Reset `padding` and `margin` of all elements

* 1. すべての要素に、「background-repeat: no-repeat;」を指定。
* 2. すべての要素に、「padding」と「margin」をリセット。
*/
* {
	background-repeat: no-repeat;
	/* 1 */
	padding: 0;
	/* 2 */
	margin: 0;
}

/* # =================================================================
# General elements
# ================================================================= */
/**
* Add the correct display in iOS 4-7.

* iOS 4-7に、正しいdisplayを設定。
*/
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
* 1. Show the overflow in Edge and IE

* 1. EdgeとIEに、「overflow: visible;」を定義。
*/
hr {
	overflow: visible;
	/* 1 */
}

/**
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11

* IE8/9に、displayプロパティを定義。
* IE10/11とFirefoxのdetail要素とsummary要素に、displayプロパティを定義。
* IE11のmain要素に、displayプロパティを定義。
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
* 1. Set font-size to 80% in `small` elements

* 1. small要素に、フォントサイズ「80%」を定義。
*/
small {
	font-size: 80%;
	/* 1 */
}

/**
* 1. Add the correct display in IE

* 1. IEに、displayプロパティを定義。
*/
[hidden],
template {
	display: none;
	/* 1 */
}

/**
* 1. Add a bordered underline effect in all browsers
* 2. Remove text decoration in Firefox 40+

* 1. すべてのブラウザに、点線を定義。
* 2. Firefox40+に、テキストの装飾を削除。
*/
abbr[title] {
	border-bottom: 1px dotted;
	/* 1 */
	text-decoration: none;
	/* 2 */
}

/**
* 1. Remove the gray background on active links in IE 10
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+

* 1. IE10に、アクティブリンクのグレーの背景を削除。
* 2. iOS8+とSafari8+に、リンクの下線のギャップを削除。
*/
a {
	background-color: transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */
}

/**
* 1. Remove the outline when hovering in all browsers

* 1. すべてのブラウザに、ホバー時のアウトラインを削除。
*/
a:active,
a:hover {
	outline-width: 0;
	/* 1 */
}

/**
* 1. Specify the font family of code elements

* 1. コード要素に、フォントファミリーを指定。
*/
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	/* 1 */
}

/**
* 1. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+

* 1. Edge12+, Safari6.2+, Chrome18+に、「bold」を適用。
*/
b,
strong {
	font-weight: bolder;
	/* 1 */
}

/**
* 1. Address styling not present in Safari and Chrome

* 1. SafariとChromeに、定義。
*/
dfn {
	font-style: italic;
	/* 1 */
}

/**
* Address styling not present in IE 8/9

* 1. IE8/9に、定義。
*/
mark {
	background-color: #ff0;
	color: #000;
}

/**
* https://gist.github.com/unruthless/413930
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* # =================================================================
# Forms
# ================================================================= */
input {
	border-radius: 0;
}

/**
* 1. Firefox 36+

* 1. Firefox 36+
*/
[type="number"] {
	width: auto;
	/* 1 */
}

/**
* 1. Safari 8+

* 1. Safari 8+
*/
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
}

/**
* 1. Safari 8

* 1. Safari 8
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
	/* 1 */
}

/**
* 1. Internet Explorer 11+
* 2. Specify textarea resizability

* 1. Internet Explorer 11+
* 2. textarea要素に、垂直方向のリサイズを指定。
*/
textarea {
	overflow: auto;
	/* 1 */
	resize: vertical;
	/* 2 */
}

/**
* 1. Specify font inheritance of form elements

* 1. フォーム要素に、フォントの継承を指定。
*/
button,
input,
optgroup,
select,
textarea {
	font: inherit;
	/* 1 */
}

/**
* 1. Restore the font weight unset by the previous rule.

* 1. 前の指定により、フォントのウェイトを再定義。
*/
optgroup {
	font-weight: bold;
	/* 1 */
}

/**
* 1. Address `overflow` set to `hidden` in IE 8/9/10/11

* 1. IE8/9/10/11に、overflow時にhiddenを設定。
*/
button {
	overflow: visible;
	/* 1 */
}

/**
* Remove inner padding and border in Firefox 4+

* Firefox4+に、内側のpaddingとborderを削除。
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: 0;
	padding: 0;
}

/**
* Replace focus style removed in the border reset above

* 1. フォーカス時のスタイルを定義。
*/
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	outline: 1px dotted ButtonText;
}

/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4
* 2. Correct the inability to style clickable types in iOS

* 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
* 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
}

/**
* 1. Firefox 40+, Internet Explorer 11-

* 1. Firefox 40+, Internet Explorer 11-
*/
button,
select {
	text-transform: none;
	/* 1 */
}

/**
* Remove the default button styling in all browsers

* すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
*/
button,
input,
select,
textarea {
	background-color: transparent;
	border-style: none;
	color: inherit;
}

/**
* Style select like a standard input
* 1. Firefox 36+
* 2. Chrome 41+

* 標準的なinput要素のスタイルを選択。
* 1. Firefox 36+
* 2. Chrome 41+
*/
select {
	-moz-appearance: none;
	/* 1*/
	-webkit-appearance: none;
	/* 2 */
}

/**
* 1. Internet Explorer 11+

* 1. Internet Explorer 11+
*/
select::-ms-expand {
	display: none;
	/* 1 */
}

/**
* 1. Internet Explorer 11+

* 1. Internet Explorer 11+
*/
select::-ms-value {
	color: currentColor;
	/* 1 */
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11
* 2. Correct the color inheritance from `fieldset` elements in IE
* 3. Correct the text wrapping in Edge and IE
* 4. Correct the text wrapping in Edge and IE
* 5. Correct the text wrapping in Edge and IE

* 1. IE 8/9/10/11に、カラーの継承を定義。
* 2. IEに、fieldset要素からカラーを継承するように定義。
* 3. EdgeとIEに、テキストのラッピングを修正。
* 4. EdgeとIEに、テキストのラッピングを修正。
* 5. EdgeとIEに、テキストのラッピングを修正。
*/
legend {
	border: 0;
	/* 1*/
	color: inherit;
	/* 2 */
	display: table;
	/* 3 */
	max-width: 100%;
	/* 4 */
	white-space: normal;
	/* 5 */
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari
* 2. Change font properties to `inherit` in Chrome and Safari

* 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
* 2. ChromeとSafariに、フォントプロパティの継承を変更。
*/
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/**
* Correct the text style of placeholders in Chrome, Edge, and Safari

* Chrome, Edge, Safariに、テキストのスタイルを修正。
*/
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

/**
* 1. Correct the odd appearance in Chrome and Safari
* 2. Correct the outline style in Safari

* 1. ChromeとSafariに、アピアランスを修正。
* 2. Safariに、アウトラインを修正。
*/
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/* # =================================================================
# Specify media element style
# ================================================================= */
/**
* 1. Remove border when inside `a` element in IE 8/9/10

* 1. IE8/9/10に、a要素の中にある時にボーダーを削除。
*/
img {
	border-style: none;
	/* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera

* 1. Chrome, Firefox, Operaに、正しいvertical-alignを与える。
*/
progress {
	vertical-align: baseline;
}

/**
* 1. Internet Explorer 11-

* 1. Internet Explorer 11-
*/
svg:not(:root) {
	overflow: hidden;
	/* 1 */
}

/**
* 1. Internet Explorer 11+, Windows Phone 8.1+

* 1. Internet Explorer 11+, Windows Phone 8.1+
*/
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
}

/* # =================================================================
# Acessibility
# ================================================================= */
/**
* Hide content from screens but not screenreaders

* コンテンツを隠す時は、スクリーンリーダーからでなく、スクリーンから。
*/
@media screen {
	[hidden ~ ="screen"] {
		display: inherit;
	}

	[hidden ~ ="screen"]:not(:active):not(:focus):not(:target) {
		position: absolute !important;
		clip: rect(0 0 0 0) !important;
	}
}

/**
* Specify the progress cursor of updating elements

* アップデート中の要素のプログレスのカーソルを指定。
*/
/* */
[aria-busy="true"] {
	cursor: progress;
}

/**
* Specify the pointer cursor of trigger elements

* トリガー要素のポインターのカーソルを指定。
*/
[aria-controls] {
	cursor: pointer;
}

/**
* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements

* 使用不可、編集不可の要素のスタイルが無いカーソルを指定。
*/
[aria-disabled] {
	cursor: default;
}

/* # =================================================================
# Selection
# ================================================================= */
/**
* Specify text selection background color and omit drop shadow

* テキスト選択時の背景色を指定し、ドロップシャドウを削除。
*/
/**
* 1. Required when declaring ::selection

* 1. 「::selection」を使用する時に必要。
*/
::-moz-selection {
	background-color: #b3d4fc;
	/* 1 */
	color: #fff;
	text-shadow: none;
}

/**
* 1. Required when declaring ::selection

* 1. 「::selection」を使用する時に必要。
*/
::-moz-selection {
	background-color: #b3d4fc;
	/* 1 */
	color: #fff;
	text-shadow: none;
}

::selection {
	background-color: #b3d4fc;
	/* 1 */
	color: #fff;
	text-shadow: none;
}

body {
	background-color: #000000;
	background-image: url(../images/top/main_visual00.jpg);
	background-attachment: fixed;
	background-size: cover;
}

img {
	width: 100%;
	vertical-align: bottom;
}

iframe {
	width: 100%;
	vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
th,
td,
li {
	font-family: BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

.nav_btn,
.maintenance_menu_btn {
	position: fixed;
	z-index: 1001;
	top: 0;
	right: 0;
	background-color: #ff0000;
	width: 60px;
	height: 60px;
}

.nav_btn span,
.maintenance_menu_btn span {
	display: block;
	background-color: #000000;
	height: 2px;
	width: 40px;
	margin: 10px 10px 0 10px;
}

.nav_btn span:last-child,
.maintenance_menu_btn span:last-child {
	margin-bottom: 10px;
}

.nav_btn span.active:nth-child(1),
.maintenance_menu_btn span.active:nth-child(1) {
	-webkit-transform: translateY(12px) rotate(-675deg);
	-ms-transform: translateY(12px) rotate(-675deg);
	transform: translateY(12px) rotate(-675deg);
}

.nav_btn span.active:nth-child(2),
.maintenance_menu_btn span.active:nth-child(2) {
	opacity: 0;
}

.nav_btn span.active:nth-child(3),
.maintenance_menu_btn span.active:nth-child(3) {
	-webkit-transform: translateY(-12px) rotate(675deg);
	-ms-transform: translateY(-12px) rotate(675deg);
	transform: translateY(-12px) rotate(675deg);
}



.maintenance_menu_btn {
	top: 120px;
	background-color: #00cc33;
	color: #000000;
}

.maintenance_menu_btn span {
	background-color: #474747;
	width: 40px;
	margin: 7px 10px 0 10px;
}

.maintenance_menu_btn span:last-child {
	margin-bottom: 6px;
}

.maintenance_menu_btn span.active:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(-675deg);
	-ms-transform: translateY(8px) rotate(-675deg);
	transform: translateY(8px) rotate(-675deg);
}

.maintenance_menu_btn span.active:nth-child(2) {
	opacity: 0;
}

.maintenance_menu_btn span.active:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(675deg);
	-ms-transform: translateY(-8px) rotate(675deg);
	transform: translateY(-8px) rotate(675deg);
}

.fa-arrow-circle-up {
	font-size: 60px;
	position: fixed;
	bottom: 30px;
	left: 80%;
	color: #414141;
	z-index: 9999;
}

.back_btn {
	display: none;
}

.sdgs_list {
	vertical-align: top;
	padding: 30px 0;
}

.sdgs_item:first-of-type {
	margin-left: 30px;
	margin-right: 30px;
}

.sdgs_item:nth-of-type(2) {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
}
.works_list{
	display: block;
}
.works_list>li{
	margin: 10px;
}


@media screen and (min-width: 768px) {

	.nav_btn,
	.maintenance_menu_btn {
		display: none;
	}
}

.header {
	width: 100%;
	position: fixed;
	z-index: 999;
	background-color: #000000;
	opacity: 0.9;
}

.header div {
	max-width: 1366px;
	margin: 0 auto;
}

.site_ttl {
	width: 250px;
	height: 50px;
	margin: 5px;
	background-image: url(../images/header_logo.png);
	background-size: contain;
}

.site_ttl span {
	opacity: 0;
}

.nav {
	display: none;
	width: 100%;
	position: fixed;
	top: 60px;
	z-index: 1000;
	max-width: 1366px;
}

.nav ul {
	width: 100%;
	overflow: hidden;
}

.nav ul li {
	height: 60px;
	background-color: #000000;
	opacity: 0.9;
}

.nav ul li:hover {
	background-color: #ffffff;
}

.nav ul li a {
	text-align: center;
	color: #ff8800;
	text-decoration: none;
	display: block;
	line-height: 60px;
}

.nav ul li a:hover {
	color: #000000;
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.nav {
		display: block;
		top: 0;
	}

	.nav ul {
		width: calc(100% - 160px);
		margin-left: 160px;
	}

	.nav ul li {
		width: 10%;
		float: left;
		background-color: transparent;
	}

	.nav ul li:nth-child(1) {
		width: 9%;
	}

	.nav ul li:nth-child(3) {
		width: 18%;
	}

	.nav ul li a {
		font-size: 12px;
	}
}

@media screen and (min-width: 1024px) {
	.nav ul li a {
		font-size: 16px;
	}
}

.t_main .sect_ttl {
	max-width: 1024px;
}

.sect_ttl {
	font-size: 20px;
	line-height: 50px;
	color: #ffffff;
	font-weight: bold;
	margin: 0 auto;
	padding-left: 10px;
}

.sect_ttl span {
	font-size: 12px;
}

.sect_ttl span span {
	color: #0000ff;
}

.sub_ttl {
	font-size: 16px;
	line-height: 35px;
	color: #ffffff;
}

.sub_ttl_m {
	font-size: 14px;
	line-height: 30px;
	font-weight: bold;
}

.sub_ttl_s {
	font-weight: bold;
}

.txt {
	color: #ffffff;
	font-size: 14px;
	line-height: 30px;
}

.main {
	width: 100%;
	max-width: 1366px;
	margin: 0 auto;
	z-index: 10;
	position: relative;
}

.main_visual {
	position: relative;
	top: 60px;
}

.main_visual img {
	position: relative;
	z-index: -1;
}

.news_sect,
.other_sect,
.gallery_sect,
.about_sect {
	background-color: rgba(255, 255, 255, 0.9);
	padding-bottom: 30px;
	/*スクロールバーの横幅指定*/
	/*スクロールバーの背景色・角丸指定*/
	/*スクロールバーの色・角丸指定*/
}

.news_sect .sect_ttl,
.other_sect .sect_ttl,
.gallery_sect .sect_ttl,
.about_sect .sect_ttl {
	color: #ff0000;
}

.news_sect .news_block,
.other_sect .news_block,
.gallery_sect .news_block,
.about_sect .news_block {
	max-width: 1024px;
	margin: 0 auto;
	height: 100px;
	padding: 0 10px;
	overflow-y: scroll;
	border: solid 1px #ccc;
	border-radius: 0 10px 10px 0;
	z-index: 2;
	position: relative;
	background-color: #ffffff;
}

.news_sect .news_block::-webkit-scrollbar,
.other_sect .news_block::-webkit-scrollbar,
.gallery_sect .news_block::-webkit-scrollbar,
.about_sect .news_block::-webkit-scrollbar {
	width: 10px;
}

.news_sect .news_block::-webkit-scrollbar-track,
.other_sect .news_block::-webkit-scrollbar-track,
.gallery_sect .news_block::-webkit-scrollbar-track,
.about_sect .news_block::-webkit-scrollbar-track {
	border-radius: 5px;
	background: transparent;
}

.news_sect .news_block::-webkit-scrollbar-thumb,
.other_sect .news_block::-webkit-scrollbar-thumb,
.gallery_sect .news_block::-webkit-scrollbar-thumb,
.about_sect .news_block::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #ccc;
}

.news_sect li,
.other_sect li,
.gallery_sect li,
.about_sect li {
	list-style-type: none;
}

.news_sect .txt,
.other_sect .txt,
.gallery_sect .txt,
.about_sect .txt {
	color: #000000;
}

.sp_br::before {
	content: "\A";
	white-space: pre;
}

.pickup_sect {
	background-color: rgba(65, 65, 65, 0.9);
}

.pickup_sect .pickup_block {
	background-color: #000 !important;
}

.pickup_ttl {
	text-align: center;
	padding-left: 0;
}

.other_block {
	width: 100%;
	background-color: #414141;
	overflow: hidden;
}

.other_block > div {
	max-width: 1024px;
	margin: 0 auto;
}

.other_block > div > div {
	display: block;
	width: 33.3%;
	float: left;
}

.other_block > div h3 {
	color: #f00;
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
}

.other_block > div a {
	display: block;
}

.other_block > div a img {
	display: block;
	max-width: 250px;
	margin: 0 auto;
}

.other_block > div p {
	display: block;
	text-align: center;
	color: #fff !important;
	padding: 20px 5px;
}

.gallery_block {
	padding: 30px 0;
	background-color: #000;
	background-color: rgba(255, 136, 0, 0.5);
	background-color: #ff8800;
}

.about_wrap {
	padding-bottom: 5px;
	background-color: rgba(65, 65, 65, 0.6);
}

.about_wrap .txt {
	color: #ffffff;
	padding: 20px 10px;
}

.about_wrap .txt span {
	font-size: 24px;
	line-height: 50px;
}

.more_btn {
	width: 300px;
	margin: 30px auto;
	text-align: center;
	line-height: 50px;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #ccc;
}

.more_btn a {
	color: #ccc;
	text-decoration: none;
}

.more_btn:hover {
	background-color: #cccccc;
}

.more_btn:hover a {
	color: #414141;
}

.sdgs_area {
	padding: 30px
}








@media screen and (min-width: 768px) {
	.main_visual {
		top: 0;
	}

	.sect_ttl {
		font-size: 24px;
	}

	.sect_ttl span {
		font-size: 14px;
	}

	.sub_ttl {
		font-size: 20px;
	}

	.sub_ttl_m {
		font-size: 18px;
	}

	.txt {
		font-size: 16px;
	}

	.sp_br::before {
		content: "";
		padding-left: 30px;
	}

	.other_block {
		padding: 30px 0;
	}

	.other_block > div > div {
		padding: 30px;
	}

	.other_block > div h3 {
		padding: 0;
		margin-bottom: 20px;
		font-size: 24px;
	}

	.other_block > div p {
		font-size: 18px;
		padding: 0;
		margin-top: 20px;
	}

	.br_pc::before {
		content: "\A";
		white-space: pre;
	}

	.about_sect {
		padding-bottom: 50px;
	}

	.about_wrap {
		width: 100%;
		max-width: 1024px;
		margin: 0 auto;
		overflow: hidden;
	}

	.about_wrap .txt {
		font-size: 20px;
	}

	.about_wrap .txt span {
		font-size: 28px;
		line-height: 60px;
	}

	.about_wrap .t_about {
		width: 50%;
		float: left;
		padding: 30px;
	}

	.about_wrap .map_block {
		height: 300px;
	}

	.about_wrap .more_btn {
		margin-top: 600px;
	}

	.sdgs_item:nth-of-type(2) {
		margin-top: 30px;
		margin-right: 30px;
		margin-left: 30px;
	}




}

@media screen and (min-width: 1024px) {
	.main_visual {
		height: 100%;
	}

	.sect_ttl {
		font-size: 36px;
		line-height: 150px;
		padding-left: 0;
	}

	.sect_ttl span {
		font-size: 18px;
	}

	.sub_ttl {
		font-size: 28px;
		line-height: 50px;
	}

	.sub_ttl_m {
		font-size: 22px;
		line-height: 40px;
	}

	.txt {
		font-size: 16px;
	}

	.news_sect .news_ttl,
	.other_sect .news_ttl,
	.gallery_sect .news_ttl,
	.about_sect .news_ttl {
		line-height: 30px;
		padding: 75px 0 10px;
	}

	.other_block > div h3 {
		font-size: 32px;
	}

	.other_block > div p {
		font-size: 20px;
	}

	.sdgs_list {
		padding: 30px 0;
		vertical-align: center;
	}


	.sdgs_item:nth-of-type(2) {
		width: 40%;
		margin-top: 30px;
		margin-right: 9%;
	}

	.sdgs_list {
		display: flex;
		justify-content: space-between;
	}



}

.c_main .contents_ttl {
	margin-top: 0 !important;
	background-color: #000000;
	width: 100%;
	max-width: 1960px !important;
	padding: 0 !important;
}

.c_main .sect_ttl {
	background-color: #000000;
	width: 100%;
	max-width: 1024px;
	padding-top: 60px;
}

.c_main .main_sect {
	background-color: rgba(83, 83, 83, 0.7);
	padding-bottom: 30px;
}

.c_main .main_sect > div {
	max-width: 1024px;
	margin: 30px auto 0;
	padding: 0 10px 30px;
}

.c_main .sub_ttl {
	color: #ff7300;
	font-weight: bold;
}

.maintenance_wrap {
	width: 100%;
	overflow: hidden;
}

#maintenance_reason,
#heavy_maintenance,
#engine,
#oil,
#brake,
#tire,
#rotor_polishing,
#car_wash {
	margin-top: 30px;
	padding-top: 80px;
}

#maintenance_reason .sub_ttl,
#heavy_maintenance .sub_ttl,
#engine .sub_ttl,
#oil .sub_ttl,
#brake .sub_ttl,
#tire .sub_ttl,
#rotor_polishing .sub_ttl,
#car_wash .sub_ttl {
	display: block;
	margin-top: -30px !important;
}

#maintenance_reason p,
#heavy_maintenance p,
#engine p,
#oil p,
#brake p,
#tire p,
#rotor_polishing p,
#car_wash p {
	padding-bottom: 50px;
}

.maintenance_menu {
	display: none;
	width: 100%;
	background-color: #000;
	opacity: 0.9;
	position: fixed;
	padding-bottom: 0 !important;
}

.maintenance_menu ul {
	padding: 30px 0;
}

.maintenance_menu ul li {
	text-align: center;
	line-height: 30px;
}

.maintenance_menu ul li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #f00;
	border-bottom: 1px solid #ccc;
}

.maintenance_block {
	width: 100%;
	overflow: hidden;
	background-color: #ffffff;
	margin-bottom: 30px !important;
	padding: 10px;
}

.maintenance_block:last-child {
	margin-bottom: 0 !important;
}

.maintenance_block > div {
	padding: 0 0 20px 0;
}

.maintenance_block .txt {
	color: #000000;
}

.maintenance_block .txt span {
	font-weight: bold;
	font-size: 20px;
	color: #f0d200;
}

.maintenance_block .price .tire_price_img {
	width: 100% !important;
}

.maintenance_block .price a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #000000;
	line-height: 30px;
	text-align: right;
}

.maintenance_block .price table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.maintenance_block .price table tr {
	border: 1px solid #000;
}

.maintenance_block .price table tr th {
	border: 1px solid #000;
	text-align: left;
	padding: 5px;
}

.maintenance_block .price table tr td {
	border: 1px solid #000;
	text-align: center;
	padding: 5px;
}

.noxudol_img_block > div {
	margin-top: 20px;
}

.noxudol_img_block a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #000000;
	line-height: 30px;
	text-align: right;
}

.i_body {
	background-image: url(../images/insurance/i_body_img.jpg);
}

.i_body .main .main_sect {
	background-color: rgba(255, 255, 255, 0.7);
}

.insurance_sect .contents_ttl {
	background-color: #fff;
}

.insurance_sect .contents_ttl .sect_ttl {
	background-color: #fff;
	color: #000000;
}

.insurance_sect .txt {
	color: #000000;
}

.insurance_top,
.insurance_bottom > div {
	width: 100%;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.8);
	border: dotted 2px #fff000;
	margin-bottom: 30px;
	padding: 10px;
}

.insurance_top h5,
.insurance_bottom > div h5 {
	text-align: center;
}

.insurance_top img,
.insurance_bottom > div img {
	display: block;
	max-width: 300px;
	margin: 0 auto;
}

.welfare_vehicles_slide img {
	padding: 10px;
}

.welfare_vehicles_img img {
	max-width: 300px;
	margin: 0 auto 20px;
	display: block;
}


@media screen and (min-width: 568px) {
	.maintenance_img_block > div {
		width: 100%;
		overflow: hidden;
	}

	.maintenance_img_block > div img {
		width: 200px;
		float: left;
	}

	.maintenance_img_block > div p {
		width: calc(100% - 200px);
		float: right;
		padding: 0 10px;
	}

	.insurance_top > div,
	.insurance_bottom > div > div {
		float: left;
	}

	.insurance_top img,
	.insurance_bottom > div img {
		float: left;
	}

	.welfare_vehicles_img {
		width: 100%;
		overflow: hidden;
	}

	.welfare_vehicles_img img {
		max-width: 512px;
		float: left;
		margin-bottom: 0;
		border: solid 1px #ff7300;
	}

	.welfare_vehicles_top img {
		width: 50%;
	}

	.welfare_vehicles_bottom img {
		width: 33.33%;
	}
}

@media screen and (min-width: 768px) {
	.maintenance_menu {
		width: 250px;
		float: left;
		position: relative;
		position: fixed;
		display: block;
		z-index: 0;
		margin-left: 10px !important;
		background-color: transparent;
	}

	.maintenance_menu ul li a {
		color: #f00;
		font-weight: bold;
		font-size: 18px;
		line-height: 35px;
		border-bottom: 1px solid #000;
	}

	.maintenance_contents {
		width: calc(100% - 290px);
		float: right;
		margin: 0 10px;
	}

	.insurance_bottom {
		width: 100%;
		overflow: hidden;
	}

	.insurance_bottom > div {
		width: calc(50% - 10px);
		float: left;
	}

	.insurance_bottom > div > div {
		float: right;
		width: calc(100% - 200px);
		padding-left: 10px;
		height: 280px;
	}

	.insurance_bottom > div img {
		float: left;
		width: 200px;
	}

	.insurance_bottom > div:nth-child(even) {
		margin-left: 10px;
	}

	.insurance_bottom > div:nth-child(odd) {
		margin-right: 10px;
	}
}

@media screen and (min-width: 1024px) {
	.insurance_bottom > div > div {
		height: 220px;
	}
}

.footer {
	width: 100%;
	overflow: hidden;
	background-color: #000000;
	margin-top: -20px;
	z-index: 100;
	position: relative;
}

.footer_wrap {
	padding: 0 10px 30px;
}

.footer_nav {
	padding: 30px 0;
}

.footer_nav ul {
	width: 100%;
	overflow: hidden;
}

.footer_nav ul li {
	width: 50%;
	float: left;
	border: solid #ccc 1px;
}

.footer_nav ul li a {
	display: block;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	color: #ff8800;
}

.left_footer {
	width: 100%;
	overflow: hidden;
}

.footer_logo {
	width: 100px;
	float: left;
	margin: 25px 0;
}

.footer_add {
	width: calc(100% - 120px);
	float: right;
}

.entry_block img {
	max-width: 300px;
	margin: 30px auto 0;
}

.copy {
	margin-top: 10px;
	width: 100%;
	line-height: 50px;
	text-align: center;
	font-size: 12px;
	color: #f00;
}

@media screen and (min-width: 768px) {
	.footer_wrap {
		width: 100%;
		overflow: hidden;
		max-width: 1366px;
		margin: 50px auto 0;
	}

	.footer_wrap .left_footer {
		width: calc(100% - 320px);
		float: left;
		overflow: hidden;
	}

	.footer_wrap .footer_logo {
		width: 20%;
		float: left;
	}

	.footer_wrap .footer_logo img {
		max-width: 150px;
	}

	.footer_wrap .footer_add {
		width: 75%;
		float: left;
		margin-left: 5%;
	}

	.footer_wrap .entry_block {
		width: calc(100% - 250px);
		max-width: 620px;
		overflow: hidden;
		margin: 30px 0 0;
	}

	.footer_wrap .entry_block p {
		width: calc(50% - 10px);
		float: left;
		display: block;
		margin: 30px 5px 0;
	}

	.footer_wrap .entry_block a img {
		width: 230px;
	}

	.footer_wrap .entry_block a img:hover {
		opacity: 0.7;
	}

	.footer_wrap .footer_nav {
		width: 250px;
		float: right;
		padding: 0;
	}

	.footer_wrap .footer_nav ul li {
		width: 100%;
		border: none;
	}

	.footer_wrap .footer_nav ul li a {
		line-height: 30px;
		text-align: left;
	}
}

@media screen and (min-width: 1024px) {
	.footer_add_txt {
		font-size: 25px !important;
		line-height: 35px;
	}
}

@media screen and (min-width: 1366px) {
	.entry_block {
		margin-left: 250px !important;
	}
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* Slider */
.slick-loading .slick-list {
	background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
	font-family: "slick";
	src: url("./fonts/slick.eot");
	src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
	position: absolute;
	display: none;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
	font-family: "slick";
	font-size: 20px;
	line-height: 1;
	color: white;
	opacity: 0.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir="rtl"] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir="rtl"] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: -25px;
}

[dir="rtl"] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir="rtl"] .slick-next:before {
	content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
	width: 20px;
	height: 20px;
	font-family: "slick";
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: black;
	opacity: 0.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: black;
	opacity: 0.75;
}

/* 20190701 - 販売ページ 新規 style */
body.sale .sub_ttl {
	margin: 0 auto 24px;
}

.detail-wrap {}

.detail-wrap .photo-area {
	margin: 0 auto 48px;
}

.detail-wrap .slider {
	margin: 0 auto 24px;
}

.detail-wrap .slider .slider-item {}

.detail-wrap .thumb {
	letter-spacing: -.4em;
}

.detail-wrap .thumb .slider-item {
	display: inline-block;
	width: 22.75%;
	margin: 0 3% 12px 0;
	letter-spacing: normal;
	vertical-align: top;
}

.detail-wrap .thumb .slider-item:nth-child(4n) {
	margin-right: 0;
}

.detail-area {}

.detail-area .detail-list {
	margin: 0 auto 40px;
}

.detail-area .detail-item {
	color: #fff;
	padding: 24px 0 16px;
	font-size: 14px;
	border-bottom: 1px solid #fff;
	letter-spacing: -.4em;
}

.detail-area .detail-head,
.detail-area .detail-txt {
	display: inline-block;
	font-weight: bold;
	letter-spacing: normal;
	vertical-align: top;
}

.detail-area .detail-head {
	width: 40%;
}

.detail-area .detail-txt {
	width: 60%;
	text-align: right;
}

.detail-area .pdf-btn {}

.detail-area a {
	display: block;
	padding: 16px 0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	background-color: #FF7300;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}

@media screen and (min-width: 768px) {
	body.sale .sub_ttl {
		/*    margin: 0 auto 24px;*/
	}

	.detail-wrap {
		display: inline-block;
	}

	.detail-wrap:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
	}

	/* exlude MacIE5 \*/
	* html .detail-wrap {
		height: 1%
	}

	.detail-wrap {
		display: block;
	}

	/* end MacIE5 */


	.detail-wrap .photo-area {
		/*    margin: 0 auto 48px;*/
		float: right;
		width: 61.72%;
	}

	.detail-wrap .slider {
		/*    margin: 0 auto 24px;*/
	}

	.detail-wrap .slider .slider-item {}

	.detail-wrap .thumb {
		letter-spacing: -.4em;
	}

	.detail-wrap .thumb .slider-item {
		display: inline-block;
		width: 22.75%;
		margin: 0 3% 12px 0;
		letter-spacing: normal;
		vertical-align: top;
	}

	.detail-wrap .thumb .slider-item:nth-child(4n) {
		margin-right: 0;
	}

	.detail-area {
		width: 35.53%;
		float: left;
	}

	.detail-area .detail-list {
		margin: 0 auto 40px;
	}

	.detail-area .detail-item {
		color: #fff;
		padding: 24px 0 16px;
		font-size: 14px;
		border-bottom: 1px solid #fff;
		letter-spacing: -.4em;
	}

	.detail-area .detail-head,
	.detail-area .detail-txt {
		display: inline-block;
		font-weight: bold;
		letter-spacing: normal;
		vertical-align: top;
	}

	.detail-area .detail-head {
		width: 40%;
	}

	.detail-area .detail-txt {
		width: 60%;
		text-align: right;
	}

	.detail-area .pdf-btn {}

	.detail-area a {
		display: block;
		padding: 16px 0;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
		background-color: #FF7300;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
	}
	.works_list{
		display: flex;
	}
	.works_list>li{
		margin: 10px;

	}
	
}

@media screen and (min-width: 768px) {
	.v_lift {}

	.v_lift .contents_ttl {}

	.v_lift .sect_ttl {}

	.v_lift .sect_ttl.v_lift .welfare_vehicles_block {}

	.v_lift .sub_ttl {}

	.v_lift .v-lift_img {
		display: flex;
		flex-wrap: wrap;
	}

	.v_lift p {
		width: 45%;
		margin: 2px auto;
	}

	.v_lift img {}

	.sonpo{
		padding:30px;
		margin: 0 auto;
	}
	.sonpo_image{
		display: flex;;
	}

	
}
@media screen and (max-width: 450px) {
	.sonpo_image{
		display: flex;
		justify-content: space-around;
	}
	.sonpo{
		width: 150px;
		
	}
	

	
}

