@charset "UTF-8";
/* Scss Document */
@font-face {
  font-family: "Hannari";
  src: local("HANNARI");
  src: url("../../HANNARI.OTF") format("opentype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --main-color: #6cc1ac; /*メイン色*/
  --sub-color: #c89e62; /*サブ色*/
  --bg-color: #f9f7f3; /*サイドメニュー・レイアウト類の背景色*/
  --border-color: #e3e3e3; /*境界線色*/
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #6c4e45;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  position: relative;
  word-wrap: break-word;
  background-color: #fff;
  text-align: justify;
}

a {
  color: #6cc1ac;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: #a2d084;
}

::-moz-selection {
  background-color: #e9dfd0;
}

::selection {
  background-color: #e9dfd0;
}

::-moz-selection {
  background-color: #e9dfd0;
}

strong {
  font-weight: 700;
}

body {
  min-width: 1240px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

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

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

a img {
  border: none;
}

/*TELリンクのカーソルはデフォルトにする*/
[href^=tel]:hover {
  cursor: default;
}

.fadeWrap {
  -webkit-animation: fadein 2s forwards;
          animation: fadein 2s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================================

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeIn {
  -webkit-animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン（下→上） */
.fadeInUp {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInUp {
  -webkit-animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（右→左） */
.fadeInRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInRight {
  -webkit-animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フェードイン（左→右） */
.fadeInLeft {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInLeft {
  -webkit-animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* フリップ（右回転） */
.flipRight {
  opacity: 0;
  visibility: visible;
}

.is-visible.flipRight {
  -webkit-animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

@-webkit-keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipRight {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* フリップ（左回転） */
.flipLeft {
  opacity: 0;
  visibility: visible;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.is-visible.flipLeft {
  -webkit-animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@-webkit-keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes flipLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
/* 恒常的に動くアニメーション */
/* ゆっくり回転（右回転） */
.rotateRight {
  -webkit-animation: rotateRight 20s linear infinite;
          animation: rotateRight 20s linear infinite;
}

@-webkit-keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ゆっくり回転（左回転） */
.rotateLeft {
  -webkit-animation: rotateLeft 20s linear infinite;
          animation: rotateLeft 20s linear infinite;
}

@-webkit-keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* 浮遊（基準点から上） */
.floatingUp {
  -webkit-animation: floatingUp 10s ease-in-out infinite;
          animation: floatingUp 10s ease-in-out infinite;
}

@-webkit-keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 浮遊（基準点から下） */
.floatingDown {
  -webkit-animation: floatingDown 10s ease-in-out infinite;
          animation: floatingDown 10s ease-in-out infinite;
}

@-webkit-keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatingDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 生き物が跳ねる（鳥、リスなど） */
.jumping {
  position: relative;
  -webkit-animation: jumping 1s ease-in-out infinite;
          animation: jumping 1s ease-in-out infinite;
}

@-webkit-keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

@keyframes jumping {
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
/*==================================================================================================================================

  ヘッダー

==================================================================================================================================*/
header {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
}
header .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: inherit;
  display: block;
  max-width: calc(100% - 120px);
  width: 100%;
  margin: auto;
}

.header_logo {
  position: absolute;
  top: 60px;
  left: 0;
}
.header_logo.kango_logo img{
	filter: drop-shadow(0px 0px 4px #fff) drop-shadow(0px 0px 12px #fff);
}
.header_info {
  position: absolute;
  top: 45px;
  right: 0;
}

.header_info_add {
  text-align: right;
  color: #464646;
  font-size: 14px;
  margin-bottom: 15px;
}

.header_info_btn {
  display: flex;
  gap: 0 20px;
}
.nav_wrap {
  display: none;
}

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

  メインビジュアル

==================================================================================================================================*/
#mainvisual {
  position: relative;
  z-index: 0;
  height: 650px;
}
#mainvisual::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
#mainvisual .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: inherit;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  background-repeat: no-repeat;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
#mainvisual .inner .mainvisual_catch {
  position: relative;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #6c4e45;
  font-family: "Hannari";
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff;
}

.mainvisual_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 650px;
  text-align: center;
}
.mainvisual_bg picture img, .mainvisual_bg picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#mainvisual::after {
  height: 160px;
  background: url(../images/woman/mv_bottom.png) no-repeat center bottom;
}
	/*訪問看護用*/
#mainvisual .inner .mainvisual_catch.kango_recruit{
	top: 50%;
	    font-size: 35px;
    line-height: 1.5;
}
#mainvisual .inner .mainvisual_catch.kango_recruit span{
	color: #6bb77d;
    background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.7) 60%);
    padding: 0 0.2em;
    font-size: 40px;
}
/*==================================================================================================================================

  フッター

==================================================================================================================================*/
footer {
  padding: 100px 0 70px;
}
footer h2 {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  text-align: center;
  margin: 0 auto 55px;
}
footer h2::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -37px;
  z-index: -1;
  width: 73px;
  height: 68px;
}

.flex_footer_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 73px;
  margin-bottom: 100px;
}

.flex_footer_right {
  max-width: 360px;
  width: 100%;
}

.footer_schedule {
  margin-bottom: 45px;
}

.footer_contact h3 {
  position: relative;
  color: #4db49b;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer_contact h3::after {
  position: relative;
  top: -4px;
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  margin-left: 9px;
  background: url(../images/line_footer_contact.svg) no-repeat center;
}
.footer_contact .btn_list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.flex_footer_left {
  max-width: 441px;
  width: 100%;
}

.footer_map {
  margin-bottom: 10px;
}

.footer_add {
  margin-bottom: 12px;
}

.btn_map a {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #c89e62;
  border-radius: 30px;
  padding: 7px 10px;
  min-width: 160px;
  transition: 0.2s ease;
}
.btn_map a:hover {
  background: #d3b181;
}
.btn_map a img {
  vertical-align: middle;
  margin-right: 8px;
}

.footer_logo {
  text-align: center;
  margin-bottom: 40px;
}

.copy {
  text-align: center;
  color: #29927c;
  font-size: 12px;
  letter-spacing: 0.05em;
}
/*==================================================================================================================================

  共通要素（wrapper,box,section等）

==================================================================================================================================*/
/*--------------------box--------------------*/
.box1 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/*--------------------text--------------------*/
.text {
  position: relative;
  margin: 0 0 80px;
}

.text p {
  margin-bottom: 1em;
}

.text p:last-child {
  margin-bottom: 0;
}

/*--------------------ボタン--------------------*/
.btn01 {
  max-width: 440px;
  margin: auto;
}

.btn01 a {
  display: block;
  padding: 4px 10px 9px;
  color: #fff;
  transition: 0.2s ease-in-out;
  position: relative;
  background: #c89e62;
  border-radius: 10px;
  text-align: center;
  font-family: "Hannari";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.5;
}

.btn01 a:hover {
  background: #d3b181;
  color: #fff;
}

.btn01 a:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 9px;
  height: 12px;
  background: url(../images/icon_arrow_white.svg) center no-repeat;
  transition: 0.2s ease-in-out;
}

/*--------------------ctaボタン--------------------*/
.btn a {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-radius: 30px;
  padding: 6px 10px 7px;
  min-width: 150px;
}
.btn a img {
  position: relative;
  top: -2px;
  vertical-align: middle;
  margin-right: 9px;
}
.btn.tel a {
  font-family: arno-pro-display, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.03;
  background: #6cc1ac;
  min-width: 220px;
  padding: 8px 10px 5px;
}
.btn.reserve a {
  background: #6bb77d;
}
.btn.reserve a:hover {
  background: #89c597;
}
.btn.official a {
  background: #a2d084;
}
.btn.official a:hover {
  background: #b5d99d;
}

/*--------------------タイトル--------------------*/
h1 {
  color: #464646;
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 60px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 12px;
}

h2, h3, h4, h5, h6 {
  font-family: "Hannari";
  font-style: normal;
  font-weight: normal;
}
/*訪問看護用*/
.tit01{
	text-align: center;
    padding: 46px 0 0;
    margin: 0 0 20px;
    line-height: 1.4;
    font-size: 160%;
    background: url(../images/tit2.png) center top no-repeat;
}
.tit03{
	font-size: 23px;
    font-weight: bold;
    line-height: 1.53;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
	margin-left: 10px;
}
/*--------------------section_title--------------------*/
.section_title {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  text-align: center;
  margin: 0 auto 60px;
}
.section_title::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -37px;
  z-index: -1;
  width: 73px;
  height: 68px;
  background: url(../images/recruit/tit_bg.png) no-repeat;
}
.section_title02 .tit_en {
    position: relative;
    text-align: center;
}
.section_title02 .tit_en {
  margin: 0 auto 20px;
}
.section_title02 .tit_en span {
    color: #c89e62;
    font-family: adobe-caslon-pro, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 13px;
}
.section_title02 .tit_en h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: "Hannari";
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    letter-spacing: 0em;
    line-height: 1.27;
    margin: 0 auto;
    padding-bottom: 52px;
    background: url(../images/30seconds/tit_line_pop.svg) no-repeat center bottom;
}
.section_title02 p {
  max-width: 600px;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 0 auto 90px;
}
/*--------------------table--------------------*/
table {
  text-align: initial;
}

table th,
table td {
  vertical-align: top;
}

table th p,
table td p {
  margin: 0 !important;
}

/*診療時間*/
.sche_wrap {
  width: 100%;
}

.tb_sche {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.tb_sche tr {
  position: relative;
}
.tb_sche tr:first-of-type th, .tb_sche tr:first-of-type td, .tb_sche tr:last-of-type th, .tb_sche tr:last-of-type td {
  background: url(../images/line_schedule.svg) repeat-x center bottom 1px;
}
.tb_sche tr:first-of-type th, .tb_sche tr:first-of-type td {
  font-weight: normal;
  height: 40px;
}
.tb_sche tr th {
  text-align: center;
  width: 30%;
  height: 35px;
  vertical-align: middle;
}
.tb_sche tr td {
  text-align: center;
  width: 10%;
  height: 35px;
  vertical-align: middle;
}
.tb_sche tr td span {
  color: #6cc1ac;
}

.schedule_note {
  font-size: 100%;
  line-height: 1.62;
  letter-spacing: 0.05em;
}
/*--------------------リスト--------------------*/
.list08 {
    margin: 0 0 15px;
    margin-bottom: 27px;
    padding: 20px;
    background-color: var(--bg-color);
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
}
.list08 li {
    position: relative;
    margin: 0 10px 10px 40px;
    border-bottom: 1px dotted var(--border-color);
    list-style-type: none;
    display: inline-block;
}
.list08 li:before {
    display: block;
    position: absolute;
    left: -23px;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    color: var(--main-color);
}
.list08.white_bg{
	background:#fff;
}
/*==================================================================================================================================

  CTA 共通

==================================================================================================================================*/
.box_cta {
  position: relative;
  max-width: 723px;
  width: 100%;
  background: url(../images/bg_cta.svg) no-repeat center top/cover;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(160, 160, 160, 0.2));
          filter: drop-shadow(5px 5px 5px rgba(160, 160, 160, 0.2));
  margin: auto;
  padding: 44px 0 52px;
}
.box_cta::after {
  content: "";
  position: absolute;
  top: 97px;
  right: -216px;
  width: 269px;
  height: 58px;
  background: url(../images/img_acce_cta.png) no-repeat center;
}
.box_cta h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #4db49b;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0em;
  margin: 0 auto 34px;
}
.box_cta h2::before, .box_cta h2::after {
  content: "";
  position: absolute;
  top: 19px;
  width: 100px;
  height: 2px;
  background: url(../images/tit_cta_line.svg) no-repeat center;
}
.box_cta h2::before {
  left: -120px;
}
.box_cta h2::after {
  right: -120px;
}
.box_cta .btn_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

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

  footer

