﻿/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
h1, h2, h3, h4, h5, h6, p, span, li, div, section, aside, a, button, input, textarea, label, pre{
  font-family: "M PLUS 1", sans-serif;  
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  letter-spacing: .05em;

}
p, div{
    color: #333;
    line-height: 1.85;
}


html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
footer,
header,
nav,
section {
    display: block
}

h1 {
    font-size: 1.5em;
    margin: 0.67em 0;
	text-align: center;
}

figcaption,
figure,
main {
    display: block
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

audio,
video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details,
menu {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: .75s
}

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }

    30% {
        transform: scale3d(1.25, 0.75, 1)
    }

    40% {
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, 0.85, 1)
    }

    65% {
        transform: scale3d(0.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, 0.95, 1)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {

    from,
    to {
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg)
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        transform: none
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {

    from,
    11.1%,
    to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        transform: skewX(0.39063deg) skewY(0.39063deg)
    }

    88.8% {
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97)
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9)
    }

    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

* {
    box-sizing: border-box
}

body {
    font-size: .8em;
    line-height: 2.2;
    /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
    /* font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "メイリオ", Meiryo, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif; */
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    /* font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif; */
}

img {
    max-width: 100%;
    height: auto
}

address {
    font-style: normal
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0
}

a {
    color: inherit;
    text-decoration: none
}

.wrap,
.wrap--inner,
.nav,
.section .section-body .wrap {
    width: 92%;
    max-width: 2000px;
    margin: auto;
    position: relative
}

.wrap--inner,
.section .section-body .wrap,
.section .section-body .wrap--inner {
    max-width: 1180px;
    width: 100%
}

.cf::after,
.row::after,
.front-access-list::after,
.news-list .list-item::after,
.archive-list .list-item::after,
.entry .entry-inner::after,
.single-pagination::after,
.service-content-box .checklist::after {
    clear: both;
    content: "";
    display: table
}

.mt10 {
    margin-top: 10px
}

.mt20 {
    margin-top: 20px
}

.mt40 {
    margin-top: 40px
}

.mt80 {
    margin-top: 80px
}

.mb10 {
    margin-bottom: 10px
}

.mb20 {
    margin-bottom: 20px
}

.mb30 {
    margin-bottom: 30px
}

.mb40 {
    margin-bottom: 40px
}

.mb80 {
    margin-bottom: 80px
}

.ta-c {
    text-align: center
}

.ta-l,
.box .box-title.ta-l {
    text-align: left
}

.ta-r {
    text-align: right
}

.row-fixed {
    margin-right: -15px;
    margin-left: -15px
}

.row-fixed .col-x-1,
.row-fixed .col-x-2,
.row-fixed .col-x-3,
.row-fixed .col-x-4,
.row-fixed .col-x-5,
.row-fixed .col-x-6,
.row-fixed .col-x-7,
.row-fixed .col-x-8,
.row-fixed .col-x-9,
.row-fixed .col-x-10,
.row-fixed .col-x-11,
.row-fixed .col-x-12 {
    float: left;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 1px
}

.row-fixed .col-x-1 {
    width: 8.33333%
}

.row-fixed .col-x-2 {
    width: 16.66667%
}

.row-fixed .col-x-3 {
    width: 25%
}

.row-fixed .col-x-4 {
    width: 33.33333%
}

.row-fixed .col-x-5 {
    width: 41.66667%
}

.row-fixed .col-x-6 {
    width: 50%
}

.row-fixed .col-x-7 {
    width: 58.33333%
}

.row-fixed .col-x-8 {
    width: 66.66667%
}

.row-fixed .col-x-9 {
    width: 75%
}

.row-fixed .col-x-10 {
    width: 83.33333%
}

.row-fixed .col-x-11 {
    width: 91.66667%
}

.row-fixed .col-x-12 {
    width: 100%
}

.pagenation {
    margin: 1em 0
}

.pagenation:after,
.pagenation ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden
}

.pagenation ul {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.pagenation li {
    float: left;
    list-style: none outside none;
    margin-left: 3px
}

.pagenation li:first-child {
    margin-left: 0
}

.pagenation li.active {
    background-color: #999999;
    border-radius: 3px;
    color: #FFFFFF;
    cursor: not-allowed;
    padding: 10px 20px
}

.pagenation li a {
    background: none repeat scroll 0 0 #CCCCCC;
    border-radius: 3px;
    color: #FFFFFF;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.pagenation li a:hover {
    background-color: #444444;
    color: #FFFFFF;
    opacity: 0.8;
    transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: ease
}

a.link {
    text-decoration: underline
}

a.link.pink {
    color: #FF6D7F
}

.red {
    color: #FF6D7F
}

.teal {
    color: #4DBDC2
}

.oflow {
    overflow: hidden
}



.mincho,
.recruit-greeting .wrap .recruit-greeting-title,
.recruit-greeting .wrap--inner .recruit-greeting-title,
.recruit-greeting .nav .recruit-greeting-title,
.info-policy-list .list-item .title,
.info-policy-list .list-item .title-sub {
    /* font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif */
}

.circle,
.time-table-wrap .time-table tbody td.on:after {
    position: relative
}

.circle:after,
.time-table-wrap .time-table tbody td.on:after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #aaa;
    display: block;
    position: absolute
}

table {
    border-collapse: collapse;
    width: 100%
}

table.vt th,
table.vt td {
    vertical-align: top
}

table.nb-tbl tr th,
table.nb-tbl tr td {
    font-weight: normal;
    text-align: left;
    padding: 5px 10px
}

table.table.ta-c th,
table.table.ta-c td {
    text-align: center
}

table.table th,
table.table td {
    border: 1px solid #ccc;
    padding: 10px;
    font-weight: normal;
    text-align: left
}

table.table th {
    color: #000;
    background-color: #eee
}

hr.hr {
    border: 0;
    border-bottom: 2px dashed #eee;
    margin: 20px 0
}

.small {
    font-size: .8em
}

.open {
    position: fixed;
    top: 11px;
    left: 10px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
    display: none;
    transform: scale(0.84);
}

.open span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #77AA32;
    position: absolute;
    top: -20px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto
}

.open span:before,
.open span:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: #77AA32;
    position: absolute;
    transition: .4s ease
}

.open span:before {
    top: -10px
}

.open span:after {
    top: 10px
}

.open .open-text {
    position: absolute;
    bottom: 4px;
    text-align: center;
    font-size: .8em;
    width: 100%;
    color: #000
}

.open.show .open-text {
    color: #fff
}

.open.show span {
    height: 0
}

.open.show span:before {
    transform: rotate(45deg);
    top: 0
}

.open.show span:after {
    transform: rotate(-45deg);
    top: 0
}

.nav {
    max-width: 1200px;
}

.nav .nav-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    text-align: center;
}

.nav .nav-menu .menu-item {
    flex-grow: 1;
    position: relative;
    border-left: 1px solid #ccc;
}

.nav .nav-menu .menu-item:last-of-type {
    border-right: 1px solid #ccc
}

.nav .nav-menu .menu-item a {
    display: block;
    padding: 2px 8px
}

.nav .nav-menu .menu-item>a {
    /* display: block; */
    /* background-repeat: no-repeat; */
    /* background-position: 8px 3px; */
    /* background-size: 25px; */
    /* padding: 2px 10px; */
    /* font-size: 15px; */
}

.nav .nav-menu .menu-item>a:hover:after {
    background-color: #5f9a67
}

.nav .nav-menu .menu-item>a:after {
    content: "";
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    display: block;
    width: 98%;
    height: 4px;
    background-color: none;
    transition: .2s ease
}

.main-image {
    max-width: 2000px;
    margin: 0 auto;
    position: relative
}

.main-image img {
    display: block
}

.main-image>* {
    display: block
}

.main-image .main-image-item-1,
.main-image .main-image-item-2,
.main-image .main-image-item-3 {
    position: absolute
}

.main-image .main-image-item-1 {
    top: 16%;
    right: 0;
    left: 0;
    margin: auto;
    width: 7.4%
}

.main-image .main-image-item-2 {
    right: 2%;
    bottom: 2%;
    margin: auto;
    width: 26.5%
}

.main-image .main-image-item-3 {
    margin: auto;
    right: 0;
    left: 0;
    bottom: 18%;
    width: 29%
}

.entry-main-image {
    position: relative;
    max-width: 2000px;
    margin: 0 auto 40px
}

.entry-main-image img {
    display: block
}

.entry-main-image .entry-main-image-title {
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    color: #4D4D4D;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 800;
    max-width: 1180px;
    width: 90%
}

.hentry p {
    margin: 0;
    margin-bottom: 1em
}

.hentry .inner {
    padding-right: 20px;
    padding-left: 20px
}

.hentry h2,
.hentry h3 {
    text-align: center;
    font-weight: 400;
    /* font-family: "M Plus 1"; */
    margin-bottom: 1.6em
}

.hentry h2 {
    font-size: 32px
}

.hentry h2.mb {
    margin-bottom: 0
}

.hentry h3 {
    font-size: 24px;
    border-bottom: 1px solid #5f9a67;
    position: relative
}

.hentry h3:after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #5f9a67
}

.hentry h4 {
    font-size: 20px
}

.hentry .time-table-wrap {
    font-size: 1.1em
}

.hentry .time-table-wrap .time-table thead th,
.hentry .time-table-wrap .time-table thead td {
    color: #fff;
    background-color: #5f9a67
}

.hentry .time-table-wrap .time-table thead th:first-child,
.hentry .time-table-wrap .time-table thead td:first-child {
    border: 0
}

