@charset "UTF-8";
/*---------------------------------------------
 font
---------------------------------------------*/
@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium), local(Yu Gothic);
  font-weight: 500;
}
/*---------------------------------------------
 *
 *    CSS Reset & Base
 *
---------------------------------------------*/
/* Reset margin, padding, border
---------------------------------------------*/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
---------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
  outline: none;
}

/* Layout
---------------------------------------------*/
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
---------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/*----------------------------------
	common
----------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  color: #3c3c3c;
  background-color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック Medium", "YuGothic M", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  padding-bottom: 80px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 769px) {
  .pcOnly {
    display: block;
  }

  .spOnly {
    display: none;
  }

  a[href*="tel:"] {
    pointer-events: none;
  }
}
/*----------------------------------
	layout
----------------------------------*/
/* .ly_header
----------------------------------*/
.ly_header {
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 25px 0;
}

.page_home .ly_header {
  border-bottom: 2px solid #ea954f;
}

.ly_header_inner {
  max-width: 1286px;
  margin: 0 auto;
  padding: 0 20px;
}

.ly_common {
  width: 100%;
}

.ly_base_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.ly_small_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ly_big_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

/*----------------------------------
	element
----------------------------------*/
.el_common_title {
  display: inline-block;
  background-color: #d7d3bb;
  padding: 10px 25px;
  margin-bottom: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
}
.el_common_title img {
  height: 18px;
  width: auto;
}

/*----------------------------------
	helper
----------------------------------*/
.hp_bgc_white {
  background-color: #fff;
}

/*----------------------------------
	header
----------------------------------*/
.bl_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_logo {
  width: 300px;
  height: auto;
}

.bl_header_utility {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .bl_header_utility_sp {
    display: none !important;
  }
}
.bl_headerNav {
  display: flex;
  font-size: 1.5rem;
  /* Btn Hover */
}
.bl_headerNav li {
  border-left: 1px solid #333;
  position: relative;
}
.bl_headerNav li:last-of-type {
  border-right: 1px solid #333;
}
.bl_headerNav a {
  transition: 0.5s;
  padding: 0 18px;
  white-space: nowrap;
}
.bl_headerNav li a:after {
  position: absolute;
  content: "";
  display: block;
  left: 37.5%;
  width: 25%;
  height: 1px;
  bottom: 0px;
  transition: all 0.3s ease;
}
.bl_headerNav li a:hover:after {
  background: #ea954f;
  bottom: -7px;
}

.bl_header_tel {
  display: none;
}

.bl_header_tel_txt {
  font-size: 1.4rem;
  margin-right: 15px;
}
.bl_header_tel_txt span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.bl_header_tel_number {
  font-size: 2.8rem;
  color: #ea954f;
}

/*----------------------------------
	bl_pageLink
----------------------------------*/
.bl_pageLink {
  background-color: #efeee3;
  padding: 50px 0;
}

.bl_pageLink_inner {
  padding: 0 20px;
  margin: 0 auto;
}

.bl_pageLink_title {
  color: #ea954f;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 40px;
}

.bl_pageLink_contents {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
}

.bl_pageLink_box {
  width: 30%;
  margin-bottom: 30px;
  text-align: center;
}
.bl_pageLink_box a {
  display: block;
  transition: 0.5s;
}
.bl_pageLink_box a:hover {
  opacity: 0.7;
}

.bl_pageLink_box:nth-of-type(3n) {
  margin-bottom: 0;
}

.bl_pageLink_pict {
  margin-bottom: 10px;
}
/*----------------------------------
	footer
----------------------------------*/
.ly_footer {
  border-top: 2px solid #dadada;
  margin-top: 80px;
}

.ly_footer_inner {
  max-width: 1286px;
  margin: 0 auto;
  padding: 40px 20px;
}

.bl_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
}

.bl_footer_info_logo {
  margin-bottom: 30px;
}

.bl_footer_info_address {
  font-size: 1.4rem;
  line-height: 1.6;
}

.bl_footer_site {
  font-size: 1.4rem;
  text-align: right;
}

.bl_footer_group {
  margin-bottom: 10px;
}
.bl_footer_group a:hover {
  opacity: 0.7;
}

.bl_footer_copyright {
  font-size: 1.2rem;
}

/*---------------------------------------------
	.bl_cta
---------------------------------------------*/
.bl_cta {
  background-color: black;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 80px;
  z-index: 100;
}

.bl_cta_contents {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bl_cta_text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-right: 30px;
}

.bl_cta_contact {
  display: flex;
  align-items: center;
}

.bl_cta_tel {
  display: block;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  margin-right: 20px;
}

.bl_cta_tel_time {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}

.bl_cta_btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  background-color: #da8b52;
  border-radius: 5px;
  transition: 0.5s;
}
.bl_cta_btn a:hover {
  background-color: #fff;
  color: #da8b52;
}

/*---------------------------------------------
	中ページ
---------------------------------------------
	.bl_pageTitle
---------------------------------------------*/
.bl_pageTitle {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background-color: #efeee3;
  color: #ea954f;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.1rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 769px) {
  .bl_pageTitle {
    padding: 30px 0;
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
/*----------------------------------
	bl_policy
----------------------------------*/
main#page_policy {
  padding-top: 90px;
}
main#page_policy .bl_pageTitle {
  margin-bottom: 70px;
}

