@charset "utf-8";
/* ------ General Settings ------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');
img {
 width: 100%;
 height: auto;
 vertical-align: bottom;
}
figure {
 margin: 0;
 padding: 0;
}
a {
 transition: all 0.5s 0s ease;
 color: #414141;
}
a img {
 transition: opacity 0.3s ease-out;
}
a:hover {
 opacity: 0.7;
}
a:hover img {
 opacity: 0.7;
}
body {
 font-family: 'Noto Sans JP', sans-serif;
 font-weight: 400;
 font-style: normal;
 margin: 0;
 padding: 0;
 font-size: 16px;
 color: #414141;
 line-height: 2;
 /*letter-spacing: 1px;*/
}
.wrapper {
 overflow: hidden;
 /*min-width: 1200px;*/
 margin: 0 auto;
}
.br_pc {
 display: inherit;
}
.br_sp {
 display: none;
}
@media screen and (max-width: 767px) {
 .wrapper {
  min-width: auto;
 }
 a:hover {
  opacity: 1;
 }
 body {
  font-size: 4vw;
  line-height: 1.8;
 }
 .br_pc {
  display: none !important;
 }
 .br_sp {
  display: inherit !important;
 }
}
/* ------ header ------ */
.header {
 width: 100%;
 height: 17.2vw;
 box-sizing: border-box;
 background: url("../img/header.svg") no-repeat center bottom;
 background-size: 102% auto;
 padding: 3.125vw 0;
}
.header-logo {
 width: 29.6vw;
 margin: 0 auto 1.7vw auto;
}
.header-read {
 text-align: center;
}
.header-read span {
 font-size: 20px;
 font-weight: 700;
 position: relative;
 padding: 10px 15px 15px 50px;
}
.header-read span::before {
 background: url("../img/ic_search.svg") no-repeat;
 background-size: 44px auto;
 content: "";
 position: absolute;
 width: 44px;
 height: 48px;
 top: 0;
 left: 0;
}
.hnav {
 position: absolute;
 right: 50px;
 top: 0;
}
.hnav a {
 width: 200px;
}
.hnav a span {
 padding: 20px 20px 20px 70px;
 background: #608C99;
 color: #fff;
 border-radius: 0 0 10px 10px;
 position: relative;
 display: block;
 line-height: 1;
 font-weight: 700;
}
.hnav a span::before {
 background: url("../img/ic_mail.svg") no-repeat;
 background-size: 30px auto;
 content: "";
 position: absolute;
 width: 30px;
 height: 24px;
 top: 15px;
 left: 20px;
}
@media screen and (max-width: 1020px) {
 .header-read span {
  font-size: 15px;
  padding: 10px 15px 15px 36px;
 }
 .header-read span::before {
  background: url("../img/ic_search.svg") no-repeat;
  background-size: 30px auto;
  content: "";
  position: absolute;
  width: 30px;
  height: 34px;
  top: 0;
  left: 0;
 }
}
@media screen and (max-width: 767px) {
 .header {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background: url("../img/header.svg") no-repeat center bottom;
  background-size: 128% auto;
  padding: 6vw 0;
 }
 .header-logo {
  width: 41.8vw;
  margin: 0 auto 4vw auto;
 }
 .header-read {
  text-align: center;
  line-height: 1.5;
 }
 .header-read span {
  font-size: 4.2vw;
  padding: 10px 0 15px 0;
 }
 .header-read span::before {
  background: none;
  content: "";
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
 }
 .hnav {
  display: none;
 }
}
.footer-link {
 background: #555555;
 padding: 50px 25px;
}
.footer-link-inner {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: flex-start;
}
.footer-link-list{width: 10.5%;}
.footer-link-list p {
 font-weight: 700;
 position: relative;
 padding-left: 16px;
 line-height: 1.4;
 margin-bottom: 15px;
 font-size: 14px;
}
.footer-link-list a {
 color: #fff;
}
.footer-link-list p::before {
 content: "";
 background: url("../img/ic_circle.svg") no-repeat;
 position: absolute;
 width: 11px;
 height: 11px;
 top: 4px;
 left: 0;
 background-size: 11px auto;
}
.footer-link-list ul {
 padding-left: 16px;
}
.footer-link-list li {
 font-size: 13px;
 margin-bottom: 5px;
}
.fnav {
 display: none;
}
@media screen and (max-width: 767px) {
 .footer-link {
  background: #555555;
  padding: 10vw 5vw;
 }
 .footer-link h2 {
  font-size: 4.5vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8vw;
  line-height: 1;
 }
 .footer-link-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
 }
 .footer-link-list {
  width: 44vw;
 }
 .footer-link-list p {
  font-weight: 700;
  position: relative;
  padding-left: 0;
  line-height: 1.4;
  margin-bottom: 4vw;
  font-size: 3.6vw;
  text-align: center;
 }
 .footer-link-list:last-child p {
  margin-bottom: 0;
 }
 .footer-link-list a {
  color: #fff;
  background: #646464;
  display: block;
  border-radius: 30px;
  padding: 3vw 0;
 }
 .footer-link-list p::before {
  content: "";
  background: none;
  position: inherit;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
 }
 .footer-link-list ul {
  display: none;
 }
 .fnav {
  width: 100%;
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
 }
 .fnav a {
  width: 100%;
  background: #608C99;
  display: block;
  text-align: center;
 }
 .fnav a span {
  padding: 4vw 5vw 4vw 7vw;
  color: #fff;
  position: relative;
  font-size: 3.9vw;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
 }
 .fnav a span::before {
  background: url("../img/ic_mail.svg") no-repeat;
  background-size: 5vw auto;
  content: "";
  position: absolute;
  width: 5vw;
  height: 4.2vw;
  top: 4vw;
  left: 0;
 }
}
/* ------ footer ------ */
footer {
 padding: 80px 0 270px 0;
 text-align: center;
 background: url("../img/bg_footer.svg") no-repeat center bottom #F4F3F0;
 background-size: 100% auto;
}
footer nav {
 display: inline-block;
 text-align: center;
 margin-bottom: 50px;
}
footer nav li + li {
 padding-left: 30px;
}
footer nav li {
 font-size: 14px;
 display: inline-block;
}
.footer-produced {
 margin-bottom: 50px;
}
.footer-ttl {
 font-size: 11px;
 color: #fff;
 background: #608C99;
 padding: 3px 17px;
 border-radius: 30px;
 margin-bottom: 20px;
 display: inline-block;
}
.footer-img {
 width: 170px;
 margin: 0 auto 50px auto;
}
.footer-copyright {
 font-size: 12px;
}
@media screen and (max-width: 767px) {
 footer {
  padding: 8vw 0 30vw 0;
  margin-bottom: 12vw;
  text-align: center;
  background: url("../img/bg_footer.svg") no-repeat center bottom #F4F3F0;
  background-size: 100% auto;
 }
 footer nav {
  display: inline-block;
  text-align: center;
  margin-bottom: 8vw;
 }
 footer nav li + li {
  padding-left: 4vw;
 }
 footer nav li {
  font-size: 3.8vw;
  display: inline-block;
 }
 .footer-produced {
  margin-bottom: 2vw;
 }
 .footer-ttl {
  font-size: 3vw;
  color: #fff;
  background: #608C99;
  padding: 3px 17px;
  border-radius: 30px;
  margin-bottom: 20px;
  display: inline-block;
 }
 .footer-img {
  width: 40vw;
  margin: 0 auto 8vw auto;
 }
 .footer-copyright {
  font-size: 3vw;
 }
}
/*bread*/
.bread {
 background: #FDF4EA;
 margin-bottom: 50px;
}
.bread .bread-inner {
 width: 1200px;
 margin: 0 auto;
 padding: 20px 10px;
 line-height: 1;
	box-sizing: border-box;
}
.bread span {
 display: inline-block;
 font-size: 12px;
}
.bread span:first-child a {
 background: url("../img/ic_home.svg") no-repeat 0 center;
 background-size: 16px auto;
 padding-left: 20px;
}
.bread span a {
 text-decoration: underline;
}
@media screen and (max-width: 767px) {
 .bread {
  background: #FDF4EA;
  margin-bottom: 6.6vw;
  width: 100%;
  overflow-x: scroll;
 }
 .bread .bread-inner {
  width: auto;
  margin: 0 auto;
  padding: 3vw;
  line-height: 1;
  white-space: nowrap;
 }
 .bread span {
  display: inline-block;
  font-size: 3vw;
 }
}
/*sec-contents*/
.sec-contents {
 width: 1200px;
 margin: 0 auto;
 overflow: hidden;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: flex-start;
 padding-bottom: 100px;
}
.sec-main {
 width: 800px;
}
.sec-sub {
 width: 370px;
}
.cat-index-list-ttl {
 background: #FDF4EA;
 padding: 30px 0;
 border-radius: 10px;
 margin-bottom: 50px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}
