@charset "utf-8";
/*ヘッダー*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
}
#header h1 {
  text-indent: -9999px;
  overflow: hidden;
  height: 0;
}
#h_logo {
  float: left;
  width: 20%;
  padding: 10px 0 10px 20px;
}
#gnav {
  float: right;
  width: 70%;
  padding: 20px 0;
}
#gnav ul {
  flex-wrap: nowrap;
  justify-content: space-between;
  display: flex;
}
#gnav ul li {
  border-right: 1px solid #c0b3aa;
  text-align: center;
  width: 15%;
}
#gnav ul li:last-child {
  border-right: none;
}
#gnav ul li:nth-child(1), #gnav ul li:nth-child(2) {
  width: 10%;
}
#gnav ul li:nth-child(3) {
  width: 20%;
}
#gnav ul li:nth-child(6) {
  width: 15%;
}
#gnav ul li a {
  font-size: 16px;
  font-size: 1.6rem;
}
#gnav ul li a span {
  color: #dc761d;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
}
#nav-toggle, #nav-toggle span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  cursor: pointer;
}
#nav-toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #582f1b;
  top: 0;
  right: 0;
  z-index: 2;
}
#nav-toggle span {
  position: absolute;
  background: #fff;
  width: 30px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
#nav-toggle span:nth-child(1) {
  top: 10px;
}
#nav-toggle span:nth-child(2) {
  top: 19px;
}
#nav-toggle span:nth-child(3) {
  bottom: 20px;
}
#nav-toggle .menu{
	position: absolute;
	width: 100%;
  	bottom: 5px;
	color: #fff;
	text-align: center;
	  font-size: 10px;
	  font-size: 1rem;
}
.open #nav-toggle span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.open #nav-toggle span:nth-child(2) {
  opacity: 0;
}
.open #nav-toggle span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
#sp_menu {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  height: 50px;
}
#sp_menu .sp_logo {
  line-height: 50px;
  padding-left: 20px;
}
#sp_menu .contact{
	position: absolute;
	top: 0;
	right: 50px;
}
#sp_menu .contact a{
	display: block;
    padding: 0 15px 0 38px;
    background: url(../img/mail_icon.svg) no-repeat center left 12px;
    background-color: #dc761d;
	background-size: 18px;
    box-shadow: 0 0 0 3px #dc761d inset, 0 0 0 4px #e4d7b8 inset;
    line-height: 50px;
    color: #fff;
  	font-family: "Shippori Mincho", serif;
  	font-weight: 600;
	font-size: 16px;
	font-size: 1.6rem;
}
#sp_nav {
  display: none;
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 1;
  width: 200px;
  height: auto;
  background-color: rgba(62, 24, 4, .97);
  overflow: scroll;
}
#sp_nav #sp_navInner {
  padding: 30px 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
#sp_nav li a {
  display: block;
  text-align: left;
  text-decoration: none;
  color: #fff;
  padding: 15px 10px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width : 767px) {
  #header {
    height: 50px;
    line-height: 50px;
  }
  #sp_menu {
    display: block;
    line-height: 1;
  }
  #pc_menu {
    display: none;
  }
}
#container.open {
  position: fixed;
  width: 100%;
}
/*----------------------------------------------------
	メインビジュアル
----------------------------------------------------*/
#main_visual {
  margin-top: 80px;
  position: relative;
}
#main_visual .mv_bg img {
  width: 100%;
  height: auto;
}
#main_visual .mv_key1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#main_visual .mv_key1 p + p {
  margin-top: 40px;
}
#main_visual .intro {
  position: relative;
  padding: 50px 0;
  text-align: center;
  background-color: #582f1b;
  color: #ebe1cf;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
#main_visual .intro:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0;
  right: 0;
  border: solid 1px #f1ead9;
  z-index: 1;
}
#main_visual .intro:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  right: 0;
  border: solid 1px #f1ead9;
  z-index: 1;
}
@media screen and (max-width : 767px) {
  #main_visual {
    margin-top: 50px;
  }
  #main_visual .mv_key1 {
    width: 94%;
    top: 45%;
  }
  #main_visual .mv_key1 p:first-child{
    width: 90%;
	  margin: 0 auto;
  }
  #main_visual .intro {
    padding: 30px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