.hentry .time-table-wrap .time-table thead th,
.hentry .time-table-wrap .time-table thead td,
.hentry .time-table-wrap .time-table tbody th,
.hentry .time-table-wrap .time-table tbody td {
    border: 0;
    border-bottom: 1px solid #ccc
}

.hentry .time-table-wrap .time-table tbody th,
.hentry .time-table-wrap .time-table tbody td {
    padding: 12px
}

.hentry .time-table-wrap .time-table-aside>div.aside-1 {
    color: #bb5a5c;
    background-color: transparent
}

.section {
    padding: 30px 0 40px;
    margin: 0;
    background-size: cover;
    background-position: top center;
    letter-spacing: 1px
}

.section.mod {
    margin: 0 30px
}

.section.section-news {
    padding: 80px 0 120px
}

.section.section-2 {
    background-image: url(../img/top_info_bg.jpg);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #E5E7EB
}

.section.section-6 {
    padding-bottom: 20px
}

.section.staff-section--policy {
    background-color: #EFF7F1
}

.section.clinic-section--info {
    padding-bottom: 0
}

.section.clinic-section--info .bg-clinic-1 {
    max-width: 2000px;
    margin: auto;
    background: url(../img/clinic_img_3.png) bottom right no-repeat;
    padding: 60px 0
}

.section.clinic-section--info .bg-clinic-1 .bg-clinic-inner {
    max-width: 1000px;
    width: 92%;
    margin: auto;
    padding-right: 20%
}

.section.clinic-section--info .bg-clinic-1 .bg-clinic-inner>* {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0
}

.section.clinic-section--info .bg-clinic-1 .bg-clinic-inner .clinic-services-dl {
    position: relative;
    border: 0;
    margin: 0
}

.section.clinic-section--info .bg-clinic-1 .bg-clinic-inner .clinic-services-dl dt {
    margin: 0;
    position: absolute;
    text-align: center;
    color: #fff;
    background-color: #877349;
    left: 0;
    border-radius: 4px;
    padding: 0 10px
}

.section.clinic-section--info .bg-clinic-1 .bg-clinic-inner .clinic-services-dl dd {
    color: #877349;
    margin: 0;
    padding-left: 100px
}

.section .section-title {
    /* font-family: "M Plus 1"; */
    font-weight: normal;
    color: #5f9a67;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    line-height: 1.8
}

.section .section-title:before {
    content: "";
    display: none;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1
}

.section .section-body p {
    margin: 0
}

.section .section-body h4.mincho,
.section .section-body .recruit-greeting .wrap h4.recruit-greeting-title,
.recruit-greeting .wrap .section .section-body h4.recruit-greeting-title,
.section .section-body .recruit-greeting .wrap--inner h4.recruit-greeting-title,
.recruit-greeting .wrap--inner .section .section-body h4.recruit-greeting-title,
.section .section-body .recruit-greeting .nav h4.recruit-greeting-title,
.recruit-greeting .nav .section .section-body h4.recruit-greeting-title,
.section .section-body .info-policy-list .list-item h4.title,
.info-policy-list .list-item .section .section-body h4.title,
.section .section-body .info-policy-list .list-item h4.title-sub,
.info-policy-list .list-item .section .section-body h4.title-sub {
    margin: 0 0 12px 0;
    font-size: 1.6em;
    color: #3C3C3C
}

.section .section-body .inner-wrap {
    max-width: 800px;
}

.section .h3 {
    font-family: "M Plus 1";
    font-size: 35px;
    font-weight: 400
}

.section .h3 .h3-inner {
    display: inline-block;
    border-bottom: 1px dashed #ccc;
    padding: 0 10px 10px 66px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 66px
}

.section .h3.service-men-title .h3-inner {
    color: #43AEEE
}

.section .h3.service-women-title .h3-inner {
    color: #FF6D7F
}

.section .h3.service-kids-title .h3-inner {
    color: #F39800
}

.section .h3.service-title--2--1 .h3-inner {
    color: #5f9a67
}

.section .h3.service-title--2--2 .h3-inner {
    color: #F39800
}

.section .h3.service-title--2--3 .h3-inner {
    color: #BDA8D6
}

.section .h3.service-title--2--4 .h3-inner {
    color: #43AEEE
}

.section .h3.jihi-title-2 .h3-inner {
    color: #4DBDC2
}

.section .h3.jihi-title-3 .h3-inner {
    color: #43AEEE
}

.section .h3.jihi-title-4 .h3-inner {
    color: #FF6D7F
}

.section .h4 {
    font-weight: normal;
    background: url(../img/h4_bg_header.png) no-repeat 0 9px, url(../img/h4_bg.png) bottom left repeat-x;
    color: #6A4E3C;
    padding: 0 0 5px 56px;
    margin: 0 auto 20px;
    font-family: "M Plus 1";
    font-size: 28px
}

.section .h5 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #FF5458;
    font-family: "M Plus 1"
}

.section .h6 {
    margin: 0 auto;
    font-size: 24px;
    font-family: "M Plus 1";
    font-weight: 400
}

.section .label-title {
    color: #fff;
    padding: 5px 15px;
    font-size: 25px;
    background-color: #7A6A56;
    font-weight: 400;
    margin: 0 auto 20px;
    border-radius: 9px
}

.section .label-title.blue {
    background-color: #43AEEE
}

.section .label-title.pink {
    background-color: #FF6D7F
}

.section .label-title.orange {
    background-color: #F39800
}

.section .label-title.green {
    background-color: #5f9a67
}

.section .label-title.purple {
    background-color: #BDA8D6
}

.section .label-title.teal {
    background-color: #4DBDC2
}

.section .label-title.light-pink {
    background-color: #F8AEC7
}

.section .dot-title {
    position: relative;
    font-size: 25px;
    color: #7A6A56;
    font-weight: 400;
    padding: 0 0 5px;
    margin: 0 auto 20px;
    background: url(../img/service2_h4_bg_1.png) 0 bottom repeat-x;
    padding-left: 40px
}

.section .dot-title.pink:before {
    color: #F8AEC7
}

.section .dot-title:before {
    content: "●";
    color: #4DBDC2;
    position: absolute;
    left: 0
}

.front-access-list {
    display: table
}

.front-access-list .access-item {
    width: 50%
}

.front-access-list .access-item iframe {
    display: block
}

.front-access-list .access-item.access-info {
    background: url(../img/top_access_bg.jpg) right center no-repeat;
    color: #fff;
    padding: 15px 15px 15px 3%;
    background-color: rgba(0, 0, 0, 0.6777)
}

.front-access-list .access-item.access-info aside {
    display: inline-block;
    background: #fff;
    color: #000;
    margin-top: 25px;
    font-size: 18px
}

.front-access-list .access-item.access-info aside a {
    display: block;
    padding: 3px 46px 2px 40px;
    background: url(../img/top_news_bg.png) 93% 13px no-repeat;
    background-size: 9px;
    overflow: hidden;
    position: relative
}

.front-access-list .access-item.access-info aside a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: .4s ease
}

.front-access-list .access-item.access-info aside a:hover:before {
    transform: translateX(0)
}

.front-access-list .access-item.access-info h4 {
    margin: 0 auto 10px;
    font-weight: normal
}

.front-feat-list {
    margin: auto
}

.front-feat-list .feat-item {
    position: relative;
    aspect-ratio: 1 / 1;
}

.front-feat-list .feat-item a {
    display: block
}

.front-feat-list .feat-item img {
    display: block
}

.front-feat-list .feat-item .on-text {
    position: absolute;
    bottom: 10px;
    padding: 0;
    width: 80%;
    color: #515457;
    background: rgba(255, 255, 255, 0.7);
    font-size: 1.6em;
    margin: auto;
    right: 0;
    left: 0;
    text-align: center;
    transition: .2s ease;
    overflow: hidden;
    z-index: 20
}

.front-feat-list .feat-item .on-text:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-left: 12px solid #ccc;
    position: absolute;
    right: -5px;
    bottom: -6px;
    transform: rotate(45deg)
}

.front-feat-list .feat-item .img img {
    opacity: 0
}

.front-feat-list .feat-item.feat-1 .text:before {
    background-image: url(../img/top_content_1_pc.webp)
}

.front-feat-list .feat-item.feat-2 .text:before {
    background-image: url(../img/top_content_5_pc.webp)
}

.front-feat-list .feat-item.feat-3 .text:before {
    background-image: url(../img/top_content_6_pc.webp)
}

.front-feat-list .feat-item.feat-4 .text:before {
    background-image: url(../img/top_content_4_pc.webp)
}

.front-feat-list .feat-item.feat-5 .text:before {
    background-image: url(../img/top_content_5_pc.webp)
}

.front-feat-list .feat-item.feat-6 .text:before {
    background-image: url(../img/top_content_2_pc.webp)
}

.front-feat-list .feat-item .text {
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    width: 100%;
    min-height: 100%;
    z-index: 10;
    position: absolute;
    top: 0;
    line-height: 1.8;
    transition: .4s ease
}

.front-feat-list .feat-item .text:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover
}

.front-feat-list .feat-item .text:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(95, 154, 103, 0.8);
    opacity: 0;
    z-index: -1
}

.front-feat-list .feat-item .text .text-inner {
    position: relative;
    padding: 20% 15% 20px;
    width: 100%;
    min-height: 100%;
    opacity: 0;
    color: #fff;
}

.front-feat-list .feat-item .text .more {
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #fff;
    color: #5f9a67;
    line-height: 1.2;
    font-size: 14px;
    width: 90px;
    text-align: center;
    margin: 10px auto auto
}

