/* ##############################################################################

    DEFAULT

############################################################################## */
html {
  height: 100%;
  overflow-y: scroll;
}
body {
  min-width: 1060px;
  height: 100%;
  font: 15px/1.231 YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.08em;
  *font-size: small;
  *font: x-small;
  color: #74533f;
  -webkit-font-smoothing: antialiased;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "Lato", YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
      "ＭＳ Ｐゴシック", sans-serif;
  }
}
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
small {
  font-size: 86%;
}
.small-txt {
  font-size: 16px;
}
a {
  color: #74533f;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  outline: none;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media only screen and (min-width: 768px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  @-moz-document url-prefix() {
    * {
      font-feature-settings: "palt";
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    * {
      font-feature-settings: "palt";
    }
  }
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 14px;
    -webkit-text-size-adjust: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_in-disp {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 1;
  }
}
@keyframes fade_out-disp {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes slide_in_lft {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_out_lft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes slide_in_rgt {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide_out_rgt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10%);
  }
}
@keyframes slide_in_top {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide_out_top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes slide_in_btm {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide_out_btm {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

/* layout
**************************************** */

/* --- inner --- */
.inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.inner-sm {
  width: 920px;
}
.inner-md {
  max-width: 80%;
}
.inner-lg {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- flex --- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-end {
  -webkit-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}

.flex-col2 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-col2 > * {
  width: 44.45%;
  margin-bottom: 3%;
}
.flex-col2 > *:nth-child(even) {
  width: 50%;
  margin-left: 5.55%;
}
.flex-reverse.flex-col2 > *:nth-child(even) {
  margin-right: 5.55%;
  margin-left: 0;
}
.flex-col2:not(.flex-wrap) > *:last-child,
.flex-col2:not(.flex-wrap) > *:nth-last-child(2) {
  margin-bottom: 0;
}
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col3 > * {
  width: 30%;
  margin-left: 5%;
  margin-bottom: 5%;
}
.flex-col3 > *:nth-child(3n + 1) {
  margin-left: 0;
}
.flex-col3 > *:last-child,
.flex-col3 > *:nth-last-child(2),
.flex-col3 > *:nth-last-child(3) {
  margin-bottom: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-left: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n + 1) {
  margin-left: 0;
}

.line-lft-org {
  position: relative;
  padding: 24px 56px;
  margin-bottom: 24px;
}
.line-lft-org:last-of-type {
  margin-bottom: 0;
}
.line-lft-org::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #faa75e;
  border-radius: 3px;
}
.line-lft-org.flex-col2 > * {
  width: 23.7%;
}
.line-lft-org.flex-col2 > *:nth-child(even) {
  width: 66%;
  margin-left: 10.3%;
}
.line-lft-org.flex-col2 > *:nth-child(even) {
  margin-right: 10.3%;
  margin-left: 0;
}

/* --- margin --- */
.mgn-btm4 {
  margin-bottom: 4px;
}
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}

.line-btm-mgn72 {
  border-bottom: 2px dotted #d2c8c1;
  margin-bottom: 72px;
  padding-bottom: 72px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none2 {
  display: none;
}
.sp-none {
  display: block;
}

@media only screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
  .flex-pc {
    display: block;
  }
  .mgn-btm8 {
    margin-bottom: 4px;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 12px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 32px;
  }
  .mgn-btm56 {
    margin-bottom: 48px;
  }
  .mgn-btm64 {
    margin-bottom: 56px;
  }
  .mgn-btm72 {
    margin-bottom: 64px;
  }
  .mgn-btm80 {
    margin-bottom: 72px;
  }
  .section_pdg {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .line-btm-mgn72 {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .container *not(.contact) .section_pdg {
    padding-top: 32px;
  }
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }

  .flex-col2 > *,
  .flex-col2 > *:nth-child(even),
  .flex-reverse.flex-col2 > *:nth-child(even) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .flex-col2 > *:nth-child(odd) {
    margin-bottom: 5%;
  }
  .flex-col3 > * {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 8%;
  }
  .flex-col3 > *:nth-child(3n + 1) {
    margin-left: 4%;
  }
  .flex-col3 > *:nth-child(2n + 1) {
    margin-left: 0;
  }
  .flex-col3 > *:nth-last-child(3) {
    margin-bottom: 8%;
  }
  .line-lft-org {
    padding: 32px 0 0 0;
    margin-bottom: 32px;
  }
  .line-lft-org.flex-col2 > *,
  .line-lft-org.flex-col2 > *:nth-child(even),
  .line-lft-org.flex-col2 > *:nth-child(even) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .line-lft-org::before {
    width: 100%;
    height: 5px;
  }
  .line-lft-org:last-of-type {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 420px) {
  .pc-none2 {
    display: block;
  }
}

/* bg
**************************************** */
.bg-01 {
  background-color: #fff8e8;
}
.bg-02 {
  background-image: url(../images/common/pattern01.jpg);
  background-repeat: repeat;
}
.bg-03 {
  background-color: #eef8ff;
}
.bg-04 {
  background-image: url(../images/common/pattern02.jpg);
  background-repeat: repeat;
}
@media only screen and (max-width: 767px) {
  .bg-01 {
    background-color: #fff7ee;
  }
}

/* box
**************************************** */
.box_tapestry {
  position: relative;
  width: 100%;
  margin: 52px auto 0;
  padding: 4px 32px 60px;
  background-color: #fffbf1;
  border-top: solid 4px #28c25f;
  border-bottom: solid 4px #28c25f;
}
.box_tapestry-wht {
  background-color: #fff;
}
.box_tapestry::before {
  content: "";
  position: absolute;
  top: -44px;
  left: calc(50% - 40px);
  display: block;
  width: 80px;
  height: 80px;
  border-top: solid 3px #28c25f;
  border-right: solid 3px #28c25f;
  transform: rotate(-45deg) skew(calc((90deg - 70deg) / 2), calc((90deg - 70deg) / 2));
}
@media all and (-ms-high-contrast: none) {
  .box_tapestry::before {
    top: -37px;
    left: calc(50% - 36px);
    width: 70px;
    height: 70px;
    transform: rotate(-45deg);
  }
}
@supports (-ms-ime-align: auto) {
  .box_tapestry::before {
    top: -37px;
    left: calc(50% - 36px);
    width: 70px;
    height: 70px;
    transform: rotate(-45deg);
  }
}
.box_tapestry::after {
  content: "";
  position: absolute;
  top: -52px;
  left: calc(50% - 7px);
  display: block;
  width: 14px;
  height: 14px;
  background-color: #ffd25a;
  border-radius: 50%;
}
.box_tapestry_ttl {
  padding: 8px 0;
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 188%;
  text-align: center;
  color: #2faa5b;
  border-bottom: solid 1px #28c25f;
}
.box_tapestry dl,
.box_tapestry ul {
  padding: 0 4px;
}
.box_tapestry dl dt {
  width: 30%;
  margin-bottom: 10px;
  color: #28c25f;
}
.box_tapestry dl dd {
  width: 70%;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.box_tapestry li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.8;
}
.box_tapestry li::before {
  content: "\30FB";
  padding: 0 6px;
}
@media only screen and (max-width: 767px) {
  .box_tapestry {
    padding: 8px 24px 48px;
  }
  .box_tapestry:not(.box_tapestry-wht) {
    background-color: #fff7ee;
  }
  .box_tapestry_ttl {
    margin-bottom: 24px;
    padding: 6px 0;
    font-size: 158%;
  }
  .box_tapestry dl dd {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .box_tapestry {
    padding: 8px 20px 48px;
  }
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  text-align: center;
}
.page_ttl img {
  width: 100%;
}
.page_ttl-jp {
  display: block;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
.page_ttl-jp:not(.page_ttl-jp-sm) {
  font-size: 267%;
}
.page_ttl-jp-sm {
  margin-top: 8px;
  font-size: 140%;
}
.page_ttl-icon {
  position: relative;
  z-index: 10;
  display: block;
  width: 108px;
  height: 108px;
  margin: -54px auto 14px;
  border-radius: 50%;
  background-color: #faa75e;
  background-image: url(../images/subpage/ttl/syoujou_icon.png);
  background-repeat: no-repeat;
  background-position: center;
}
.archive-news .page_ttl-icon,
.single-news .page_ttl-icon {
  background-color: #ff7474;
  background-image: url(../images/subpage/ttl/news_icon.png);
  background-position: 50% 50%;
}
.page-treatment .page_ttl-icon {
  background-color: #be80c5;
  background-image: url(../images/subpage/ttl/plus_icon.png);
  background-position: 50% 50%;
}
.page-shinryou .page_ttl-icon {
  background-color: #77cbee;
  background-image: url(../images/subpage/ttl/shinryou_icon.png);
  background-position: calc(50% - 1px) 50%;
}
.page-shisetsu .page_ttl-icon {
  background-color: #28c25f;
  background-image: url(../images/subpage/ttl/shisetsu_icon.png);
  background-position: 50% 50%;
}
.page-access .page_ttl-icon {
  background-color: #28c25f;
  background-image: url(../images/subpage/ttl/access_icon.png);
  background-position: 50% 50%;
}
.page-recruit .page_ttl-icon,
.archive-bosyu .page_ttl-icon,
.single-bosyu .page_ttl-icon,
.archive-voice .page_ttl-icon,
.single-voice .page_ttl-icon {
  background-color: #fcaae4;
  background-image: url(../images/subpage/ttl/recruit_icon.png);
  background-position: calc(50% - 1px) 50%;
}
.page-privacypolicy .page_ttl-icon {
  background-color: #5f88d6;
  background-image: url(../images/subpage/ttl/privacy_icon.png);
  background-position: calc(50% - 2px) calc(50% + 4px);
}
.syoujou_cat .page_ttl-icon {
  background-size: 60% auto;
}
.syoujou_cat-neck .page_ttl-icon {
  background-color: #ff8b5c;
  background-image: url(../images/home/syoujou_icon01_sp.png);
  background-position: 50% calc(50% - 4px);
}
.syoujou_cat-shoulder .page_ttl-icon {
  background-color: #5eda9e;
  background-image: url(../images/home/syoujou_icon02_sp.png);
  background-position: 50% calc(50% - 4px);
}
.syoujou_cat-arm .page_ttl-icon {
  background-color: #77cbef;
  background-image: url(../images/home/syoujou_icon03_sp.png);
  background-position: calc(50% - 2px) calc(50% - 4px);
}
.syoujou_cat-elbow .page_ttl-icon {
  background-color: #fab967;
  background-image: url(../images/home/syoujou_icon04_sp.png);
  background-position: calc(50% + 4px) calc(50% - 4px);
}
.syoujou_cat-hand .page_ttl-icon {
  background-color: #5d86d8;
  background-image: url(../images/home/syoujou_icon05_sp.png);
  background-position: calc(50% + 1px);
}
.syoujou_cat-hip .page_ttl-icon {
  background-color: #ff7475;
  background-image: url(../images/home/syoujou_icon06_sp.png);
  background-position: calc(50% + 7px) 50%;
}
.syoujou_cat-knee .page_ttl-icon {
  background-color: #e589f4;
  background-image: url(../images/home/syoujou_icon07_sp.png);
  background-position: calc(50% + 8px) calc(50% - 2px);
}
.syoujou_cat-limbs .page_ttl-icon {
  background-color: #53afee;
  background-image: url(../images/home/syoujou_icon08_sp.png);
  background-position: 50% calc(50% + 1px);
}
.syoujou_cat-leg .page_ttl-icon {
  background-color: #8a92f7;
  background-image: url(../images/home/syoujou_icon09_sp.png);
  background-position: calc(50% + 4px) calc(50% - 2px);
}
.syoujou_cat-accident .page_ttl-icon {
  background-color: #4dd3dc;
  background-image: url(../images/home/syoujou_icon10_sp.png);
  background-position: calc(50% - 1px) 50%;
}
.syoujou_cat-osteoporosis .page_ttl-icon {
  background-color: #fbaae4;
  background-image: url(../images/home/syoujou_icon11_sp.png);
  background-position: calc(50% - 8px) 50%;
}
.syoujou_cat-etc .page_ttl-icon {
  background-color: #46d178;
  background-image: url(../images/home/syoujou_icon12_sp.png);
  background-position: calc(50% - 1px) 50%;
}
.page-recruit .page_ttl--bnr {
  z-index: 999;
  position: absolute;
  bottom: calc(2vh + 40px);
  right: 52px;
  width: 440px;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.page-recruit .page_ttl--bnr:hover {
  opacity: 0.75;
}
.page-recruit .page_ttl--bnr > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .page_ttl {
    overflow: hidden;
  }
  body:not(.page-recruit) .page_ttl img {
    width: 150%;
    max-width: 150%;
    transform: translateX(-12%);
  }
  body.single-voice-304 .page_ttl img,
  body.single-voice-305 .page_ttl img,
  body.single-voice-302 .page_ttl img,
  body.single-voice-303 .page_ttl img {
    transform: translateX(-21%);
  }
  .page_ttl-jp:not(.page_ttl-jp-sm) {
    font-size: 215%;
  }
  .page_ttl-icon {
    width: 64px;
    height: 64px;
    margin: -32px auto 8px;
    background-size: 70% auto;
  }
  .syoujou_cat .page_ttl-icon {
    background-size: 70% auto;
  }
  .syoujou_cat-arm .page_ttl-icon {
    background-size: 65% auto;
    background-position: calc(60% - 2px) calc(60% - 4px);
  }
  .syoujou_cat-elbow .page_ttl-icon {
    background-size: 75% auto;
    background-position: calc(50% + 4px) calc(60% - 4px);
  }
  .syoujou_cat-hip .page_ttl-icon {
    background-size: 75% auto;
    background-position: calc(30% + 7px) 50%;
  }
  .syoujou_cat-knee .page_ttl-icon {
    background-position: calc(30% + 8px) calc(55% - 2px);
  }
  .syoujou_cat-limbs .page_ttl-icon {
    background-size: 55% auto;
  }
  .syoujou_cat-accident .page_ttl-icon {
    background-size: 80% auto;
  }
  .syoujou_cat-leg .page_ttl-icon {
    background-size: 60% auto;
    background-position: calc(45% + 4px) calc(50% - 2px);
  }
  .syoujou_cat-osteoporosis .page_ttl-icon {
    background-size: 50% auto;
    background-position: calc(60% - 8px) 50%;
  }
  .page-treatment .page_ttl-icon {
    background-image: url(../images/subpage/ttl/plus_icon_sp.png);
  }
  .page-recruit .page_ttl--bnr {
    position: static;
    width: 90%;
    margin: 24px auto 56px;
  }
}

/* --- section_ttl --- */
.section_ttl {
  margin-bottom: 48px;
  font-size: 254%;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}
.section_ttl span {
  display: block;
  font-size: 52.5%;
  letter-spacing: 0.07em;
  opacity: 0.3;
}
.section_ttl-sub {
  margin-bottom: 40px;
  font-size: 220%;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}
.section_ttl-sm {
  font-size: 267%;
}
.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}
.leaf_ttl {
  position: relative;
  padding-left: 72px;
}
.icon_leaf {
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
}
@media all and (-ms-high-contrast: none) {
  .icon_leaf {
    top: -2px;
  }
}
.icon_leaf::before,
.icon_leaf::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-color: #f58a40;
  border-radius: 20px 5px 20px 5px;
  background-blend-mode: multiply;
}
.icon_leaf::before {
  background-color: #faa75e;
  opacity: 0.6;
}
.icon_leaf::after {
  position: absolute;
  top: 18px;
  left: 18px;
  opacity: 0.7;
}
.section_ttl.leaf_ttl {
  padding-top: 72px;
  padding-left: 0;
}
.section_ttl .icon_leaf {
  left: calc(50% - 25px);
}
.icon_nami {
  position: absolute;
  bottom: -16px;
  left: 0;
  display: block;
  width: 82px;
  height: 7px;
  background-image: url(../images/common/line.png);
}

@media only screen and (max-width: 767px) {
  .icon_nami {
    bottom: -14px;
    background-size: cover;
    background-image: url(../images/common/line@2x.png);
  }
  .icon_leaf {
    top: 4px;
    transform: scale(0.9, 0.9);
  }
  .section_ttl {
    margin-bottom: 32px;
    font-size: 229%;
  }
  .leaf_ttl {
    padding-left: 68px;
  }
  .section_ttl.leaf_ttl {
    padding-top: 60px;
  }
  .section_ttl-sub {
    font-size: 193%;
    margin-bottom: 32px;
  }
}

/* --- heading --- */
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  position: relative;
  line-height: 1.3;
}
.heading-1 {
  font-size: 234%;
  letter-spacing: 0.1em;
  color: #74533f;
}
.heading-1 span,
.heading-2 span {
  display: block;
  font-size: 57%;
  letter-spacing: 0.05em;
  opacity: 0.3;
  color: #74533f;
  transform: translateY(-4px);
}
.heading-2 {
  font-size: 214%;
}
.heading-2 .icon_leaf::after {
  display: none;
}
.heading-2 span {
  display: inline;
  padding-left: 16px;
}
.heading-2.leaf_ttl {
  padding-left: 48px;
}
.heading-3 {
  font-size: 200%;
}
.heading-3 span {
  font-size: 60%;
  padding-left: 24px;
}
.heading-4 {
  font-size: 187%;
}
.heading-4 span {
  font-size: 60%;
  padding-left: 24px;
  opacity: 0.3;
}

@media only screen and (max-width: 767px) {
  .heading-1 {
    font-size: 208%;
  }
  .heading-2 {
    font-size: 186%;
  }
  .heading-3 {
    font-size: 172%;
  }
  .heading-4 {
    font-size: 158%;
  }
  .heading-1 span,
  .heading-2 span {
    transform: translateY(0);
  }
  .heading-2 span {
    padding-left: 12px;
  }
  .heading-3 span {
    padding-left: 20px;
  }
}

/* txt
**************************************** */
.txt-ctr {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt-big {
  font-size: 115%;
}
.font-deco-jp,
.wp-pagenavi {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.txt-grn {
  color: #2faa5b;
}
.txt-red {
  color: #ff7474;
}
.txtarea p {
  font-size: 107%;
  line-height: 1.94;
}
.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}
.txt-lg {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
.txtarea .txt-sm {
  font-size: 100%;
  line-height: 1.8;
}
.txtarea .txt-attention {
  font-size: 88%;
  color: #999;
}
.txtarea .txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txtarea .txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.txt-tel {
  font-size: 154%;
  line-height: 1.2;
  color: #ff7474;
}
.txt-tel img {
  width: 23px;
  height: auto;
  margin-right: 8px;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .flex:not(.flex-reverse) .txtarea {
    margin-top: 24px;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 8px 8px;
}
.table_default th {
  color: #2faa5b;
  font-size: 134%;
}
.table_default td {
  padding: 8px 16px;
  font-size: 107%;
  line-height: 1.94;
}

/* --- list ---- */
.list {
  list-style-type: none;
}
.list li:not(:last-child) {
  margin-bottom: 16px;
}
.list-disc-red li:not(:last-child) {
  margin-bottom: 2px;
}
.list li {
  position: relative;
  padding-left: 1.4em;
}
.list-disc li::before,
.list-disc-red li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #666;
}
/* 小 黒丸付きリスト */
.list-disc-sm li::before {
  content: "\30FB";
  padding: 0 6px;
}
/* 赤丸付きリスト */
.list-disc-red li::before {
  background-color: #ff7474;
}
/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}
.list-num li {
  padding-left: 0;
}
.list-num li::before {
  display: none;
}
/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #666;
  background-color: transparent;
}
/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #666;
}
/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}
.list li ul li::before {
  width: 6px;
  height: 6px;
  top: 0.8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #dbd7d4;
}
.list-dl dt {
  position: absolute;
  left: 16px;
  padding-top: 14px;
  font-weight: 700;
  color: #2faa5b;
  font-size: 114%;
}
.list-dl dd {
  padding-left: 184px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbd7d4;
}
@media only screen and (max-width: 767px) {
  .list-dl dt {
    position: static;
    padding: 12px 8px 0;
    font-size: 135%;
  }
  .list-dl dd {
    padding: 4px 8px 14px;
    line-height: 1.5;
  }
}

/* btn
**************************************** */
.btn {
  position: relative;
  display: block;
  width: 247px;
  margin-inline: auto;
  padding: 11px 40px 13px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #ff7474;
  color: #fff;
  text-align: center;
  font-size: 134%;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
@media all and (-ms-high-contrast: none) {
  .btn {
    padding: 15px 40px 9px;
  }
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:not(.btn_gray)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f75555;
  transition: all 0.3s;
  z-index: 1;
  border-radius: 100px;
}
.btn i {
  position: absolute;
  z-index: 2;
  top: calc(50% - 8px);
  right: 24px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 3px;
}
.btn i::before,
.btn i::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 0;
  border-top: solid 2px #ff7474;
}
.btn i::before {
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: calc(50% - 2.5px);
}
.btn i::after {
  transform: rotate(-45deg);
  top: 50%;
  left: calc(50% - 2.5px);
}
.btn:not(.btn_gray):hover {
  opacity: 1;
}
.btn:not(.btn_gray):hover::after {
  width: 100%;
}
.btn_gray {
  border: 1px solid #d2d2d2;
  background-color: #fff;
  color: #d2d2d2;
}
.btn_gray i::before,
.btn_gray i::after {
  border-top-color: #d2d2d2;
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 128%;
  }
  .btn:not(.btn_gray):hover::after {
    width: 0;
  }
}