/*----------------------------------------------------
	ページトップ
----------------------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 75px;
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 9999;
}
#pagetop a {
  display: block;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  height: 50px;
  width: 50px;
  margin: 0;
  letter-spacing: 2px;
  text-align: right;
  color: #3b1907;
}
#pagetop a:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -6px;
  width: 1px;
  height: 15px;
  background: #3b1907;
  transform: skewX(-150deg);
}
#pagetop a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: -2px;
  width: 1px;
  height: 50px;
  background: #3b1907;
}
@media screen and (max-width : 767px) {
  #pagetop {
    position: fixed;
    bottom: 80px;
    right: 25px;
  }
}
.is-active {
  opacity: 1;
  visibility: visible;
}
/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer .copyright {
  padding: 10px 0;
  background-color: #3b1907;
  color: #ebe1cf;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width : 767px) {
	#footer .copyright {
	  padding: 10px 0 55px;
	}
}
/*----------------------------------------------------
	iframe
----------------------------------------------------*/
@media screen and (max-width : 1024px) {
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
  }
  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/*----------------------------------------------------
	共通デザイン
----------------------------------------------------*/
.bold {
  font-weight: 600;
}
.key {
  color: red;
}
a.link_key {
  color: #999;
  text-decoration: underline;
}
a.link_key:hover {
  text-decoration: none;
}
.title_style01 {
  margin-bottom: 20px;
  font-size: 38px;
  font-size: 3.8rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.title_style02 {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  font-size: 46px;
  font-size: 4.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.title_style02:before, .title_style02:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 300px;
  height: 1px;
  background-color: #582f1b;
}
.title_style02:before {
  left: 0;
}
.title_style02:after {
  right: 0;
}
.title_style03 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
.title_style03:before {
  content: "\25cf";
  margin-right: 0.5em;
  color: #dc761d;
}
a.key_link {
  color: #dc761d;
  text-decoration: underline;
}
a.key_link:hover {
  text-decoration: none;
}
@media screen and (max-width : 767px) {
  .title_style01 {
    margin-bottom: 15px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .title_style02 {
    margin-bottom: 20px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .title_style02:before, .title_style02:after {
    width: 60px;
  }
}
/*------------------------------------------------------------
	medical
------------------------------------------------------------*/
.listLink {
  padding: 50px 0;
  border-top: none;
  border-bottom: none;
}
#system {
  background: url("../img/texture_on.jpg") repeat;
}
#system * {
  box-sizing: border-box;
}
#system .headLine03 {
  margin-bottom: 32px;
}
#system .text01 {
  margin-bottom: 48px;
  line-height: 1.75;
}
#system .listArea {
  width: 100%;
}
#system .listRow {
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  display: flex;
}
#system .listCol {
  flex: 0 0 33.33333%;
  padding: 0 20px;
}
@media all and (max-width: 767px) {
  #system .listCol {
    flex: 0 0 90%;
    margin: 0 auto 40px;
  }
  #system .listCol:nth-of-type {
    margin-bottom: 0;
  }
}
#system .listCol:nth-of-type(4) {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  #system .listCol:nth-of-type(4) {
    margin-top: 0;
  }
}
#system .listCol:nth-of-type(5) {
  margin-top: -34px;
}
@media all and (max-width: 767px) {
  #system .listCol:nth-of-type(5) {
    margin-top: 0;
  }
}
#system .listCol:nth-of-type(6) {
  margin-top: -34px;
}
@media all and (max-width: 767px) {
  #system .listCol:nth-of-type(6) {
    margin-top: 0;
  }
}
#system .listCol:nth-of-type(7) {
  flex: 0 0 66.66666%;
  margin-top: -74px;
}
@media all and (max-width: 767px) {
  #system .listCol:nth-of-type(7) {
    flex: 0 0 100%;
    margin-top: 0;
  }
}
#system .listHeadline {
  padding-left: 16px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #3e1804;
  border-left: 4px solid #dc761d;
}
#system .listBoxRow {
  margin-bottom: 2px;
  display: flex;
}
#system .listTitle {
  padding: 8px 12px;
  line-height: 30px;
}
#system .listMark {
  padding: 8px 0;
}
#system .listTitle {
  width: calc(100% - 40px);
  font-size: 1.6rem;
  background-color: #fff;
}
#system .listTitle small {
  font-size: 14px;
}
#system .listMark {
  width: 40px;
  text-align: center;
  color: #ebe1cf;
  background-color: #582f1b;
  font-size: 20px;
  font-size: 2rem;
}
#system .cautionRow {
  display: flex;
}
@media all and (max-width: 767px) {
  #system .cautionRow {
    flex-wrap: wrap;
  }
	#system .listTitle{
		
    padding: 8px 12px;
    line-height: 20px
	}
	#system .listMark{
    line-height: 20px
		
	}
}
@media all and (max-width: 767px) {
  #system .cautionCol:first-of-type {
    width: 90%;
	  margin: 0 auto;
  }
}
#system .cautionCol:last-of-type {
  width: calc(100% - 172px);
  padding-left: 40px;
}
@media all and (max-width: 767px) {
  #system .cautionCol:last-of-type {
    width: 90%;
    padding-left: 20px;
	  margin: 0 auto;
  }
}
#system .cautionBox {
  padding: 15px 20px;
  font-size: 13px;
  font-size: 1.3rem;
  border: 1px solid #eae0c6;
  background-color: #fff;
}
@media all and (max-width: 767px) {
  #system .cautionBox {
    margin-bottom: 16px;
  }
	#system .sp-left-txt{
		text-align: left !important;
	}
}
#system .cautionText {
  font-size: 13px;
  font-size: 1.3rem;
  position: relative;
}
#system .cautionText:before {
  content: "※";
  position: absolute;
  left: -16px;
}
#price .price_table th, #price .price_table td {
  text-align: center;
}
#price .price_table th {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
#price .price_table th span {
  font-size: 13px;
  font-size: 1.3rem;
}
#price .price_table td .num {
  font-size: 26px;
  font-size: 2.6rem;
  color: #dc761d;
  font-weight: 600;
}
#price .price_table td .price_txt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
#price .ac_box {
  background-color: #fff;
  border: solid 1px #dc761d;
  padding: 30px 40px;
}
#price .ac_box li.indent {
  padding-left: 1em;
  text-indent: -1em;
}
#price .sp-onry-txt {
  display: none;
}
@media screen and (max-width : 767px) {
  #price .price_table th {
    font-size: 15px;
    font-size: 1.5rem;
  }
  #price .price_table th span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #price .price_table td .num {
    font-size: 20px;
    font-size: 2rem;
  }
  #price .price_table td .price_txt {
    font-size: 15px;
    font-size: 1.5rem;
  }
  #price .ac_box {
    padding: 20px 30px;
  }
  #price .sp-onry-txt {
    display: block;
  }
	#price .ac_box {
	  padding: 20px;
	}
}
#overview .slickBox {
  max-width: 1000px;
  margin: 0 auto;
}
#overview .slickBox li {
  position: relative;
}
#overview .slickBox li .caption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 20px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  transition: .3s ease;
  background-color: rgba(0, 0, 0, 0.4);
}
#overview .line_table {
  float: left;
  width: 65%;
  margin-bottom: 40px;
}
#overview .availability {
  float: right;
  width: 30%;
  margin-bottom: 40px;
}
#overview .availability_table {
  margin-top: 10px;
  width: 300px;
  text-align: center;
}
#overview .availability_table th, #overview .availability_table td {
  text-align: center;
}
#overview .availability_table .kigou {
  font-size: 28px;
  font-size: 2.8rem;
  color: #dc761d;
  font-weight: 600;
}
#overview .line_table .gm_link {
  display: inline-block;
  position: relative;
  margin-left: 50px;
}
#overview .line_table .gm_link:before {
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #67412f;
  border-right: 0;
}
@media screen and (max-width : 767px) {
  #overview .line_table {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  #overview .availability {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  #overview table.line_table th {
    padding: 10px;
    width: 32%;
  }
  #overview table.line_table td {
    padding: 10px;
  }
  #overview .line_table .gm_link {
    display: block;
    margin-left: 20px;
  }
	#overview .availability{
		width: 220px;
		margin: 0 auto 30px;
	}
	#overview .title_style03{
		margin-bottom: 10px;
	}
	#overview .availability_table{
		width: 100%;
	}
	#overview .availability_table th, #overview .availability_table td{
		padding: 5px;
	}
}
#flow .step_list li {
  position: relative;
  padding-right: 50%;
  background-color: #fff;
  padding: 50px;
  margin-bottom: 120px;
  min-height: 340px;
  box-shadow:
    0 0 0 8px #fff inset, 0 0 0 9px #f1ead9 inset;
}
#flow .step_list li:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  margin: 0 auto;
  content: "";
  display: block;
  background: url("../img/flow_arrow.png") no-repeat;
  background-size: contain;
  width: 87px;
  height: 40px;
}
#flow .step_list li:last-child {
  margin-bottom: 0;
}
  #flow .step_list li:last-child:after {
    display: none;
  }
