<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*sass*/
/*$mainColor:#0f2c4c;
$subColor:#1d5081;
$linkColor:#369;
$hoverColor:#C1436B;
$navColor:#0F2C4C;
$textColor:#333;
$accentColor:#335553;
*/
/*
Theme Name: responsiv
Author URI: http://care-net.biz
*/
/* body */
body {
  position: relative;
  width: 100%;
  background: #cfcfcf;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
  background: url(../img/bg.png) repeat;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* aタグの設定 */
a {
  color: #0a86dc;
}

a:hover {
  color: #c1436b;
}

a img {
  -webkit-transition: opacity 2s ease-in-out;
  -moz-transition: opacity 2s ease-in-out;
  -o-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}

a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}

a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* 全体の幅 */
.wrapper {
  width: 1000px;
  margin: 0 auto;
}

/* ヘッダーのスタイル */
#header {
  width: 100%;
  margin-top: 20px;
}

#header .toggleBtn {
  display: none;
}

#header .logo {
  float: left;
}

#header .logo img {
  width: 100%;
  max-width: 365px;
  height: auto;
}

#header div#headerMenu {
  float: right;
}

#header div#headerMenu ul li {
  list-style: none;
  float: left;
}

/* グローバルナビゲーションのスタイル */
.gnav {
  -webkit-box-shadow: 0px 4px 4px 0px #d9d9d9;
  -moz-box-shadow: 0px 4px 4px 0px #d9d9d9;
  box-shadow: 0px 4px 4px 0px #d9d9d9;
  background-color: #01487d;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0282E2', endColorstr='#FF01487D');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0282e2), color-stop(100%, #01487d));
  background-image: -webkit-linear-gradient(#0282e2 0%, #01487d 100%);
  background-image: -moz-linear-gradient(#0282e2 0%, #01487d 100%);
  background-image: -o-linear-gradient(#0282e2 0%, #01487d 100%);
  background-image: linear-gradient(#0282e2 0%, #01487d 100%);
  background-color: #01487d;
  position: relative;
  z-index: 1;
}

.gnav a {
  padding: 10px;
  color: #fff;
  display: block;
  text-decoration: none;
  -webkit-transition: text-shadow 0.2s ease-in-out;
  -moz-transition: text-shadow 0.2s ease-in-out;
  -o-transition: text-shadow 0.2s ease-in-out;
  transition: text-shadow 0.2s ease-in-out;
}

.gnav a:hover,
.gnav a.current {
  color: #FFFEE2;
  text-shadow: 0px 0px 5px white;
}

.gnav ul {
  background: none;
  position: relative;
}
.gnav ul li {
  position: relative;
  border: 1px solid #01487d;
  width: 166px;
  float: left;
  text-align: center;
}
.gnav ul li.longTitle a {
  padding: 5px;
  font-size: 80%;
}
.gnav ul li ul {
  width: 100%;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.gnav ul li ul li {
  overflow: hidden;
  width: 100%;
  height: 0;
  min-height: 0;
  color: #fff;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border: none;
  float: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.gnav ul li ul li a {
  background-color: white;
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  color: #01487d;
  border: 1px solid #01487d;
  border-top: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.gnav ul li ul li a:hover,
.gnav ul li ul li a.current {
  color: #fff;
  background-color: #0a86dc;
  text-shadow: 0px 0px 5px white;
}
.gnav ul li ul li:last-child {
  border-bottom: none;
}
.gnav ul li ul li:last-child a {
  border-radius: 0 0 10px 10px;
}
.gnav ul li:hover ul li {
  overflow: visible;
  min-height: 38px;
  height: auto;
  border-top: 0px solid #01487d;
  border-bottom: 0px solid #01487d;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.toggle_menu {
  text-align: right;
}

#toggle_menu-btn {
  display: inline-block;
  position: relative;
  height: 36px;
  margin: 5px 10px 0;
  padding: 10px 30px 10px 10px;
  border-radius: 5px;
  background: #fff;
  text-align: right;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid #666;
  -webkit-box-shadow: #cccccc 0px 3px 3px -1px;
  -moz-box-shadow: #cccccc 0px 3px 3px -1px;
  box-shadow: #cccccc 0px 3px 3px -1px;
  background-color: #0a86dc;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF55B5F7', endColorstr='#FF0A86DC');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #55b5f7), color-stop(100%, #0a86dc));
  background-image: -webkit-linear-gradient(#55b5f7 0%, #0a86dc 100%);
  background-image: -moz-linear-gradient(#55b5f7 0%, #0a86dc 100%);
  background-image: -o-linear-gradient(#55b5f7 0%, #0a86dc 100%);
  background-image: linear-gradient(#55b5f7 0%, #0a86dc 100%);
}

#toggle_menu-btn:hover {
  color: #FFFFFF;
  text-decoration: none;
}

#toggle_menu-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
  background: #fff;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

#toggle_menu-btn-icon:before, #toggle_menu-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#toggle_menu-btn-icon:before {
  margin-top: -6px;
}

#toggle_menu-btn-icon:after {
  margin-top: 4px;
}

#toggle_menu-btn .close {
  background: transparent;
}

#toggle_menu-btn .close:before, #toggle_menu-btn .close:after {
  margin-top: 0;
}

#toggle_menu-btn .close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#toggle_menu-btn .close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#toggle_menu_list,
#toggle_menu_list p {
  display: none;
}

#toggle_menu_list {
  position: absolute;
  right: 0px;
  z-index: 100;
  margin-right: 15px;
  padding: 5px 10px;
  -webkit-box-shadow: #999999 0px 4px 2px -1px;
  -moz-box-shadow: #999999 0px 4px 2px -1px;
  box-shadow: #999999 0px 4px 2px -1px;
  max-width: 260px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.94118);
  border: 1px solid #CCC;
}

#toggle_menu_list h2 {
  line-height: 1.4;
  margin-bottom: 0.3em;
}

.logo {
  font-size: 220%;
  font-weight: bold;
  color: #3572FF;
  text-shadow: 2px 2px 0px white;
  margin-bottom: .5em;
  margin-top: 20px;
}

.logo a {
  text-decoration: none;
}

/* スライドショー初期表示 */
.slideshow li {
  display: none;
}

.slideshow li:first-child {
  display: inherit;
}

/* コンテンツエリア全体 */
div#content {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 auto;
}