.cat-index-list-ttl h1 {
 width: 310px;
 text-align: center;
 font-size: 25px;
 font-weight: 700;
 border-right: #FF8B38 1px solid;
}
.cat-index-list-ttl h1 img {
 height: 80px;
}
.cat-index-list-ttl p {
 width: 490px;
 padding: 0 50px 0 40px;
 font-size: 20px;
 font-weight: 700;
}
.cat-index-list {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: flex-start;
}
.cat-index-list article {
 width: 240px;
 margin-bottom: 50px;
}
.cat-index-list:after {
 content: "";
 width: 240px;
}
.cat-index-list:before {
 content: "";
 width: 240px;
 order: 1;
}
.cat-index-list article a {
 display: block;
 position: relative;
}
.cat-index-list article figure {
 border-radius: 10px;
 overflow: hidden;
 margin-bottom: 10px;
}
.cat-index-list article p {
 font-size: 14px;
}
.cat-index-list article .ic-cat {
 position: absolute;
 top: 0;
 left: 0;
 background: #FF8B38;
 border-radius: 10px 10px 10px 0;
 font-size: 13px;
 color: #fff;
 font-weight: 700;
 padding: 8px 15px;
 line-height: 1.2;
}
@media screen and (max-width: 767px) {
 .sec-contents {
  width: auto;
  margin: 0 5vw;
  overflow: hidden;
  display: block;
  padding-bottom: 5vw;
 }
 .sec-main {
  width: auto;
  margin-bottom: 5vw;
 }
 .sec-sub {
  width: auto;
 }
 .cat-index-list-ttl {
  background: #FDF4EA;
  padding: 5vw 0;
  border-radius: 10px;
  margin-bottom: 8vw;
  display: block;
 }
 .cat-index-list-ttl h1 {
  width: auto;
  text-align: center;
  font-size: 4.5vw;
  font-weight: 700;
  border-right: none;
 }
 .cat-index-list-ttl h1 img {
  height: 80px;
 }
 .cat-index-list-ttl p {
  width: auto;
  padding: 2vw 5vw 0 5vw;
  font-size: 3.8vw;
 }
 .cat-index-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
 }
 .cat-index-list article {
  width: 47%;
  margin-bottom: 5vw;
 }
 .cat-index-list:after {
  content: "";
  width: 47%;
 }
 .cat-index-list:before {
  content: "";
  width: 47%;
  order: 1;
 }
 .cat-index-list article a {
  display: block;
  position: relative;
 }
 .cat-index-list article figure {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
 }
 .cat-index-list article p {
  font-size: 3.8vw;
  line-height: 1.6;
 }
 .cat-index-list article .ic-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #FF8B38;
  border-radius: 10px 10px 10px 0;
  font-size: 3vw;
  color: #fff;
  font-weight: 700;
  padding: 8px 15px;
  line-height: 1.2;
 }
}
/*cat-menu*/
.cat-menu {
 border: #FF840C 1px solid;
 border-radius: 10px;
 overflow: hidden;
 margin-bottom: 30px;
}
.cat-menu h2 {
 background: #FF840C;
 color: #fff;
 padding: 10px 0;
 height: 60px;
 font-size: 20px;
 font-weight: 700;
 text-align: center;
 box-sizing: border-box;
 margin-bottom: 20px;
}
.category-tips .cat-menu h2 span,
.tips .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 35px;
}
.category-tips .cat-menu h2 span::before,
.tips .cat-menu h2 span::before{
 background: url("../img/ic_main_1.svg") no-repeat;
 background-size: 23px auto;
 content: "";
 position: absolute;
 width: 23px;
 height: 41px;
 top: 0;
 left: 0;
}