==================================================================================================================================*/
footer h2::before {
  background: url(../images/30seconds/tit_bg.png) no-repeat;
}

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

  メインビジュアル

==================================================================================================================================*/
#mainvisual::after {
  height: 172px;
}

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

  アンカーリンク

==================================================================================================================================*/
.ank_single {
  position: relative;
  margin: 80px auto 0;
  padding: 0 20px;
  max-width: 1200px;
}

.anklink {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.anklink::after {
  display: block;
  content: "";
  width: 33%;
}

.anklink li {
  width: 33%;
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 0 0 10px;
}

.anklink li a {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid var(--main-color);
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  vertical-align: middle;
  transition: 0.1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.anklink li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.anklink li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}

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

  イントロダクション

==================================================================================================================================*/
.sec_intro {
  position: relative;
  padding: 100px 0;
  /* background: url(../images/30seconds/bg_egr_tree_wave.png) no-repeat center bottom -1px; */
}
.intro_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 50px;
  margin-bottom: 50px;
  background: url(../images/bg_tex_beige.jpg) no-repeat center center / cover;
  border-radius: 10px;
}
.intro_contents.white_bg{
	background:#fff;
}
.white_bg.kango_recruit .intro_item h4{
	background: url(../images/bg_tex_beige.jpg) no-repeat center center / cover;
	width: 70%;
}
.intro_item {
  text-align: center;
}
.intro_item_title {
  margin-bottom: 15px;
}
.intro_item_title span {
  color: #c89e62;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 26px;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 19px;
  text-align: center;
}
.intro_item_title h3 {
  color: #6c4e45;
  font-weight: bold;
}
.intro_item h4 {
  padding: 5px;
  background-color: #fff;
  border-radius: 999px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.intro_vision h3 {
  color: #4db49b;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 19px;
  text-align: center;
}
.intro_vision_text {
  width: 100%;
  max-width: 800px;
  padding: 30px;
  margin-inline: auto;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
/*訪問看護用*/
.intro_contents.kango_recruit{
	grid-template-columns: 1fr;
}
.kango_recruit .intro_item h4{
	width: 60%;
    margin: 0 auto 20px;
}
/*==================================================================================================================================

  理事長メッセージ

==================================================================================================================================*/
.sec_doctor {
  padding: 80px 0 180px;
  position: relative;
  z-index: 0;
  background: url(../images/recruit/bg_doctor_wave.png) no-repeat center bottom -1px, #fff url(../images/recruit/bg_doctor_logo.png) no-repeat right 200px bottom -27px;
}
.sec_doctor::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 693px;
  background-blend-mode: multiply;
}
.sec_doctor .box1 {
  position: relative;
}

.sec_doctor_flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec_doctor_flex_text ul {
  margin-bottom: 20px;
}
.sec_doctor_flex_text ul li {
  list-style: disc;
  list-style-position: inside;
}
.sec_doctor_flex_img {
  width: 24%;
  margin-bottom: 20px;
}
.sec_doctor_img {
  margin-bottom: 10px;
}
.sec_doctor_img img {
  border-radius: 10px;
}
.sec_doctor_name {
  text-align: center;
  font-weight: bold;
}
.sec_doctor_name .carr {
  font-size: 100%;
}
.sec_doctor_name .name {
  font-size: 150%;
}
.sec_doctor_flex_text {
  width: 70%;
}
.sec_doctor_flex_text .text {
  margin-bottom: 12px;
}
.sec_doctor_flex_text .text h3 {
  color: #4db49b;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 19px;
}
 /*訪問看護用*/
	.kango_recruit.sec_doctor_flex{
		justify-content: center;
        text-align: center;
	}
	.kango_recruit .sec_doctor_flex_text{
		width: 100%;
	}
.sec_doctor.kango_greeting{
	background: url(../images/recruit/bg_doctor_wave.png) no-repeat center bottom -1px, #fff url(../images/recruit/bg_doctor_nozomi_logo.png) no-repeat right 200px bottom -27px;
}

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

  求めている人材

==================================================================================================================================*/
.sec_human {
  padding: 120px 0 160px;
  background: url(../images/recruit/bg_human_wave.png) no-repeat center bottom, url(../images/bg_tex_blue.jpg);
}

.sec_human .human_catch {
  text-align: center;
  color: #4db49b;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 26px;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.flex_wrap_human {
  display: flex;
  justify-content: center;
}
.flex_wrap_human:not(:last-of-type) {
  margin-bottom: 100px;
}
.flex_wrap_human .img_human {
  position: relative;
  z-index: 1;
  max-width: 370px;
  margin-top: 91px;
  margin-right: -70px;
}
.flex_wrap_human .img_human img {
  border-radius: 20px;
  box-shadow: 30px 30px 0 #C8DFF7;
}
.flex_wrap_human .text_human {
  position: relative;
  z-index: 0;
  max-width: 802px;
  width: 100%;
  padding: 58px 50px 67px 150px;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(160, 160, 160, 0.2));
          filter: drop-shadow(5px 5px 5px rgba(160, 160, 160, 0.2));
}
.flex_wrap_human .text_human h3 {
  position: relative;
  color: #78B4F0;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: url(../images/recruit/line_human.svg) no-repeat left bottom 1px;
  padding: 0 0 15px 56px;
  margin: 0 auto 20px;
}
.flex_wrap_human .text_human h3 .num {
  position: absolute;
  top: -5px;
  left: 0;
  margin-right: 20px;
  vertical-align: baseline;
}
.flex_wrap_human .text_human h3 .num img {
  width: auto;
  height: 38px;
}
.flex_wrap_human .text_human p {
  line-height: 1.87;
  letter-spacing: 0.05em;
}
.flex_wrap_human:nth-of-type(even) {
  flex-flow: row-reverse wrap;
}
.flex_wrap_human:nth-of-type(even) .img_human {
  margin-left: -100px;
}
.flex_wrap_human:nth-of-type(even) .text_human {
  padding: 58px 150px 67px 50px;
}