.front-feat-list .feat-item:hover:after {
    opacity: 1
}

.front-feat-list .feat-item:hover .text {
    opacity: 1
}

.front-feat-list .feat-item:hover .text .text-inner {
    opacity: 1
}

.front-feat-list .feat-item:hover .text:after {
    opacity: 1
}

.front-feat-list .feat-item:hover .on-text {
    opacity: 0
}

.service-num-list.service-num-list-1 .list-item .list-title {
    background: url(../img/service_h4_bg_1.png) 0 bottom repeat-x
}

.service-num-list.service-num-list-1 .list-item .list-title span {
    background-color: #43AEEE
}

.service-num-list.service-num-list-2 .list-item .list-title {
    background: url(../img/service_h4_bg_2.png) 0 bottom repeat-x
}

.service-num-list.service-num-list-2 .list-item .list-title span {
    background-color: #FF6D7F
}

.service-num-list.service-num-list-3 .list-item .list-title {
    background: url(../img/service_h4_bg_3.png) 0 bottom repeat-x
}

.service-num-list.service-num-list-3 .list-item .list-title span {
    background-color: #F39800
}

.service-num-list.service-num-list-4 .list-item .list-title {
    background: url(../img/service2_h4_bg_1.png) 0 bottom repeat-x
}

.service-num-list.service-num-list-4 .list-item .list-title span {
    background-color: #BDA8D6
}

.service-num-list .list-item .list-title {
    font-size: 25px;
    color: #7A6A56;
    font-weight: 400;
    padding: 0 0 5px;
    margin: 0 auto 20px;
    background-size: 45px
}

.service-num-list .list-item .list-title span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-right: 10px
}

.googlemap iframe {
    display: block
}

dl.service-dl {
    position: relative;
    line-height: 2
}

dl.service-dl dt {
    position: absolute;
    text-align: center;
    padding: 0px 10px;
    border-radius: 8px;
    background-color: #5f9a67;
    color: #fff;
    width: 24%;
    border-radius: 14px
}

dl.service-dl dd {
    padding-left: 25%;
    margin: 0
}

.check-list {
    max-width: 800px;
    margin: auto
}

.check-list .list-item {
    background: url(../img/service_bg_2.png) 25px 0px no-repeat;
    padding-left: 60px;
    background-size: 26px;
    margin-bottom: 10px
}

.gallery-box-list li {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0
}

.gallery-box-list li:last-of-type {
    border: 0
}

.gallery-box-list li .caption-1 {
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2
}

.gallery-box-list li .caption-2 {
    margin-top: 10px
}

.section-point-list .point-list-item .list-inner {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    max-width: 369px;
    margin: auto;
    position: relative;
    padding: 25px;
    padding-top: 85px;
    padding-bottom: 80px;
    min-height: 360px
}

.section-point-list .point-list-item .list-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat
}

.section-point-list .point-list-item.item-1 .list-inner:before {
    width: 110px;
    height: 60px
}

.section-point-list .point-list-item.item-2 .list-inner:before {
    width: 68px;
    height: 80px
}

.section-point-list .point-list-item.item-3 .list-inner:before {
    width: 90px;
    height: 70px
}

.section-point-list .point-list-item .point-title {
    text-align: center
}

.section-point-list .point-list-item .point-text {
    padding: 0 20px;
    font-size: .9em
}

.section-point-list .point-list-item .point-link {
    position: absolute;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 30px;
    font-size: .8em
}

.detail-link a {
    display: block;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 6px 30px 6px 10px;
    background: url(../img/click_here_bg.png) 110px 7px no-repeat;
    background-position: right 10px center;
    line-height: 1;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.4);
    max-width: 150px;
    font-size: .9em
}

.top-service-content {
    position: relative;
    overflow: hidden;
    max-width: 520px;
    margin: auto
}

.top-service-content img.bg {
    display: block
}

.top-service-content.mini .top-service-inner {
    padding: 12% 13% 0 12.2%
}

.top-service-content.mini .top-service-inner .top-service-title img {
    width: initial
}

.top-service-content .top-service-inner {
    padding: 7.7% 8.6% 0 6.7%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0
}

.top-service-content .top-service-title {
    padding-top: 7%
}

.top-service-content .top-service-title img {
    width: 45.6%
}

.top-service-content .top-service-text {
    font-size: .9em;
    padding: 20px 6%
}

.news-list,
.archive-list {
    overflow-y: scroll;
    padding-right: 10px
}

.news-list .list-item,
.archive-list .list-item {
    position: relative;
    background-color: #F2F2F2
}

.news-list .list-item a,
.archive-list .list-item a {
    padding: 8px 20px;
    display: block
}

.news-list .list-item:nth-of-type(2n),
.archive-list .list-item:nth-of-type(2n) {
    background-color: #fff
}

.news-list .list-item .date,
.archive-list .list-item .date {
    color: #797878
}

.staff-policy-list {
    text-align: center;
    letter-spacing: -1em;
    max-width: 1120px;
    margin: auto
}

.staff-policy-list .list-item {
    text-align: left;
    max-width: 340px;
    height: 340px;
    width: 100%;
    background: url(../img/staff_policy_bg.png) center no-repeat;
    display: inline-block;
    vertical-align: top;
    margin: 0px 20px 50px;
    letter-spacing: normal
}

.staff-policy-list .list-item .policy-title {
    font-family: "M Plus 1";
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4;
    padding-top: 50px;
    color: #85B109;
    position: relative
}

.staff-policy-list .list-item .policy-title:before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: -34px;
    right: 0;
    left: 0;
    width: 100px;
    height: 74px;
    background-position: center top;
    background-repeat: no-repeat
}

.staff-policy-list .list-item .policy-content {
    border-top: 1px dashed #eee;
    width: 80%;
    margin: auto;
    padding: 10px
}

.news-archive-link {
    padding-top: 20px;
    position: relative;
    text-align: center
}

.news-archive-link a {
    background: url(../img/top_news_bg.png) 93% 50% no-repeat;
    background-size: 7px;
    border: 1px solid #aaa;
    display: inline-block;
    padding: 0 65px;
    transition: .2s ease;
    font-size: 18px;
    overflow: hidden;
    position: relative
}

.news-archive-link a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: .4s ease
}

.news-archive-link a:hover:before {
    transform: translateX(0)
}

.hospitals-links {
    border-top: 1px dashed #ccc;
    background: url(../img/top_renkei_title.png) no-repeat 80px 50%;
    padding: 50px 120px;
    padding-left: 324px
}

.footer {
    background: #F2F2F2;
    padding: 0;
    font-size: 1.3em
}

.footer .footer-logo img {
    display: block;
    margin: auto;
    padding: 55px 0;
}
.footer-text{
    font-size: 12px;
    color: #fff !important;
}
.footer-copyright {
    background-color: #515457;
    color: #fff !important;
    padding: 10px 0;
    padding-right: 100px;
    font-size: .9em;
    line-height: 1.6;
}

.time-table-wrap .time-table {
    margin-bottom: 10px
}

.time-table-wrap .time-table th {
    font-weight: normal
}

.time-table-wrap .time-table th,
.time-table-wrap .time-table td {
    text-align: center;
    position: relative
}

.time-table-wrap .time-table thead th {
    border-bottom: 1px solid #ddd
}

.time-table-wrap .time-table thead th:first-child {
    border-right: 1px solid #ddd
}

.time-table-wrap .time-table tbody th {
    border-right: 1px solid #ddd
}

.time-table-wrap .time-table tbody td {
    width: 10%
}

.time-table-wrap .time-table tbody td.on:after {
    background-color: #5f9a67
}

.time-table-wrap .time-table tbody td.on.mod:after {
    background-color: #a09181
}

.time-table-wrap .time-table-aside>div {
    display: inline-block;
    line-height: 1.2em;
    padding: 6px 12px
}

.time-table-wrap .time-table-aside>div.aside-1 {
    background-color: #cd8688;
    color: #fff;
    margin-right: 20px;
    padding: 6px 30px
}

.time-table-wrap .time-table-aside>div.aside-2 {
    padding-left: 20px
}

.time-table-wrap .time-table-aside>div.aside-2:after {
    right: initial;
    background-color: #a09181
}

.pink {
    color: #FF6D7F
}

.orange {
    color: #F39800
}

.green {
    color: #5f9a67
}

.entry .entry-content {
    max-width: 1140px;
    margin: auto
}

.entry .entry-date {
    margin-bottom: 15px;
    font-size: .9em;
    color: #666
}

.entry .entry-inner {
    padding: 0 20px
}

.entry h3 {
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 2.5em;
    line-height: 1.6;
    font-family: "M Plus 1";
    position: relative;
    border: 0;
    text-align: left
}

.entry h3:after {
    display: none
}

.entry h3:before {
    content: "";
    display: block;
    height: 80%;
    width: 8px;
    position: absolute;
    background-color: #CCC4AF;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

.entry h4 {
    font-size: 1.5em;
    margin-bottom: .5em
}

.entry h5 {
    font-size: 1.2em;
    margin-bottom: .5em
}

.entry p {
    margin: 0 0 1em
}

.archive-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0
}

.archive-list li {
    padding: 10px
}

#pagetop {
    position: fixed;
    bottom: 0;
    right: 10%;
    width: 20%;
    max-width: 60px;
    z-index: 20
}

#form table {
    width: 100%
}

#form table th,
#form table td {
    font-weight: normal;
    text-align: left;
    padding: 10px;
    vertical-align: top
}

#form table th {
    width: 300px
}

