@charset "UTF-8";
/* #Default
   -------------------------------------------------------------------------- */
/**
 * ブラウザの持っているスタイルの一部リセット
 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

ul, ol {
  list-style: none;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

/* ===================
画像余白クリア
===================*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

/* ===================
共通変数
===================*/
/* ===================
ブレークポイント
===================*/
/* ===================
Flexbox
===================*/
/* #Base
   -------------------------------------------------------------------------- */
/**
* Baseレイヤーにはプロジェクトにおける、基本的なベーススタイルを定義します。
* 要素セレクタや属性セレクタなど、詳細度はできるかぎり低く保っておきます。
* 基本的にclass属性は使用しません。
*/
html {
  /**
   * `padding`と`border`を`width`に含めます。
   * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  color: #000;
}

#scroll_area_Off {
  overflow: hidden;
}

/* ===================
リンク
===================*/
a {
  outline: none;
}

a:link {
  text-decoration: none;
  color: #000;
}

a:visited {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
  color: #000;
}

a:active {
  text-decoration: none;
  color: #000;
}

a:hover img {
  opacity: 0.7;
}

/* #Header
-------------------------------------------------------------------------- */
/*doc
*/
header * {
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .h_main {
    padding: 30px 0;
  }
}
.h_main > div {
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .h_main > div {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .h_main > div {
    flex-wrap: wrap;
  }
}

.sp_logo_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sp_logo_wrap {
    margin-top: 10px;
    width: 100%;
  }
}

.h_others {
  padding: 10px;
  text-align: right;
  vertical-align: middle;
  color: #9d7353;
  font-size: 1.3rem;
  line-height: 1.5 !important;
}
.h_others img {
  vertical-align: middle;
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
  .h_others {
    width: 100%;
  }
}
.h_others a:link {
  color: #9d7353;
}
.h_others a:visited {
  color: #9d7353;
}
.h_others a:hover {
  color: #9d7353;
}
.h_others a:active {
  color: #9d7353;
}
.h_others a {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.4rem;
}
@media print, screen and (min-width: 768px) {
  .h_others a {
    pointer-events: none;
    margin-bottom: 10px;
  }
}
.h_others a span {
  vertical-align: middle;
}

nav {
  position: relative;
  z-index: 99;
  border-top: 1px solid #f2cebf;
  border-bottom: 2px solid #f2cebf;
}

@media print, screen and (min-width: 768px) {
  .gnv {
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    text-align: center;
  }
  .gnv > li {
    flex-grow: 1;
    padding: 1px;
    border-right: 1px solid #f2cebf;
  }
  .gnv > li:first-child {
    border-left: 1px solid #f2cebf;
  }
  .gnv dl {
    position: relative;
  }
  .gnv dd {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 100%;
    white-space: nowrap;
    font-size: 1.4rem;
    text-align: left;
    background-color: #c6aa95;
  }
  .gnv dd a:link {
    color: #fff;
  }
  .gnv dd a:visited {
    color: #fff;
  }
  .gnv dd a:hover {
    color: #fff;
  }
  .gnv dd a:active {
    color: #fff;
  }
  .gnv dd li {
    border-bottom: 1px solid #fff;
  }
  .gnv dd a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    vertical-align: middle;
  }
  .gnv dd a:hover {
    text-decoration: none;
    background-color: #b5937a;
  }
  .gnv dd a:before {
    display: inline-block;
    content: "▶︎";
    vertical-align: middle;
    font-size: 10px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .gnv {
    display: none;
    position: relative;
    z-index: 101;
  }
  .gnv a, .gnv .gnv-close {
    display: block;
    padding: 15px;
    width: 100%;
    height: 100%;
  }
  .gnv a:hover {
    background-color: #f6e8dd;
    text-decoration: none;
  }
  .gnv li {
    border-top: 1px solid #b5937a;
  }
  .gnv dd li {
    border: none;
  }
  .gnv dd a {
    padding-left: 30px;
  }
  .gnv .open {
    display: block;
  }
  .gnv p {
    margin: 10px;
  }
}

.gnv_btn {
  background-color: transparent;
  display: block;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  appearance: none;
  font-size: 1rem;
}
.gnv_btn img {
  margin-bottom: 3px;
}
@media print, screen and (min-width: 768px) {
  .gnv_btn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .gnv_btn {
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .gnv_ttl {
    display: block;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.4rem;
  }
  .gnv_ttl:hover {
    background-color: #f6e8dd;
    text-decoration: none;
  }
  .gnv_ttl.is-current {
    color: #e7330c;
  }
  .gnv_ttl.is-current:link {
    color: #e7330c;
  }
  .gnv_ttl.is-current:visited {
    color: #e7330c;
  }
  .gnv_ttl.is-current:active {
    color: #e7330c;
  }
  .gnv_ttl.is-current:hover {
    color: #e7330c;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  .gnv_ttl {
    display: block;
    padding: 15px;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .gnv_ttl:hover {
    background-color: #f6e8dd;
  }
}

.gnv_close {
  background-color: #b5937a;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .gnv_close {
    display: none;
  }
}

/* #Footer
   -------------------------------------------------------------------------- */
/*doc

*/
footer {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  footer {
    margin-top: 60px;
  }
}
footer ul li {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  footer ul li {
    padding: 10px;
    line-height: 2;
  }
}
@media only screen and (max-width: 767px) {
  footer ul li {
    padding: 5px 10px;
  }
}

.f_logo {
  padding: 15px 0;
  background-color: #f7ede5;
  font-size: 1.3rem;
}
.f_logo h2 {
  margin-bottom: 10px;
}
.f_logo span {
  display: inline-block;
}

.f_copyright {
  position: relative;
  height: 58px;
  background-color: #e83825;
}
@media only screen and (max-width: 767px) {
  .f_copyright {
    padding-right: 58px;
  }
}
.f_copyright small {
  display: inline-block;
  line-height: 58px;
  vertical-align: middle;
  color: #fff;
  font-size: 1.3rem;
}

#pagetop {
  position: absolute;
  right: 0;
  top: 0;
  width: 58px;
  height: 58px;
  line-height: 58px;
}

/* #Content
   -------------------------------------------------------------------------- */
/*doc

*/
#content {
  min-height: 55vh;
}