.human01 .text_human {
  background: url(../images/bg_feature01.svg) no-repeat center top/100% 100%;
}

.human02 .text_human {
  background: url(../images/bg_feature02.svg) no-repeat center top/100% 100%;
}

.human03 .text_human {
  background: url(../images/bg_feature03.svg) no-repeat center top/100% 100%;
}

.human04 .text_human {
  background: url(../images/bg_feature04.svg) no-repeat center top/100% 100%;
}

.human05 .text_human {
  background: url(../images/bg_feature05.svg) no-repeat center top/100% 100%;
}

.frame_human {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	padding: 24px 8px ;
	color: #fff;
	font-family: "FOT-筑紫A丸ゴシック Std M";
	font-size: 24px;
	line-height: 1.38;
	letter-spacing: 0.05em;
	background: url(../images/bg_tex_green.jpg) no-repeat center center / cover;
	border-radius: 10px;
}
/*訪問看護用*/
.kango_recruit .text_human{
	background: url(../images/bg_feature03.svg) no-repeat center top / 100% 100%;
}
.flex_wrap_human.kango_recruit .text_human h3{
	font-size: 20px;
}

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

  当院の特徴

==================================================================================================================================*/
.sec_feature {
  position: relative;
  z-index: 0;
  padding: 100px 0;
  background: url(../images/recruit/bg_tree_wave.png) no-repeat center bottom -1px;
}
.sec_feature::before, .sec_feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 693px;
}
.sec_feature .box1 {
  position: relative;
}

