<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
Theme Name: responsiv
Author URI: http://care-net.biz
*/
/* body */
body {
  width: 100%;
  font-family: "游ゴシック",YuGothic,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-weight: 550;
  color: #333333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}
img {
    max-width: 100%;
    height: auto;
}
/* IE11 游ゴシック余白対策 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  }
}
.bg01 {
  background: transparent url(../img/bg01.jpg) repeat top left;
}

.bg02 {
  background: transparent url(../img/bg02.jpg) repeat top left;
}

.bg03 {
  background: transparent url(../img/bg03.jpg) repeat top left;
}

.bg04 {
  background: transparent url(../img/bg04.jpg) repeat top left;
}

.bodyhide {
  overflow: hidden;
}

/* aタグの設定 */
a {
  color: #5a64ac;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
a img {
  -moz-transition: opacity 2s ease-in-out;
  -o-transition: opacity 2s ease-in-out;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}
a:hover {
  color: #4ca381;
}
a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}

/* 告知*/
.btan a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 90%;
	height: 60px;
	color: #7e0104;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btan a:hover {
	color: #f2f2f2;
}
.btn01 a {
	background-color: #eee878;
}

.btn01 a:hover {
	background-color: #B99b00;
	
}

/*.btn01 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
	width: 70px;
	height: 1px;
	background-color: #7e0104;
}*/

/* 全体の幅 */
.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    width: auto;
    padding: 0 5px;
  }
}

/* ヘッダーのスタイル */
header {
  width: 100%;
  padding: 20px 0 10px 0;
  position: relative;
  background-color: #eee878;
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
    height: 60px;
    position: fixed;
  }
}
header .logo {
  padding-top: 26px;
  padding-bottom: 10px;
  max-width: 600px;
  float: left;
  font-size: 32px;
  font-weight: bold;
  font-family: "Sawarabi Mincho";
  text-shadow: 0 2px #ffffff;
}
@media screen and (max-width: 767px) {
  header .logo {
	padding-top: 0px;
    width: 80%;
    line-height: 60px;
    font-size: 20px;
    max-width: auto;
  }
}
@media screen and (max-width: 320px) {
  header .logo {
    font-size: 16px;
  }
}
header .logo a {
  color: #333333;
  text-decoration: none;
}
header .logo img {
  width: 100%;
  height: auto;
}
header .contact_area {
  font-size: 20px;
  float: right;
  font-family: "Sawarabi Mincho";
  text-shadow: 0 2px #ffffff;
}
header .contact_area a {
  color: #857763;
  text-decoration: none;
}
header .contact_area p {
  float: left;
}
header .contact_area p.tell {
  margin-right: 20px;
}
header .contact_area p.tell :before {
  padding-right: 5px;
  font-family: "icomoon";
  content: "\e904";
  color: #4ca381;
}
header .contact_area p.mail:before {
  padding-right: 5px;
  font-family: "icomoon";
  content: "\e903";
  color: #5a64ac;
}
@media screen and (max-width: 1000px) {
  header .contact_area {
    display: none;
  }
}

/* モバイル用メニューボタン */
#mobile_menu-btn {
  display: none;
  position: fixed;
  height: 42px;
  padding: 8px;
  width: 42px;
  border-radius: 5px;
  text-align: right;
  text-decoration: none;
  color: #ffffff;
  *zoom: 1;
  top: 8px;
  right: 10px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  #mobile_menu-btn {
    display: inline-block;
  }
}
#mobile_menu-btn:hover {
  color: #ffffff;
  text-decoration: none;
}
#mobile_menu-btn .close {
  background: transparent;
}
#mobile_menu-btn .close:before, #mobile_menu-btn .close:after {
  margin-top: 0;
}
#mobile_menu-btn .close:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile_menu-btn .close:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobile_menu-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  margin: -1px -7px 0 0px;
  background: #edb41c;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#mobile_menu-btn-icon:before, #mobile_menu-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 2px;
  background: #edb41c;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#mobile_menu-btn-icon:before {
  margin-top: -10px;
}
#mobile_menu-btn-icon:after {
  margin-top: 8px;
}

