@charset "UTF-8";
/*---------------------------------------------

 SP用　768px以下設定

---------------------------------------------*/
/* font
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium), local(Yu Gothic);
  font-weight: 500;
}
/*---------------------------------------------
	common
---------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #333;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, Verdana, Avenir, "游ゴシック Medium", "YuGothic M", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

.inner {
  width: 100%;
  padding: 0 20px;
}

.pcOnly {
  display: none;
}

.spOnly {
  display: block;
}

img {
  max-width: 100%;
}

/*---------------------------------------------
	header
---------------------------------------------*/
header {
  padding: 10px 0 20px;
  background-color: #988575;
}
header h1 {
  line-height: 1;
  font-size: 1.6rem;
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
  position: relative;
}
header .logo {
  margin-top: 12px;
}
header .logo img {
  width: 240px;
  height: auto;
}
header .sub .catch {
  display: none;
}

/* メニュー設定 */
nav {
  display: none;
  position: absolute;
  width: 100%;
  background-color: rgb(153, 134, 117);
  top: 48px;
  left: 0;
  z-index: 10;
  font-size: 1.6rem;
}

nav ul {
  display: block;
  list-style: none;
  margin: 0 auto;
  padding: 20px 10px;
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

nav li {
  margin: 0 auto;
  text-align: center;
}

nav a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* メニューアイコン設定 */
#nav-toggle {
  position: absolute;
  top: 5px;
  right: 15px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.menu-trigger {
  position: relative;
  width: 36px;
  height: 19px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.menu-trigger:hover {
  cursor: pointer;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* 文字を変更する場合は設定 */
/*
.menu-trigger.active::after {
  content: 'CLOSE';
}
*/
/* メニューアイコン変形設定 */
.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) scale(0);
          transform: translateY(9px) scale(0);
}

.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) scale(0);
          transform: translateY(-9px) scale(0);
}

/*---------------------------------------------
	footer
---------------------------------------------*/
footer {
  padding: 35px 0;
  background-color: #988575;
  color: #fff;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 5px;
}
footer .info {
  text-align: center;
  margin-bottom: 40px;
}
footer .info .company .name {
  margin-bottom: 10px;
}
footer .info .company img {
  width: 260px;
  height: auto;
}


footer .info address {
  font-style: normal;
  font-size: 1.2rem;
}
footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 1.2rem;
}
footer .menu .categoryHead {
  font-weight: bold;
  margin-bottom: 20px;
}
footer .menu ul {
  list-style: none;
  position: relative;
}
footer .menu li:not(:first-of-type) {
  padding-top: 5px;
}
footer .menu a {
  text-decoration: none;
  color: #fff;
}
footer .menu a:hover {
  text-decoration: underline;
  color: #fff;
}
footer .menu .column:nth-child(-n+2) {
  margin-bottom: 20px;
}
footer .menu ul + ul {
  margin-top: 20px;
}
footer .parent_pc {
  display: none;
}
footer .parent_sp {
  text-align: center;
  margin-top: 30px;
}
footer .parent_sp img {
  width: 105px;
  height: auto;
}
footer .parent_sp .text {
  margin-top: 5px;
  font-size: 1rem;
}


/* 202502
---------------------------------------------*/

footer .bl_link_privacy {
  margin-top: 10px;
  font-size: 12px;
}
footer .bl_link_privacy_link {
  text-decoration: none;
  color: #fff;
}
footer .bl_link_privacy_link:hover {
  text-decoration: underline;
}


footer .bl_sns {
  margin-top: 10px;
  display: flex;
  column-gap: 15px;
  list-style: none;
  width: fit-content;
  margin-inline: auto;
}

footer .bl_sns_icon {
  fill: #ffffff;
  width: auto;
  height: 30px;
}
@media (any-hover: hover){
  footer .bl_sns_link {
    transition: opacity 0.3s;
  }
  footer .bl_sns_link:hover {
    opacity: 0.7;
  }
}

/*---------------------------------------------
 .banner
---------------------------------------------*/
.bannerArea {
  margin-bottom: 40px;
  width: fit-content;
  margin-inline: auto;
}
.bannerArea ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  list-style: none;
}
.bannerArea li img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.bannerArea a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.bannerArea a:hover {
  opacity: 0.7;
}

/*---------------------------------------------
	#home
---------------------------------------------*/
/* .hero
---------------------------------------------*/
#home #hero {
  min-height: 500px;
  /* important */
  margin-bottom: 40px;
}

