@charset "UTF-8";
/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
@include
//////////////////////////////////　*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
ボーダー $border-gray: 1px solid #808080;
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after {
  display: block;
  content: "";
  clear: both;
}

html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

/*　////////////////////////////////
テキスト
//////////////////////////////////　*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }

  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #528dbf;
  color: #fff;
}
::selection {
  background: #528dbf;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover, a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #000;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background-color: #b34747;
  color: #fff;
  padding: 10px;
  display: inline-block;
  font-family: "Century Gothic", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic;
}

/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container02 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1080px;
}

@media (min-width: 1220px) {
  .container {
    width: 1200px;
  }

  .container02 {
    width: 1080px;
  }
}
.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.txet-center {
  text-align: center;
}

.section-info ul.news-list li {
  border-bottom: 1px solid #999999;
  padding-bottom: 15px;
}
.section-info .title {
  font-size: 1.8rem;
}
.section-info .data {
  font-size: 1.3rem;
  color: #F7931E;
}
.section-info .text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.more-btnA {
  display: inline-block;
  text-align: left;
}
.more-btnA a {
  font-weight: 400;
  padding: 8px 10px;
  margin: 10px 0;
  color: #fff;
  display: inline-block;
  line-height: 1.6;
  background-color: #b34747;
  position: relative;
  border: solid 1px #b34747;
  width: 260px;
  font-family: "Noto Sans JP", sans-serif;
}
.more-btnA .arrow {
  display: inline-block;
  float: right;
  color: #fff;
  margin-left: 20px;
}
.more-btnA a:hover {
  border-radius: 100px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.online-link {
  display: block;
  text-align: center;
  padding: 0 15px;
}
.online-link a {
  position: relative;
  font-weight: 400;
  padding: 20px 40px;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  background-image: url("../img/wave_bk.jpg");
  font-size: 2rem;
  font-weight: 100;
  background-size: 100px;
}
.online-link a span {
  color: #e8a24d;
  font-size: 1.4rem;
  margin: 10px 0 0 0;
  vertical-align: 3px;
  display: block;
}
.online-link a i {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .online-link a {
    padding: 30px 70px 30px 40px;
    font-size: 2.4rem;
  }
  .online-link a span {
    display: inline-block;
    margin: 0 0 0 40px;
  }
  .online-link a i {
    top: 50%;
    right: 3%;
  }
}

.more-btnB {
  padding: 0px;
}
.more-btnB a {
  padding: 10px 40px;
  background-color: #b34747;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
.more-btnB a i {
  color: #fff;
  right: 3%;
  font-size: 1.8rem;
}
.more-btnB a:hover {
  color: #b34747;
  border: 3px solid #b34747;
  background-color: #fff;
}
.more-btnB a:hover i {
  color: #b34747;
}

.more-btnC {
  text-align: center;
}
.more-btnC a {
  color: #528dbf;
}
.more-btnC a i {
  margin-left: 10px;
}

ul.list-styleA li {
  position: relative;
  padding-left: 20px;
}
ul.list-styleA li:before {
  color: #e8a24d;
  margin-right: 5px;
  content: "■";
  font-size: 1.6rem;
  position: absolute;
  left: 0px;
  top: 0px;
}

.dotted-line {
  border-bottom: 3px dotted #f2f2f2;
}

.under-line {
  border-bottom: 1px solid #f2f2f2;
}

.table-a table {
  width: 100%;
}
.table-a table tbody td, .table-a table tbody th {
  border-collapse: collapse;
}
.table-a table tbody th {
  background-color: #528dbf;
  display: block;
  border-top: 1px solid #b34747;
  border-bottom: 1px solid #b34747;
  color: #fff;
  font-weight: 400;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody th {
    width: 100%;
    display: table-cell;
    width: 30%;
    border-right: 1px solid #b34747;
  }
}
.table-a table tbody td {
  vertical-align: top;
  display: block;
  border-top: none;
  padding: 10px;
}
@media (min-width: 768px) {
  .table-a table tbody td {
    padding: 10px 10px 10px 40px;
    display: table-cell;
    border-top: 1px solid #b34747;
    border-bottom: 1px solid #b34747;
  }
}
.table-a table tr:last-child {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .table-a table tr:last-child {
    border-bottom: name;
  }
}

/*
<div class="table-a"><table>
<tbody>
<tr>
<th></th>
<td></td>
</tr>
</tbody>
</table></div>
*/
.table-styleA {
  margin: 0 auto;
}
@media (min-width: 987px) {
  .table-styleA {
    width: 80%;
    border-bottom: 1px solid #b34747;
  }
}
.table-styleA dl, .table-styleA dt, .table-styleA dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl {
  background: #e9efff;
}
.table-styleA dl dt, .table-styleA dl dd {
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt, .table-styleA dl dd {
    border-top: 1px solid #b34747;
    font-size: 1.6rem;
  }
}
.table-styleA dl dt {
  width: 100%;
  float: none;
  padding: 5px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
  color: #b34747;
}
@media (min-width: 768px) {
  .table-styleA dl dt {
    text-align: left;
    width: 27%;
    float: left;
    padding: 10px 0 0 20px;
  }
}
.table-styleA dl dd {
  background: #fff;
  margin-left: 0;
  padding: 10px 0;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .table-styleA dl dd {
    margin-left: 27%;
    border-left: 1px solid #e7f4ff;
    padding: 10px 0 10px 20px;
  }
}
.table-styleA dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*
<div class="table-styleA">
<dl>
<dt></dt>
<dd></dd>
</dl>
</div>
*/
/*　////////////////////////////////
form共通
//////////////////////////////////　*/
.form-closed {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form-closed {
    text-align: center;
  }
}
.form-closed h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}
@media (min-width: 768px) {
  .form-closed h3 {
    font-size: 3.4rem;
  }
}
.form-closed p {
  font-size: 1.6rem;
}
@media (min-width: 987px) {
  .form-closed p {
    font-size: 2.4rem;
    line-height: 2.4;
  }
}