.sec_feature .img_acce01 {
  position: absolute;
  top: 140px;
  left: 149px;
}
.sec_feature .img_acce02 {
  position: absolute;
  top: 213px;
  right: 87px;
}
.sec_feature .tit_en {
  margin: 0 auto 20px;
}
.sec_feature p {
  max-width: 600px;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 0 auto 45px;
}

.box_feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 130px;
  margin: 0 auto 90px;
}

.item_feature {
  max-width: 440px;
}
.item_feature .img_feature {
  margin-bottom: 73px;
}
.item_feature .img_feature .num {
  position: relative;
  left: -4px;
  margin-bottom: -15px;
}
.item_feature .img_feature figure img {
  border-radius: 20px;
  box-shadow: 30px 30px 0 #dff2ec;
}
/* .item_feature .img_feature .num {
  text-align: center;
  width: 55px;
  display: block;
  font-family: arno-pro-display, serif;
  font-weight: 300;
  font-size: 40px;
  font-style: normal;
  background: url(../../images/tit_feature.svg) no-repeat center center / contain;
} */
.item_feature .img_feature .num {
  font-size: 30px;
  font-family: "Hannari";
  color: #cfb88f;
  margin-bottom: 0;
}
.item_feature .img_feature .num span {
  font-size: 120%;
}

.item_feature h3 {
  text-align: center;
  color: #4db49b;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 23px;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  background: url(../images/recruit/line_about.svg) no-repeat center bottom 1px;
  margin-bottom: 19px;
}
.item_feature p {
  max-width: 100%;
  line-height: 1.87;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
/*訪問看護用*/
.layout01 {
    position: relative;
    margin: 0 0 15px;
}
.layout01:before {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
    content: "";
}
.layout01 dl {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
}
.layout01 dt {
    width: 30%;
    padding: 3%;
    background-color: var(--bg-color);
    letter-spacing: 0.1em;
    color: var(--main-color);
    font-weight: bold;
    font-size: 120%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.5;
}
.layout01 dt em {
    display: block;
    width: 100%;
    line-height: 1;
    font-family: adobe-caslon-pro, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 150%;
    font-weight: normal;
    color: var(--sub-color);
}
.layout01 dd {
    width: 70%;
    box-sizing: border-box;
    padding: 3%;
}
.layout01 dl:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border-color);
    content: "";
}
/*==================================================================================================================================

  募集要項

==================================================================================================================================*/
.sec_recruitment {
  position: relative;
  z-index: 0;
  padding: 100px 0 200px;
  background: url(../images/recruit/bg_lawn_wave.png) no-repeat center bottom -1px, url(../images/bg_tex_egreen.jpg);
}
.sec_recruitment::before, .sec_recruitment::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 693px;
}
.sec_recruitment::after{
	background: url(../images/30seconds/bg_egr_wave.png) no-repeat center bottom -1px;
}
.sec_recruitment::before {
  background: rgba(232, 245, 242, 0.7) url(../images/bg_tex_egreen.jpg);
  background-blend-mode: multiply;
}
.sec_recruitment .box1 {
  position: relative;
}
.sec_recruitment_table {
  margin-bottom: 50px;
  width: 100%;
}
.sec_recruitment_table th {
  text-align: center;
  background-color: var(--bg-color);
  width: 30%;
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}
.sec_recruitment_table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
  background-color: #fff;
}
.sec_recruitment .btn01 a {
  padding: 15px 10px;
}
.sec_recruitment .btn01:first-of-type a {
  background: #6cc1ac;
}
.sec_recruitment .btn01:first-of-type a:hover {
  background: #b2d9cf;
  color: #fff;
}
.sec_recruitment .btn01:not(:first-child) {
  margin-top: 10px;
}
/*==================================================================================================================================

  よくあるご質問

==================================================================================================================================*/
.sec_qa {
  position: relative;
  z-index: 0;
  padding: 100px 0 200px;
  background: url(../images/recruit/bg_beige_wave.png) no-repeat center bottom -1px;
}
.sec_qa .box1 {
  position: relative;
}
.js-toggle dt {
  position: relative;
  cursor: pointer;
  padding: 15px;
  background-color: var(--bg-color);
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s, color 0.2s;
  margin-bottom: 15px;
}
.js-toggle dt::before,
.js-toggle dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 2px;
  height: 14px;
  background-color: #6c4e45;
  transition: transform 0.3s ease;
}
.js-toggle dt::before {
  transform: translateY(-50%) rotate(0deg); 
}
.js-toggle dt::after {
  transform: translateY(-50%) rotate(90deg); 
}
.js-toggle dt.is-open::before {
  transform: translateY(-50%) rotate(90deg); 
}
.js-toggle dd {
  display: none;
  padding: 0 15px 15px 15px;
}

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

  将来の分院長や独立開業を視野に入れている方へ