#flow .step_list li h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
#flow .step_list li h3 .step {
  font-family: "STIX Two Text", serif;
  font-style: italic;
  font-size: 20px;
  font-size: 2.0rem;
  color: #dc761d;
  margin-right: 20px;
}
#flow .step_list li h3 .step .no {
  font-size: 36px;
  font-size: 3.6rem;
}
#flow .step_list li .image {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 33%;
}
#flow .step_list li .step_txt {
  width: 58%;
}
@media screen and (max-width : 767px) {
  #flow .step_list li {
    padding-right: 0;
    padding: 20px;
    margin-bottom: 80px;
  }
  #flow .step_list li:after {
    bottom: -60px;
  }
  #flow .step_list li h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #flow .step_list li h3 .step {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
  #flow .step_list li h3 .step .no {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #flow .step_list li .image {
    position: inherit;
    right: 0;
    top: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  #flow .step_list li .step_txt {
    width: 100%;
  }
}
#faq .faq_list > li:first-child {
  border-top: solid 1px #ccc;
}
#faq .faq_list > li {
  border-bottom: solid 1px #ccc;
}
#faq .faq_list li .faq_q {
  padding: 20px 0;
  cursor: pointer;
  padding: 30px 30px 30px 60px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  background-image: url(../img/q_icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: left center;
}
#faq .faq_list li .faq_a {
  padding: 0 30px 30px 60px;
  background-image: url(../img/a_icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: left top;
}
@media screen and (max-width : 767px) {
  #faq .faq_list li .faq_q {
    padding: 15px 0 15px 35px;
    font-size: 15px;
    font-size: 1.5rem;
    background-size: 30px;
  }
  #faq .faq_list li .faq_a {
    padding: 0 0 15px 35px;
    font-size: 14px;
    font-size: 1.4rem;
    background-size: 30px;
  }
}
#voice {
  background: url("../img/texture_on.jpg") repeat;
}
#voice .voice_list {
  flex-wrap: nowrap;
  justify-content: space-between;
  display: flex;
}
#voice .voice_list > div {
  width: 32%;
  background-color: #fff;
  padding: 30px;
  box-shadow:
    0 0 0 8px #fff inset, 0 0 0 9px #f1ead9 inset;
  margin-bottom: 30px;
}
#voice .voice_list div .clearfix {
  position: relative;
}
#voice .voice_list div .image {
  width: 40%;
  margin-bottom: 20px;
}
#voice .voice_list div .name {
  width: 55%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
