@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.css¤Ë¤ª¤¤¤Æ ( var.3.1.3 )
** -- base¤Ç¤Ï»ù±¾¥¿¥°¤È¥µ¥¤¥È´ó–˜¤ÎCSSÖ¸¶¨
** -- header¤Ç¤Ï¥Ø¥Ã¥À©`¤ÎCSSÖ¸¶¨
** -- global nav¤Ç¤Ï¥°¥í©`¥Ð¥ë¥Ê¥Ó¤ÎCSSÖ¸¶¨
** -- content¤Ç¤Ï¥³¥ó¥Æ¥ó¥È?¥á¥¤¥ó?¥µ¥¤¥É¥Ê¥Ó¤ÎCSSÖ¸¶¨
** -- footer¤Ç¤Ï¥Õ¥Ã¥¿©`¤ÎCSSÖ¸¶¨
** -- pagetop¤Ç¤Ï¥Ú©`¥¸¥È¥Ã¥×¥Ü¥¿¥ó¤ÎCSSÖ¸¶¨
** -- index¤Ç¤Ï¥È¥Ã¥×¥Ú©`¥¸¤ÎCSSÖ¸¶¨
** -- page¤Ç¤ÏšøÓÃ¥Ú©`¥¸¤ÎCSSÖ¸¶¨
** -- style¤Ç¤ÏšøÓÃ¥Ú©`¥¸¤Î¥³¥ó¥Æ¥ó¥Ä£¨¥Ç©`¥¿Èë¤ì£©¤ÇÊ¹ÓÃ¤¹¤ë»ù±¾¥¿¥°¤ÎCSSÖ¸¶¨
**
** ×¢ÒâÊÂí—
** -- CSS¤ÎÃüÃûÒŽ„t¤ÏApplicats¥ª¥ê¥¸¥Ê¥ë¤ÎÃüÃûÒŽ„t¤ò’ñÓÃ¤·¤Æ¤¤¤Þ¤¹¡£
** -- ³õÆÚ¥Õ¥©¥ó¥È¥µ¥¤¥º¤Ïreset.css¤Ë¤Æ14px¤Ë¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Þ¤¹¡£
** -- ÐÐég¤Ï1.6¤Ë¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Þ¤¹¡£
**        …gÎ»¤Ï²»Òª¤Ç¤¹¡£(¥¹¥¿¥¤¥ë±À¤ì¤¹¤ë¿ÉÄÜÐÔÓÐ)
** -- ¥³¥ó¥Æ¥ó¥ÄÄÚ¤Î¥Õ¥©¥ó¥È¥µ¥¤¥º?ÐÐég¤Ï
**        [ base ]¤Îcontents¥¯¥é¥¹¤ÇÖ¸¶¨¤·¤Æ¤¤¤Þ¤¹¡£
**        ‰ä¸ü¤¹¤ëˆöºÏ¤Ï¤³¤Á¤é¤ò‰ä¸ü¤·¤Æ¤¯¤À¤µ¤¤¡£
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

html {
  height: auto !important; /*Google Language TranslatorÓÃ*/
}

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 80px;
  background: #fff;
}
.hd_bg .hd {
  padding: 10px;
}
.hd_bg .hd .hd_logo {
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a .hd_ttl {
  color: #7B7878;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}
.hd_bg .hd .hd_logo a .hd_ttl span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 9px;
  font-weight: 400;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  width: 38px;
  height: auto;
  margin-right: 10px;
}
.hd_bg .hd .hd_upperct {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 80px;
  right: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 80px);
  padding: 10px;
  background: #ecfff6;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list {
  background: #31bca2;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em 1em 1em 1.5em;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav .nav_list > li > a::after {
  display: block;
  content: attr(data-text);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.5s ease;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background: #31bca2;
  color: #fff;
}
.nav .nav_list > li > a:hover::after, .nav .nav_list > li > a.current::after {
  color: #fff;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.35em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #00538a;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.65em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #00538a;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_upperct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 10px;
  background: #fff;
}
.nav .nav_upperct .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #7B7878;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  text-decoration: none;
  border: 1px solid #D8D8D8;
  transition: all 0.5s ease;
}
.nav .nav_upperct .contact a::after {
  content: attr(data-text);
  margin-left: 10px;
  color: #36bea0;
  font-family: "Shippori Mincho", serif;
  transition: all 0.5s ease;
}
.nav .nav_upperct .contact a:hover {
  color: #36bea0;
}
.nav .nav_upperct .contact a:hover::after {
  color: #7B7878;
}
.nav .nav_upperct .mail a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #7B7878;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #D8D8D8;
  transition: all 0.5s ease;
}
.nav .nav_upperct .mail a::before {
  content: "";
  width: 21px;
  height: 14px;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_contact.svg) no-repeat center center;
  background-size: cover;
}
.nav .nav_upperct .mail a:hover {
  background: #ecfff6;
  border: 1px solid #36bea0;
}
.nav .nav_upperct .tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #7B7878;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #D8D8D8;
}
.nav .nav_upperct .tel a::before {
  content: "";
  width: 21px;
  height: 17px;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_tel.svg) no-repeat center center;
  background-size: cover;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0 10px 30px;
}
.con .main {
  margin-bottom: 30px;
}
.con .main a[href$=".pdf"]::after {
  position: relative;
  top: 5px;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 0 0 5px;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_pdf.png) no-repeat center right;
  background-size: contain;
  image-rendering: pixelated;
}
.con .main a[href$=".pdf"].no_icon::after {
  display: none;
}
.con .side .side_head {
  background-color: #EEE;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}
.con .side .side_nav_list li a {
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}
.con .side .side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #31bca2;
}
.ft_bg .ft {
  padding: 1.25em 0;
}
.ft_bg .ft .ft_copy {
  display: block;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 54px;
  background: #36bea0;
  border: 1px solid #36bea0;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 8px;
  cursor: pointer;
  display: block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 3px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #31bca2;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #31bca2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #31bca2;
  border-radius: 5px;
  color: #31bca2 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #31bca2;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #31bca2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_wrap {
  margin-bottom: 20px;
}
.index_slider_wrap .index_slider img {
  width: 100% !important;
  height: 100vh !important;
  max-height: 300px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_wrap .catchcopy_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #D8D8D8;
  border-top: none;
}
.index_slider_wrap .catchcopy_bg h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A5A5A5;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
}