==================================================================================================================================*/
.sec_message {
  position: relative;
  z-index: 0;
  padding: 100px 0 200px;
  background: rgba(232, 245, 242, 0.7) url(../images/bg_tex_beige.jpg);
  /* background: url(../images/recruit/bg_human_wave.png) no-repeat center bottom -1px, url(../images/bg_tex_egreen.jpg); */
}
.sec_message::after {
  position: absolute;
  content: "";
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/recruit/bg_human_wave.png) no-repeat center bottom;
}
.sec_message .box1 {
  position: relative;
}
.sec_message_accordion {
  margin-bottom: 50px;
}
.sec_message .js-toggle dt {
  background-color: #fff;
}
.sec_message_doctor_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-inline: auto;
  padding: 50px;
  max-width: 900px;
  background-color: #fff;
  border-radius: 10px;
}
.sec_message_doctor_wrap_img {
  width: 35%;
  margin-bottom: 20px;
}
.sec_message_doctor_img {
  margin-bottom: 10px;
}
.sec_message_doctor_img img {
  border-radius: 10px;
}
.sec_message_doctor_name {
  text-align: center;
  font-family: "FOT-筑紫A丸ゴシック Std M";
}
.sec_message_doctor_name .name {
  font-size: 150%;
}
.sec_message_doctor_wrap_text {
  width: 60%;
}
.sec_message_doctor_wrap_text .text {
  margin-bottom: 12px;
}
.sec_message_doctor_wrap_text .text h3 {
  color: #4db49b;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 26px;
  line-height: 1.53;
  letter-spacing: 0.05em;
  padding-bottom: 0;
  margin-bottom: 5px;
}
.sec_message_doctor_wrap_text ul {
  margin-bottom: 20px;
}
.sec_message_doctor_wrap_text ul li {
  list-style: disc;
  list-style-position: inside;
}
.sec_message .btn01 a {
  padding: 15px 10px;
}
/*==================================================================================================================================

  エントリーフォーム

==================================================================================================================================*/
.sec_form {
  position: relative;
  z-index: 0;
  padding: 100px 0 100px;
  /*background: rgba(232, 245, 242, 0.7) url(../images/bg_tex_beige.jpg);*/
}
/*.sec_form::after {
  position: absolute;
  content: "";
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/recruit/bg_human_wave.png) no-repeat center bottom;
}*/
.sec_form .box1 {
  position: relative;
}
.form_box{
	background: url(../images/bg_tex_beige.jpg) ;
	padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}
.form_box dl {
  margin: 0 0 20px;
}

.form_box dt {
  font-weight: 600;
  margin-bottom: 8px;
}

.form_box dd {
  margin: 0;
}

.form_box input[type="text"],
.form_box input[type="email"],
.form_box input[type="tel"],
.form_box textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  box-sizing: border-box;
}

.form_box input[type="text"]:focus,
.form_box input[type="email"]:focus,
.form_box input[type="tel"]:focus,
.form_box textarea:focus {
  outline: none;
  border-color: #8cbf9f; /* 薄めグリーンっぽいアクセント */
  box-shadow: 0 0 4px rgba(140, 191, 159, 0.4);
}

.form_box textarea {
  min-height: 120px;
  resize: vertical;
}

.form_box .submit-btn {
  text-align: center;
  margin-top: 20px;
}

.form_box .submit-btn input[type="submit"] {
  background-color: #6cc1ac; 
  padding: 15px 10px;
	display: block;
    color: #fff;
    transition: 0.2s ease-in-out;
    position: relative;
    border-radius: 10px;
    text-align: center;
    font-family: "Hannari";
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.5;
	    border: none;
    min-width: 300px;
    margin: auto;
    cursor: pointer;
}
.form_box .submit-btn input[type="submit"]:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 9px;
    height: 12px;
    background: url(../images/icon_arrow_white.svg) center no-repeat;
    transition: 0.2s 
ease-in-out;
}
.form_box .submit-btn input[type="submit"]:hover {
  background: #b2d9cf;
}

.form_box .required {
  color: #fff;
    margin-left: 4px;
    background: #c89e62;
    padding: 3px 5px;
	font-size: 80%;
}
.wpcf7-response-output {
  display: none !important;
}
/*==================================================================================================================================

  アバウト

==================================================================================================================================*/
.sec_about {
  padding: 110px 0 190px;
  background: url(../images/woman/bg_about_left.png) no-repeat left top 590px, url(../images/woman/bg_about_right.png) no-repeat right top 1220px, url(../images/woman/bg_about_wave.png) no-repeat center bottom -1px, url(../images/woman/bg_cta_pink.png) no-repeat center bottom;
}
.sec_about .box1 {
  padding: 0 50px;
}

