@charset "UTF-8";
/*============================================================
 変数管理
============================================================*/
/*============================================================
ブレイクポイント
============================================================*/
/*============================================================
スタイル
============================================================*/
/* -----------------------------------------
 デフォルトスタイルのリセット
-------------------------------------------- */
html, body, header, footer, nav, menu, section, article, aside, figcaption, figure, img, div, span, iframe, form, label, h1, h2, h3, h4, h5, p, blockquote, pre, del, em, strong, mark, dl, dt, dd, ol, ul, li, table, tbody, thead, tfoot, tr, th, td, caption {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: inherit;
  vertical-align: baseline;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

header, footer, section, summary, article, aside, nav, figure, img {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  text-decoration: none;
}

em {
  font-style: normal;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
  pointer-events: none;
}

input:disabled, select:disabled {
  opacity: 0.5;
  background-color: #eee;
}

ol, ol li,
ul, ul li {
  list-style: none;
}

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

/*============================================================
 共通スタイル
============================================================*/
img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #3E2B21;
  cursor: pointer;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

em {
  font-style: initial;
}

input, select {
  border: none;
  font-size: 1.6rem;
}

select {
  cursor: pointer;
  color: #3E2B21;
}

html {
  font-size: 62.5%;
  position: relative;
  min-height: 100% !important;
}

body {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-size: 1.4rem;
  color: #3E2B21;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body #container {
    background-color: #f8f6f3;
  }
}
@media not screen and (max-width: 768px) {
  body #container {
    padding-bottom: 630px;
  }
}
@media not screen and (max-width: 1080px) {
  body #container {
    padding-bottom: 560px !important;
  }
}
@media screen and (max-width: 768px) {
  body #container #contents section {
    background-color: #fff;
    margin-bottom: 15px;
  }
}
body h1, body h2, body h3, body h4 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* /body */
@media not screen and (max-width: 768px) {
  .display-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .display-pc {
    display: none !important;
  }
}
.error-page {
  text-align: center;
  background-color: #fff;
  padding: 60px 20px 100px;
}
@media not screen and (max-width: 768px) {
  .error-page {
    max-width: 1080px;
    width: 90%;
    margin: auto;
    padding: 100px 0 120px;
  }
}
.error-page h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
@media not screen and (max-width: 768px) {
  .error-page h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .error-page p {
    text-align: left;
  }
}
.error-page .btn {
  border: solid 1px;
  border-radius: 4px;
  margin: 50px auto 0;
  height: 45px;
  line-height: 45px;
  position: relative;
}
.error-page .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #3E2B21;
  border-right: 1.5px solid #3E2B21;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media not screen and (max-width: 768px) {
  .error-page .btn {
    margin: 60px auto 0;
  }
}
@media (hover: hover) {
  .error-page .btn:hover {
    background-color: #3E2B21;
    color: #fff;
    position: relative;
  }
  .error-page .btn:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

/*============================================================
ヘッダー
============================================================*/
header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  /* /.inner */
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
@media not screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}
@media not screen and (max-width: 768px) {
  header .inner {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header .inner .logobox .header-copy {
  font-size: 1rem;
  color: #999;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  header .inner .logobox .header-copy {
    position: absolute;
    left: 20px;
    top: 10px;
  }
}
header .inner .logobox .logo {
  display: block;
}
@media screen and (max-width: 768px) {
  header .inner .logobox .logo {
    width: 180px;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}
@media not screen and (max-width: 768px) {
  header .inner .logobox .logo {
    width: 200px;
    margin-top: 3px;
  }
}

/* /header */
/*============================================================
 フッター
 ============================================================*/
footer {
  background-color: #ece6de;
  font-size: 1.2rem;
  /* /.inner */
}
@media not screen and (max-width: 768px) {
  footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 20px 0px 0px;
  }
}
footer .inner {
  /* /.top */
  /* /.menu */
  /* /.bottom */
}
@media screen and (max-width: 768px) {
  footer .inner {
    padding: 30px 15px;
    max-width: 630px;
    margin: 0 auto;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner {
    max-width: 980px;
    width: 90%;
    margin: auto;
    position: relative;
  }
}
footer .inner .top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9);
  /* /.user */
}
@media screen and (max-width: 768px) {
  footer .inner .top {
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .top {
    padding: 25px 0;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .inner .top .logo {
  display: block;
}
@media screen and (max-width: 768px) {
  footer .inner .top .logo {
    width: 170px;
    margin: 0 auto 25px;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .top .logo {
    width: 180px;
  }
}
footer .inner .top .loginbtn-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
footer .inner .top .user {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* /a */
}
@media not screen and (max-width: 768px) {
  footer .inner .top .user {
    position: absolute;
    right: 120px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .top .user {
    width: 70%;
  }
}
footer .inner .top .user img {
  position: relative;
  display: inline-block;
}
@media not screen and (max-width: 768px) {
  footer .inner .top .user img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    top: 1px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .top .user img {
    width: 14px;
    height: 14px;
    top: 4px;
  }
}
footer .inner .top .user a {
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .inner .top .user a {
    height: 50px;
    width: 49%;
    min-width: 95px;
    line-height: 1.4;
    display: grid;
    place-items: center center;
    margin: 0 3px 0 0;
  }
  footer .inner .top .user a:first-of-type {
    border-radius: 4px 0 0 4px;
  }
  footer .inner .top .user a:nth-of-type(2) {
    border-radius: 0 4px 4px 0;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .top .user a {
    margin-right: 10px;
    width: 150px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .top .hospital {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .top .hospital {
    width: 28%;
  }
}
@media (hover: hover) {
  footer .inner .top .hospital a:hover {
    opacity: 0.7;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .top .hospital a {
    color: #009425;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .top .hospital a {
    background-color: #fff;
    text-align: center;
    height: 50px;
    min-width: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4px;
    line-height: 1.4;
  }
}
footer .inner .menu {
  /* /dl */
}
@media not screen and (max-width: 1080px) {
  footer .inner .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
@media (hover: hover) {
  footer .inner .menu a:hover {
    color: #009425;
    opacity: 1;
  }
}
footer .inner .menu dl {
  /* /dd */
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl {
    margin-bottom: 15px;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .menu dl {
    margin: 0 15px 30px 0;
    min-width: 150px;
  }
}
footer .inner .menu dl dt {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl dt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl dd ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
footer .inner .menu dl dd ul li {
  position: relative;
  padding-left: 12px;
}
footer .inner .menu dl dd ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -3px;
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl dd ul li {
    width: 48%;
    margin: 0 0 12px 0;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .menu dl dd ul li {
    margin-bottom: 8px;
    margin-right: 10px;
    display: inline-block;
  }
}
@media not screen and (max-width: 1080px) {
  footer .inner .menu dl dd ul li {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl dd ul li a {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .menu dl dd .one-column {
    margin-bottom: 20px;
  }
  footer .inner .menu dl dd .one-column li {
    width: 100%;
  }
}
footer .inner .bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  footer .inner .bottom {
    padding: 20px 0 0 0;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 0;
  }
}
@media (hover: hover) {
  footer .inner .bottom a:hover {
    color: #009425;
    opacity: 1;
  }
}
footer .inner .bottom .submenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .inner .bottom .submenu {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin-bottom: 25px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .bottom .submenu li {
    width: 30%;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .bottom .submenu li {
    margin-right: 25px;
  }
}
footer .inner .bottom .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .inner .bottom .sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .inner .bottom .sns li a {
  display: block;
  background-color: #fff;
  padding: 8px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  footer .inner .bottom .sns li a {
    margin: 0 10px;
  }
}
@media not screen and (max-width: 768px) {
  footer .inner .bottom .sns li a {
    margin-left: 15px;
  }
  @media (hover: hover) {
    footer .inner .bottom .sns li a:hover {
      opacity: 0.7;
    }
  }
}
footer .inner .bottom .sns li a img {
  width: 20px;
  height: 20px;
}
footer .copyright {
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.1em;
  background: #66553d;
  color: #fff;
  font-size: 1rem;
}
@media not screen and (max-width: 768px) {
  footer .copyright {
    line-height: 40px;
  }
}

/* /footer */
/*============================================================
ボタン
============================================================*/
.btn {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  margin: 0 auto;
  display: block;
  border-radius: 50px;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .btn {
    height: 50px;
    line-height: 50px;
  }
}
@media not screen and (max-width: 768px) {
  .btn {
    height: 55px;
    line-height: 55px;
  }
}

.btn-more {
  color: #3E2B21;
  border: solid 1px;
  margin-top: 25px;
  position: relative;
}
.btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #3E2B21;
  border-right: 1.5px solid #3E2B21;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) {
  .btn-more:hover {
    opacity: 0.7;
  }
}

/*============================================================
メニュー
============================================================*/
#pc-menubox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#pc-menubox li {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  position: relative;
  margin-left: 30px;
  height: 45px;
}
#pc-menubox li a {
  color: #696661;
}
@media (hover: hover) {
  #pc-menubox li a:hover {
    opacity: 0.7;
  }
}
#pc-menubox li a img {
  width: 22px;
  height: 22px;
  margin: 0 auto 6px;
  display: block;
}

/* /#pc-menubox */
#sp-menubox {
  /* #btn-slide-toggle */
  /* /#menu */
}
#sp-menubox #btn-slide-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 25px;
  height: 20px;
  font-size: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#sp-menubox #btn-slide-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  font-size: 0;
  background: #3E2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
}
#sp-menubox #btn-slide-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  font-size: 0;
  background: #3E2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0;
}
#sp-menubox #btn-slide-toggle span {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  font-size: 0;
  background: #3E2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#sp-menubox #menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  opacity: 0;
  z-index: 2000;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #f8f6f3;
  /* /.mymenu-box */
}
#sp-menubox #menu .mymenu-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 20px 20px;
}
#sp-menubox #menu .mymenu-box a {
  width: 48%;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-size: 1.3rem;
  border: solid 1px #d9d9d9;
  background: #fff;
}
#sp-menubox #menu .mymenu-box img {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
#sp-menubox #menu .menu-bottom li a {
  height: 60px;
  line-height: 60px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0 25px;
  position: relative;
  display: block;
}
#sp-menubox #menu .menu-bottom li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #3E2B21;
  border-right: 1.5px solid #3E2B21;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* /#sp-menubox */
.menu-active {
  /* /#sp-menubox */
}
.menu-active #sp-menubox #menu {
  opacity: 1;
  pointer-events: auto;
}
.menu-active #sp-menubox #btn-slide-toggle::before, .menu-active #sp-menubox #btn-slide-toggle::after {
  background: none;
}
.menu-active #sp-menubox #btn-slide-toggle span {
  background: none;
}
.menu-active #sp-menubox #btn-slide-toggle span::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  font-size: 0;
  background: #3E2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-active #sp-menubox #btn-slide-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  font-size: 0;
  background: #3E2B21;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* /.menu-active */