#form table th span {
    font-size: .8em;
    color: red
}

#form table td input,
#form table td textarea {
    width: 100%;
    font-size: 1.2em;
    padding: 4px
}

#form .submit-btn {
    text-align: center
}

#form .submit-btn input {
    border-radius: 13px;
    box-shadow: none;
    border: 1px solid #ccc;
    background: #eee;
    line-height: 1;
    padding: 5px 14px 4px
}

.main-image img.sp {
    display: none
}

.img-sp {
    display: none
}

.box {
    border: 1px solid #aaa;
    border-radius: 8px;
    padding: 15px
}

.box.box-double {
    border-radius: 0;
    position: relative
}

.box.box-double:before {
    content: "";
    display: block;
    position: absolute;
    width: 99%;
    height: 96%;
    border: 1px solid #aaa;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.box .box-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #6A4E3C
}

.box .box-title div {
    display: inline-block
}

.box .box-title .icon-title-leaf {
    background: url(../img/service_bg_1.png) 4px 0px no-repeat;
    padding: 0 10px;
    padding-left: 40px;
    border-bottom: 1px solid
}

.box .box-title .icon-title-link {
    background: url(../img/service_bg_3.png) 4px 0px no-repeat;
    padding: 0 10px;
    padding-left: 50px
}

.box-teal {
    border: 1px solid #4DBDC2;
    padding: 15px;
    background-color: #fff
}

.box-pink {
    border: 1px solid #FF6D7F;
    padding: 15px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 18px;
    font-family: "M Plus 1"
}

.box-pink div {
    margin: auto;
    max-width: 750px
}

.box-orange {
    border-radius: 12px;
    padding: 15px;
    background-color: #FEE1B7
}

.bg-profile-1 {
    background: url(../img/staff_img_1.png) 0 0 no-repeat;
    background-size: contain;
    max-width: 2000px;
    margin: auto;
    min-height: 770px
}

.bg-profile-1 .bg-profile-content {
    padding-left: 46%;
    padding-top: 5%
}

.slider-for img {
    width: 100%;
    height: auto
}

.wp-calendar thead th {
    font-weight: normal;
    text-align: left;
    font-size: 16px
}

.wp-calendar tbody th,
.wp-calendar tbody td {
    border: 1px solid #ededed;
    padding: 4px 2px 12px 2px;
    line-height: 1.8;
    font-size: 15px;
    width: 14%;
    vertical-align: top
}

.wp-calendar tbody th,
.wp-calendar tbody td .day-no {
    text-align: right;
}

.wp-calendar tbody th .withpost,
.wp-calendar tbody td .withpost {
    display: inline-block;
    font-size: 10px;
    text-align: left;
    margin: 0 1px 1px 3px;
    padding: 1px 2px;
    margin-bottom: 1px;
    background-color: #eee;
    border-radius: 2px;
    color: #000 !important
}

.wp-calendar tbody td.youbihead {
    text-align: center
}

.wp-calendar tbody td.holiday,
.wp-calendar tbody td.youbi3 {
    background-color: #cd8688;
    color: #fff
}

.wp-calendar tbody td.gozen {
    background-color: #60a1d2;
    color: #fff
}

.wp-calendar tbody td.ope {
    background-color: #5f9a67;
    color: #fff
}

.wp-calendar tbody td.shinryo {
    background-color: #fff !important;
    color: #000 !important
}

.calendar-list li {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    margin-right: 10px
}

.calendar-list li span {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 13px;
    height: 13px
}

.calendar-list li.item-1 span {
    background-color: #cd8688
}

.calendar-list li.item-2 span {
    background-color: #60a1d2
}

.calendar-list li.item-3 span {
    background-color: #5f9a67
}

.single-pagination .prev a,
.single-pagination .next a {
    display: block;
    padding: 5px 30px;
    border-radius: 2px;
    transition: .4s ease;
    border: 1px solid #eee
}

.single-pagination .prev a:hover,
.single-pagination .next a:hover {
    background-color: #ccc;
    padding: 5px 50px
}

.single-pagination .prev {
    float: left
}

.single-pagination .next {
    float: right
}


.recruit-greeting {
    background: #F2F3F5 url(../img/recruit_img_1.png) right center no-repeat
}

.recruit-greeting .wrap,
.recruit-greeting .wrap--inner,
.recruit-greeting .nav,
.recruit-greeting .section .section-body .wrap,
.section .section-body .recruit-greeting .wrap {
    max-width: 1200px;
    padding: 40px 0
}

.recruit-greeting .wrap .inner,
.recruit-greeting .wrap--inner .inner,
.recruit-greeting .nav .inner {
    width: 100%;
    padding: 25px;
    max-width: 900px
}

.recruit-greeting .wrap .recruit-greeting-title,
.recruit-greeting .wrap--inner .recruit-greeting-title,
.recruit-greeting .nav .recruit-greeting-title {
    color: #5f9a67;
    font-size: 24px;
    position: relative
}

.recruit-greeting .wrap .recruit-greeting-title:before,
.recruit-greeting .wrap--inner .recruit-greeting-title:before,
.recruit-greeting .nav .recruit-greeting-title:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #5f9a67;
    position: absolute;
    bottom: 15px
}

.recruit-greeting .wrap .recruit-greeting-title div,
.recruit-greeting .wrap--inner .recruit-greeting-title div,
.recruit-greeting .nav .recruit-greeting-title div {
    display: inline-block;
    padding: 0 20px 0 0;
    background-color: #F2F3F5;
    z-index: 100;
    position: relative
}

.recruit-section--humanResorces {
    margin: 0 auto;
    max-width: 1200px
}

.recruit-section--humanResorces .recruit-section-inner {
    position: relative
}

.recruit-section--humanResorces .recruit-section-inner img.section-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 40%
}

.recruit-section--humanResorces .recruit-section-inner .section-content {
    margin-left: 40%;
    padding: 25px
}

.recruit-section--humanResorces .recruit-section-inner .section-content .h4 {
    font-family: "M Plus 1";
    line-height: 1.2;
    font-size: 20px
}

.recruit-section--humanResorces .recruit-section-inner .section-content p {
    margin-bottom: 40px
}

.recruit-career-plan {
    background: #F4FAF5 url(../img/recruit_img_5.png) top left no-repeat;
    padding: 40px 0;
    margin-bottom: 80px
}

.recruit-career-plan .inner {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.5)
}

.clinic-bg {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 300px;
    padding: 40px 0
}

.clinic-bg .wrap,
.clinic-bg .wrap--inner,
.clinic-bg .nav,
.clinic-bg .section .section-body .wrap,
.section .section-body .clinic-bg .wrap {
    max-width: 750px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8)
}

.clinic-bg.clinic-bg-1 {
    background-image: url(../img/clinic_img_2.png)
}

.clinic-bg.clinic-bg-2 {
    background-image: url(../img/clinic_img_4.png)
}

.hentry .wrap--bg--mod {
    padding: 40px 0;
    margin-bottom: 0px
}

.hentry .wrap--bg--mod.wrap--bg-clinic--1 {
    background: #eee url(../img/clinic_img_3.png) right center no-repeat
}

.hentry .wrap--bg--mod.wrap--bg-clinic--2 {
    background: #eee url(../img/clinic_img_5.png) right center no-repeat
}

.hentry .mb0 {
    margin-bottom: 0 !important
}

.hentry .ta-l,
.hentry .box .box-title.ta-l,
.box .hentry .box-title.ta-l {
    text-align: left !important
}

.hentry a.link {
    width: 80%;
    max-width: 900px;
    font-size: 22px;
    position: relative;
    background-color: #5f9a67;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: auto;
    color: #fff;
    padding: 8px 0px
}

.hentry a.link span {
    position: relative;
    padding-right: 40px;
    color: #fff;
}

.hentry a.link span:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/recruit_bg_1.png) 0 0 no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.indent {
    padding-left: 1em
}

.contents {
    font-size: 15.36px
}

.box--mod {
    max-width: 900px;
    padding: 15px;
    border: 1px solid #5f9a67;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 3px 3px 0px #5f9a67
}

.checklist .list-item {
    background: url(../img/service_bg_1.png) 0 7px no-repeat;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 5px
}

.flowlist .list-item {
    background-color: #EBF5EC;
    margin-bottom: 80px;
    position: relative;
    padding-left: 85px;
    background-repeat: no-repeat;
    background-position: 20px 50%
}

.flowlist .list-item:after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    border-bottom: 2px solid #ccc;
    border-left: 2px solid #ccc;
    transform: rotate(-45deg);
    margin: auto;
    bottom: -48px;
    right: 0;
    left: 0;
    position: absolute
}

.flowlist .list-item:last-of-type:after {
    display: none
}

.flowlist .list-item.item-1 {
    background-image: url(../img/service_step_1.png)
}

.flowlist .list-item.item-2 {
    background-image: url(../img/service_step_2.png)
}

.flowlist .list-item.item-3 {
    background-image: url(../img/service_step_3.png)
}

.flowlist .list-item.item-4 {
    background-image: url(../img/service_step_4.png)
}

.flowlist .list-item .list-inner {
    padding: 0 0 0 15px;
    position: relative
}

.flowlist .list-item .list-text {
    position: absolute;
    margin-right: 220px;
    top: 50%;
    transform: translateY(-50%)
}

.flowlist .list-item .list-img {
    float: right
}

.flowlist .list-item .list-img img {
    display: block
}

.info-attention {
    padding: 15px 10px;
    border-top: 1px solid #EF805E;
    border-bottom: 1px solid #EF805E;
    line-height: 1.8;
    margin: 20px 0;
    font-size: 17.9px
}