.flex_about_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.flex_about_wrap .flex_item_wrap {
  text-align: center;
}
.flex_about_wrap .tit_about {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 501px;
}
.flex_about_wrap .tit_about span {
  color: #c89e62;
  font-family: adobe-caslon-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.flex_about_wrap .tit_about h2 {
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1.38;
  padding-left: 8px;
  padding-bottom: 45px;
  background: url(../images/woman/tit_underpop.svg) no-repeat center bottom;
}
.flex_about_wrap .text_about {
  margin-top: 55px;
  max-width: 550px;
  width: 100%;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
.flex_about_wrap .text_about strong {
  color: #f07a6b;
}
.flex_about_wrap.about01 .tit_about {
  height: 328px;
  background: url(../images/woman/tit_about01.png) no-repeat center;
  margin-bottom: 10px;
}
.flex_about_wrap.about02 {
  flex-flow: row-reverse wrap;
}
.flex_about_wrap.about02 .tit_about {
  position: relative;
  height: 349px;
  background: url(../images/woman/tit_about02.png) no-repeat center;
  margin-bottom: 20px;
}
.flex_about_wrap.about02 .tit_about::after {
  content: "";
  position: absolute;
  top: 0;
  right: -132px;
  width: 103px;
  height: 84px;
  background: url(../images/woman/tit_about02_sub.png) no-repeat center;
}

.box_treatment {
  padding: 98px 78px 100px;
  border-radius: 40px;
  background: url(../images/bg_tex_beige.jpg);
  box-shadow: 5px 5px 5px rgba(160, 160, 160, 0.2);
  margin-bottom: 100px;
}
.box_treatment h3 {
  text-align: center;
  margin-bottom: 30px;
}
.box_treatment > p {
  max-width: 600px;
  width: 100%;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 0 auto 60px;
}
.box_treatment .flex_treat {
  position: relative;
  display: flex;
  justify-content: space-between;
  background: url(../images/woman/bg_treat_white.svg) no-repeat right top;
  padding: 42px 69px 70px 0;
  margin-bottom: 60px;
}
.box_treatment .flex_treat .img_treat img {
  border-radius: 20px;
  box-shadow: 30px 30px 0 #fdf0ee;
}
.box_treatment .flex_treat .text_treat {
  max-width: 400px;
  width: 100%;
  margin-top: 10px;
}
.box_treatment .flex_treat .text_treat h4 {
  color: #f07a6b;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.box_treatment .flex_treat .text_treat p {
  line-height: 1.87;
  letter-spacing: 0.05em;
}
.box_treatment .flex_treat .img_acce {
  position: absolute;
  right: 30px;
  bottom: -77px;
}
.nozomi_home_price{
	display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 50px 0;
}
.nozomi_home_pricebox{
	background: url(../images/bg_feature01.svg) no-repeat center top / 100% 100%;
	    padding: 35px 50px 50px;
	width:50%;
}
/*==================================================================================================================================

  スマホ設定

==================================================================================================================================*/
/*--------------------基本設定（スマホ）--------------------*/
@media screen and (max-width: 640px) {
  html {
    margin-top: 0 !important;
  }
  body {
    font-size: 16px;
  }
  body,
#mainvisual,
header,
footer,
nav,
.slider,
.mainvisual_wrapper {
    min-width: 100%;
  }
  body.page #mainvisual .inner,
body.archive #mainvisual .inner,
body.single #mainvisual .inner,
body.home #mainvisual .inner,
body.error404 #mainvisual .inner {
    max-width: 100%;
  }
  html #wpadminbar {
    display: none;
  }
  body,
#mainvisualvisual,
header,
footer {
    width: 100%;
    min-width: 100%;
  }
  /*==================================================================================================================================

    ヘッダー（スマホ）

  ==================================================================================================================================*/
  header {
    display: none;
  }
  .sp_header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 99999;
  }
  .sp_header .inner {
    position: relative;
  }
  .sp_header .sp_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 65px);
    height: 60px;
  }
  .sp_header .sp_logo a {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 5px;
  }
  .sp_header .sp_logo img {
    width: auto;
    max-height: 53px;
    height: auto;
  }
  /*--------------------ナビゲーション（スマホ）--------------------*/
  .sp_under_nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    height: 52px;
  }
  .sp_under_nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
  }
  .sp_under_nav li {
    width: -moz-available;
    width: -webkit-fill-available;
    box-sizing: border-box;
    background-color: var(--main-color);
    text-align: center;
    line-height: 1.3;
  }
  .sp_under_nav li:nth-child(2) {
    background-color: var(--main-color);
    opacity: 0.8;
  }
  .sp_under_nav li a {
    display: block;
    color: #fff;
    font-weight: bold;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp_under_nav li a i {
    margin-right: 5px;
  }
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
  }
  .nav_wrap ul li a {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .nav_wrap ul li a::before {
    background: none;
  }
  .nav_wrap .header_logo {
    position: static;
    max-width: 100%;
    width: calc(100% - 56px);
    margin: 0;
  }
  .nav_wrap .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }
  .nav_wrap .header_logo img {
    width: 100%;
    height: 45px;
  }
  /* ハンバーガーボタン */
  .btn_tgl_menu {
    position: relative;
    right: 0;
    color: #6c4e45;
    width: 55px;
    background: #e9dfd0;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #6c4e45;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
  }
  /* MENUボタン押下時 */
  .btn_tgl_menu.active {
    right: 16.25rem;
  }
  .btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  /* ドロップダウンメニュー */
  .tgl_menu_list {
    position: fixed;
    top: 0;
    right: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: #e9dfd0;
    padding: 15px;
  }
  .tgl_menu_list ul {
    flex-flow: column wrap;
  }
  .tgl_menu_list ul li {
    display: block;
    border-bottom: 1px solid #6c4e45;
    width: 100%;
  }
  .tgl_menu_list ul li:first-child {
    border-top: 1px solid #6c4e45;
  }
  .tgl_menu_list ul li::after {
    display: none;
  }
  .tgl_menu_list ul li a,
.tgl_menu_list ul li p {
    position: relative;
    display: block;
    text-align: left;
    padding: 15px 10px;
    width: auto;
    color: #6c4e45;
    font-weight: normal;
    line-height: 1.5;
  }
  .tgl_menu_list ul li a span,