#voice .voice_list div .name p {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
#voice .voice_list div .name span {
  display: inline-block;
  width: 100%;
  line-height: 28px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
#voice .voice_list div .name .tenant {
  background-color: #dc761d;
}
#voice .voice_list div .name .family {
  background-color: #582f1b;
}
@media screen and (max-width : 767px) {
	#voice .voice_list .title{
		width: 80%;
		margin: 0 auto;
	}
  #voice .voice_list {
    flex-wrap: wrap;
  }
  #voice .voice_list > div {
    width: 100%;
    padding: 25px;
    margin-bottom: 10px;
  }
	#voice .voice_list div .name p {
	  font-size: 16px;
	  font-size: 1.6rem;
	}
	#voice .voice_list div .name span {
	  font-size: 12px;
	  font-size: 1.2rem;
	}
}
#desired {
  padding: 100px 0 17%;
  position: relative;
  background-image: url("../img/desired_bg.jpg"), url("../img/texture_on.jpg");
  background-repeat: no-repeat, repeat;
  background-position: center bottom;
  background-size: contain;
}
#desired .desired_box {
  margin-top: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#desired .desired_box .box {
  width: 48.5%;
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 0 0 8px #fff inset, 0 0 0 9px #f1ead9 inset;
  line-height: 1.8;
}
#desired .desired_box .box h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width : 767px) {
  #desired {
    padding: 50px 0 29%;
  background-image: url("../img/desired_bg_sp.jpg"), url("../img/texture_on.jpg");
  }
  #desired h2.title_style01 {
    font-size: 20px;
    font-size: 2rem;
  }
  #desired .desired_box {
    margin-top: 30px;
    display: block;
  }
  #desired .desired_box .box {
    width: 100%;
    padding: 25px;
  }
  #desired .desired_box .box + .box {
    margin-top: 20px;
  }
  #desired .desired_box .box h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#consultation {
  background: url("../img/texture_on.jpg") repeat center;
}
#consultation .consultation_list {
  flex-wrap: nowrap;
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width : 767px) {
	#consultation {
		padding-top: 35px !important;
	}
  #consultation h2.title_style01 {
	  margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
  }
  #consultation .consultation_list {
    display: block;
  }
  #consultation .consultation_list li + li {
    margin-top: 10px;
  }
}
	#strengths .strengths_list{
		margin-top: 80px;
	}