/* .news
---------------------------------------------*/
#home .news {
  text-align: center;
  margin-bottom: 40px;
}
#home .news h2 {
  display: inline-block;
  font-weight: normal;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
#home .news h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 100px;
  height: 1px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #ccc;
}
#home .news .newsArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#home .news .pickup_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#home .news .pickup {
  width: 100%;
  padding: 20px;
  background-color: #fafafa;
  margin-bottom: 30px;
  text-align: center;
}
#home .news .pickup ul {
  list-style: none;
}
#home .news .pickup li {
  margin: 0 5px;
}
#home .news .pickup li img {
  opacity: 0.3;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  /* スライド時の調整 */
}
#home .news .pickup .slick-center img {
  opacity: 1;
}
#home .news .pickup .slick-center img:hover {
  opacity: 0.7;
}
#home .news .pickup li:not(:last-child) {
  margin-bottom: 0px;
  /* スライドの場合 */
}
#home .news .pickup a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
  /* スライドのリンク線表示調整 */
}
#home .news .normal {
  width: 100%;
}
#home .news .normal ul {
  list-style: none;
  text-align: left;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
#home .news .normal li:not(:last-of-type) {
  border-bottom: 1px solid #f5f5f5;
}
#home .news .normal li a {
  display: block;
  padding: 25px 10px;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#home .news .normal li a:hover {
  background-color: #fafafa;
}
#home .news .normal li h3 {
  font-weight: normal;
  font-size: 1.4rem;
}
#home .news .normal time {
  display: block;
  font-size: 1rem;
}
#home .news .more {
  text-align: right;
  margin-top: 7px;
  position: relative;
  padding-right: 14px;
  font-size: 1.6rem;
}
#home .news .more a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#home .news .more a:hover {
  opacity: 0.7;
}
#home .news .more::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: #7f7f7f #7f7f7f transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 2px;
  top: 6px;
}

/* .bl_movie
---------------------------------------------*/
.bl_movie_title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  background-color: #988575;
  color: #fff;
  padding: 5px 0;
}

.modaal-inner-wrapper {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.modaal-video-wrap {
  margin: 0 !important;
}

/* .about
---------------------------------------------*/
#home .about {
  text-align: center;
  margin-bottom: 40px;
}
#home .about h2 {
  display: inline-block;
  font-weight: normal;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
#home .about h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 100px;
  height: 1px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #ccc;
}
#home .about p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
}
#home .about p span {
  font-size: 1.4rem;
}

/* .category
---------------------------------------------*/
#home .category {
  background-color: #fafafa;
  margin-bottom: 40px;
}
#home .category .inner {
  padding: 35px 20px;
}
#home .category .categoryArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#home .category .categoryArea h3 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}
#home .category .categoryArea > div {
  text-align: center;
  margin-bottom: 60px;
}
#home .category .categoryArea > div:last-of-type {
  margin-bottom: 0;
}
#home .category .categoryArea .pict {
  margin: 30px 0 30px;
}
#home .category .categoryArea .pict img {
  width: 145px;
  height: auto;
}
#home .category .categoryArea .nursing_home .pict img:first-of-type {
  margin-right: 10px;
}
#home .category .categoryArea .btn a {
  position: relative;
  min-width: 80%;
  max-width: 100%;
  display: inline-block;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 10px 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 1.4rem;
}
#home .category .categoryArea .btn a:hover {
  background-color: #fff;
}
#home .category .categoryArea .btn a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-color: #ccc #ccc transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 15px;
  top: 37%;
}