.tgl_menu_list ul li p span {
    display: none;
  }
  .tgl_menu_list ul li a:hover {
    color: #6c4e45;
  }
  body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    right: 0;
  }
  .tgl_menu_list .menu_list ul li a::before {
    display: inline;
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  /* ------- スライドメニュー シングル------- */
  .tgl_menu_list ul li.nav_single_menu div {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-bottom: 10px;
    box-shadow: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a::before {
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
    display: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a:hover {
    color: #6c4e45;
    background: none;
  }
  /* ------- スライドメニュー メガ------- */
  .tgl_menu_list ul li.nav_mega_menu {
    position: relative;
  }
  .tgl_menu_list ul li.nav_mega_menu > p::before {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    background: none;
    box-shadow: none;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .tgl_menu_list ul li.nav_mega_menu.active .mega_menu_wrap {
    opacity: 1;
    visibility: visible;
  }
  .tgl_menu_list .mega_menu_inner {
    display: block;
    padding: 0 0 10px 0;
    width: 100%;
  }
  .tgl_menu_list .mega_menu_top a {
    padding: 12px 12px 12px 0;
  }
  .tgl_menu_list .mega_menu_top a::before {
    display: inline;
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  .tgl_menu_list .menu_list {
    margin-left: 0;
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_inner .menu_list > p {
    margin-top: 10px;
    padding: 0 10px;
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_inner .menu_list > p::before {
    content: "\f0fe";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_inner .menu_list li {
    border: none !important;
  }
  .tgl_menu_list ul li.nav_mega_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  /* メガメニュー展開時 */
  .tgl_menu_list ul li.nav_mega_menu.active p::before {
    content: "\f068";
  }
  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  /* ヘッダー固定ボタンエリア */
  .btn_area {
    width: 100%;
  }
  .btn_area ul {
    display: flex;
    background: #fff;
    flex-wrap: nowrap;
    padding: 5px;
    gap: 0 5px;
  }
  .btn_area li.btn {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  .btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 13px 2%;
    font-size: 100%;
    min-width: inherit;
  }
  .btn_area li.btn a::before {
    display: none;
  }
  .btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
  }
  .btn_area li.btn a:hover {
    color: #fff;
  }
  .btn_area li.btn_tel {
    background: #6cc1ac;
  }
  .btn_area li.btn_yoyaku {
    background: #c26e9c;
  }
  .btn_area li.btn_monshin {
    background: #00A3BB;
  }
  .btn_area li.btn_access {
    margin-right: 0;
    background: #0357a5;
  }
  /* 準備中用のクラス */
  .btn_area li.btn.coming {
    background: #aaa !important;
  }
  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 4px 2% 22px;
  }
  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }
  /*==================================================================================================================================

    共通要素（スマホ）

  ==================================================================================================================================*/
  h1 {
    position: unset;
    padding: 10px 6%;
    background: #fff;
    text-shadow: none;
    color: #6c4e45;
  }
	.section_title02 .tit_en h2 {
        font-size: calc(21px + 3 * (100vw - 320px) / 320);
        padding-bottom: 35px;
    }
  /*--------------------診療時間表（スマホ）--------------------*/
  .tb02 th {
    min-width: unset;
    line-height: 1.5;
  }
  .tb02 th,
.tb02 td {
    padding: 3px 0 3px 0;
    vertical-align: middle;
  }
  .tb02 tr:first-child th,
.tb02 tr:first-child td {
    padding: 0 0 2px 0;
  }

  /*--------------------下層のメインビジュアル（スマホ）--------------------*/
  #mainvisual {
    position: relative;
    height: 250px;
    margin-top: 115px;
  }
  #mainvisual::after {
    width: 100%;
    height: 57px;
    background-size: auto 100%;
  }
  #mainvisual .inner {
    width: 100%;
    height: inherit;
  }
  #mainvisual .inner .mainvisual_catch {
    font-size: 20px;
  }
  #mainvisual .inner .mainvisual_catch::after {
    right: 0;
    width: 40px;
    height: 25px;
    background-size: cover;
  }
  .mainvisual_bg {
    height: 250px;
  }
  #mainvisual .inner + div {
    width: 100% !important;
    top: 0 !important;
  }
  .main_headline {
    padding: 0 0 10px;
  }
  .main_headline p.midashi {
    font-size: 150%;
    margin: 0 30px;
  }
  .box1 {
    padding: 0 6%;
    width: 100%;
    min-width: auto;
  }
  .section_title {
    font-size: calc(21px + 3 * (100vw - 320px) / 320);
    letter-spacing: 0.025em;
    margin: 0 auto 32px;
  }
  .section_title::before {
    left: -15px;
    width: 50px;
    height: 47px;
    background-size: cover;
  }
/*訪問看護用 */
#mainvisual .inner .mainvisual_catch.kango_recruit,#mainvisual .inner .mainvisual_catch.kango_recruit span{
	font-size: 18px;
	top: 41%;
}
/*==================================================================================================================================

    フッター(スマホ)

  ==================================================================================================================================*/
  footer {
    padding: 60px 0 40px;
  }
  footer h2 {
    font-size: 24px;
  }
  footer h2::before {
    left: -25px;
    width: 50px;
    height: 47px;
    background-size: cover;
  }
  .footer_contact h3 {
    text-align: left;
  }
  .tb_sche {
    font-size: 14px;
  }
  .schedule_note {
    font-size: 14px;
  }
  .btn_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .btn_map {
    text-align: center;
  }
  /*==================================================================================================================================

    CTA 共通

  ==================================================================================================================================*/
  .box_cta {
    padding: 40px 5% 32px;
    background-size: 100% 100%;
  }
  .box_cta::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -5%;
    width: 180px;
    height: 39px;
    background-size: cover;
  }
  .box_cta h2 {
    font-size: 18px;
    margin: 0 auto 20px;
  }
  .box_cta h2::before, .box_cta h2::after {
    width: 30px;
  }
  .box_cta h2::before {
    left: -40px;
  }
  .box_cta h2::after {
    right: -40px;
  }
  /*==================================================================================================================================

  アンカーリンク

==================================================================================================================================*/
.anklink::after {
  width: 100%;
}