/*============================================================
ページトップ
============================================================*/
#pagetop a {
  position: fixed;
  width: 40px;
  height: 40px;
  font-size: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1000;
  bottom: 80px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  #pagetop a {
    bottom: 85px;
    right: 10px;
  }
}
@media not screen and (max-width: 1080px) {
  #pagetop a {
    bottom: 10px;
    right: 30px;
  }
}
#pagetop a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -5px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*============================================================
ぱんくずメニュー
============================================================*/
#breadcrumb {
  margin: 0 auto;
  font-size: 1.2rem;
  color: #696661;
}
@media screen and (max-width: 768px) {
  #breadcrumb {
    padding: 10px 15px;
    background-color: #f8f6f3;
  }
}
@media not screen and (max-width: 768px) {
  #breadcrumb {
    max-width: 980px;
    width: 95%;
    padding: 10px 0;
  }
}
#breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  word-break: keep-all;
  white-space: nowrap;
}
#breadcrumb ul li a {
  color: #009425;
  display: inline;
}
#breadcrumb ul li a:hover {
  opacity: 0.7;
}
#breadcrumb ul li + li::before {
  content: "»";
  margin: 0 10px;
}

/*============================================================
口コミ
============================================================*/
.stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2px;
}
.stars .star-img {
  width: 14px;
  margin: -2px 2px 0 0;
}

.score {
  font-size: 1.4rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ff5b00;
  margin: 0 15px 0 2px;
}
@media not screen and (max-width: 768px) {
  .score {
    font-size: 1.6rem;
  }
}