/* page_nav
**************************************** */
.page_nav {
  margin-top: 24px;
}
.page_nav a,
.page_nav-top a {
  padding: 0 24px;
  font-size: 120%;
  line-height: 1;
  border-right: solid 2px #e3ddda;
}
.page_nav li:last-of-type a,
.page_nav-top a {
  border-right: none;
}
.page_nav a span,
.page_nav-top a span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transform: translateY(2px);
  background-color: rgba(245, 138, 63, 0.7);
  border-radius: 3px;
}
.page_nav a span::before,
.page_nav a span::after,
.page_nav-top a span::before,
.page_nav-top a span::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 0;
  border-top: solid 2px #fff;
}
.page_nav a span::before,
.page_nav-top a span::before {
  transform: rotate(135deg);
  top: 45%;
  left: calc(50% - 1px);
}
.page_nav a span::after,
.page_nav-top a span::after {
  transform: rotate(45deg);
  top: 45%;
  right: calc(50% - 1px);
}

@media only screen and (max-width: 767px) {
  .page_nav li {
    width: 50%;
    margin-bottom: 8px;
  }
  .page_nav a {
    display: block;
    text-align: center;
  }
  .page_nav li:nth-of-type(even) a {
    border-right: none;
  }
}
@media only screen and (max-width: 400px) {
  .page_nav li {
    width: 90%;
    margin: 0 auto 10px;
    padding-bottom: 12px;
    border-bottom: solid 1px #e3ddda;
  }
  .page_nav li a {
    position: relative;
    padding: 0 40px 0 12px !important;
    border-right: none;
    text-align: left !important;
  }
  .page_nav a span {
    position: absolute;
    right: 16px;
    top: calc(50% - 9px);
  }
}

/* deco
**************************************** */
.leaf-img img {
  border-radius: 150px 10px 150px 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .leaf-img img {
    border-radius: 32.3% 1.2% 32.3% 1.2% / 46.4% 1.8% 46.4% 1.8%;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9980;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
}
.header--logo {
  width: 18.1875%;
  text-align: center;
}
.header--logo a {
  position: relative;
  display: block;
  height: 95px;
}
.header.sm .header--logo a {
  height: 69px;
}
.header--logo img {
  position: absolute;
  top: -6px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
}
.header.sm .header--logo img {
  width: 200px;
}
.header--nav {
  flex: 1;
}
.copyright {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 99999;
  color: #29a25f;
  font-size: 87%;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  writing-mode: sideways;
}
.copyright span {
  display: inline-block;
  transform: rotate(90deg);
}

@media only screen and (max-width: 1565px) and (min-width: 768px) {
  .header--logo img {
    width: 200px;
  }
  .header.sm .header--logo img {
    width: 180px;
  }
  .header.sm .gnav span {
    display: none;
  }
  .header--logo a {
    height: 92px;
  }
  .header.sm .header--logo a {
    height: 69px;
  }
}
@media only screen and (max-width: 767px) {
  .home .header {
    height: 0;
    padding: 0;
  }
  .home .header--logo {
    display: none;
  }
  .header {
    position: absolute;
    left: 2%;
    right: auto;
    display: inline-block;
    width: 188px;
    padding: 8px 16px 12px;
    overflow: visible;
  }
  .header--logo {
    width: auto;
  }
  .header--logo a,
  .header.sm .header--logo a {
    height: 100%;
  }
  .header--logo img {
    position: static;
  }
  .header--nav {
    width: auto;
  }
  .copyright {
    display: none;
  }
}

/* gnav
**************************************** */
.gnav li {
  width: 20%;
}
.gnav--menu {
  flex: 1;
}
.gnav--menu a {
  display: block;
  padding: 10px 16px 8px;
  border-right: solid 1px #dcdcdc;
  border-bottom: solid 6px #ddd;
  text-align: center;
  font-size: 134%;
  line-height: 1.3;
  white-space: nowrap;
}
.gnav--menu li:first-child a {
  border-left: solid 1px #dcdcdc;
}
.gnav--news a {
  border-bottom-color: #ff7474;
  color: #ff7474;
}
.gnav--syoujou a {
  border-bottom-color: #faa75e;
  color: #faa75e;
}
.gnav--treatment a {
  border-bottom-color: #be80c5;
  color: #be80c5;
}
.gnav--shinryou a {
  border-bottom-color: #77cbee;
  color: #77cbee;
}
.gnav--shisetsu a {
  border-bottom-color: #65dc9a;
  color: #28c25f;
}
.gnav--recruit a {
  border-bottom-color: #fcaae4;
  color: #fcaae4;
}
.gnav--privacy a {
  border-bottom-color: #5c85d8;
  color: #5c85d8;
}
.gnav a:hover {
  opacity: 1;
}
.gnav--news a:hover {
  background-color: #fff0f0;
}
.gnav--syoujou a:hover {
  background-color: #fff7ef;
}
.gnav--treatment a:hover {
  background-color: #f8f0fb;
}
.gnav--shinryou a:hover {
  background-color: #e4f7ff;
}
.gnav--shisetsu a:hover {
  background-color: #ebfff4;
}
.gnav--recruit a:hover {
  background-color: #fff6fc;
}
.gnav--privacy a:hover {
  background-color: #f3f7ff;
}
.gnav--news img {
  transform: translateX(6px) translateY(4px);
}
.gnav--btn {
  display: grid;
  place-content: center;
  width: fit-content;
  padding: 11px 50px 13px 40px;
  border-radius: 0;
}
.gnav--btn::after {
  border-radius: 0 !important;
}
.gnav--menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  text-align: center;
}
.gnav--menu span img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.header.sm .gnav--menu a {
  padding: 8px 8px 10px;
  overflow: hidden;
  font-size: 120%;
  line-height: 2.4;
  background-color: #fff;
}
.gnav_btn {
  display: none;
}
.header--tel {
  display: none !important;
}
@media all and (-ms-high-contrast: none) {
  .gnav span {
    margin-bottom: 4px;
  }
  .header.sm .gnav--menu a {
    padding: 10px 8px 8px;
    line-height: 3;
  }
}
.header.sm .gnav--menu span {
  width: 48px;
  float: left;
}
.header.sm .gnav--news img {
  transform: translateX(12px) translateY(0);
}