.anklink li {
  width: 100%;
}
  /*==================================================================================================================================

    イントロダクション(スマホ)

  ==================================================================================================================================*/
  .sec_intro {
    padding: 60px 0;
  }
  .intro_contents {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
/*訪問看護用*/
.kango_recruit .intro_item h4{
	width: 100%;
  }
	.white_bg.kango_recruit .intro_item h4 {
    width: 100%;
    border-radius: 30px;
}
/*==================================================================================================================================

  理事長メッセージ

  ==================================================================================================================================*/
  .sec_doctor {
    padding: 60px 0 100px;
  }
  .sec_doctor_flex {
    flex-direction: column;
  }
  .sec_doctor_flex_img {
    width: 100%;
    margin-bottom: 20px;
  }
  .sec_doctor_name .carr {
    font-size: 100%;
  }
  .sec_doctor_name .name {
    font-size: 150%;
  }
  .sec_doctor_flex_text {
    width: 100%;
  }
  .sec_doctor_flex_text .text h3 {
    font-size: 22px;
  }
	.sec_doctor_img {
		text-align:center;
	}
	.sec_doctor_img img{
		max-width:240px;
	}
	/*訪問看護用*/
	.kango_recruit.sec_doctor_flex{
		text-align: left;
	}
/*==================================================================================================================================

  求めている人材

==================================================================================================================================*/
.sec_human {
  padding: 60px 0 100px;
  background: url(../images/30seconds/bg_feature_wave.png) no-repeat center bottom, url(../images/bg_tex_blue.jpg);
}
.sec_human .box1 {
  padding: 0 6%;
}

.sec_human .human_catch {
  font-size: 22px;
}

.flex_wrap_human {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex_wrap_human:not(:last-of-type) {
  margin-bottom: 50px;
}
.flex_wrap_human .img_human {
  position: unset;
  z-index: 0;
  max-width: calc(100% - 20px);
  margin: 0 auto 30px;
}
.flex_wrap_human .img_human img {
  box-shadow: 10px 10px 0 #C8DFF7;
}
.flex_wrap_human .text_human {
  position: static;
  background: none;
  padding: 0;
}
.flex_wrap_human:nth-of-type(even) .text_human {
  padding: 0;
}
.flex_wrap_human .text_human .pop {
  position: absolute;
  top: -47px;
  right: -57px;
  width: 182px;
  height: 131px;
  text-align: center;
  padding: 36px 23px 0 0;
  color: #4db49b;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  line-height: 1.25;
  letter-spacing: 0.05em;
  background: url(../images/bg_pop_feature.png) no-repeat;
}
.flex_wrap_human .text_human h3 {
  color: #78B4F0;
  font-family: "FOT-筑紫A丸ゴシック Std M";
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: url(../images/30seconds/line_feature.svg) no-repeat left bottom 1px;
  padding: 0 0 15px;
  margin: 0 auto 20px;
}
.flex_wrap_human .text_human h3 .num {
  position: relative;
  top: -5px;
  margin-right: 20px;
  vertical-align: baseline;
}
.flex_wrap_human .text_human h3 .num img {
  width: auto;
  height: 38px;
}
.flex_wrap_human:nth-of-type(even) .img_human {
  margin-left: auto;
}
.frame_human {
  font-size: 20px;
}
	 /*==================================================================================================================================

    アバウト(スマホ)

  ==================================================================================================================================*/
  .sec_about {
    padding: 60px 0 100px;
    background-size: auto, auto, 640px auto, 640px auto;
    background-position: left top 590px, right top 1800px, center bottom -1px, center bottom;
  }
  .sec_about .box1 {
    padding: 0 6%;
  }
	.flex_about_wrap{
		margin-bottom:0;
	}
	.flex_about_wrap .flex_item_wrap {
	  width: 100%;
  }
  .flex_about_wrap .tit_about {
    width: calc(320px - 12%);
    background-size: 100% auto !important;
    border-radius: 40px;
    margin: 0 auto 20px;
  }
  .flex_about_wrap .tit_about span {
    margin-bottom: 5px;
  }
  .flex_about_wrap .tit_about h2 {
    font-size: 20px;
    padding-bottom: 30px;
    letter-spacing: 0;
  }
  .flex_about_wrap .text_about {
    margin-top: 0;
  }
  .flex_about_wrap.about01 .tit_about {
    height: 145px;
    background: url(../images/woman/tit_about01.png) no-repeat center, url(../images/bg_tex_pink.jpg);
  }
  .flex_about_wrap.about02 {
    margin-bottom: 60px;
  }
  .flex_about_wrap.about02 .tit_about {
    height: 145px;
    background: url(../images/woman/tit_about02.png) no-repeat center, url(../images/bg_tex_pink.jpg);
  }
  .flex_about_wrap.about02 .tit_about::after {
    display: none;
  }
/*==================================================================================================================================

  当院の特徴

==================================================================================================================================*/
.sec_feature {
  padding: 100px 0 60px;
}
.layout01 dl {
        display: block;
    }
.layout01 dt {
        width: 100%;
    }
.layout01 dd {
        width: 100%;
    }
/*==================================================================================================================================

  募集要項

==================================================================================================================================*/
.sec_recruitment {
  padding: 60px 0 100px;
}
/*==================================================================================================================================

  よくあるご質問

==================================================================================================================================*/
.sec_qa {
  padding: 60px 0 100px;
}
.sec_qa .box1 {
  padding: 0 20px;
}
.js-toggle dt {
  padding: 15px 35px;
}
.js-toggle dt::before, .js-toggle dt::after {
  right: 20px;
}
/*==================================================================================================================================

  将来の分院長や独立開業を視野に入れている方へ

==================================================================================================================================*/
.sec_message {
  position: relative;
  z-index: 0;
  padding: 60px 0 150px;
}
.sec_message::before, .sec_message::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 693px;
}
.sec_message .box1 {
  position: relative;
  padding: 0 20px;
}
.sec_message_accordion {
  margin-bottom: 50px;
}
.sec_message_doctor_wrap {
  display: flex;
  flex-direction: column;
}
.sec_message_doctor_wrap_img {
  width: 100%;
}
.sec_message_doctor_wrap_text {
  width: 100%;
}
.sec_message_doctor_wrap_text .text {
  margin-bottom: 12px;
}
.sec_message_doctor_wrap_text .text h3 {
  font-size: 22px;
}
.sec_message_doctor_name .name {
  margin-bottom: 30px;
}
/*==================================================================================================================================

  エントリーフォーム

==================================================================================================================================*/
	.form_box .submit-btn input[type="submit"]{
		min-width: unset;
		width: 100%;
	}
	.nozomi_home_price{
	display: block;
    margin: 50px 0;
}
.nozomi_home_pricebox{
	    padding: 35px 50px 50px;
	width:100%;
	margin-top:20px;
}

}