/* グローバルナビゲーションのスタイル */
.header_nav {
  position: relative;
}
.header_nav ul {
  width: calc(100% - 24px);
  height: 65px;
  margin: 0 auto;
  line-height: 65px;
  border-top: 3px double #857763;
  border-bottom: 3px double #857763;
  font-weight: bold;
  position: relative;
  background-color: #ffffff;
}
.header_nav ul:before, .header_nav ul:after {
  width: 12px;
  height: 65px;
  display: block;
  content: '';
  position: absolute;
  top: -3px;
}
.header_nav ul:before {
  left: -12px;
  background: url(../img/nav_back01.png) no-repeat top left;
}
.header_nav ul:after {
  right: -12px;
  background: url(../img/nav_back02.png) no-repeat top left;
}
.header_nav ul &gt; li.longTitle a {
  font-size: 80%;
}
.header_nav ul &gt; li {
  width: calc(99% / 6);
  float: left;
  text-align: center;
  position: relative;
  line-height: 59px;
  /* ulのheight - 上下border */
}
.header_nav ul &gt; li a {
  display: block;
  color: #857763;
  text-decoration: none;
  transition: .2s;
}
.header_nav ul &gt; li a:hover {
  color: #4ca381;
}
.header_nav ul &gt; li a.current {
  color: #4ca381;
}
.header_nav ul &gt; li &gt; ul {
  width: 100%;
  padding: 0;
  margin-top: -5px;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  background-color: transparent;
}
.header_nav ul &gt; li &gt; ul:before, .header_nav ul &gt; li &gt; ul:after {
  display: none;
}
.header_nav ul &gt; li &gt; ul &gt; li {
  width: 100%;
  height: 0;
  min-height: 0;
  overflow: hidden;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  float: none;
  opacity: 0;
  position: relative;
}
.header_nav ul &gt; li &gt; ul &gt; li:before {
  display: none;
}
.header_nav ul &gt; li &gt; ul &gt; li a {
  text-align: center;
  border-top: none;
}
.header_nav ul &gt; li &gt; ul &gt; li a:hover {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  background-color: #fff8e0;
}
.header_nav ul &gt; li:hover &gt; ul:before {
  display: block;
  width: auto;
  height: auto;
  top: -18px;
  left: 50%;
  margin-left: -9px;
  border: 9px solid transparent;
  border-bottom: 9px solid #857763;
  background: none;
}
.header_nav ul &gt; li:hover &gt; ul {
  height: auto;
  border: 1px solid #857763;
  background-color: #ffffff;
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
.header_nav ul &gt; li:hover &gt; ul &gt; li {
  overflow: visible;
  height: auto;
  opacity: 1;
}
.header_nav ul &gt; li:before {
  display: block;
  font-size: 12px;
  font-family: "icomoon";
  content: "\e901";
  color: #857763;
  position: absolute;
  left: 0;
  margin-left: -6px;
}
@media screen and (max-width: 767px) {
  .header_nav ul &gt; li:before {
    display: none;
  }
}
.header_nav ul &gt; li:first-child:before {
  display: none;
}

@media screen and (max-width: 767px) {
  .header_nav a:hover {
    color: #4ca381;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .header_nav ul {
    width: auto;
    height: auto;
    border-left: 3px double #857763;
    border-right: 3px double #857763;
    display: none;
    margin: 5px;
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background-image: url(../img/mobile_back_tl.png), url(../img/mobile_back_tr.png), url(../img/mobile_back_bl.png), url(../img/mobile_back_br.png);
    background-size: 70px auto;
    background-repeat: no-repeat;
    background-position: left top,right top,left bottom,right bottom;
  }
  .header_nav ul:before, .header_nav ul:after {
    display: none;
  }
  .header_nav ul li {
    width: 100%;
    border-bottom: 1px solid #857763;
  }
  .header_nav ul li a.current {
    width: 100%;
    color: #4ca381;
  }
  .header_nav ul li ul {
    margin: 0;
    position: relative;
    border: none;
    background-color: #fff8e0;
    background-image: none;
  }
  .header_nav ul li ul li {
    opacity: 1;
    height: auto;
  }
  .header_nav ul li ul li:last-child {
    border-bottom: none;
  }
  .header_nav ul li:hover ul {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: #fff8e0;
  }
}
/* 全体のコンテンツ */
#main_wrapp {
  position: relative;
}