.category-buy .cat-menu h2 span,
.buy .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 50px;
}
.category-buy .cat-menu h2 span::before,
.buy .cat-menu h2 span::before{
 background: url("../img/ic_main_2.svg") no-repeat;
 background-size: 40px auto;
 content: "";
 position: absolute;
 width: 40px;
 height: 41px;
 top: 6px;
 left: 0;
}

.category-sale .cat-menu h2 span,
.sale .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 50px;
}
.category-sale .cat-menu h2 span::before,
.sale .cat-menu h2 span::before{
 background: url("../img/ic_main_3.svg") no-repeat;
 background-size: 40px auto;
 content: "";
 position: absolute;
 width: 40px;
 height: 41px;
 top: 2px;
 left: 0;
}

.category-landutilization .cat-menu h2 span,
.landutilization .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 50px;
}
.category-landutilization .cat-menu h2 span::before,
.landutilization .cat-menu h2 span::before{
 background: url("../img/ic_main_4.svg") no-repeat;
 background-size: 40px auto;
 content: "";
 position: absolute;
 width: 40px;
 height: 41px;
 top: 8px;
 left: 0;
}

.category-management .cat-menu h2 span,
.management .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 40px;
}
.category-management .cat-menu h2 span::before,
.management .cat-menu h2 span::before{
 background: url("../img/ic_main_5.svg") no-repeat;
 background-size: 30px auto;
 content: "";
 position: absolute;
 width: 30px;
 height: 41px;
 top: 0;
 left: 0;
}

.category-frugal .cat-menu h2 span,
.frugal .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 45px;
}
.category-frugal .cat-menu h2 span::before,
.frugal .cat-menu h2 span::before{
 background: url("../img/ic_main_6.svg") no-repeat;
 background-size: 35px auto;
 content: "";
 position: absolute;
 width: 35px;
 height: 41px;
 top: 3px;
 left: 0;
}

.category-loan .cat-menu h2 span,
.loan .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 40px;
}
.category-loan .cat-menu h2 span::before,
.loan .cat-menu h2 span::before{
 background: url("../img/ic_main_7.svg") no-repeat;
 background-size: 30px auto;
 content: "";
 position: absolute;
 width: 30px;
 height: 41px;
 top: 0;
 left: 0;
}

.category-customhouse .cat-menu h2 span,
.customhouse .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 50px;
}
.category-customhouse .cat-menu h2 span::before,
.customhouse .cat-menu h2 span::before{
 background: url("../img/ic_main_8.svg") no-repeat;
 background-size: 40px auto;
 content: "";
 position: absolute;
 width: 40px;
 height: 41px;
 top: 5px;
 left: 0;
}

.category-renovation .cat-menu h2 span,
.renovation .cat-menu h2 span{
 position: relative;
 padding: 5px 0 5px 50px;
}
.category-renovation .cat-menu h2 span::before,
.renovation .cat-menu h2 span::before{
 background: url("../img/ic_main_9.svg") no-repeat;
 background-size: 40px auto;
 content: "";
 position: absolute;
 width: 40px;
 height: 41px;
 top: 5px;
 left: 0;
}