#strengths .strengths_list li {
  position: relative;
  margin-bottom: 50px;
}
#strengths .strengths_list li:nth-child(even) {
  margin-bottom: 150px;
}
#strengths .strengths_list li .text_box {
  position: relative;
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 0 0 8px #fff inset, 0 0 0 9px #f1ead9 inset;
  min-height: 350px;
}
#strengths .strengths_list li .text_box .num {
  position: absolute;
  top: -30px;
  font-size: 60px;
  font-size: 6rem;
  font-family: "STIX Two Text", serif;
  font-style: italic;
  color: #dc761d;
}
#strengths .strengths_list li .text_box h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
#strengths .strengths_list li:nth-child(odd) .image {
  position: absolute;
  top: -50px;
  left: 0;
  width: 55%;
  z-index: 100;
}
#strengths .strengths_list li:nth-child(odd) .text_box {
  margin-top: 50px;
  margin-left: 45%;
  padding-left: 130px;
}
#strengths .strengths_list li:nth-child(even) .image {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 55%;
  z-index: 100;
}
#strengths .strengths_list li:nth-child(even) .text_box {
  margin-top: 0px;
  margin-right: 45%;
  padding-right: 130px;
}
@media screen and (max-width : 767px) {
	#strengths .strengths_list{
		margin-top: 70px;
	}
  #strengths .strengths_list li {
    margin-bottom: 100px !important;
  }
  #strengths .strengths_list li:last-child {
    margin-bottom: 0 !important;
  }
  #strengths .strengths_list li .text_box h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  #strengths .strengths_list li .image {
    max-width: 280px;
  }
  #strengths .strengths_list li:nth-child(odd) .image {
    position: absolute;
    top: -50px;
    left: 0;
    width: 75%;
    z-index: 100;
  }
  #strengths .strengths_list li:nth-child(odd) .text_box {
    margin-top: 50px;
    margin-left: 7%;
    padding: 20px;
    padding-left: 20px;
    padding-top: 130px;
  }
  #strengths .strengths_list li:nth-child(odd) .text_box .num {
    right: 30px;
    top: 20px;
    z-index: 100;
  }
  #strengths .strengths_list li:nth-child(even) .image {
    position: absolute;
    top: -50px;
    right: 0;
    width: 75%;
    z-index: 100;
  }
  #strengths .strengths_list li:nth-child(even) .text_box {
    margin-top: 50px;
    margin-right: 7%;
    padding: 20px;
    padding-right: 20px;
    padding-top: 130px;
  }
  #strengths .strengths_list li:nth-child(even) .text_box .num {
    left: 30px;
    top: 20px;
    z-index: 100;
  }
}
#facility_overview {
  background-color: #582f1b;
}
#facility_overview .facility_wrap {
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 0 0 8px #fff inset, 0 0 0 9px #f1ead9 inset;
}
#facility_overview .facility_wrap h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
}
@media screen and (max-width : 767px) {
  #facility_overview .facility_wrap h2 {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #facility_overview .facility_wrap {
    padding: 20px;
  }
  #facility_overview .facility_wrap .line_table th {
    background-color: #582f1b;
    color: #fff;
    padding: 5px 10px;
    border-bottom: none;
  }
  #facility_overview .facility_wrap .line_table td {
    padding: 5px 10px;
    border-bottom: none;
  }
}
#access {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width : 767px) {
  #access {
    margin-top: -50px;
    padding-top: 50px;
  }
}
#fixed_nav {
  position: fixed;
  right: 0;
  top: 120px;
	width: 52px;
  z-index: 100;
}
#fixed_nav .contact_btn li a {
  writing-mode: vertical-rl;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  display: block;
  padding: 40px 10px 20px 10px;
}
#fixed_nav .contact_btn li a:hover {
  opacity: 0.8;
}
#fixed_nav .contact_btn li.contact a {
  background: url("../img/mail_icon.svg") no-repeat top 15px center;
  background-color: #dc761d;
  box-shadow: 0 0 0 3px #dc761d inset, 0 0 0 4px #e4d7b8 inset;
  line-height: 1.8;
  color: #fff;
}
#fixed_nav .contact_btn li.request a {
  background: url("../img/materials_icon2.svg") no-repeat top 10px center;
  background-color: #582f1b;
  box-shadow: 0 0 0 3px #582f1b inset, 0 0 0 4px #fff inset;
  line-height: 1.8;
  color: #fff;
}
#fixed_nav .contact_btn li.reservation a {
  background: url("../img/cal_icon2.svg") no-repeat top 12px center;
  background-color: #fff;
  box-shadow: 0 0 0 3px #fff inset, 0 0 0 4px #f1ead9 inset;
  line-height: 1.8;
  color: #3e1804;
}
	.sp-txt{
		display: none;
	}