.info-attention .title {
    color: #EF805E
}

.info-attention p {
    margin: 0
}

.info-policy-list .list-item {
    position: relative;
    min-height: 408px
}

.info-policy-list .list-item:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-bottom: 30px solid #5f9a67;
    position: absolute;
    left: -30px;
    top: -30px;
    transform: rotate(-45deg);
    z-index: 10
}

.info-policy-list .list-item .title {
    color: #5f9a67;
    border-bottom: 1px solid;
    font-size: 28px;
    padding-left: 115px;
    background-position: 0px 15px;
    background-size: 95px;
    background-repeat: no-repeat
}

.info-policy-list .list-item .title-sub {
    color: #cd8688;
    font-size: 23px
}

.info-policy-list .list-item .list-inner {
    position: absolute;
    top: 50%;
    width: 50%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8)
}

.info-policy-list .list-item:nth-of-type(2n-1) {
    background-repeat: no-repeat;
    background-position: top right
}

.info-policy-list .list-item:nth-of-type(2n-1) .list-inner {
    left: 15px;
    transform: translate(0, -50%)
}

.info-policy-list .list-item:nth-of-type(2n) {
    background-repeat: no-repeat;
    background-position: top left
}

.info-policy-list .list-item:nth-of-type(2n) .list-inner {
    right: 15px;
    transform: translate(0, -50%)
}

.info-policy-list .list-item.item-1 {
    background-image: url(../img/info_policy_img_1.png)
}

.info-policy-list .list-item.item-1 .title {
    background-image: url(../img/info_policy_1.png)
}

.info-policy-list .list-item.item-2 {
    background-image: url(../img/info_policy_img_2.png)
}

.info-policy-list .list-item.item-2 .title {
    background-image: url(../img/info_policy_2.png)
}

.info-policy-list .list-item.item-3 {
    background-image: url(../img/info_policy_img_3.png)
}

.info-policy-list .list-item.item-3 .title {
    background-image: url(../img/info_policy_3.png)
}

.info-policy-list .list-item.item-4 {
    background-image: url(../img/info_policy_img_4.png)
}

.info-policy-list .list-item.item-4 .title {
    background-image: url(../img/info_policy_4.png)
}

.info-access-list .list-item {
    background-repeat: no-repeat;
    background-position: 0px 5px;
    padding: 8px 0px;
    padding-left: 50px
}

.info-access-list .item-1 {
    background-image: url(../img/info_img_3.png)
}

.info-access-list .item-2 {
    background-image: url(../img/info_img_4.png)
}

.info-access-list .item-3 {
    background-image: url(../img/info_img_5.png)
}

.service-content-box {
    background-color: #EBF5EC;
    padding: 15px
}

.service-content-box .title {
    border-bottom: 2px dashed #5f9a67;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 1em
}

.service-content-box .checklist {
    padding: 0 20px
}

.service-content-box .checklist .list-item {
    width: 50%;
    float: left;
    margin: 0
}

.setsubi-wrap .setsubi-text {
    font-size: 1.3em
}

.wrap--bg {
    padding: 40px 0;
    background-color: #eee;
    margin-bottom: 40px
}

.clinic-table-wrap section {
    padding: 20px 0;
    border-bottom: 1px solid #aaa
}

.clinic-table-wrap section:last-of-type {
    border: 0
}

.clinic-table-wrap table th {
    width: 20%;
    font-weight: 400;
    color: #fff;
    background-color: #5f9a67
}

.clinic-table-wrap table th,
.clinic-table-wrap table td {
    padding: 15px
}

.clinic-table-wrap table td {
    font-size: .9em
}

.clinic-touroku {
    font-size: 1.2em
}

.qa-list {
    font-size: 1.2em
}

.qa-list .list-item {
    margin-bottom: 20px
}

.qa-list .list-item .q,
.qa-list .list-item .a {
    padding: 25px;
    padding-left: 80px;
    background-repeat: no-repeat;
    background-position: 25px 50%
}

.qa-list .list-item .q {
    background-color: #EBF5EC;
    background-image: url(../img/contact_q.png)
}

.qa-list .list-item .a {
    background-image: url(../img/contact_a.png)
}

.form-wrap {
    font-size: 1.2em
}

.form-wrap table th {
    width: 20%
}

.form-wrap table th span {
    color: #cd8688;
    margin-left: 10px
}

.form-wrap table input[type="text"],
.form-wrap table input[type="email"],
.form-wrap table input[type="tel"],
.form-wrap table textarea {
    width: 100%;
    max-width: 80%;
    line-height: 1.8
}

.form-wrap table input.mod {
    width: auto
}

.form-wrap input[type="submit"] {
    border: 0;
    display: block;
    overflow: hidden;
    text-indent: 200%;
    white-space: nowrap;
    width: 106px;
    height: 38px;
    margin: 20px auto;
    background: url(../img/submit-button.png) center no-repeat
}

.hentry h2.page-top-title {
    margin-bottom: 20px
}

.page-link-nav {
    max-width: 900px;
    margin: 0 auto 40px
}

.page-link-nav .page-link-nav-list {
    text-align: center;
    letter-spacing: -1em
}

.page-link-nav .page-link-nav-list:after {
    content: "";
    display: block;
    clear: both
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item {
    display: inline-block;
    letter-spacing: normal;
    padding: 0 10px 10px
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item a {
    display: block;
    padding: 2px 30px 2px 16px;
    position: relative;
    text-align: left;
    color: #fff;
    background-color: #5f9a67;
    line-height: 1.8;
    border-radius: 3px;
    font-size: 14px;
    transition: .2s ease
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item a:hover {
    background-color: #78d281
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fff;
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item a .dot {
    display: block;
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5f9a67;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.page-link-nav .page-link-nav-list .page-link-nav-list--item a .dot:before {
    content: "";
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: 3px;
    height: 3px;
    position: absolute;
    transform: rotate(45deg);
    top: 2px;
    left: 1px
}

.clinic_innai_map {
    margin-top: -40px;
    margin-inline: auto;
    max-width: 1320px;
}

.list-setsubi {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4%;
    row-gap: 40px;
}

.list-setsubi li {
    flex-basis: calc(100% / 5 - 4% / 5 * 4);
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
}

.list-setsubi li img {
    display: inline-block;
}

.list-setsubi li .setsubi-text {
    margin-top: 20px;
}

.info-gyotoku-bg {
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}

.info-gyotoku-bg .wrap {
    padding: 60px 0;
    min-height: 300px;
    max-width: 1280px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.7) 50%);
}

.info-gyotoku-bg .wrap .inner {
    margin-left: auto;
    padding: 20px 40px 40px 40px;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.5);
}

.info-gyotoku-bg.info-gyotoku-bg-1 {
    background-image: url(../img/clinic_img_2.png)
}

.info-gyotoku-bg.info-gyotoku-bg-2 {
    background-image: url(../img/clinic_img_4.png)
}


.info-gyotoku-bg.info-gyotoku-bg-3 {
    background-image: url(../img/all_ac_gyoutoku-4_03_r.png);
    background-position: top right;
}

.info-gyotoku-bg.info-gyotoku-bg-3 .wrap {
    background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.7) 50%);
}

.info-gyotoku-bg.info-gyotoku-bg-3 .wrap .inner {
    margin-left: 0;
}


.info-gyotoku-bg h4 {
    font-weight: 400;
}

.info-list-gallery {
    display: flex;
    flex-wrap: wrap;
}

.info-list-gallery li {
    flex-basis: calc(100% / 3);
}

.info-list-gallery li img {
    display: block;
    width: 100%;
}

.info-list-gallery .slick-prev,
.info-list-gallery .slick-next {
    left: 15px;
    margin-top: -20px;
    width: 41px;
    height: 41px;
    background-image: url(../img/gallery_arrow_l.png);
    z-index: 10;
}

.info-list-gallery .slick-next {
    left: auto;
    right: 15px;
    background-image: url(../img/gallery_arrow_r.png);
}

.info-list-gallery .slick-prev:before,
.info-list-gallery .slick-next:before {
    display: none;
}

a.link-more-green {
    display: table;
    padding: 4px 50px 4px 36px;
    position: relative;
    text-align: left;
    color: #fff;
    background-color: #5f9a67;
    line-height: 1.8;
    border-radius: 3px;
    font-size: 16px;
    transition: .2s ease;
}

a.link-more-green:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left-width: 6px;
    border-left-style: solid;
    border-left-color: transparent;
    border-left: 5px solid #fff;
    position: absolute;
    right: 8px;
    top: -1px;
    bottom: 0;
    margin: auto;
}

body.page-id-8923 .page-link-nav {
    max-width: 600px;
}


/*---------add by f-factory 050125----------*/

.staff-single-prof {
    display: flex;
    margin-bottom: 80px;
}

.staff-single-prof-image {
    margin-right: 4vmax;
    max-width: 50%;
    text-align: center;
}

.staff-single-prof-image-inner {
    position: relative;
    max-width: 460px;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .staff-single-prof {
        display: block;
    }

    .staff-single-prof-image {
        margin-right: 0;
        max-width: 100%;
    }

}

.staff-single-prof-image-inner img {
    display: block;
}

.staff-single-prof-image .staff-single-name {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(148, 188, 183, 0.7);
    color: #fff;
    padding: 0.3em 2em;
    border-radius: 10px 0 0 0;
    margin: 0;
}

.staff-single-prof-text {
    flex: 1;
}

.staff-single-prof-text hr {
    margin: 20px 0;
}