.cat-menu-list {
 margin: 0 20px 20px 20px;
}
.cat-menu-list + .cat-menu-list {
 margin-top: 20px;
 border-top: #C7C7C7 1px solid;
 padding-top: 20px;
}
.cat-menu-list h3 {
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 20px;
 padding: 5px 0 0 25px;
 position: relative;
 line-height: 1;
}
.cat-menu-list h3::before {
 background: url("../img/ic_circle.svg") no-repeat;
 background-size: 18px auto;
 content: "";
 position: absolute;
 width: 18px;
 height: 18px;
 top: 5px;
 left: 0;
}
.cat-menu-list li {
 margin-bottom: 8px;
 line-height: 1;
}
.cat-menu-list li a {
 background: url("../img/ic_cursor.svg") no-repeat 0 center;
 padding-left: 20px;
 font-size: 14px;
 line-height: 1.5;
}
@media screen and (max-width: 767px) {
 .cat-menu {
  border: #FF840C 1px solid;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5vw;
 }
 .cat-menu h2 {
  background: #FF840C;
  color: #fff;
  padding: 10px 0;
  height: 60px;
  font-size: 4.5vw;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 20px;
 }
.category-tips .cat-menu h2 span,
.tips .cat-menu h2 span {
  position: relative;
  padding: 5px 0 5px 35px;
 }
.category-tips .cat-menu h2 span::before,
.tips .cat-menu h2 span::before {
  background: url("../img/ic_main_1.svg") no-repeat;
  background-size: 23px auto;
  content: "";
  position: absolute;
  width: 23px;
  height: 41px;
  top: 0;
  left: 0;
 }

	
	
 .cat-menu-list {
  margin: 0 20px 20px 20px;
 }
 .cat-menu-list + .cat-menu-list {
  margin-top: 20px;
  border-top: #C7C7C7 1px solid;
  padding-top: 20px;
 }
 .cat-menu-list h3 {
  font-size: 4vw;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 5px 0 0 25px;
  position: relative;
  line-height: 1;
 }
 .cat-menu-list h3::before {
  background: url("../img/ic_circle.svg") no-repeat;
  background-size: 18px auto;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 5px;
  left: 0;
 }
 .cat-menu-list li {
  margin-bottom: 8px;
  line-height: 1;
 }
 .cat-menu-list li a {
  background: url("../img/ic_cursor.svg") no-repeat 0 center;
  padding-left: 20px;
  font-size: 3.7vw;
  line-height: 1.5;
 }
}
/*catlist-menu*/
.catlist-menu {
 border: #707070 1px solid;
 border-radius: 10px;
 overflow: hidden;
 margin-bottom: 30px;
}
.catlist-menu h2 {
 background: #707070;
 color: #fff;
 padding: 10px 0;
 height: 60px;
 font-size: 20px;
 font-weight: 700;
 text-align: center;
 box-sizing: border-box;
}
.catlist-menu li + li {
 border-top: #C7C7C7 1px solid;
}
.catlist-menu li {
 line-height: 1;
}
.catlist-menu li a {
 padding: 20px;
 display: block;
 line-height: 1;
 font-size: 14px;
 font-weight: 700;
}
@media screen and (max-width: 767px) {
 .catlist-menu {
  display: none;
 }
}
/*sec-detail*/
.sec-detail {}
.sec-detail-ttl {
 background: #FFF4E9;
 border-radius: 10px;
 padding: 15px 15px 15px 60px;
 margin-bottom: 50px;
 position: relative;
 font-size: 25px;
 font-weight: 700;
 line-height: 1.5;
}
.sec-detail-ttl::before {
 background: url("../img/ic_circle.svg") no-repeat;
 background-size: 24px auto;
 content: "";
 position: absolute;
 width: 24px;
 height: 24px;
 top: 50%;
 left: 20px;
 margin-top: -12px;
}
.sec-detail-thum {
 width: 600px;
 margin: 0 auto 50px auto;
 border-radius: 10px;
 overflow: hidden;
}
.sec-post {
 margin-bottom: 200px;
}
.sec-post h2 {
 background: #FFA853;
 font-size: 18px;
 font-weight: 700;
 color: #fff;
 padding: 15px 15px 15px 20px;
 margin-bottom: 30px;
 border-radius: 10px;
 line-height: 1.5;
}
.sec-post h3 {
 border-left: #FFA43C 5px solid;
 padding: 3px 0 3px 15px;
 font-size: 16px;
 font-weight: 700;
 line-height: 1.5;
 margin-bottom: 30px;
}
.sec-post p {
 font-size: 16px;
 margin-bottom: 30px;
 line-height: 1.8;
}
.sec-post ol, .sec-post ul {
 padding-left: 2em;
 margin-bottom: 30px;
}
.sec-post ol li {
 list-style: decimal outside;
}
.sec-post ul li {
 list-style: disc outside;
}
.klink {
 background: #f5f5f5;
 margin-bottom: 50px;
 border-radius: 10px;
}
.klink a {
 background: url("../img/ic_cursor.svg") no-repeat 20px center;
 background-size: 8px auto;
 padding: 15px 0 15px 40px;
 display: block;
 font-size: 14px;
}
@media screen and (max-width: 767px) {
 .sec-detail {}
 .sec-detail-ttl {
  background: #FFF4E9;
  border-radius: 10px;
  padding: 3vw 3vw 3vw 12vw;
  margin-bottom: 8vw;
  position: relative;
  font-size: 4.5vw;
  font-weight: 700;
  line-height: 1.5;
 }
 .sec-detail-ttl::before {
  background: url("../img/ic_circle.svg") no-repeat;
  background-size: 5vw auto;
  content: "";
  position: absolute;
  width: 5vw;
  height: 5vw;
  top: 50%;
  left: 20px;
  margin-top: -2.5vw;
 }
 .sec-detail-thum {
  width: auto;
  margin: 0 auto 8vw auto;
  border-radius: 10px;
  overflow: hidden;
 }
 .sec-post {
  margin-bottom: 30vw;
 }
 .sec-post h2 {
  background: #FFA853;
  font-size: 4.5vw;
  font-weight: 700;
  color: #fff;
  padding: 3vw 3vw 3vw 4vw;
  margin-bottom: 4vw;
  border-radius: 10px;
  line-height: 1.5;
 }
 .sec-post h3 {
  border-left: #FFA43C 5px solid;
  padding: 3px 0 3px 15px;
  font-size: 4.2vw;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3vw;
 }
 .sec-post p {
  font-size: 3.7vw;
  margin-bottom: 8vw;
  line-height: 1.8;
 }
 .sec-post ol, .sec-post ul {
  padding-left: 2em;
  margin-bottom: 8vw;
 }
 .sec-post ol li {
  list-style: decimal outside;
  font-size: 3.7vw;
 }
 .sec-post ul li {
  list-style: disc outside;
  font-size: 3.7vw;
 }
 .klink {
  background: #f5f5f5;
  margin-bottom: 10vw;
  border-radius: 10px;
 }
 .klink a {
  background: url("../img/ic_cursor.svg") no-repeat 20px center;
  background-size: 8px auto;
  padding: 15px 0 15px 40px;
  display: block;
  font-size: 3.5vw;
 }
}
/*.sec-wide*/
.sec-wide {
 width: 800px;
 margin: 0 auto;
}
.sec-wide-ttl {
 width: 100%;
 background: #f5f5f5;
 border-radius: 10px;
 padding: 50px 0;
 position: relative;
 margin-bottom: 50px;
 text-align: center;
 font-size: 25px;
 font-weight: 700;
}
.sec-wide-ttl-contact {
 width: 100%;
 background: #f5f5f5;
 border-radius: 10px;
 padding: 50px 0;
 position: relative;
 margin-bottom: 50px;
 text-align: center;
}
.sec-wide-ttl-contact h1 {
 line-height: 1;
 margin-bottom: 40px;
}
.sec-wide-ttl-contact h1 span {
 font-size: 25px;
 font-weight: 700;
 position: relative;
 padding: 8px 0 8px 55px;
}
.sec-wide-ttl-contact h1 span::before {
 background: url("../img/ic_mail_g.svg") no-repeat;
 background-size: 42px auto;
 content: "";
 position: absolute;
 width: 42px;
 height: 34px;
 top: 10px;
 left: 0;
}
.sec-wide-ttl-contact p {
 font-size: 20px;
 font-weight: 700;
}
.sec-wide-qa {
 width: 150px;
 position: absolute;
 bottom: 0;
 right: 35px;
 margin-bottom: -50px;
}
.sec-wide-house {
 width: 195px;
 position: absolute;
 bottom: 0;
 left: 35px;
 margin-bottom: -40px;
}
.sec-wide p {
 font-size: 16px;
 margin-bottom: 50px;
}
.sec-wide h2 {
 background: #808080;
 font-size: 18px;
 color: #fff;
 font-weight: 700;
 padding: 15px;
 margin-bottom: 30px;
 border-radius: 10px;
 line-height: 1.3;
}
.sec-wide ul {
 padding-left: 2em;
 margin-bottom: 40px;
 margin-top: -20px;
}
.sec-wide li {
 font-size: 16px;
 list-style: disc outside;
 margin-bottom: 10px;
}
.sec-wide a {
 text-decoration: underline;
}
@media screen and (max-width: 767px) {
 .sec-wide {
  width: auto;
  margin: 0 auto;
 }
 .sec-wide-ttl {
  width: 100%;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 5vw 0;
  position: relative;
  margin-bottom: 10vw;
  text-align: center;
  font-size: 5vw;
  font-weight: 700;
 }
 .sec-wide-ttl-contact {
  width: 100%;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 5vw 0;
  position: relative;
  margin-bottom: 10vw;
  text-align: center;
 }
 .sec-wide-ttl-contact h1 {
  line-height: 1;
  margin-bottom: 5vw;
 }
 .sec-wide-ttl-contact h1 span {
  font-size: 4.5vw;
  font-weight: 700;
  position: relative;
  padding: 0.5vw 0 0.5vw 9vw;
 }
 .sec-wide-ttl-contact h1 span::before {
  background: url("../img/ic_mail_g.svg") no-repeat;
  background-size: 7vw auto;
  content: "";
  position: absolute;
  width: 7vw;
  height: 6vw;
  top: 1vw;
  left: 0;
 }
 .sec-wide-ttl-contact p {
  padding: 0 5vw;
  font-size: 3.7vw;
  font-weight: 700;
 }
 .sec-wide-qa {
  width: 15vw;
  position: absolute;
  bottom: 0;
  right: 5vw;
  margin-bottom: -8vw;
 }
 .sec-wide-house {
  width: 22vw;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -9vw;
 }
 .sec-wide p {
  font-size: 3.7vw;
  margin-bottom: 8vw;
 }
 .sec-wide h2 {
  background: #808080;
  font-size: 4.2vw;
  color: #fff;
  font-weight: 700;
  padding: 3vw;
  margin-bottom: 4vw;
  border-radius: 10px;
  line-height: 1.3;
 }
 .sec-wide ul {
  padding-left: 1.5em;
  margin-bottom: 7vw;
  margin-top: -4vw;
 }
 .sec-wide li {
  font-size: 3.7vw;
  list-style: disc outside;
  margin-bottom: 1vw;
 }
}
/*目次*/
div#ez-toc-container {
	padding: 0;
 border: none;
 border: #FF840C 1px solid;
 border-radius: 10px;
 margin-bottom: 50px;
	width: 100%;
	background: #FFF4E8;
}
.ez-toc-title-container {
 background: #FFF4E8;
 display: block;
 padding: 20px 10px;
 text-align: center;
 border-radius: 10px;
}
div#ez-toc-container p.ez-toc-title::before {
 font-family: Font Awesome 5 Free;
 content: "";
 margin-right: 0;
}
div#ez-toc-container p.ez-toc-title {
 font-weight: 700;
 font-size: 20px;
 text-align: center;
 color: #FF840C;
 margin: 0;
}
#ez-toc-container nav {
 padding: 0px 25px 20px 25px;
 background-image: none;
 background-color: #FFF4E8;
 border-radius: 10px;
}
#ez-toc-container nav ul {
 padding-left: 0;
}
#ez-toc-container ul.ez-toc-list li .ez-toc-link {
 margin-bottom: 0.5em;
 display: block;
 font-weight: bold;
}
#ez-toc-container li, #ez-toc-container ul, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
 background: 0 0;
 list-style: none;
 line-height: 1.6;
 margin: 0;
 margin-bottom: 0px;
 overflow: hidden;
 z-index: 1;
}
#ez-toc-container ul.ez-toc-list li .ez-toc-link {
 font-size: 14px;
 margin-bottom: 0.5em;
 display: block;
 font-weight: 400;
 background: url("../img/ic_cursor.svg") no-repeat 0 center;
 background-size: 8px auto;
 padding-left: 15px;
}
#ez-toc-container a {
 color: #444;
 box-shadow: none;
 text-decoration: none;
 text-shadow: none;
 display: inline-flex;
 align-items: stretch;
 flex-wrap: nowrap;
}
div#ez-toc-container ul.ez-toc-list a {
 text-decoration: none;
}
@media screen and (max-width: 767px) {
 div#ez-toc-container {
  border-radius: 10px;
  margin-bottom: 8vw;
 }
 .ez-toc-title-container {
  background: #FFF4E8;
  display: block;
  padding: 5vw 3vw;
  text-align: center;
  border-radius: 10px;
 }
 div#ez-toc-container p.ez-toc-title {
  font-weight: 700;
  font-size: 4.5vw;
 }
 #ez-toc-container nav {
  padding: 0px 5vw 4vw 5vw;
  background-image: none;
  background-color: #FFF4E8;
  border-radius: 10px;
 }
 #ez-toc-container nav ul {
  padding-left: 0;
 }
 #ez-toc-container ul.ez-toc-list li .ez-toc-link {
  margin-bottom: 0.5em;
  display: block;
  font-weight: bold;
 }
 #ez-toc-container li, #ez-toc-container ul, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li {
  background: 0 0;
  list-style: none;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 0px;
  overflow: hidden;
  z-index: 1;
 }
 #ez-toc-container ul.ez-toc-list li .ez-toc-link {
  font-size: 3.7vw;
  margin-bottom: 0.5em;
  display: block;
  font-weight: 400;
  background: url("../img/ic_cursor.svg") no-repeat 0 center;
  background-size: 8px auto;
  padding-left: 15px;
 }
 #ez-toc-container a {
  color: #444;
  box-shadow: none;
  text-decoration: none;
  text-shadow: none;
  display: inline-flex;
  align-items: stretch;
  flex-wrap: nowrap;
 }
 div#ez-toc-container ul.ez-toc-list a {
  text-decoration: none;
 }
}
/*sec-contact*/
.sec-contact {
 background: #f5f5f5;
 border: #EFEFEF 10px solid;
 border-radius: 10px;
 padding: 40px;
 position: relative;
 text-align: center;
 margin-bottom: 80px;
}
.sec-contact-house {
 position: absolute;
 width: 195px;
 top: 0;
 left: 0;
 margin-top: -120px;
}
.sec-contact-qa {
 position: absolute;
 width: 150px;
 bottom: 0;
 right: 30px;
 margin-bottom: -60px;
}
.sec-contact h2 {
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 20px;
}
.sec-contact .sec-contact-txt {
 font-size: 15px;
 margin-bottom: 40px;
}
.sec-contact-btn {
 width: 300px;
 margin: 0 auto;
}
.sec-contact-btn p {
 position: relative;
 padding: 15px 20px 0 20px;
 font-size: 20px;
 font-weight: 700;
 text-align: center;
 color: #4F8D9B;
 display: inline-block;
 margin-bottom: 25px;
 line-height: 1;
}
.sec-contact-btn p::before, .sec-contact-btn p::after {
 position: absolute;
 top: 10px;
 height: 30px;
 content: '';
}
.sec-contact-btn p::before {
 border-left: solid 1px;
 left: 0;
 transform: rotate(-30deg);
}
.sec-contact-btn p::after {
 border-right: solid 1px;
 right: 0;
 transform: rotate(30deg);
}
.sec-contact-btn a {
 background: #4F8D9B;
 font-size: 24px;
 font-weight: 700;
 color: #fff;
 padding: 20px 40px;
 display: block;
 border-radius: 10px;
 line-height: 1;
}
@media screen and (max-width: 767px) {
 .sec-contact {
  background: #f5f5f5;
  border: #EFEFEF 5px solid;
  border-radius: 10px;
  padding: 5vw;
  position: relative;
  text-align: center;
  margin-bottom: 10vw;
 }
 .sec-contact-house {
  position: absolute;
  left: 1vw;
  top: 0;
  margin-top: -15vw;
  width: 26vw;
 }
 .sec-contact-qa {
  display: none;
 }
 .sec-contact h2 {
  font-size: 4.5vw;
  font-weight: 700;
  margin-bottom: 3vw;
  line-height: 1.6;
 }
 .sec-contact .sec-contact-txt {
  font-size: 3.8vw;
  margin-bottom: 4vw;
  line-height: 1.7;
 }
 .sec-contact-btn {
  width: 70vw;
  margin: 0 auto;
 }
 .sec-contact-btn p {
  position: relative;
  padding: 3vw 4vw 0 4vw;
  font-size: 3.7vw;
  font-weight: 700;
  text-align: center;
  color: #4F8D9B;
  display: inline-block;
  margin-bottom: 5vw;
  line-height: 1;
 }
 .sec-contact-btn p::before, .sec-contact-btn p::after {
  position: absolute;
  top: 10px;
  height: 30px;
  content: '';
 }
 .sec-contact-btn p::before {
  border-left: solid 1px;
  left: 0;
  transform: rotate(-30deg);
 }
 .sec-contact-btn p::after {
  border-right: solid 1px;
  right: 0;
  transform: rotate(30deg);
 }
 .sec-contact-btn a {
  background: #4F8D9B;
  font-size: 4.5vw;
  font-weight: 700;
  color: #fff;
  padding: 4vw 6vw;
  display: block;
  border-radius: 10px;
  line-height: 1;
 }
}
/*contact-form*/
.mw_wp_form input[type="email"], .mw_wp_form input[type="tel"], .mw_wp_form input[type="text"], .mw_wp_form textarea {
 /* padding: 1em;
  width: 100%;*/
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 font-size: 15px;
 border: 1px solid #ccc;
}
.contact-form h2 {
 background: #4F8D9B;
}
.contact-form h3 {
 border-left: #4F8D9B 5px solid;
 padding: 2px 0 2px 13px;
 font-size: 16px;
 font-weight: 700;
 margin-bottom: 25px;
 line-height: 1.4;
}
.contact-form article {
 margin-bottom: 50px;
}
.contact-form article .hissu {
 background: #FFA43C;
 font-size: 14px;
 padding: 8px 15px;
 display: inline-block;
 color: #fff;
 border-radius: 30px;
 margin-left: 20px;
 line-height: 1;
}
.contact-form article label {
 width: 18%;
 display: inline-block;
 padding-bottom: 10px;
}
.t1 {
 width: 100%;
 border: #ddd 1px solid;
 background: #F6F6F6;
 border-radius: 10px;
 padding: 10px;
 font-size: 16px;
 box-sizing: border-box;
}
.t2 {
 width: 30%;
 border: #ddd 1px solid;
 background: #F6F6F6;
 border-radius: 10px;
 padding: 10px;
 font-size: 16px;
 box-sizing: border-box;
}
.contact-form article.confirm label{width: auto;}