.contentBg {
  background: white;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

div#bx-pager {
  width: 680px;
  display: inline;
}

div#bx-pager ul li {
  list-style: none;
  float: left;
  text-align: center;
}

/* コンテンツエリア -&gt; パンくず */
/* コンテンツエリア -&gt; パンくず */
#breadcrumb {
  padding: 10px;
}
#breadcrumb li {
  display: inline-block;
  list-style: none;
  line-height: 20px;
}
#breadcrumb li:before {
  display: inline-block;
  content: "&gt;";
  margin-right: 5px;
}
#breadcrumb li:first-child:before {
  display: none;
  content: "&gt;";
  margin-right: 5px;
}
#breadcrumb li a {
  text-decoration: none;
}

/* コンテンツエリア -&gt; main */
#main {
  width: 680px;
  float: left;
}

div#slidsBox {
  border: solid #fff 5px;
  margin-top: 10px;
}

.content_box {
  margin-bottom: 1.8em;
  padding: 5px 24px;
  zoom: 1;
}

.content_box:before, .content_box:after {
  content: "";
  display: table;
}

.content_box:after {
  clear: both;
}

.content_box h2 {
  font-size: 24px;
  padding: 10px 0 0px 1em;
  margin-bottom: .4em;
  color: #01487d;
  position: relative;
}

.content_box h2:before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 16px solid #0072bc;
  margin-left: -1em;
  margin-top: -5px;
}

.content_box h3 {
  margin-bottom: .4em;
}

.content_box ul,
.content_box ol {
  padding-left: 1em;
}

.content_box li {
  margin-left: 1em;
  line-height: 1.4;
  margin-bottom: 5px;
}

#sidebar {
  width: 300px;
  float: right;
  background: white;
  margin-top: 10px;
}