.hospital-review {
  margin: 3px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media not screen and (max-width: 768px) {
  .hospital-review {
    margin: 5px 0;
  }
}

.reviewbox {
  margin-bottom: 20px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
}
@media not screen and (max-width: 768px) {
  .reviewbox {
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.reviewbox .review-hospital-name {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.reviewbox .review-hospital-name a {
  text-decoration: underline;
  font-size: 1.3rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.reviewbox .head {
  padding: 0 0 0 50px;
  margin-bottom: 20px;
  position: relative;
}
@media not screen and (max-width: 768px) {
  .reviewbox .head {
    padding: 0 0 0 55px;
    margin-bottom: 15px;
  }
}
.reviewbox .animal-icon {
  position: absolute;
  left: 0;
  top: 2px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .animal-icon {
    top: 0;
  }
}
.reviewbox .animal-icon img {
  width: 40px;
  height: 40px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .animal-icon img {
    width: 45px;
    height: 45px;
  }
}
.reviewbox .review-info {
  font-size: 1.1rem;
  display: inline-block;
}
.reviewbox .review-sick {
  border-left: solid 1px #d9d9d9;
  padding: 0 0 0 10px;
  margin: 0 0 0 5px;
}
.reviewbox .review-day {
  display: block;
  position: absolute;
  bottom: -3px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .reviewbox .review-day {
    font-size: 1rem;
  }
}
@media not screen and (max-width: 768px) {
  .reviewbox .comment {
    padding: 25px 30px 25px;
    border: solid 1px #d9d9d9;
    border-radius: 4px;
    position: relative;
  }
  .reviewbox .comment::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 13px;
    top: -10px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d9d9d9;
    border-left: 10px solid transparent;
  }
  .reviewbox .comment::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 13px;
    top: -8px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
  }
}
.reviewbox .comment p {
  font-size: 1.4rem;
  text-align: justify;
}
.reviewbox .pickup-pc, .reviewbox .pickup-sp {
  color: #ff5b00;
  font-weight: bold;
  background-color: #fff0b6;
}
.reviewbox .pickup-pc {
  font-size: 1.2rem;
  border-radius: 2px 2px 0 0;
  padding: 0 0 0 30px;
  margin: -25px -30px 20px -30px;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.reviewbox .pickup-pc::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 13px;
  top: -8px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff0b6;
  z-index: 1;
}
.reviewbox .pickup-sp {
  font-size: 1.2rem;
  margin: 0 -20px 10px -20px;
  padding: 0 20px;
  height: 28px;
  line-height: 29px;
  position: relative;
}
.reviewbox h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
@media not screen and (max-width: 768px) {
  .reviewbox h3 {
    font-size: 1.7rem;
  }
}
.reviewbox h3 a {
  display: block;
}
@media not screen and (max-width: 768px) {
  .reviewbox h3 a {
    display: inline-block;
    text-decoration: underline;
  }
}
@media (hover: hover) {
  .reviewbox h3 a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .reviewbox h3 a {
    padding: 0 20px 0 0;
    position: relative;
  }
  .reviewbox h3 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #3E2B21;
    border-right: 2px solid #3E2B21;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.reviewbox .review-comment-body {
  margin-bottom: 20px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-comment-body {
    margin-bottom: 30px;
  }
}
.reviewbox .review-more-open {
  margin: 10px auto 20px;
  font-size: 1.2rem;
  text-align: center;
  color: #009425;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 150px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.reviewbox .review-more-open::after {
  margin-top: -2px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-more-open {
    width: 150px;
    margin: 25px auto;
    line-height: 30px;
    border-radius: 2px;
    color: #fff;
    background-color: #90c100;
    position: relative;
  }
  .reviewbox .review-more-open::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  @media (hover: hover) {
    .reviewbox .review-more-open:hover {
      color: #fff;
      background-color: #75b20b;
      position: relative;
    }
    .reviewbox .review-more-open:hover::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 15px;
      display: block;
      width: 4px;
      height: 4px;
      border-top: 1.5px solid #fff;
      border-right: 1.5px solid #fff;
      -webkit-transform: translateY(-50%) rotate(135deg);
              transform: translateY(-50%) rotate(135deg);
    }
  }
}
.reviewbox .review-old {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 15px;
  padding: 2px 5px;
  font-size: 1.1rem;
  color: #696661;
  background: #f2f2f2;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-old {
    margin: 0 0 20px;
    padding: 3px 12px;
  }
}
.reviewbox .review-photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.reviewbox .review-photo .review-photo-item {
  width: 90px;
  display: inline-block;
  vertical-align: top;
  margin: 0 15px 20px 0;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-photo .review-photo-item {
    width: 130px;
    margin: 0 15px 30px 0;
  }
}
.reviewbox .review-photo .review-photo-item p {
  margin-bottom: 0;
}
.reviewbox .review-photo a {
  overflow: hidden;
}
@media (hover: hover) {
  .reviewbox .review-photo a:hover {
    opacity: 0.7;
  }
}
.reviewbox .review-photo img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  width: 90px;
  height: 90px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-photo img {
    width: 130px;
    height: 130px;
  }
}
.reviewbox .review-photo p {
  font-size: 1rem;
  color: #b0844f;
  line-height: 1.4;
  margin: 5px 0 0;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-photo p {
    font-size: 1.1rem;
    margin: 10px 0 0;
  }
}
.reviewbox .staff-comment {
  margin: 10px 0 20px 0;
  padding: 10px 0 10px 15px;
  border-left: solid 2px #ccc;
  position: relative;
}
@media not screen and (max-width: 768px) {
  .reviewbox .staff-comment {
    margin: 10px 0 30px 0;
    padding: 10px 20px;
  }
}
.reviewbox .staff-comment img {
  display: inline-block;
  margin: -1px 8px 0px 0;
  width: 40px;
  height: 40px;
  border: solid 1px #d9d9d9;
  position: absolute;
  left: 15px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .staff-comment img {
    width: 45px;
    height: 45px;
    left: 20px;
  }
}
.reviewbox .staff-comment .title {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.3rem;
  margin-bottom: 3px;
  padding: 0 0 0 50px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .staff-comment .title {
    font-size: 1.4rem;
    padding: 0 0 0 55px;
  }
}
.reviewbox .staff-comment .date {
  font-size: 1rem;
  color: #696661;
  margin-bottom: 10px;
  padding: 0 0 0 50px;
}
@media not screen and (max-width: 768px) {
  .reviewbox .staff-comment .date {
    padding: 0 0 0 55px;
  }
}
.reviewbox .staff-comment p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media not screen and (max-width: 768px) {
  .reviewbox .staff-comment p {
    font-size: 1.3rem;
  }
}
.reviewbox .review-detail {
  width: 100%;
  border-top: 1px dotted #ccc;
  margin: 0 0 20px 0;
  font-size: 1.1rem;
  background-color: #fff;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 0 30px 0;
  }
}
.reviewbox .review-detail dl {
  border-bottom: 1px dotted #ccc;
  display: table;
  width: 100%;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-detail dl {
    width: 50%;
  }
}
.reviewbox .review-detail dt {
  width: 30%;
  background-color: #faf8f5;
  text-align: left;
  padding: 5px 10px;
  line-height: 1.6;
  display: table-cell;
  vertical-align: middle;
}
.reviewbox .review-detail dd {
  width: 70%;
  padding: 5px 10px;
  line-height: 1.6;
  display: table-cell;
  vertical-align: middle;
}
.reviewbox .review-detail a {
  color: #009425;
}
@media (hover: hover) {
  .reviewbox .review-detail a:hover {
    opacity: 0.7;
  }
}
.reviewbox .review-vote {
  font-size: 1.1rem;
  text-align: center;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-vote {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.reviewbox .review-vote a {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  margin: 0 10px 5px 10px;
  border-radius: 2px;
  border: solid 1px #ccc;
  width: 130px;
  letter-spacing: 0;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#eee));
  background: -webkit-linear-gradient(top, #fff 0, #eee);
  background: linear-gradient(180deg, #fff 0, #eee);
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media not screen and (max-width: 768px) {
  .reviewbox .review-vote a {
    margin: 0 0 0 10px;
  }
}
@media (hover: hover) {
  .reviewbox .review-vote a:hover {
    opacity: 0.7;
  }
}
.reviewbox .review-num {
  font-size: 1.1rem;
  color: #696661;
  position: relative;
  padding-left: 20px;
  text-align: left;
  margin: 0 auto 0 0;
}
.reviewbox .review-num::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  left: 0;
  background-image: url(/img/new/icon/hospitals/review-good.svg);
}
@media screen and (max-width: 768px) {
  .reviewbox .review-btn-box {
    margin: 15px 0 0;
  }
}

/*============================================================
検索ボックス
============================================================*/
@media not screen and (max-width: 768px) {
  .search-box a {
    color: #009425;
  }
  @media (hover: hover) {
    .search-box a:hover {
      opacity: 0.7;
    }
  }
  .search-box .inner {
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
    padding: 0 0 20px;
    border-bottom: dotted 1px #d9d9d9;
  }
  .search-box .inner .search-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2px;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.1rem;
  }
  .search-box .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #fff;
    border: solid 1px #e0d8d3;
    border-radius: 4px;
    height: 35px;
    position: relative;
  }
  .search-box .top .search-frame {
    position: relative;
    border-right: dashed 1px #e0d8d3;
  }
  .search-box .top .search-frame:last-of-type {
    border-right: none;
  }
  .search-box .top .search-frame::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 50%;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
    left: 8px;
    z-index: 100;
  }
  .search-box .top .search-frame input, .search-box .top .search-frame select {
    width: 100%;
    height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 25px 0 30px;
    font-size: 1.2rem;
    border-bottom: solid 2px rgba(0, 0, 0, 0);
  }
  @media (hover: hover) {
    .search-box .top .search-frame input:hover, .search-box .top .search-frame select:hover {
      border-bottom: solid 2px #ffa31d;
      border-radius: 0 !important;
    }
  }
  .search-box .top .search-frame input::-webkit-input-placeholder, .search-box .top .search-frame select::-webkit-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::-moz-placeholder, .search-box .top .search-frame select::-moz-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input:-ms-input-placeholder, .search-box .top .search-frame select:-ms-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::-ms-input-placeholder, .search-box .top .search-frame select::-ms-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::placeholder, .search-box .top .search-frame select::placeholder {
    color: #999;
  }
  .search-box .top .searchbox-area {
    width: 25%;
  }
  .search-box .top .searchbox-area::before {
    background-image: url(/img/new/icon/search/searchbox-area.svg);
  }
  .search-box .top .searchbox-hospital {
    width: 25%;
  }
  .search-box .top .searchbox-hospital::before {
    background-image: url(/img/new/icon/search/searchbox-hospital.svg);
  }
  .search-box .top .searchbox-animal-type::before {
    background-image: url(/img/new/icon/search/searchbox-animal.svg);
  }
  .search-box .top .searchbox-disease::before {
    background-image: url(/img/new/icon/search/searchbox-disease.svg);
  }
  .search-box .top .searchbox-animal-type, .search-box .top .searchbox-disease {
    position: relative;
    width: 15%;
  }
  .search-box .top .searchbox-animal-type::after, .search-box .top .searchbox-disease::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1.5px solid #999;
    border-right: 1.5px solid #999;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .search-box .top.review .searchbox-area {
    width: 35%;
  }
  .search-box .top.review .searchbox-animal-type {
    width: 30%;
  }
  .search-box .top.review .searchbox-animal-type::after {
    content: none;
  }
  .search-box .top.review .searchbox-disease {
    width: 35%;
  }
  .search-box .top.review .searchbox-disease::after {
    content: none;
  }
  .search-box .bottom-inner {
    position: relative;
  }
  .search-box .search-btn {
    color: #fff;
    background-color: #ffa31d;
    border-radius: 0 3px 3px 0;
    letter-spacing: 0.1em;
    display: block;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1.3rem;
    width: 140px;
  }
  @media (hover: hover) {
    .search-box .search-btn:hover {
      background-color: #ff841f;
    }
  }
  .search-box .bottom-trigger {
    position: relative;
    width: 15%;
    padding: 0 25px 0 15px;
    font-size: 1.2rem;
    border-bottom: solid 2px rgba(0, 0, 0, 0);
    cursor: pointer;
    line-height: 35px;
  }
  .search-box .bottom-trigger::after {
    content: "＋";
    position: absolute;
    top: 0;
    right: 10px;
    display: block;
  }
  @media (hover: hover) {
    .search-box .bottom-trigger:hover {
      border-bottom: solid 2px #ffa31d;
      border-radius: 0 !important;
    }
  }
  .search-box .open::after {
    content: "ー";
    position: absolute;
    top: 0;
    right: 10px;
    display: block;
  }
  .search-box .bottom {
    display: none;
    font-size: 1.2rem;
    background-color: #fff;
    padding: 10px 25px 25px;
    margin: 10px auto;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    border: solid 1px #e0d8d3;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 1000;
    max-width: 650px;
    line-height: 1.6;
  }
  .search-box .bottom::before {
    content: "";
    position: absolute;
    top: -27px;
    right: 128px;
    border: 14px solid transparent;
    border-bottom: 14px solid #FFF;
    z-index: 2;
  }
  .search-box .bottom::after {
    content: "";
    position: absolute;
    top: -15px;
    right: 128px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-bottom: 14px solid #e0d8d3;
    z-index: 1;
  }
  .search-box .bottom dl {
    margin-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: solid 1px #d9d9d9;
  }
  .search-box .bottom dt {
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    width: 120px;
  }
  .search-box .bottom dd {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .search-box .bottom dd input[type=checkbox], .search-box .bottom dd input[type=radio] {
    display: none;
  }
  .search-box .bottom dd .label-radio {
    position: relative;
    padding: 0 10px 0 20px;
    cursor: pointer;
    line-height: 1.2;
  }
  .search-box .bottom dd .label-radio:hover {
    color: #ff841f;
  }
  .search-box .bottom dd .label-radio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
  }
  .search-box .bottom dd .label-radio span {
    color: #ff5b00;
  }
  .search-box .bottom dd .label-radio span:hover {
    color: #ff841f;
  }
  .search-box .bottom dd .label-radio span.color-blue {
    color: #0095d1;
  }
  .search-box .bottom dd .label-radio span.color-blue:hover {
    color: #ff841f;
  }
  .search-box .bottom dd input[type=radio]:checked + .label-radio::before {
    border: 1px solid #75b20b;
  }
  .search-box .bottom dd input[type=radio]:checked + .label-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 9px;
    height: 9px;
    background-color: #75b20b;
    border-radius: 50%;
  }
  .search-box .bottom dd .nowtime {
    width: auto !important;
  }
  .search-box .bottom dd .label-check {
    position: relative;
    padding: 0 15px 0 20px;
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 1.2;
    width: 33%;
  }
  .search-box .bottom dd .label-check:hover {
    color: #ff841f;
  }
  .search-box .bottom dd .label-check::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 2px;
  }
  .search-box .bottom dd input[type=checkbox]:checked + .label-check::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 14px;
    height: 14px;
    background: #75b20b;
    border: 1px solid #75b20b;
    border-radius: 2px;
  }
  .search-box .bottom dd input[type=checkbox]:checked + .label-check::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 8px;
    height: 4px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .search-box .bottom dd .week-reset-btn {
    display: inline-block;
    margin: 0 0 0 10px;
  }
  .search-box .bottom dd .week-reset-btn button {
    color: inherit;
    font-size: 1.1rem;
    text-decoration: underline;
  }
  .search-box .bottom dd .time {
    margin: 15px 0;
  }
  .search-box .bottom dd .time .time-select {
    border: solid 1px #ccc;
    border-radius: 2px;
    background: -webkit-linear-gradient(top, #fff 50%, #f2f2f2);
    display: inline-block;
    margin: 0 20px 0 0;
    position: relative;
  }
  .search-box .bottom dd .time .time-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    width: 3px;
    height: 3px;
    border-top: 1px solid #3E2B21;
    border-right: 1px solid #3E2B21;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .search-box .bottom dd .time .time-select select {
    font-size: inherit;
    padding: 0px 20px 0 15px;
    display: block;
    height: 20px;
    line-height: 21px;
    width: 130px;
  }
}
@media screen and (max-width: 768px) {
  .search-box {
    max-width: 530px;
    margin: 0 auto 10px;
    padding: 15px 20px;
    background: #fff;
    position: relative;
  }
  .search-box a {
    color: #009425;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .search-box a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .search-box .search-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.2rem;
  }
  .search-box .top .search-frame {
    position: relative;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
    border: solid 2px #e0d8d3;
  }
  .search-box .top .search-frame::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 10px;
    z-index: 100;
  }
  .search-box .top .search-frame input, .search-box .top .search-frame select {
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 38px;
    line-height: 38px;
    padding: 0 25px 0 30px;
    font-size: 1.4rem;
  }
  .search-box .top .search-frame input::-webkit-input-placeholder, .search-box .top .search-frame select::-webkit-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::-moz-placeholder, .search-box .top .search-frame select::-moz-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input:-ms-input-placeholder, .search-box .top .search-frame select:-ms-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::-ms-input-placeholder, .search-box .top .search-frame select::-ms-input-placeholder {
    color: #999;
  }
  .search-box .top .search-frame input::placeholder, .search-box .top .search-frame select::placeholder {
    color: #999;
  }
  .search-box .top .searchbox-area::before {
    background-image: url(/img/new/icon/search/searchbox-area.svg);
  }
  .search-box .top .distance-select {
    margin-bottom: 10px;
  }
  .search-box .top .distance-select div {
    display: inline-block;
    border: solid 1px #ccc;
    border-radius: 2px;
    background: -webkit-linear-gradient(top, #fff 50%, #f2f2f2);
    color: #999;
    margin: 0 5px 5px;
    position: relative;
  }
  .search-box .top .distance-select div::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    width: 3px;
    height: 3px;
    border-top: 1px solid #3E2B21;
    border-right: 1px solid #3E2B21;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .search-box .top .distance-select div select {
    font-size: 1.3rem;
    padding: 0px 15px 0 8px;
    display: block;
    height: 24px;
    line-height: 25px;
  }
  .search-box .top .searchbox-hospital::before {
    background-image: url(/img/new/icon/search/searchbox-hospital.svg);
  }
  .search-box .top .searchbox-area, .search-box .top .searchbox-hospital {
    width: 100%;
  }
  .search-box .top .searchbox-animal-type {
    float: left;
  }
  .search-box .top .searchbox-animal-type::before {
    background-image: url(/img/new/icon/search/searchbox-animal.svg);
  }
  .search-box .top .searchbox-disease {
    float: right;
  }
  .search-box .top .searchbox-disease::before {
    background-image: url(/img/new/icon/search/searchbox-disease.svg);
  }
  .search-box .top .searchbox-animal-type, .search-box .top .searchbox-disease {
    position: relative;
    border-radius: 2px;
    width: 48.5%;
    margin-bottom: 20px;
  }
  .search-box .top .searchbox-animal-type::after, .search-box .top .searchbox-disease::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1.5px solid #999;
    border-right: 1.5px solid #999;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .search-box .top.review .searchbox-area {
    width: 100%;
  }
  .search-box .top.review .searchbox-animal-type {
    width: 100%;
    margin-bottom: 10px;
  }
  .search-box .top.review .searchbox-animal-type::after {
    content: none;
  }
  .search-box .top.review .searchbox-disease {
    width: 100%;
  }
  .search-box .top.review .searchbox-disease::after {
    content: none;
  }
  .search-box .bottom-inner {
    position: relative;
  }
  .search-box .bottom-trigger {
    position: relative;
    color: #75b20b;
    display: block;
    clear: both;
    margin: 20px auto 0;
    width: 160px;
    text-align: center;
    height: 30px;
    line-height: 29px;
    border: solid 1px #75b20b;
    border-radius: 50px;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    background: #fff;
  }
  .search-box .bottom-trigger::after {
    content: "＋";
    position: absolute;
    top: 0;
    left: 15px;
    display: block;
  }
  .search-box .open::after {
    content: "ー";
    position: absolute;
    top: 0;
    left: 15px;
    display: block;
  }
  .search-box .bottom {
    display: none;
    font-size: 1.2rem;
    padding: 0 15px;
    margin: 20px 0 0;
    border: solid 1px #75b20b;
    background-color: #fff;
  }
  .search-box .bottom dl {
    margin-top: 20px;
  }
  .search-box .bottom dt {
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin-bottom: 10px;
  }
  .search-box .bottom dd input[type=checkbox], .search-box .bottom dd input[type=radio] {
    display: none;
  }
  .search-box .bottom dd .label-radio {
    position: relative;
    padding: 0 15px 0 20px;
    margin-bottom: 10px;
    display: inline-block;
    cursor: pointer;
  }
  .search-box .bottom dd .label-radio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
  }
  .search-box .bottom dd .label-radio span {
    color: #ff5b00;
  }
  .search-box .bottom dd .label-radio span.color-blue {
    color: #0095d1;
  }
  .search-box .bottom dd input[type=radio]:checked + .label-radio::before {
    border: 1px solid #75b20b;
  }
  .search-box .bottom dd input[type=radio]:checked + .label-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 9px;
    height: 9px;
    background-color: #75b20b;
    border-radius: 50%;
  }
  .search-box .bottom dd .label-check {
    position: relative;
    padding: 0 5px 0 25px;
    display: inline-block;
    margin-bottom: 12px;
    cursor: pointer;
    width: 49%;
  }
  .search-box .bottom dd .label-check::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 2px;
  }
  .search-box .bottom dd input[type=checkbox]:checked + .label-check::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 14px;
    height: 14px;
    background: #75b20b;
    border: 1px solid #75b20b;
    border-radius: 2px;
  }
  .search-box .bottom dd input[type=checkbox]:checked + .label-check::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 8px;
    height: 4px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .search-box .bottom dd .week-reset-btn {
    display: inline-block;
  }
  .search-box .bottom dd .week-reset-btn button {
    color: inherit;
    font-size: 1.1rem;
    text-decoration: underline;
  }
  .search-box .bottom dd .time {
    margin: 5px 0 0;
  }
  .search-box .bottom dd .time .time-select {
    width: 120px;
    display: inline-block;
    margin: 10px 15px 15px 0;
    border: solid 1px #ccc;
    border-radius: 2px;
    background: -webkit-linear-gradient(top, #fff 50%, #f2f2f2);
    height: 24px;
    line-height: 24px;
    position: relative;
  }
  .search-box .bottom dd .time .time-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 3px;
    height: 3px;
    border-top: 1px solid #3E2B21;
    border-right: 1px solid #3E2B21;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .search-box .bottom dd .time .time-select select {
    font-size: inherit;
    padding: 0px 20px 0 15px;
    display: block;
    width: 100%;
    height: 100%;
  }
  .search-box .bottom dd .time .nowtime {
    width: auto;
  }
  .search-box .search-btn {
    color: #fff;
    background-color: #ffa31d;
    border-radius: 3px;
    letter-spacing: 0.1em;
    display: block;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1.6rem;
    width: 65%;
    height: 45px;
    margin: 20px auto 0;
    -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  }
}
/*============================================================
PR枠
============================================================*/
@media screen and (max-width: 1080px) {
  .pcside {
    display: none;
  }
}
@media not screen and (max-width: 1080px) {
  .pcside {
    max-width: 300px;
    width: 100%;
  }
}
.pcside .pr-hospital, .pcside .pr-interview {
  padding: 20px 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.pcside .pr-hospital .pr-tag, .pcside .pr-interview .pr-tag {
  font-size: 1.1rem;
  width: 26px;
  line-height: 15px;
  height: 16px;
}
.pcside .pr-hospital h2 {
  font-size: 1.8rem;
}
.pcside .pr-hospital .hospital-title {
  padding: 0 55px 10px 0;
  margin-bottom: 10px;
}
@media not screen and (max-width: 768px) {
  .pcside .pr-hospital .hospital-title {
    min-height: 58px;
  }
}
.pcside .pr-hospital .hospital-title img {
  width: 45px;
}
.pcside .pr-hospital .hospital-review .count-review span {
  font-size: 1.4rem;
}
.pcside .pr-hospital .hospital-copy {
  font-size: 1.2rem;
}
.pcside .pr-hospital .pc-wrapper {
  display: block;
}
.pcside .pr-hospital .hospital-details {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.pcside .pr-hospital .hospital-img, .pcside .pr-hospital .hospital-img img, .pcside .pr-hospital .hospital-btn, .pcside .pr-hospital .hospital-access {
  display: none;
}
.pcside .pr-hospital .hospital-btn {
  margin-bottom: 0;
}
.pcside .pr-interview .logo img {
  height: 9px;
}
.pcside .pr-interview .pr-container {
  position: relative;
  padding: 0 0 0 70px;
  margin: 10px 0 0;
}
.pcside .pr-interview .doctor-img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.pcside .pr-interview .text {
  margin: 15px 0;
}
.pcside .pr-interview p {
  color: #696661;
}
.pcside .pr-interview .title {
  font-size: 1.5rem;
}
.pcside .side-categorybox {
  margin: 30px 0 20px;
}
.pcside .side-categorybox h4 {
  margin-bottom: 10px;
  text-align: center;
}
.pcside .side-categorybox a {
  display: block;
  margin-bottom: 20px;
}
@media (hover: hover) {
  .pcside .side-categorybox a:hover {
    opacity: 0.7;
  }
}
.pcside .contents-box a {
  margin: 0 0 10px;
  padding: 15px;
  background-color: #fff;
  border: solid 1px #e0d8d3;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (hover: hover) {
  .pcside .contents-box a:hover {
    opacity: 0.7;
  }
}
.pcside .contents-box .contacts-img {
  width: 85px;
  height: 85px;
  margin: 0 15px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pcside .contents-box .contacts-logo {
  height: 12px;
  margin: 10px 0 0;
  width: auto;
}
.pcside .contents-box .title {
  font-size: 1.2rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 5px;
}
.pcside .contents-box p {
  font-size: 1.1rem;
}

.pr-tag {
  display: inline-block;
  width: 30px;
  line-height: 17px;
  height: 18px;
  color: #75b20b;
  border: solid 1px;
  font-size: 1.2rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  top: -3px;
  margin-right: 3px;
}

.pr-interview {
  position: relative;
}
.pr-interview .logo {
  display: inline-block;
  vertical-align: top;
  margin: 1px 0 0 3px;
}
.pr-interview .logo img {
  height: 10px;
  width: auto;
}
.pr-interview .number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #696661;
  font-size: 1.1rem;
}
.pr-interview .container {
  position: relative;
  padding: 0 0 0 70px;
  margin: 10px 0 0;
}
@media not screen and (max-width: 768px) {
  .pr-interview .container {
    padding: 0 0 0 110px;
  }
}
.pr-interview .title {
  font-size: 1.7rem;
  color: #15568a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  margin: 0 5px 10px 0;
  display: block;
}
@media (hover: hover) {
  .pr-interview .title:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .pr-interview .title {
    font-size: 1.4rem;
  }
}
.pr-interview .kamoku {
  font-size: 1.1rem;
  color: #fff;
  background-color: #15568a;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  margin: 0 0 10px 0;
  font-size: 1rem;
  vertical-align: middle;
}
.pr-interview p {
  color: #696661;
}
.pr-interview .name {
  margin-top: 10px;
}
.pr-interview .name span {
  font-size: 1.4rem;
  padding-right: 5px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pr-interview .doctor-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (hover: hover) {
  .pr-interview .doctor-img:hover {
    opacity: 0.7;
  }
}
@media not screen and (max-width: 768px) {
  .pr-interview .doctor-img {
    width: 90px;
    height: 90px;
  }
}

.interview-personal .kamoku {
  display: none;
}
.interview-personal .title {
  color: #009847;
}

.interview-bn-sp {
  margin: 20px 0;
}

.search-list {
  background-color: #fff;
  border: solid 1px #d9d9d9;
  margin: 20px 0;
  padding: 15px 10px 10px;
  font-size: 1.2rem;
  border-radius: 4px;
}
@media not screen and (max-width: 768px) {
  .search-list {
    margin: 0 0 30px;
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 4px;
  }
}
@media not screen and (max-width: 768px) {
  .search-list .pc-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.search-list h2 {
  font-size: 1.6rem;
  color: #3E2B21;
  display: inline;
  line-height: 1.4;
}
@media not screen and (max-width: 768px) {
  .search-list h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  @media (hover: hover) {
    .search-list h2 a:hover {
      text-decoration: underline;
      opacity: 1 !important;
    }
  }
}
.search-list h2 a {
  display: inline;
}
.search-list img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-list .hospital-title {
  position: relative;
  padding: 0 65px 8px 0;
  margin-bottom: 12px;
  border-bottom: dotted 1px #d9d9d9;
  min-height: 58px;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-title {
    padding: 0 65px 12px 0;
    margin-bottom: 15px;
    border-bottom: dotted 1px #d9d9d9;
    min-height: 65px;
  }
}
.search-list .hospital-title .address {
  position: relative;
  line-height: 1.4;
  color: #696661;
  margin-top: 7px;
  letter-spacing: 0.08em;
}
.search-list .hospital-title img {
  position: absolute;
  width: 45px;
  height: auto;
  top: 0;
  right: 0;
  border: solid 1px #fff;
  -webkit-box-shadow: 0 0 0 1px #d9d9d9;
          box-shadow: 0 0 0 1px #d9d9d9;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-title img {
    width: 50px;
  }
}
@media (hover: hover) {
  .search-list .hospital-title a:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-copy {
  font-size: 1.2rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 15px 0 10px 0;
  line-height: 1.5;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-copy {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
  }
}
.search-list .hospital-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 768px) {
  .search-list .hospital-img {
    margin-right: -10px;
    padding-right: 10px;
  }
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-img {
    display: block;
    position: relative;
    overflow: visible;
    min-width: 190px;
    max-width: 190px;
    min-height: 170px;
    margin: 0 10px 0 0;
  }
}
.search-list .hospital-img a {
  margin-right: 5px;
  height: 110px;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-img a {
    margin: 0 10px 10px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 10px);
    height: 160px;
  }
  .search-list .hospital-img a:first-of-type {
    width: calc(100% - 10px);
    height: 160px;
  }
  .search-list .hospital-img a:nth-of-type(2) {
    width: calc(50% - 10px);
    height: 80px;
    float: left;
  }
  .search-list .hospital-img a:nth-of-type(3) {
    width: calc(50% - 10px);
    height: 80px;
    float: right;
  }
  @media (hover: hover) {
    .search-list .hospital-img a:hover {
      opacity: 0.7;
    }
  }
}
.search-list .hospital-img img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-img img {
    width: 100%;
    height: 100%;
  }
}
.search-list .no-img {
  width: 210px;
  height: 160px;
}
.search-list .no-img img {
  width: calc(100% - 10px);
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-text {
    min-width: 380px;
    width: 100%;
  }
}
.search-list .flag {
  margin: 10px 0 15px;
}
@media not screen and (max-width: 768px) {
  .search-list .flag {
    margin: 18px 0 18px 0;
  }
}
.search-list .flag a {
  font-size: 1.2rem;
  color: #696661;
  background-color: #fff;
  border: solid 1px #ccc;
  padding: 2px 6px;
  margin: 0 5px 0 0;
  display: inline-block;
  border-radius: 2px;
}
@media (hover: hover) {
  .search-list .flag a:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-review {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 15px 0;
  line-height: 1;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-review {
    margin: 0 0 15px 0;
  }
}
.search-list .hospital-review .count-review {
  position: relative;
  padding-left: 18px;
  margin-right: 10px;
  text-decoration: underline;
}
@media (hover: hover) {
  .search-list .hospital-review .count-review:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-review .count-review::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-list .hospital-review .count-review span {
  font-size: 1.5rem;
}
.search-list .hospital-review .review::before {
  background-image: url(/img/new/icon/hospitals/review.svg);
}
.search-list .hospital-review .postcard::before {
  background-image: url(/img/new/icon/hospitals/postcard.svg);
}
.search-list .limited-news {
  border: solid 1px #ff6c6c;
  padding: 15px 25px 15px 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  position: relative;
  position: relative;
  display: block;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
.search-list .limited-news::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ff6c6c;
  border-right: 2px solid #ff6c6c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.search-list .limited-news span {
  display: block;
  text-align: center;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ff6c6c;
  color: #fff;
  max-width: 130px;
  margin: 0 auto 10px;
  border-radius: 50px;
  height: 22px;
  line-height: 23px;
}
@media (hover: hover) {
  .search-list .limited-news:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-free-text {
  position: relative;
  margin: 20px 0;
  border: 1px solid #cbaf64;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 4px;
}
.search-list .hospital-free-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 4px;
  height: 4px;
  border-top: 2px solid #cbaf64;
  border-right: 2px solid #cbaf64;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.search-list .hospital-free-text .heading {
  display: block;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #cbaf64;
  color: #fff;
  font-size: 1.1rem;
  padding: 3px 6px;
  font-size: 1.1rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.search-list .hospital-free-text p {
  padding: 15px 25px 15px 10px;
}
@media (hover: hover) {
  .search-list .hospital-free-text:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-reviews {
  border-radius: 4px;
  display: -webkit-box;
}
@media screen and (max-width: 768px) {
  .search-list .hospital-reviews {
    margin-right: -15px;
  }
}
.search-list .hospital-reviews .review-item {
  background: #fff;
  font-size: 1.2rem;
  padding: 15px 25px 15px 15px;
  border-radius: 4px;
  width: 90%;
  position: relative;
  background-color: #fff6d2;
}
@media screen and (max-width: 768px) {
  .search-list .hospital-reviews .review-item {
    position: relative;
  }
  .search-list .hospital-reviews .review-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #3E2B21;
    border-right: 2px solid #3E2B21;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-reviews .review-item {
    padding: 15px 20px;
  }
}
@media (hover: hover) {
  .search-list .hospital-reviews .review-item:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-reviews .ttl {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding: 0 50px 0 0;
  margin-bottom: 7px;
  position: relative;
  font-size: 1.3rem;
  text-decoration: underline;
}
.search-list .hospital-reviews .score {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 1.3rem;
  margin: 0;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-reviews .score {
    font-size: 1.5rem;
  }
}
.search-list .hospital-reviews .star-img {
  width: 13px;
  margin: -2px 5px 0 0;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-reviews .star-img {
    width: 15px;
  }
}
.search-list .hospital-reviews p {
  color: #696661;
  line-height: 1.4;
}
.search-list .view-all {
  margin-bottom: 15px;
  text-align: right;
  font-size: 1.3rem;
}
.search-list .view-all a {
  color: #009425;
  display: inline-block;
  position: relative;
}
.search-list .view-all a::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 4px solid #ffa31d;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@media (hover: hover) {
  .search-list .view-all a:hover {
    opacity: 0.7;
  }
}
.search-list .hospital-details {
  width: 100%;
  margin-bottom: 15px;
  border: solid 1px #d9d9d9;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-details {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.search-list .hospital-details tr {
  border-bottom: dotted 1px #d9d9d9;
  display: block;
}
.search-list .hospital-details tr:last-of-type {
  border-bottom: none;
}
.search-list .hospital-details th {
  text-align: left;
  vertical-align: middle;
  width: 120px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 4px 4px 4px 8px;
  background-color: #f8f6f3;
}
.search-list .hospital-details td {
  padding: 4px 4px 4px 8px;
  vertical-align: middle;
  color: #696661;
  line-height: 1.4;
}
.search-list .no-calendar {
  display: none;
}
.search-list .hospital-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 10px 0;
}
.search-list .hospital-btn a {
  font-size: 1.3rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  border-radius: 4px;
  position: relative;
  height: 55px;
}
.search-list .hospital-btn a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 10px auto 5px;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-btn a::before {
    width: 17px;
    height: 17px;
    margin: 10px auto 3px;
  }
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-btn a {
    font-size: 1.5rem;
    height: 42px;
    line-height: 42px;
  }
  .search-list .hospital-btn a::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 3px;
    margin: 0 6px 0 0;
  }
}
.search-list .hospital-btn a:only-child {
  width: 80%;
  margin: 0 auto;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-btn a:only-child {
    width: 50%;
  }
}
.search-list .hospital-btn a:first-child:nth-last-child(2) {
  width: 48%;
}
.search-list .hospital-btn a:last-child:nth-child(2) {
  width: 48%;
}
.search-list .hospital-btn a:first-child:nth-last-child(3) {
  width: 45%;
}
.search-list .hospital-btn a:first-child:nth-last-child(3) ~ a {
  width: 25%;
}
.search-list .hospital-btn .btn-reserve {
  background-color: #ff841f;
  color: #fff;
}
.search-list .hospital-btn .btn-reserve::before {
  background-image: url(/img/new/icon/hospitals/btn/calendar.svg);
}
@media (hover: hover) {
  .search-list .hospital-btn .btn-reserve:hover {
    background: #ff5b00;
  }
}
.search-list .hospital-btn .btn-hp {
  background-color: #ffa31d;
  color: #fff;
}
.search-list .hospital-btn .btn-hp::before {
  background-image: url(/img/new/icon/hospitals/btn/hp.svg);
}
@media (hover: hover) {
  .search-list .hospital-btn .btn-hp:hover {
    background: #ff5b00;
  }
}
.search-list .hospital-btn .btn-tel {
  border: solid 1px #ff841f;
  background-color: #fff;
  color: #ff841f;
}
.search-list .hospital-btn .btn-tel::before {
  background-image: url(/img/new/icon/hospitals/btn/tel.svg);
}
.search-list .hospital-btn .btn-tel .tel-balloon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 230px;
  color: #3E2B21;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  background: #fff;
  border-radius: 4px;
  border: solid 2px #ff841f;
  background-color: #fff;
  line-height: 1;
  padding: 20px;
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-list .hospital-btn .btn-tel .tel-balloon span {
  display: block;
  font-size: 2rem;
  margin: 15px 0 0;
  position: relative;
}
.search-list .hospital-btn .btn-tel .tel-balloon span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 0px;
  margin: 0 6px 0 0;
  background-image: url(/img/new/icon/hospitals/btn/tel.svg);
}
@media (hover: hover) {
  .search-list .hospital-btn .btn-tel:hover {
    opacity: 1 !important;
  }
  .search-list .hospital-btn .btn-tel:hover .tel-balloon {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.search-list .hospital-access {
  font-size: 1rem;
  text-align: right;
  color: #999;
}
.search-list .arrow-up, .search-list .arrow-down {
  font-size: 1.3rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 3px;
}
.search-list .arrow-up {
  color: #ff5b00;
}
.search-list .arrow-down {
  color: #0095d1;
}
.search-list .new-tag {
  color: #f75c81;
  font-size: 1.1rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
}
.search-list .new-tag span {
  color: #fff;
  background-color: #f75c81;
  display: inline-block;
  line-height: 16px;
  height: 15px;
  margin: 0 2px 8px 0;
  width: 65px;
  text-align: center;
  font-size: 1rem;
}

/*============================================================
動物アイコン
============================================================*/
#animallists-l1 {
  background-image: url(/img/new/hospitals/review/dog.svg);
}

#animallists-l2 {
  background-image: url(/img/new/hospitals/review/cat.svg);
}