@media only screen and (max-width: 1120px) and (min-width: 768px) {
  .gnav--treatment {
    display: none;
  }
}
@media only screen and (max-width: 1300px) {
  .gnav--menu a {
    font-size: 120%;
  }
}
@media only screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9998;
    height: 100%;
    display: block;
    overflow-x: scroll;
    padding: 4% 8% 160px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease-out;
    transform: translateY(-100%);
    background-color: #fff7ee;
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .gnav .box_tapestry {
    padding: 16px 24px 24px;
    background-color: #fff;
  }
  .gnav li {
    width: 100%;
    padding-left: 0em;
    text-indent: 0em;
  }
  .gnav .box_tapestry li::before {
    display: none;
  }
  .gnav--menu li:first-child a {
    border-left: none;
  }
  .gnav--menu a {
    position: relative;
    padding: 8px 12px;
    border-right: none;
    border-bottom: solid 1px #dcdcdc;
    text-align: left;
    font-size: 144%;
    line-height: 2.2;
    overflow: hidden;
  }
  .gnav :not(.gnav--logo) a {
    height: 0;
    transition: all 0.6s;
  }
  .gnav--logo {
    max-width: 90%;
    width: 253px;
    margin-left: auto;
    margin-right: auto;
  }
  .gnav .gnav--logo a {
    border-bottom: none;
    text-align: center;
  }
  .gnav li:last-of-type a {
    border-bottom: none;
  }
  .gnav :not(.gnav--logo) a::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 12px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }
  .gnav--news a::before {
    border-color: #ff7474;
  }
  .gnav--syoujou a::before {
    border-color: #faa75e;
  }
  .gnav--treatment a::before {
    border-color: #be80c5;
  }
  .gnav--shinryou a::before {
    border-color: #77cbee;
  }
  .gnav--shisetsu a::before {
    border-color: #65dc9a;
  }
  .gnav--recruit a::before {
    border-color: #fcaae4;
  }
  .gnav--privacy a::before {
    border-color: #5c85d8;
  }
  .gnav--menu span {
    float: left;
    width: 45px;
    margin-right: 32px;
  }
  .gnav--news img {
    transform: translateX(3px) translateY(2px);
  }
  .gnav--btn {
    width: 100%;
    margin-top: 16px;
    padding: 15px 50px 17px 40px;
  }
  .header--tel {
    position: fixed;
    right: 8px;
    top: 0;
    display: flex !important;
    align-items: center;
    gap: 8px;
    height: 59px;
    padding: 10px;
    background-color: #ff7474;
    color: #fff;
    border-radius: 0 0 20px 20px;
  }
  .header--tel img {
    filter: brightness(0) invert(1);
  }
  .gnav_btn {
    position: fixed;
    bottom: 72px;
    right: 12px;
    z-index: 9999;
    border-radius: 50%;
    display: block;
    width: 72px;
    height: 72px;
    background-color: #28c25f;
    box-shadow: 0px 0px 16px rgba(8, 24, 49, 0.05);
  }
  .gnav_btn,
  .gnav_btn > span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .gnav_btn > span {
    position: absolute;
    left: calc(50% - 15px);
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
  }
  .gnav_btn > span:nth-of-type(1) {
    top: 14px;
  }
  .gnav_btn > span:nth-of-type(2) {
    top: 24px;
  }
  .gnav_btn > span:nth-of-type(3) {
    top: 34px;
  }
  .header.active .gnav_btn > span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-40deg);
    transform: translateY(10px) rotate(-40deg);
  }
  .header.active .gnav_btn > span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .gnav_btn > span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(40deg);
    transform: translateY(-10px) rotate(40deg);
  }
  .gnav_btn p {
    position: absolute;
    bottom: 8px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
  .gnav_btn p span:first-of-type {
    letter-spacing: 0;
  }
  .gnav_btn p span:last-of-type,
  .header.active .gnav_btn p span:first-of-type {
    display: none;
  }
  .header.active .gnav_btn p span:last-of-type {
    display: inline;
  }
  .header.active .gnav :not(.gnav--logo) li a {
    height: 62px;
  }
}
@media only screen and (max-width: 370px) {
  .gnav--menu span {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 340px) {
  .gnav--menu a {
    padding: 8px 4px;
  }
  .gnav :not(.gnav--logo) a::before {
    display: none;
  }
}

/* left_nav
**************************************** */
.left_nav {
  position: fixed;
  left: 0;
  z-index: 9999;
  border-radius: 0 5px 5px 0;
}
.left_nav-contact {
  top: 94px;
  pointer-events: none;
  width: 535px;
  overflow: hidden;
}
.left_nav-contact-inner {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  transform: translateX(-495px);
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  pointer-events: auto;
}
.left_nav.left_nav-contact > a {
  display: none;
}
.left_nav-contact:hover .left_nav-contact-inner {
  transform: translateX(0);
}
.left_nav-recruit {
  top: 394px;
  left: -2px;
  background-color: #f9b967;
}
.left_nav-sns {
  top: 660px;
  left: -2px;
  padding-block: 8px;
  background-color: #fff;
  border: solid 1px #dcdcdc;
  border-left: none;
}
.left_nav-sns ul {
  flex-direction: column;
}
@media all and (-ms-high-contrast: none) {
  .left_nav-recruit {
    top: 408px;
  }
}
@media only screen and (min-width: 768px) {
  .left_nav-contact.abs {
    position: absolute;
    top: calc(90% - 280px);
    pointer-events: auto;
  }
  .left_nav-recruit.abs {
    position: absolute;
    top: 100%;
  }
  .left_nav-sns.abs {
    position: absolute;
    top: 120%;
  }
  .abs .left_nav-contact-inner {
    transform: translateX(0);
  }
}
.left_nav a {
  display: block;
}

.left_nav--ttl {
  display: block;
  width: 40px;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  font-size: 120%;
  line-height: 40px;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}
.left_nav-recruit .left_nav--ttl {
  width: 42px;
}
.left_nav-recruit:hover {
  left: 0;
}
@media all and (-ms-high-contrast: none) {
  .left_nav--ttl {
    display: inline-block;
    line-height: 50px;
  }
}
.left_nav--ttl span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 16px;
  background-color: #fff;
  border-radius: 3px;
}
.left_nav-contact.abs .left_nav--ttl span,
.left_nav-contact:hover .left_nav--ttl span {
  transform: rotate(180deg);
}
.left_nav--ttl span::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #ff7474;
  border-right: solid 2px #ff7474;
}
.left_nav--ttl span::before {
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: calc(50% - 4px);
}
.left_nav-contact .left_nav--ttl span::before {
  border-top-color: #28c25f;
  border-right-color: #28c25f;
}
.left_nav-recruit .left_nav--ttl span::before {
  border-top-color: #f9b967;
  border-right-color: #f9b967;
}
.left_nav--ttl.contact span::before {
  top: calc(50% - 4px);
  left: calc(50% - 3px);
  transform: rotate(135deg);
}
.left_nav--content {
  width: 495px;
  padding-top: 22px;
  background-color: #fff;
}
.left_nav--contact_day {
  padding: 0 30px 12px 36px;
}
.left_nav--content .contact_day-ttl {
  font-size: 127%;
  padding: 0 8px;
  white-space: nowrap;
}
.left_nav--contact_tel,
.left_nav--contact_online {
  padding: 10px;
  margin-bottom: 2px;
  font-size: 154%;
  line-height: 1.2;
  text-align: center;
}
.left_nav--contact_tel {
  background-color: #fff7f6;
}
.left_nav--contact_online {
  background-color: #fff8e8;
}
.left_nav--contact_tel {
  width: calc(58% - 1px);
}
.left_nav--contact_online {
  width: calc(42% - 1px);
  font-size: 147%;
}
.left_nav--contact_tel a {
  color: #ff7474;
}
.left_nav--contact_online a {
  color: #faa75e;
}
.left_nav--contact_tel img,
.left_nav--contact_online img {
  height: auto;
  margin-right: 8px;
}
.left_nav--contact_tel img {
  width: 23px;
}
.left_nav--contact_online img {
  width: 25px;
}
.left_nav--access {
  padding: 8px;
  background-color: #e8f8df;
  font-size: 114%;
  line-height: 1.6;
  text-align: center;
}
.left_nav--access a {
  color: #29a25f;
  text-decoration: underline;
}
.left_nav--access img {
  margin-right: 8px;
}
.left_nav-time_sp {
  display: none;
}
@media all and (-ms-high-contrast: none) {
  .left_nav--contact_online {
    line-height: 0.3;
  }
  .left_nav--contact_online img {
    transform: translateY(4px);
  }
  .left_nav--contact_tel {
    line-height: 0.5;
  }
  .left_nav--access {
    line-height: 1.2;
  }
}

@media only screen and (max-width: 767px) {
  .left_nav {
    border-radius: 0;
    box-shadow: 0px 0px 16px rgba(8, 24, 49, 0.1);
  }
  .left_nav-contact {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 34%;
    pointer-events: auto;
  }
  .left_nav-time_sp {
    display: block;
    top: auto;
    right: auto;
    left: 34%;
    bottom: 0;
    width: 33%;
    pointer-events: auto;
  }
  .left_nav-recruit {
    top: auto;
    right: 0;
    left: auto;
    bottom: 0;
    width: 33%;
  }
  .left_nav--ttl,
  .left_nav-recruit .left_nav--ttl {
    width: 100%;
    padding: 0;
    font-size: 123%;
    line-height: 56px;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0.02em;
  }
  .left_nav-sns {
    display: none;
  }
  .left_nav--ttl span {
    display: none;
  }
  .left_nav-contact-inner {
    display: none;
  }
  .left_nav.left_nav-contact > a {
    display: block;
    background-color: #ff7474;
  }
  .left_nav.left_nav-time_sp > a {
    display: block;
    background-color: #28c25f;
  }
  .left_nav a:hover {
    opacity: 1;
  }
  .left_nav-recruit:hover {
    left: auto;
  }
}

