/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}html{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}article>*+*{margin-top:1em}button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* A Modern CSS Reset */

body {
  color: #666;
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS PGothic",sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

img{
  backface-visibility: hidden;
}

a {
  text-decoration: none;
}

#wrapper {
  overflow: hidden;
}

/*============
HEADER
=============*/
#header {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 1s;
  animation: fadeIn 1s;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  transition: 1s;
  z-index: 10;
}

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

.header-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.site-logo {
  padding: 10px;
}

.site-logo img {
  width: 150px;
  height: 30px;
  margin: 0 auto;
}

.header-container div {
  position: absolute;
  top: 13px;
  right: 17px;
  background: #39B54A;
  color: #fff;
  padding: 0 1.3em 0 1.5em;
  border-radius: 5px;
}

.header-container div a {
  white-space: nowrap;
}

.header-container h2,
.header-container .header-btn-label {
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
}

.header-container a h2::before,
.header-container a .header-btn-label::before {
  content: '';
  width: 17px;
  height: 13px;
  background: url(../images/icon-mail.png);
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

/*============
NAV
=============*/
nav {
  width: 100%;
  max-width: 900px;
  position: relative;
  top: 0;
  color: #4d4d4d;
  margin: 0 auto;
  font-size: 13px;
  z-index: 1000;
  padding: 0 2%;
}

nav .nav {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.nav > li {
  width: auto;
  margin: 0 1.5%;
  position: relative;
  list-style: none;
  font-size: 13px;
  letter-spacing: 1px;
}

.nav > li a,
.nav > li p {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #4d4d4d;
  cursor: pointer;
  text-decoration: none;
  padding-left: 1px;
}
.nav > li:hover > a,
.nav > li:hover > p {/*layer-1*/
  color: #1fd237;
  transition: .5s;
}
.fixed {
  position: fixed;
  top: 0;
}

/* ホバーで子メニュー表示 */
nav .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
}
nav li.menu-item-has-children li:nth-child(1):hover {
  background: #d4f3d3;
  border-radius: 10px 10px 0 0;
}
nav li.menu-item-has-children li:nth-child(2):hover {
  background: #d4f3d3;
  border-radius: 0 0 0 0;
}
nav li.menu-item-has-children li:nth-child(3):hover {
  background: #d4f3d3;
  border-radius: 0 0 10px 10px;
}

/* 子メニュー - .sub-menu */
nav .sub-menu {
  position: absolute;
  width: 230px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  border: 1px solid #c7c7c7aa;
  top: 50px;
  left: 1%;
  transform: translate(-65%, 2%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
nav .sub-menu li {
  padding: 0 15px;
  line-height: 50px;
  display: block;
}
nav .sub-menu a {
  line-height: 50px;
  display: block;
  border-bottom: 1px dotted #c7c7c7aa;
}
nav .sub-menu li:last-child a {
  border-bottom: 0;
}

/*============
HERO
=============*/
#section-hero {
  padding-top: 100px;
  position: relative;
  margin-bottom: 80px;
  animation: fadeIn 1s;
}

.hero {
  position: relative;
}

.hero img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
  min-width: 750px;
  margin: 0 auto;
}

.voice-1 img {
  object-position: top;
}

.hero.recruitment img {
  height: 50vh;
}

.commitment-1,
.commitment-2,
.commitment-3,
.about-1 {
  margin-bottom: 100px;
}

img.hero-text {
  width: auto;
  height: 55vh;
  position: absolute;
  top: 10%;
  right: 5%;
  object-fit: unset;
  min-width: unset;
}

.hero.rehabilitation::after {
  content: url(../images/hero-3-text.svg);
  width: 45%;
  max-width: 400px;
  height: auto;
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.hero.care::after {
  content: url(../images/hero-4-text.svg);
  width: 45%;
  max-width: 400px;
  height: auto;
  position: absolute;
  top: 10%;
  left: 5%;
}

.privacy-policy::after {
  content: 'プライバシーポリシー';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

.site-map::after {
  content: 'Site Map';
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.6em;
  text-align: center;
  padding-left: 0.6em;
  width: 100%;
  height: auto;
  position: absolute;
  top: 52%;
  transform: translateY(-50%) translateX(-50%);
  animation: fadeIn 5s;
}

/*============
Section ONE
=============*/
#section-one {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0 10px;
}

.one-container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 0 10px;
}

.one-content {
  width: 47%;
  display: flex;
  flex-flow: column;
}

.one-content img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.one-content h2 {
  color: #39B54A;
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.one-content h3 {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.one-content div {
  color: #FFF33F;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  transition: transform .5s, background .5s;
}

.one-content div:hover {
  transform: translateY(-3px);
  background: #60dc71;
  transition: transform .5s, background .5s;
}

.one-content .btn-label {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-right: -0.2em;
}

.one-content .btn-label::before {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-1.png);
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

/*============
Section TWO
=============*/
#section-two {
  background: #F2F2F2;
}

.two-container {
  color: #3e9e4b;
  text-align: center;
}

.two-content {
  display: flex;
  flex-flow: row;
}

.two-container h2 {
  font-size: 25px;
  margin-right: -0.2em;
  letter-spacing: 0.2em;
  line-height: 3.5em;
}

.two-content {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 50px;
  flex-direction: row;
  justify-content: space-between;
}

.two-content div {
  background-color: #fff;
  width: 30%;
  padding: 20px 3%;
}

.two-content div img {
  width: 30%;
  height: auto;
  margin: 0 auto;
}

.two-content h3 {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.two-content p {
  font-size: 15px;
  font-weight: normal;
  text-align: left;
  color: #666;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #39B54A;
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

.two-voice {
  background: #39B54A;
  position: relative;
}

.two-voice h2 {
  color: #FFF33F;
  font-size: 25px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 3.5em;
}

.two-voice-container {
  display: flex;
  justify-content: space-between;
  width: 96%;
  max-width: 1024px;
  margin: 0 auto;
}

.two-voice-content {
  width: 49%;
  background: #fff;
  border-radius: 15px;
  padding: 0 20px 20px;
  margin-bottom: 40px;
  position: relative;
}

.two-voice-content h3 {
  font-size: 20px;
  text-align: center;
  line-height: 3.5em;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  color: #41a948;
}

.two-voice-content p {
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  margin-left: 3.5em;
  margin-bottom: 10px;
  letter-spacing: 0.09em;
  text-indent: -4.2em;
}

.two-voice-content p::before {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../images/icon-2.png);
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 10px;
  margin: 0 10px;
}

.two-voice-content img {
  position: absolute;
  bottom: -40px;
  right: 15px;
  width: 35%;
  max-width: 170px;
  height: auto;
}

/*============
Section THREE
=============*/
#section-three {
  padding: 80px 0 0;
}

#section-three .three-icon img {
  width: 130px;
  height: 130px;
  margin: 0 auto 50px;
}

.three-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 950px;
  margin: 0 auto 50px;
  padding: 0 10px;
  gap: 50px 2.6%;
}