.staff-single-prof-text .affiliated {
    font-size: 20px;
    margin-bottom: 0;
}

.staff-single-prof-text .name {
    font-size: 28px;
    margin-bottom: 0.5em;
}

.staff-single-prof-text .ttl {
    font-size: 20px;
    margin-bottom: 0;
}

.staff-single-prof-text .career tr td:first-of-type {
    width: 30%;
}

@media screen and (max-width: 768px) {
    .staff-single-prof-text .career td {
        display: table-cell;
        width: auto !important;
        line-height: 1.4;
        padding: 0.5em 0;
    }

    .staff-single-prof-text .career tr td:first-of-type {
        width: 30% !important;
    }

    .staff-single-prof-text .affiliated {
        font-size: 18px;
    }

    .staff-single-prof-text .name {
        font-size: 24px;
        text-align: center;
    }

    .staff-single-prof-text .ttl {
        font-size: 18px;
    }
}

.staff-single-prof-text .dept {
    display: inline-block;
    padding: 0.2em 1.5em;
    background-color: #d7e6e4;
}

.staff-single-message {
    padding: 60px 0;
    position: relative;
    margin-bottom: 80px;
}

.staff-single-message::before {
    position: absolute;
    content: "Message";
    left: 0;
    top: -35px;
    font-size: 30px;
    color: #5f9a67;
}

@media screen and (max-width: 768px) {

    .staff-single-prof-text .dept-wrap {
        text-align: center;
    }

    .staff-single-message::before {
        font-size: 24px;
    }
}

.staff-single-message::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    /* 親要素の中央基準 */
    transform: translateX(-50%);
    /* 左右に均等に広げるため */
    width: 100vw;
    /* ウィンドウ幅いっぱいに広げる */
    height: 100%;
    /* 親要素の高さに合わせる */
    background-color: #f0f0f0;
    /* 背景色を指定 */
    z-index: -1;
    /* 親要素の背面に配置 */
}

.staff-single-gakkai-ttl {
    font-size: 28px;
    line-height: 1.4;
    color: #5f9a67;
    padding-bottom: 0.2em;
    margin-bottom: 1em;
    border-bottom: 3px solid #5f9a67;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.staff-single-gakkai-ttl::after {
    content: "";
    display: block;
    width: 35px;
    aspect-ratio: 1 / 0.5;
    background: url(../img/staff-arrow.png)no-repeat center center /contain;
}

.staff-single-gakkai-ttl.ttl-open::after {
    transform: scaleY(-1);
    /* 上下反転 */
}


.staff-single-gakkai .ttl {
    font-size: 20px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .staff-single-gakkai-ttl::after {
        width: 25px;
    }

    .staff-single-gakkai-ttl {
        font-size: 20px;
    }

    .staff-single-gakkai .ttl {
        font-size: 18px;
    }
}

.staff-single-gakkai hr {
    border: none;
    border-bottom: 1px dashed #ccc;
    width: 100%;
    margin: 20px 0;
}


.staff-single-gakkai .ttl::before {
    color: #5f9a67;
    content: "■";
    margin-right: 0.2em;
}


/*---------add by f-factory 050125----------*/
#staff-archive .entry-content {
    max-width: 1000px;
}

#staff-archive .staff-section-ttl {
    font-size: 40px;
    text-align: center;
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    #staff-archive .staff-section-ttl {
        font-size: 26px;
    }
}

#staff-archive .doctor .staff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vmax;
}

@media screen and (max-width: 500px) {
    #staff-archive .doctor .staff-list {
        display: block;
    }
}

#staff-archive .staff-thumbnail {
    position: relative;
    display: block;
}

#staff-archive .staff-name {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    background: rgba(148, 188, 183, 0.7);
    aspect-ratio: 1 / 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vmax;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    width: 150px;
}

@media screen and (max-width: 920px) {

    #staff-archive .staff-name {
        font-size: 16px;
        width: 100px;
    }
}

@media screen and (max-width: 768px) {
    #staff-archive .staff-name {
        font-size: 12px;
        width: 80px;
    }
}


#staff-archive .staff-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    #staff-archive .staff-item {
        margin-bottom: 40px;
    }
}



#staff-archive .staff-affiliated {
    margin-bottom: 15px;
    line-height: 1.4;

}

#staff-archive .staff-title {
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 1.4;

}

@media screen and (max-width: 768px) {

    #staff-archive .staff-title {
        font-size: 22px;

    }

}

#staff-archive .staff-dept {
    display: inline-block;
    padding: 0.2em 1.5em;
    background-color: #d7e6e4;
}


#staff-archive .staff-content-more {
    text-align: center;
}

@media screen and (max-width: 768px) {
    #staff-archive .staff-content-more img {
        width: 80px;
    }
}

/*----staff---*/
#staff-archive .staff .staff-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vmax;
}

@media screen and (max-width: 768px) {
    #staff-archive .staff .staff-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3vmax;
    }
}

#staff-archive .staff {
    margin-top: 5vmax;
}

#staff-archive .staff .staff-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#staff-archive .staff .staff-title {
    padding-bottom: 0.8em;
    border-bottom: 1px solid #649e97;
}

/*---------end f-factory 050125----------*/


/* SEO記事の改修 */
.wrap-article{
    max-width: 800px !important;
    width: 88% !important;
}

.article-content h1{
    font-size: 32px;
    color: #111;
    padding-left: 16px;
    border-left: #B0AD72 solid 8px;
    text-align: left;
    letter-spacing: .05em;
    margin: 0em 0 .75em;
}
.article-content h2{
    font-size: 26px;
    color: #333;
    padding-left: 12px;
    border-left: #3B5430 solid 8px;
    text-align: left;
    font-weight: 500;
    letter-spacing: .5em;
    margin: 2em 0 .75em;
    text-align: left;
}
.article-content h2 span{
    font-weight: 500;
}

.article-content h3{
    font-size: 20px;
    color: #333;
    padding: 12px 20px;
    background-color: #E9F4E9;
    text-align: left;
    font-weight: 500;
    letter-spacing: .5em;
    margin: 2em 0 .75em;
    text-align: left;

}
.article-content h2 span{
    font-weight: 500;
}
.article-content h3 span{
    font-weight: 500;
}
.article-content h3::before{
    content: "";
    display: none;
}
.article-content img,.article-content iframe.article-content video.article-content figure{
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 2em 0;
}
.article-content ul{
    border: 1px solid #B9D5B9;
    border-radius: 12px;
    padding: 48px 32px;
    margin: 24px 0;
}
.article-content ul > li{
    margin-bottom: 1.5em;
}
.article-content ul > li:last-of-type{
    margin-bottom: 0;
}
.entry-content.article-content p{
    font-size: 16px;
    color: #333;
    letter-spacing: .05em;
    line-height: 2;
    margin: 1em 0;
    text-align: left;
}
.article-content p a, .article-content p a span, .article-content p a strong{
    font-weight: 500;
    color: #1D72D2 !important;
}
.article-btn > a{
    display: block;
    width: 100%;
    padding: 12px 0;
    border: #333 solid 1px;
    text-align: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 540px){
    .article-content h1{
        font-size: 24px;
        border-left: #B0AD72 solid 4px;
        padding-left: 8px;
    }
    .article-content h2{
        font-size: 20px !important;
        border-left: #3B5430 solid 4px;
    }
    .article-content h3{
        font-size: 18px !important;
    }
    
    .entry-content.article-content p, .entry-content.article-content li{
        font-size: clamp(14px,3.7vw,16px);
    }
    .article-content ul{
        border-radius: 10px;
        padding: 32px 20px;
}
}



/* 目次 */

#toc_container{
    padding: 40px 64px;
    border-radius: 12px;
}
#toc_container ul{
    border: none;
}
#toc_container .toc_title{
    font-size: 20px;
    font-weight: 500;
}
#toc_container li{
    margin-bottom: .5em;
}
#toc_container li > ul{
    margin-top: .5em;
}
#toc_container li > a{
    font-weight: 500;
}
#toc_container li > ul > li >a{
    font-weight: 400;
}
@media screen and (max-width: 540px){
    #toc_container{
        padding: 20px 20px;
        border-radius: 12px;
    }
    #toc_container .toc_title{
        font-size: 16px;
    }
    #toc_container li > a{
        font-size: 14px;
        font-weight: 400;
    }
    #toc_container li > ul > li >a{
        font-size: 14px;
        font-weight: 400;
    }
}


/* 内部リンクショートコード */
.article-innerLink{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin: 20px auto;
    background-color: #F1F1F1;
    border-radius: 12px;
    transition: .4s;
}

.article-innerLink:hover{
    opacity: .7;
}
.article-innerLink-imgContainer{
    position: relative;
    flex: 0 0 160px;
    width: 160px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.article-innerLink-img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}
.article-innerLink-tag{
    font-size: 12px !important;
    color: #fff !important;
    width: fit-content;
    border-radius: 4px;
    padding: 6px 12px;
    line-height: 1 !important;
    margin: 0 !important;
    background-color: #3B5430;
}
.article-innerLink-heading{
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    color: #333;
    margin: 4px 0 0  !important;
}
@media screen and (max-width: 540px){
    .article-innerLink{
        gap: 12px;
    }
    .article-innerLink-imgContainer{
        flex: 0 0 100px;
        width: 100px;
    }
    .article-innerLink-tag{
        font-size: 10px !important;
    }
    .article-innerLink-heading{
        font-size: 14px !important;
    }
}