#main_container {
  padding: 0 20px 20px 20px;
  background-color: #ffffff;
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  #main_container {
    width: auto;
    padding: 60px 10px 0 10px;
  }
}

ul#breadcrumb li {
  padding: 20px 0;
  display: inline-block;
  list-style: none;
}
ul#breadcrumb li:after {
  content: " ＞ ";
}
ul#breadcrumb li:last-child:after {
  content: none;
}

.bxSlider {
  position: relative;
}

#content {
  width: 740px;
  float: left;
}
@media screen and (max-width: 1000px) {
  #content {
    width: 100%;
    float: none;
  }
}
#content h1 {
  margin-bottom: 10px;
  padding: 23px 0;
  font-family: "Sawarabi Mincho";
  background-image: url(../img/h1_top.png), url(../img/h1_bottom.png);
  background-size: 162px auto;
  background-repeat: no-repeat;
  background-position: center top,center bottom;
}
#content h1 span {
  display: block;
  padding: 20px 0;
  color: #857763;
  text-align: center;
  font-size: 22px;
  position: relative;
}
#content h1 span:before, #content h1 span:after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
#content h1 span:before {
  top: 0;
  border-top: 2px solid #857763;
  border-bottom: 1px solid #857763;
}
#content h1 span:after {
  bottom: 0;
  border-top: 1px solid #857763;
  border-bottom: 2px solid #857763;
}

.catch {
  font-size: 120%;
  font-weight: bold;
}
.tc {
  text-align: center;
}
.content_box {
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 10px;
  font-family: "Sawarabi Mincho";
  font-size: 20px;
  background: transparent url(../img/h2.png) no-repeat bottom right;
  background-size: 100px auto;
}
h2:after {
  width: 100%;
  height: 3px;
  margin-top: 5px;
  display: block;
  content: '';
  box-sizing: border-box;
  border-top: 1px solid #857763;
  border-bottom: 1px dotted #857763;
}

h3 {
  margin-bottom: 5px;
  font-size: 120%;
  font-weight: bold;
}
h3:before {
  padding-right: 5px;
  font-family: "icomoon";
  content: "\e900";
  color: #edb41c;
}

dl.dl_new {
  margin-bottom: 10px;
  line-height: 1.3em;
}
dl.dl_new dt {
  margin-right: 20px;
  float: left;
  font-weight: bold;
}
dl.dl_new dd {
  float: left;
}

dl.dl_default {
  padding: 5px;
  line-height: 1.3em;
}
dl.dl_default dt {
  margin-bottom: 5px;
  font-weight: bold;
}
dl.dl_default dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #857763;
}
dl.dl_default dd:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#feed dl {
  padding: 5px;
  line-height: 1.3em;
  margin-top: 1px;
  padding: 20px;
  color: #333333;
  line-height: 1.3em;
  border: 1px solid #857763;
  background-color: #ffffff;
}
#feed dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}
#feed dl dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #333;
}

.content_box ol, .content_box ul {
  line-height: 1.3em;
}

.content_box ol {
  margin-left: 1em;
  margin-bottom: 5px;
}

.content_box ul li {
  margin-bottom: 5px;
  list-style: none;
  margin-left: 14px;
  text-indent: -14px;
}
.content_box ul li:before {
  padding-right: 6px;
  color: #edb41c;
  font-size: 8px;
  font-family: 'icomoon';
  content: "\e901";
}

/* table */
.data1 {
  margin-bottom: 20px;
  line-height: 1.3em;
  border-right: 1px solid #878787;
  border-bottom: 1px solid #878787;
  border-collapse: separate;
  border-spacing: 0;
}
.data1 th {
  padding: 15px;
  border-top: 1px solid #878787;
  border-left: 1px solid #878787;
  background-color: #fffaa1;
}
.data1 td {
  padding: 15px;
  border-top: 1px solid #878787;
  border-left: 1px solid #878787;
}
.data1 caption {
  font-weight: bold;
}