.three-content {
  display: flex;
  flex-direction: column;
}

.three-content img {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.three-content p:nth-child(2) {
  font-size: 11px;
  line-height: 2.5em;
}

.three-content p:nth-child(3) {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.three-content p:nth-child(3) a {
  color: #008A28;
}

.three-content p:nth-child(4) {
  font-size: 13px;
  text-align: right;
  margin-top: auto;
}

.three-content p:nth-child(4) a {
  color: #666666;
  padding-bottom: 1px;
  border-bottom: 1px solid #666;
}

.three-button {
  color: #FFF33F;
  width: 350px;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  margin: 0 auto;
  transition: transform .5s, background .5s;
}

.three-button a {
  color: #FFF33F;
}

.three-button:hover {
  transform: translateY(-3px);
  background: #60dc71;
  transition: transform .5s, background .5s;
}

.three-button .btn-label {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-right: -0.2em;
}

.three-button .btn-label::before {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-1.png);
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

/*============
NEWS DETAIL
=============*/
#section-news-detail {
  padding: 60px 0 100px;
}

.news-detail-container {
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
}

.news-detail-container img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 5px;
}

.news-detail-date {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.news-detail-container h1 {
  font-size: 22px;
  color: #008A28;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.news-detail-body p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1.5em;
}

.news-detail-back {
  margin-top: 50px;
  text-align: center;
}

.news-detail-back a {
  color: #39B54A;
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and ( max-width: 767px ) {
  .news-detail-container h1 {
    font-size: 18px;
  }
  .news-detail-body p {
    font-size: 13px;
  }
}

/*============
NEWS PAGINATION
=============*/
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 auto 80px;
}

.news-pagination button {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #39B54A;
  border-radius: 5px;
  background: #fff;
  color: #39B54A;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.news-pagination button:hover:not(:disabled):not(.is-current) {
  background: #d4f3d3;
}

.news-pagination button.is-current {
  background: #39B54A;
  color: #fff;
  font-weight: bold;
  cursor: default;
}

.news-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/*============
Section FOUR
=============*/
#section-four {
  padding: 80px 0;
}

#section-four div {
  background: center center no-repeat url(../images/img-3.jpg);
  background-size: cover;
}

#section-four div img {
  width: 230px;
  height: auto;
  padding: 30px 0 15px;
  margin: 0 auto;
  display: block;
}

/*============
Section FIVE
=============*/
#section-five {
  padding: 0 10px;
}

#section-five h2 {
  color: #008A28;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 80px;
  margin-right: -0.2em;
  letter-spacing: 0.2em;
}

#section-five h2::before,
#section-five h2::after {
  content: '─';
  font-size: 25px;
  line-height: 25px;
  margin: 0 0.6em 0 0.4em;
}

.five-container {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.five-content {
  width: 47%;
}

.five-content img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.five-content h3 {
  color: #008A28;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2.5em;
}

.five-content p.five-address {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.five-content a {
  color: #FFF33F;
}

.five-button {
  color: #FFF33F;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  margin-bottom: 15px;
  transition: transform .5s, background .5s;
}

.five-button:hover {
  transform: translateY(-3px);
  background: #60dc71;
  transition: transform .5s, background .5s;
}

.btn-label-tel {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-right: -0.2em;
}

.btn-label-tel::before {
  content: '';
  width: 17px;
  height: 17px;
  background: url(../images/icon-1.png);
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.recruitment-tel-wrap {
  width: 300px;
  margin: 40px auto 0;
}

.five-button-sub {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.five-button-sub a {
  width: 47%;
  color: #FFF33F;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  transition: transform .5s, background .5s;
}

.five-button-sub a:hover {
  transform: translateY(-3px);
  background: #60dc71;
  transition: transform .5s, background .5s;
}

.five-content .btn-label-map {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-right: -0.2em;
}

.five-content .btn-label-detail {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-right: -0.2em;
}
.five-content .btn-label-tel::before,
.five-content .btn-label-map::before,
.five-content .btn-label-detail::before {
    content: '';
    width: 17px;
    height: 17px;
    background: url(../images/icon-1.png);
    display: inline-block;
    background-size: cover;
    position: relative;
    top: 3px;
    margin-right: 10px;
}

/*============
Section SIX
=============*/
#section-six h2 {
  font-size: 2em;
  font-weight: bold;
}

#section-six div {
  background: #39B54A;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 3.5em;
  color: #fff;
  width: 90%;
  margin: 0 auto 80px;
}

/*============
FACILITY PAGE
=============*/
#section-facility {
    margin-top: 150px;
}

#section-facility h2 {
  color: #008A28;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 50px;
  margin-right: -0.2em;
  letter-spacing: 0.2em;
}