/*---------------------------------------------
	common 中ページ共通
---------------------------------------------*/
/* .read ページタイトル
---------------------------------------------*/
.read {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
.read h1 {
  display: inline-block;
  font-weight: normal;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
.read h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 100px;
  height: 1px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #ccc;
}

/*---------------------------------------------
	#about ハートフルケアの施設
---------------------------------------------*/
/* .category
---------------------------------------------*/
#about .category .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
}
#about .category .title h2 {
  color: #988575;
  font-size: 2rem;
  margin-bottom: 3px;
  font-weight: normal;
}
#about .category .title p {
  font-size: 1.4rem;
}
#about .category .nursing_home,
#about .category .group_home,
#about .category .home_care {
  margin-bottom: 40px;
}
#about .category .catchPc {
  display: none;
}
#about .category .catchSp {
  position: relative;
  width: 100%;
  height: 460px;
  background-size: cover;
  background-position: 50% 50%;
  margin-bottom: 30px;
  padding: 40px 20px;
}
#about .category .catchSp::after {
  position: absolute;
  color: #fff;
  content: "ITイメージング";
  bottom: 3%;
  right: 3%;
}
#about .category .catchSp img {
  max-width: 100%;
}
#about .category .nursing_home .catchSp {
  background-image: url(../img/about_catch_bg01_sp.jpg);
}
#about .category .group_home .catchSp {
  background-image: url(../img/about_catch_bg02_sp.jpg);
}
#about .category .home_care .catchSp {
  background-image: url(../img/about_catch_bg03_sp.jpg);
}
#about .category .nursing_home .catchSp::after {
  content: "";
}
#about .category .explain {
  text-align: center;
}
#about .category .explain .logo {
  margin-bottom: 30px;
}
#about .category .explain .logo img {
  width: 100px;
  height: auto;
}
#about .category .explain p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 30px;
  text-align: left;
}
#about .category .list {
  background-color: #fafafa;
}
#about .category .prefecture {
  padding: 20px 0 10px;
}
#about .category .nursing_home .prefecture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#about .category .nursing_home .prefecture > div {
  width: 100%;
}
#about .category .group_home .prefecture .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .category .group_home .prefecture .unit dl {
  width: 100%;
  margin-bottom: 0;
}
#about .category .home_care .prefecture .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .category .home_care .prefecture .unit dl {
  width: 100%;
}
#about .category .prefecture h3 {
  font-size: 1.8rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #988575;
}
#about .category .prefecture dl {
  margin: 20px 0;
}
#about .category .prefecture dt {
  font-size: 1.4rem;
  font-weight: bold;
}
#about .category .prefecture dd {
  font-size: 1.4rem;
}
#about .category .prefecture ul {
  list-style: none;
  margin: 0px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#about .category .prefecture li {
  width: 32%;
  text-align: center;
  font-size: 1.2rem;
}
#about .category .prefecture li img {
  max-width: 100%;
  margin-bottom: 5px;
}
#about .category .prefecture li:not(:nth-child(3n+1)) {
  margin-left: 2%;
}
#about .category .prefecture li:nth-child(n+4) {
  margin-top: 20px;
}
#about .category .prefecture ul a {
  color: #9b8472;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#about .category .prefecture ul a:hover {
  opacity: 0.7;
}
#about .category .bl_equip {
  padding: 20px 0 10px;
  margin-bottom: -30px;
}
#about .category .bl_equip_title {
  font-size: 1.8rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #988575;
}
#about .category .bl_equip_list {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#about .category .bl_equip_box {
  width: 100%;
  margin-bottom: 3%;
  padding: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
}
#about .category .bl_equip_name {
  text-align: center;
  font-size: 1.6rem;
  padding: 3px 0;
  font-weight: bold;
}
#about .category .bl_equip_name a {
  color: #333;
  text-decoration: none;
}
#about .category .bl_equip_empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #988575;
}
#about .category .bl_equip_empty_txt {
  text-align: center;
  background-color: #988575;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 10px 1px;
  width: 30%;
}
#about .category .bl_equip_empty_info {
  padding: 4px 5px 1px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: block;
}
#about .category .bl_equip_empty_info img {
  width: auto;
  height: 14px;
  margin-right: 5px;
  padding-top: 2px;
}
#about .category .bl_equip_empty_one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #988575;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 1px;
}
#about .category .bl_equip_empty_one_txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
#about .category .bl_equip_empty_one_txt img {
  width: auto;
  height: 14px;
  margin-right: 5px;
}
#about .category .bl_equip_empty_one_status {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
#about .category .bl_equip_empty_one_status img {
  width: auto;
  height: 15px;
}
#about .category .bl_equip_empty_two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 1px;
}
#about .category .bl_equip_empty_two_txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
#about .category .bl_equip_empty_two_txt img {
  width: auto;
  height: 14px;
  margin-right: 5px;
}
#about .category .bl_equip_empty_two_status {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
#about .category .bl_equip_empty_two_status img {
  width: auto;
  height: 15px;
}
#about .category .bl_equip_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #988575;
  margin-bottom: 10px;
}
#about .category .bl_equip_table tr:not(:first-child) {
  border: 1px solid #988575;
}
#about .category .bl_equip_table th {
  width: 30%;
  font-size: 1.2rem;
  font-weight: normal;
  background-color: rgba(155, 132, 114, 0.2);
  padding: 5px;
}
#about .category .bl_equip_table td {
  font-size: 1.2rem;
  padding: 5px;
}
#about .category .el_detailBtn {
  margin-bottom: 7px;
  font-size: 1.4rem;
}
#about .category .el_detailBtn a {
  width: 100%;
  display: block;
  background-color: #988575;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about .category .el_detailBtn a:hover {
  opacity: 0.7;
}
#about .category .bl_equip_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.2rem;
}
#about .category .el_requestBtn {
  width: 49%;
}
#about .category .el_requestBtn a {
  width: 100%;
  display: block;
  background-color: #ea9751;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about .category .el_requestBtn a:hover {
  opacity: 0.7;
}
#about .category .el_observeBtn {
  width: 49%;
}
#about .category .el_observeBtn a {
  width: 100%;
  display: block;
  background-color: #84b827;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about .category .el_observeBtn a:hover {
  opacity: 0.7;
}
#about .category .el_openNews {
  display: block;
  color: red;
  font-size: 1.4rem;
}
#about .category .el_tac {
  text-align: center;
}
#about .category .el_outline {
  font-weight: normal;
  font-size: 1.4rem;
}