/* ヘッダー */
.header{
    width: 100vw;
}
.header__inner{
    width: 88%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0 0;
}
.header__content{
    display: flex;
    width: 100%;
    margin-bottom: 16px;
}
.headerLogo__logoContainer{
    display: block;
    flex: 0 0 310px;
}
.headerLogo__logo{
    width: 310px;
    max-width: 100%;
}
.headerClinic{
    padding-left: 16px;
    padding-top: 4px;
    flex: 0 0 auto;
}
.headerClinic__content{
    display: flex;
    align-items: center;
    gap: 12px;
}
.headerClinic__heading{
    font-size: 10px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    margin-bottom: 2px;
}
.headerClinic__heading--sp{
    display: none;
}
.headerClinic__nameContainer{
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    transition: .4s;
}
.headerClinic__nameContainer:hover{
    opacity: .7;
}
.headerClinic__nameTag{
    display: block;
    width: 60px;
    padding: 4px 0;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    font-size: 10px;
}
.headerClinic__nameTag--gold{
    background-color: #C0BF80;
}
.headerClinic__nameTag--silver{
    background-color: #9D9D9D;
}
.headerClinic__name{
    color: #333;
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
}
.headerLink{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    padding-left: 20px;
    flex: 0 0 auto;
}
.headerLink__link{
    display: block;
    text-decoration: underline;
    transition: .4s;
    font-size: 12px;
    color: #666;
}
.headerLink__link:hover{
    opacity: .7;
}
.headerSns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    gap: 12px;
}
.headerSns__text{
    position: relative;
    font-size: 10px;
    line-height: 1;
    padding: 12px 8px;
    background-color: #E9F4E9;
}
.headerSns__text::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(40%,-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #E9F4E9;
}
.headerSns__icon{
    width: 40px;
    transition: .4s;
}
.headerSns__icon:hover{
    cursor: pointer;
    opacity: .7;
}
.headerNav{
    width: 100%;
}
.headerNav__lists{
    width: 100%;
}
.headerNav__link{
    font-size: 12px;
    color: #333;
}
.headerNav__link--sub{
    font-size: 12px;
    color: #fff;
}
@media screen and (max-width: 1200px){
    .header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background-color: #fff;
    }
    .headerClinic, .headerLink, .headerSns__text, .headerSns__icon--line{
        display: none;
    }
    .header__inner{
        padding: 20px 0 0;
    }
    .headerLogo__logoContainer{
        flex: 1 1 auto;
        padding-left: 7vw;
    }
    .headerLogo__logo{
        display: block;
        width: 50%;
        max-width: 200px;
        margin: auto;
    }
    .headerClinic__heading--sp{
        display: block;
        text-align: center;
        transform: scale(0.8);
        margin-top: 2px;
    }
    .headerSns{
        flex: 0 0 32px;
    }
    .headerSns__icon{
        width: 32px;
    }
}



/* 固定ボタン */
.fixedBtn{
    position: fixed;
    right: 4%;
    bottom: 24px;
    z-index: 999;
}
.fixedBtn__inner{
    position: relative;
    padding: 0 24px 24px;
    border-radius: 12px;
    /* background-color: rgba(255, 255, 255, .7); */
    /* backdrop-filter: blur(4px); */
}

.fixedBtn__content{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fixedBtn__btn{
    padding: 4px 0;
    border-radius: 12px;
    width: 132px;
    transition: .4s;
    cursor: pointer;
}
.fixedBtn__btn:hover{
    opacity: .7;
}
.fixedBtn__btn--gold{
    background-color: #C2BA93;
}
.fixedBtn__btn--silver{
    background-color: #ADB6BA;
}
.fixedBtn__clinicName{
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    font-weight: 500;
}
.fixedBtn__clinicName::after{
    content: "詳細を見る";
    display: block;
    font-size: 10px;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 100px;
    width: fit-content;
    margin: 4px auto 0;
}
.fixedBtn__clinicName--gold::after{
    color: #C2BA93;
}
.fixedBtn__clinicName--silver::after{
    color: #ADB6BA;
}
.fixedBtn__line{
    display: block;
    width: 40px;
    margin: auto;
    padding-top: 12px;
    cursor: pointer;
    transition: .4s;
}
.fixedBtn__line:hover{
    opacity: .7;
}
.fixedBtn__lineText{
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
    margin: 8px auto 0;
}
@media screen and (max-width: 540px){
    .fixedBtn{
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(12px);
        background-color: rgba(255, 255, 255, .7);
        padding: 12px 4vw;
    }
    .fixedBtn__inner{
        padding: 0;
        width: 92vw;
        margin: auto;
    }
    .fixedBtn__content{
        flex-direction: row;
    }
    .fixedBtn__clinicName{
        font-size: 12px;
        line-height: 1;
    }
    .fixedBtn__clinicName::after{
        font-size: 10px;
        line-height: 1;
    }
    .fixedBtn__btn{
        flex: 0 0 92px;
    }
    .fixedBtn__lineContainer{
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: center;
        flex: 1 1 auto;
        gap: 12px;
    }
    .fixedBtn__line{
        margin: 0;
        padding: 0;
    }
    .fixedBtn__lineText{
        margin: 0;
        text-align: right;
        font-size: 11px;
    }
}

/* 固定ボタン｜モーダル */
.fixedModal{
    position: absolute;
    right: 100%;
    top: 0;
    z-index: 1000;
    width: 388px;
    opacity: 0;
    pointer-events: none;
    transform: translate(12px, 0);
    transition: .4s;
}
.fixedModal.toggle{
    opacity: 1;
    pointer-events: all;
    transform: translate(0, 0);
}
.fixedModal__inner{
    position: relative;
    padding: 32px;
    border-radius: 12px;
    background-color: rgba(11, 11, 11, .7);
    backdrop-filter: blur(12px);
}
.fixedModal__closeBtn{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-50%);
    cursor: pointer;
}
.fixedModal__clinicName{
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
    color: #fff;
}
.fixedModal__address{
    font-size: 12px;
    margin: 4px 0 0;
    color: #fff;
}
.fixedModal__googleMap{
    font-size: 12px;
    color: #eee;
    text-decoration: underline;
    transition: .4s;
}
.fixedModal__googleMap:hover{
    opacity: .7;
}
.fixedModal__tel{
    display: block;
    width: 100%;
    padding: 10px 0 7px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    margin: 12px 0 4px;
    border-radius: 4px;
    transition: .4s;
}
.fixedModal__tel:hover{
    opacity: .7;
}
.fixedModal__tel::before{
    content: "電話から予約する";
    display: inline-block;
    width: fit-content;
    padding: 4px 8px;
    color: #fff;
    background-color: #A4A4A4;
    font-size: 10px;
    transform: scale(.9) translateY(-1px);
    margin-right: 2px;
    border-radius: 2px;
}
.fixedModal__reserveBtns{
    display: flex;
    width: 100%;
    gap: 4px;
}
.fixedModal__btn{
    display: block;
    flex: 1 1 50%;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    border-radius: 4px;
    transition: .4s;
    text-align: center;
    padding: 12px 0;
}
.fixedModal__btn:hover{
    opacity: .7;
}
.fixedModal__line{
    background-color: #4CC764;
}
.fixedModal__webReserve{
    background-color: #6FA77A;
}
.fixedModal__firstBtn{
    display: block;
    font-size: 12px;
    color: #fff;
    padding: 12px 0;
    border-radius: 100px;
    background-color: #5E99B0;
    text-align: center;
    margin: 12px 0 0;
    transition: .4s;
}
.fixedModal__firstBtn:hover{
    opacity: .7;
}
@media screen and (max-width: 540px){
    .fixedModal{
        position: absolute;
        right: 0;
        left: 0;
        top: auto;
        bottom: 100%;
        width: 100%;
        transform: translate(0, 0px);
    }
    .fixedModal.toggle{
        transform: translate(0, -12px);
}
}

/* 記事内インスタグラム */
@media screen and (min-width: 540px){
    .articleIg{
        display: none;
    }
}
.articleIg__inner{
    background-color: #45724B;
    padding: 80px 0;
    overflow: hidden;
}
.articleIg__inner--top{
    background-color: #fff !important;
}
.articleIg__contents{
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    animation: instagramScroll 40s infinite linear;
}
.articleIg__content{
    flex: 0 0 160px;
    max-width: 160px;
}
.articleIg__contentComment{
    position: relative;
    display: grid;
    place-content: center;
    height: 40px;
    width: 92%;
    border-radius: 4px;
    background-color: #fff;
    margin: 0 auto -4px !important;
    z-index: 10;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
}
.articleIg__contentComment--top{
    color: #111 !important;
    background-color: #f4f4f4 !important;
}
.articleIg__contentComment::after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.articleIg__contentComment--top::after{
    background-color: #f4f4f4 !important;
}
.articleIg__contentImgContainer{
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}
.articleIg__contentImg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto !important;
}
.articleIg__link{
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #fff;
    padding: 12px 0;
    font-size: 13px;
    margin: 0 auto !important;
    width: 80%;
}
.articleIg__link--top{
    border: #ccc solid 1px;
}
.articleIg__linkIcon{
    width: 23px !important;
    margin: 0 !important;
}
.articleIg__heading{
    color: #fff !important;
    font-size: 16px !important;
    text-align: center !important;
    line-height: 1.5 !important;
    text-decoration: underline;
    margin: 0 auto 20px !important;
}
.articleIg__heading--top{
    color: #111 !important;
}
.articleIg__linkText{
    display: block;
    text-align: center !important;
    color: #fff !important;
    font-size: 12px !important;
    margin: 32px auto 4px !important;
}
.articleIg__linkText--top{
    color: #111 !important;
}
@media screen and (max-width: 540px){
    .articleIg__contents{
        animation: instagramScroll 20s infinite linear;
    }
}