#section-facility h2::before,
#section-facility h2::after {
  content: '─';
  font-size: 25px;
  line-height: 25px;
  margin: 0 0.6em 0 0.4em;
}

.facility-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.facility-img-1 {
  width: 63.5%;
  height: 100%;
  display: flex;
  flex-flow: column;
  padding-right: 10px;
}

.facility-img-2 {
  width: 36%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.facility-img-1 img, .facility-img-2 img {
  width: 100%;
  height: auto;
}

.facility-img-2 img:first-child {
  padding-bottom: 5px;
}

.facility-img-2 img:last-child {
  padding-top: 5px;
}

#section-innovation {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
}

.innovation-content {
  margin: 0 auto 50px;
  padding-bottom: 10px;
}

.innovation-content::after {
  content: "";
  width: 250px;
  margin: 0 auto;
  border-bottom: 3px solid #666;
  display: inline-block;
  padding-top: 15px;
}

.innovation-content h1 {
  font-size: 17px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin-bottom: 5px;
  line-height: 1.5em;
}

.innovation-content h3 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

#section-innovation p {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 2.2em;
  margin-bottom: 30px;
}

#section-flow {
  padding-bottom: 80px;
}

#section-flow > div:nth-child(3) {
  margin-top: 70px;
}

.flow-title {
  width: 250px;
  margin: 0 auto 50px;
  border-bottom: 3px solid #666;
  padding-bottom: 10px;
}

.flow-title h2 {
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  margin-bottom: 5px;
  line-height: 1.5em;
}

.flow-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}

.flow-content {
  display: flex;
  margin-bottom: 10px;
}

.flow-content img:first-child {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.flow-content img:last-child {
  width: 150px;
  height: 120px;
}

.flow-sub {
  flex-grow: 1;
  margin-right: 20px;
}

.flow-sub h3 {
  border-bottom: 2px dotted #666;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 30px;
}

.flow-sub h3 span {
  color: #008A28;
  font-size: 23px;
  margin-left: 15px;
  letter-spacing: 0.2em;
}

.flow-sub p {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.2em;
}

.flow-text {
  padding-left: 50px;
}

.flow-text p {
  font-size: 13px;
  letter-spacing: 0.1em;
}

#section-equipment {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 10px;
}

.equipment-title {
  width: 250px;
  margin: 0 auto 50px;
  border-bottom: 3px solid #666;
  padding-bottom: 10px;
}

.equipment-title h2 {
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  margin-bottom: 5px;
  line-height: 1.5em;
}

.equipment-container {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.equipment-content {
  width: 48%;
  padding: 30px;
  margin-bottom: 30px;
  background: #F4F1ED;
}

.equipment-content img {
  width: 100%;
  height: auto;
}

.equipment-content h3 {
  font-size: 25px;
  line-height: 3.5em;
  letter-spacing: 0.2em;
  margin-right: -0.2em;
  text-align: center;
}

.equipment-content p {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.equipment-text {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.map-wrap {
  margin-bottom: 80px;
}

#section-facility-area {
  padding: 0 10px;
  margin-bottom: 80px;;
}

/*============
Rehabilitation Page
=============*/
#section-rehabilitation {
  padding-top: 150px;
}

#section-rehabilitation h1 {
  color: #008A28;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 80px;
  margin-right: -0.2em;
  letter-spacing: 0.2em;
}

#section-rehabilitation h1::before,
#section-rehabilitation h1::after {
  content: '─';
  font-size: 25px;
  line-height: 25px;
  margin: 0 0.6em 0 0.4em;
}

.rehabilitation-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 20vh;
}

.rehabilitation-content {
  display: flex;
}

.rehabilitation-content:nth-child(1) {
  background: #F0F7EC;
}

.rehabilitation-content:nth-child(1) .rehabilitation-text {
  background: top right no-repeat url(../images/rehabilitation-1.png);
  background-size: 30%;
}

.rehabilitation-content:nth-child(2) {
  background: #EDF7FC;
  flex-flow: row-reverse;
}

.rehabilitation-content:nth-child(2) .rehabilitation-text {
  background: top left no-repeat url(../images/rehabilitation-2.png);
  background-size: 30%;
}

.rehabilitation-content:nth-child(3) {
  background: #FDF0EE;
}

.rehabilitation-content:nth-child(3) .rehabilitation-text {
  background: top right no-repeat url(../images/rehabilitation-3.png);
  background-size: 30%;
}

.rehabilitation-content:nth-child(1) .rehabilitation-text h2 {
  color:#39B54A;
}

.rehabilitation-content:nth-child(2) .rehabilitation-text h2 {
  color:#2D85B7;
}