.bl_policy_title {
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  padding: 100px 0;
  background-color: #fff;
}

.bl_policy {
  padding: 0;
  margin-bottom: 100px;
}

.bl_policy_wrapper {
  margin: 0 30px;
}
.bl_policy_wrapper h2 {
  font-size: 2.4rem;
  padding-left: 20px;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.bl_policy_wrapper ul {
  list-style: disc;
  margin-top: 1rem;
  margin-left: 1rem;
  padding-left: 3.5rem;
  line-height: 1.8;
}
.bl_policy_wrapper p {
  line-height: 1.8;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  main#page_policy {
    padding-top: 60px;
  }
  main#page_policy .bl_pageTitle {
    margin-bottom: 50px;
  }

  .bl_policy_title {
    font-size: 5.6vw;
    padding: 60px 0;
  }

  .bl_policy {
    padding: 0;
    margin-bottom: 50px;
  }

  .bl_policy_wrapper {
    margin: 0;
  }
  .bl_policy_wrapper h2 {
    font-size: 1.6rem;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .bl_policy_wrapper ul {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
  .bl_policy_wrapper p {
    margin: 0 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  /*----------------------------------
  	common
  ----------------------------------*/
  body {
    padding-bottom: 80px;
  }

  /*----------------------------------
  	layout
  ----------------------------------*/
  /* .ly_header
  ----------------------------------*/
  .ly_header {
    padding: 15px 0;
  }

  .ly_header_inner {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }

  .ly_common {
    width: 100%;
  }

  .ly_base_inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
  }

  .ly_small_inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  .ly_base_inner .ly_small_inner {
    padding: 0;
  }

  .ly_big_inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  /*----------------------------------
  	element
  ----------------------------------*/
  .el_common_title {
    padding: 10px 15px;
  }
  .el_common_title img {
    height: 16px;
    width: auto;
  }

  /*----------------------------------
  	helper
  ----------------------------------*/
  .hp_bgc_white {
    background-color: #fff;
  }

  /*----------------------------------
  	header
  ----------------------------------*/
  .bl_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bl_header_logo {
    width: 210px;
    height: auto;
  }

  .bl_header_utility {
    display: none;
  }

  .bl_header_utility_sp {
    display: none;
  }

  .bl_headerNav_sp {
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    background-color: #efeee3;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    font-size: 1.8rem;
    overflow: auto;
  }
  .bl_headerNav_sp ul {
    margin-bottom: 40px;
  }
  .bl_headerNav_sp li {
    text-align: center;
  }
  .bl_headerNav_sp li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .bl_header_tel_sp {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .bl_header_tel_title_sp {
    margin-bottom: 7px;
    font-weight: bold;
  }

  .bl_header_tel_number_sp {
    font-size: 3.6rem;
    color: #ea954f;
    margin-bottom: 7px;
  }

  .bl_header_form_sp a {
    display: block;
    border-radius: 5px;
    padding: 10px 40px 5px;
    text-align: center;
    color: #fff;
    background-color: #ea954f;
    line-height: 1.4;
    font-size: 1.6rem;
    font-weight: bold;
  }

  /* メニューアイコン設定 */
  #bl_headerNav_toggle {
    position: fixed;
    top: 18px;
    right: 15px;
    z-index: 10;
  }

  .bl_headerNav_trigger,
.bl_headerNav_trigger span {
    display: inline-block;
    transition: all 0.4s;
  }

  .bl_headerNav_trigger {
    position: relative;
    width: 40px;
    height: 23px;
  }

  .bl_headerNav_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3c3c3c;
  }

  .bl_headerNav_trigger:hover {
    cursor: pointer;
  }

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

  .bl_headerNav_trigger span:nth-of-type(2) {
    top: 10px;
    background-color: #3c3c3c;
  }

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

  .bl_headerNav_trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    width: 100%;
    color: #3c3c3c;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
  }

  .bl_headerNav_trigger.active::after {
    color: #fff;
  }

  /* メニューアイコン変形設定 */
  .bl_headerNav_trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #3c3c3c;
    border-radius: 4px;
    transition: all 0.4s;
  }

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

  .bl_headerNav_trigger.active span:nth-of-type(3)::after {
    background-color: #3c3c3c;
  }

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

  .bl_headerNav_trigger.active span:nth-of-type(2)::after {
    transform: rotate(90deg);
    background-color: #3c3c3c;
  }

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

  /*----------------------------------
  	bl_pageLink
  ----------------------------------*/
  .bl_pageLink {
    padding: 30px 0;
  }

  .bl_pageLink_inner {
    padding: 0 20px;
  }

  .bl_pageLink_title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .bl_pageLink_contents {
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }

  .bl_pageLink_box {
    width: 48%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .bl_pageLink_box:nth-of-type(3n) {
    margin-right: 0;
    margin-bottom: 0;
  }

  .bl_pageLink_pict {
    margin-bottom: 7px;
  }
  .bl_pageLink_txt {
    font-size: 1.4rem;
  }

  /*----------------------------------
  	footer
  ----------------------------------*/
  .ly_footer {
    margin-top: 60px;
  }

  .ly_footer_inner {
    padding: 40px 20px;
  }

  .bl_footer {
    flex-direction: column;
    align-items: center;
  }

  .bl_footer_info {
    margin-bottom: 25px;
  }

  .bl_footer_info_logo {
    margin-bottom: 20px;
  }
  .bl_footer_info_logo img {
    max-width: 300px;
  }

  .bl_footer_info_address {
    font-size: 1.4rem;
  }

  .bl_footer_site {
    font-size: 1.4rem;
    text-align: center;
  }

  .bl_footer_group {
    margin-bottom: 10px;
  }
  .bl_footer_copyright {
    font-size: 1.2rem;
  }

  /*----------------------------------
  	footer
  ----------------------------------*/
  .ly_footer_inner {
    width: 100%;
    padding: 30px 15px;
  }

  .bl_footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bl_footer_info_operation {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .bl_footer_btn a {
    margin-bottom: 40px;
  }
  /*---------------------------------------------
  	.bl_cta
  ---------------------------------------------*/
  .bl_cta {
    padding: 7px;
  }

  .bl_cta_contents {
    flex-direction: column;
  }

  .bl_cta_text {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .bl_cta_tel {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-right: 10px;
  }

  .bl_cta_tel_time {
    font-size: 1.2rem;
  }

  .bl_cta_btn a {
    font-size: 1.4rem;
    padding: 10px 10px;
  }
}
/*----------------------------------
	home
----------------------------------*/
main#page_home {
  padding-top: 70px;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  main#page_home {
    padding-top: 93px;
  }
}
/*----------------------------------
	hero
----------------------------------*/
@media screen and (min-width: 769px) {
  .ly_hero {
    width: 100%;
    padding: 50px 0 75px;
  }

  .ly_hero_inner {
    width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .bl_hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 500px;
  }

  .bl_hero_catch {
    position: absolute;
    padding-top: 30px;
    z-index: 10;
    padding-left: 15px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 5.5rem;
    font-weight: 400;
  }

  .bl_hero_media {
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 2;
  }

  .bl_hero_media {
    width: 1054px;
    height: 560px;
  }

  .bl_hero_media_sp {
    display: none;
  }

  .bl_hero_contents {
    width: 100%;
    height: 780px;
    margin-top: -135px;
    margin-bottom: 130px;
  }

  .bl_hero_bg {
    width: 100%;
    background-color: #efeee3;
  }

  .bl_hero_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 1270px;
    margin: 0 auto;
    padding: 260px 20px 80px;
  }

  .bl_hero_read {
    margin-left: 50px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 2rem;
    line-height: 2.2;
  }

  .bl_hero_pict {
    position: absolute;
    right: 20px;
    top: 210px;
  }

  .el_title_wrap {
    width: 1270px;
    margin: 0 auto;
  }

  .el_title_inner {
    width: 886px;
    margin: 0 auto;
    position: relative;
  }

  .el_title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: "Shippori Mincho B1", serif;
    white-space: nowrap;
    font-weight: 400;
    font-size: 5.5rem;
  }

  /*
  .el_title_life {
    width: 531px;
  }
  .el_title_rehavili {
    width: 775px;
  }
  .el_title_meal {
    width: 602px;
  }
  */
  .bl_boxCont {
    width: 100%;
    margin-bottom: 120px;
    background: linear-gradient(to right, #efeee3 45%, #FFF 45%, #FFF);
  }

  .bl_boxCont_bg {
    width: 1270px;
    margin: 0 auto;
    margin-top: -350px;
    background: linear-gradient(to right, #efeee3 45%, #FFF 45%, #FFF);
  }

  .bl_boxCont_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1270px;
    margin: 0 auto;
    padding: 400px 20px 80px;
  }

  .bl_boxCont_read {
    padding-left: 90px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 2rem;
    line-height: 2.2;
  }

  .bl_boxCont_btn {
    margin-top: 120px;
    margin-right: 190px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.8rem;
  }
  .bl_boxCont_btn a {
    padding: 15px 25px 15px 40px;
    background-color: #efeee3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: 0.5s;
  }
  .bl_boxCont_btn a:hover {
    opacity: 0.6;
  }
  .bl_boxCont_btn a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 70px;
    background-color: #ababab;
    top: 50%;
    left: -50px;
  }

  .bl_boxContRev {
    width: 100%;
    margin-bottom: 120px;
    background: linear-gradient(to left, #efeee3 45%, #FFF 45%, #FFF);
  }

  .bl_boxContRev_bg {
    width: 1270px;
    margin: 0 auto;
    margin-top: -350px;
    background: linear-gradient(to left, #efeee3 45%, #FFF 45%, #FFF);
  }

  .bl_boxContRev_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    width: 1270px;
    margin: 0 auto;
    padding: 390px 20px 80px;
  }

  .bl_boxContRev_read {
    padding-right: 30px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 2rem;
    line-height: 2.2;
  }

  .bl_boxContRev_btn {
    margin-bottom: 50px;
    margin-left: 210px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.8rem;
  }
  .bl_boxContRev_btn a {
    padding: 15px 40px;
    background-color: #efeee3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: 0.5s;
  }
  .bl_boxContRev_btn a:hover {
    opacity: 0.6;
  }
  .bl_boxContRev_btn a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 70px;
    background-color: #ababab;
    top: 50%;
    left: -50px;
  }
}
@media screen and (max-width: 768px) {
  .ly_hero {
    width: 100%;
  }

  .ly_hero_inner {
    width: 100%;
    margin: 0 auto;
    padding: 10% 20px 0;
  }

  .bl_hero {
    position: relative;
  }

  .bl_hero_catch {
    position: absolute;
    margin-top: -5%;
    z-index: 10;
    padding-left: 10px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 4rem;
  }

  .bl_hero_media {
    display: none;
  }

  .bl_hero_media_sp {
    display: block;
  }

  .bl_hero_contents {
    width: 100%;
    margin-top: -135px;
    margin-bottom: 130px;
  }

  .bl_hero_bg {
    width: 100%;
    background-color: #efeee3;
    margin-bottom: 70%;
  }

  .bl_hero_inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 190px 20px 120px;
  }

  .bl_hero_read {
    width: 80%;
    margin-bottom: 40px;
    padding-left: 5px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
    line-height: 2.2;
  }

  .bl_hero_pict {
    position: absolute;
    right: 0;
    width: 65%;
    padding-bottom: 150%;
  }

  .el_title_wrap {
    width: 100%;
    margin: 0 auto;
  }

  .el_title_inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
  }

  .el_title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    white-space: nowrap;
    font-weight: 400;
  }

  .el_title.el_title_rehavili {
    transform: translate(-50%, -80%);
  }

  .el_title_rehavili {
    line-height: 1.4;
  }

  .el_title.el_title_meal {
    transform: translate(-50%, -80%);
  }

  .el_title_meal {
    line-height: 1.4;
  }

  /*
  .el_title_life {
    width: 70%;
  }
  .el_title.el_title_rehavili {
    transform: translate(-50%, -85%);
  }
  .el_title_rehavili {
    width: 100%;
    padding: 0 18%;
  }
  .el_title.el_title_meal {
    transform: translate(-50%, -90%);
  }
  .el_title_meal {
    padding: 0 25%;
    width: 100%;
  }
  */
  .bl_boxCont {
    margin-bottom: 60%;
  }

  .bl_boxCont:last-of-type {
    margin-bottom: 40%;
  }

  .bl_boxCont_bg {
    width: 100%;
    margin: 0 auto;
    margin-top: -30%;
    background: linear-gradient(to right, #efeee3 85%, #FFF 85%, #FFF);
  }

  .bl_boxCont_inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40% 20px 50px;
  }

  .bl_boxCont_read {
    width: 80%;
    padding-left: 5px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
    line-height: 2.2;
  }

  .bl_boxCont_btn {
    position: absolute;
    bottom: -15%;
    width: calc(100% - 50px);
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
  }
  .bl_boxCont_btn a {
    padding: 15px 25px 15px 40px;
    background-color: #efeee3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  .bl_boxCont_btn a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 50px;
    background-color: #ababab;
    top: 50%;
    left: -30px;
  }

  .bl_boxContRev {
    margin-bottom: 60%;
  }

  .bl_boxContRev_bg {
    width: 100%;
    margin: 0 auto;
    margin-top: -30%;
    background: linear-gradient(to left, #efeee3 87%, #FFF 87%, #FFF);
  }

  .bl_boxContRev_inner {
    position: relative;
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 40% 0px 50px 13%;
  }

  .bl_boxContRev_read {
    font-family: "Shippori Mincho B1", serif;
    white-space: nowrap;
    font-size: 1.6rem;
    line-height: 2.2;
  }

  .bl_boxContRev_btn {
    position: absolute;
    bottom: -15%;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
  }
  .bl_boxContRev_btn a {
    padding: 15px 20px 15px 30px;
    background-color: #efeee3;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  .bl_boxContRev_btn a:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 50px;
    background-color: #ababab;
    top: 50%;
    left: -30px;
  }
}
/*----------------------------------
	slick 画面読み込み時に縦並び表示しないように
----------------------------------*/
.slider {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider.slick-initialized {
  opacity: 1;
}

/*----------------------------------
	fade
----------------------------------*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*----------------------------------
	blur
----------------------------------*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*====================================
アニメーション設定
===================================*/
/* アニメーションスタートの遅延時間*/
.delay-time03 {
  animation-delay: 0.3s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time09 {
  animation-delay: 0.9s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

/* アニメーション自体が変化する時間*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

/*----------------------------------
	life
----------------------------------*/
main#page_life {
  padding-top: 90px;
}
main#page_life .bl_pageTitle {
  margin-bottom: 40px;
}

.ly_life_title {
  width: 100%;
  margin: 0 auto;
  height: 570px;
  background-image: url(../img/life_bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ly_life_title .bl_life_note {
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 1.2rem;
}

.ly_life_title_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ly_life_title_innerTxt {
  position: absolute;
  top: 60px;
  margin: 0 20px;
}
.ly_life_title_innerTxt h1 {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
  padding-right: 10px;
}
.ly_life_title_innerTxt h1:before {
  content: "";
  position: absolute;
  left: -100vw;
  right: 0;
  bottom: -10px;
  border-bottom: 2px solid #ea954f;
}

.ly_life_title_sp {
  display: none;
}

.bl_life {
  padding: 45px 0 100px;
}

.bl_life_read {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}

.bl_life_explain {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}

.bl_life_explain_pict {
  width: 320px;
  margin-right: 100px;
}

.bl_life_explain_txt {
  width: calc(100% - 420px);
}

.bl_life_explain_txtMain {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 85px;
  text-align: right;
}

.bl_life_explain_txtSub {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}

.bl_life_explain_sp {
  display: none;
}

.bl_life_facility_boxWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bl_life_facility_box {
  width: 48%;
}

.bl_life_facility_box:nth-of-type(-n+2) {
  margin-bottom: 50px;
}

.bl_life_facility_title {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2rem;
  padding: 20px 0 15px;
  margin-bottom: 20px;
}

.bl_life_facility_title:after {
  position: absolute;
  background-color: #efeee3;
  content: "";
  width: 207px;
  height: 83px;
  top: -28px;
  left: -20px;
  z-index: -1;
}

.bl_life_facility_txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  main#page_life {
    padding-top: 60px;
  }
  main#page_life .bl_pageTitle {
    margin-bottom: 20px;
  }

  .ly_life_title {
    height: auto;
    background-image: none;
  }
  .ly_life_title_inner {
    width: 100%;
  }

  .ly_life_title_innerTxt {
    margin: 0 20px;
    top: -18px;
  }
  .ly_life_title_innerTxt h1 img {
    height: 26px;
    width: auto;
  }
  .bl_lifePict_catch {
    display: none;
  }

  .ly_life_title_sp {
    display: block;
  }

  .ly_life_title_sub_sp {
    margin-top: 5px;
  }

  .bl_life {
    clear: both;
    padding: 30px 0 70px;
  }

  .bl_life_read {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    margin-bottom: 30px;
  }

  .bl_life_explain {
    display: none;
  }

  .bl_life_explain_pict {
    width: 320px;
    margin-right: 100px;
  }

  .bl_life_explain_txt {
    width: calc(100% - 420px);
  }

  .bl_life_explain_txtMain {
    margin-bottom: 85px;
    text-align: right;
  }

  .bl_life_explain_txtSub {
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
  }

  .bl_life_explain_sp {
    display: block;
    width: 100%;
    margin-bottom: 70px;
  }

  .bl_life_explain_txtMain_sp {
    text-align: right;
    margin-bottom: 50px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.8rem;
    line-height: 2;
  }
  .bl_life_explain_txtMain_sp img {
    width: 80%;
    max-width: 350px;
  }

  .bl_life_explain_pict_sp {
    width: 45%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .bl_life_facility_boxWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .bl_life_facility_box {
    width: 100%;
  }

  .bl_life_facility_box:not(:last-of-type) {
    margin-bottom: 25px;
  }

  .bl_life_facility_title {
    position: relative;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
    padding: 15px 0 5px;
    margin-bottom: 20px;
  }

  .bl_life_facility_title:after {
    position: absolute;
    background-color: #efeee3;
    content: "";
    width: 170px;
    height: 70px;
    top: -28px;
    left: -20px;
    z-index: -1;
  }

  .bl_life_facility_txt {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
/*----------------------------------
	service
----------------------------------*/
main#page_service {
  padding-top: 90px;
}
main#page_service .bl_pageTitle {
  margin-bottom: 40px;
}

.ly_service_title {
  width: 100%;
  height: 570px;
  background-image: url(../img/service01_bg.jpg);
  background-size: cover;
  background-position: center;
}

.ly_service_title_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ly_service_title_innerTxt {
  position: absolute;
  top: 60px;
  margin: 0 20px;
}
.ly_service_title_innerTxt h1 {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
  padding-right: 10px;
}
.ly_service_title_innerTxt h1:before {
  content: "";
  position: absolute;
  left: -100vw;
  right: 0;
  bottom: -10px;
  border-bottom: 2px solid #ea954f;
}

.ly_service_title_sp {
  display: none;
}

.bl_service {
  padding: 45px 0 100px 100px;
}

.bl_service_read {
  width: 678px;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  margin-bottom: 55px;
}

.bl_service_explain {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bl_service_explain_txt {
  width: 40%;
  min-width: 300px;
  padding-right: 15px;
}

.bl_service_explain_catch {
  margin-bottom: 35px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  line-height: 1.6;
}
.bl_service_explain_catch span {
  font-size: 4.2rem;
}

.bl_service_explain_read {
  margin-bottom: 50px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  line-height: 2;
}

.bl_service_explain_txtSub {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.bl_service_explain_pict {
  width: 60%;
}
.bl_service_explain_pict p {
  font-size: 1.2rem;
  margin-top: 5px;
}

.bl_service_explain_sp {
  display: none;
}

/* service02
----------------------------------*/
.ly_service02_bg {
  width: 100%;
  height: 570px;
  background-image: url(../img/service02_bg.jpg);
  background-size: cover;
  background-position: center;
}

.bl_service02 {
  padding: 45px 0;
}

.bl_service02_system {
  display: flex;
  margin-bottom: 60px;
}

.bl_service02_system_txt {
  width: 430px;
  margin-right: 50px;
}
.bl_service02_system_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.bl_service02_system_list {
  width: 615px;
}
.bl_service02_system_list table {
  width: 100%;
  border: 3px solid #666;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.bl_service02_system_list th, .bl_service02_system_list td {
  padding: 7px 10px;
  border: 1px solid #666;
}
.bl_service02_system_list td:nth-last-of-type(2) {
  text-align: center;
}

.el_icon_circle {
  width: 15px;
  height: auto;
}

.el_icon_triangle {
  width: 17px;
  height: auto;
}

.el_icon_cross {
  width: 12px;
  height: auto;
}

.bl_service02_system_listTitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.bl_service02_system_listNote {
  font-size: 1.4rem;
  line-height: 1.5;
}

.bl_service02_together_txt {
  width: 680px;
  margin-bottom: 30px;
}
.bl_service02_together_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.bl_service02_together_sp {
  padding: 30px 30px 20px;
  margin-bottom: 50px;
  border: 2px solid #efeee3;
  background-color: rgba(239, 238, 227, 0.5);
}

.bl_service02_listClinicSp_catch {
  margin-bottom: 15px;
  font-weight: bold;
}

.bl_service02_listClinicSp_name {
  font-weight: bold;
  color: #ea954f;
  margin-bottom: 15px;
  font-size: 3.6rem;
}

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

.bl_service02_listClinicSp_cont {
  width: calc(100% - 230px);
}

.bl_service02_listClinicSp_pict {
  width: 200px;
}
.bl_service02_listClinicSp_pict img {
  border: 5px solid #fff;
  margin-bottom: 10px;
}
.bl_service02_listClinicSp_pict figcaption {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
}

.bl_service02_listClinicSp_adress {
  font-size: 1.6rem;
  margin-bottom: 25px;
  letter-spacing: 0.05rem;
}

.bl_service02_listClinicSp_txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}

.bl_service02_together_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bl_service02_listClinic:nth-of-type(1),
.bl_service02_listClinic:nth-of-type(3) {
  border-left: 2px solid #efeee3;
}

.bl_service02_listClinic:last-of-type {
  border-right: none;
}

.bl_service02_listClinic {
  width: 50%;
  padding: 15px 40px;
  margin-bottom: 40px;
  border-right: 2px solid #efeee3;
}

.bl_service02_listClinic_name {
  font-weight: bold;
  color: #ea954f;
  margin-bottom: 15px;
}

.bl_service02_listClinic_adress {
  font-size: 1.4rem;
  margin-bottom: 25px;
  letter-spacing: 0.05rem;
}

.bl_service02_listClinic_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

/* service03
----------------------------------*/
.ly_service03_bg {
  width: 100%;
  height: 570px;
  background-image: url(../img/service03_bg.png);
  background-size: cover;
  background-position: center;
}

.bl_service03 {
  padding: 45px 0;
}

.bl_service03_recreation {
  display: flex;
}

.bl_service03_recreation_txt {
  width: 680px;
}
.bl_service03_recreation_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 768px) {
  main#page_service {
    padding-top: 60px;
  }
  main#page_service .bl_pageTitle {
    margin-bottom: 20px;
  }

  .ly_service_title {
    height: auto;
    background-image: none;
  }

  .ly_service_title_inner {
    width: 100%;
    position: relative;
  }

  .ly_service_title_innerTxt {
    margin: 0 20px;
    top: -18px;
  }
  .ly_service_title_innerTxt h1 img {
    height: 26px;
    width: auto;
  }
  .ly_service_title_catch {
    display: none;
  }

  .ly_service_title_sp {
    display: block;
  }

  .ly_service_title_sub_sp {
    margin-top: 5px;
  }

  .bl_service {
    clear: both;
    padding: 45px 0 50px 0;
  }

  .bl_service_read {
    width: 100%;
    margin-bottom: 0;
  }

  .bl_service_explain {
    display: none;
  }

  .bl_service_explain_sp {
    display: block;
    margin-top: 40px;
  }

  .bl_service_explain_txt_sp {
    width: 100%;
  }

  .bl_service_explain_catch_sp {
    margin-bottom: 35px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .bl_service_explain_catch_sp span {
    font-size: 4.2rem;
  }

  .bl_service_explain_read_sp {
    margin-bottom: 25px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.8rem;
    line-height: 2;
  }

  .bl_service_explain_pict_sp {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 30px;
  }

  /* service02
  ----------------------------------*/
  .ly_service02_bg {
    display: none;
  }

  .ly_service02_pict {
    width: 100%;
  }

  .bl_service02 {
    padding: 30px 0;
  }

  .bl_service02_system {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .bl_service02_system_txt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .bl_service02_system_list {
    width: 100%;
  }
  .bl_service02_system_list table {
    width: 100%;
    font-size: 1.4rem;
  }
  .bl_service02_system_list th, .bl_service02_system_list td {
    padding: 7px 10px;
  }
  .el_icon_circle {
    width: 15px;
    height: auto;
  }

  .el_icon_triangle {
    width: 17px;
    height: auto;
  }

  .el_icon_cross {
    width: 12px;
    height: auto;
  }

  .bl_service02_together_txt {
    width: 100%;
    margin-bottom: 30px;
  }
  .bl_service02_together_sp {
    padding: 25px 15px 10px;
    margin-bottom: 20px;
  }

  .bl_service02_listClinicSp_catch {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .bl_service02_listClinicSp_name {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  .bl_service02_listClinicSp_wrap {
    display: flex;
    flex-direction: column;
  }

  .bl_service02_listClinicSp_cont {
    width: 100%;
  }

  .bl_service02_listClinicSp_pict {
    width: 100%;
    text-align: center;
  }
  .bl_service02_listClinicSp_pict img {
    width: 200px;
    height: auto;
    border: 5px solid #fff;
    margin-bottom: 10px;
  }
  .bl_service02_listClinicSp_pict figcaption {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.4;
  }

  .bl_service02_listClinicSp_adress {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .bl_service02_listClinicSp_txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .bl_service02_together_list {
    flex-direction: column;
    border-left: none;
  }

  .bl_service02_listClinic:nth-of-type(1),
.bl_service02_listClinic:nth-of-type(3) {
    border-left: none;
  }

  .bl_service02_listClinic {
    width: 100%;
    padding: 25px 20px;
    margin-bottom: 0px;
    border-right: none;
  }

  .bl_service02_listClinic:not(:last-of-type) {
    border-bottom: 1px solid #efeee3;
  }

  .bl_service02_listClinic_adress {
    margin-bottom: 15px;
  }

  /* service03
  ----------------------------------*/
  .ly_service03_bg {
    display: none;
  }

  .ly_service03_pict {
    width: 100%;
  }

  .bl_service03 {
    padding: 30px 0;
  }

  .bl_service03_recreation_txt {
    width: 100%;
  }
}
/*----------------------------------
	bl_price
----------------------------------*/
main#page_price {
  padding-top: 90px;
}
main#page_price .bl_pageTitle {
  margin-bottom: 70px;
}

.bl_price_outer {
  padding: 70px 0;
  position: relative;
}
.bl_price_outer h1 {
  display: inline-block;
  position: relative;
  padding-right: 10px;
}
.bl_price_outer h1:before {
  content: "";
  position: absolute;
  left: -50vw;
  right: 0;
  bottom: -10px;
  border-bottom: 2px solid #ea954f;
}

.bl_price {
  padding-bottom: 70px;
}

.bl_price_floor {
  margin-bottom: 80px;
}

.bl_price_floor_title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #ea954f;
}

.bl_price_floor_pictType {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.bl_price_floor_pictMap {
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.bl_price_typeA_title {
  background-color: #ea954f;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.8rem;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}

.bl_price_typeA_title::first-letter {
  font-size: 2rem;
}

.bl_price_typeA_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.bl_price_typeA_headTitle span {
  color: #ea954f;
  padding: 3px 10px;
  border: 1px solid #ea954f;
  border-radius: 5px;
  margin-right: 10px;
}

.el_btn_room {
  text-decoration: underline;
}

.bl_price table {
  width: 100%;
  border: 2px solid #666;
  border-collapse: collapse;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 30px;
}
.bl_price table th {
  border: 1px solid #666;
  padding: 5px 5px;
  font-weight: normal;
  line-height: 1.4;
}
.bl_price table td {
  border: 1px solid #666;
  padding: 7px 5px;
}
.bl_price table td small {
  font-size: 1.2rem;
}
.bl_price table td.hp_price {
  text-align: right;
}
.bl_price table th[scope=col] {
  background-color: #fce2c4;
}
.bl_price table.monthly th[scope=col] {
  background-color: #e9f1ce;
}
.bl_price table th.typeA1 {
  background-color: #fffbce;
}
.bl_price table th.typeA2 {
  background-color: #fce5ee;
}
.bl_price table th.typeA3 {
  background-color: #f9b6af;
}
.bl_price table th.typeB {
  background-color: #dcf1f9;
}
.bl_price table th.typeC {
  background-color: #abc6e6;
}
.bl_price table th.typeD {
  background-color: #c5a2ca;
}

.hp_table_midium {
  width: 800px;
}

.hp_table_small {
  width: 600px;
}

.el_price_note {
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.bl_price_note {
  width: 800px;
  font-size: 1.4rem;
}

.bl_price_noteTitle {
  color: #a88220;
  margin-bottom: 5px;
}

.bl_price_noteTxt {
  line-height: 1.5;
  margin-bottom: 30px;
}
.bl_price_noteTxt img {
  margin: 10px 0;
}

.bl_price_typeB_title {
  background-color: #a7ce5f;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.8rem;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}

.bl_price_typeB_title::first-letter {
  font-size: 2rem;
}

.hp_txt_right {
  text-align: right;
}

table.monthly {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  main#page_price {
    padding-top: 60px;
  }
  main#page_price .bl_pageTitle {
    margin-bottom: 50px;
  }

  .bl_price_outer {
    padding: 50px 0 30px;
  }
  .bl_price_outer h1 img {
    height: 26px;
    width: auto;
  }
  .bl_price {
    padding-bottom: 50px;
  }

  .bl_price {
    padding-bottom: 70px;
  }

  .bl_price_floor {
    margin-bottom: 60px;
  }

  .bl_price_floor_title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .bl_price_floor_pictType {
    margin-bottom: 60px;
  }

  .bl_price_floor_pictMap {
    padding: 0;
    margin-bottom: 60px;
  }

  .bl_price_typeA_title {
    margin-bottom: 20px;
    padding: 5px 10px;
  }

  .bl_price_typeA_head {
    margin-bottom: 15px;
  }

  .el_btn_room {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .bl_price table {
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .bl_price table th {
    padding: 5px 5px;
  }
  .bl_price table td {
    padding: 7px 5px;
  }
  .bl_price table td small {
    font-size: 1rem;
  }
  .hp_table_midium {
    width: 100%;
  }

  .hp_table_small {
    width: 100%;
  }

  .bl_price_note {
    width: 100%;
  }

  .bl_price_noteTxt img {
    margin: 10px 0;
  }

  .bl_price_typeB_title {
    margin-bottom: 20px;
    padding: 5px 10px;
  }

  .tableBox {
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 30px;
  }

  .tableBox::-webkit-scrollbar {
    height: 10px;
  }

  .tableBox::-webkit-scrollbar-track {
    margin: 0;
    background: #ccc;
    border-radius: 5px;
  }

  .tableBox::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
}
/*----------------------------------
	bl_facility
----------------------------------*/
main#page_facility {
  padding-top: 90px;
}
main#page_facility .bl_pageTitle {
  margin-bottom: 70px;
}

.bl_facilty_outer {
  position: relative;
}
.bl_facilty_outer h1 {
  display: inline-block;
  position: absolute;
  top: -25px;
  padding-right: 10px;
}
.bl_facilty_outer h1:before {
  content: "";
  position: absolute;
  left: -50vw;
  right: 0;
  bottom: -10px;
  border-bottom: 2px solid #ea954f;
}

.bl_facilty {
  display: flex;
  padding-bottom: 70px;
}

.bl_facilty dl {
  font-size: 1.6rem;
  line-height: 2;
}
.bl_facilty dl dt {
  float: left;
}
.bl_facilty dl dd {
  margin-left: 7.5rem;
}
.bl_facilty dl:first-of-type {
  margin-right: 100px;
}

@media screen and (max-width: 768px) {
  main#page_facility {
    padding-top: 60px;
  }
  main#page_facility .bl_pageTitle {
    margin-bottom: 50px;
  }

  .bl_facilty_outer h1 {
    top: -18px;
  }
  .bl_facilty_outer h1 img {
    height: 26px;
    width: auto;
  }
  .bl_facilty {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
  }

  .bl_facilty dl {
    font-size: 1.4rem;
  }
  .bl_facilty dl:first-of-type {
    margin-right: 0;
  }
}
/*----------------------------------
	bl_access
----------------------------------*/
main#page_access {
  padding-top: 90px;
}
main#page_access .bl_pageTitle {
  margin-bottom: 70px;
}