#animallists-l3 {
  background-image: url(/img/new/hospitals/review/rabbit.svg);
}

#animallists-l4 {
  background-image: url(/img/new/hospitals/review/hamster.svg);
}

#animallists-l5 {
  background-image: url(/img/new/hospitals/review/ferret.svg);
}

#animallists-l6 {
  background-image: url(/img/new/hospitals/review/guineapig.svg);
}

#animallists-l7 {
  background-image: url(/img/new/hospitals/review/squirrel.svg);
}

#animallists-l8 {
  background-image: url(/img/new/hospitals/review/bird.svg);
}

#animallists-l9 {
  background-image: url(/img/new/hospitals/review/frog.svg);
}

#animallists-l10 {
  background-image: url(/img/new/hospitals/review/lizard.svg);
}

#animallists-l12 {
  background-image: url(/img/new/hospitals/review/fish.svg);
}

#animallists-l13 {
  background-image: url(/img/new/hospitals/review/pig.svg);
}

#animallists-l14 {
  background-image: url(/img/new/hospitals/review/snake.svg);
}

#animallists-l15 {
  background-image: url(/img/new/hospitals/review/turtle.svg);
}

/*============================================================
診療時間
============================================================*/
.hospital-time {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  width: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 15px;
}
.hospital-time th {
  background-color: #f8f6f3;
  border-right: 1px solid #d9d9d9;
  letter-spacing: 0.1em;
  vertical-align: middle;
  padding: 4px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media not screen and (max-width: 768px) {
  .hospital-time th:first-of-type {
    width: 35%;
  }
}
.hospital-time td {
  border: 1px solid #d9d9d9;
  vertical-align: middle;
  letter-spacing: 0.05em;
  padding: 4px;
}
.hospital-time .today {
  background-color: #ffffdb;
}
.hospital-time .time-data {
  font-family: sans-serif;
  font-size: 1.2rem;
}
@media not screen and (max-width: 768px) {
  .hospital-time .time-data {
    font-size: 1.3rem;
  }
}

.sat {
  color: #0095d1;
}

.sun, .hol {
  color: #ff5b00;
}

.hospital-time-busy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.hospital-time-busy li {
  padding: 2px 4px;
  margin-right: 8px;
  color: #696661;
  border-radius: 2px;
}

.vacant, .crowded, .reserve {
  background-size: 3px 3px;
}

.vacant {
  background-image: -webkit-linear-gradient(135deg, #fff 25%, #bcecf7 25%, #bcecf7 50%, #fff 50%, #fff 75%, #bcecf7 75%, #bcecf7);
  background-image: linear-gradient(-45deg, #fff 25%, #bcecf7 25%, #bcecf7 50%, #fff 50%, #fff 75%, #bcecf7 75%, #bcecf7);
}

.crowded {
  background-image: -webkit-linear-gradient(135deg, #fff 25%, #fcd6d6 25%, #fcd6d6 50%, #fff 50%, #fff 75%, #fcd6d6 75%, #fcd6d6);
  background-image: linear-gradient(-45deg, #fff 25%, #fcd6d6 25%, #fcd6d6 50%, #fff 50%, #fff 75%, #fcd6d6 75%, #fcd6d6);
}

.reserve {
  background-image: -webkit-linear-gradient(135deg, #fff 25%, #ceed6a 25%, #ceed6a 50%, #fff 50%, #fff 75%, #ceed6a 75%, #ceed6a);
  background-image: linear-gradient(-45deg, #fff 25%, #ceed6a 25%, #ceed6a 50%, #fff 50%, #fff 75%, #ceed6a 75%, #ceed6a);
}

@media not screen and (max-width: 768px) {
  .hospital-top .hospital-time {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.hospital-top .hospital-time-notice {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 15px;
}

.base-info .hospital-time {
  font-size: 1.2rem;
}
.base-info .hospital-time-text {
  font-size: 1.1rem;
}
@media not screen and (max-width: 768px) {
  .base-info .hospital-time-text {
    font-size: 1.3rem;
  }
}
.base-info .hospital-time-text em {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 1.2rem;
}
.base-info .hospital-time-text p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
@media not screen and (max-width: 768px) {
  .base-info .hospital-time-text p {
    font-size: 1.2rem;
  }
}
.base-info .hospital-time-text .red {
  color: #ff5b00;
  margin-bottom: 10px;
}

.search-list .hospital-time {
  line-height: 1.4;
}
@media not screen and (max-width: 768px) {
  .search-list .hospital-time td {
    font-size: 1.3rem;
  }
}

/*============================================================

============================================================*/
#container {
  background-color: #fff !important;
}

section {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
}
@media not screen and (max-width: 768px) {
  section {
    padding: 100px 20px;
  }
}

#about .h1-wrapper {
  background-color: #90c100;
  padding: 15px 0;
}
@media not screen and (max-width: 768px) {
  #about .h1-wrapper {
    padding: 30px 0;
  }
}
#about h1 {
  color: #fff;
  font-size: 1.8rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
@media not screen and (max-width: 768px) {
  #about h1 {
    font-size: 2.4rem;
  }
}
#about .about-intro {
  margin: 0 auto !important;
  padding: 35px 20px;
  max-width: 490px;
  text-align: justify;
}
@media not screen and (max-width: 768px) {
  #about .about-intro {
    padding: 60px 0;
    text-align: center;
    font-size: 1.6rem;
    max-width: 660px;
  }
}
#about .about-intro .copy {
  font-size: 1.8rem;
  margin: 0 0 20px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media not screen and (max-width: 768px) {
  #about .about-intro .copy {
    font-size: 2.2rem;
    margin: 0 0 40px;
  }
}
#about .about-intro img {
  margin: 50px auto 0;
  max-width: 450px;
}
@media not screen and (max-width: 768px) {
  #about .about-intro img {
    margin: 70px auto 0;
  }
}
#about .about-number {
  background-color: #f2f2f2 !important;
  padding: 40px 20px;
}
#about .about-number ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
#about .about-number ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 35px;
  font-size: 1.6rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 10px;
  margin: 10px auto;
  min-width: 320px;
  width: 380px;
}
@media not screen and (max-width: 768px) {
  #about .about-number ul li {
    width: 47%;
  }
}
@media screen and (max-width: 480px) {
  #about .about-number ul li {
    width: 100%;
    min-width: auto;
  }
}
#about .about-number ul li img {
  width: 70px;
  height: auto;
  margin: 0 25px 0 0;
}
#about .about-number ul li .number {
  font-size: 1.6rem;
}
@media not screen and (max-width: 768px) {
  #about .about-number ul li .number {
    font-size: 2rem;
  }
}
#about .about-number ul li .number span {
  font-size: 3.4rem;
  color: #ff841f;
  padding: 0 5px 0 0;
  letter-spacing: 0;
}
#about .about-service ul {
  max-width: 580px;
  margin: 0 auto;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul {
    max-width: 900px;
  }
}
#about .about-service ul li {
  display: block;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#about .about-service ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#about .about-service ul li .service-text {
  line-height: 1.8;
  text-align: justify;
  width: 100%;
  margin: 0 0 20px;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul li .service-text {
    width: 50%;
  }
}
#about .about-service ul li h3 {
  font-size: 1.6rem;
  margin: 0 0 20px;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul li h3 {
    font-size: 1.8rem;
    margin: 0 0 30px;
  }
}
#about .about-service ul li .service-img {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul li .service-img {
    width: 45%;
  }
}
#about .about-service ul li .service-img img {
  border: solid 2px #eee;
  border-radius: 10px;
}
#about .about-service ul li + li {
  margin: 50px 0 0;
}
@media not screen and (max-width: 768px) {
  #about .about-service ul li + li {
    margin: 100px 0 0;
  }
}