@media only screen and (max-width: 340px) {
  .left_nav--ttl,
  .left_nav-recruit .left_nav--ttl {
    font-size: 115%;
    line-height: 48px;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

/* sns_area
**************************************** */
.sns_area a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}
.sns_area a:hover {
  opacity: 0.7;
}
.sns_area svg {
  width: 24px;
  height: 24px;
}

/* footer
**************************************** */
.footer {
  background-color: #fff;
  padding-top: 48px;
}
.footer--map {
  width: 43%;
  margin-bottom: 32px;
}
.footer--contact {
  width: 50%;
  margin-bottom: 32px;
}
.footer--contact_online,
.footer--contact_tel {
  margin-bottom: 28px;
  font-size: 127%;
  line-height: 1;
}
.footer--contact_online {
  padding-left: 24px;
  border-left: 1px solid #f4e5e5;
}
.footer--contact_online span {
  display: none;
}
.footer--contact_tel img {
  margin-right: 8px;
  transform: translateY(-2px);
}
.footer--contact_online a,
.footer--contact_tel a {
  margin-top: 10px;
  font-size: 195%;
  line-height: 1;
}
.footer--contact_online,
.footer--contact_online a {
  color: #faa75e;
}
.footer--contact_tel,
.footer--contact_tel a {
  color: #ff7474;
}
.footer--contact_online a {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}
.footer--contact_online a i {
  position: absolute;
  z-index: 2;
  top: calc(50% - 4px);
  right: -24px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #faa75e;
  border-radius: 3px;
}
.footer--contact_online a i::before,
.footer--contact_online a i::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 0;
  border-top: solid 2px #fff;
}
.footer--contact_online a i::before {
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: calc(50% - 2.5px);
}
.footer--contact_online a i::after {
  transform: rotate(-45deg);
  top: 50%;
  left: calc(50% - 2.5px);
}
@media all and (-ms-high-contrast: none) {
  .footer--contact_online,
  .footer--contact_tel {
    white-space: nowrap;
  }
  .footer--contact_online a {
    margin-top: 16px;
  }
  .footer--contact_tel a {
    line-height: 0.5;
  }
  .footer--contact_online a i {
    top: calc(50% - 16px);
  }
  .footer--contact_tel {
    letter-spacing: 0.05em;
  }
}
.footer--contact_day {
  margin-bottom: 28px;
}
.contact_day-ttl {
  margin-bottom: 12px;
  font-size: 134%;
  line-height: 1;
  color: #2faa5b;
}
.contact_day-ttl img {
  margin-right: 7px;
  transform: translateY(1px);
}
.contact_day-table {
  width: 100%;
  border: 2px solid #2faa5b;
  border-top: none;
  border-radius: 5px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  line-height: 1;
  margin-bottom: 12px;
}
.contact_day-table tr:not(.contact_day-table--head) th,
.contact_day-table tr td:not(:last-of-type) {
  padding: 10px 0 11px;
  font-size: 114%;
  color: #29a25f;
  letter-spacing: 0.04em;
  border-right: solid 1px #e5f4ec;
}
.contact_day-table tr:not(:last-of-type):not(:last-of-type) th,
.contact_day-table tr:not(:last-of-type) td {
  border-bottom: solid 1px #e5f4ec;
}
.contact_day-table--head th {
  padding: 10px 0 11px;
  font-size: 120%;
  background-color: #28c25f;
  color: #fff;
}
@media all and (-ms-high-contrast: none) {
  .contact_day-table tr:not(.contact_day-table--head) th,
  .contact_day-table tr td:not(:last-of-type),
  .contact_day-table--head th {
    padding: 13px 0 8px;
  }
}
.contact_day-table--head th:not(:last-of-type) {
  border-right: solid 1px #8fdbac;
}
.contact_day-table tr th:first-of-type {
  width: 41%;
}
.contact_day-table tr:first-of-type th:last-of-type {
  width: 12%;
  letter-spacing: 0;
}
.icon_line::before {
  content: "";
  display: block;
  width: 7px;
  height: 2px;
  margin: 0 auto;
  background-color: #2faa5b;
  transform: translateY(-6px);
}
.icon_circle::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background-color: #2faa5b;
  border-radius: 7px;
}
.footer--contact_list dl {
  margin-bottom: 8px;
}
.footer--contact_list dt {
  width: 120px;
}
.footer--contact_list dt span {
  display: block;
  width: 120px;
  padding: 2px 4px;
  background-color: #bdbdbd;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 94%;
}
.footer--contact_list dd {
  width: calc(100% - 120px);
}
.footer--contact_list li {
  margin-left: 6px;
  font-size: 94%;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.footer--contact_list li::before {
  content: "\30FB";
  padding: 0 6px;
}
@media all and (-ms-high-contrast: none) {
  .footer--contact_list dt span {
    padding: 4px 4px 0;
  }
  .footer--contact_list li {
    font-size: 86%;
    white-space: nowrap;
  }
}
.footer--contact_list--teikei li:nth-of-type(1) {
  width: calc(55% - 6px);
}
.footer--contact_list--teikei li:nth-of-type(2) {
  width: calc(55% - 6px);
  order: 2;
}
.footer--contact_list--teikei li:nth-of-type(3) {
  width: calc(45% - 6px);
  order: 1;
}
.footer--contact_list--teikei li:nth-of-type(4) {
  width: calc(45% - 6px);
  order: 3;
}
.footer--access {
  position: relative;
  width: 100%;
  padding: 18px 28px;
  margin-bottom: 38px;
  background-color: #fff9cd;
  border-radius: 5px;
}
.footer--access.sp-none {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.footer--access::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 20%;
  display: block;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #fff9cd transparent;
}
.footer--access li {
  position: relative;
  padding-left: 24px;
  line-height: 1.2;
  font-size: 94%;
}
.footer--access li:not(:last-child) {
  margin-bottom: 16px;
}
@media all and (-ms-high-contrast: none) {
  .footer--access li {
    font-size: 86%;
  }
  .footer--access span:first-of-type {
    line-height: 0.8;
  }
}
.footer--access li:first-of-type span:last-of-type {
  transform: translateY(2px);
}
.footer--access span:first-of-type {
  width: 5em;
  padding-right: 12px;
  font-size: 142%;
  color: #29a25f;
}
.footer--access img {
  position: absolute;
  left: 0;
  transform: translateY(3px);
  margin-right: 6px;
  object-fit: contain;
}
.footer--access a {
  text-decoration: underline;
  line-height: 1.3;
}
.footer--access-view {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 32.6%;
  margin-bottom: 42px;
}
.footer--access-view iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer--bnr {
  padding: 40px 0;
  background-color: #fffbf1;
}
.footer--bnr .inner {
  gap: 16px;
}
.footer--bnr a:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.footer--nav {
  max-width: 1056px;
}
.footer--gnav {
  max-width: 980px;
  margin: 32px auto 24px;
}
.footer--gnav li {
  width: 14.28%;
}
.footer--gnav a {
  display: block;
  padding: 8px;
  text-align: center;
  font-size: 107%;
  border-radius: 5px;
}
.footer--gnav a:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.footer--gnav li:nth-of-type(7) a {
  letter-spacing: 0;
  white-space: nowrap;
}
.footer--gnav span {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  text-align: center;
}
.sns {
  margin-bottom: 16px;
}
.sns li {
  margin-left: 16px;
  margin-bottom: 4px;
}
.sns iframe {
  vertical-align: bottom;
}
.pbl {
  transform: translateY(-2px);
}

@media only screen and (max-width: 1300px) and (min-width: 768px) {
  .footer--gnav a {
    padding: 8px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
  .footer--logo {
    width: 280px;
    max-width: 74%;
    margin-bottom: 32px;
  }
  .footer--map,
  .footer--contact,
  .footer--contact_list dt,
  .footer--contact_list dd {
    width: 100%;
  }
  .footer--contact_online,
  .footer--contact_tel {
    margin-bottom: 22px;
    text-align: center;
  }
  .footer--contact_tel {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #f4e5e5;
    border-bottom: 1px solid #f4e5e5;
  }
  .footer--contact_tel a {
    display: inline-block !important;
  }
  .footer--contact_online {
    padding-left: 0;
    border-left: none;
  }
  .footer--contact_online span {
    display: inline;
  }
  .contact_day-ttl {
    text-align: center;
  }
  .contact_day-ttl span {
    display: none;
  }
  .footer--contact_list dl {
    margin-bottom: 16px;
  }
  .footer--contact_list--teikei li:nth-of-type(1),
  .footer--contact_list--teikei li:nth-of-type(2) {
    width: calc(49% - 6px);
  }
  .footer--contact_list dt span {
    margin-bottom: 4px;
  }
  .footer--access {
    margin-bottom: 28px;
    padding: 18px 24px;
  }
  .footer--access .txt1 {
    margin-bottom: 16px;
    transform: translateY(0);
  }
  .footer--access span:first-of-type {
    display: block;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .footer--access.sp-none {
    display: none;
  }
  .footer--access-view {
    padding-top: 60%;
    margin-bottom: 38px;
  }
  .footer--bnr {
    padding: 24px 0;
    background-color: #fff7ee;
  }
  .footer--bnr .inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 4%;
  }
  .footer--bnr a {
    display: block;
    width: 48%;
  }
  .footer--gnav {
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .footer--gnav,
  .footer--gnav li {
    width: 100% !important;
  }
  .footer--gnav a {
    position: relative;
    padding: 8px 12px;
    border-left: none;
    border-bottom: solid 1px #dcdcdc;
    text-align: left;
    font-size: 144%;
    line-height: 2.2;
    overflow: hidden;
    border-radius: 0;
  }
  .footer--gnav a::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 12px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
  }
  .footer--gnav a:hover {
    transform: translateY(0);
  }
  .footer--gnav span {
    float: left;
    width: 45px;
    margin-right: 24px;
  }
  .footer--gnav span img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .sns {
    width: calc(100% - 80px);
    margin-bottom: 0;
  }
  .sns li {
    margin-left: 0;
    margin-right: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .footer--contact_list--teikei li {
    width: 100% !important;
    margin-left: 0;
  }
}
@media only screen and (max-width: 370px) {
  .footer--contact_online a,
  .footer--contact_tel a {
    font-size: 180%;
  }
  .contact_day-table {
    font-size: 12px;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* .hero
*************************************************** */
.hero {
  position: relative;
}
.hero-ttl {
  position: absolute;
  top: 136px;
  right: 13%;
  z-index: 10;
  color: #fff;
  font-size: 234%;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-shadow: 0px 0px 84px rgba(8, 24, 49, 0.46);
}
.hero-ttl * {
  font-feature-settings: "pkna";
}
.hero-ttl span {
  display: inline-block;
  position: relative;
}
.hero-ttl span::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 0;
  display: block;
  width: 3px;
  height: 97%;
  background-color: #fff;
}
.hero-ttl i {
  font-style: normal;
  letter-spacing: -0.4em;
}
.hero-ttl span:first-of-type {
  transform: translateY(2%);
}
@media all and (-ms-high-contrast: none) {
  .hero-ttl span:first-of-type {
    transform: translateY(14%);
  }
}
.hero-ttl span:nth-of-type(2)::before {
  top: 9.5%;
  height: 90.5%;
}
.hero-ttl span:nth-of-type(3)::before {
  top: 5.5%;
  height: 94.5%;
}
.hero-slider,
.page_ttl-slider {
  max-height: 98vh;
  overflow: hidden;
}
.hero-slider img,
.page_ttl-slider img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1800px) {
  .hero-ttl {
    right: 9%;
  }
}
@media only screen and (max-width: 1600px) {
  .hero-ttl {
    right: 6%;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 768px) {
  .hero-ttl {
    top: 120px;
    font-size: 200%;
  }
}
@media only screen and (max-width: 767px) {
  .hero {
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 16px;
    z-index: 10;
    display: block;
    width: 160px;
    height: 0;
    padding-top: 25.29%;
    background-image: url(../images/common/logo_sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top;
  }
  .hero-ttl {
    top: auto;
    right: auto;
    left: 8px;
    bottom: 24px;
    font-size: 180%;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  .hero-ttl span::before {
    top: auto;
    bottom: 4px;
    right: auto;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .hero-ttl span:first-of-type {
    transform: translateX(4%) translateY(0);
  }
  .hero-ttl span:nth-of-type(2)::before {
    top: auto;
    left: 9.5%;
    width: 90.5%;
    height: 2px;
  }
  .hero-ttl span:nth-of-type(3)::before {
    top: auto;
    left: 5.5%;
    width: 94.5%;
    height: 2px;
  }
  .hero-slider,
  .page_ttl-slider {
    max-height: calc(100vh - 56px);
  }
}
@media only screen and (max-width: 420px) {
  .hero-ttl {
    font-size: 143%;
  }
}
/* .home_banner
*************************************************** */
.home_banner {
  padding-top: 32px;
  padding-bottom: 14px;
}
.home_banner--cont {
  gap: 16px;
  justify-content: center;
}
@media only screen and (max-width: 420px) {
  .home_banner--cont {
    display: block;
    max-width: 90%;
  }
  .home_banner img {
    margin-bottom: 16px;
  }
}
/* .home_news
*************************************************** */
.home_news.section_pdg {
  background-color: #fff;
}
.home_news .section_ttl {
  margin-bottom: 24px;
}
.home_news .posts {
  min-width: 640px;
}
.home_news .post {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.home_news .post .post--date {
  color: #74533f;
  font-size: 110%;
  margin-right: 16px;
}
.home_news .post .post--ttl {
  font-size: 110%;
  font-weight: normal;
  text-decoration: underline;
  transform: translateY(1px);
}
.news_btn {
  position: relative;
  display: inline-block;
  padding: 4px 32px 6px;
  border: solid 2px #d2d2d2;
  color: #c8c8c8;
  line-height: 1.2;
}
@media all and (-ms-high-contrast: none) {
  .news_btn {
    padding: 6px 32px 4px;
  }
}
.news_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 8px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #d2d2d2;
}

@media only screen and (max-width: 1180px) {
  .home_news .posts {
    min-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .home_news .flex {
    position: relative;
  }
  .home_news .posts {
    min-width: 0;
  }
  .home_news .section_ttl {
    margin-bottom: 14px;
  }
  .home_news .section_ttl span {
    padding-left: 12px;
  }
  .home_news--btn {
    text-align: right;
  }
}
@media only screen and (max-width: 340px) {
  .home_news .section_ttl span {
    display: none;
  }
}

/* .home_syoujou
*************************************************** */
.home_syoujou {
  background-color: #fff8e9;
}
.home_syoujou-list_child {
  width: 24%;
  height: 309px;
  margin-bottom: 1.7%;
  text-align: center;
}
.home_syoujou-list_child.syoujou_13 {
  width: 100%;
  height: auto;
}
.home_syoujou-list_child a {
  position: relative;
  height: 100%;
  padding: 44px 12px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}
.home_syoujou-list_child a:not(.flex) {
  display: block;
}

.home_syoujou-list_child.syoujou_13 a {
  position: relative;
  padding: 32px 12px;
  margin-top: 8px;
  background-color: #f8f1f9;
  color: #be80c5;
  border: solid 1px rgba(189, 127, 197, 0.1);
  text-align: left;
}
.home_syoujou-list_child.syoujou_13 a:hover {
  color: #be80c5;
  transform: translateY(-4px);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.home_syoujou-list_child.syoujou_13 a::before,
.home_syoujou-list_child.syoujou_13 a::after {
  content: "";
  position: absolute;
  right: 24px;
  display: block;
  width: 8px;
  height: 0;
  border-top: solid 2px #be80c5;
}
.home_syoujou-list_child.syoujou_13 a::before {
  transform: rotate(45deg);
  top: calc(50% - 4px);
}
.home_syoujou-list_child.syoujou_13 a::after {
  transform: rotate(-45deg);
  top: 50%;
}
.home_syoujou-list_child.syoujou_13 .syoujou_icon2 {
  width: 108px;
  height: 108px;
  margin-right: 24px;
  z-index: 0;
  border-radius: 50%;
  background-color: #be80c5;
}
.home_syoujou-list_child.syoujou_13 .txt {
  margin-left: 56px;
  padding-left: 52px;
  border-left: 2px solid rgba(189, 127, 197, 0.35);
}
.home_syoujou-list_child.syoujou_13 .txt p {
  font-size: 108%;
  line-height: 1.7;
}

.home_syoujou-list_child.syoujou_03 a {
  padding-top: 32px;
}
.home_syoujou-list_ttl {
  position: relative;
  z-index: 1;
  font-size: 174%;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.home_syoujou-list_child p {
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.home_syoujou-list_child .bg_circle {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  z-index: 0;
  border-radius: 50%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.17, 0.84, 0.44, 1) 0s;
  background-color: #ddd;
}
.home_syoujou-list_child a:hover {
  opacity: 1;
  color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.home_syoujou-list_child a:hover .bg_circle {
  -webkit-transform: scale(6);
  -moz-transform: scale(6);
  transform: scale(6);
  transition: all 0.3s cubic-bezier(0.47, 0, 0.74, 0.71) 0s;
}
.home_syoujou-list_child .syoujou_icon {
  position: relative;
  display: block;
  margin: 42px auto 0;
  width: 108px;
  height: 108px;
  z-index: 1;
}
.syoujou_01 .bg_circle {
  background-color: #ff8b5c;
}
.syoujou_02 .bg_circle {
  background-color: #5eda9e;
}
.syoujou_03 .bg_circle {
  background-color: #77cbef;
}
.syoujou_04 .bg_circle {
  background-color: #fab967;
}
.syoujou_05 .bg_circle {
  background-color: #5d86d8;
}
.syoujou_06 .bg_circle {
  background-color: #ff7475;
}
.syoujou_07 .bg_circle {
  background-color: #e589f4;
}
.syoujou_08 .bg_circle {
  background-color: #53afee;
}
.syoujou_09 .bg_circle {
  background-color: #8a92f7;
}
.syoujou_10 .bg_circle {
  background-color: #4dd3dc;
}
.syoujou_11 .bg_circle {
  background-color: #fbaae4;
}
.syoujou_12 .bg_circle {
  background-color: #46d178;
}

.syoujou_01 .syoujou_icon {
  transform: translateY(2px);
}
.syoujou_02 .syoujou_icon {
  transform: translateY(2px);
}
.syoujou_03 .syoujou_icon {
  transform: translateX(-2px) translateY(6px);
  margin-top: 25px;
}
.syoujou_04 .syoujou_icon {
  transform: translateX(4px) translateY(4px);
}
.syoujou_05 .syoujou_icon {
  transform: translateY(1px);
}
.syoujou_06 .syoujou_icon {
  transform: translateX(7px) translateY(12px);
}
.syoujou_07 .syoujou_icon {
  transform: translateX(8px) translateY(2px);
}
.syoujou_08 .syoujou_icon {
  transform: translateY(-4px);
}
.syoujou_09 .syoujou_icon {
  transform: translateX(4px) translateY(6px);
}
.syoujou_10 .syoujou_icon {
  transform: translateX(-1px) translateY(18px);
}
.syoujou_11 .syoujou_icon {
  transform: translateX(-8px) translateY(1px);
}
.syoujou_12 .syoujou_icon {
  transform: translateX(-2px) translateY(4px);
}

@media only screen and (max-width: 767px) {
  .home_syoujou {
    background-color: #fff7ee;
  }
  .home_syoujou-list_child {
    width: 32%;
    height: auto;
  }
  .home_syoujou-list_child a {
    padding: 32px 0 16px;
  }
  .home_syoujou-list_child.syoujou_03 a,
  .home_syoujou-list_child.syoujou_05 a,
  .home_syoujou-list_child.syoujou_08 a,
  .home_syoujou-list_child.syoujou_09 a,
  .home_syoujou-list_child.syoujou_10 a {
    padding-top: 24px;
  }
  .home_syoujou-list_ttl {
    font-size: 129%;
  }
  .home_syoujou-list_child .bg_circle {
    top: 75px;
    width: 81px;
    height: 81px;
  }
  .home_syoujou-list_child .syoujou_icon {
    width: 81px;
    height: 81px;
    margin-top: 24px;
  }
  .home_syoujou-list_child.syoujou_03 .syoujou_icon,
  .home_syoujou-list_child.syoujou_05 .syoujou_icon,
  .home_syoujou-list_child.syoujou_08 .syoujou_icon,
  .home_syoujou-list_child.syoujou_09 .syoujou_icon,
  .home_syoujou-list_child.syoujou_10 .syoujou_icon {
    margin-top: 15px;
  }
  .syoujou_02 .syoujou_icon {
    transform: translateY(5px);
  }
  .syoujou_04 .syoujou_icon {
    transform: translateX(4px) translateY(8px);
  }
  .syoujou_05 .syoujou_icon {
    transform: translateX(2px) translateY(-2px);
  }
  .syoujou_11 .syoujou_icon {
    transform: translateX(-4px) translateY(1px);
  }
  .syoujou_12 .syoujou_icon {
    transform: translateX(-1px) translateY(4px);
  }
  .home_syoujou-list_child .syoujou_icon img {
    transform: scale(0.75, 0.75);
  }
  .home_syoujou-list_child p {
    padding: 10px 12px 0;
    font-size: 11px;
    font-weight: normal;
    text-align: left;
  }

  .home_syoujou-list_child.syoujou_13 a {
    padding: 20px 8px 12px;
  }
  .home_syoujou-list_child.syoujou_13 a::before {
    top: calc(52px - 4px);
  }
  .home_syoujou-list_child.syoujou_13 a::after {
    top: 52px;
  }
  .home_syoujou-list_child.syoujou_13 .syoujou_icon2 {
    width: 64px;
    height: 64px;
    padding: 14px;
    margin-right: 16px;
  }
  .home_syoujou-list_child.syoujou_13 .txt {
    margin-left: 0;
    padding-left: 0;
    padding-top: 4px;
    border-left: none;
  }
  .home_syoujou-list_child.syoujou_13 .txt p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 375px) {
  .home_syoujou {
    background-color: #fff7ee;
  }
  .home_syoujou-list_child {
    width: 49%;
  }
}
.home_syoujou {
  position: relative;
}
.home_syoujou::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 94px;
  height: 31px;
  margin: 0 auto;
  background-image: url(../images/home/message-deco05.png);
}
/* .home_message
*************************************************** */
.home_message {
  position: relative;
  overflow: hidden;
  background-color: #28c25f;
  padding-top: 56px;
  padding-bottom: 96px;
}

.home_message .section_ttl,
.home_message .section_ttl-sub {
  color: #fff;
}
.home_message .section_ttl {
  margin-bottom: 36px;
}
.home_message .section_ttl i {
  display: block;
  margin: 0 auto 4px;
  width: 84px;
  height: 84px;
  padding-top: 16px;
  background-color: #fff;
  border-radius: 50%;
}
.home_message-box {
  position: relative;
  z-index: 20;
  max-width: 872px;
  margin: 0 auto;
  padding: 64px 64px 80px;
  background-color: #fff;
  text-align: center;
  letter-spacing: 0.16em;
}
.home_message-box_ttl {
  position: relative;
  margin-bottom: 28px;
  line-height: 1.3;
  font-size: 200%;
  color: #28c25f;
}
.home_message-box_ttl .icon_nami {
  position: static;
  margin: 32px auto 0;
}
.home_message-box p {
  line-height: 2;
  margin-bottom: 48px;
  font-size: 127%;
}
.home_message-box p:last-of-type {
  margin-bottom: 48px;
}
.home_message .accordion {
  position: relative;
  z-index: 20;
  display: none;
}
.home_message-deco01,
.home_message-deco02,
.home_message-deco03,
.home_message-deco04 {
  position: absolute;
  z-index: 10;
}
.home_message-deco03,
.home_message-deco04 {
  display: none;
}
.home_message-deco01 {
  top: -120px;
  left: -352px;
}
.home_message-deco02 {
  top: -155px;
  right: -320px;
}
.home_message-deco03 {
  bottom: -73px;
  left: -300px;
}
.home_message-deco04 {
  bottom: 16px;
  right: -418px;
}
.home_message .btn i::before,
.home_message .btn i::after {
  top: calc(50% - 1px);
  left: calc(50% - 5px);
  width: 10px;
  transform: rotate(0deg);
}
.home_message .btn i::after {
  transform: rotate(-90deg);
}
.home_message .btn.open,
.home_message .btn.open span {
  color: transparent;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.home_message .btn .close {
  display: none;
  font-style: normal;
}
.home_message .btn.open .close {
  position: absolute;
  top: 2px;
  left: calc(50% - 1.5em);
  display: inline-block;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1;
}
.home_message .btn.open i::after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .home_message {
    padding-top: 48px;
    padding-bottom: 64px;
    background-image: url(../images/home/message-bg01_sp.png);
    background-position: center 24px;
    background-repeat: no-repeat;
    background-size: 96% auto;
  }
  .home_message .section_ttl {
    margin-bottom: 32px;
  }
  .home_message .section_ttl i {
    width: 64px;
    height: 64px;
    padding: 12px 11px 0;
  }
  .home_message-box {
    padding: 52px 0 56px;
    letter-spacing: 0.15em;
  }
  .home_message-box p,
  .home_message-box p:last-of-type {
    margin-bottom: 32px;
    font-size: 115%;
  }
  .home_message-deco01,
  .home_message-deco02,
  .home_message-deco03,
  .home_message-deco04 {
    display: none !important;
  }
  .home_message-box_ttl {
    font-size: 180%;
    margin-bottom: 24px;
  }
  .home_message-box_ttl .icon_nami {
    margin: 28px auto 0;
  }
  .home_message .btn.open .close {
    font-size: 18px;
  }
}
@media only screen and (max-width: 420px) {
  .home_message-box p,
  .home_message-box p:last-of-type {
    font-size: 107%;
  }
}
@media only screen and (max-width: 350px) {
  .home_message-box_ttl {
    font-size: 172%;
  }
}

/* .home_about
*************************************************** */
.home_about {
  position: relative;
  padding-top: 96px;
  padding-bottom: 32px;
  background-image: url(/wp/wp-content/themes/original_theme/images/home/about-bg01.jpg);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.home_about .section_ttl {
  font-size: 267%;
}
.home_about .section_ttl img {
  margin-bottom: 16px;
}
.home_about .heading-1 .icon_nami {
  left: 8px;
  bottom: -28px;
}
.home_about-profile {
  margin-bottom: 88px;
}
.home_about-profile--txt {
  width: 51.5%;
  margin-bottom: 24px;
}
.home_about-profile--txt p:not(.txt-lg) {
  font-size: 107%;
  line-height: 2.1;
  margin-bottom: 2em;
}
.home_about-profile--txt .txt-lg {
  margin: 0 0 40px;
  font-size: 214%;
  letter-spacing: 0.09em;
}
.home_about-profile--img {
  width: 42%;
  margin-right: 3.5%;
}
.home_about-profile--img img {
  transform: translateY(-32px);
}
.home_about-profile--img .txtarea {
  position: relative;
  z-index: 10;
  width: 283px;
  margin: 0 0 0 auto;
  padding: 18px 32px 26px;
  background-color: #28c25f;
  border-radius: 5px;
  color: #fff;
  transform: translateX(8px) translateY(-28px);
}
.home_about-profile--img .txtarea::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 48%;
  display: block;
  border-style: solid;
  border-width: 20px 28px 0 0;
  border-color: #28c25f transparent transparent transparent;
}
.home_about-profile--img .txtarea dt {
  padding-bottom: 8px;
  margin-bottom: 8px;
  font-size: 147%;
  border-bottom: solid 1px #fff;
  line-height: 1.4;
}
.home_about-profile--img .txtarea dd {
  font-size: 181%;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.home_about-profile--img .txtarea dd span {
  display: block;
  font-size: 56%;
}
.home_about .box_tapestry {
  width: 48.5%;
}
.box_tapestry-shikaku li:nth-of-type(1) {
  order: -2;
  width: 67%;
}
.box_tapestry-shikaku li:nth-of-type(5) {
  order: -1;
  width: 33%;
}
.box_tapestry-syozoku li:nth-of-type(1) {
  order: -4;
  width: 57%;
}
.box_tapestry-syozoku li:nth-of-type(2) {
  order: -2;
  width: 57%;
}
.box_tapestry-syozoku li:nth-of-type(5) {
  order: -3;
  width: 43%;
}
.box_tapestry-syozoku li:nth-of-type(6) {
  order: -1;
  width: 43%;
}

.home_about-facilities {
  position: relative;
}
.home_about-facilities::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  display: block;
  width: 54%;
  height: 66%;
  background-color: #fffbf1;
}
.home_about-facilities .heading-1 {
  font-size: 214%;
}
.home_about-facilities .heading-1 span {
  transform: translateY(0);
}
.facilities-slider,
.interview-slider {
  width: 86%;
  margin: 0 0 44px auto;
}
.facilities-slider-main .facilities-img,
.interview-slider-main .interview-img {
  width: 773px;
  height: 538px;
  border-radius: 250px 10px 250px 10px;
  margin-right: 60px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-color: #eee;
  font-size: 134%;
}
.interview-slider-main .interview-img {
  width: 650px;
  height: 456px;
}
.facilities-slider-main .facilities-img01 {
  background-image: url(/wp/wp-content/themes/original_theme/images/home/shisetsu-img01.jpg);
}
.facilities-slider-main .facilities-img02 {
  background-image: url(/wp/wp-content/themes/original_theme/images/home/shisetsu-img02.jpg);
}
.facilities-slider-main .facilities-img03 {
  background-image: url(/wp/wp-content/themes/original_theme/images/home/shisetsu-img03.jpg);
}
.facilities-slider-main .facilities-img04 {
  background-image: url(/wp/wp-content/themes/original_theme/images/home/shisetsu-img04.jpg);
}
.facilities-slider-main .facilities-txt,
.interview-slider-main .interview-txt {
  width: calc(100% - 833px);
  max-width: 500px;
  padding-right: 80px;
}
.interview-slider-main .interview-txt {
  width: calc(100% - 710px);
}
.facilities-slider-main .facilities-txt .btn,
.interview-slider-main .interview-txt .btn {
  margin-top: 24px;
  margin-left: 0;
}
.facilities-slider-nav,
.interview-slider-nav {
  width: calc(100% - 833px);
  margin: -180px 0 0 auto;
  overflow: hidden;
}
.interview-slider-nav {
  margin: -190px 0 0 auto;
  width: calc(100% - 710px);
}
.facilities-slider-nav .slick-list.draggable,
.interview-slider-nav .slick-list.draggable {
  width: calc(100% + 229px);
  transform: translateX(-229px);
}
.facilities-nav-child,
.interview-nav-child {
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.facilities-slider-nav .facilities-img,
.interview-slider-nav .interview-img {
  width: 160px;
  height: 160px;
  margin: 23px;
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-color: #eee;
}
.facilities-slider-nav .slick-current,
.interview-slider-nav .slick-current {
  opacity: 0;
}
.facilities-slider .slick-dots,
.interview-slider .slick-dots {
  position: absolute;
  bottom: -40px;
  right: calc(100% - 774px);
}
.facilities-slider .slick-dots li,
.bosyu-slider .slick-dots li,
.interview-slider .slick-dots li {
  display: inline-block;
}
.facilities-slider .slick-dots li button,
.bosyu-slider .slick-dots li button,
.interview-slider .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  margin-bottom: 8px;
  border-radius: 2px;
  background-color: #dcdcdc;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.facilities-slider .slick-dots li.slick-active button,
.bosyu-slider .slick-dots li.slick-active button,
.interview-slider .slick-dots li.slick-active button {
  background-color: #2faa5b;
}
.facilities-nav-child:hover,
.facilities-slider .slick-dots li:hover,
.bosyu-nav-child:hover,
.bosyu-slider .slick-dots li:hover,
.interview-nav-child:hover,
.interview-slider .slick-dots li:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1450px) {
  .facilities-slider,
  .interview-slider {
    width: 95%;
  }
  .facilities-slider-main .facilities-txt,
  .interview-slider-main .interview-txt {
    padding-right: 64px;
  }
}
@media only screen and (max-width: 1200px) {
  .facilities-slider-main .facilities-img {
    width: 650px;
    height: 456px;
  }
  .facilities-slider-main .facilities-txt {
    width: calc(100% - 710px);
  }
  .facilities-slider-nav {
    margin: -190px 0 0 auto;
    width: calc(100% - 710px);
  }
  .facilities-slider .slick-dots,
  .interview-slider .slick-dots {
    right: calc(100% - 654px);
  }
}
@media only screen and (max-width: 1169px) {
  .facilities-slider-main .facilities-img,
  .interview-slider-main .interview-img {
    width: 600px;
    height: 418px;
    margin-right: 40px;
  }
  .facilities-slider-nav .facilities-img,
  .interview-slider-nav .interview-img {
    width: 104px;
    height: 104px;
    margin: 23px 12px;
  }
  .facilities-slider-main .facilities-txt,
  .interview-slider-main .interview-txt {
    width: calc(100% - 640px);
    padding-right: 48px;
  }
  .facilities-slider-nav,
  .interview-slider-nav {
    margin: -128px 0 0 auto;
    width: calc(100% - 640px);
  }
  .facilities-slider-nav .slick-list.draggable,
  .interview-slider-nav .slick-list.draggable {
    width: calc(100% + 140px);
    transform: translateX(-140px);
  }
  .facilities-slider .slick-dots,
  .interview-slider .slick-dots {
    right: calc(100% - 600px);
  }
}
@media only screen and (max-width: 1080px) {
  .facilities-slider-main .facilities-txt,
  .interview-slider-main .interview-txt {
    padding-right: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .home_about {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .home_about::before {
    background-image: url(../images/home/message-deco05_sp.png);
    background-size: cover;
  }
  .home_about .section_ttl {
    font-size: 236%;
  }
  .home_about .section_ttl img {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
  }
  .home_about-profile--img .txtarea {
    width: 220px;
    padding: 10px 24px 18px;
  }
  .home_about-profile--img .txtarea dt {
    font-size: 127%;
  }
  .home_about-profile--img .txtarea dd {
    font-size: 161%;
  }
  .home_about-profile--img,
  .home_about-profile--txt,
  .home_about .box_tapestry,
  .box_tapestry dl dt,
  .box_tapestry dl dd {
    width: 100%;
  }
  .home_about .box_tapestry {
    margin-top: 80px;
  }
  .home_about-profile {
    margin-bottom: 64px;
  }
  .home_about-profile--img {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .home_about-profile--img img {
    transform: translateY(-24px);
  }
  .home_about .heading-1 .icon_nami {
    bottom: -22px;
  }
  .home_about-profile--txt .txt-lg {
    margin-bottom: 24px;
    font-size: 184%;
    line-height: 1.4;
  }
  .home_about-profile--txt p:not(.txt-lg) {
    margin-bottom: 1.3em;
  }
  .home_about-facilities::before {
    top: 14.5%;
    right: 0;
    left: auto;
    bottom: auto;
    width: 80%;
    height: 0;
    padding-top: 59.9%;
    background-color: #fff7ee;
  }
  .facilities-slider,
  .interview-slider {
    width: 100%;
    margin-right: auto;
    margin-bottom: 8px;
  }
  .facilities-slider-main .facilities-img,
  .interview-slider-main .interview-img {
    width: 90%;
    height: 0;
    border-radius: 32.3% 1.2% 32.3% 1.2% / 46.4% 1.8% 46.4% 1.8%;
    padding-top: 59.9%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .facilities-slider-main .facilities-txt,
  .interview-slider-main .interview-txt {
    max-width: none;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
  .facilities-slider-nav,
  .interview-slider-nav {
    margin: 0 auto;
    width: 100%;
  }
  .facilities-slider-nav .facilities-img,
  .interview-slider-nav .interview-img {
    margin: 32px 12px;
  }
  .facilities-slider .slick-dots,
  .interview-slider .slick-dots {
    display: none !important;
  }
  .facilities-slider-nav .slick-list.draggable,
  .interview-slider-nav .slick-list.draggable {
    width: calc(100% + 128px);
    transform: translateX(-128px);
  }
  .facilities-slider-main .facilities-txt .btn,
  .interview-slider-main .interview-txt .btn {
    margin-left: auto;
  }
  .box_tapestry dl dt {
    margin-bottom: 0;
  }
  .box_tapestry-shikaku li:nth-of-type(1),
  .box_tapestry-shikaku li:nth-of-type(5),
  .box_tapestry-syozoku li:nth-of-type(1),
  .box_tapestry-syozoku li:nth-of-type(2),
  .box_tapestry-syozoku li:nth-of-type(5),
  .box_tapestry-syozoku li:nth-of-type(6) {
    order: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 350px) {
  .home_about-profile--txt .heading-1,
  .home_about-facilities .heading-1 {
    font-size: 186%;
  }
}

/* .home_recruit
*************************************************** */
.home_recruit {
  height: 648px;
  background-image: url(/wp/wp-content/themes/original_theme/images/home/recruit-bg01.jpg);
  background-color: #fffbf0;
  background-position: center;
  background-repeat: no-repeat;
}
.home_recruit .inner {
  margin-top: 40px;
}
.home_recruit .section_ttl {
  margin-bottom: 24px;
}
.home_recruit p {
  margin-bottom: 48px;
}

@media only screen and (max-width: 767px) {
  .home_recruit {
    height: 440px;
    background-size: auto 440px;
  }
  .home_recruit .inner {
    margin-top: 0;
  }
  .home_recruit p {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 660px) {
  .home_recruit {
    position: relative;
    width: 100%;
    height: 597px;
    background-image: url(/wp/wp-content/themes/original_theme/images/home/recruit-bg01_sp.jpg);
    background-color: #fffbf1;
    background-size: auto 100%;
  }
}
@media only screen and (max-width: 475px) {
  .home_recruit {
    height: 0;
    padding-top: 159.2%;
    background-size: cover;
  }
  .home_recruit .inner {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 420px) {
  .home_recruit .inner {
    top: 13%;
  }
}
@media only screen and (max-width: 375px) {
  .home_recruit .inner {
    top: 11%;
  }
}
@media only screen and (max-width: 344px) {
  .home_recruit {
    padding-top: 597px;
    padding-bottom: 0;
    background-size: auto 597px;
  }
  .home_recruit p {
    text-align: left;
  }
  .home_recruit p br {
    display: none;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* shinryou
*************************************************** */
.examination_wrap .content01 .btn {
  margin-left: 0;
}
.examination_wrap .content02 .mgn-btm {
  margin-bottom: 0.3em;
}
.examination_wrap .content03 .box_tapestry {
  margin-top: 120px;
}
.examination_wrap .content03 .box_tapestry li:not(:last-of-type) {
  margin-bottom: 0.3em;
}
.examination_wrap .content03-1 {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: dotted 1px #74533f;
}
.examination_wrap .content06 .btn {
  width: 100%;
  max-width: 247px;
  margin-top: 12px;
}
.examination_wrap .content07 .faq {
  width: 48.5%;
}
.examination_wrap .content07 .faq:nth-child(even) {
  margin-left: 3%;
}
.examination_wrap .content07 .faq dt,
.examination_wrap .content07 .faq dd {
  text-indent: calc(-1.05em + -16px);
  padding-left: 40px;
}
@media all and (-ms-high-contrast: none) {
  .examination_wrap .content07 .faq dt,
  .examination_wrap .content07 .faq dd {
    text-indent: -34px;
  }
}
.examination_wrap .content07 .faq dt {
  margin-bottom: 8px;
  color: #faa75e;
  font-size: 124%;
  line-height: 1.4;
}
.examination_wrap .content07 .faq dt::before {
  content: "Q.";
  padding-right: 16px;
}
.examination_wrap .content07 .faq dd::before {
  content: "A.";
  padding-right: 16px;
}
#contact_online {
  display: block;
  padding-top: 96px;
  margin-top: -96px;
}

.treatment_wrap .treatment--child {
  padding: 56px 60px;
  margin-bottom: 48px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
.treatment_wrap .treatment--img {
  float: right;
  width: 328px;
  margin-left: 40px;
  margin-bottom: 32px;
}
.treatment_wrap .post--txt-heading {
  white-space: nowrap;
}
.treatment_wrap .treatment--pict .post--txt-heading {
  position: relative;
  z-index: 10;
  font-size: 194%;
  line-height: 1.4;
}
.treatment_wrap .treatment--pict img {
  transform: translateY(-24px);
}

@media only screen and (max-width: 767px) {
  .examination_wrap .content01 .btn {
    margin-left: auto;
    width: 247px;
    margin-right: auto;
  }
  .examination_wrap .content02 .mgn-btm80 {
    margin-bottom: 0;
  }
  .examination_wrap .content01 .heading-2,
  .examination_wrap .content04 .heading-2 {
    text-align: center;
  }
  .examination_wrap .content03 .box_tapestry {
    margin-top: 72px;
  }
  .examination_wrap .content05 .heading-4 span {
    display: block;
    margin-top: 4px;
    padding-left: 0;
  }
  .examination_wrap .content07 .faq {
    width: 100%;
  }
  .examination_wrap .content07 .faq:nth-child(even) {
    margin-left: 0;
  }
  #contact_online {
    padding-top: 16px;
    margin-top: -16px;
  }
  .treatment_wrap .treatment--child {
    padding: 32px 24px;
  }
  .treatment_wrap .treatment--img {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
    text-align: center;
  }
  .treatment_wrap .treatment--pict .post--txt-heading {
    margin-bottom: 12px;
    font-size: 158%;
  }
  .treatment_wrap .treatment--pict img {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 375px) {
  .treatment_wrap .treatment--pict .post--txt-heading {
    font-size: 142%;
  }
}

/* shisetsu
*************************************************** */
.shisetsu_wrap .content02 .btn {
  width: 280px;
  margin-left: 0;
}
.shisetsu_wrap .content02 .btn i {
  transform: rotate(90deg);
}
.gallery_wrap .content01--child .gallery-link,
.step_flow .step_flow-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.step_flow .step_flow-link:hover {
  opacity: 1;
}
.step_flow .step_flow-link:hover img {
  opacity: 0.7;
}
.gallery_wrap .content01--child .gallery-txt {
  height: 60px;
  padding-top: 6px;
  font-size: 160%;
  background-color: #fff;
}
@media all and (-ms-high-contrast: none) {
  .gallery_wrap .content01--child .gallery-txt {
    line-height: 2.5;
  }
}
.gallery_wrap .content01--child .icon-plus,
.step_flow .icon-plus {
  position: absolute;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}
.gallery_wrap .content01--child .icon-plus {
  bottom: 68px;
  right: 16px;
}
.step_flow .icon-plus {
  top: 88px;
  right: 4px;
}
.gallery_wrap .flex-col3 > * {
  width: 31.8%;
  margin-left: 2.3%;
  margin-bottom: 4%;
}
.gallery_wrap .flex-col3 > *:nth-child(3n + 1) {
  margin-left: 0;
}
.page-shisetsu #cboxClose,
.page-shinryou #cboxClose {
  top: -40px;
  width: 40px;
  height: 40px;
  background-image: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.page-shisetsu #cboxClose:hover,
.page-shinryou #cboxClose:hover {
  opacity: 0.5;
}
.page-shisetsu #cboxClose::before,
.page-shisetsu #cboxClose::after,
.page-shinryou #cboxClose::before,
.page-shinryou #cboxClose::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  display: block;
  width: 40px;
  height: 2px;
  background-color: #2faa5b;
  border-radius: 4px;
}
.page-shisetsu #cboxClose::before,
.page-shinryou #cboxClose::before {
  transform: rotate(45deg);
}
.page-shisetsu #cboxClose::after,
.page-shinryou #cboxClose::after {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
  .shisetsu_wrap .content01 .heading-2,
  .shisetsu_wrap .content02 .heading-2 {
    text-align: center;
  }
  .shisetsu_wrap .content02 .btn {
    margin-left: auto;
  }
  .kensa_wrap .contentt01--child .heading-4 {
    text-align: center;
  }
  .kensa_wrap .contentt01--child img {
    display: block;
    max-width: 229px;
    width: 100%;
    margin: 0 auto;
  }
  .rihaabiri_wrap .content01--child:nth-of-type(1),
  .rihaabiri_wrap .content01--child:nth-of-type(2),
  .rihaabiri_wrap .content01--child:nth-of-type(3),
  .rihaabiri_wrap .content01--child:nth-of-type(6) {
    order: -2;
  }
  .rihaabiri_wrap .content01--child:nth-of-type(4),
  .rihaabiri_wrap .content01--child:nth-of-type(5) {
    order: -1;
  }
  .rihaabiri_wrap .content01--child:nth-of-type(4) {
    margin-left: 0;
  }
  .rihaabiri_wrap .content01--child:nth-of-type(5) {
    margin-left: 4%;
  }
  .page-shisetsu .heading-1.mgn-btm32 {
    margin-bottom: 24px;
  }
  .page-shisetsu .content01--child .heading-4 {
    font-size: 136%;
  }
  .gallery_wrap .flex-col3 > * {
    width: 48%;
    margin-left: 4%;
  }
  .gallery_wrap .flex-col3 > *:nth-child(3n + 1) {
    margin-left: 4%;
  }
  .gallery_wrap .flex-col3 > *:nth-child(2n + 1) {
    margin-left: 0;
  }
  .gallery_wrap .content01--child .icon-plus {
    position: absolute;
    right: 4px;
    bottom: 55px;
    background-color: #27c25d;
  }
  .gallery_wrap .content01--child .gallery-txt {
    font-size: 136%;
    height: 50px;
  }
  .gallery_wrap .content01--child:nth-last-of-type(2) {
    display: none;
  }
  .gallery_wrap .content01--child:nth-last-of-type(1) {
    margin-left: 4%;
  }
  #cboxContent {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .page-shisetsu #cboxClose {
    top: -48px;
  }
}

/* recruit
*************************************************** */
.recruit .page_nav,
.treatment .page_nav {
  margin-bottom: 40px;
}
.recruit .heading-txt,
.treatment .heading-txt {
  padding-bottom: 96px;
  background-image: url(../images/subpage/recruit/recruit_message-bg.png);
  background-position: center;
  background-repeat: no-repeat;
}
.recruit .heading-txt .section_ttl,
.treatment .heading-txt .section_ttl {
  font-size: 220%;
  margin-bottom: 28px;
}
.recruit .heading-txt .icon_nami,
.treatment .heading-txt .icon_nami,
.page-treatment #trouble .icon_nami {
  position: static;
  margin: 32px auto 0;
}
.recruit .heading-txt p,
.treatment .heading-txt p {
  line-height: 2;
  font-size: 127%;
}
.recruit .heading-txt p:not(:last-of-type),
.treatment .heading-txt p:not(:last-of-type) {
  margin-bottom: 1em;
}
.merit_wrap .content05 {
  margin-bottom: 120px;
}
.merit_wrap .content06 {
  margin-bottom: 16px;
}
.recruit .bnr-area {
  text-align: center;
}

/* day_flow step_flow */
.day_flow.box_tapestry {
  padding-bottom: 24px;
}
.day_flow li,
.step_flow li {
  position: relative;
  width: 24%;
  margin-right: 4%;
  margin-bottom: 24px;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
  padding-left: 0em;
  text-indent: 0em;
}
.day_flow li:nth-of-type(3) {
  margin-right: 20%;
}
.day_flow li:nth-of-type(4) {
  margin-left: 16%;
}
.day_flow li:last-of-type,
.step_flow li:nth-of-type(5n) {
  margin-right: 0;
}
.page-shinryou .content06 .step_flow li:nth-of-type(3) {
  margin-bottom: 12px;
}
.day_flow li::before {
  display: none;
}
.day_flow li:not(:last-of-type)::after,
.step_flow li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 54%;
  right: -10%;
  display: block;
  width: 16px;
  height: 16px;
  border-bottom: solid 2px #2faa5b;
  border-right: solid 2px #2faa5b;
  transform: rotate(-45deg);
}
.step_flow li:not(:last-of-type)::after {
  top: 168px;
}
.step_flow li {
  width: 17.6%;
  margin-right: 3%;
  margin-bottom: 0;
}
.day_flow-img {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.step_flow-img {
  border: solid 1px #ded9d4;
  border-radius: 5px;
  overflow: hidden;
}
.day_flow-ttl,
.step_flow-ttl {
  font-size: 134%;
}
.day_flow-time,
.step_flow-no {
  display: inline-block;
  border-radius: 50px;
  padding: 2px 24px 6px;
  color: #fff;
  font-size: 94%;
  line-height: 1;
  background-color: #2faa5b;
}
.step_flow-no {
  padding: 3px 24px 5px;
}
@media all and (-ms-high-contrast: none) {
  .day_flow-time {
    padding: 3px 24px 5px;
  }
  .step_flow-no {
    padding: 7px 24px 2px;
  }
}
.day_flow-subtxt,
.step_flow-subtxt {
  padding: 8px 16px 16px;
  text-align: left;
  font-size: 94%;
}
.step_flow-subtxt {
  padding: 8px 0 20px;
}
.step_flow small {
  display: block;
  margin-top: 4px;
  font-size: 93%;
  color: #999;
  line-height: 1.8;
}

/* step_flow imgなし */
.step_flow-img-none {
}

/* 時計アイコン */
.icon_time {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border: solid 2px #fff;
  transform: translateY(2px);
  border-radius: 50%;
}
.icon_time::before,
.icon_time::after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  border: solid 1px #fff;
}
.icon_time::before {
  width: 3px;
}
.icon_time::after {
  width: 6px;
}
.day_flow li:nth-of-type(1) .icon_time::before {
  top: 5px;
  left: 2px;
  transform: rotate(-20deg);
}
.day_flow li:nth-of-type(1) .icon_time::after {
  top: 6px;
  left: 3px;
  transform: rotate(90deg);
}
.day_flow li:nth-of-type(2) .icon_time::before {
  top: 5px;
  left: 2px;
}
.day_flow li:nth-of-type(2) .icon_time::after {
  top: 3px;
  left: 3px;
  transform: rotate(90deg);
}
.day_flow li:nth-of-type(3) .icon_time::before {
  top: 3px;
  right: 3px;
  transform: rotate(-80deg);
}
.day_flow li:nth-of-type(3) .icon_time::after {
  top: 6px;
  left: 3px;
  transform: rotate(90deg);
}
.day_flow li:nth-of-type(4) .icon_time::before {
  top: 4px;
  right: 2px;
}
.day_flow li:nth-of-type(4) .icon_time::after {
  top: 6px;
  left: 3px;
  transform: rotate(90deg);
}
.day_flow li:nth-of-type(5) .icon_time::before {
  top: 6px;
  right: 2px;
  transform: rotate(30deg);
}
.day_flow li:nth-of-type(5) .icon_time::after {
  top: 3px;
  left: 3px;
  transform: rotate(90deg);
}
.day_flow li:nth-of-type(6) .icon_time::before {
  top: 5px;
  left: 3px;
  transform: rotate(130deg);
}
.day_flow li:nth-of-type(6) .icon_time::after {
  top: 6px;
  left: 3px;
  transform: rotate(90deg);
}

/* bosyu */
.bosyu_wrap .inner {
  max-width: 1000px;
}
.bosyu-slider {
  margin-bottom: 40px;
}
.bosyu-nav-child {
  cursor: pointer;
}
.bosyu-nav-child .bosyu-txt {
  position: relative;
  width: 196px;
  height: 86px;
  margin-right: 5px;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f9b967;
  color: #fff;
  line-height: 1.5;
  font-size: 120%;
  border-radius: 5px;
  text-align: center;
}
.bosyu-nav-child.slick-active.slick-current .bosyu-txt {
  background-color: #faa75e;
}
.bosyu-nav-child .bosyu-txt::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 48%;
  opacity: 0;
  border-style: solid;
  border-width: 0 15px 15px 0;
  border-color: transparent #faa75e transparent transparent;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.bosyu-nav-child.slick-active.slick-current .bosyu-txt::before {
  opacity: 1;
}
.bosyu-child {
  padding: 56px 40px;
  background-color: #fff;
}
.bosyu-slider .slick-arrow {
  position: relative;
  width: 72px;
  height: 108px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.bosyu-slider .slick-arrow:hover {
  opacity: 0.7;
}
.bosyu-slider .slick-prev,
.bosyu-slider .slick-next {
  position: absolute;
  top: calc(50% - 72px);
  z-index: 100;
}
.bosyu-slider .slick-prev {
  left: -80px;
  transform: rotate(180deg);
}
.bosyu-slider .slick-next {
  right: -80px;
}
.bosyu-slider .slick-arrow::before,
.bosyu-slider .slick-arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 72px;
  height: 0;
  border-top: solid 2px #28c25f;
}
.bosyu-slider .slick-arrow::before {
  transform: rotate(45deg);
  top: 25%;
  left: calc(50% - 36px);
}
.bosyu-slider .slick-arrow::after {
  transform: rotate(-45deg);
  top: 71%;
  left: calc(50% - 36px);
}
.bosyu-slider .slick-dots {
  padding-top: 16px;
  text-align: center;
}
.bosyu-child .cat_list a {
  float: none;
}
.bosyu-child .list-dl {
  max-width: 720px;
  margin: 48px auto;
}
@media only screen and (min-width: 768px) {
  .bosyu-slider .slick-slider .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 768px) {
  .bosyu-slider .slick-arrow {
    display: none !important;
  }
}
@media only screen and (max-width: 1133px) and (min-width: 768px) {
  .bosyu-nav-child .bosyu-txt {
    width: 186.8px;
  }
}

/* interview */
.interview-txt i {
  font-style: normal;
}

/* faq */
.faq_list {
  max-width: 720px;
  margin: 0 auto;
}
.faq_list dt,
.faq_list dd {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 107%;
}
.faq_list dt {
  margin-bottom: 8px;
  font-weight: bold;
}
.faq_list dd:not(:last-of-type) {
  margin-bottom: 32px;
}
.faq_list dt::before,
.faq_list dd::before {
  padding-right: 12px;
  font-size: 120%;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.faq_list dt::before {
  content: "Q.";
  color: #77cbee;
}
.faq_list dd::before {
  content: "A.";
  color: #ff7474;
}

@media only screen and (max-width: 767px) {
  .recruit .page_nav li:nth-of-type(odd) {
    width: 45%;
  }
  .recruit .page_nav li:nth-of-type(even) {
    width: 55%;
  }
  .recruit .heading-txt,
  .treatment .heading-txt {
    padding-bottom: 64px;
  }
  .recruit .heading-txt .section_ttl,
  .treatment .heading-txt .section_ttl {
    font-size: 193%;
  }
  .recruit .heading-txt p,
  .treatment .heading-txt p {
    font-size: 115%;
  }
  .recruit .heading-txt p:not(:last-of-type),
  .treatment .heading-txt p:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .day_flow li,
  .step_flow li {
    width: 100%;
    min-height: 108px;
    padding-top: 8px;
    padding-left: 136px;
    padding-right: 8px;
    margin-right: 0;
    margin-bottom: 24px;
    text-align: left;
  }
  .step_flow li {
    padding-top: 0;
  }
  .day_flow li:nth-of-type(3) {
    margin-right: 0%;
  }
  .day_flow li:nth-of-type(4) {
    margin-left: 0%;
  }
  .page-shinryou .content06 .step_flow li:nth-of-type(3) {
    margin-bottom: 24px;
  }
  .day_flow-img,
  .step_flow .step_flow-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    border-radius: 5px 0 0 0;
  }
  .step_flow-img {
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
  .day_flow-ttl,
  .step_flow-ttl {
    font-size: 116%;
  }
  .step_flow-ttl {
    transform: translateY(-4px);
  }
  .day_flow-time,
  .step_flow-no {
    position: absolute;
    top: 84px;
    left: 0;
    width: 120px;
    border-radius: 0 0 0 5px;
  }
  .step_flow-no {
    text-align: center;
    border-radius: 0 0 5px 5px;
  }
  .day_flow-subtxt,
  .step_flow-subtxt {
    padding: 4px 0 0;
    line-height: 1.5;
  }
  .day_flow-subtxt span {
    display: none;
  }
  .day_flow li:not(:last-of-type)::after,
  .step_flow li:not(:last-of-type)::after {
    top: 113px;
    right: auto;
    left: 56px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
  }
  .merit_wrap .content05 {
    margin-bottom: 96px;
  }
  .bosyu-child {
    padding: 40px 24px;
  }
  .bosyu-child .list-dl {
    margin: 32px auto;
  }
  .bosyu-slider .slick-prev,
  .bosyu-slider .slick-next {
    display: none !important;
  }
  .bosyu-nav-child .bosyu-txt {
    width: 247px;
    height: auto;
  }
  .faq_list dt,
  .faq_list dd {
    padding: 12px 16px 12px calc(16px + 2.2em);
    text-indent: -2.2em;
  }
  .faq_list dt {
    margin-bottom: 6px;
  }
  .faq_list dd:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .contact .heading-2.mgn-btm24 {
    margin-bottom: 24px;
  }
  .bosyu-nav-child .bosyu-txt {
    width: auto;
    padding: 8px 16px;
  }
  .bosyu-nav-child:hover {
    opacity: 1;
  }
  .step_flow .icon-plus {
    top: 48px;
    right: 4px;
    width: 32px;
    height: 32px;
    padding: 6px;
    box-shadow: 0px 0px 16px rgba(8, 24, 49, 0.05);
    background-color: #f9b967;
  }
}
@media only screen and (max-width: 420px) {
  .recruit .page_nav li:nth-of-type(odd),
  .recruit .page_nav li:nth-of-type(even) {
    width: 100%;
  }
  .recruit .page_nav li:nth-of-type(odd) a,
  .recruit .page_nav li:nth-of-type(even) a {
    border: none;
  }
  .recruit .heading-txt p {
    font-size: 107%;
  }
}
@media only screen and (max-width: 380px) {
  .day_flow li,
  .step_flow li {
    min-height: 132px;
    padding-left: 112px;
  }
  .day_flow-img,
  .step_flow .step_flow-link {
    width: 96px;
    height: 108px;
    overflow: hidden;
  }
  .day_flow-img img,
  .step_flow .step_flow-link .step_flow-img img {
    width: auto;
    max-width: none;
    height: 108px;
    transform: translateX(-24px);
  }
  .day_flow-time,
  .step_flow-no {
    top: 108px;
    width: 96px;
    padding: 2px 14px 6px;
  }
  .day_flow li:not(:last-of-type)::after,
  .step_flow li:not(:last-of-type)::after {
    top: 138px;
    left: 44px;
  }
  .step_flow .icon-plus {
    top: 72px;
  }
}

/* treatment
*************************************************** */
.treatment_list {
  position: relative;
  margin-bottom: 8px;
  overflow: hidden;
}
.treatment_list li {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffecdc;
  color: #74533f;
  line-height: 1;
  padding: 6px 24px;
  border-radius: 5px;
  float: left;
  margin-right: 4px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.page-treatment .menu_wrap .btn {
  margin-left: 0;
}

/* -- trouble_list -- */
.trouble_list li {
  position: relative;
  padding-left: 40px;
}
.trouble_list li:not(:last-child) {
  margin-bottom: 12px;
}
.trouble_list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 29px;
  height: 21px;
  background-image: url(../images/subpage/treatment/icn_check.png);
  background-size: cover;
}
.trouble_list a {
  text-decoration: underline;
}
.trouble_list2 li:not(:last-child) {
  margin-bottom: 6px;
}

/* -- trouble_flow -- */
.trouble_flow .content {
  padding-right: 60px;
  margin-bottom: 32px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
  overflow: hidden;
}
.trouble_flow .content .heading-2 {
  display: inline-block;
  border-radius: 50px;
  padding: 2px 24px 6px;
  color: #fff;
  font-size: 120%;
  line-height: 1;
  background-color: #2faa5b;
}

/* -- page-pillow -- */
.page-pillow .point_txt {
  padding: 40px;
}
.page-pillow .box_tapestry dl dt,
.page-pillow .box_tapestry dl dd {
  width: 100%;
}
.page-pillow .box_tapestry dl dt {
  margin-bottom: 4px;
  font-size: 120%;
}

@media all and (-ms-high-contrast: none) {
  .trouble_flow .content .heading-2 {
    padding: 8px 24px 0;
  }
}
@media only screen and (max-width: 767px) {
  .trouble_list {
    padding-top: 8px;
  }
  .trouble_flow .content {
    padding: 24px;
  }
  .trouble_flow .content .heading-2 {
    padding: 4px 24px;
  }
  .trouble_flow .content .txtarea {
    margin-top: 16px;
  }
  .page-pillow .point_txt {
    padding: 24px;
  }
  .page-treatment .menu_wrap .btn {
    margin-left: auto;
  }
}

/* access
*************************************************** */
.access .maparea {
  position: relative;
}
.access iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
}
@media only screen and (max-width: 767px) {
  .access .maparea {
    margin-bottom: 24px;
  }
}

/* 404
*************************************************** */
.page-404 .section_pdg li:not(:last-child) {
  margin-right: 16px;
}
.page-404 .txtarea p {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .page-404 .section_pdg li:not(:last-child) {
    margin-bottom: 16px;
    margin-right: 0;
  }
}

/* thanks
*************************************************** */
@media all and (-ms-high-contrast: none) {
  .page-thanks .thanks.section_pdg {
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-thanks .thanks.section_pdg .inner {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .page-thanks .thanks .txt-ctr {
    text-align: left;
  }
}

/* sitemap
*************************************************** */
.sitemap {
  font-size: 127%;
}
.sitemap--list {
  width: 49%;
}
.sitemap--list-page.sitemap--list > li {
  margin-bottom: 10px;
}
.sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) {
  margin-top: 10px;
}
.sitemap--list-posts.sitemap--list > .sitemap--item-child {
  margin-bottom: 16px;
}
.sitemap--list li a {
  display: block;
  text-decoration: none;
}
.sitemap--list li a:hover {
  color: #ff7575;
  opacity: 1;
}
.sitemap--item-ttl {
  font-weight: bold;
}
.sitemap--item:not(.sitemap--item-ttl) {
  font-size: 94%;
}

/* --- category --- */
.sitemap--list li.sitemap--item-child a {
  padding-left: 8px;
}
.sitemap--list li.sitemap--item-child.sitemap--item-page {
  padding: 6px 0 6px 24px;
}
.sitemap--list li.sitemap--item-taxonomy ul {
  letter-spacing: -0.4em;
}
.sitemap--list li.sitemap--item-taxonomy ul li {
  display: inline-block;
  padding: 0;
  margin-right: 8px;
  letter-spacing: normal;
}

@media only screen and (max-width: 767px) {
  .sitemap--lists {
    display: block;
  }
  .sitemap--list {
    width: 100%;
  }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child {
    margin-bottom: 8px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 40px;
}
.archive .main_column,
.single .main_column {
  max-width: 776px;
}

/* --- post --- */
.post {
  position: relative;
}
.post--link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--link:hover {
  background-color: #fff;
  opacity: 0.3;
}
.post--date {
  color: #aaa;
  font-size: 85%;
  margin-right: 16px;
  font-weight: bold;
}
.cat_list {
  position: relative;
  overflow: hidden;
}
.post--ttl {
  position: static;
}
.post--img img {
  border-radius: 5px;
  overflow: hidden;
}
.cat_list a {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffecdc;
  color: #74533f;
  line-height: 1;
  padding: 6px 24px;
  border-radius: 5px;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media all and (-ms-high-contrast: none) {
  .cat_list a {
    padding: 8px 24px 4px;
  }
  .archive-voice .cat_list a,
  .single-voice .cat_list a {
    padding: 6px 24px;
  }
}
.cat_list a:hover {
  opacity: 1;
  background-color: #faa75e;
}

@media only screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
  .post--date {
    margin-bottom: 6px;
    font-size: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cat_list a {
    padding: 7px 24px 5px;
    font-size: 93%;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}
.side_column.box_tapestry {
  margin-top: 0;
  padding-top: 24px;
}
.side_section:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 32px;
  border-bottom: 2px dotted #d2c8c1;
}
.side--ttl {
  font-size: 134%;
  line-height: 1;
  margin-bottom: 16px;
  text-align: left;
  border-bottom: none;
}
.side--ttl small {
  font-size: 62%;
  opacity: 0.3;
  color: #74533f;
  display: block;
  line-height: 1;
  margin-top: 4px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img img {
  margin-right: 16px;
  border-radius: 3px;
}
.posts-side .txtarea {
  flex: 1;
}
.posts-side .post--date {
  margin-bottom: 0;
}
.posts-side .post--ttl {
  line-height: 1.4;
  font-size: 94%;
}
.no_post {
  text-align: center;
  font-size: 107%;
}

/* --- archive --- */
.side_column .archive_year--ttl {
  cursor: pointer;
}
.side_column .archive_year--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff7474;
  border-right: 2px solid #ff7474;
  transform: rotate(135deg);
  transition: 0.4s ease-out;
}
.side_column .archive_year--ttl.active::after {
  transform: rotate(315deg);
}
.side_column .archive_month,
.side_column .side--archive li::before {
  display: none;
}
.archive-news .box_tapestry .sidebar-parent_cat,
.single-news .box_tapestry .sidebar-parent_cat,
.archive-news .box_tapestry .sidebar-parent_cat ul,
.single-news .box_tapestry .sidebar-parent_cat ul {
  padding-left: 1.2em;
}
.archive-news .box_tapestry li,
.single-news .box_tapestry li {
  padding-left: 0;
  text-indent: 0;
}
.archive-news .box_tapestry li::before,
.single-news .box_tapestry li::before {
  left: -1.2em;
}
.side_column .sidebar-parent_cat > li > a {
  font-weight: bold;
}
.archive_month li a {
  position: relative;
  padding-left: 1.2em;
}
.archive_month li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  padding: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ff7474;
}

/* --- wp-calendar --- */
#wp-calendar {
  width: 100%;
  text-align: center;
}
#wp-calendar td {
  padding: 2px 0;
}
#wp-calendar tbody td a {
  background-color: #eee;
  display: inline-block;
  width: 25px;
  height: 25px;
  text-decoration: none;
  border-radius: 15px;
}
#wp-calendar #prev a,
#wp-calendar #next a {
  background: #56a0b9;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 16px;
}
@media only screen and (max-width: 1100px) {
  .catarea-bloc {
    width: 23%;
    display: inline-block;
    margin: 1%;
  }
  .side-column .side_section:last-child {
    margin-bottom: 0;
  }
  .catarea-bloc .catarea-list {
    overflow: hidden;
    margin: 8px 0 16px;
  }
  .catarea-bloc .catarea-list li {
    width: 49%;
    margin: 0 0 1% 1%;
    float: left;
  }
  .catarea-bloc .catarea-list li a {
    font-size: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .side_column {
    width: 100%;
  }
  .side_column.box_tapestry {
    margin-top: 80px;
  }
  .side_section {
    font-size: 108%;
  }
  .side--ttl {
    font-size: 146%;
  }
  .side--ttl small {
    line-height: 1.5;
    margin-top: 0;
  }
  .posts-side .post--img img {
    width: 92px;
    height: 92px;
  }
  .posts-side .txtarea {
    padding-top: 4px;
  }
}

/* news
**************************************** */

/* --- news--archive --- */
.archive-news,
.single-news {
  background-color: #fff8e8;
}
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}

/* --- news--archive-pulldown --- */
.news--archive-pulldown .archive_year {
  position: relative;
  display: inline-block;
  font-size: 92%;
  margin-left: auto;
}
.news--archive-pulldown .archive_year a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}
.news--archive-pulldown .archive_year a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.news--archive-pulldown .archive_year--label {
  position: absolute;
  top: 50%;
  left: -6em;
  transform: translateY(-50%);
}
.news--archive-pulldown .archive_year--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.news--archive-pulldown .archive_year--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}
.news--archive-pulldown .active .archive_year--btn::after {
  top: 14px;
  transform: rotate(225deg);
}
.news--archive-pulldown .archive_year--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.news--archive-pulldown .active .archive_year--menu {
  visibility: visible;
  opacity: 1;
}

/* --- news_list --- */
main .news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedede;
}
main .news_list .post--date {
  background-color: #222;
  color: #fff;
  padding-top: 6px;
  padding: 6px;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: 32px;
}

@media only screen and (max-width: 768px) {
  main .news_list .post {
    display: block;
  }
  main .news_list .post--date {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 8px;
  }
}

/* syoujou
**************************************** */
.archive-syoujou .page_ttl-jp-sm {
  display: none;
}
.archive-syoujou .content01 {
  position: relative;
}
.archive-syoujou .content01 .icon_nami {
  left: 50%;
  bottom: -48px;
}
.archive-syoujou .flex-col2 img {
  border-radius: 5px;
}
.archive-syoujou .content03 {
  padding-top: 36px;
}
.archive-syoujou .page_nav li {
  width: 25%;
  margin-bottom: 10px;
}
.archive-syoujou .page_nav li a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}
.archive-syoujou .page_nav li:nth-of-type(4n) a {
  border-right: none;
}
.archive-syoujou .post_link {
  display: block;
  height: 0;
  transform: translateY(-136px);
}
.posts-syoujou .post {
  padding: 56px 60px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
.posts-syoujou .post--img {
  float: right;
  width: 328px;
  margin-left: 40px;
  margin-bottom: 32px;
}
.posts-syoujou .post--img img {
  border-radius: 0;
}
.post--txt-heading {
  display: inline-block;
  padding-bottom: 4px;
  color: #faa75e;
  font-size: 160%;
}
.posts-syoujou p:not(:first-child) .post--txt-heading {
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: #98d5ae dotted 4px;
}
.posts-syoujou .post--txt.txtarea a {
  text-decoration: underline;
}
.posts-syoujou .post--txt ul {
  margin-bottom: 1em;
}
.posts-syoujou .post--txt ul li {
  position: relative;
  padding-left: 1.4em;
  font-size: 107%;
}
.posts-syoujou .post--txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #ff7474;
}
.posts-syoujou .post--txt ul li:not(:last-child) {
  margin-bottom: 2px;
}
.archive-syoujou .page_nav-top:not(:last-of-type) {
  margin-bottom: 48px;
}
.archive-syoujou .page_nav-top a {
  font-size: 114%;
}
.archive-syoujou .page_nav-top span {
  transform: translateY(2px) rotate(180deg);
}
.archive-syoujou .cat_list a {
  color: #fff;
}
.archive-syoujou .cat_list a.neck {
  background-color: #ffaf8e;
}
.archive-syoujou .cat_list a.shoulder {
  background-color: #7fe7b4;
}
.archive-syoujou .cat_list a.arm {
  background-color: #55c7ed;
}
.archive-syoujou .cat_list a.elbow {
  background-color: #f6b969;
}
.archive-syoujou .cat_list a.hand {
  background-color: #6f9df8;
}
.archive-syoujou .cat_list a.hip {
  background-color: #ff7474;
}
.archive-syoujou .cat_list a.knee {
  background-color: #f2c5f9;
}
.archive-syoujou .cat_list a.limbs {
  background-color: #8eceff;
}
.archive-syoujou .cat_list a.leg {
  background-color: #bcbeff;
}
.archive-syoujou .cat_list a.accident {
  background-color: #7fe4ea;
}
.archive-syoujou .cat_list a.osteoporosis {
  background-color: #fcccee;
}
.archive-syoujou .cat_list a.etc {
  background-color: #8aeaa0;
}
@media only screen and (max-width: 768px) {
  .archive-syoujou .content01 .icon_nami {
    left: 0;
    bottom: -32px;
  }
  .archive-syoujou main > .section_pdg.inner div:only-child .mgn-btm80,
  .archive-syoujou .content02 .mgn-btm80 {
    margin-bottom: 16px;
  }
  .archive-syoujou .page_nav,
  .archive-syoujou .page_nav li {
    width: 100%;
  }
  .archive-syoujou .page_nav li {
    margin: 0 auto 10px;
    padding-bottom: 12px;
    border-bottom: solid 1px #e3ddda;
  }
  .archive-syoujou .page_nav li a {
    border: none;
    position: relative;
    padding: 0 40px 0 12px;
    border-right: none;
    text-align: left;
  }
  .archive-syoujou .page_nav a span {
    position: absolute;
    right: 16px;
    top: calc(50% - 9px);
  }
  .posts-syoujou .post {
    padding: 32px 24px;
  }
  .posts-syoujou .post .heading-3 {
    margin-bottom: 16px;
    font-size: 186%;
  }
  .posts-syoujou .post .heading-3 span {
    display: block;
    padding-left: 0;
  }
  .posts-syoujou .post--img {
    float: none;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
  }
  .posts-syoujou .post--info {
    margin-bottom: 8px;
  }
  .post--txt-heading {
    padding-bottom: 0;
    font-size: 140%;
  }
  .archive-syoujou .page_nav-top a {
    padding: 0;
  }
  .posts-syoujou p:not(:first-child) .post--txt-heading {
    margin-top: 24px;
    padding-top: 24px;
  }
}

/* bosyu
**************************************** */
.archive-bosyu {
  background-color: #fff8e8;
}
.posts-bosyu {
  padding-left: 24px;
  padding-right: 24px;
}
.posts-bosyu .post {
  background-color: #fff;
  padding: 40px 48px;
  border-radius: 10px;
}
.posts-bosyu .post:not(:nth-last-of-type(1)),
.posts-bosyu .post:not(:nth-last-of-type(2)) {
  margin-bottom: 24px;
}
.posts-bosyu .post--txtarea {
  width: calc(100% - 287px);
}
.posts-bosyu .bosyu_list {
  line-height: 1.8;
}
.posts-bosyu .bosyu_list span {
  display: block;
  font-size: 114%;
}
@media only screen and (max-width: 768px) {
  .posts-bosyu {
    padding-left: 0;
    padding-right: 0;
  }
  .posts-bosyu .post {
    padding: 32px 24px;
  }
  .posts-bosyu .post .heading-4.mgn-btm8 {
    margin-bottom: 8px;
  }
  .posts-bosyu .post--txtarea {
    width: 100%;
    margin-bottom: 16px;
  }
  .posts-bosyu .bosyu_list span {
    font-size: 135%;
  }
}

/* voice
**************************************** */
.posts-voice {
  padding-top: 80px;
}
.posts-voice::after {
  content: "";
  width: calc(50% - 40px);
}
.posts-voice .post {
  width: calc(50% - 40px);
  margin-bottom: 120px;
}
.posts-voice .post:nth-last-of-type(1),
.posts-voice .post:nth-last-of-type(2) {
  margin-bottom: 0;
}
.posts-voice .post--ttl {
  top: -32px;
  left: -32px;
  padding: 0 32px 20px;
}
.posts-voice .post--ttl h2 {
  font-size: 160%;
}
.posts-voice .post--img {
  width: 100%;
  height: 100%;
  max-width: 480px;
  background-color: #eee;
  border-radius: 5px;
  margin-left: 20px;
}
.voice_ttl i,
.voice_status i,
.posts-voice .post--ttl i {
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .posts-voice {
    padding-top: 64px;
  }
  .posts-voice .post,
  .posts-voice .post:nth-last-of-type(2) {
    width: 100%;
    margin-bottom: 104px;
  }
  .posts-voice .post:nth-last-of-type(1) {
    margin-bottom: 24px;
  }
  .posts-voice .post--img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .posts-voice .post--ttl h2 {
    font-size: 140%;
  }
}

/* news
**************************************** */
.posts-news .post {
  padding: 56px 60px;
  margin-bottom: 32px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
.posts-news .post--txtarea {
  flex: 1;
}
.posts-news .post--date {
  font-size: 100%;
  margin-right: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}
.posts-news .post--img {
  padding-right: 40px;
}
.posts-news .post--img img {
  width: 240px;
  height: auto;
}
.archive-news .box_tapestry .post--date,
.single-news .box_tapestry .post--date {
  margin-bottom: 8px;
  line-height: 1.1;
  font-size: 80%;
}
.archive-news .box_tapestry ul,
.single-news .box_tapestry ul {
  margin-top: 0;
}
.archive-news .box_tapestry li::before,
.single-news .box_tapestry li::before {
  content: "";
  top: 0.6em;
  padding: 0;
}

@media only screen and (max-width: 1100px) {
  .posts-news {
    margin-bottom: 56px;
  }
  .archive-blog .inner.flex,
  .single-blog .inner.flex {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .posts-news {
    margin-bottom: 24px;
  }
  .posts-news .post {
    display: block;
    padding: 32px 24px;
  }
  .posts-news .post--img {
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }
  .posts-news .post--img {
    position: relative;
    height: 0;
    padding-top: 66.666%;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 5px;
  }
  .posts-news .post--img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  position: relative;
  max-width: 41%;
  width: 46px;
  height: 46px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: #f9b967;
  line-height: 1.1;
  font-size: 147%;
  padding-top: 10px;
  margin: 4px;
  border-radius: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a:hover,
.wp-pagenavi-single a:not([rel="next"]):not([rel="prev"]) {
  background: #f07b42;
  opacity: 1;
}
.wp-pagenavi a,
.wp-pagenavi-single a:not([rel="next"]):not([rel="prev"]):hover {
  background-color: #f9b967;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding-top: 8px;
}
.wp-pagenavi-single a {
  width: auto;
  height: auto;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 114%;
}
.wp-pagenavi-single a[rel="next"]::before,
.wp-pagenavi-single a[rel="prev"]::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.wp-pagenavi-single a[rel="next"]::before {
  transform: translateY(-1px) rotate(-135deg);
  margin-right: 8px;
}
.wp-pagenavi-single a[rel="prev"]::after {
  transform: translateY(-1px) rotate(45deg);
  margin-left: 8px;
}
@media all and (-ms-high-contrast: none) {
  .wp-pagenavi-single a {
    padding: 14px 12px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .not(.bosyu) .wp-pagenavi {
    margin-bottom: 40px;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    padding-top: 12px;
  }
  .single .wp-pagenavi a {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
}

/* voice--info (posts-voiceとの共通部分あり)
**************************************** */
.posts-voice .post--ttl,
.voice--info .voice_ttl {
  position: absolute;
  z-index: 10;
  margin: 0 0 0 auto;
  background-color: #28c25f;
  border-radius: 5px;
  color: #fff;
  transform: translateX(8px) translateY(-28px);
}
.posts-voice .post--ttl::before,
.voice--info .voice_ttl::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 48%;
  display: block;
  border-style: solid;
  border-width: 0 28px 20px 0;
  border-color: transparent #28c25f transparent transparent;
}
.posts-voice .post--ttl h2,
.voice--info .voice_ttl h3 {
  clear: both;
  line-height: 1.4;
}
.posts-voice .post--ttl .cat_list,
.voice--info .voice_ttl .cat_list {
  margin-top: -8px;
}
@media only screen and (max-width: 767px) {
  .posts-voice .post--ttl,
  .voice--info .voice_ttl {
    transform: translateX(0) translateY(-28px);
  }
  .posts-voice .post--ttl {
    top: -32px;
    left: 0px;
    padding: 0 16px 20px;
  }
}

/* --- bosyu--info --- */
.contact .formy_wrap {
  transform: translateY(-40px);
}
.bosyu--info .contact {
  padding-bottom: 48px;
}
.bosyu-tel {
  position: relative;
  z-index: 10;
  max-width: 85%;
  width: 420px;
  padding: 16px 40px 20px;
  margin: 24px auto 0;
  font-size: 127%;
  line-height: 1;
  border-radius: 10px;
}
.bosyu-tel img {
  margin-right: 8px;
  transform: translateY(-2px);
}
.bosyu-tel a {
  margin-top: 10px;
  font-size: 195%;
  line-height: 1;
}
@media all and (-ms-high-contrast: none) {
  .bosyu-tel a {
    line-height: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .bosyu-tel {
    padding: 20px 0;
    margin: 36px auto 0;
  }
  .bosyu-tel a {
    font-size: 175%;
  }
}
@media only screen and (max-width: 350px) {
  .bosyu-tel a {
    color: #ff7474;
  }
  .bosyu-tel img {
    display: none;
  }
}

/* --- voice--info --- */
.voice--info {
  padding-top: 40px;
}
.voice--info .eyecatch {
  margin-bottom: 100px;
}
.voice--info .eyecatch > div {
  position: relative;
  display: inline-block;
}
.voice--info .flex-col2 {
  flex-direction: row-reverse;
}
.voice--info .flex-col2 > *:nth-child(even) {
  margin-left: 0;
  margin-right: 5.55%;
}
.voice--info .flex-col2 img {
  width: 320px;
  border-radius: 10px;
}
.voice--info .txtarea {
  flex: 1;
}
.voice--info .voice_ttl {
  top: 0;
  left: -80px;
  padding: 0 32px 26px;
}
.voice--info .voice_ttl h3 {
  font-size: 214%;
  letter-spacing: 0.15em;
}
.voice--info .voice_ttl .cat_list {
  font-size: 120%;
}
.voice--info .voice_ttl .voice_status {
  font-size: 120%;
}
@media only screen and (max-width: 767px) {
  .voice--info {
    padding-top: 80px;
  }
  .voice--info .eyecatch {
    width: 111%;
    margin-left: -5.5%;
    margin-bottom: 40px;
  }
  .voice--info .voice_ttl {
    top: -48px;
    left: 16px;
    padding: 0 32px 20px;
  }
  .voice--info .voice_ttl h3 {
    font-size: 184%;
  }
  .voice--info .flex-col2 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* news--info (posts-voiceとの共通部分あり)
  **************************************** */
.news--info {
  padding: 56px 60px;
  margin-bottom: 32px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .news--info {
    padding: 32px 24px;
  }
  .news--info .heading-3 {
    margin-bottom: 24px;
  }
  .news--info .eyecatch {
    margin-bottom: 28px;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
.formy_wrap {
  padding: 56px 60px;
  border-radius: 10px;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
#formy_form table {
  width: 100%;
}
#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  height: 40px;
  background-color: #fff;
}
@media all and (-ms-high-contrast: none) {
  #formy_form select {
    padding-right: 0;
  }
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
.pbf {
  margin-top: 8px;
}
.help_text {
  font-size: 85%;
  color: #999;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}
.requiredIcon {
  background: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #ff5555;
}
.formy_submit_disabled {
  background-color: #ccc;
}
.confirm-message {
  text-align: center;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #aaa;
}
.formy_send {
  background-color: #ff5555;
}
#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .formy_wrap {
    padding: 48px 16px;
  }
  #formy_form {
    padding: 0 16px;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea {
    font-size: 16px;
  }
  #formy_form select {
    width: 100%;
  }
  .confirm-message {
    text-align: left;
  }
}