@keyframes instagramScroll{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(80%);
    }
}


/* LINE */
.linePopUp{
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
}
.linePopUp.toggle{
    opacity: 1;
    pointer-events: all;
}
.linePopUp__inner{
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
}
.linePopUp__contents{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 88%;
    max-width: 800px;
    background-color: #fff;
    padding: 80px;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .4s;
    
}
.linePopUp__contents.toggle{
    opacity: 1;
    transform: translateY(0px);
}
.linePopUp__content{
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
}
.linePopUp__contentHeading{
    font-size: 14px;
    text-align: center;
    margin: 0 0 12px;
}
.linePopUp__contentImg{
    width: 100%;
}
.linePopUp__link{
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin: 20px auto 0;
    color: #fff;
    background-color: #4CC764;
    transition: .4s;
    pointer-events: none;
}
.linePopUp__link.toggle{
    pointer-events: all;
}
.linePopUp__link:hover{
    opacity: .7;
}
.linePopUp__closeBtn{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    pointer-events: all;
    cursor: pointer;
}
@media screen and (max-width: 740px){
    .linePopUp__contentImg{
        display: none;
    }
    .linePopUp__contents{
        padding: 40px 20px;
        width: 88vw;
        flex-direction: column;
    }
    .linePopUp__content{
        width: 100%;
        flex: 1 1 auto;
        max-width: 100%;
    }
    .linePopUp__contentHeading{
        margin-bottom: 4px;
    }
    .linePopUp__link{
        margin-top: 4px;
        width: 100%;
    }
}

/* TOP｜CLINIC */
.topClinicInfo__inner{
    width: 88%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0 0;
}
.topClinicInfo__contents{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.topClinicInfo__content{
    flex: 1 1 50%;
}
.topClinicInfo__heading{
    font-size: 24px;
    font-weight: 500 !important;
    line-height: 1.5;
}
.topClinicInfo__address{
    font-size: 12px;
    margin: 0;
}
.topClinicInfo__map{
    font-size: 10px;
    text-decoration: underline;

}
.topClinicInfo__card{
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-radius: 12px;
}
.topClinicInfo__card--gold{
    background-color: #C2BA93;
}
.topClinicInfo__card--silver{
    background-color: #A3A3A3;
}
.topClinicInfo__cardInfo{
    padding: 0 12px 0;
    flex: 1 1 auto;
}
.topClinicInfo__cardImgContainer{
    width: 220px;
    flex: 0 0 220px;
    border-radius: 12px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}
.topClinicInfo__cardImg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}
.topClinicInfo__detail{
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 10px;
    color: #fff;
    padding: 8px 20px;
    border-radius: 12px 0 12px 0;
}
.topClinicInfo__detail--gold{
    background-color: #A29A70;
}
.topClinicInfo__detail--silver{
    background-color: #666;
}
.topClinicInfo__tel{
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    line-height: 1.2;
    text-align: center;
    border: 1px solid #fff;
}
.topClinicInfo__tel::before{
    content: "電話予約";
    display: inline-block;
    margin-right: 4px;
    padding: 6px;
    border-radius: 2px;
    font-size: 10px;
    line-height: 1;
    background-color: #fff;
}
.topClinicInfo__tel--gold::before{
    color: #A29A70;
}
.topClinicInfo__tel--silver::before{
    color: #A3A3A3;
}
.topClinicInfo__line{
    display: block;
    font-size: 12px;
    line-height: 1;
    padding: 12px 0;
    color: #fff;
    background-color: #4CC764;
    border-radius: 4px;
    text-align: center;
    margin-top: 8px;
}
.topClinicInfo__reserve{
    display: block;
    font-size: 12px;
    line-height: 1;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    background-color: #6FA77A;
    border-radius: 4px;
    margin-top: 8px;
}

@media screen and (max-width: 760px){
    .topClinicInfo__heading{
        font-size: 16px;
    }
    .topClinicInfo__contents{
        flex-direction: column;
        gap: 32px;
    }
    .topClinicInfo__content{
        flex: 1 1 auto;
        width: 100%;
    }
    .topClinicInfo__cardImgContainer{
        aspect-ratio: 4/5;
    }
}
@media screen and (max-width: 540px){
    .topClinicInfo__cardImgContainer{
        flex: 5 5 140px;
        width: auto;
    }
    .topClinicInfo__card{
        margin-top: 12px;
    }
    .topClinicInfo__tel{
        font-size: 11px;
        padding: 8px 2px;
    }
    .topClinicInfo__tel::before{
        padding: 4px;
    }
    .topClinicInfo__line, .topClinicInfo__reserve{
        font-size: 11px;
    }

}

/* TOP INSTAGRAM */
.topInstagram--pc{
    width: 88%;
    max-width: 1100px;
    padding: 32px 0;
    background-color: #D6E6DA;
    margin: 24px auto 0;
    border-radius: 12px;
    margin-bottom: 80px;
}
.topInstagram__link{
    display: block;
    margin: auto;
    width: 88%;
    max-width: 900px;
    transition: .4s;
}
.topInstagram__link:hover{
    opacity: .7;
}
.topInstagram__img{
    display: block;
    width: 100%;
    background-color: #fff;
}
@media screen and (max-width: 540px){
    .topInstagram--pc{
        display: none;
    }
}

/* 執筆者 */
.writerSection__inner{
    width: 100%;
}
.writerSection__popText{
    font-size: 18px !important;
    color: #456545;
    margin: 3em auto 4px !important;
    text-align: center !important;
}
.writerSection__content{
    display: flex;
    align-items: flex-start;
    padding: 40px;
    background-color: #E9F4E9;
    gap: 20px;
}
.writerSection__imgContainer{
    position: relative;
    flex: 0 0 120px;
    max-width: 120px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.writerSection__img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto !important;
}
.writerSection__info{
    flex: 1 1 auto;
}
.writerSection__name{
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin: 0 0 1em !important;
    font-weight: 500 !important;
}
.writerSection__text{
    font-size: 12px !important;
    margin: 0 !important;
}
@media screen and (max-width: 540px){
    .writerSection__content{
        flex-direction: column;
        align-items: center;
    }
}

/* 404 */
.errorPage__inner{
    width: 88%;
    max-width: 600px;
    margin: auto;
    padding: 120px 0;
}
.errorPage__heading{
    text-align: center;
}
.errorPage__heading--en{
    font-size: 16px;
    color: #48884F;
    margin: 0 auto 12px;
}
.errorPage__heading--ja{
    font-size: 24px;
    color: #111;
    margin: 0 auto 12px;
}
.errorPage__text{
    margin-top: 32px !important;
    font-size: 16px;
}
.errorPage__link{
    display: block;
    padding: 14px;
    text-align: center;
    border: 1px solid #999;
    margin: 32px auto 0;
    transition: .4s;
}
.errorPage__link:hover{
    opacity: .7;
}

/* サイトマップ */
.sitemap__inner{
    width: 88%;
    max-width: 1100px;
    margin: auto;
    padding: 120px 0;
}
.sitemap__content{
    margin: 40px 0;
}
.sitemap__content h4{
    display: none;
}
.sitemap__inner a{
    display: block;
    font-size: 14px;
    letter-spacing: .04em;
    padding: 1em 0;
    border-bottom: 1px solid #ddd;
    transition: .4s;
}
.sitemap__inner a:hover{
    opacity: .5;
}
.spTopMenu{
    display: none;
}
.spTopMenu--top{
    display: block;
}
.spTopMenu__inner{
    display: flex;
    width: 100vw;
    padding-top: 88px;
}
.spTopMenu__link{
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 0 0 50%;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.spTopMenu__link--beginner{
    background-color: #5F9AB1;
}
.spTopMenu__link--qa{
    background-color: #5F9A67;
}
.spTopMenu__linkIcon--beginner{
    width: 16px;
}
.spTopMenu__linkIcon--qa{
    width: 40px;
}
@media screen and (min-width: 540px){
    .spTopMenu{
        display: none;
    }
}

.topFeature__heading{
    font-size: 24px;
    margin-bottom: 1em;
}
.topFeature__text{
    font-size: 14px;
    line-height: 2;
}
@media screen and (min-width: 540px){
    .topFeature___heading{
        font-size: 20px;
    }
}

.singlePost__lists{
    gap: 12px;
}
.singlePost__list{
    flex: 1 1 25%;
    margin: 0 !important;
}
.singlePost__thumbnail{
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.singlePost__thumbnail > img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.singlePost__banner{
    width: 100% !important;
}

.footerBanner__inner{
    width: 88%;
    max-width: 1160px;
    margin: auto;
    padding: 40px 0;
}
.footerBanner__content{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footerBanner__link{
    display: block;
    flex: 1 1 50%;
    max-width: 50%;
    transition: .4s;
    cursor: pointer;
}
.footerBanner__link:hover{
    opacity: .7;
}
.footerBanner__img{
    display: block;
    width: 100%;
}
.accessMap{
    width: 100%;
}
.accessMap__contents{
    display: flex;
    gap: 40px;
}
.accessMap__content{
    flex: 1 1 50%;
}
.accessMap__img{
    display: block;
    width: 100%;
}
.accessMap__text{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-size: 14px;
    margin-top: 1em;
}
.accessMap__icon{
    flex: 0 0 24px;
    width: 40px;
}
@media screen and (max-width: 800px){
    .accessMap__contents{
        flex-direction: column;   
    }
    .accessMap__content{
        flex: 1 1 auto;
    }
}