/* コンテンツエリア -&gt; sidebar */
aside.cpBox {
  margin-bottom: 10px;
}

aside.cpBox .cpBg {
  margin: 5px 5px 0;
  padding: 5px;
  background: white;
}

aside.cpBox .cpBg h2 {
  color: #01487d;
  margin-bottom: 5px;
}

aside.cpBox .cpBg p {
  font-size: 12px;
  line-height: 150%;
}

aside.cpBox p.more {
  margin: 0 5px 5px;
  padding: 5px;
  background: #01487d;
  font-size: 12px;
  text-align: right;
}

aside.cpBox p.more a {
  color: #fff;
}

.button_area {
  margin-bottom: 10px;
}

.button_area li {
  width: 90%;
  margin: 0 auto 10px;
  list-style: none;
  text-align: center;
}

.button_area li a {
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  display: block;
}

.button_area li.reservation {
  background: #d60f0f;
}

.button1 {
  background-color: #0072bc;
  border: 1px solid #004470;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  background-color: #0072bc;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0081D6', endColorstr='#FF0072BC');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0081d6), color-stop(100%, #0072bc));
  background-image: -webkit-linear-gradient(#0081d6 0%, #0072bc 100%);
  background-image: -moz-linear-gradient(#0081d6 0%, #0072bc 100%);
  background-image: -o-linear-gradient(#0081d6 0%, #0072bc 100%);
  background-image: linear-gradient(#0081d6 0%, #0072bc 100%);
  text-shadow: -1px -1px 1px black;
  -webkit-box-shadow: inset 0px 1px 0px 0px #89d1ff;
  -moz-box-shadow: inset 0px 1px 0px 0px #89d1ff;
  box-shadow: inset 0px 1px 0px 0px #89d1ff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.button1:hover {
  background-color: #0072bc;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0072BC', endColorstr='#FF0081D6');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0072bc), color-stop(100%, #0081d6));
  background-image: -webkit-linear-gradient(#0072bc 0%, #0081d6 100%);
  background-image: -moz-linear-gradient(#0072bc 0%, #0081d6 100%);
  background-image: -o-linear-gradient(#0072bc 0%, #0081d6 100%);
  background-image: linear-gradient(#0072bc 0%, #0081d6 100%);
  background-color: #5cb811;
  color: #fff;
}

.button1:active {
  position: relative;
  top: 1px;
}

.contactBtn {
  position: relative;
  background-color: #e4685d;
  border: 1px solid #D44F46;
  display: inline-block;
  cursor: pointer;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 16px 31px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #b23e35;
  -webkit-box-shadow: 0px 4px 0px 0px #d44f46;
  -moz-box-shadow: 0px 4px 0px 0px #d44f46;
  box-shadow: 0px 4px 0px 0px #d44f46;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.contactBtn:hover {
  background-color: #eb675e;
}

.contactBtn:active {
  position: relative;
  top: 1px;
}

.contactBtn:before {
  display: block;
  content: "●";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 0;
  height: 0;
  margin-top: -10px;
  /*	border: 10px solid transparent;
  	border-left: 10px solid #fff; */
}

.contactBtn:after {
  display: block;
  content: "●";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 0;
  height: 0;
  margin-top: -10px;
  /*	border: 10px solid transparent;
  	border-left: 10px solid #fff; */
}

/*.pageTitle {
	position:relative;
	font-size: 140%;
	line-height: 1.4;
	border-bottom: 8px solid $mainColor;
	color: $mainColor;
	padding: .2em .6em 0 0;
	margin-bottom: 1em;
}
.pageTitle:first-letter {
position:absolute;
  display: block;
	font-size: 180%;
	padding: 0 .2em;
	margin-bottom: 0;
	margin-right: .1em;
	color: $baseColor;
	background: $mainColor;
	border-left: 10px solid $subColor;
}*/
.pageTitle {
  position: relative;
  font-size: 140%;
  line-height: 1.4;
  color: #01487d;
  padding: .2em .6em 0 0;
  margin-bottom: 1em;
  border-bottom: 5px solid #0072bc;
}

.pageTitle:first-letter {
  font-size: 180%;
  padding: 0 .1em;
  margin-bottom: 0;
}

.title {
  font-size: 24px;
  padding: 10px 0 0px 1em;
  margin-bottom: .4em;
  color: #01487d;
  position: relative;
  border-bottom: 1px solid #01487d;
}

.title:before {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 16px solid #0072bc;
  margin-left: -1em;
  margin-top: -5px;
}

#sidebar h2 {
  border-top: none;
  border-bottom: none;
  background: none;
  color: #01487d;
  box-shadow: none;
  padding: .6em;
  margin-bottom: .4em;
  font-size: 20px;
}

.title2 {
  font-size: 100%;
  border-top: 10px solid #0072bc;
  background: #F7F7F7;
  padding: .6em;
  margin-bottom: .4em;
  color: #01487d;
  -webkit-box-shadow: 0px 1px 1px 0px #cfcfcf;
  -moz-box-shadow: 0px 1px 1px 0px #cfcfcf;
  box-shadow: 0px 1px 1px 0px #cfcfcf;
}

.catch_box {
  width: 100%;
  margin: 0 0 21px 0;
}

.catch_box &gt; span {
  display: block;
  padding: 12px 6px;
  border: 2px solid #EFA11B;
  -webkit-box-shadow: inset 0 0 8px 8px 0 0 #cfcfcf;
  -moz-box-shadow: inset 0 0 8px 8px 0 0 #cfcfcf;
  box-shadow: inset 0 0 8px 8px 0 0 #cfcfcf;
  background: white;
  color: #EFA11B;
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.catch {
  font-size: 120%;
  color: #ad2b2b;
  font-weight: bold;
}

/*
.catch {
    color: #5A9E54;
	background:#F3F3F3;
	font-size: 200%;
	font-weight:bold;
    border: 5px solid #5A9E54;
    margin: 10px 10px 21px 10px;
	padding:.3em;
    @include border-radius(3px);
}
.catch:after, .catch:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 0;
    width: 0;
}
*/
/*.catch:after {
    left: 40px;
    border: 13px solid transparent;
    border-top: 13px solid #F3F3F3;
}
.catch:before {
    left: 34px;
    border: 20px solid transparent;
    border-top: 20px solid #5A9E54;
}
*/
.dl_new dt {
  padding: 5px 10px 0;
  font-size: 12px;
}

.dl_new dd {
  padding: 5px 10px;
  line-height: 150%;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}

.dl_service dt {
  padding: 5px;
  font-weight: bold;
}

.dl_service dd {
  margin-bottom: 10px;
  padding: 5px 10px;
  -webkit-box-shadow: 1px 1px 1px 0px #b0b5c0;
  -moz-box-shadow: 1px 1px 1px 0px #b0b5c0;
  box-shadow: 1px 1px 1px 0px #b0b5c0;
  line-height: 1.4;
}

.tnav h2 {
  padding: 5px;
}

.tnav p {
  padding: 5px 10px;
  -webkit-box-shadow: 1px 1px 1px 0px #b0b5c0;
  -moz-box-shadow: 1px 1px 1px 0px #b0b5c0;
  box-shadow: 1px 1px 1px 0px #b0b5c0;
}

.tnav_side {
  margin: 10px 15px;
  border: 6px solid #DDD;
}

.tnav_side h3 {
  padding: 5px 10px;
  /*	border-left:3px solid $mainColor; */
}

.tnav_side p {
  padding: 5px 10px;
  /*	border-left:3px solid $mainColor; */
}

/* ページナビ */
/* ブログフィード表示 */
.feed_area dt {
  padding: 0.5em 1em;
  font-size: 110%;
}

.feed_area dd {
  padding: 0 1em 1em;
  margin-left: 0;
  border-width: 0 1px 1px;
  line-height: 1.5;
}

/* ページトップへボタンのスタイル */
p.gotop {
  position: fixed;
  left: auto;
  right: 20px;
  bottom: -13px;
}

p.gotop a {
  width: 46px;
  height: 46px;
  display: block;
  background-color: #0a86dc;
  color: #fff;
  text-align: center;
  line-height: 46px;
  text-decoration: none;
  /* box-shadow */
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 1px inset;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 1px inset;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 1px inset;
}

/* フッターのスタイル */
.footer {
  background: #01487d;
  line-height: normal;
}

.footer a {
  color: white;
}

.footer .footerNav a {
  padding: 10px;
  color: #0a86dc;
  display: block;
  text-decoration: none;
}

.footer .footerNav a:hover {
  color: #ad2b2b;
}

.footer .footerNav {
  padding-top: 5px;
  background: white;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-bottom: 20px;
}

.footer .footerNav ul {
  padding-bottom: 5px;
}

.footer .footerNav ul li {
  float: left;
}

.footer p {
  padding: 5px 0;
  color: #fff;
  font-size: 80%;
  text-align: right;
  line-height: 150%;
  padding-right: 0.5em;
}

/* テーブル装飾 */
.data1 {
  border-top: 2px solid #b0b5c0;
  border-bottom: 2px solid #b0b5c0;
  margin-bottom: 20px;
}

.data1 th,
.data1 td {
  border-bottom: 1px dashed #b0b5c0;
  padding: 10px 10px 2px 10px;
}

.data1 tr:last-child th,
.data1 tr:last-child td {
  border-bottom: none;
}

.data1 caption {
  margin: 0;
  padding-bottom: .2em;
  text-align: left;
  font-weight: bold;
}

.greeting{
	 margin-bottom:200px;
	 }


@media only screen and (max-width: 1000px) {
  .wrapper {
    width: 100%;
  }

  #sidebar {
    width: 260px;
  }
}
/* タブレット向けのレイアウトの指定：～960px */
@media only screen and (max-width: 960px) {
  #header {
    margin-top: 0;
  }

  #header .wrapper {
    padding: 5px;
  }

  #header .toggleBtn {
    display: block;
  }

  div#bx-pager {
    display: none;
  }

  div#slidsBox {
    width: 100%;
    padding-left: 0px;
  }

  #gnav {
    padding-top: 0;
  }

  #gnav ul {
    padding-bottom: 5px;
  }

  div#content {
    width: 100%;
  }

  #main {
    width: 100%;
    float: none;
  }

  .button_area article.shopBox {
    width: 100%;
    background: white;
    margin: 0;
    float: none;
    border: none;
  }

  #sidebar {
    width: 100%;
    float: none;
  }

  .footer .footerNav ul {
    margin: 0;
    padding-bottom: 5px;
  }

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

  .gnav .home {
    display: none;
  }
}
/* タブレット向けのレイアウトの指定：～768px */
@media only screen and (max-width: 768px) {
  .gnav ul li {
    width: 33.333%;
  }

  .gnav ul li ul {
    width: 100%;
  }

  .gnav li ul li {
    width: 100%;
  }

  .contentBg {
    border-left: none;
    border-right: none;
  }

  .content_box h2 {
    margin-left: -24px;
  }
 .greeting{
	 margin-bottom:0;
	 }


}
/* スマホ向けのレイアウトの指定：～420px */
@media only screen and (max-width: 420px) {
  #header .logo {
    font-size: 160%;
    margin-top: .5em;
    text-align: center;
    float: none;
  }

  .pageTitle {
    margin-top: 20px;
  }

  #gnav .toggleBtn {
    display: block;
  }

  #breadcrumb {
    display: none;
  }

  .gnav ul li {
    width: 50%;
  }

  .gnav li ul li {
    width: 100%;
  }

  .footer .footerNav {
    margin-bottom: 45px;
  }

  .data1 th {
    border-bottom: none;
    margin-left: 0;
  }

  .data1 td {
    padding-top: 3px;
    margin-left: 0;
  }

  .data1 th br,
  .data1 td br {
    display: none;
  }

  .data1 tr:last-child th,
  .data1 tr:last-child td {
    border-bottom: none;
  }
 .greeting{
	 margin-bottom:10px;
	 }
}
</pre></body></html>