.contact-form article a.clink {
 background: url("../img/ic_cursor.svg") no-repeat left center;
 padding-left: 15px;
 font-size: 14px;
 text-decoration: none;
}
.sec-wide .contact-form p {
 font-size: 16px;
 margin-bottom: 10px;
}
.btn_kakunin {
 text-align: center;
 margin-bottom: 30px;
}
.btn_outer {
 width: 300px;
 margin: 0 auto;
 border-radius: 10px;
 overflow: hidden;
}
.btn_outer + .btn_outer {
 margin-top: 20px;
}
.btn_kakunin input {
 display: block;
 cursor: pointer;
 background: #4F8D9B;
 height: 60px;
 box-sizing: border-box;
 text-align: center;
 width: 300px;
 margin: 0 auto;
 color: #fff;
 font-size: 24px;
 font-weight: bold;
 border-radius: 10px;
 overflow: hidden;
 border: none;
}
.btn_kakunin .bt2 {
 background: #EEEEEE;
 color: #666666;
}
.mw_wp_form_preview .chkhide {
 display: none;
}
/*thanks*/
.thk_tit {
 font-size: 22px;
}
.thk_tit strong {
 font-size: 20px;
}
.contact_c1 .thk_tit {
 font-size: 20px;
 line-height: 1.8;
}
.thk {
 width: 800px;
 margin: 0 auto;
 border: #E7A122 2px solid;
 padding: 25px;
 text-align: left;
}
.thk ul {
 padding: 20px 0;
}
.thk li {
 font-size: 16px;
 line-height: 1.8;
 text-align: left;
 font-weight: bold;
 color: #d36231;
}
.thk a {
 color: #d36231;
 text-decoration: underline;
}
input[type="submit"] {
 -webkit-appearance: none;
 border-radius: 0;
}
.sec-wide .contact-form p.recptha_txt {
 font-size: 12px;
 color: #BBBBBB;
 text-align: center;
}
.sec-wide .contact-form p.recptha_txt a {
 font-size: 11px;
 color: #BBBBBB;
}
.sec-wide .contact-form p.recptha_txt .fa {
 margin: 0 5px 0 4px;
 width: 12px;
 color: #BBB;
}
.regalcheck2 input[type=checkbox] {
 transform: scale(1.5);
 margin: 0 6px 0 0;
}
.regalcheck .fa-external-link {
 font-size: 15px;
 color: #9b8d77;
}
 .mw_wp_form .error {
  clear: both;
  color: #FFF !important;
  background: #C1272D;
  font-size: 90%;
  display: block;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 5px;
  webkit-border-radius: 5px;
  -moz-border-radius: 5px;
 }