#campaign .campaign-mv {
  background-color: #fffbe9;
  text-align: center;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  #campaign .campaign-mv {
    text-align: justify;
    padding: 30px 50px;
    border-top: solid 5px #90c100;
  }
}
#campaign .campaign-mv .campaign-mv-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #campaign .campaign-mv .campaign-mv-wrapper {
    display: block;
  }
}
#campaign .campaign-mv .text {
  width: 50%;
  margin: 0 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #campaign .campaign-mv .text {
    max-width: 400px;
    width: auto;
    margin: 0 auto 20px;
  }
}
#campaign .campaign-mv h1 {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #campaign .campaign-mv h1 {
    margin: 0 0 20px;
  }
}
#campaign .campaign-mv .mv {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #campaign .campaign-mv .mv {
    max-width: 230px;
    width: auto;
    margin: 0 auto;
  }
}
#campaign .attention {
  background-color: #eee !important;
  margin-bottom: 40px !important;
}
@media not screen and (max-width: 768px) {
  #campaign .attention {
    margin-bottom: 60px !important;
  }
}
#campaign .attention .attention-wrapper {
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
}
@media screen and (max-width: 480px) {
  #campaign .attention .attention-wrapper {
    padding: 35px 20px;
  }
}
#campaign .attention h4 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 30px;
}
#campaign .attention ul {
  font-size: 1.3rem;
}
#campaign .attention ul li {
  position: relative;
  padding-left: 15px;
  margin: 0 0 10px;
}
#campaign .attention ul li::before {
  content: "・";
  position: absolute;
  top: -2px;
  left: -5px;
  font-size: 1.6rem;
}
#campaign .attention ul li:nth-of-type(6) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #ccc;
}
#campaign .attention ul li:nth-of-type(6)::before {
  top: 17px;
}
#campaign .attention a {
  color: #009425;
  text-decoration: underline;
}
#campaign .attention em {
  color: #ff5b00;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2 {
  font-size: 1.8rem;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 0 40px;
  text-align: center;
}
@media not screen and (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
    margin: 0 0 50px;
  }
}