.data2 {
  margin-bottom: 20px;
  line-height: 1.3em;
  padding: 1px;
  border: 1px solid #ffffff;
  border-collapse: separate;
  border-spacing: 0;
}
.data2 th {
  padding: 15px;
  border: 2px solid #ffffff;
  background-color: #fffaa1;
}
.data2 tr:nth-child(2n) th {
  background-color: #eee878;
}
.data2 td {
  padding: 15px;
}
.data2 caption {
  font-weight: bold;
}
.box_pink {
	background: #FFBCFA;
	margin: 10px;
	padding: 10px;
	border-radius: 10px;
}

/* サイドメニュー */
#sidebar {
  width: 200px;
  float: right;
}
@media screen and (max-width: 1000px) {
  #sidebar {
    width: 100%;
    float: none;
    margin-bottom: 60px;
  }
}
#sidebar .tnav_back {
  text-align: center;
  font-size: 120%;
  font-weight: bold;
  font-family: "Sawarabi Mincho";
  padding-bottom: 3px;
  border-bottom: 1px solid #857763;
  background-image: url(../img/tnav_back01.png), url(../img/tnav_back02.png);
  background-repeat: no-repeat;
  background-position: bottom right,bottom left;
  background-size: 32px auto;
}
#sidebar dl.dl_service {
  margin-top: 1px;
  padding: 20px;
  color: #333333;
  line-height: 1.3em;
  border: 1px solid #857763;
  background-color: #ffffff;
}
#sidebar dl.dl_service a {
  color: #333333;
}
#sidebar dl.dl_service dt {
  font-weight: bold;
  margin-bottom: 5px;
}
#sidebar dl.dl_service dd {
  margin-bottom: 10px;
  font-size: 85%;
}
#sidebar dl.dl_service dd:last-child {
  margin-bottom: 0;
}
#sidebar .button1 {
  max-width: 300px;
  margin: 10px auto;
  font-family: "Sawarabi Mincho";
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
  display: block;
  font-size: 120%;
  text-decoration: none;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 0, 2px, rgba(0, 0, 0, 0.5);
  background-color: #857763;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFBFB6A9', endColorstr='#FF857763');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JmYjZhOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg1Nzc2MyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bfb6a9), color-stop(100%, #857763));
  background-image: -moz-linear-gradient(#bfb6a9 0%, #857763 100%);
  background-image: -webkit-linear-gradient(#bfb6a9 0%, #857763 100%);
  background-image: linear-gradient(#bfb6a9 0%, #857763 100%);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
#sidebar .button1:hover {
  background-color: #7b6c56;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFB8AB99', endColorstr='#FF7B6C56');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I4YWI5OSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzdiNmM1NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b8ab99), color-stop(100%, #7b6c56));
  background-image: -moz-linear-gradient(#b8ab99 0%, #7b6c56 100%);
  background-image: -webkit-linear-gradient(#b8ab99 0%, #7b6c56 100%);
  background-image: linear-gradient(#b8ab99 0%, #7b6c56 100%);
}
#sidebar .button1:active {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  background-color: #7b6c56;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7B6C56', endColorstr='#FFB8AB99');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdiNmM1NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I4YWI5OSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b6c56), color-stop(100%, #b8ab99));
  background-image: -moz-linear-gradient(#7b6c56 0%, #b8ab99 100%);
  background-image: -webkit-linear-gradient(#7b6c56 0%, #b8ab99 100%);
  background-image: linear-gradient(#7b6c56 0%, #b8ab99 100%);
}

/* 下部メニュー */
nav.footer_nav {
  width: 100%;
  -moz-box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #eee878;
  position: relative;
}
nav.footer_nav ul {
  padding: 10px 0;
}
nav.footer_nav ul li {
  float: left;
}
@media screen and (max-width: 767px) {
  nav.footer_nav ul {
    float: none;
  }
}

/* フッター */
footer {
  width: 100%;
  padding: 10px 0 0 0;
  color: #ffffff;
  position: relative;
  -moz-box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #edb41c;
}
footer a {
  color: #ffffff;
}
footer .wrapper {
  position: relative;
}
footer address {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* ページトップのボタン */
p.gotop {
  margin: 0;
  right: 20px;
  font-size: 200%;
}
p.gotop a {
  width: 50px;
  height: 50px;
  display: block;
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(76, 163, 129, 0.5);
}
p.gotop a:hover {
  background-color: #4ca381;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
p.gotop a:before {
  font-size: 85%;
  font-family: "icomoon";
  content: "\e602";
}

/* フローチャート */
dl.dl_flow {
  inheritwidth: 100%;
  line-height: 1.3em;
  margin-bottom: 10px;
}
dl.dl_flow dt {
  width: 30px;
  height: 30px;
  line-height: 30px;
  float: left;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #edb41c;
}
dl.dl_flow dd {
  width: calc(100% - 40px);
  margin-top: 5px;
  float: right;
}
@media screen and (max-width: 420px) {
  dl.dl_flow dd {
    margin-top: 0;
  }
  .img01 {
    width: 260px;
  }
}

/* お問合せフォーム */
input#submit_button {
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 0, 2px, rgba(0, 0, 0, 0.5);
  background-color: #4ca381;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7AC1A5', endColorstr='#FF4CA381');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhYzFhNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRjYTM4MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7ac1a5), color-stop(100%, #4ca381));
  background-image: -moz-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: -webkit-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: linear-gradient(#7ac1a5 0%, #4ca381 100%);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
input#submit_button:active {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
input#submit_button:hover {
  background-color: #4ca381;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7AC1A5', endColorstr='#FF4CA381');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhYzFhNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRjYTM4MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7ac1a5), color-stop(100%, #4ca381));
  background-image: -moz-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: -webkit-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: linear-gradient(#7ac1a5 0%, #4ca381 100%);
}

input[name="next"] {
  width: 22%;
  float: right;
  margin: 15px 25% 0 0;
  padding: 10px 20px;
  border: none;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 0, 2px, rgba(0, 0, 0, 0.5);
  background-color: #4ca381;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7AC1A5', endColorstr='#FF4CA381');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhYzFhNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRjYTM4MSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7ac1a5), color-stop(100%, #4ca381));
  background-image: -moz-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: -webkit-linear-gradient(#7ac1a5 0%, #4ca381 100%);
  background-image: linear-gradient(#7ac1a5 0%, #4ca381 100%);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
input[name="next"]:active {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

input[name="prev"] {
  width: 22%;
  float: left;
  margin: 15px 0 0 25%;
  padding: 10px 20px;
  border: none;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: 0, 2px, rgba(0, 0, 0, 0.5);
  background-color: #edb41c;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF3CB63', endColorstr='#FFEDB41C');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzY2I2MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VkYjQxYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3cb63), color-stop(100%, #edb41c));
  background-image: -moz-linear-gradient(#f3cb63 0%, #edb41c 100%);
  background-image: -webkit-linear-gradient(#f3cb63 0%, #edb41c 100%);
  background-image: linear-gradient(#f3cb63 0%, #edb41c 100%);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
input[name="prev"]:active {
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

form textarea {
  width: 100% !important;
}

/* z-index 設定 */
#main_wrapp {
  z-index: 0;
}

header {
  z-index: 1;
}

.header_nav &gt; ul &gt; li &gt; ul, .bg_tr, .bg_tl, .bg_br, .bg_bl {
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .header_nav ul {
    z-index: 3;
  }
}
#mobile_menu-btn {
  z-index: 4;
}


/**********************************
Q＆A */
.Qa-wrapper{ display: flex;
}

.Qa-Box {
  width: 70%;
  margin: 0 auto;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 5px 0;
  padding: 5px;
}

.Qa-Box .Qa dt {
  background: #F5F5F5;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 5px;
  width: 100%;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699B7;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #D65556;
  width: 2em;
  height: 2em;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}
</pre></body></html>