.mw_wp_form_complete p.cptit {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  border-top: #ddd 2px solid;
  padding-top: 30px;
  margin-bottom: 20px;
 }
 .mw_wp_form_complete p.cptxt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  border-bottom: #ddd 2px solid;
  padding-bottom: 30px;
  font-weight: normal;
 }
@media screen and (max-width:767px) {
 .regalcheck {
  margin-bottom: 10px !important;
 }
 .sec-wide .contact-form p.recptha_txt {
  font-size: 10px;
  padding: 0 15px;
 }
 input, select, textarea {
  font-size: 16px !important;
 }
 input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
 }
 .contact-form h2 {
  background: #4F8D9B;
 }
 .contact-form h3 {
  border-left: #4F8D9B 5px solid;
  padding: 2px 0 2px 13px;
  font-size: 4vw;
  font-weight: 700;
  margin-bottom: 3vw;
  line-height: 1.4;
 }
 .contact-form article {
  margin-bottom: 8vw;
 }
 .contact-form article .hissu {
  background: #FFA43C;
  font-size: 3.2vw;
  padding: 8px 15px;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  margin-left: 20px;
  line-height: 1;
 }
 .contact-form article label {
  width: 45%;
  display: inline-block;
  padding-bottom: 10px;
 }
 .t1 {
  width: 100%;
  border: #ddd 1px solid;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 10px;
  font-size: 4vw;
  box-sizing: border-box;
 }
	.t2 {
 width: 25%!important;
 border: #ddd 1px solid;
 background: #F6F6F6;
 border-radius: 10px;
 padding: 10px;
 font-size: 16px;
 box-sizing: border-box;
}
 .contact-form article a.clink {
  background: url("../img/ic_cursor.svg") no-repeat left center;
  padding-left: 15px;
  font-size: 3.7vw;
  text-decoration: none;
 }
 .sec-wide .contact-form p {
  font-size: 4vw;
  margin-bottom: 10px;
 }
 .btn_outer {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
 }
 .btn_outer + .btn_outer {
  margin-top: 20px;
 }
 .btn_kakunin {
  text-align: center;
 }
 .btn_kakunin input {
  display: block;
  cursor: pointer;
  background: #4F8D9B;
  height: 60px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 4.5vw !important;
  font-weight: bold;
  border-radius: 5px;
  border: none;
 }
 .thk_tit {
  font-size: 18px;
 }
 .thk_tit strong {
  font-size: 18px;
 }
 .contact_c1 .thk_tit {
  font-size: 18px;
  line-height: 1.8;
 }
 .thk {
  width: auto;
  margin: 0 auto;
  border: #E7A122 2px solid;
  padding: 25px;
  text-align: left;
  margin: 0 20px;
 }
 .thk ul {
  padding: 20px 0;
 }
 .thk li {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  font-weight: bold;
  color: #d36231;
 }
 .thk a {
  color: #d36231;
  text-decoration: underline;
 }
 .reservation_detail li {
  height: 180px;
 }
 .mw_wp_form .error {
  clear: both;
  color: #FFF !important;
  background: #C1272D;
  font-size: 90%;
  display: block;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 5px;
  webkit-border-radius: 5px;
  -moz-border-radius: 5px;
 }
 .mw_wp_form_complete p.cptit {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  border-top: #ddd 2px solid;
  padding-top: 50px;
  margin-bottom: 30px;
 }
 .mw_wp_form_complete p.cptxt {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  border-bottom: #ddd 2px solid;
  padding-bottom: 50px;
  font-weight: bold;
 }
 /**
 * horizontal style of radio and checkbox
 */
 .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px !important;
 }
 .mw_wp_form .error {
  width: auto;
 }
 .mw_wp_form_complete p.cptit {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  border-top: #ddd 2px solid;
  padding-top: 30px;
  margin-bottom: 20px;
 }
 .mw_wp_form_complete p.cptxt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  border-bottom: #ddd 2px solid;
  padding-bottom: 30px;
  font-weight: normal;
 }
}
/*確認画面*/
.mw_wp_form_confirm.mw_wp_form_preview .m_select_outer_time::before {
 border-bottom: none !important;
 border-left: 4px solid transparent;
 border-right: 4px solid transparent;
 content: "";
 position: absolute;
 right: 9px;
 top: 12px;
 width: 0;
}
.mw_wp_form_confirm.mw_wp_form_preview .m_select_outer_time::after {
 border-left: 4px solid transparent;
 border-right: 4px solid transparent;
 border-top: none !important;
 content: "";
 position: absolute;
 right: 9px;
 top: 23px;
 width: 0;
}