/*---------------------------------------------
	#company 会社情報
---------------------------------------------*/
/* .about
---------------------------------------------*/
#company .about {
  margin-bottom: 100px;
}
#company .about h2 {
  color: #988575;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: normal;
}
#company .about p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin-bottom: 2rem;
}
#company .about p.ceo {
  text-align: right;
}

/* .overview
---------------------------------------------*/
#company .overview {
  margin-bottom: 50px;
}
#company .overview h2 {
  color: #988575;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: normal;
}
#company .overview table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
#company .overview table th,
#company .overview table td {
  border-top: dotted 1px #ccc;
  border-bottom: dotted 1px #ccc;
}
#company .overview table th {
  padding: 10px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
#company .overview table td {
  padding: 10px;
}
#company .overview .link {
  text-align: center;
}
#company .overview .link a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#company .overview .link a:hover {
  opacity: 0.7;
}
#company .overview .link img {
  max-width: 100%;
}

/*---------------------------------------------
	owner 土地活用をお考えのオーナー様へ
---------------------------------------------*/
/* .about
---------------------------------------------*/
#owner .about {
  margin-bottom: 50px;
}
#owner .about .about_read {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin-bottom: 5rem;
}

/* .overview
---------------------------------------------*/
#owner .overview {
  margin-bottom: 50px;
}
#owner .overview h2 {
  color: #988575;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: center;
}
#owner .overview table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
  border: solid 1px #ccc;
}
#owner .overview table th,
#owner .overview table td {
  padding: 10px;
}
#owner .overview table th {
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  background-color: rgba(152, 133, 117, 0.15);
}
#owner .overview table dl dt {
  font-weight: bold;
}
#owner .overview table dl dd {
  padding-left: 1rem;
  margin-bottom: 2rem;
}
#owner .overview table dl dd:last-of-type {
  margin-bottom: 0;
}
#owner .overview table dl ul {
  list-style: none;
}
#owner .overview table .el_btn_form {
  margin-top: 5px;
}
#owner .overview table .el_btn_form a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #988575;
  color: #fff;
  text-align: center;
}
#owner .overview table .el_btn_form a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #owner .overview table th,
#owner .overview table td {
    display: block;
  }
}
/*---------------------------------------------
	#recruit 採用情報
---------------------------------------------*/
/* .contents
---------------------------------------------*/
#recruit .contents {
  text-align: center;
  margin-bottom: 60px;
}
#recruit .contents p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
#recruit .contents a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#recruit .contents a:first-of-type {
  margin-bottom: 20px;
}
#recruit .contents a:hover {
  opacity: 0.7;
}
#recruit .contents img {
  max-width: 100%;
}

/*---------------------------------------------
	#privacy プライバシーポリシー
---------------------------------------------*/
.bl_privacy {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.bl_privacy_txt {
  margin-bottom: 3rem;
}

.bl_privacy_list dt {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  padding-bottom: 5px;
  margin-bottom: 15px;
  padding: 0 0.5rem;
}
.bl_privacy_list dd {
  padding: 0 0.5rem;
  margin-bottom: 3rem;
}
* + .bl_privacy_list ul {
  padding-left: 2.5rem;
  margin-top: 1.5rem;
  line-height: 2;
}

.bl_privacy_heading_lv2 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  margin-block: 30px;
}