.regist {
  background-color: #e1efbd !important;
}
@media not screen and (max-width: 768px) {
  .regist {
    text-align: center;
  }
}
.regist > p {
  margin: 0 0 30px;
}
@media not screen and (max-width: 768px) {
  .regist > p {
    margin: 0 0 50px;
  }
}
.regist a {
  color: #009425;
  text-decoration: underline;
  padding: 0 3px;
}
.regist ul {
  max-width: 750px;
  margin: 0 auto;
}
.regist ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .regist ul li {
    display: block;
    padding: 30px;
  }
}
.regist ul li + li {
  margin: 30px 0 0;
}
.regist ul div {
  width: 60%;
  text-align: justify;
}
@media screen and (max-width: 480px) {
  .regist ul div {
    width: auto;
    margin: 0 0 30px;
  }
}
.regist ul span {
  color: #75b20b;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  margin: 0 0 10px;
}
.regist ul h3 {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
.regist ul img {
  max-height: 160px;
  width: 30%;
}
@media screen and (max-width: 480px) {
  .regist ul img {
    width: auto;
    margin: 0 auto;
  }
}
.regist .pages-link {
  color: #009425;
  text-decoration: underline;
}

.btn-box {
  text-align: center;
  background-color: #fff;
}
.btn-box a {
  color: #009425;
  text-decoration: underline;
  padding: 0 3px;
}
.btn-box span {
  color: #ff5b00;
}
.btn-box p {
  font-size: 1.3rem;
}
.btn-box .message {
  font-size: 1.6rem;
  margin: 0 0 30px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 480px) {
  .btn-box .message {
    font-size: 1.5rem;
  }
}
.btn-box .btn-orange {
  font-size: 1.6rem;
  background-color: #ff841f;
  color: #fff;
  min-width: 280px;
  padding: 15px 25px;
  margin: 0 auto 30px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
}