/*ページナビ*/
.wp-pagenavi {
 margin-bottom: 80px;
 text-align: center;
 clear: both;
}
.post-type-archive-media .wp-pagenavi {
 margin: 50px 0;
 text-align: center;
 clear: both;
}
.wp-pagenavi a {
 color: #b5b5b5;
 text-decoration: none;
 color: #333;
}
.wp-pagenavi a:hover {
 opacity: 0.7;
}
.wp-pagenavi .page {
 display: inline-block;
 margin-right: 8px;
 min-width: 32px;
 padding: 6px 4px;
 background-color: #fff;
 border-radius: 4px;
 border: solid 1px #ebedf0;
 text-align: center;
 font-size: 14px;
 line-height: 1.2;
}
.nextpostslink, .previouspostslink {
 display: inline-block;
 margin-right: 8px;
 min-width: 32px;
 padding: 6px 4px;
 background-color: #fff;
 border-radius: 4px;
 border: solid 1px #ebedf0;
 text-align: center;
 font-size: 14px;
 line-height: 1.2;
}
.wp-pagenavi .current {
 background-color: #F5F5F5;
 color: #000;
 border-color: #000;
 display: inline-block;
 font-weight: bold;
 margin-right: 8px;
 min-width: 32px;
 padding: 6px 4px;
 border-radius: 4px;
 border: solid 1px #ebedf0;
 text-align: center;
 font-size: 14px;
 line-height: 1.2;
}