/*---------------------------------------------
	#groupHome グループホーム
---------------------------------------------*/
#groupHome .wrapper {
  width: 100%;
  margin: 0 auto 50px;
}
#groupHome .wrapper .inner {
  width: 100%;
}
#groupHome .read img {
  width: 140px;
}
#groupHome .head {
  margin-top: 40px;
  margin-bottom: 20px;
}
#groupHome .head .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#groupHome .head .inner .name {
  text-align: center;
  margin-bottom: 20px;
}
#groupHome .head .inner .name img {
  max-width: 80%;
}
#groupHome .head .inner .pict {
  text-align: center;
}
#groupHome h2 {
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: solid 2px #ccc;
  letter-spacing: 0.1rem;
}
#groupHome .access {
  margin-bottom: 50px;
}
#groupHome .access .inner .map {
  margin: 20px 0 10px;
}
#groupHome .access .inner .note {
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: right;
  margin-bottom: 10px;
}
#groupHome .overview {
  margin-bottom: 50px;
}
#groupHome .overview .inner .box {
  margin-bottom: 30px;
}
#groupHome .overview .inner .box p.att {
  font-size: 1.2rem;
  margin-top: 5px;
  margin-left: 1rem;
}
#groupHome .overview .inner .contact {
  width: 100%;
  border: 2px solid #ccc;
  padding: 10px 15px;
  text-align: center;
}
#groupHome .overview .inner .contact p.tel {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
#groupHome .overview .inner .contact p.tel span {
  display: block;
  font-weight: normal;
  font-size: 1.4rem;
}
#groupHome .overview .inner a {
  transition: opacity 0.5s;
}
#groupHome .overview .inner a:hover {
  opacity: 0.7;
}
#groupHome table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
}
#groupHome table th,
#groupHome table td {
  padding: 5px 10px;
  border-bottom: dotted 1px #ccc;
}
#groupHome table th {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
#groupHome table.price td {
  text-align: right;
}
#groupHome .btn {
  text-align: center;
  margin: 5px 0 15px;
}
#groupHome .btn a {
  position: relative;
  min-width: 80%;
  max-width: 100%;
  display: inline-block;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 10px 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#groupHome .btn a:hover {
  background-color: #f1f1f1;
}
#groupHome .btn a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-color: #ccc #ccc transparent transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 15px;
  top: 37%;
}

/*---------------------------------------------
	#news ニュース一覧
---------------------------------------------*/
#news .list {
  margin-bottom: 50px;
}
#news .list .inner {
  width: 100%;
}
#news .list p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}
#news dl {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}
#news dl dd {
  padding-left: 3rem;
  margin-bottom: 2rem;
}
#news .el_under_line {
  text-decoration: underline;
}
#news .el_tac {
  text-align: center;
}
#news .el_tar {
  text-align: right;
}
#news .list ul {
  list-style: none;
  text-align: left;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
#news .list li:not(:last-of-type) {
  border-bottom: 1px solid #f5f5f5;
}
#news .list li a {
  display: block;
  padding: 25px 10px;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#news .list li a:hover {
  background-color: #fafafa;
}
#news .list li h3 {
  font-weight: normal;
  font-size: 1.4rem;
}
#news .list time {
  display: block;
  font-size: 1rem;
}

/* .training 臨時措置
---------------------------------------------*/
#news table.training {
  width: 100%;
  border: 1px #E4ECE8 solid;
  border-collapse: collapse;
}
#news table.training th {
  width: 25%;
  padding: 10px 15px;
  border: 1px #E4ECE8 solid;
  background: #F6F6F6;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
}
#news table.training td {
  padding: 8px;
  border: 1px #E4ECE8 solid;
  line-height: 1.8;
}

/*---------------------------------------------
  プラチナコミュニティ関連
---------------------------------------------*/
.l_community .wrapper {
  max-width: 960px;
  padding-inline: 20px;
  margin-inline: auto;
  margin-block: 50px;
}
@media screen and (min-width: 768px) {
  .l_community .wrapper {
    margin-block: 100px;
  }
}

.bl_comumnity_pict_wrap {
  margin-bottom: 5rem;
}
.bl_comumnity_pict {
  width: 100%;
  height: auto;
}

.bl_comumnity_lv2Heading {
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: solid 2px #ccc;
  letter-spacing: 0.1rem;
}

.bl_comumnity_list {
  margin-top: 1.5rem;
  display: grid;
  row-gap: 0.5em;
}

.bl_comumnity_list_item {
  background-image: url(/assets/img/pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 2.8rem;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .bl_comumnity_list_item {
    padding-left: 3.2rem;
  }
}

.bl_comumnity_list_link {
  color: #000;
  transition: opacity 0.3s;
}
.bl_comumnity_list_link:hover {
  opacity: 0.7;
}
/*-------------------- last-------------------------*/