@media screen and (max-width : 767px) {
  #fixed_nav {
        background-color: rgba(62, 24, 4, .45);
        padding: 10px;
    width: 100%;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
	  transition: .6s;
  }
  #fixed_nav .contact_btn {
    display: flex;
	  justify-content: space-between;
  }
  #fixed_nav .contact_btn li.contact {
	  display: none;
  }
  #fixed_nav .contact_btn li.request {
    width: 49%;
  }
  #fixed_nav .contact_btn li.reservation {
    width: 49%;
  }
  #fixed_nav .contact_btn li a {
    writing-mode: unset !important;
    padding: 10px 10px 10px 20px;
    text-align: center;
	font-size: 17px;
	font-size: 1.7rem;
  }
  #fixed_nav .contact_btn li.contact a {
    background-position: left 15px center;
    background-size: 15px;
  }
  #fixed_nav .contact_btn li.request a {
  background: url("../img/icon_arrow.svg"),url("../img/materials_icon2.svg");
background-repeat:  no-repeat;
background-position: right 20px center, left 30px center;
  background-color: #582f1b;
    background-size: 18px;
  }
  #fixed_nav .contact_btn li.reservation a {
  background: url("../img/icon_arrow_on.svg"),url("../img/cal_icon2.svg");
background-repeat:  no-repeat;
background-position: right 20px center, left 30px center;
  background-color: #fff;
  background-size: 20px;
  }
}
.link_btn {
  margin-top: 40px;
  text-align: center;
}
.link_btn a {
  display: inline-block;
  color: #fff;
  padding: 10px 60px 10px 30px;
  background: url("../img/icon_arrow.svg") no-repeat right 20px center;
  background-color: #582f1b;
  background-size: 20px;
}
.link_btn a:hover {
  opacity: 0.8;
}

@media screen and (max-width : 767px) {
	#container{
		width: 100%;
		overflow: hidden;
	}
}