/*sitemap-list*/

.sitemap-list{
	margin-bottom: 50px;
}

.sitemap-ttl{
	background: #808080;
font-size: 18px;
color: #fff;
font-weight: 700;
padding: 15px;
margin-bottom: 30px;
border-radius: 10px;
line-height: 1.3;
}

.sitemap-ttl a{
	color: #fff;
}
.sitemap-list ul {
	padding: 0;
}
.sitemap-list li {
 margin-bottom: 8px;
 line-height: 1;
	list-style: none;
}
.sitemap-list li a {
 background: url("../img/ic_cursor.svg") no-repeat 0 center;
 padding-left: 20px;
 font-size: 14px;
 line-height: 1.5;
}

@media screen and (max-width: 767px) {
.sitemap-list{
  overflow: hidden;
  margin-bottom: 5vw;
 }
 .sitemap-ttl {
  background: #808080;
  font-size: 4.2vw;
  color: #fff;
  font-weight: 700;
  padding: 3vw;
  margin-bottom: 4vw;
  border-radius: 10px;
  line-height: 1.3;
 }
.sitemap-list li {
  margin-bottom: 8px;
  line-height: 1;
 }
.sitemap-list li a {
  background: url("../img/ic_cursor.svg") no-repeat 0 center;
  padding-left: 20px;
  font-size: 3.7vw;
  line-height: 1.5;
 }
}