.rehabilitation-content:nth-child(3) .rehabilitation-text h2 {
  color:#FF9899;
}

.rehabilitation-content div {
  width: 50%;
}

.rehabilitation-content div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rehabilitation-text {
  padding: 3%;
}

.rehabilitation-text h2 {
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.rehabilitation-text h3 {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.8em;
}

.about-fee {
  width: 300px;
  color: #FFF33F;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  margin: 60px auto 100px;
  transition: transform .5s, background .5s;
}

a .about-fee:hover {
  transform: translateY(-3px);
  background: #60dc71;
  transition: transform .5s, background .5s;
}

/*============
Recruitment PAGE
=============*/
.hero.recruitment .hero-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  object-fit: contain;
  min-width: unset;
}
/*tabの形状*/
ul.tab{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  gap: 0 10px;
}
.tab li {
  width: 18%;
  margin: 0;
  border-radius: 20px;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
.tab li a {
  color: #39B54A;
  display: block;
  padding: 2px 0 2px 0.2em;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #39B54A;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  color: #fff;
  background: #39B54A;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding: 50px 0;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.recruitment-wrap {
  margin: 30px auto;
}

.area h1,
.area h2 {
  color: #008A28;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 50px;
  margin-right: -0.2em;
  letter-spacing: 0.2em;
}

.area h1::before, .area h1::after,
.area h2::before, .area h2::after {
  content: '─';
  font-size: 25px;
  line-height: 25px;
  margin: 0 0.6em 0 0.4em;
}

/* About Tab */
.about-list-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 100px;
  width: 98%;
  max-width: 960px;
}

.about-list {
  width: 48%;
}

.about-list p {
  font-size: 13px;
  font-weight: normal;
  border-top: 1px solid #666;
  line-height: 60px;
  letter-spacing: 0.1em;
  padding: 0 1em;
}

.about-list p:last-child {
  border-bottom: 1px solid #666;
}

.about-list p span {
  width: 70px;
  display: inline-block;
  color: #008A28;
}

.about-text-3 { letter-spacing: 0.7em; }
.about-text-4 { letter-spacing: 0.14em; }