#form .mw_wp_form_complete {
  background-color: #ffb;
  padding: 20px;
  margin-bottom: 40px;
}
#form .form {
  margin-bottom: 60px;
}
#form .form .table-styleA {
  margin-bottom: 50px;
}
#form .form .table-styleA dd.address input {
  margin: 10px 0;
}
#form .form dd {
  vertical-align: middle;
}
#form .form dd input[type=checkbox] {
  width: auto;
}
#form .form dd input[type=radio] {
  width: auto;
}
#form .required-text {
  font-size: 1.2rem;
}
#form .required-text span.required {
  margin: 0 10px 20px 0;
}
#form span.required {
  background-color: #f7931e;
  color: #fff;
  padding: 5px 6px;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
#form .table-styleA dd {
  padding: 10px 10px 10px 20px;
}
#form .table-styleA span.required {
  margin-left: 10px;
}
#form .table-styleA input, #form .table-styleA textarea {
  width: 80%;
  font-size: 1.6rem;
  line-height: 1.6;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}
#form .table-styleA ::-webkit-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-moz-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA :-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::-ms-input-placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .table-styleA ::placeholder {
  color: #808080;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
#form .privacy {
  overflow-y: scroll;
  height: 200px;
  background-color: #eee;
  padding: 20px;
  border: 1px solid #c5c5c5;
}
#form .privacy dl dt {
  margin-bottom: 10px;
  font-size: 16px;
}
#form .privacy dl dd {
  margin-bottom: 30px;
}
#form .form-button {
  text-align: center;
  margin: 30px 0 0 0;
}
#form .form-button input[type=submit] {
  background-color: #f2f2f2;
  color: #fff;
  border-radius: 0px;
  padding: 10px 50px;
  font-size: 24px;
  border: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#form .form-button input[type=submit]:hover {
  background-color: #b34747;
  border-radius: 100px;
}
#form .tel {
  font-size: 2.2rem;
}
@media (min-width: 1220px) {
  #form .tel {
    font-size: 3rem;
  }
}
#form .tel img {
  width: 36px;
  margin-right: 10px;
}
@media (min-width: 1220px) {
  #form .tel img {
    width: 43px;
  }
}
#form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}

