<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">

<title>システムメンテナンスのお知らせ</title>

<style type="text/css">
<!--

body{
	margin: 0px;
	text-align: center;
	font-size:14px;
	color: #333;
	font-family: "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック", Osaka ;
	line-height:1.8em;
}

.contents{
	width:100%;
	text-align:left;
	margin:0;
	position:relative;
}

.section{
	position:absolute;
	left:0;
	width:100%;
}

.frame{
	position: relative;
	padding: 100px;
	background-color: #f6f6f6;
	width:700px;
	margin:0 auto;
}

.frame::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 0;
	border-width: 0 16px 16px 0;
	border-style: solid;
	border-color: #fff #fff #ddd #ddd;
	box-shadow: -1px 1px 2px rgba(0, 0, 0, .1);
}

p{
	margin: 30px auto 0;
	font-size: 100%;
}

h1 {
	position: relative;
	padding-top: .75em;
	border-bottom: 1px solid #f6f6f6;
	padding:0 0 30px;
}

h1::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	z-index: 2;
	content: '';
	width: 10%;
	height: 1px;
	background-color: #333;
}

p.small{
	font-size:78%;
	line-height:1.7em;
}

-->
</style>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">

$(function(){

   //高さ
	$(document).ready(function () {
	  hsize = $(window).height();
	  $(".contents").css("height", hsize + "px");
	});
	$(window).resize(function () {
	  hsize = $(window).height();
	  $(".contents").css("height", hsize + "px");
	});

	$(document).ready(function(){
	    var h = Math.floor(($(window).height() - $(".section").height()) / 2);
    	$(".section").css({
    	    "top": h
    	});
	});
	$(window).resize(function(){
	    var h = Math.floor(($(window).height() - $(".section").height()) / 2);
    	$(".section").css({
    	    "top": h
    	});
	});

});

</script>

</head>

<body>

<div class="contents">
<div class="section">
<div class="frame">

<h1>システムメンテナンスのお知らせ</h1>

<p>
いつもホームページをご利用いただき、誠にありがとうございます。<br>
WEBサイトメンテナンスのため、2025年5月1日～2026年6月30日まで停止いたします。<br>
お急ぎの方はお手数おかけしますが、弊社WEBサイトよりお問合せください。<br>
（WEBサイト：<a href="https://www.kuroda.co.jp/">https://www.kuroda.co.jp/</a>）<br>
<br>
お客さまにはご不便をおかけいたしますが、何卒ご理解いただきますようお願い申し上げます。<br>
</p>

<p class="small">株式会社クロダ<br>
〒769-2601 香川県東かがわ市三本松722-1<br>
TEL：0879-25-9581　FAX：0879-24-0227</p>

</div>
</div>
</div>

</body>
</html>