.content_wrapper {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .content_wrapper {
    display: flex;
  }
}
.content_wrapper main {
  order: 1;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .content_wrapper aside {
    order: 0;
    flex-shrink: 0;
    width: 200px;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .content_wrapper aside {
    margin-top: 60px;
  }
}
.content_wrapper aside ul {
  margin-bottom: 15px;
}
.content_wrapper aside li a {
  display: block;
  margin-bottom: 2px;
  padding: 10px;
  background-color: #e5e5e5;
  border-left: 3px solid #e7330c;
  line-height: 1.25;
}
.content_wrapper aside .calendar {
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
}
.content_wrapper aside .calendar > p {
  line-height: 2;
  background-color: #e5e5e5;
  text-align: center;
}
.content_wrapper aside .calendar > div {
  padding: 5px;
}
.content_wrapper aside .calendar > div p {
  font-size: 1.2rem;
}
.content_wrapper aside .calendar a:link {
  color: #00a0e9;
}
.content_wrapper aside .calendar a:visited {
  color: #00a0e9;
}
.content_wrapper aside .calendar a:hover {
  color: #00a0e9;
}
.content_wrapper aside .calendar a:active {
  color: #00a0e9;
}
.content_wrapper aside .bnr a {
  display: block;
  margin-bottom: 10px;
}
.content_wrapper aside .calendar_table {
  margin: 5px auto;
}
.content_wrapper aside .calendar_table th, .content_wrapper aside .calendar_table td {
  padding: 4px;
}
.content_wrapper aside .calendar_table td {
  font-size: 1.2rem;
}

.is-hide {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99999;
}
.loading::before {
  content: "";
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-top: -15px;
  margin-left: -15px;
  background: white;
}
.loading::after {
  content: "";
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 4px solid #60ABB9;
  border-right: 4px solid white;
  animation: rotate 1s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -----------------------------------------------------------------------------
   #Box
   -------------------------------------------------------------------------- */
/*
  Box系(display,width,height,margin,padding,float等)の汎用クラス
*/
/* -----------------------------------------------------------------------------
   #Display
   -------------------------------------------------------------------------- */
.u-dsp_none {
  display: none !important;
}

.u-dsp_block {
  display: block !important;
}

.u-dsp_inline-block {
  display: inline-block !important;
}

.u-dsp_tbl {
  display: table !important;
}

.u-dsp_tbl-cell {
  display: table-cell !important;
}

.u-flx_wrap {
  display: -ms-flexbox !important;
  /*--- IE10 ---*/
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: wrap !important;
  /* Safari */
  flex-wrap: wrap !important;
}

.u-flx_nowrap {
  display: -ms-flexbox !important;
  /*--- IE10 ---*/
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-wrap: nowrap !important;
  /* Safari */
  flex-wrap: nowrap !important;
}

.u-flx_space-between {
  display: -ms-flexbox !important;
  /*--- IE10 ---*/
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
}

.u-flx_align-item-center {
  -webkit-align-items: center !important;
  align-items: center !important;
}

@media print, screen and (min-width: 768px) {
  .u-flx_nowrap_pc {
    display: -ms-flexbox !important;
    /*--- IE10 ---*/
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-wrap: nowrap !important;
    /* Safari */
    flex-wrap: nowrap !important;
  }

  .u-flx_space-between_pc {
    display: -ms-flexbox !important;
    /*--- IE10 ---*/
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }
}
.u_clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-flt_left {
  float: left !important;
}

.u-flt_right {
  float: right !important;
}

@media print, screen and (min-width: 768px) {
  .u-flt_left_pc {
    float: left !important;
  }

  .u-flt_right_pc {
    float: right !important;
  }
}
/* -----------------------------------------------------------------------------
   #Margin
   -------------------------------------------------------------------------- */
.u-m10 {
  margin: 10px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

@media only screen and (max-width: 767px) {
  .u-m10_sp {
    margin: 10px !important;
  }

  .u-mt0_sp {
    margin-top: 0px !important;
  }

  .u-mt10_sp {
    margin-top: 10px !important;
  }

  .u-mt20_sp {
    margin-top: 20px !important;
  }

  .u-mt30_sp {
    margin-top: 30px !important;
  }

  .u-mt40_sp {
    margin-top: 40px !important;
  }

  .u-mt50_sp {
    margin-top: 50px !important;
  }

  .u-mt60_sp {
    margin-top: 60px !important;
  }

  .u-mb0_sp {
    margin-bottom: 0 !important;
  }

  .u-mb10_sp {
    margin-bottom: 10px !important;
  }

  .u-mb20_sp {
    margin-bottom: 20px !important;
  }

  .u-mb30_sp {
    margin-bottom: 30px !important;
  }

  .u-mb40_sp {
    margin-bottom: 40px !important;
  }

  .u-mb50_sp {
    margin-bottom: 50px !important;
  }

  .u-mb60_sp {
    margin-bottom: 60px !important;
  }

  .u-mr10_sp {
    margin-right: 10px !important;
  }

  .u-mr20_sp {
    margin-right: 20px !important;
  }

  .u-mr30_sp {
    margin-right: 30px !important;
  }

  .u-ml0_sp {
    margin-left: 0 !important;
  }

  .u-ml10_sp {
    margin-left: 10px !important;
  }

  .u-ml20_sp {
    margin-left: 20px !important;
  }

  .u-ml30_sp {
    margin-left: 30px !important;
  }
}
/* -----------------------------------------------------------------------------
   #Padding
   -------------------------------------------------------------------------- */
.u-p10 {
  padding: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

@media only screen and (max-width: 767px) {
  .u-p10_sp {
    padding: 10px !important;
  }

  .u-pt0_sp {
    padding-top: 0px !important;
  }

  .u-pt10_sp {
    padding-top: 10px !important;
  }

  .u-pt20_sp {
    padding-top: 20px !important;
  }

  .u-pt30_sp {
    padding-top: 30px !important;
  }

  .u-pt40_sp {
    padding-top: 40px !important;
  }

  .u-pt50_sp {
    padding-top: 50px !important;
  }

  .u-pt60_sp {
    padding-top: 60px !important;
  }

  .u-pt70_sp {
    padding-top: 70px !important;
  }

  .u-pt80_sp {
    padding-top: 80px !important;
  }

  .u-pt90_sp {
    padding-top: 90px !important;
  }

  .u-pt100_sp {
    padding-top: 100px !important;
  }

  .u-pb10_sp {
    padding-bottom: 10px !important;
  }

  .u-pb20_sp {
    padding-bottom: 20px !important;
  }

  .u-pb30_sp {
    padding-bottom: 30px !important;
  }

  .u-pb40_sp {
    padding-bottom: 40px !important;
  }

  .u-pb50_sp {
    padding-bottom: 50px !important;
  }

  .u-pb60_sp {
    padding-bottom: 60px !important;
  }

  .u-pl0_sp {
    padding-left: 0px !important;
  }

  .u-pl10_sp {
    padding-left: 10px !important;
  }

  .u-pl20_sp {
    padding-left: 20px !important;
  }

  .u-pl30_sp {
    padding-left: 30px !important;
  }

  .u-pl90_sp {
    padding-left: 90px !important;
  }

  .u-pr10_sp {
    padding-right: 10px !important;
  }

  .u-pr0_sp {
    padding-right: 0px !important;
  }

  .u-pr20_sp {
    padding-right: 20px !important;
  }

  .u-pr30_sp {
    padding-right: 30px !important;
  }
}
/* -----------------------------------------------------------------------------
   #Text
   -------------------------------------------------------------------------- */
/*
  テキストのスタイルを指定する汎用クラスです。
*/
/*---------------テキスト寄せ
------------------------*/
.u-text_left {
  text-align: left !important;
}

.u-text_right {
  text-align: right !important;
}

.u-text_center {
  text-align: center !important;
}

@media only screen and (max-width: 767px) {
  .u-text_left_sp {
    text-align: left !important;
  }

  .u-text_right_sp {
    text-align: right !important;
  }

  .u-text_center_sp {
    text-align: center !important;
  }
}
.u-mincho {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}

.u-bold {
  font-weight: bold !important;
}

.u-red {
  color: red !important;
}

.u-black {
  color: #000 !important;
}

.bold {
  font-weight: bold;
}

.red {
  color: red;
}

.u-fsize_l {
  font-size: 1.5rem !important;
}

.u-fsize_m {
  font-size: 1.4rem !important;
}

.u-fsize_s {
  font-size: 1.2rem !important;
}

.u-f10 {
  font-size: 1rem !important;
}

.u-f11 {
  font-size: 1.1rem !important;
}

.u-f12 {
  font-size: 1.2rem !important;
}

.u-f13 {
  font-size: 1.3rem !important;
}

.u-f14 {
  font-size: 1.4rem !important;
}

.u-f15 {
  font-size: 1.5rem !important;
}

.u-f16 {
  font-size: 1.6rem !important;
}

.u-f17 {
  font-size: 1.7rem !important;
}

.u-f18 {
  font-size: 1.8rem !important;
}

.u-f19 {
  font-size: 1.9rem !important;
}

.u-f20 {
  font-size: 2rem !important;
}

.u-f21 {
  font-size: 2.1rem !important;
}

.u-f22 {
  font-size: 2.2rem !important;
}

.u-f23 {
  font-size: 2.3rem !important;
}

.u-f24 {
  font-size: 2.4rem !important;
}

.u-f25 {
  font-size: 2.5rem !important;
}

.u-f26 {
  font-size: 2.6rem !important;
}

.u-f27 {
  font-size: 2.7rem !important;
}

.u-f28 {
  font-size: 2.8rem !important;
}

.u-f29 {
  font-size: 2.9rem !important;
}

.u-f30 {
  font-size: 3rem !important;
}

.u-f31 {
  font-size: 3.1rem !important;
}

.u-f32 {
  font-size: 3.2rem !important;
}

.u-f33 {
  font-size: 3.3rem !important;
}

.u-f34 {
  font-size: 3.4rem !important;
}

.u-f35 {
  font-size: 3.5rem !important;
}

.u-f36 {
  font-size: 3.6rem !important;
}

.u-f37 {
  font-size: 3.7rem !important;
}

.u-f38 {
  font-size: 3.8rem !important;
}

.u-f39 {
  font-size: 3.9rem !important;
}

.u-f40 {
  font-size: 4rem !important;
}

.u-f41 {
  font-size: 4.1rem !important;
}

.u-f42 {
  font-size: 4.2rem !important;
}

.u-f43 {
  font-size: 4.3rem !important;
}

.u-f44 {
  font-size: 4.4rem !important;
}

.u-f45 {
  font-size: 4.5rem !important;
}

.u-f46 {
  font-size: 4.6rem !important;
}

.u-f47 {
  font-size: 4.7rem !important;
}

.u-f48 {
  font-size: 4.8rem !important;
}

.u-f49 {
  font-size: 4.9rem !important;
}

.u-f50 {
  font-size: 5rem !important;
}

@media only screen and (max-width: 767px) {
  .u-f10_sp {
    font-size: 1rem !important;
  }

  .u-f11_sp {
    font-size: 1.1rem !important;
  }

  .u-f12_sp {
    font-size: 1.2rem !important;
  }

  .u-f13_sp {
    font-size: 1.3rem !important;
  }

  .u-f14_sp {
    font-size: 1.4rem !important;
  }

  .u-f15_sp {
    font-size: 1.5rem !important;
  }

  .u-f16_sp {
    font-size: 1.6rem !important;
  }

  .u-f17_sp {
    font-size: 1.7rem !important;
  }

  .u-f18_sp {
    font-size: 1.8rem !important;
  }

  .u-f19_sp {
    font-size: 1.9rem !important;
  }

  .u-f20_sp {
    font-size: 2rem !important;
  }

  .u-f21_sp {
    font-size: 2.1rem !important;
  }

  .u-f22_sp {
    font-size: 2.2rem !important;
  }

  .u-f23_sp {
    font-size: 2.3rem !important;
  }

  .u-f24_sp {
    font-size: 2.4rem !important;
  }

  .u-f25_sp {
    font-size: 2.5rem !important;
  }

  .u-f26_sp {
    font-size: 2.6rem !important;
  }

  .u-f27_sp {
    font-size: 2.7rem !important;
  }

  .u-f28_sp {
    font-size: 2.8rem !important;
  }

  .u-f29_sp {
    font-size: 2.9rem !important;
  }

  .u-f30_sp {
    font-size: 3rem !important;
  }

  .u-f31_sp {
    font-size: 3.1rem !important;
  }

  .u-f32_sp {
    font-size: 3.2rem !important;
  }

  .u-f33_sp {
    font-size: 3.3rem !important;
  }

  .u-f34_sp {
    font-size: 3.4rem !important;
  }

  .u-f35_sp {
    font-size: 3.5rem !important;
  }

  .u-f36_sp {
    font-size: 3.6rem !important;
  }

  .u-f37_sp {
    font-size: 3.7rem !important;
  }

  .u-f38_sp {
    font-size: 3.8rem !important;
  }

  .u-f39_sp {
    font-size: 3.9rem !important;
  }

  .u-f40_sp {
    font-size: 4rem !important;
  }

  .u-f41_sp {
    font-size: 4.1rem !important;
  }

  .u-f42_sp {
    font-size: 4.2rem !important;
  }

  .u-f43_sp {
    font-size: 4.3rem !important;
  }

  .u-f44_sp {
    font-size: 4.4rem !important;
  }

  .u-f45_sp {
    font-size: 4.5rem !important;
  }

  .u-f46_sp {
    font-size: 4.6rem !important;
  }

  .u-f47_sp {
    font-size: 4.7rem !important;
  }

  .u-f48_sp {
    font-size: 4.8rem !important;
  }

  .u-f49_sp {
    font-size: 4.9rem !important;
  }

  .u-f50_sp {
    font-size: 5rem !important;
  }
}
/* #Wrapper
  -------------------------------------------------------------------------- */
/*
	画面の最大幅を設定するクラス

*/
/*-------------------レイアウト共通
---------------------------*/
.u-wrapper {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .u-wrapper {
    max-width: 1020px;
  }
}
@media only screen and (max-width: 767px) {
  .u-wrapper {
    width: 100%;
    max-width: 1020px;
  }
}

.u-wrapper_inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .u-wrapper_inner {
    max-width: 1020px;
  }
}
@media only screen and (max-width: 767px) {
  .u-wrapper_inner {
    width: 100%;
    max-width: 1020px;
  }
}

.u-wrapper_inner_pc {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .u-wrapper_inner_pc {
    max-width: 1020px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .u-wrapper_inner_pc {
    width: 100%;
    max-width: 1020px;
  }
}

.u-wrapper_inner_sp {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .u-wrapper_inner_sp {
    max-width: 1020px;
  }
}
@media only screen and (max-width: 767px) {
  .u-wrapper_inner_sp {
    width: 100%;
    max-width: 1020px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* #Show
  -------------------------------------------------------------------------- */
/*
PCとスマホの表示・非表示切り替え
*/
@media print, screen and (min-width: 768px) {
  .u-show_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-show_sp {
    display: inherit;
  }
}

@media print, screen and (min-width: 768px) {
  .u-show_pc {
    display: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .u-show_pc {
    display: none !important;
  }
}

/* #u-fluid-img
  -------------------------------------------------------------------------- */
/*
ウィンドウ幅に合わせて画像サイズを変えるクラス

*/
.u-fluid-img {
  max-width: 100%;
  height: auto;
}

@media print, screen and (min-width: 768px) {
  .u-fluid-img_pc {
    max-width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .u-fluid-img_sp {
    max-width: 100%;
    height: auto;
  }
}

.adminTable, .plainTable, .minimumTable {
  margin: 10px 0 24px 0;
  padding: 0;
  border-collapse: collapse;
  border-top: 2px solid #888;
  border-bottom: 2px solid #888;
  border-right: 0;
  border-left: 0;
  font-size: 14px;
}
.adminTable th, .plainTable th, .minimumTable th {
  padding: 3px 5px 3px 5px;
  font-weight: normal;
  text-align: left;
  line-height: 1.3;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-right: 0;
  border-left: 0;
  background-color: #a1906c;
  color: white;
}
.adminTable td, .plainTable td, .minimumTable td {
  background-color: #fff;
  padding: 3px 3px 3px 5px;
  line-height: 1.2;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-right: 0;
  border-left: 0;
}

.plainTable, .minimumTable {
  margin: 0;
  padding: 0;
  border: none;
}

.minimumTable td {
  padding: 0 0 0 2px;
  border-bottom: thin silver solid;
  font-size: 11px;
  line-height: 120%;
  border: none;
}

/* INPUT エレメント定義 */
input {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  vertical-align: middle;
  font-size: 12px;
  border: 1px solid silver;
}

select {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  vertical-align: middle;
  font-size: 12px;
  border: 1px solid silver;
}

textarea {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  vertical-align: middle;
  font-size: 12px;
  border: 1px solid silver;
}

button {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  border: 1px solid silver;
}

.cbx14 {
  font-size: 14px;
  margin: 0 0 0 0px;
  padding: 0 0 0 0px;
}

.cbx12 {
  font-size: 12px;
  margin: 0 0 0 0px;
  padding: 0 0 0 0px;
}

.cbx10 {
  font-size: 10px;
  margin: 0 0 0 0px;
  padding: 0 0 0 0px;
}

.select10 {
  font-size: 10px;
}

.select11 {
  font-size: 11px;
}

.select12 {
  font-size: 12px;
}

.select14 {
  font-size: 14px;
}

.btn16 {
  font-size: 16px;
  text-align: center;
  padding-top: 1px;
  width: 100px;
  cursor: pointer;
}

.btn14 {
  font-size: 14px;
  text-align: center;
  padding-top: 1px;
  width: 100px;
  cursor: pointer;
}

.btn12 {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  font-size: 12px;
  text-align: center;
  padding-top: 1px;
  width: 100px;
  vertical-align: middle;
  cursor: pointer;
}

.btn11 {
  font-size: 11px;
  margin: 0;
  padding-top: 1px;
  cursor: pointer;
}

.btn10 {
  font-size: 10px;
  margin: 0;
  padding-top: 1px;
  cursor: pointer;
}

.tbox14 {
  font-size: 14px;
  background-color: white;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  vertical-align: middle;
}

.tbox12 {
  font-size: 12px;
  background-color: #ffffff;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  vertical-align: middle;
}

.tbox10 {
  font-size: 10px;
  background-color: #ffffff;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  vertical-align: middle;
}

.rad11 {
  font-size: 11px;
  background-color: white;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  height: 20px;
  vertical-align: middle;
}

.rad12 {
  font-size: 12px;
  background-color: white;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  height: 20px;
  vertical-align: middle;
}

.rad14 {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", Tahoma;
  font-size: 14px;
  background-color: white;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  height: 22px;
  vertical-align: middle;
}

.tx10 {
  font-size: 10px;
  line-height: 1.5em;
}

.tx10red {
  font-size: 10px;
  color: Red;
}

.tx12 {
  font-size: 12px;
  line-height: 1.5em;
}

.tx14 {
  font-size: 14px;
  line-height: 1.4em;
}

.field-validation-error, .validation-error {
  font-size: 1rem;
  padding: 5px;
  color: #fff;
  line-height: 3;
  background-color: red;
  border-radius: 10px;
}

.input-validation-error {
  border: 1px solid #fd67a4;
  background-color: #fff0f0;
}

.w25 {
  width: 25px;
}

.w50 {
  width: 50px;
}

.w75 {
  width: 75px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

label.error {
  font-size: 10px;
  color: red;
}

input.error {
  border: 1px solid red;
  background-color: #fff0f0;
}

#breadcrumb {
  margin-bottom: 15px;
  text-align: right;
}
#breadcrumb li {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
}
#breadcrumb li:before {
  margin: 0 8px;
  content: ">";
  color: #000;
}
#breadcrumb li:first-child:before {
  margin: 0;
  content: "";
}
#breadcrumb img {
  vertical-align: middle;
}

.pdf {
  padding: 3px;
  margin-left: 5px;
  background-color: #CC0000;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
}

.object-fit {
  object-fit: cover;
  font-family: "object-fit: cover";
}

.calendar_table {
  text-align: center;
  width: 100%;
}
.calendar_table thead {
  background-color: #EADBBC;
}
.calendar_table th, .calendar_table td {
  border: 1px solid #AFB0B2;
}
.calendar_table td.hov {
  cursor: pointer;
}
.calendar_table tbody .spMark {
  text-shadow: 0.5px 0.5px 0, 0.5px -0.5px 0px, -0.5px 0.5px 0, -0.5px -0.5px 0px, 0.5px 0px 0px, 0px 0.5px 0px, -0.5px 0px 0px, 0px -0.5px 0px;
}
.calendar_table .sun {
  color: #e7330c;
}
.calendar_table .sat {
  color: #0E682A;
}
.calendar_table .close_day {
  background-color: #FFDDDD;
}
.calendar_table .caution {
  background-color: #edf5de;
}

span.close_day {
  vertical-align: middle;
  background-color: transparent !important;
  color: #FFDDDD;
}
span.caution {
  vertical-align: middle;
  background-color: transparent !important;
  color: #edf5de;
}

.ttl_style01 {
  margin-bottom: 30px;
  padding: 15px;
  font-size: 2.6rem;
  color: #e7330c;
  border: 1px solid #ccc;
  border-bottom: 3px solid #e7330c;
  background: linear-gradient(to top, #e5e5e5, #FFF);
}

.description_style01 {
  margin-top: 30px;
}
.description_style01 dt {
  margin-bottom: 10px;
  padding: 0 10px 5px;
  font-size: 1.8rem;
  color: #e7330c;
  border-bottom: 1px solid #e7330c;
  font-weight: bold;
}
.description_style01 dd {
  margin-bottom: 50px;
  padding: 0 10px;
}
.description_style01 tr {
  margin-bottom: 5px;
}
.description_style01 th {
  padding-bottom: 5px;
  padding-right: 15px;
  vertical-align: top;
  text-align: left;
}
.description_style01 td {
  padding-bottom: 5px;
  vertical-align: top;
}

.googlemap {
  position: relative;
  padding-top: 65.78%;
  width: 100%;
  border: 1px solid #ccc;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.index .bx-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.index .bx-wrapper .bx-pager {
  position: relative;
  left: 0;
  padding-top: 0;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .index .bx-wrapper .bx-pager {
    bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .index .bx-wrapper .bx-pager {
    bottom: 5px;
  }
}
.index .bx-wrapper .bx-pager.bx-default-pager a {
  background-color: #fff;
}
.index .bx-wrapper .bx-pager.bx-default-pager a:hover, .index .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}
.index .information {
  margin-bottom: 60px;
}
.index .information h2 {
  color: #e7330c;
  font-size: 1.5rem;
  vertical-align: middle;
}
.index .information h2 span {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 2.8rem;
  font-family: "Times New Roman", serif;
}
.index .information > div {
  padding-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .index .information > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.index .information dl {
  border-top: 1px solid #e7330c;
  border-bottom: 1px solid #e7330c;
}
.index .information dl > div {
  padding: 0;
  margin: 5px 0;
  border-bottom: none;
}

.btn_archive {
  display: block;
  width: 100px;
  line-height: 25px;
  text-align: center;
  font-size: 1.3rem;
  border: 1px solid #bb9c86;
  border-radius: 5px;
  background: linear-gradient(to top, #f6dfd7, #FFF);
  font-weight: bold;
  color: #9e7354;
}
.btn_archive:link {
  color: #9e7354;
}
.btn_archive:visited {
  color: #9e7354;
}
.btn_archive:active {
  color: #9e7354;
}
.btn_archive:hover {
  text-decoration: none;
  opacity: 0.7;
  color: #9e7354;
}

.blog .hedding {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  border-bottom: 1px solid #e7330c;
}
.blog .hedding a:link {
  color: #e7330c;
}
.blog .hedding a:visited {
  color: #e7330c;
}
.blog .hedding a:hover {
  color: #e7330c;
}
.blog .hedding a:active {
  color: #e7330c;
}
.blog .hedding h2 {
  margin-bottom: 0;
}
.blog .hedding a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.ttl_blog {
  margin-bottom: 10px;
  color: #e7330c;
  font-size: 2.8rem;
  font-family: "Times New Roman", serif;
}

@media print, screen and (min-width: 768px) {
  .blog_wrap {
    display: flex;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 768px) {
  .blog_list {
    width: 32%;
    margin-right: 1.5%;
  }
  .blog_list:nth-child(3n) {
    margin-right: 0;
  }
}
.blog_list > a {
  display: block;
  margin-bottom: 10px;
}
.blog_list > a:hover {
  text-decoration: none;
}
.blog_list dt {
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .blog_list dt {
    min-height: 45px;
  }
}
.blog_list .image {
  position: relative;
  margin-bottom: 5px;
  padding-top: 62.23%;
  width: 100%;
}
.blog_list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog_list .category_doctor, .blog_list .category_hobby, .blog_list .category_staff {
  text-align: center;
  line-height: 1.75;
  background-color: #35a3ba;
  color: #fff;
  font-size: 1.3rem;
}
.blog_list .category_staff {
  background-color: #ed8270;
}
.blog_list .category_hobby {
  background-color: #189a2c;
}

.shinryo_info {
  margin: 0 0 30px;
  background-color: #eee;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .shinryo_info {
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .shinryo_info {
    padding: 10px;
  }
}
.shinryo_info h2 {
  font-size: 3rem;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
.shinryo_info h2 + p {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
  margin: 20px auto;
  font-size: 2rem;
}
.shinryo_info .description {
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .shinryo_info .description {
    display: flex;
    justify-content: center;
  }
}
.shinryo_info .description a:link {
  color: #00a0e9;
}
.shinryo_info .description a:visited {
  color: #00a0e9;
}
.shinryo_info .description a:hover {
  color: #00a0e9;
}
.shinryo_info .description a:active {
  color: #00a0e9;
}
@media print, screen and (min-width: 768px) {
  .shinryo_info .rel_shinryo {
    display: flex;
    justify-content: space-between;
  }
}
.shinryo_info .rel_shinryo a {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .shinryo_info .rel_shinryo a {
    width: 32%;
  }
}
.shinryo_info .rel_shinryo a img {
  margin-bottom: 5px;
}

.ttl_gairai {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #e7330c;
  color: #e7330c;
}
@media print, screen and (min-width: 768px) {
  .ttl_gairai {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.ttl_gairai h2 {
  font-size: 2rem;
  font-weight: bold;
}
.ttl_gairai p {
  font-size: 1.6rem;
}

.gairai_info {
  margin-bottom: 50px;
}
.gairai_info .calendar_table {
  margin: 30px auto 10px;
  table-layout: fixed;
  font-size: 1.8rem;
}
.gairai_info .calendar_table caption {
  margin-bottom: 5px;
  text-align: left;
  font-weight: bold;
}
.gairai_info .calendar_table th[colspan] {
  font-weight: bold;
  font-size: 1.6rem;
}
.gairai_info .calendar_table th, .gairai_info .calendar_table td {
  padding: 5px;
}
.gairai_info .calendar_table tbody p {
  font-size: 1.4rem;
}
.gairai_info .calendar_table tfoot td {
  font-size: 1.6rem;
  border: none;
  text-align: left;
  font-weight: bold;
}

.doctor p {
  margin-top: 30px;
  font-size: 1.6rem;
}
.doctor p span {
  font-size: 2.4rem;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
.doctor dl {
  margin-top: 30px;
}
.doctor dt {
  margin-bottom: 10px;
  padding: 0 10px 5px;
  font-size: 1.6rem;
  color: #e7330c;
  border-bottom: 1px solid #e7330c;
}
.doctor dd {
  margin-bottom: 50px;
  padding: 0 10px;
}
.doctor tr {
  margin-bottom: 5px;
}
.doctor th {
  padding-bottom: 5px;
  padding-right: 15px;
  vertical-align: top;
  text-align: left;
}
.doctor td {
  padding-bottom: 5px;
  vertical-align: top;
}

.profile {
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .profile {
    justify-content: space-between;
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .profile {
    flex-direction: column;
    padding: 10px;
  }
}
.profile .name {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.profile .name span {
  font-size: 2.4rem;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
.profile dt {
  margin: 30px 0 10px;
  padding: 0 10px 5px;
  font-size: 1.6rem;
  color: #e7330c;
  border-bottom: 1px solid #e7330c;
}
@media print, screen and (min-width: 768px) {
  .profile > div {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .profile > div {
    order: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .profile figure {
    width: 44%;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .profile figure {
    order: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) {
  #nurse.profile > div {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  #nurse.profile figure {
    width: 65%;
  }
}

.ttl_catch {
  position: relative;
  background-size: cover;
  margin-bottom: 30px;
  padding-top: 37.65%;
  width: 100%;
}
.ttl_catch > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.ttl_catch h2 {
  width: 100%;
  color: #fff;
  font-size: 2.2rem;
}
.ttl_catch h2 span {
  display: block;
  font-size: 4.5rem;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}

.rehabilitation main h3 {
  margin-bottom: 30px;
  padding: 10px;
  background-color: #FAF6F6;
  border: 1px solid #e7330c;
  border-left: 5px solid #e7330c;
  color: #e7330c;
  font-size: 1.8rem;
  font-weight: bold;
}
.rehabilitation main dl {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 768px) {
  .rehabilitation main dl {
    margin: 0 30px;
  }
}
.rehabilitation main dl > div {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .rehabilitation main dl > div {
    display: flex;
  }
}
.rehabilitation main dt {
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .rehabilitation main dt {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .rehabilitation main dd {
    margin-left: 15px;
  }
}
.rehabilitation .description_01 p, .rehabilitation .description_02 p {
  margin-bottom: 15px;
  line-height: 1.75;
}
@media print, screen and (min-width: 768px) {
  .rehabilitation .description_01, .rehabilitation .description_02 {
    display: flex;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  .rehabilitation .description_01 > div, .rehabilitation .description_02 > div {
    width: 59%;
  }
}
.rehabilitation .description_01 figure, .rehabilitation .description_02 figure {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .rehabilitation .description_01 figure, .rehabilitation .description_02 figure {
    padding-left: 20px;
    width: 41%;
  }
}
.rehabilitation .description_02 {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .rehabilitation .description_02 > div {
    order: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .rehabilitation .description_02 figure {
    margin-right: 20px;
    margin-left: 0;
    order: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rehabilitation .description_02 figure {
    margin-bottom: 10px;
  }
}

.blog main {
  margin: 15px 0 60px;
}

.blog_archive {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .blog_archive {
    justify-content: space-between;
  }
}
.blog_archive > a {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) {
  .blog_archive > a {
    width: 24%;
    margin-right: 1.3%;
  }
  .blog_archive > a:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog_archive > a {
    width: 49%;
  }
}
.blog_archive > a:hover {
  text-decoration: none;
}
.blog_archive dl {
  position: relative;
}
.blog_archive dt {
  padding: 10px;
}
.blog_archive dd {
  padding: 10px;
}
.blog_archive dd time {
  font-size: 1.2rem;
}
.blog_archive .image {
  position: relative;
  margin-bottom: 5px;
  padding: 0;
  padding-top: 102.7%;
  width: 100%;
}
.blog_archive .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog_archive .category_doctor, .blog_archive .category_hobby, .blog_archive .category_staff {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 115px;
  text-align: center;
  line-height: 2.5;
  background-color: #35a3ba;
  color: #fff;
  font-size: 1.3rem;
}
.blog_archive .category_staff {
  background-color: #ed8270;
}
.blog_archive .category_hobby {
  background-color: #189a2c;
}

.pager {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.pager li {
  margin: 0 5px;
  width: 45px;
  line-height: 45px;
  border: 1px solid #ccc;
  font-size: 1.2rem;
}
.pager a {
  display: block;
  width: 100%;
  height: 100%;
}
.pager a:hover {
  background-color: #000;
  text-decoration: none;
  color: #fff;
}
.pager .active {
  background-color: #000;
  color: #fff;
}

.pager_singlepage {
  margin-top: 60px;
  display: flex;
}
.pager_singlepage > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  border: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) {
  .pager_singlepage > a {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .pager_singlepage > a {
    padding: 10px;
  }
}
.pager_singlepage > a:hover {
  text-decoration: none;
  background-color: #eee;
}

@media print, screen and (min-width: 768px) {
  .blog_detail {
    display: flex;
    justify-content: space-between;
  }
}
.blog_detail .category_doctor, .blog_detail .category_hobby, .blog_detail .category_staff {
  width: 115px;
  text-align: center;
  line-height: 2.5;
  background-color: #35a3ba;
  color: #fff;
  font-size: 1.3rem;
}
.blog_detail .category_staff {
  background-color: #ed8270;
}
.blog_detail .category_hobby {
  background-color: #189a2c;
}
.blog_detail > div {
  width: 100%;
}
.blog_detail article {
  margin-bottom: 50px;
}
.blog_detail article dt {
  margin-top: 15px;
  line-height: 1.25;
  font-size: 2.8rem;
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
.blog_detail article time {
  display: block;
  margin-top: 15px;
  font-size: 1.2rem;
}
.blog_detail article .image {
  margin-top: 15px;
  margin-bottom: 30px;
}
.blog_detail article .wysiwyg img {
  max-width: 100%;
}
@media print, screen and (min-width: 768px) {
  .blog_detail .side {
    flex-shrink: 0;
    width: 290px;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog_detail .side {
    margin-top: 30px;
  }
}
.blog_detail .side h4 {
  margin-bottom: 10px;
  padding: 10px;
  border-left: 5px solid #e7330c;
  line-height: 1;
  font-weight: bold;
}
.blog_detail .side .category_list {
  margin-bottom: 30px;
}
.blog_detail .side .category_list li {
  border: 1px solid #ccc;
  border-top: none;
}
.blog_detail .side .category_list li:first-child {
  border-top: 1px solid #ccc;
}
.blog_detail .side .category_list li a {
  display: block;
  padding: 10px;
}
.blog_detail .side .category_list li a:hover {
  text-decoration: none;
  background-color: #eee;
}
.blog_detail .side .latest-post_list li {
  margin-bottom: 10px;
  border: 1px solid #ccc;
}
.blog_detail .side .latest-post_list dl {
  display: flex;
  align-items: center;
}
.blog_detail .side .latest-post_list dl > div {
  padding: 10px;
}
.blog_detail .side .latest-post_list dt {
  margin-bottom: 10px;
  font-weight: bold;
}
.blog_detail .side .latest-post_list time {
  font-size: 1.1rem;
}
.blog_detail .side .latest-post_list .image {
  flex-shrink: 0;
  position: relative;
  height: 115px;
  width: 115px;
}
.blog_detail .side .latest-post_list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog_detail .side .month-archive_list {
  margin-top: 30px;
}
.blog_detail .side .month-archive_list dt {
  position: relative;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
}
.blog_detail .side .month-archive_list dt:hover {
  background-color: #eee;
}
.blog_detail .side .month-archive_list dt span {
  position: absolute;
  right: 15px;
  top: 15px;
  transform: rotate(90deg);
}
.blog_detail .side .month-archive_list dd {
  display: none;
}
.blog_detail .side .month-archive_list dd li {
  border: 1px solid #ccc;
  border-top: none;
}
.blog_detail .side .month-archive_list dd li a {
  display: block;
  padding: 10px;
}
.blog_detail .side .month-archive_list dd li a:hover {
  text-decoration: none;
  background-color: #eee;
}

.information dl {
  color: #666a6d;
}
.information dl > div {
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
}
@media print, screen and (min-width: 768px) {
  .information dl > div {
    display: flex;
  }
}
.information dl a:link {
  color: #666a6d;
}
.information dl a:visited {
  color: #666a6d;
}
.information dl a:hover {
  color: #666a6d;
}
.information dl a:active {
  color: #666a6d;
}
.information dt {
  flex-shrink: 0;
  width: 130px;
}
.information dt time:after {
  content: "➤";
  display: inline-block;
  margin-left: 10px;
}

.information_single {
  border: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) {
  .information_single {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .information_single {
    padding: 10px;
  }
}
.information_single h3 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.wysiwyg a:link {
  color: blue;
}
.wysiwyg a:visited {
  color: blue;
}
.wysiwyg a:hover {
  color: blue;
}
.wysiwyg a:active {
  color: blue;
}
.wysiwyg img {
  margin: 10px 0;
  max-width: 100%;
  height: auto;
}

.btn_information {
  position: relative;
  display: block;
  margin: 60px auto;
  padding: 15px 0;
  width: 280px;
  text-align: center;
  border: 1px solid #ccc;
}
.btn_information:before {
  content: "<";
  position: absolute;
  left: 30px;
}
.btn_information:hover {
  text-decoration: none;
  background-color: #ccc;
}