@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type="search"] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #33261f;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  background: #f7fff9;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ",
    Meiryo, Georgia, serif;
}

.ft-noto {
  font-family: "Noto Sans JP", sans-serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #33261f;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 1200px;
  padding-top: 77px;
}

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.img {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 768px) {
  body {
    position: static !important;
    top: auto !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .flex-md {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-md-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex-md-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .align-items-center-md {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .order1 {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order2 {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* RESPONSIVE
 * ----------------------------------------------- */
.sm {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  body {
    font-size: 12px;
  }

  .container {
    width: auto;
    min-width: 320px;
    padding-top: 60px;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide:active,
.slick-slide:focus {
  outline: none;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow,
.slick-dots button {
  background-position: 0 0;
  background-repeat: no-repeat;
  text-indent: -1000px;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  display: block;
  cursor: pointer;
}

/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
header {
  z-index: 9999;
  left: 0;
  width: 100%;
}

@media print, (min-width: 768px) {
  header {
    position: absolute;
    top: 34px;
  }
  header .header-logo {
    width: 357px;
    margin: 0 auto;
  }
  header .header-logo a {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    min-width: 320px;
    padding: 10px 15px;
    top: 0;
    background: #f7fff9;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }
  header .header-logo {
    width: 185px;
    margin: 0;
  }
  header .header-logo a {
    display: inline-block;
  }
}
.btn-menu {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.btn-menu > span {
  width: 20px;
  height: 2px;
  background: #8dcc19;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  display: block;
}
.btn-menu > span:nth-child(1) {
  top: 22px;
}
.btn-menu > span:nth-child(2) {
  top: 29px;
}
.btn-menu > span:nth-child(3) {
  top: 36px;
}

.btn-menu span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.75s forwards;
  animation: menu-bar01 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btn-menu span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.btn-menu span:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.75s forwards;
  animation: menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.btn-menu.js-active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
  animation: active-menu-bar01 0.75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
.btn-menu.js-active span:nth-of-type(2) {
  opacity: 0;
}

.btn-menu.js-active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
  animation: active-menu-bar03 0.75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.navigation .ul-nav {
  line-height: 1;
  letter-spacing: 0.05em;
}
.navigation .ul-nav a {
  display: block;
}
.navigation .ul-nav a.current {
  color: #8cc919;
}
.navigation .ul-nav .fa {
  color: #8cc919;
  margin-right: 5px;
}
.navigation .ul-nav .fa:before {
  margin-right: 5px;
}

@media print, (min-width: 768px) {
  .navigation {
    display: block !important;
  }
  .navigation .wrapper {
    padding: 45px 0;
  }
  .navigation .ul-nav {
    font-size: 20px;
    margin: 0 -10px;
  }
  .navigation .ul-nav a {
    padding: 0 43px;
    -moz-transition: all 0.26s;
    -o-transition: all 0.26s;
    -webkit-transition: all 0.26s;
    transition: all 0.26s;
  }
  .navigation .ul-nav a:hover {
    color: #8cc919;
  }
  .navigation .ul-nav > li {
    border-left: 1px solid #000;
  }
  .navigation .ul-nav > li:first-child {
    border-left: none;
  }
  .navigation .ul-nav > li:first-child a {
    padding-left: 0;
  }
  .navigation .ul-nav > li:last-child a {
    padding-right: 0;
  }
  .navigation .ul-nav .fa {
    font-size: 20px;
  }
}
.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 320px;
    height: 100%;
    padding-top: 60px;
    width: 100%;
    background: #f7fff9;
    z-index: 9995;
    display: none;
  }
  .navigation .wrapper {
    height: 100% !important;
    overflow-y: auto;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .navigation .ul-nav {
    font-size: 14px;
    padding: 10px 0 15px;
  }
  .navigation .ul-nav a {
    padding: 16px 15px;
  }
  .navigation .ul-nav > li {
    border-bottom: 1px solid #caeca2;
  }
  .navigation .ul-nav .fa {
    font-size: 16px;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer .footer-left {
  position: relative;
}
footer .footer-left:after {
  content: "";
  position: absolute;
  background: url(../img/common/icn_rabbit.png) no-repeat 0 0;
}
footer .footer-data {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
footer .footer-data table {
  background: #fff;
  width: 100%;
  line-height: 1.2;
}
footer .footer-data table th,
footer .footer-data table td {
  border: 1px solid #32281f;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
}
footer .footer-data table th {
  background: #dbf1c0;
  border-top: none !important;
}
footer .footer-data table th:first-child {
  color: #8cc919;
  border-left: none;
}
footer .footer-data table th:last-child {
  border-right: none;
}
footer .footer-data table td {
  padding: 11px 0;
}
footer .footer-data table td:first-child {
  border-left: none;
}
footer .footer-data table td:last-child {
  border-right: none;
}
footer .footer-data table tr:last-child td {
  border-bottom: none;
}
footer .footer-data .round,
footer .footer-data .line {
  margin: auto;
  display: block;
}
footer .footer-data .round {
  background: #8cc919;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
footer .footer-data .line {
  background: url(../img/common/icn_line.png) no-repeat 0 0;
}
footer .footer-text {
  text-align: right;
  line-height: 1.5;
}
footer .footer-text strong {
  font-weight: 600;
  display: block;
}
footer .heading {
  background: #fff;
  text-align: center;
}
footer .heading .col {
  padding: 2px 0;
}
footer .heading .col01 {
  background: #352822;
  color: #fff;
}
footer .heading .col02 {
  font-weight: bold;
}
footer .list-row .txt:before {
  content: "●";
  display: inline-block;
  color: #b89e92;
}
footer .list-row .th {
  font-weight: 600;
}
footer .map {
  background: #ccc;
  position: relative;
}
footer .map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
footer .map .btn-primary {
  z-index: 100;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
footer .copyright {
  text-align: center;
}

@media print, (min-width: 768px) {
  footer {
    padding: 98px 0 29px;
  }
  footer .footer-left {
    width: 650px;
  }
  footer .footer-left:after {
    width: 196px;
    height: 186px;
    right: 12px;
    top: -70px;
  }
  footer .footer-right {
    width: 510px;
    padding-top: 104px;
  }
  footer .logo {
    margin-left: 20px;
  }
  footer .footer-data {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 3px solid #32281f;
    margin: 31px 0 23px;
  }
  footer .footer-data table {
    width: 100%;
    font-size: 20px;
  }
  footer .footer-data table th {
    font-size: 24px;
    width: 75px;
    padding: 14px 10px;
  }
  footer .footer-data table th:first-child {
    width: 200px;
  }
  footer .footer-data table td {
    padding: 11px 0;
  }
  footer .footer-data .round {
    width: 35px;
    height: 35px;
  }
  footer .footer-data .line {
    width: 27px;
    height: 27px;
  }
  footer .footer-text {
    font-size: 20px;
    padding-right: 10px;
  }
  footer .footer-text .tell {
    font-size: 40px;
  }
  footer .heading {
    -moz-box-shadow: 2px 2px 0 #d2d8d4;
    -webkit-box-shadow: 2px 2px 0 #d2d8d4;
    box-shadow: 2px 2px 0 #d2d8d4;
    font-size: 24px;
  }
  footer .heading .col {
    padding: 2px 0;
  }
  footer .heading .col01 {
    width: 127px;
    font-size: 20px;
    padding-top: 4px;
  }
  footer .heading .col02 {
    width: 382px;
  }
  footer .list-row {
    padding: 24px 10px 0 23px;
  }
  footer .list-row > li + li {
    margin-top: 9px;
  }
  footer .list-row .th {
    margin-right: 6px;
  }
  footer .list-row .txt {
    margin-right: 15px;
  }
  footer .list-row .txt:before {
    font-size: 14px;
    margin-right: 5px;
  }
  footer .map {
    height: 406px;
    margin: 48px 0 31px;
  }
  footer .map .btn-primary {
    margin-top: -10px;
  }
  footer .copyright {
    font-size: 14px;
    letter-spacing: 0.3em;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 60px 0 10px;
  }
  footer .footer-left {
    margin-bottom: 30px;
  }
  footer .footer-left:after {
    width: 100px;
    height: 96px;
    right: 5px;
    top: -34px;
    background-size: 100% 100%;
  }
  footer .logo {
    margin-left: 10px;
    width: 185px;
  }
  footer .footer-data {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #32281f;
    margin: 15px 0 10px;
  }
  footer .footer-data table {
    font-size: 12px;
  }
  footer .footer-data table th {
    font-size: 15px;
    width: 10%;
    padding: 14px 10px;
  }
  footer .footer-data table th:first-child {
    width: 40%;
  }
  footer .footer-data table td {
    padding: 11px 0;
  }
  footer .footer-data .round {
    width: 18px;
    height: 18px;
  }
  footer .footer-data .line {
    width: 15px;
    height: 15px;
    background-size: 100% 100%;
  }
  footer .footer-text {
    font-size: 12px;
  }
  footer .footer-text strong {
    letter-spacing: -0.025em;
  }
  footer .footer-text .tell {
    font-size: 20px;
  }
  footer .heading {
    -moz-box-shadow: 1px 1px 0 #d2d8d4;
    -webkit-box-shadow: 1px 1px 0 #d2d8d4;
    box-shadow: 1px 1px 0 #d2d8d4;
    font-size: 14px;
  }
  footer .heading .col01 {
    width: 30%;
    font-size: 12px;
    padding-top: 2px;
  }
  footer .heading .col02 {
    width: 70%;
  }
  footer .list-row {
    padding: 15px 0 0 10px;
  }
  footer .list-row > li + li {
    margin-top: 5px;
  }
  footer .list-row .th {
    margin-right: 6px;
  }
  footer .list-row .txt {
    margin-right: 10px;
  }
  footer .list-row .txt:before {
    font-size: 10px;
    margin-right: 4px;
  }
  footer .map {
    height: 250px;
    margin: 20px 0 10px;
  }
  footer .copyright {
    font-size: 12px;
    letter-spacing: 0;
  }
}
/* COMMON TITLES
 * ----------------------------------------------- */
.sec-title {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.sec-title .fa {
  display: block;
  color: #8cc919;
  margin-bottom: 5px;
}
.sec-title > span {
  font-weight: bold;
}

.sec-ttl {
  line-height: 1.2;
  color: #8cc919;
}
.sec-ttl .fa {
  line-height: 1;
}

@media print, (min-width: 768px) {
  .sec-title {
    font-size: 40px;
  }
  .sec-title .fa {
    font-size: 74px;
  }

  .sec-ttl {
    font-size: 30px;
  }
  .sec-ttl .fa {
    font-size: 36px;
    margin-right: 10px;
    position: relative;
    top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-title {
    font-size: 25px;
  }
  .sec-title .fa {
    font-size: 40px;
  }

  .sec-ttl {
    font-size: 16px;
  }
  .sec-ttl .fa {
    font-size: 15px;
    margin-right: 5px;
  }
}
/* COMMON BUTTONS
 * ----------------------------------------------- */
.btn-primary {
  width: 300px;
  display: table;
  height: 55px;
  position: relative;
  padding: 0 50px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #332620;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.btn-primary > span {
  display: table-cell;
  vertical-align: middle;
}
.btn-primary .fa {
  color: #fff;
  font-size: 22px;
  position: absolute;
  right: 28px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media print, (min-width: 768px) {
  .btn-primary {
    -moz-transition: ease 0.26s;
    -o-transition: ease 0.26s;
    -webkit-transition: ease 0.26s;
    transition: ease 0.26s;
  }
  .btn-primary:hover {
    background: #5c514d;
  }
  .ie .btn-primary {
    padding-bottom: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-primary {
    width: 200px;
    height: 35px;
    padding: 0 10px;
    font-size: 14px;
  }
  .btn-primary .fa {
    font-size: 16px;
    right: 10px;
  }
}
/* COMMON BANNER
 * ----------------------------------------------- */
.section-banner-cmn {
  position: relative;
}

@media print, (min-width: 768px) {
  .section-banner-cmn > .wrapper {
    max-width: 1500px;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-banner-cmn > .wrapper {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* PAGES
 * ----------------------------------------------- */
/* SECTION KEYCISUAL
 * ----------------------------------------------- */
.section-keyvisual .keyvisual-slide {
  overflow: hidden;
}
.section-keyvisual .keyvisual-slide img {
  display: block;
  width: 100%;
}
.section-keyvisual .item-slide {
  visibility: hidden;
}
.section-keyvisual .slick-slider .item-slide {
  visibility: visible;
}
.section-keyvisual .slick-arrow {
  background-color: #ffa600;
  position: absolute;
  top: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1250;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
}
.section-keyvisual .slick-prev {
  background-image: url(../img/common/btn_prev.png);
}
.section-keyvisual .slick-next {
  background-image: url(../img/common/btn_next.png);
}

@media print, (min-width: 768px) {
  .section-keyvisual {
    position: relative;
  }
  .section-keyvisual .keyvisual-slide .item-slide {
    width: 1524px;
    padding: 0 12px;
  }
  .section-keyvisual .slick-arrow {
    margin-top: -33px;
    width: 66px;
    height: 66px;
  }
  .section-keyvisual .slick-prev {
    left: 50%;
    margin-left: -795px;
  }
  .section-keyvisual .slick-next {
    right: 50%;
    margin-right: -795px;
  }
}
@media only screen and (max-width: 1600px) {
  .section-keyvisual .slick-prev {
    left: 10px;
  }
  .section-keyvisual .slick-next {
    right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section-keyvisual .keyvisual-slide .item-slide {
    width: auto;
    padding: 0;
  }
  .section-keyvisual .slick-arrow {
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-size: 100% auto;
  }
  .section-keyvisual .slick-prev {
    left: 10px;
  }
  .section-keyvisual .slick-next {
    right: 10px;
  }
}
.sec-news-cmn .title {
  line-height: 1.2;
  display: -webkit-flex;
  display: flex;
}
.sec-news-cmn .title .lik {
  background: #8cc919;
  display: block;
  color: #fff;
}
.sec-news-cmn .col-l {
  background: #f7fff9;
}
.sec-news-cmn .txt {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #cbeaa2;
  display: block;
}
.sec-news-cmn .tag {
  background: #fff;
  line-height: 1;
  color: #8cc919;
  min-width: 5.7em;
  text-align: center;
}
.sec-news-cmn .phone {
  border-bottom: 1px solid #607b1a;
  line-height: 1;
  color: #fff;
}
.sec-news-cmn .phone a {
  color: #fff;
}
.sec-news-cmn .phone > span {
  display: inline-block;
}

.ul-news-cmn > li {
  border-bottom: 1px dashed #8c968e;
}
.ul-news-cmn > li:nth-of-type(2) {
  border-bottom: none;
}
.ul-news-cmn a {
  display: block;
  position: relative;
}
.ul-news-cmn a:before {
  content: "";
  position: absolute;
  left: 0;
  background: #8cc919;
}
.ul-news-cmn .date {
  color: #8dca1c;
}
.ul-news-cmn .fa {
  position: absolute;
  right: 0;
  top: 50%;
  color: #8cc919;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media print, (min-width: 768px) {
  .sec-news-cmn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1300;
  }
  .sec-news-cmn .inner {
    background: #8cc919;
    padding: 2px 0;
    position: relative;
  }
  .sec-news-cmn .title {
    font-size: 20px;
  }
  .sec-news-cmn .title .lik {
    padding: 10px 30px;
  }
  .windows10.ie .sec-news-cmn .title .lik {
    padding-top: 12px;
  }
  .sec-news-cmn .col-l {
    width: 800px;
    padding: 5px 40px 8px 14px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sec-news-cmn .col-l .title {
    display: none;
  }
  .sec-news-cmn .col-r {
    width: 400px;
    padding: 11px 30px 6px 35px;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    position: absolute;
    right: 0;
    bottom: 0px;
    background: #8cc919;
  }
  .sec-news-cmn .group {
    padding: 4px 14px;
  }
  .sec-news-cmn .tag {
    font-size: 14px;
    padding: 8px 12px;
    margin-right: 10px;
  }
  .sec-news-cmn .time {
    font-size: 16px;
    padding-top: 1px;
  }
  .sec-news-cmn .phone {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 11px;
  }
  .sec-news-cmn .phone .tell {
    font-size: 40px;
  }

  .ul-news-cmn > li {
    padding: 12px 22px 10px;
  }
  .ul-news-cmn a {
    padding-left: 110px;
  }
  .ul-news-cmn a:before {
    top: 7px;
    bottom: 7px;
    width: 7px;
  }
  .ul-news-cmn .date {
    left: 30px;
    top: 4px;
    position: absolute;
    font-size: 14px;
  }
  .ul-news-cmn .fa {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-news-cmn {
    padding-bottom: 40px;
  }
  .sec-news-cmn .title {
    font-size: 16px;
  }
  .sec-news-cmn .title .lik {
    padding: 5px 15px;
  }
  .sec-news-cmn .col-l {
    border-bottom: 2px solid #8cc919;
  }
  .sec-news-cmn .col-r {
    padding: 5px 15px;
    background: #8cc919;
    margin: 0 -15px 40px;
  }
  .sec-news-cmn .group {
    padding: 7px 14px;
    text-align: center;
  }
  .sec-news-cmn .tag {
    font-size: 11px;
    padding: 6px 8px;
    margin-right: 5px;
  }
  .sec-news-cmn .time {
    font-size: 12px;
  }
  .sec-news-cmn .phone {
    font-size: 15px;
    padding-bottom: 5px;
  }
  .sec-news-cmn .phone .tell {
    font-size: 30px;
    margin-left: 5px;
  }

  .ul-news-cmn > li {
    padding: 10px 0;
  }
  .ul-news-cmn a {
    display: flex;
    padding-right: 15px;
  }
  .ul-news-cmn a:before {
    top: 5px;
    bottom: auto;
    height: 12px;
    width: 3px;
  }
  .ul-news-cmn .date {
    font-size: 11px;
    width: 28%;
    padding-left: 15px;
    padding-top: 2px;
  }
  .ul-news-cmn .ttl {
    width: 72%;
  }
  .ul-news-cmn .fa {
    font-size: 14px;
  }
}
/* SECTION TOP BANNER
 * ----------------------------------------------- */
.section-dermatology .col {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-dermatology .col:before,
.section-dermatology .col:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.section-dermatology .inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.section-dermatology .title {
  position: relative;
}
.section-dermatology .title .fa {
  color: #fff;
  position: absolute;
  left: 0;
}
.section-dermatology .general {
  background-image: url(../img/top/bg_banner01.jpg);
  justify-content: flex-end;
  display: -webkit-flex;
  display: flex;
}
.section-dermatology .general:before,
.section-dermatology .general:after {
  background-color: rgba(165, 214, 78, 0.5);
}
.section-dermatology .allergy {
  background-image: url(../img/top/bg_banner02.jpg);
}
.section-dermatology .allergy:before,
.section-dermatology .allergy:after {
  background-color: rgba(228, 226, 119, 0.5);
}

@media print, (min-width: 768px) {
  .section-dermatology .col {
    width: 50%;
    height: 300px;
  }
  .section-dermatology .inner {
    width: 600px;
    padding-top: 89px;
    padding-right: 44px;
  }
  .section-dermatology .title {
    font-size: 40px;
    padding-left: 70px;
    margin-bottom: 9px;
  }
  .section-dermatology .title .fa {
    font-size: 45px;
    top: 9px;
  }
  .section-dermatology .general:after {
    top: -10px;
  }
  .section-dermatology .general .inner {
    padding-left: 95px;
  }
  .section-dermatology .allergy:after {
    top: -10px;
  }
  .section-dermatology .allergy .inner {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .section-dermatology .col {
    margin-bottom: 5px;
    min-height: 150px;
    display: block;
  }
  .section-dermatology .inner {
    padding: 30px 15px 10px;
  }
  .section-dermatology .title {
    font-size: 20px;
    padding-left: 25px;
    margin-bottom: 5px;
  }
  .section-dermatology .title .fa {
    font-size: 20px;
    top: 9px;
  }
  .section-dermatology .general:after {
    top: -5px;
  }
  .section-dermatology .allergy:after {
    top: -5px;
  }
}
.section-follows {
  overflow-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}
.section-follows .heading {
  position: relative;
}
.section-follows .heading .title {
  line-height: 1.5;
  font-weight: bold;
}
.section-follows .ul-follows .thumb {
  background: #dcf1c0;
}
.section-follows .ul-follows .ttl {
  text-align: center;
}
.section-follows .box-follows .info {
  line-height: 1.7;
}

@media print, (min-width: 768px) {
  .section-follows {
    padding: 70px 0 0;
  }
  .section-follows .heading {
    padding-left: 215px;
    margin-bottom: 49px;
  }
  .section-follows .heading .image {
    position: absolute;
    left: 0;
    top: -19px;
  }
  .section-follows .heading .title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .section-follows .ul-follows {
    margin-bottom: 61px;
  }
  .section-follows .ul-follows > li {
    width: 200px;
    margin: 0 12px;
  }
  .section-follows .ul-follows .thumb {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 11px;
  }
  .section-follows .ul-follows .thumb img {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .section-follows .ul-follows .ttl {
    font-size: 20px;
  }
  .section-follows .box-follows {
    min-height: 288px;
    position: relative;
  }
  .section-follows .box-follows .thumb {
    width: 767px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .section-follows .box-follows .info {
    position: relative;
    z-index: 2;
    width: 585px;
    font-size: 16px;
    padding-top: 29px;
  }
  .section-follows .box-follows .info .ttl {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .section-follows .box-follows .info .btn-primary {
    margin: 30px 0 0;
  }
  .section-follows .box-follows .info .desc {
    max-width: 475px;
  }
}
@media only screen and (max-width: 767px) {
  .section-follows {
    padding: 40px 0 0;
  }
  .section-follows .heading {
    margin-bottom: 20px;
    position: relative;
    padding-left: 80px;
  }
  .section-follows .heading .image {
    width: 70px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .section-follows .heading .title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .section-follows .ul-follows {
    margin: 0 -5px 30px;
  }
  .section-follows .ul-follows > li {
    width: 50%;
    margin: 0 0 15px;
    padding: 0 5px;
  }
  .section-follows .ul-follows .thumb {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  .section-follows .ul-follows .thumb img {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 auto;
  }
  .section-follows .ul-follows .ttl {
    font-size: 14px;
  }
  .section-follows .box-follows {
    min-height: 0;
  }
  .section-follows .box-follows .info {
    font-size: 12px;
    padding-top: 15px;
  }
  .section-follows .box-follows .info .ttl {
    font-size: 15px;
    margin-bottom: 9px;
  }
  .section-follows .box-follows .info .btn-primary {
    margin: 20px 0 0;
  }
}
@media print, (min-width: 768px) {
  .page-top .navigation .wrapper {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.section-medical {
  background: url(../img/guide/bg.png) repeat-x 0 0;
  overflow-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  position: relative;
}
.section-medical .icn {
  position: absolute;
}
.section-medical .wrapper {
  position: relative;
  z-index: 5;
}

.box-cmn {
  background: #dcf1c0;
}
.box-cmn .title {
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #8cc919;
}
.box-cmn .inner {
  background-color: #fff;
}
.box-cmn .btn {
  color: #33261f;
  line-height: 1.2;
  text-align: center;
  border: 2px solid #33261f;
  background: #dcf1c0;
  position: relative;
  font-weight: bold;
}
.box-cmn .btn .fa {
  color: #33261f;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box-treatment {
  background: #ffecc8;
}
.box-treatment .title {
  color: #ffa600;
}
.box-treatment .btn {
  background: #ffecc8;
}

.box-expenses {
  background: #f8cdd9;
}
.box-expenses .title {
  color: #ea6c8c;
}
.box-expenses .btn {
  background: #f8cdd9;
}

.w-col-2 .ttl {
  font-weight: bold;
  background: #dcf1c0;
  *zoom: 1;
}
.w-col-2 .ttl:after {
  content: "";
  display: table;
  clear: both;
}
.w-col-2 .ttl > span {
  float: left;
}
.w-col-2 .ttl > .tag {
  float: right;
}
.w-col-2 .tag {
  background: #fff;
  line-height: 1;
  color: #8cc919;
}

.row-treatment .sec-ttl {
  color: #ffa600;
}
.row-treatment .w-col-2 .ttl {
  background: #ffecc8;
}
.row-treatment .w-col-2 .tag {
  color: #ffa600;
}

.row-expenses .sec-ttl {
  color: #ea6c8c;
}
.row-expenses .w-col-2 .ttl {
  background: #f8cdd9;
}
.row-expenses .w-col-2 .tag {
  color: #ea6c8d;
}

@media print, (min-width: 768px) {
  .section-medical {
    padding: 64px 0 165px;
    margin-top: 10px;
  }
  .section-medical .icn {
    width: 340px;
    height: 473px;
    top: 112px;
    right: 40px;
  }
  .section-medical .wrapper {
    width: 1100px;
  }
  .section-medical .sec-title {
    margin-bottom: 29px;
  }
  .section-medical .caption {
    margin-bottom: 52px;
  }
  .section-medical .row {
    margin-top: 55px;
  }
  .section-medical .row .sec-ttl {
    margin-bottom: 65px;
  }
  .section-medical .box-cmn {
    margin-top: 32px;
  }
  .section-medical .row-expenses .sec-ttl {
    margin-bottom: 35px;
  }

  .box-cmn {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 49px 24px 30px 30px;
  }
  .box-cmn .title {
    font-size: 34px;
    margin: -45px 0 20px -18px;
    text-shadow: #fff 5px 0 0, #fff 4.90033px 0.99335px 0,
      #fff 4.60531px 1.94709px 0, #fff 4.12668px 2.82321px 0,
      #fff 3.48353px 3.58678px 0, #fff 2.70151px 4.20736px 0,
      #fff 1.81179px 4.6602px 0, #fff 0.84984px 4.92725px 0,
      #fff -0.146px 4.99787px 0, #fff -1.13601px 4.86924px 0,
      #fff -2.08073px 4.54649px 0, #fff -2.94251px 4.04248px 0,
      #fff -3.68697px 3.37732px 0, #fff -4.28444px 2.57751px 0,
      #fff -4.71111px 1.67494px 0, #fff -4.94996px 0.7056px 0,
      #fff -4.99147px -0.29187px 0, #fff -4.83399px -1.27771px 0,
      #fff -4.48379px -2.2126px 0, #fff -3.95484px -3.05929px 0,
      #fff -3.26822px -3.78401px 0, #fff -2.4513px -4.35788px 0,
      #fff -1.53666px -4.75801px 0, #fff -0.56076px -4.96845px 0,
      #fff 0.4375px -4.98082px 0, #fff 1.41831px -4.79462px 0,
      #fff 2.34258px -4.41727px 0, #fff 3.17346px -3.86382px 0,
      #fff 3.87783px -3.15633px 0, #fff 4.4276px -2.32301px 0,
      #fff 4.80085px -1.39708px 0, #fff 4.98271px -0.41545px 0,
      0 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px rgba(0, 0, 0, 0.15),
      5px 5px 5px rgba(0, 0, 0, 0.15), 7px 7px 5px rgba(0, 0, 0, 0.15),
      7px 0 5px rgba(0, 0, 0, 0.15);
  }
  .box-cmn .inner {
    padding: 20px 60px 35px;
  }
  .box-cmn .btn {
    min-width: 150px;
    font-size: 18px;
    margin: 12px 0 0 12px;
    padding: 12px 45px 12px 32px;
  }
  .windows10.ie .box-cmn .btn {
    padding-top: 11px;
  }
  .box-cmn .btn .fa {
    font-size: 20px;
    right: 12px;
  }
  .box-cmn .wrap-btn {
    margin: 8px 0 0 25px;
  }

  .box-practice {
    padding-bottom: 40px;
  }
  .box-practice .wrap-btn {
    margin-top: 39px;
  }
  .box-practice .inner {
    padding-bottom: 43px;
  }

  .box-expenses {
    margin-bottom: 112px;
  }

  .w-col-2 .col {
    width: 500px;
  }

  .w-col-2 .ttl {
    padding: 11px 20px;
    margin-bottom: 16px;
  }
  .windows10.ie .w-col-2 .ttl {
    padding-top: 10px;
  }
  .w-col-2 .tag {
    font-size: 16px;
    padding: 8px 17px;
  }
  .windows10.ie .w-col-2 .tag {
    padding-top: 7px;
  }

  .row-expenses {
    margin-top: 76px;
  }
}
@media only screen and (max-width: 767px) {
  .section-medical {
    padding: 30px 0 30px;
  }
  .section-medical .icn {
    width: 100px;
    top: 10px;
    right: 0;
  }
  .section-medical .sec-title {
    margin-bottom: 15px;
  }
  .section-medical .caption {
    margin-bottom: 25px;
  }
  .section-medical .row {
    margin-top: 30px;
  }
  .section-medical .row .sec-ttl {
    margin-bottom: 10px;
  }
  .section-medical .box-cmn {
    margin-top: 16px;
  }

  .box-cmn {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 25px 15px;
  }
  .box-cmn .title {
    font-size: 17px;
    margin: -20px 0 10px -8px;
    text-shadow: #fff 2px 0 0, #fff 1.75517px 0.95885px 0,
      #fff 1.0806px 1.68294px 0, #fff 0.14147px 1.99499px 0,
      #fff -0.83229px 1.81859px 0, #fff -1.60229px 1.19694px 0,
      #fff -1.97998px 0.28224px 0, #fff -1.87291px -0.70157px 0,
      #fff -1.30729px -1.5136px 0, #fff -0.42159px -1.95506px 0,
      #fff 0.56732px -1.91785px 0, #fff 1.41734px -1.41108px 0,
      #fff 1.92034px -0.55883px 0, 0 2px 2px rgba(0, 0, 0, 0.35);
  }
  .box-cmn .inner {
    padding: 10px 20px 20px;
  }
  .box-cmn .btn {
    width: 107px;
    font-size: 12px;
    margin: 6px 0 0 6px;
    padding: 6px 25px 6px 15px;
    border-width: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 43px;
  }
  .box-cmn .btn .fa {
    font-size: 14px;
    right: 6px;
  }
  .box-cmn .wrap-btn {
    margin: 8px 0 0 -6px;
  }

  .w-col-2 .col {
    margin-bottom: 25px;
  }
  .w-col-2 .ttl {
    padding: 5px 10px;
    margin-bottom: 8px;
  }
  .w-col-2 .tag {
    font-size: 9px;
    padding: 7px 10px;
  }
  .row-expenses {
    margin-top: 30px;
  }
}

/* hover */
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  アクセス	*/
/*=================================================================================================================================*/
.access_p {
  font-size: 27px;
  margin-bottom: 11px;
  color: #85ca10;
}

.parking {
  background: #dcf1c0;
  text-align: center;
  padding: 5px 10px;
}
.parking_bus {
  background: #ffecc8;
  text-align: center;
  padding: 5px 10px;
}

.mt15 {
  margin-top: 15px;
}

.db {
  display: block;
}

.access_di {
  margin-top: 15px;

  padding: 10px;
}
.access_di li {
  margin-bottom: 20px;
}
.access_di li:last-of-type {
  margin-bottom: 0;
}
.access_di span {
  display: block;
  border-bottom: 1px dashed #000;
  padding-bottom: 8px;
  margin-bottom: 10px;
  color: #85ca10;
  font-weight: bold;
}
.access_di span:before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}

.bus_time {
  font-size: 20px;
  font-weight: bold;
}
.bus_time:before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}

.orange {
  color: #ffa600 !important;
}

.orange {
  color: #ffa600 !important;
}

/*=================================================================================================================================*/
/**  診療案内	*/
/*=================================================================================================================================*/
/* 疾患 */
.bd_01 {
  border: 2px solid #000;
  background: #fff;
  margin-bottom: 0.8em;
  width: 100%;
}

.m_pattern_b {
  margin-bottom: 25px;
}

.disease_wrapper {
  margin-bottom: 60px;
}
.disease_wrapper .flex_item_clounm_2 {
  margin-bottom: 0;
}
.disease_wrapper p {
  margin-bottom: 1.2em;
}

.h4_disease_01 {
  font-weight: bold;
  background: #dcf1c0;
  padding: 13px 20px;
  margin-bottom: 15px;
}
.bgc_orange {
  background: #ffecc8;
}
.bgc_pink {
  background: #fbdfe7;
}


.h5_base {
  text-align: center;
  padding: 10px;
  font-weight: bold;
}
.method {
  background: #fbdfe7;
  position: relative;
}
.method:after {
  width: 93px;
  height: 102px;
  position: absolute;
  top: -35px;
  right: -22px;
  background: url(../img/guide/pink_rabbit.png) no-repeat;
  content: "";
}

.h5_large {
  border-bottom: 1px dashed #000;
  padding: 15px 0;
}

.disease_mLR {
  margin: 0 40px;
}

.uline_y {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(0, #f8e81c)
  );
  background: linear-gradient(transparent 70%, #f8e81c 0);
  font-weight: 700;
}

.bgcglay {
  background: #dbf1c0;
  margin: 0 3% 3%;
}
.btn_c_orange{
  background: #ffecc8;
}
.btn_item {
  color: #33261f;
  line-height: 1.2;
  text-align: center;
  border: 2px solid #33261f;
  position: relative;
  font-weight: bold;

  min-width: 150px;
  font-size: 18px;
  margin: 12px 0 0 12px;
  padding: 12px 45px 12px 32px;
}

.col2_inner_p {
  font-size: 15px;
  padding: 15px;
  background: #dbf1c0;
}

/*==========================================================================*/
/**  PC	*/
/*==========================================================================*/
@media only screen and (min-width: 767px) {
  .only_pc_none{
    display: none;
  }
  .h4_disease{
    font-size: 120%;
    margin-top: 20px;
  }
  .clounm_1 {
    position: relative;
  }
  .clounm_1:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
  }

  .floatL {
    float: left;
  }
  /* ナビ */
  #clinic .navigation .ul-nav li:nth-of-type(3) a,
  #doctor .navigation .ul-nav li:nth-of-type(4) a,
  #access .navigation .ul-nav li:nth-of-type(6) a,
  #faq .navigation .ul-nav li:nth-of-type(5) a {
    color: #8cc919;
  }

  /* よくあるご質問 */
  .faq_clounm_1 {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .news_title{
  margin-bottom: 0 !important;
}

  .faq_clounm_1:last-of-type {
    margin-bottom: 0;
  }

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

  .row_mid {
    margin-top: 20px;
  }

  .table_typ_01 th {
    width: 200px;
  }

  #clinic .w-col-2 .col {
    width: 520px;
  }
  .page-guide .w-col-2 .col {
    width: 520px !important;
  }

  .img_wrapper .ttl {
    font-size: 22px;
  }

  .map {
    height: 500px;
  }

  .flex_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flex_item_clounm_3 {
    width: 31.5%;
  }
  .flex_item_clounm_2 {
    width: 48.5%;
    margin-bottom: 25px;
  }
  .flex_item_clounm_4 {
    width: 23.5%;
    margin-bottom: 25px;
  }
  .flex_item_clounm_2,
  .flex_item_clounm_3,
  .flex_item_clounm_4 {
    box-sizing: border-box; /*通常の記述*/
    -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
    -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
  }

  .flex_item_clounm_60 {
    width: 58%;
  }
  .flex_item_clounm_40 {
    width: 38%;
  }

  .w100 {
    width: 100%;
  }

  .img_shikkan {
    margin-right: 20px;
  }
  .img_shikkan + p {
    margin-top: 10px;
    float: left;
    display:block;
    width:780px;
  }
  #clinic .img_box img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* お知らせ */
  #news h2.title {
    margin-bottom: 0;
  }
} /*　■■■■■ ここまで ■■■■■　*/

.tac {
  text-align: center;
}

.pLR1rem {
  padding-left: 1rem;
  padding-right: 1rem;
}
.ma1rem{
  margin: 1rem 1rem 0.5rem 1rem !important;
}

.icon_q {
  position: relative;
  padding-left: 60px !important;
}

.icn_b {
  font-size: 40px;
  position: absolute;
  top: 6px;
  left: 14px;
}

.w-col-3 {
  width: calc((100% - 30px) / 3);
}

.mb0 {
  margin-bottom: 0 !important;
}
.section_lst {
  padding-bottom: 40px !important;
}

.table_typ_01_wrapper {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: 3px solid #32281f;
  margin: 31px 0 23px;
  _zoom: 1;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.table_typ_01 {
  background-color: #fff;

  width: 100%;
}
.table_typ_01 th {
  font-weight: 600;
  background: #dbf1c0;
  border-top: none !important;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid #32281f;
  border-bottom: 1px solid #32281f;
}

.table_typ_01 td {
  padding: 11px 25px;
  vertical-align: middle;

  border-right: 1px solid #32281f;
  border-bottom: 1px solid #32281f;
}

.m_pattern_a {
  margin-bottom: 40px;
}

.img_wrapper {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  _zoom: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.img_wrapper .ttl {
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 2px;
}

.map {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  _zoom: 1;
  overflow: hidden;
}

.table_yoko th,
.table_yoko td {
  width: 100%;
  display: block;
  border-right: none;
}

/* ドクター紹介 */

#doctor .caption {
  margin-bottom: 30px;
}
.ais {
  padding: 6% 8% 4% 8%;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.9);
  /* border: 3px solid #32281f; */
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 4px 4px #f0f0f0;
}
.intyo {
  text-align: right;
}
.intyo span {
  display: block;
  font-size: 130%;
}

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

.ais::after {
  width: 196px;
  height: 186px;
  position: absolute;
  top: 30px;
  right: 50px;
  background: url(../img/common/icn_rabbit.png) no-repeat 0 0;
  content: "";
}

.h5_title {
  border: 2px solid #000;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  padding: 3px 10px;
  margin: 20px 0 10px;
  background: #fff;
}

.disease_type {
  padding: 13px 20px;
}
.disease_type dt {
  margin-bottom: 2px;
}
.disease_type dt:before {
  font-size: 70% !important;
  margin-right: 5px;
  display: inline-block;
  content: "●";
}
.disease_type.icon_caution dt:before {
  font-size: 100% !important;
  margin-right: 5px;
  display: inline-block;
  font-family: 'FontAwesome';
  content: "\f05d";
}
.disease_type dd {
  padding-left: 1.2em;
  font-size: 15px;
  margin-bottom: 0.8em;
}
.table_price{
  background: #dbf1c0;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;
  border-radius:8px;
  margin: 0 2%;
  max-width: 560px;
  width:100%;
  margin: 20px auto;
  padding:15px 15px 5px 15px;
}
.table_price_max56{
  max-width: 670px;
}
.th-green{
    background: #91bf6a !important;
}

@media print, (min-width: 768px){
  .th-green{
    width: 80px;
  }
}
.table_price h3{
  text-align:center;
  font-size:19px;
  font-weight:bold;
  padding-bottom:10px;
}
.table_price table{
  border-top: 1px dashed #000;
  margin-bottom:15px;
  width: 100%;
}
.table_price tr{border-bottom: 1px dashed #000;padding-bottom: 11px;}
.table_price th{
 padding: 5px 10px 5px;
}
.table_price td{
 padding: 10px 10px 5px;
 font-size: 16px;
 text-align: right;

}
.table_price td span{
  font-weight: bold;
  font-size: 18px;
  margin-left: 1em;
  width: 78px;
  display: inline-block;
}


.fzs{
  font-size: 14px;
  display: block;
}

.h-col-01{
  color: #EB6D8D;
}

/*======================================================================================*/
/**  スマホ	*/
/*======================================================================================*/
@media print, (max-width: 768px) {
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    font-size: 99%;
  }

  /* お知らせ */
  .ul-news-cmn .date {
    font-size: 11px;
    width: 100%;
    padding-left: 15px;
    padding-top: 2px;
  }
  .img_box img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .ul-news-cmn a {
    display: block;
  }
  .ul-news-cmn .date {
    display: block;
  }

  /* よくあるご質問 */
  .icn_b {
    font-size: 18px;
  }
  .icon_q {
    padding-left: 38px !important;
  }
  .img_shikkan {
    width: 60%;
    margin: 0 auto;
  }
  .map {
    height: 300px;
  }

  .w-col-3 {
    width: 100%;
  }

  .ais::after {
    width: 80px;
    height: 110px;
    right: 10px;
    background: url(../img/common/icn_rabbit.png) no-repeat 0 0;
    background-size: contain;
  }
  .w100 {
    width: 100%;
  }

  #access .flex_item_clounm_2 {
    margin-bottom: 15px;
  }

  .bus_time {
    font-size: 14px !important;
    margin-top: 20px;
  }
  .access_p {
    font-size: 17px !important;
  }

  .disease_mLR {
    margin: 0 5%;
  }
  .disease_type dd {
    font-size: unset;
  }

  .method:after {
    width: 57px;
    height: 68px;
    top: -16px;
    right: -12px;
    background: url(../img/guide/pink_rabbit.png) no-repeat;
    background-size: contain;
  }
  .h5_large {
    padding: 10px 0;
  }
  .m_pattern_b {
    margin-bottom: 18px;
  }


.btn_item  {
  min-width: 70px;
  font-size: 12px;
  margin: 6px 0 0 6px;
  padding: 6px 25px 6px 15px;
  border-width: 1px;
}

/* AGA 費用 */
.table_price{
  width:90%;
  margin: 20px auto;
}

.table_price table{
  border-top:none;
  margin-bottom:5px;
  width: 100%;
}
.table_price tr{border-bottom: none;padding-bottom: 11px;}
.table_price th{
 padding: 8px 10px 8px;
 display:block;
 line-height:1.3;

 text-align: center;
 font-size:17px;
 font-weight:bold;

  border-bottom: 1px dashed #000;
  background:#B9E691;
}
.table_price td{
 padding: 3px 10px 5px;
 margin-bottom:5px;
 font-size: 14px;
 text-align: center;
 display:block;


}
.table_price td span{
  font-size: 16px;
  display: inline-block;
}
.fzs {
  font-size: 12px;
  display: block;
}




} /*　■■■■■ ここまで ■■■■■　*/