ul.timeline {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.timeline-content {
  border-left: 1px #231815 solid;
  padding-left: 10px;
  padding-bottom: 20px;
  margin-left: 20px;
}
.timeline-content h3 {
  font-size: 1.5em;
  font-weight: bold;
}
.timeline-content h4 {
  font-size: 15px;
  margin: -10px 0 10px 0;
}
.timeline-content p {
  padding-bottom: 20px;
  font-size: 13px;
}

/* for Desktop */
@media ( min-width : 767px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 130px;
    float: left;
    font-size: 16px;
    line-height: 60px;
  }
  .timeline-content {
    width: 70%;
    float: left;
    border-left: 1px #231815 solid;
    padding-left: 30px;
    padding-bottom: 0;
    margin-left: 0;
  }
  .timeline li:first-child .timeline-content {
    border-left: 1px #231815 solid;
    border-image: linear-gradient(to bottom, #fff 18%, #231815 18%);
    border-image-slice: 1;
  }
  .timeline-content:before {
    content: url(../images/timeline.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 122px;
    top: 21px;
  }
  .timeline-content h3 {
    line-height: 60px;
    font-weight: normal;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 18px;
  }
  .timeline-content p {
    font-size: 15px;
    padding-bottom: 20px;
    color: #666666;
  }
  ul.timeline li:nth-child(1) .timeline-content { padding-bottom: 80px; }
  ul.timeline li:nth-child(3) .timeline-content { padding-bottom: 30px; }
  ul.timeline li:nth-child(4) .timeline-content { padding-bottom: 60px; }
  ul.timeline li:nth-child(5) .timeline-content { padding-bottom: 30px; }
}

/* Care Tab */
.care-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

.care-content {
  margin-bottom: 60px;
}

.care-content h2 {
  text-align: center;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.2em;
  background: #39B54A;
  color: #fff;
  padding-left: 0.2em;
  margin-bottom: 30px;
}

.care-content h3 {
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-bottom: 20px;
}

.care-content h4 {
  color: #39B54A;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}

.care-content-list {
  display: flex;
  border-top: 1px solid #aaa;
}

.care-content-list:last-child {
  border-bottom: 1px solid #aaa;
}

.care-content h5 {
  color: #39B54A;
  font-size: 13px;
  font-weight: normal;
  width: 15%;
  display: inline-block;
  line-height: 1.8em;
  margin: 0;
  padding: 15px;
}

.care-text-4 { letter-spacing: 0.46em; }
.care-text-5 { letter-spacing: 0.1em; }

.care-content h6 {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8em;
  margin: 0;
  padding: 15px;
}

.care-content h6 span {
  color: #39B54A;
}

.care-content.care-content-a h2 { background: #F7931E; }
.care-content.care-content-a h4,
.care-content.care-content-a h5,
.care-content.care-content-a h6 span { color: #F7931E; }
.care-content.care-content-b h2 { background: #2D85B7; }
.care-content.care-content-b h4,
.care-content.care-content-b h5,
.care-content.care-content-b h6 span { color: #2D85B7; }
.care-content.care-content-c h2 { background: #F65255; }
.care-content.care-content-c h4,
.care-content.care-content-c h5,
.care-content.care-content-c h6 span { color: #F65255; }
.care-content.care-content-d h2 { background: #AD70A9; }
.care-content.care-content-d h4,
.care-content.care-content-d h5,
.care-content.care-content-d h6 span { color: #AD70A9; }

/* Staff Tab */
.staff-container {
  padding: 50px 0 30px;
}

.staff-container:nth-child(1) { background: #E4F0DE; }
.staff-container:nth-child(2) { background: #FFFFFF; }
.staff-container:nth-child(3) { background: #E1F3FC; }

.staff-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

.staff-text {
  width: 47%;
}

.staff-text div {
  margin-bottom: 20px;
}

.staff-container:nth-child(1) .staff-content p:not(.staff-answer) { background: #39B54A; } .staff-container:nth-child(1) .staff-content h3 { color: #39B54A; }
.staff-container:nth-child(2) .staff-content p:not(.staff-answer) { background: #F65255; } .staff-container:nth-child(2) .staff-content h3 { color: #F65255; }
.staff-container:nth-child(3) .staff-content p:not(.staff-answer) { background: #2D85B7; } .staff-container:nth-child(3) .staff-content h3 { color: #2D85B7; }

.staff-sub {
  display: flex;
  justify-content: space-between;
}

.staff-sub div:first-child {
  width: 60%;
}

.staff-sub div:last-child {
  width: 35%;
}

.staff-sub ul li {
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #aaa;
  padding-bottom: 4px;
  margin-bottom: 5px;
}

.staff-sub img {
  width: auto;
  height: 170px;
  margin: 0 auto;
}

.staff-content p:not(.staff-answer) {
  color: #fff;
  font-size: 15px;
  line-height: 31px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 15px;
}

.staff-content h3 {
  font-size: 13px;
  line-height: 40px;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  position: relative;
}

.staff-content h3::after {
  content: "";
  background-image: linear-gradient(to right, #666, #666 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 2px;
}

.staff-content .staff-answer {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.05em;
}

/*tabの形状*/
#staff ul.tab{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#staff .tab li {
  width: auto;
}

ul.tab .staff-link,
ul.tab .staff-link-SUB {
  width: 350px;
  color: #FFF33F;
  letter-spacing: 0.2em;
  text-align: center;
  background: #39B54A;
  border-radius: 7px;
  border-bottom: 4px solid #009245;
  padding: 10px 0 10px 0.2em;
  margin: 20px auto;
  transition: transform .5s;
  display: block;
}

.staff-link:hover,
.staff-link-SUB:hover {
  transform: translateY(-10px);
  transition: .5s;
}

.staff-link p,
.staff-link-SUB p {
  font-size: 14px;
}

/*============
SITEMAP PAGE
=============*/
#section-sitemap {
  padding: 0 20px;
}

#section-sitemap h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-sitemap h2 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

.sitemap-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 70px;
}

.sitemap-container {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.sitemap-contents {
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 30px;
  box-shadow: 3px 3px 5px 0px #ccc;
  background: #fff;
  line-height: 1.5em;
  width: 32%;
}

.sitemap-contents h3 {
  font-size: 15px;
}

.sitemap-contents a {
  color: #3ab54a;
}

.sitemap-contents ul {
  margin-top: 5px;
}

.sitemap-contents ul li {
  font-size: 12.7px;
}

/*============
PRIVACY POLICY
=============*/
#section-policy {
  text-align: center;
  padding: 30px 0 100px;
}

#section-policy h1 {
  text-align: center;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.5em;
}

#section-policy h3 {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8em;
  margin-right: -0.8em;
  margin-bottom: 50px;
}

#section-policy .policy-logo {
  margin: 0 auto 50px;
  width: 100px;
}

#section-policy .policy-logo img {
  width: 100%;
  height: auto;
}

.policy-container {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 2px;
  line-height: 1.8em;
}

.policy-container p.policy-intro {
  font-size: 15px;
  font-weight: normal;
}

.policy-container h2 {
  font-size: 20px;
  font-weight: normal;
  border-top: 2px solid #3e3a39;
  margin: 0;
  padding: 30px 0;
  margin-top: 70px;
}

.policy-container p {
  font-size: 15px;
  margin-left: 30px;
}

.policy-container .policy-sub li {
  font-size: 15px;
  padding-left: 1em;
  text-indent: -1.1em;
  margin: 10px 0 0 0;
}

.policy-container .policy-sub li a {
  color: #21B8E2;
  letter-spacing: 0.1em;
}

.policy-container .policy-sub li a:hover {
  color: #3636d4;
}

.policy-container .policy-sub {
  margin: 20px 0 20px 50px;
}

.policy-container p a {
  color: #21B8E2;
}

.policy-container p a:hover {
  color: #3636d4;
}

/*============
FOOTER
=============*/
footer {
  background: #39B54A;
}

footer h1,
footer .footer-logo {
  color: #fff;
}

footer h1 img,
footer .footer-logo img {
  width: 200px;
  height: 31px;
}

.footer-container {
  display: flex;
  max-width: 900px;
  padding: 20px 10px 0;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-content {
  align-self: center;
}

.footer-content h3 a, .footer-content h4 a {
  color: #fff;
}

.footer-menu-list {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  color: #fff;
}

.footer-menu-list div {
  width: 30%;
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: 2%;
  margin-bottom: 10px;
}

.footer-menu-list h2,
.footer-menu-list .footer-nav-label {
  font-size: 13px;
  border-bottom: 1px solid #fff;
  line-height: 2.5em;
}

.footer-menu-list h2 a,
.footer-menu-list .footer-nav-label a {
  color: #fff;
  line-height: 2.5em;
  display: block;
}

.footer-menu {
  flex: auto;
}

.footer-menu ul {
  margin: 5px 0;
}

.footer-menu ul li {
  font-size: 12px;
  line-height: 1.8em;
}

.footer-menu ul li a {
  letter-spacing: 2px;
  line-height: 1.8em;
  color: #fff;
  display: block;
}

.footer-menu-list h2 a:hover,
.footer-menu-list .footer-nav-label a:hover,
.footer-menu ul li a:hover,
.footer-menu-bottom a:hover,
.footer-bottom h1 a:hover,
.footer-bottom h2 a:hover,
.footer-bottom .footer-address a:hover,
.footer-bottom .footer-tel a:hover {
  color: #6edef9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0;
  padding: 20px 10px;
  align-items: flex-end;
}

.footer-bottom h1,
.footer-bottom h2,
.footer-bottom .footer-address,
.footer-bottom .footer-tel {
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-top: 5px;
}

.footer-bottom h2,
.footer-bottom .footer-tel {
  font-size: 15px;
  letter-spacing: 1.4px;
}

.footer-bottom h2 span,
.footer-bottom .footer-tel span {
  margin-left: 20px;
}

.footer-bottom h1 a,
.footer-bottom h2 a,
.footer-bottom .footer-address a,
.footer-bottom .footer-tel a {
  color: #fff;
}

.footer-menu-bottom {
  text-align: left;
  padding-left: 10px;
  letter-spacing: 1px;
  font-size: 13px;
}

.footer-menu-bottom a {
  color: #fff;
  margin-right: 20px;
}

.footer-menu-bottom a:last-child {
  margin-right: 0;
}

#copyright {
  display: block;
  background: #11771f;
  line-height: 2.5em;
  letter-spacing: 2px;
  font-size: 12px;
  margin-right: -2px;
  text-align: center;
  font-family: Roboto,-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,Verdana,'Noto Sans Japanese','游ゴシック','Yu Gothic','游ゴシック体',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo UI','メイリオ',Meiryo,sans-serif;
}

#copyright a {
  color: #fff;
}

/*============
Comingsoon
=============*/
#section-comingsoon {
  letter-spacing: 0.2em;
  margin-bottom: 80px;
}

#section-comingsoon h1 {
  text-align: center;
  font-size: 25px;
  margin-right: -0.2em;
  padding: 10vh 0;
}

#section-comingsoon p {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  line-height: 1.8em;
}

/*============
Responsive 768-
=============*/
@media screen and ( min-width: 768px ) {
  .sp-br { display: none; }
  .hamburger-menu { display: none; }
  footer .footer-bottom h1 span,
  footer .footer-bottom .footer-address span { margin-right: 10px; }
}

/*============
Responsive 0-767
=============*/
@media screen and ( max-width: 767px ) {
  /*============
  Header
  =============*/
  #header {
    height: 50px;
  }
  .header-container {
    padding: 10px 0 10px 20px;
    flex-flow: nowrap;
  }
  .header-container .header-logo {
    display: flex;
    justify-content: flex-start;
  }
  .site-logo {
    width: 150px;
    height: 30px;
    padding: 0;
  }
  .site-logo img {
    margin: 0 10px 0 0;
  }
  .header-container div {
    display: none;
  }
  #section-hero {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .hero-1::after {
    width: 100px;
    height: auto;
  }
  .privacy-policy::after,
  .site-map::after {
    width: 100%;
  }
  .hero img {
    height: 25vh;
    min-width: unset;
    object-fit: cover;
  }
  img.hero-text {
	height: 20vh;
  }
  .hero.recruitment img {
    height: 30vh;
  }
  .header-container h2,
  .header-container .header-btn-label {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.2em;
    margin: 0;
  }
  .header-container h3 {
    font-size: 12px;
    letter-spacing: 0px;
  }
  .header-content {
    align-items: flex-end;
  }
  /*============
  nav
  =============*/
  nav {
    display: none;
  }
  #nav-toggle {
  position: fixed;
  top: 10px;
  right: 15px;
  height: 32px;
  cursor: pointer;
  }
  #nav-toggle > div {
    position: relative;
    width: 36px;
  }
  #nav-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    opacity: 1;
    display: block;
    background: #39ac4b;
    position: absolute;
    transition: transform 0.5s ease-in-out, top 0.5s ease, opacity 0.5s ease;
  }
  #nav-toggle span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle span:nth-child(3) {
    top: 23px;
  }
  #nav-toggle:hover span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle:hover span:nth-child(3) {
    top: 23px;
  }
  .open #nav-toggle span {
    background: #fff;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 14px;
    transform: rotate(225deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 14px;
    opacity: 0;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 14px;
    transform: rotate(-225deg);
  }

  /* z-index */
  #nav-toggle {
    z-index: 1000;
  }

  #container {
    z-index: 900;
  }

  #gloval-nav {
    background: #21632a;
    height: 100vh;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    overflow-y: scroll;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  #gloval-nav a,
  #gloval-nav span {
    text-indent: 5px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.6s ease;
  }
  #gloval-nav a:hover {
    color: #666;
  }
  #gloval-nav ul {
    list-style: none;
    letter-spacing: 5px;
    font-size: 13px;
  }
  #gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(2) {
    transition-delay: 0.1s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(3) {
    transition-delay: 0.15s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(4) {
    transition-delay: 0.25s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(5) {
    transition-delay: 0.3s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(6) {
    transition-delay: 0.35s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(7) {
    transition-delay: 0.4s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(8) {
    transition-delay: 0.45s;
  }
  #gloval-nav .acc-wrap .acc-btn:nth-child(9) {
    transition-delay: 0.5s;
  }

  .acc-container {
    width: 90%;
    margin: 60px auto 0 auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
  }

  .acc-btn {
    width:100%;
    margin:0 auto;
    cursor:pointer;
  }

  .acc-content {
    width: 100%;
    margin: 0 auto;
    display: none;
    background: linear-gradient(90deg,rgba(44,62,80,0) 0%,rgba(44,62,80,0.6) 50%,rgba(44,62,80,0) 100%);
    padding: 30px;
    height: auto;
  }
  
  /* 子メニュー - .sub-menu */
  .acc-btn .acc-sub {
    padding: 10px 0;
    border-top: 2px dotted #0c7937;
  }
  
  #gloval-nav .acc-btn .acc-sub a {
    line-height: 40px;
    display: block;
    padding: 0;
  }
  
  .open #gloval-nav .acc-btn .acc-sub li {
    border: 0;
    letter-spacing: 2px;
  }
  
  details .acc-sub {
    opacity: 0;
    transition: 2s;
  }
  
  details[open] .acc-sub {
    opacity: 1;
    transition: 2s;
  }
  
  summary {
    height: 50px;
    line-height: 50px;
    list-style: none;
    text-indent: 5px;
  }
  
  summary::-webkit-details-marker {
	display: none;
  }
  
  summary:after {
	content: "▶︎";
    position: absolute;
    right: 0;
    transition: .2s;
  }
  details[open] summary:after,
  summary details[open] summary:after {
    content: "▶︎";
    transform: rotate(90deg);
    transition: .2s;
  }

  /* open */
  .open {
    overflow: hidden;
  }
  
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
    transition: 0.6s;
  }
  
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
    border-bottom: 1px solid #0c7937;
    line-height: 50px;
  }
  
  details {
	height: 50px;
	transition: .1s;
  }
  details[open] {
    height: 192px;
  }

  /*============
  Section ONE
  =============*/
  #section-one {
    margin-bottom: 20px;
  }
  .one-content {
    width: 100%;
    margin-bottom: 50px;
  }
  .one-content img {
    margin-bottom: 15px;
  }
  .one-content h2 {
    font-size: 12px;
    line-height: 1.8em;
    padding: 0;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  .one-content h3 {
    font-size: 11px;
    line-height: 1.8em;
    padding: 0;
    letter-spacing: 0.05em;
  }
  .one-content .btn-label {
    font-size: 13px;
  }

  /*============
  Section TWO
  =============*/
  .two-container h2 {
    font-size: 20px;
    line-height: 1.8em;
    padding: 20px 0;
  }
  .two-content {
    flex-direction: column;
  }
  .two-content div {
    width: 100%;
    margin-bottom: 30px;
  }
  .two-content div:last-child {
    margin-bottom: 0;
  }
  .two-voice h2 {
    font-size: 16px;
  }
  .two-voice-container {
    flex-flow: column;
  }
  .two-voice-content {
    width: 100%;
  }
  .two-voice-content img {
    position: static;
    width: 40%;
    height: auto;
    margin: 0 0 -20px auto;
  }

  /*============
  Section THREE
  =============*/
  #section-three .three-icon img {
    width: 100px;
    height: 100px;
  }
  .three-container {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 6%;
  }
  .three-button {
    width: 300px;
  }
  .three-button .btn-label{
    font-size: 13px;
  }
  .three-content p:nth-child(4) {
    font-size: 11px;
  }

  /*============
  Section FOUR
  =============*/
  #section-four div {
    background: 60% center no-repeat url(../images/img-3.jpg);
    background-size: cover;
  }
  #section-four div img {
    width: 150px;
    height: auto;
    padding: 30px 0 15px;
    margin: 0 auto;
    display: block;
  }

  /*============
  Section FIVE
  =============*/
  .five-content {
    width: 100%;
  }
  .five-content p.five-address {
    font-size: 11px;
  }
  .five-content .btn-label-tel,
  .five-content .btn-label-map,
  .five-content .btn-label-detail {
    font-size: 13px;
  }

  /*============
  Section SIX
  =============*/
  #section-six div {
    width: 100%;
  }
  #section-six h2 {
    font-size: 16px;
  }

  /*============
  Facility Page
  =============*/
  #section-facility {
    margin-top: 80px;
  }
  #section-facility h2 {
    margin-bottom: 50px;
  }
  .flow-content {
    margin-bottom: 30px;
  }
  .flow-content img:last-child {
    width: 90px;
    height: 100%;
  }
  .facility-container {
    flex-flow: column;
  }
  .facility-img-1,
  .facility-img-2 {
    width: 100%;
    height: auto;
    padding: 0;
    flex-flow: row;
  }
  .facility-img-2 {
    padding-top: 10px;
  }
  .facility-img-2 img:first-child,
  .facility-img-2 img:last-child {
    padding: 0;
    width: 49%;
  }
  .facility-img-1 img, .facility-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #section-innovation p {
    text-align: left;
    padding: 0 10px;
  }
  .equipment-content p {
    font-size: 13px;
  }

  /*============
  Rehabilitation Page
  =============*/
  #section-rehabilitation {
    padding-top: 80px;
  }
  .hero.rehabilitation::after {
    width: 90%;
    max-width: 300px;
  }
  #section-rehabilitation h1 {
    font-size: 18px;
    margin-bottom: 50px;
  }
  #section-rehabilitation h1::before, #section-rehabilitation h1::after {
    font-size: 16px;
  }
  .rehabilitation-container {
    padding: 0 5%;
  }
  .rehabilitation-content:nth-child(1),
  .rehabilitation-content:nth-child(2),
  .rehabilitation-content:nth-child(3) {
    flex-flow: column;
    margin-bottom: 5%;
  }
  .rehabilitation-content div {
    width: 100%;
  }
  .rehabilitation-text {
    padding: 30px 10px;
  }
  .rehabilitation-text h2 {
    font-size: 18px;
  }
  .rehabilitation-text h3 {
    font-size: 12px;
  }

  /*============
  Care Page
  =============*/
  .hero.care::after {
    width: 90%;
    max-width: 300px;
  }

  /*============
  Recruitment Page
  =============*/
  .tab li {
    width: 47%;
    margin-bottom: 20px;
  }
  .tab li:last-child {
    margin: 0 auto;
  }
  .area {
    padding: 0;
    margin-top: 50px;
  }
  .area h1, .area h1::before, .area h1::after,
  .area h2, .area h2::before, .area h2::after {
    font-size: 20px;
  }
  .about-list-container {
    flex-flow: column;
  }
  .about-list {
    width: 100%;
  }
  .about-list:first-child p:last-child {
    border-bottom: 0;
  }
  .about-list p span {
    display: block;
    width: auto;
  }
  ul.timeline {
    width: 100%;
    max-width: 280px;
  }
  .timeline p {
    font-size: 13px;
  }
  .timeline h3 {
    font-size: 15px;
    line-height: 2em;
    font-weight: normal;
  }
  .care-content-list {
    flex-flow: column;
  }
  .care-content h2 {
    font-size: 13px;
  }
  .care-content h3, .care-content h4, .care-content h5, .care-content h6 {
    font-size: 11px;
    text-align: left;
  }
  .care-content h5 {
    width: 100%;
    padding: 15px 5px 0;
  }
  .care-content h6 {
    width: 100%;
    padding: 15px 5px;
  }
  .staff-content {
    flex-flow: column;
  }
  .staff-text {
    width: 100%;
  }
  .staff-sub div:last-child {
    width: 35%;
    align-self: flex-end;
  }
  .staff-sub img {
    width: auto;
    height: 130px;
    margin: 0 auto;
  }
  .staff-content p {
    font-size: 13px;
  }
  .staff-content h3,
  .staff-content .staff-answer {
    font-size: 11px;
  }

  /*============
  Site Map
  =============*/
  .sitemap-contents {
    width: 100%;
  }
  .sitemap-contents ul li {
    font-size: 14px;
    line-height: 2.5em;
  }

  /*============
  footer
  =============*/
  .footer-container {
    display: block;
    padding: 20px 0 0;
    max-width: none;
    margin: 0 auto;
  }
  .footer-content {
    padding: 50px 0;
  }
  footer h1 img,
  footer .footer-logo img {
    margin: 0 auto;
  }
  .footer-menu {
    display: none;
  }
  .footer-bottom {
    flex-flow: column;
    align-items: center;
    text-align: center;
    line-height: 1.5em;
  }
  .footer-bottom h1,
  .footer-bottom .footer-address {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .footer-bottom h2,
  .footer-bottom .footer-tel {
    font-size: 14px;
    letter-spacing: 1.4px;
    margin: 0;
  }
  .footer-bottom h2 span,
  .footer-bottom .footer-tel span {
    margin-left: 0;
  }
  .footer-menu-bottom {
    font-size: 11px;
    position: static;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer-menu-bottom a {
    margin-right: 14px;
  }
  .footer-menu-bottom a:before {
    margin-right: 3px;
  }
  .pc-br {
    display: none;
  }
  #section-comingsoon {
    margin-bottom: 50px;
  }
}
/*========================
  Responsive - Sub
=========================*/
@media screen and ( min-width: 1025px ) {
  .about-list {
    width: 47%;
  }
  .about-list p {
    font-size: 15px;
    font-weight: normal;
    border-top: 1px solid #666;
    line-height: 60px;
    letter-spacing: 0.1em;
    padding: 0 1em;
  }
  .about-list p:last-child {
    border-bottom: 1px solid #666;
  }
  .about-list p span {
    width: 80px;
    display: inline-block;
    color: #008A28;
  }
}
@media screen and ( min-width: 426px ) and ( max-width: 768px ) {
  .equipment-content {
    padding: 10px;
  }
  .equipment-content h3 {
    font-size: 16px;
  }
  .equipment-content p {
    font-size: 11px;
  }
  .staff-sub img {
    height: 170px;
  }
  .staff-content p,
  .staff-sub ul li,
  .staff-content h3,
  .staff-content .staff-answer {
    font-size: 14px;
  }
}
@media screen and ( max-width: 425px ) {
  .flow-content img:last-child {
    display: none;
  }
  .flow-sub h3 {
    font-size: 13px;
  }
  .flow-sub h3 span {
    font-size: 14px;
  }
  .equipment-content {
    width: 100%;
  }
  .staff-link {
    width: 300px;
  }
  .staff-link p {
    font-size: 13px;
  }
}
/*========================
  lazyload
=========================*/
.lazyload { opacity: 0; -webkit-transition: opacity 3s; transition: opacity 3s; }
.lazyloaded { opacity: 1; }