.bl_access_outer {
  position: relative;
}
.bl_access_outer h1 {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding-right: 10px;
}
.bl_access_outer h1:before {
  content: "";
  position: absolute;
  left: -50vw;
  right: 0;
  bottom: -10px;
  border-bottom: 2px solid #ea954f;
}

.bl_access {
  padding-bottom: 70px;
}

.bl_access_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
}

.bl_access_txt {
  font-size: 1.6rem;
  padding-right: 10px;
}

.bl_access_adress {
  margin-bottom: 30px;
}

.bl_access_method {
  display: flex;
}

.bl_access_method_rail {
  margin-right: 25px;
}

.bl_access_method_railTitle {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}

.bl_access_method_railTxt {
  line-height: 1.5;
}

.bl_access_method_carTitle {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}

.bl_access_method_carTxt {
  line-height: 1.5;
}

.bl_access_gmap {
  width: 700px;
}

@media screen and (max-width: 768px) {
  main#page_access {
    padding-top: 60px;
  }
  main#page_access .bl_pageTitle {
    margin-bottom: 50px;
  }

  .bl_access_outer h1 img {
    height: 26px;
    width: auto;
  }
  .bl_access_inner {
    padding-left: 0;
    padding-bottom: 50px;
    flex-direction: column;
  }

  .bl_access_txt {
    font-size: 1.4rem;
    padding-right: 0;
  }

  .bl_access_adress {
    margin-bottom: 30px;
  }

  .bl_access_method {
    display: flex;
    flex-direction: column;
  }

  .bl_access_method_rail {
    margin-right: 0;
    margin-bottom: 35px;
  }

  .bl_access_method_car {
    margin-bottom: 35px;
  }

  .bl_access_gmap {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .bl_access_gmap iframe {
    height: 300px;
  }
}
/*---------------------------------------------
	202503
---------------------------------------------*/
.bl_comumnity_list_item {
  background-image: url(/assets/img/pdf.svg);
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position-y: center;
  padding-left: 3.2rem !important;
  list-style: none;
}
.bl_comumnity_list_link {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.bl_comumnity_list_link:hover {
  opacity: 0.7;
}