.all-wrapper {
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*------------------------
  ページナビ
  -------------------------*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  header
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  footer
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  top
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  facility
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  home-care
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  welfare-taxi
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  recruit
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  contact
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  news
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  entry-content
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////
  info
  //////////////////////////////////　*/
}
.all-wrapper p {
  line-height: 3rem;
}
.all-wrapper dl dt, .all-wrapper dl dd {
  font-weight: bold;
}
.all-wrapper tr th, .all-wrapper tr td {
  font-weight: bold;
}
.all-wrapper ul li {
  font-weight: bold;
}
.all-wrapper h2 {
  border: none;
  margin-bottom: 40px;
}
.all-wrapper h4 {
  border-bottom: 1px solid #b34747;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.all-wrapper .midashi {
  border-color: #b34747;
}
@media (max-width: 768px) {
  .all-wrapper .row {
    margin-bottom: -30px;
  }
  .all-wrapper .row div {
    margin-bottom: 30px;
  }
}
.all-wrapper .btnA a {
  width: 300px;
  border-radius: 5px;
  background-color: #528dbf;
  border-color: #528dbf;
  margin: 40px 0 20px;
}
@media (max-width: 768px) {
  .all-wrapper .btnA a {
    width: 270px;
  }
}
.all-wrapper .btnA a .thinright {
  position: relative;
}
.all-wrapper .btnA a .thinright::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 20px;
  width: 30px;
  height: 1px;
  background: #fff;
}
.all-wrapper .btnA a .thinright::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 42px;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: transparent transparent #fff #fff;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.all-wrapper .btnA a:hover .thinright::before {
  background: #528dbf;
}
.all-wrapper .btnA a:hover .thinright::after {
  border-color: transparent transparent #528dbf #528dbf;
}
.all-wrapper .btnA a:hover {
  color: #528dbf;
  opacity: 0.9;
}
.all-wrapper .tel-contact {
  text-align: center;
}
.all-wrapper .tel-contact p {
  margin: 50px 0 10px;
  font-weight: bold;
  font-size: 2.4rem;
  color: #000;
}
.all-wrapper .tel-contact .tel-btn {
  display: block;
  margin: 30px 15px 20px;
}
.all-wrapper .tel-contact .tel-btn a {
  padding: 10px 20px;
  margin: 10px 0;
  border: 3px solid #b34747;
  border-radius: 30px;
  font-size: 1.8rem;
}
.all-wrapper .tel-contact .tel-btn a:hover {
  border-radius: 0;
  background-color: #b34747;
  color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.all-wrapper .tel-contact .tel-btn a img {
  display: inline-block;
  max-height: 20px;
  width: auto;
  margin: 0 10px 5px 0;
}
.all-wrapper .tel-contact .btnA {
  display: inline-block;
  margin: 0 15px;
}
.all-wrapper a.top-tel {
  display: inline-block;
  pointer-events: none;
  font-size: 2.5rem;
  font-weight: bold;
  color: #b34747;
}
@media (max-width: 768px) {
  .all-wrapper a.top-tel {
    pointer-events: initial;
    display: none;
  }
}
.all-wrapper .table-base table tbody tr th {
  width: 50%;
  text-align: left;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  .all-wrapper .table-base table tbody tr th, .all-wrapper .table-base table tbody tr td {
    width: 100%;
    text-align: center;
  }
}
.all-wrapper .pagenavi {
  margin: 30px auto;
}
.all-wrapper .pagenavi .wp-pagenavi a {
  color: #528dbf;
  border-color: #528dbf;
}
.all-wrapper .pagenavi .wp-pagenavi .current {
  padding: 8px 12px;
  color: #fff;
}
.all-wrapper header.header {
  border-color: #b34747;
}
.all-wrapper header.header h1 {
  background-color: #b34747;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .all-wrapper header.header h1 {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .all-wrapper header.header h1 {
    padding: 7px 0;
    font-size: 1.2rem;
  }
}
.all-wrapper header.header .tel-right {
  text-align: right;
  margin-bottom: -15px;
}
.all-wrapper header.header .inner {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .all-wrapper header.header .inner {
    margin-bottom: 20px;
  }
}
.all-wrapper header.header .inner .head-logo {
  display: inline-block;
  float: left;
}
@media (max-width: 768px) {
  .all-wrapper header.header .inner .head-logo {
    float: initial;
  }
}
.all-wrapper header.header .inner .head-logo .site-name a {
  text-align: left;
}
.all-wrapper header.header .inner .head-logo .site-name a:hover p.block {
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.all-wrapper header.header .inner .head-logo .site-name a img {
  vertical-align: bottom;
  margin-right: 10px;
  max-width: 48px;
  height: auto;
}
.all-wrapper header.header .inner .head-logo .site-name a p.block {
  display: block;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: -10px;
}
.all-wrapper header.header .inner .head-logo .site-name a p {
  font-family: "ヒラギノ丸ゴ StdN", "Hiragino Maru Gothic StdN", "HiraMaruProN-W6", "ヒラギノ丸ゴ Pro W6", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN W4", "ヒラギノ丸ゴ Pro W6", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  text-align: center;
  font-size: 3.9rem;
  font-weight: bolder;
  color: #b34747;
}
.all-wrapper header.header .inner .head-logo .site-name a p span {
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
}
.all-wrapper header.header .inner .head-logo .site-name a p span:hover {
  opacity: 1;
}
.all-wrapper header.header .inner .header-menu {
  display: inline-block;
  float: right;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .all-wrapper header.header .inner .header-menu .sp-nav {
    display: inline;
  }
}
@media (max-width: 768px) {
  .all-wrapper header.header .inner .header-menu .pc-nav {
    display: none;
  }
}
.all-wrapper header.header .inner .header-menu .pc-nav ul li a {
  padding: 10px 15px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1220px) {
  .all-wrapper header.header .inner .header-menu .pc-nav ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 987px) {
  .all-wrapper header.header .inner .header-menu .pc-nav ul li a {
    padding: 10px 7px;
  }
}
@media (max-width: 800px) {
  .all-wrapper header.header .inner .header-menu .pc-nav ul li a {
    font-size: 1.3rem;
  }
}
.all-wrapper header.header .inner .header-menu .pc-nav ul li a:hover {
  background-color: #fff;
  color: #b34747;
  border-bottom: 1px solid #b34747;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.all-wrapper header.header .main-visual-top {
  border-color: #b34747;
  border-bottom: none;
  background: #fffae6;
}
@media (max-width: 987px) {
  .all-wrapper header.header .main-visual-top .container {
    padding: 0;
  }
}
.all-wrapper header.header .main-visual-top img {
  width: 100%;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li a, .all-wrapper .breadcrumb-wrap .breadcrumb li span {
  font-weight: bold;
}
.all-wrapper .move-contact {
  padding: 30px;
  background-color: #fbf0f0;
  text-align: center;
}
@media (max-width: 480px) {
  .all-wrapper .move-contact {
    padding: 15px;
  }
}
.all-wrapper .move-contact p {
  margin-bottom: 10px;
}
.all-wrapper .move-contact p.fax {
  font-size: 2.5rem;
  font-weight: bold;
  color: #b34747;
}
@media (max-width: 768px) {
  .all-wrapper .move-contact .top-tel {
    display: inline-block;
  }
}
.all-wrapper .move-contact .btnA a {
  margin: 15px 0 0;
}
.all-wrapper footer.footer {
  background-color: #f2f2f2;
  border-top: none;
}
.all-wrapper footer.footer .footerbox h4 {
  border-color: #b34747;
}
.all-wrapper footer.footer .footerbox ul li a {
  font-weight: bold;
}
.all-wrapper footer.footer .footerbox a.top-tel {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .all-wrapper footer.footer .footerbox a.top-tel {
    display: inline-block;
    font-size: 2rem;
  }
}
.all-wrapper footer.footer .footerbox p.honsya {
  margin-bottom: 20px;
}
.all-wrapper footer.footer .copyright {
  padding: 10px 0;
  background: #543232;
}
.all-wrapper footer.footer .copyright p {
  background: #543232;
  border: none;
}
.all-wrapper #top #top-info-a {
  border: none;
}
.all-wrapper #top #top-info-a li span {
  color: #e8a24d;
}
@media (max-width: 768px) {
  .all-wrapper #top #first-sec {
    margin-top: 30px;
  }
}
.all-wrapper #top #first-sec .btnA a {
  background-color: #e8a24d;
  border-color: #e8a24d;
}
.all-wrapper #top #first-sec .btnA a:hover {
  color: #e8a24d;
  background: #fff;
}
.all-wrapper #top #first-sec .btnA a:hover .thinright::before {
  background: #e8a24d;
}
.all-wrapper #top #first-sec .btnA a:hover .thinright::after {
  border-color: transparent transparent #e8a24d #e8a24d;
}
.all-wrapper #top .sp-tel {
  text-align: center;
}
.all-wrapper #top .sp-tel a.top-tel {
  float: initial;
  display: none;
}
@media (max-width: 768px) {
  .all-wrapper #top .sp-tel a.top-tel {
    display: inline-block;
    margin-top: 30px;
  }
}
.all-wrapper #top .section01 dl {
  margin: 15px 0;
}
.all-wrapper #top .section01 dl dt, .all-wrapper #top .section01 dl dd {
  font-weight: bold;
}
.all-wrapper #top .section01 dl dt {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #b34747;
}
.all-wrapper #top .section01 dl dd {
  margin-bottom: 10px;
}
.all-wrapper #top .section03 .row {
  margin-top: 20px;
}
.all-wrapper #top .section03 ul {
  margin-top: 10px;
}
.all-wrapper #top .section03 ul li:before {
  content: "●";
  color: #d46e6e;
  margin-right: 5px;
}
.all-wrapper #top .section03 .naisou {
  margin-top: 40px;
}
.all-wrapper #top .section03 .naisou .row div {
  margin-bottom: 20px;
}
.all-wrapper #top .section03 .naisou .row div p {
  text-align: center;
  margin-top: 5px;
}
.all-wrapper #top .move-rec {
  background-color: #fff;
  border: 2px solid #b34747;
}
.all-wrapper #facility .section01 dd img {
  max-height: 16px;
  width: auto;
}
.all-wrapper #facility .section02 dl dd h4 {
  color: #b34747;
  border: none;
  font-size: 1.8rem;
  padding-bottom: 0;
  margin: 10px 0;
}
.all-wrapper #facility .section02 .const {
  margin-top: 40px;
}
.all-wrapper #facility .section02 .const h4 {
  border: none;
  margin-bottom: 10px;
}
.all-wrapper #facility .section02 .const .const-wrap {
  background: url("/img/hakodate.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 70px 15px 30px;
  text-align: center;
}
.all-wrapper #facility .section02 .const .const-wrap p.const-title {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: bolder;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 80px 0 180px;
  text-align: center;
}
@media (max-width: 768px) {
  .all-wrapper #facility .section02 .const .const-wrap p.const-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .all-wrapper #facility .section02 .const .const-wrap p.const-title {
    font-size: 2.2rem;
    margin: 40px 0 100px;
  }
}
.all-wrapper #facility .section02 .const .const-wrap .row div p {
  background-color: rgba(255, 255, 255, 0.8);
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .all-wrapper #facility .section02 .const .const-wrap .row div p {
    text-align: left;
    padding: 5px;
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .all-wrapper #facility .section02 .const .const-wrap .row div p {
    font-size: 1.2rem;
  }
}
.all-wrapper #home-care .section01 h4 {
  margin-bottom: 25px;
}
.all-wrapper #home-care .section01 .box {
  margin-top: 60px;
  margin-bottom: 60px;
}
.all-wrapper #home-care .section01 .box div img {
  display: block;
  margin: 30px auto;
  max-height: 300px;
  width: auto;
}
.all-wrapper #home-care .section01 dl dt, .all-wrapper #home-care .section01 dl dd {
  line-height: 3rem;
}
.all-wrapper #home-care .section01 dl dt:before {
  content: "■";
  color: #b34747;
  margin-right: 5px;
}
.all-wrapper #home-care .section02 .txt18 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.all-wrapper #home-care .section02 .txt18 span {
  color: #d46e6e;
}
.all-wrapper #home-care .section02 .box {
  margin-bottom: 60px;
}
.all-wrapper #home-care .section02 .box .table-base {
  margin-bottom: 20px;
}
.all-wrapper #home-care .section03 {
  background-color: #fffae6;
  text-align: center;
  padding: 30px 15px;
}
@media (max-width: 768px) {
  .all-wrapper #home-care .section03 {
    text-align: left;
  }
}
.all-wrapper #home-care .recruit h4.sub {
  border: none;
  color: #b34747;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.all-wrapper #welfare-taxi .section01 ul li, .all-wrapper #welfare-taxi .section02 ul li {
  line-height: 3.2rem;
}
.all-wrapper #welfare-taxi .section01 ul li:before, .all-wrapper #welfare-taxi .section02 ul li:before {
  content: "●";
  color: #d46e6e;
  margin-right: 5px;
}
.all-wrapper #welfare-taxi .box {
  margin-bottom: 60px;
}
.all-wrapper #welfare-taxi .box #row01 {
  margin-bottom: 0;
}
.all-wrapper #welfare-taxi .box #row01 div {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .all-wrapper #welfare-taxi .box #row02 {
    margin-bottom: -60px;
  }
  .all-wrapper #welfare-taxi .box #row02 div {
    margin-bottom: 60px;
  }
}
.all-wrapper #welfare-taxi .section02 .table-base tr th {
  width: 50%;
}
.all-wrapper #welfare-taxi .section02 .table-base tr td {
  width: 25%;
  border-left: none;
  border-right: none;
  padding: 10px 20px;
}
.all-wrapper #welfare-taxi .section02 .table-base tr td#fee {
  text-align: right;
  border-right: 1px solid #a3a4a5;
}
@media (max-width: 768px) {
  .all-wrapper #welfare-taxi .section02 .table-base tr th, .all-wrapper #welfare-taxi .section02 .table-base tr td, .all-wrapper #welfare-taxi .section02 .table-base tr td#fee {
    display: block;
    width: 100%;
    border-right: 1px solid #a3a4a5;
    text-align: center;
  }
}
.all-wrapper #welfare-taxi .section02 ul {
  margin: 30px 0;
}
.all-wrapper #welfare-taxi .section02 p.ticket {
  text-align: center;
  font-size: 2rem;
  color: #528dbf;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .all-wrapper #welfare-taxi .section02 p.ticket {
    text-align: left;
  }
}
.all-wrapper #recruit .mb30 {
  margin-bottom: 30px;
}
.all-wrapper #recruit h5 {
  font-size: 2rem;
  color: #b34747;
  margin: 30px 0 10px;
}
.all-wrapper .move-rec {
  text-align: center;
  padding: 30px;
  background-color: #fbf0f0;
}
@media (max-width: 768px) {
  .all-wrapper .move-rec p {
    text-align: left;
  }
}
.all-wrapper .move-rec h3 {
  font-size: 2.2rem;
  color: #b34747;
}
.all-wrapper .move-rec .btnA a {
  margin: 20px 0 0;
}
.all-wrapper #contact .tel-area {
  background-color: #fbf0f0;
  padding: 20px;
}
.all-wrapper #contact .tel-area a {
  color: #b34747;
  font-size: 3rem;
}
@media (max-width: 480px) {
  .all-wrapper #contact .tel-area a {
    font-size: 2.6rem;
  }
}
.all-wrapper #contact .tel-contact {
  margin-bottom: 60px;
}
.all-wrapper #contact .tel-contact p {
  font-weight: normal;
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .all-wrapper #contact .tel-contact p {
    text-align: left;
  }
}
.all-wrapper #contact .tel-contact p span#blue {
  font-size: 2rem;
  color: #b34747;
}
.all-wrapper #contact .tel-contact p span {
  font-size: 1.8rem;
  font-weight: bold;
}
.all-wrapper #contact .tel-contact .tel-btn {
  margin-top: 20px;
}
.all-wrapper #contact p.hissu {
  padding: 15px 0 5px;
}
.all-wrapper #contact .table-styleA {
  margin-bottom: 80px;
}
.all-wrapper #contact .table-styleA dl dd.kubun input {
  width: initial;
}
.all-wrapper #contact h4 {
  color: #000;
  font-size: 2.4rem;
  border: none;
  margin-bottom: 30px;
}
.all-wrapper #contact span.mwform-checkbox-field-text {
  font-weight: bold;
}
.all-wrapper #primary ul.post-categories li a {
  background-color: #b34747;
}
.all-wrapper #secondary .sidebar h2.widget-title {
  background-color: #d46e6e;
  color: #fff;
}
.all-wrapper #secondary .sidebar .widget_search input.search-submit {
  background-color: #b34747;
}
.all-wrapper #secondary .sidebar .calendar_wrap .wp-calendar-table td a {
  background-color: #b34747;
}
.all-wrapper #secondary .sidebar .calendar_wrap .wp-calendar-table td#today {
  background-color: #528dbf;
}
.all-wrapper .col2 h1, .all-wrapper .col2 h2, .all-wrapper .col2 h3, .all-wrapper .col2 h4, .all-wrapper .col2 h5 {
  text-align: left;
  border: none;
  margin-bottom: 15px;
  font-weight: bold;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 0;
  max-width: initial;
}
.all-wrapper .col2 h1 {
  font-size: 3rem;
}
.all-wrapper .col2 h2 {
  font-size: 2.6rem;
}
.all-wrapper .col2 h3 {
  font-size: 2.2rem;
}
.all-wrapper .col2 h4 {
  font-size: 1.8rem;
}
.all-wrapper .col2 h5 {
  font-size: 1.6rem;
}
.all-wrapper .col2 ul, .all-wrapper .col2 ol {
  margin: 20px 0;
}
.all-wrapper .col2 ul li {
  list-style: disc;
  margin-left: 25px;
}
.all-wrapper .col2 ol li {
  margin-left: 25px;
}
.all-wrapper .col2 img {
  margin: 20px 0;
}
.all-wrapper .col2 h3.midashi {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #b34747;
  border-left: 10px solid #b34747;
  padding: 5px 0 5px 10px;
  margin-bottom: 30px;
}
.all-wrapper #primary {
  margin-bottom: 60px;
}
.all-wrapper #primary .main .entry-content h1, .all-wrapper #primary .main .entry-content h2, .all-wrapper #primary .main .entry-content h3, .all-wrapper #primary .main .entry-content h4, .all-wrapper #primary .main .entry-content h5 {
  text-align: left;
  border: none;
  margin-bottom: 15px;
  font-weight: bold;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 0;
  max-width: initial;
}
.all-wrapper #primary .main .entry-content h1 {
  font-size: 3rem;
}
.all-wrapper #primary .main .entry-content h2 {
  font-size: 2.6rem;
}
.all-wrapper #primary .main .entry-content h3 {
  font-size: 2.2rem;
}
.all-wrapper #primary .main .entry-content h4 {
  font-size: 1.8rem;
}
.all-wrapper #primary .main .entry-content h5 {
  font-size: 1.6rem;
}
.all-wrapper #primary .main .entry-content ul, .all-wrapper #primary .main .entry-content ol {
  margin: 20px 0;
}
.all-wrapper #primary .main .entry-content ul li {
  list-style: disc;
  margin-left: 25px;
}
.all-wrapper #primary .main .entry-content ol li {
  margin-left: 25px;
}
.all-wrapper #primary .main .entry-content img {
  margin: 20px 0;
}
.all-wrapper #primary .main .nav-links .nav-next a, .all-wrapper #primary .main .nav-links .nav-previous a {
  font-weight: bold;
}
.all-wrapper .news-top {
  text-align: center;
}
.all-wrapper .news-top h3.nt {
  border: none;
  font-size: 2.2rem;
  font-weight: bold;
  color: #b34747;
}
.all-wrapper .list-news-wrap p.click {
  margin: 10px 0;
  text-align: left;
  font-size: 1.5rem;
}