.index_main .index_greet {
  position: relative;
  margin-bottom: 40px;
}
.index_main .index_greet h2 {
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_greet h2::after {
  display: block;
  content: attr(data-text);
  color: #36bea0;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.index_main .index_greet .index_greet_item {
  padding: 20px 0;
}
.index_main .index_greet .more {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 20px auto 50px;
}
.index_main .index_greet .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #7B7878;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #31bca2;
  transition: all 0.5s ease;
}
.index_main .index_greet .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_more.svg) no-repeat center center;
}
.index_main .index_greet .more a:hover {
  color: #31bca2;
}
.index_main .index_news {
  position: relative;
}
.index_main .index_news h2 {
  width: 100%;
  padding: 0.5em 0.8em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  color: #36bea0;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.index_main .index_news .index_news_scrl {
  max-height: 40vh;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #36bea0;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
  font-family: "Open Sans", sans-serif;
}
.index_main .index_news .more {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 20px auto 50px;
}
.index_main .index_news .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: #7B7878;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #31bca2;
  transition: all 0.5s ease;
}
.index_main .index_news .more a::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_more.svg) no-repeat center center;
}
.index_main .index_news .more a:hover {
  color: #31bca2;
}

.index_side .index_link_list {
  margin-bottom: 20px;
}
.index_side .index_link_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.index_side .index_link_list ul .index_link_item {
  width: calc((100% - 20px) / 2);
}
.index_side .index_link_list ul .index_link_item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_side .index_link_list ul .index_link_item a img {
  width: 100%;
  height: 100%;
}
.index_side .index_link_list ul .index_link_item a:hover img {
  opacity: 0.8;
}
.index_side .index_bnr_list {
  margin-bottom: 20px;
}
.index_side .index_bnr_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.index_side .index_bnr_list ul .index_bnr_item {
  width: calc((100% - 20px) / 2);
  border: 1px solid #D8D8D8;
}
.index_side .index_bnr_list ul .index_bnr_item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #969697;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_side .index_bnr_list ul .index_bnr_item a:hover {
  background: #ecfff6;
}
.index_side .index_bnr_list ul .index_bnr_item.twitter a::before {
  content: "";
  width: 33px;
  height: 22px;
  margin-right: 10px;
  background-size: contain !important;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_twitter.svg) no-repeat center center;
}
.index_side .index_bnr_list ul .index_bnr_item.facebook a::before {
  content: "";
  width: 33px;
  height: 22px;
  margin-right: 10px;
  background-size: contain !important;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_facebook.svg) no-repeat center center;
}
.index_side .index_bnr_list ul .index_bnr_item.instagram a::before {
  content: "";
  width: 33px;
  height: 22px;
  margin-right: 10px;
  background-size: contain !important;
  background: url(/careken/wp-content/themes/hyogocareken/images/icon_instagram.svg) no-repeat center center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  width: 100%;
  padding: 2em 0.8em;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}
.news_list .news_item .news_item_ttl a {
  color: #36bea0;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.news_date time {
  font-family: "Open Sans", sans-serif;
}

.contact_form table tr {
  padding: 20px 0;
  border-bottom: 1px dashed #aaa;
}
.contact_form table tr th {
  display: block;
  padding: 20px 0;
}
.contact_form table tr td {
  display: block;
  padding: 0 0 20px;
}
.contact_form table tr td input[type=text], .contact_form table tr td input[type=email], .contact_form table tr td input[type=tel] {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 3px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
}
.contact_form table tr td textarea {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 3px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
}
.contact_form table tr td input::-moz-placeholder, .contact_form table tr td textarea::-moz-placeholder {
  color: #999;
}
.contact_form table tr td input::placeholder, .contact_form table tr td textarea::placeholder {
  color: #999;
}
.contact_form table tr td span[class^=confirm-] {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 3px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
}
.contact_form .contact_form_btn {
  margin-top: 30px;
}
.contact_form .contact_form_btn input[type=button],
.contact_form .contact_form_btn input[type=submit] {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  background: #31bca2;
  color: #fff;
  font-weight: 500;
  border: 2px solid #31bca2;
  border-radius: 50vh;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact_form .contact_form_btn input[type=button]:hover,
.contact_form .contact_form_btn input[type=submit]:hover {
  background: #fff;
  color: #31bca2;
}
.contact_form .contact_form_btn input[type=button].back_button,
.contact_form .contact_form_btn input[type=submit].back_button {
  background: #B2B2B2;
  color: #000;
  border: 2px solid #B2B2B2;
}
.contact_form .contact_form_btn input[type=button].back_button:hover,
.contact_form .contact_form_btn input[type=submit].back_button:hover {
  background: #fff;
  color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  background: url(/careken/wp-content/themes/hyogocareken/images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
}
.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.mcon h1 span {
  position: relative;
  z-index: 1;
}
.mcon h2 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #D8D8D8;
}
.mcon h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100px;
  height: 2px;
  background: #31bca2;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #36bea0;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0.5em 0.3em;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #36bea0;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}
.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}
.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tab¥¹¥¿¥¤¥ë
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 415px) and (max-width: 768px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}/*# sourceMappingURL=sp.css.map */