﻿@charset "utf-8";
/* CSS Document */

/*#40019追加*/
/* 目次(TOC)用CSS */
.singlePage #toc_container {
  min-width: 30%;
  padding: 1em 1.5em .5em;
  border: 1px solid #ccc;
}

.singlePage #toc_container .toc_title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.4em;
  position: relative;
  margin-bottom: .5em;
}

.singlePage #content #toc_container .toc_list {
  padding: 0;
}

.singlePage #content #toc_container .toc_list li {
  list-style: none;
  padding-bottom: .5em;
  margin-bottom: .5em;
  position: relative;
}

.singlePage #content #toc_container .toc_list li:last-child {
  border: 0;
  padding-bottom: 0;
}

.singlePage #content #toc_container .toc_list li ul {
  padding: 1em 0 0 0;
  margin: 0;
}

.singlePage #content #toc_container .toc_list li ul li {
  margin-left: 1.5em;
}

.singlePage #content #toc_container .toc_list li .toc_number {
  color: var(--color-gray);
}

.singlePage #content #toc_container a{
    color: #111;
}

/*目次開閉*/
.singlePage #toc_container{
    position: relative;
    overflow: hidden;
}

.singlePage #toc_container span.toc_toggle {
    position: absolute;
    bottom: 1px;
    left: 1px;
    width: calc( 100% - 2px);
    height: 40px;
    background: #f9f9f9;
    z-index: 1;
    text-align: center;
    cursor: pointer
}

.singlePage #toc_container.contracted span.toc_toggle:before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom,#f9f9f900 0%,#f9f9f9 90%);
    position: absolute;
    bottom: 40px;
    left: 0
}

.singlePage #toc_container span.toc_toggle .toc_toggle_text {
    display: inline-block;
    font-weight: bold;
    border: 1px solid;
    background: #fff;
    border-radius: 5px;
    padding: 5px 10px 5px 20px;
}

.singlePage #toc_container span.toc_toggle:hover .toc_toggle_text {
    opacity: .7
}

.singlePage #toc_container span.toc_toggle a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}

.singlePage #toc_container span.toc_toggle .toc_toggle_text:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px
}

.singlePage #toc_container span.toc_toggle .toc_toggle_text:before {
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    border-right-width: 1.8px;
    border-bottom-width: 1.8px;
    transform: translate(-100%,0) rotate(-135deg)
}

.singlePage #toc_container.contracted span.toc_toggle .toc_toggle_text:before {
    transform: translate(-100%,-2px) rotate(45deg)
}

.singlePage #toc_container .toc_list {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.singlePage #toc_container:has(.toc_toggle) .toc_list{
	padding-bottom: 50px !important;
}

.singlePage #toc_container.contracted .toc_list {
    max-height:200px;
    overflow: hidden
}

/* ビジュアルエディタ用CSS */
.singlePage #content p {
  margin-bottom: 10px;
  margin-bottom: 1em;
}

/*.singlePage #content h1,*/
.singlePage #content h2,
.singlePage #content h3,
.singlePage #content h4,
.singlePage #content h5,
.singlePage #content h6 {
  font-weight: bold;
  margin: 1em 0;
}

.singlePage #content h2 {
  font-size: 24px;
  border-bottom: 3px solid #D60201;
  padding: 0 0 .5em;
}

.singlePage #content h3 {
  font-size: 24px;
  border-left: 5px solid #D60201;
  padding: 0 0 0 .5em;
}

.singlePage #content h4 {
  font-size: 20px;
  background: #f6f6f6;
  padding: .5em;
}

.singlePage #content h5 {
  font-size: 18px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: .5em 0;
}

.singlePage #content h6 {
  font-size: 16px;
  border-bottom: 1px dashed #ccc;
  padding: 0 0 .5em;
}

.singlePage #content blockquote {
  padding: 1em;
  background: #f6f6f6;
  margin: 1em 0;
}

.singlePage #content blockquote p {
  margin-bottom: 0;
}

.singlePage #content ul,
.singlePage #content ol {
  background-color:#ffefef;
  padding: 1em 1em 1em 2.5em;
}

.singlePage #content #toc_container ul,
.singlePage #content #toc_container ol{
    background-color: transparent;
}

.singlePage #content ul li {
  list-style: disc;
  line-height: 1.6;
  margin-bottom: 1em;
}

.singlePage #content ol li {
  list-style: decimal;
  line-height: 1.6;
  margin-bottom: 1em;
}

.singlePage #content table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.singlePage #content .table__container{
    overflow-x: auto;
}

.singlePage #content .table__container table{
  min-width: 1160px;
}

.singlePage #content table th {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.singlePage #content table thead th{
    background: #ffefef;
    font-weight: bold;
}

.singlePage #content table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.singlePage #content table th,
.singlePage #content table td {
  padding: .5em;
}

.singlePage #content a {
  text-decoration: underline;
  color: #0069c7;
}

.singlePage #content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.singlePage #content {
  display: flow-root;
  /* float の解除 */
}

.singlePage #content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.singlePage #content img{
    max-width: 100%;
		height: auto;
}
/* ビジュアルエディタ用CSSここまで */


/**********************************/
/*ページ用CSS*/
.entry {
	margin: 0 auto 20px; /*padding:10px;*/
}
.posts-single .posts_mapttl{
	background: #666;
	text-align: center;
	color: #FFF;
	font-weight: 700;
	padding: 10px;
	font-size: 18px;
	margin-bottom: 10px;
}
.posts-single #mapBox iframe{
	width: 100%;
	height: 350px;
}
/***** icons *****/
.cate_end{
	background: #111;
	color: #FFF;
}
.cate_reservable{
	background: #D60201;
	color: #FFF;
}
.cate_end.circle,
.cate_reservable.circle{
	left: 5px;
}
.posts-archive .circle{
	display: flex;
	justify-content:center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	z-index: 10;
}
.posts-single .cate_new{
	font-size: 13px;
	padding: 5px 10px;
	border-radius: 12px;
	margin-left: 5px;
}
.posts-single #titleBox .cate_end,
.posts-single #titleBox .cate_reservable{
	display: inline-block;
	line-height: 1;
	padding: 5px 10px;
	border-radius: 12px;
}

/*
===== ** NewsPage:新着情報 ==========================================
*/
.newsPage .cate_new{
	padding: 5px 10px;
	margin-left: 5px;
}
.archive-news .item {
	border-bottom: 1px solid #CCC;
	box-sizing: border-box;
	padding: 20px;
}
.archive-news .item a {
	display: block;
	transition: all .3s ease;
}
.archive-news .update {
	display: inline-block;
	transition: all .3s ease;
}
.archive-news h3 {
	margin: 10px 0;
}

/* single-news 詳細 */
.single-news .detailBox,
.single-news #titleBox,
.single-news #content{
	margin-bottom: 40px;
}
.single-news .update{
	margin-bottom: 10px;
}

/*
===== ** eventPage:イベント情報 ==========================================
*/
.eventPage .cate_new.circle{
	left: 65px;
}
.archive-event .itemList{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.archive-event .item{
	width: 32%;
	box-sizing: border-box;
	border: solid 1px #111;
	margin-left: 2%;
	margin-bottom: 20px;
}
.archive-event .item:nth-child(3n-2){
	margin-left: 0;
}
.archive-event .item a{
	display: block;
	width: 100%;
	position: relative;
}
.archive-event .photo {
	width: 100%;
	height: 250px;
	overflow: hidden;
}
.archive-event .info{
	padding: 20px;
}
.archive-event .info_ttl{
	margin-bottom: 10px;
}
.archive-event .info_date{
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.archive-event .info_txt{
	margin-bottom: 10px;
}
.archive-event .info_link{
	font-weight: 700;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: solid 3px #111;
}

/* single-event 詳細 */
.single-event #detailBox {
	margin: 0 auto 40px;
}
.single-event #titleBox .icon{
	margin-bottom: 10px;
}
.single-event #photoBox {
	margin: 20px auto;
	width: 1000px;
	height: 700px;
}
.single-event #photoBox a{
	display: block;
	width: 100%;
	height: 100%;
}
.single-event #articleBox {
	margin: 30px 0;
}
.single-event #articleBox .notice_tbl {
	width: 100%;
	font-size: 1.2em;
}
.single-event #articleBox .notice_tbl th {
	width: 20%;
	padding: 20px;
	border: 1px solid #E6E6E6;
	background: #F5F5F5;
	font-weight: bold;
	text-align: center;
}
.single-event #articleBox .notice_tbl td {
	padding: 20px;
	border: 1px solid #E6E6E6;
}
.single-event #content {
	margin: 30px auto;
}
.single-event .btn_access {
	margin-left: 10px;
}
.single-event .btn_access a {
	padding: 10px;
	display: inline-block;
	background: #111;
	color: #FFF;
	text-decoration: none;
}
.single-event #btnBox {
	margin-bottom: 50px;
}
.single-event #btnBox a{
	width: 100%;
}
.single-event #btnBox p.btn_reserve, #btnBox p.btn_end {
	width: 50%;
	text-align: center;
	margin: 0 auto;
	font-size: 1.2em;
	font-weight: bold;
}
#btnBox p.btn_end {
	padding: 30px;
	background: #BBBBBB;
	color: #fff;
}
.single-event #content,
.single-event #reserveBox {
	margin: 30px auto;
}

/*************** flowBox：予約の流れ ****************/
.reserve_flowBox {
	margin: 40px 0;
}
.reserve_flowBox h3 {
	font-size: 3em;
	text-align: center;
	font-weight: bold;
	position: relative;
	display: table;
	padding: 0 90px;
	margin: 0 auto 20px;
}
.reserve_flowBox h3:before, .reserve_flowBox h3:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 60px;
	height: 4px;
	background-color: black;
	-moz-transform: rotate(60deg);
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}
.reserve_flowBox h3:before {
	left: 0;
}
.reserve_flowBox h3:after {
	-moz-transform: rotate(-60deg);
	-webkit-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);
	right: 0;
}
.reserve_flowBox .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.reserve_flowBox .inner dl {
	width: 24%;
	position: relative;
}
.reserve_flowBox .inner dl:after {
	content: "";
	display: inline-block;
	background: url(/share/img/common/arrow_black.png) no-repeat;
	background-size: 100%;
	width: 20px;
	height: 36px;
	position: absolute;
	right: -10px;
	top: 60px;
}
.reserve_flowBox .inner dl:last-child:after{
	content: none !important;
}
.reserve_flowBox .inner dl dt {
	width: 160px;
	margin: 0 auto;
}
.reserve_flowBox .inner dl dt img{
	width: 100%;
}
.reserve_flowBox .inner dl dd {
	margin: 10px 0 0;
	text-align: center;
}
.reserve_flowBox .attention {
	background: #f5f5f5;
	padding: 10px;
	display: flex;
	justify-content: center;
	margin: 20px auto 40px;
	color: #D60201;
}

/*
=====** renoPage:リノベーション済み物件  ======================================
*/
#postbox.archive-reno{
	width: 100% !important;
}
.archive-reno .reno_appeal{
	margin-bottom: 50px;
	text-align: center;
	font-size: 18px;
}
.renoPage .iconList{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.renoPage .iconList dt{
	font-size: 20px;
	margin-right: 10px;
}
.renoPage .iconList dt img{
	margin-right: 5px;
}
.renoPage .iconList dd{
	margin-right: 10px;
	text-decoration: underline;
}
.archive-reno #tagBox{
	position: relative;
	width: 1080px;
	max-width: 98%;
	margin: 0 auto 40px;
}
.archive-reno #tagBox:before,
.archive-reno #tagBox:after {
	content: "";
	width: 15px;
	height: 100%;
	border: dotted 1px #111;
	position: absolute;
	top: 0;
}
.archive-reno #tagBox:before {
	left: 0;
	border-right: none;
}
.archive-reno #tagBox:after {
	right: 0;
	border-left: none;
}
.archive-reno .iconList{
	margin: 0 40px;
	padding: 20px 0;
}
.archive-reno .tag_appeal{
	display: inline-block;
	position: absolute;
	background: #111;
	color: #FFF;
	padding: 5px 10px;
	top: -20px;
	left: 25px;
}
.renoPage .itemList{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin: 0 auto;
}
.renoPage .item{
	margin: 0 0 20px 1%;
	background:#FFF;
	width: 24%;
	min-width: 240px;
}
.renoPage .item:nth-child(4n-3){
	margin-left: 0px;
}
.renoPage .item a{
	display: block;
	width: 100%;
	position: relative;
}
.renoPage .item .photo{
	width: 100%;
	height: 35vw;
	overflow: hidden;
}
.renoPage .info {
	padding: 10px;
	transition: all .3s ease;
}
.renoPage a:hover .info{
	opacity: 0.5;
}
.renoPage .item .info_ttl{
	font-weight: 700;
	margin-bottom: 10px;
}
.archive-reno .item .icon{
	left: 5px;
	top: 5px;
	position: absolute;
	display: flex;
}
.archive-reno .item .icon *{
	position: static !important;
}
.archive-reno .item .icon .cate_new{
	margin-right: 10px;
}
.renoPage .info_txt{
	margin-bottom: 10px;
}
.renoPage .info_link{
	font-weight: 700;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: solid 3px #111;
}
.renoPage .tax_ttl{
	margin-bottom: 20px;
}
.taxo-reno .itemList{
	margin-bottom: 40px;
}
.taxo-reno #tagBox .current{
	display: none;
}
.single-reno #titleBox{
	text-align: center;
	margin-bottom: 20px;
}
.single-reno .page_titleReno{
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: inline-block;
	padding: 0 40px;
}
.single-reno .page_titleReno:before,
.single-reno .page_titleReno:after {
	font-size: 72px;
	color: #CCC;
	line-height: 1;
	position: absolute;
	text-shadow: 3px 3px #FDF200;
}
.single-reno .page_titleReno:before {
	content: "“";
	left: 0;
}
.single-reno .page_titleReno:after {
	content: "”";
	right: 0;
}
.single-reno .update{
	margin-bottom: 10px;
}
.single-reno .title_info{
	font-weight: 700;
	font-size: 16px;
	text-align: center;
}
.single-reno #tagBox{
	margin-bottom: 40px;
	background: #F5F5F5;
	padding: 20px;
}
.single-reno #photoBox{
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.single-reno .photoitem {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}
.single-reno .photoitem.img_portrait {
	width: 49%;
}
.single-reno .photoitem a{
	display: block;
	width: 100%;
	height: 100%;
}
.single-reno .photoitem img{
	object-fit: cover;
	font-family: "object-fit:cover;";
	width: 100%;
	height: 450px;
}
.single-reno .photoitem.img_portrait img{
	height: 680px;
}
.single-reno .photoitem .caption {
	display: inline-block;
	font-size: 18px;
	margin-top: 10px;
}
.single-reno .list_toggle {
	margin-top: 10px;
}
.single-reno .list_toggle a.open_link:before {
	content: "もっと写真を見る ＋";
	display: block;
	font-weight: 700;
	background: #111;
	color: #FFF;
	padding: 20px;
	font-size: 20px;
	text-align: center;
	transition: all .3s ease;
}
.single-reno .list_toggle a.open_link:hover:before {
	opacity: 0.6;
}
.single-reno #infoBox{
	margin: 40px 0;
}
.single-reno .info_datatable{
	font-size: 1.2em;
}
.single-reno .info_datatable th{
	width: 240px !important;
	text-align: center;
	font-weight: 700;
	padding: 15px;
}
.single-reno .info_datatable td{
	padding: 15px !important;
}
.single-reno #infoBox .info_ttl{
	margin-bottom: 20px;
	text-align: center;
}
.single-reno #infoBox .info_ttl span{
	display: block;
}
.single-reno #infoBox .info_ttl .en_osw{
	font-size: 28px;
	margin-bottom: 5px;
}
.single-reno #otherBox{
	margin-bottom: 40px;
}
.single-reno #otherBox h3{
	margin-bottom: 20px;
}
.single-reno #otherBox .item .photo{
	height: 180px !important;
}

/*
=====お客様事例:intvPage ======================================
*/
.archive-intv .intv_itemList{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: 40px;
}
.archive-intv .intv_item{
	margin: 0 0 20px 2%;
	background:#FFF;
	width: 32%;
	min-width: 240px;
}
.archive-intv .intv_item:nth-child(3n-2){
	margin-left: 0;
}
.archive-intv .intv_item a{
	display: block;
	width: 100%;
	position: relative;
}
.archive-intv .intv_item .cate_new{
	left: 5px;
}
.archive-intv .intv_photo{
	width: 100%;
	height: 250px;
	overflow: hidden;
}
.archive-intv .intv_info{
	padding: 10px;
	transition: all .3s ease;
}
.archive-intv .intv_item a:hover .intv_info {
	opacity:0.5;
}
.archive-intv .intv_info_ttl{
	font-weight: 700;
	margin-bottom: 10px;
}
.single-intv #titleBox{
	margin-bottom: 40px;
}
.single-intv .update{
	margin-bottom: 10px;
}
.single-intv #titleBox .inner{
	display: flex;
	flex-direction: row-reverse;
}
.single-intv .ttlBox_txtBox{
	background: #f5f5f5;
	box-sizing: border-box;
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
}
.single-intv .page_titleIntv{
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 10px;
}
.single-intv .ttlBox_photoBox{
	width: 40%;
	height: 300px;
}
.single-intv #articleBox > *{
	margin-bottom: 40px;
}
.single-intv .layout01{
	display: flex;
	justify-content: space-between;
}
.single-intv .layout01.reverse{
	flex-direction: row-reverse;
}
.single-intv .layout01 .article_intvBox_photo{
	width: 450px;
	height: 300px;
}
.single-intv .layout01 .inner{
	width: 600px;
}
.single-intv .article_intvBox_ttl{
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
}
.single-intv .article_intvBox_txt{
	font-size: 16px;
}
.single-intv .article_intvBox_imgList{
	display: flex;
	justify-content: flex-start;
}
.single-intv .article_intvBox_imgItem{
	width: 100%;
	height: 300px; 
}
.single-intv .article_intvBox_imgItem.column02{
	width: 49%;
}
.single-intv .article_intvBox_imgItem.column02:last-child{
	margin-left: 2%;
}
.single-intv .article_intvBox_imgItem.column03{
	width: 32%;
}
.single-intv .article_intvBox_imgItem.column03:nth-child(2){
	margin: 0 2%;
}

/*
=====施工事例:galleryPage ======================================
*/
.galleryPage .archiveBtn {
	display: flex;
	flex-wrap: wrap;
	margin: 25px;
}
.galleryPage .archiveBtn li {
	margin: 0;
}
.galleryPage .archiveBtn li a {
	display: inline-block;
	padding: 10px;
	margin: 0 10px 10px 0;
	min-width: initial;
	min-width: auto;
}
/*************** archive-gallery ****************/
.galleryPage .gallery_itemList{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin: 0 auto;
}
.galleryPage .gallery_item{
	margin: 0 2.4% 80px;
	background:#FFF;
	width: 28.5%;
	min-width: 240px;
}
.galleryPage .gallery_item a{
	display: block;
	width: 100%;
	position: relative;
}
.galleryPage .gallery_item .cate_new{
	left: 5px;
}
.galleryPage .gallery_photo{
	width: 100%;
	height: 210px;
	overflow: hidden;
}
.galleryPage .gallery_info{
	padding: 10px;
	transition: all .3s ease;
}
.galleryPage .gallery_item a:hover .gallery_info {
	opacity:0.5;
}
.galleryPage .gallery_info_ttl,
.galleryPage .gallery_info_detail{
	margin-bottom: 10px;
}
.galleryPage .gallery_item .cate_gallery{
	display: inline-block;
	font-size: 12px;
	background: #111;
	color: #FFF;
	line-height: 1;
	padding: 5px 10px;
	margin-left: 5px;
	margin-bottom: 5px;
}
.galleryPage .gallery_item .cate_gallery:nth-of-type(2){
	margin-left: 0;
}

/*************** single-gallery ****************/
.single-gallery #titleBox{
	margin-bottom: 40px;
}
.single-gallery .update{
	margin-bottom: 10px;
}
.single-gallery #titleBox .inner{
	display: flex;
	flex-direction: row-reverse;
	margin: 0 -500%;
	padding: 0 500%;
	background: #F5F5F5;
}
.single-gallery .ttlBox_txtBox{
	box-sizing: border-box;
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
}
.single-gallery .page_titleGallery{
	font-weight: 700;
	font-size: 26px;
	margin-bottom: 10px;
}
.single-gallery .ttlBox_txtBox p{
	font-size: 20px;
}
.single-gallery .ttlBox_photoBox{
	width: 40%;
	height: 300px;
}
/*************** sliderBox ****************/
.single-gallery .sliderBox {
	margin-bottom: 40px;
}
.single-gallery .slider_main li {
	text-align: center;
}
.single-gallery .slider_main img {
	width: auto;
	max-height: 600px;
	height: auto;
	object-fit: contain;
	font-family: 'object-fit: contain;'; /*IE対策*/
	margin: auto;
}
.single-gallery .slider_pager {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.single-gallery .slider_pager li {
	width: 15%;
	height: 115px;
	margin: 0.8%;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.single-gallery .slider_pager li a{
	display: block;
	width: 100%;
	height: 100%;
}
.single-gallery .slider_pager li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	font-family: 'object-fit: contain;'; /*IE対策*/
}
/*************** commentBox ****************/
.single-gallery .commentBox {
	margin: 0 0 40px;
	padding: 20px 40px;
	font-size: 1.1em;
	position: relative;
}
.single-gallery .commentBox:before,
.single-gallery .commentBox:after {
	content: "";
	width: 15px;
	height: 100%;
	border: dotted 1px #111;
	position: absolute;
	top: 0;
}
.single-gallery .commentBox:before{
	left: 0;
	border-right: none;
}
.single-gallery .commentBox:after{
	right: 0;
	border-left: none;
}
.single-gallery .commentBox p {
	line-height: 200%;
}

/*************** title ****************/
.single-gallery #detailBox h3 {
	margin-bottom: 20px;
	text-align: center;
}
.single-gallery #detailBox h3 span{
	display: block;
}
.single-gallery #detailBox h3 .en_osw{
	font-size: 28px;
	margin-bottom: 5px;
}
/*************** infoBox ****************/
.single-gallery #infoBox {
	margin: 40px 0;
}
.single-gallery table.infoBox {
	width: 100%;
}
.single-gallery .infoBox th {
	background: #F2F2F2;
	width: 25%;
	border: 1px solid #ccc;
	line-height: 70px;
	font-weight: bold;
	text-align: center;
}
.single-gallery .infoBox td {
	width: 75%;
	border: 1px solid #ccc;
	line-height: 70px;
	padding: 0 30px;
}
/*************** baBox ****************/
.single-gallery #BAtabBox {
	margin: 40px 0;
}
.single-gallery #titletabs ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.single-gallery #titletabs ul li {
	line-height: 50px;
	background: #111;
	color: #fff;
	font-size: 1.5em;
	width: 48%;
	text-align: center;
}
.single-gallery #BAtabBox #BAtab li {
	position: relative;
	background: #fff;
	border: 2px solid #111;
	display: inline-block;
	margin: 10px 0px 15px 10px;
	padding: 10px 15px;
	font-size: 1.2em;
	font-weight: bold;
	cursor: pointer;
}
.single-gallery #BAtabBox #BAtab li:after, .single-gallery #BAtabBox #BAtab li:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.single-gallery #BAtabBox #BAtab li:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 5px;
	margin-left: -5px;
}
.single-gallery #BAtabBox #BAtab li:before {
	border-color: rgba(17, 17, 17, 0);
	border-top-color: #111;
	border-width: 8px;
	margin-left: -8px;
}
.single-gallery #BAtabBox #BAtab li.select {
	background: #111;
	color: #fff;
}
.single-gallery #BAtabBox #BAtab li.select:after {
	border-top-color: #111;
}
.single-gallery #BAtabBox .contitem li {
	position: relative;
}
.single-gallery #BAtabBox .contitem ul {
	background: url(/share/img/common/arrow_black.png) no-repeat center center;
	/*background: url(/share/img/common/arrow_black.svg) no-repeat center center;*/
	background-size: 15px;
}
.single-gallery #BAtabBox .contitem li {
	width: 48%;
	text-align: center;
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: inline-block;
	margin-right: 3.5%;
	position: relative;
}
.single-gallery #BAtabBox .contitem li:last-child {
	margin-right: 0;
}
.single-gallery #BAtabBox .contitem img {
	width: 100%;
	height: 370px;
	object-fit: contain;
	font-family: 'object-fit: contain;'; /*IE対策*/
}
.single-gallery #BAtabBox .contitem li p {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	background: rgba(0,0,0,0.7);
	padding: 10px;
	font-size: 1.2em;
}
/*************** madoriPhotoBox ****************/
.single-gallery .madoriPhotoBox {
	margin: 40px 0;
}
.single-gallery .madoriPhotoBox ul {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: url(/share/img/common/arrow_black.png) no-repeat center center;
	background-size: 15px;
}
.single-gallery .madoriPhotoBox ul li {
	width: 48%;
	position: relative;
	background: #fff;
	border: 1px solid #ccc;
}
.single-gallery .madoriPhotoBox ul li p {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.2em;
	font-weight: bold;
	border: 1px solid rgba(0,0,0,0.7);
	background: rgba(255,255,255,0.7);
	padding: 10px;
}
.single-gallery .madoriPhotoBox ul li img {
	width: 100%;
	height: 370px;
	object-fit: contain;
	font-family: 'object-fit: contain;'; /*IE対策*/
}
/*************** otherBox ****************/
.single-gallery .otherBox {
	margin-top: 60px;
}
.single-gallery .otherBox .page_title02{
	margin-bottom: 40px;
}
.single-gallery .otherBox .gallery_photo{
	height: 180px !important;
}

/*
=====reportPage:マンション案内レポート======================================
*/
.reportPage .cate_new{
	padding: 5px 10px;
	margin-left: 5px;
}
.archive-report .item {
	border-bottom: 1px solid #CCC;
	box-sizing: border-box;
	padding: 20px;
}
.archive-report .item a {
	display: block;
	transition: all .3s ease;
}
.archive-report .update {
	display: inline-block;
}
.archive-report h3 {
	margin: 10px 0;
}
.archive-report .item a{
	display: block;
}
.archive-report .item a >*{
	display: inline-block;
	vertical-align: middle;
}
.archive-report .photo{
	width: 270px;
	height: 180px;
	margin-right: 40px;
}
.single-report .page_title02{
	margin-bottom: 10px;
}
.single-report #titleBox p{
	display: inline-block;
}

/*
=====staffPage:スタッフ紹介======================================
*/
.staffPage .itemList {
	display: flex;
	flex-wrap: wrap;
}
.staffPage .itemList li.item {
	position: relative;
	margin: 40px 15px 40px 0;
}
.staffPage .itemList li.item:nth-child(3n) {
	margin-right: 0;
}
.staffPage .itemList li.item .photo img {
	object-fit: cover;
	font-family: 'object-fit: cover;'; /*IE対策*/
	width: 100%;
	height: 350px;
	width: 350px;
}
.staffPage .itemList li.item .info {
	position: absolute;
	bottom: 0px;
	left: 0px;
}
.staffPage .itemList li.item .info .phonetic {
	font-size: 1.5em;
	color: #fff;
	font-weight: 800;
	letter-spacing: 2px;
	background: rgba(0,0,0,0.6);
	padding: 10px;
}
/*
===== ** single-staff 詳細 ==========================================
*/
.single-staff #infoBox .photo {
	width: 960px;
	margin: 0px auto 40px;
	text-align: center;
	height: 400px;
}
.single-staff #infoBox .photo img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.single-staff #titleBox {
	margin-bottom: 60px;
}
.single-staff #titleBox .staff_cate {
	line-height: 3;
	display: block;
	text-align: center;
}
.single-staff #infoBox #titleBox .item_ttl {
	font-weight: bold;
	font-size: 2em;
	line-height: 1.0;
	letter-spacing: 2px;
	text-align: center;
}
.single-staff .inner960 {
	margin: 40px auto;
	width: 960px !important;
}
.single-staff h4.ttl {
	font-size: 1.2em;
	font-weight: bold;
	width: 13%;
	text-align: center;
	padding: 5px 20px;
	border: 2px solid;
	float: left;
}
.single-staff .rightItem {
	width: 75%;
	float: right;
}
/*************** #content ****************/
.single-staff #content p {
	margin-bottom: 10px;
	font-size: 1.1em;
	line-height: 200%;
}
.single-staff #content img {
	width: auto;
}
/*************** articleBox ****************/
.single-staff #articleBox {
	margin: 60px 0;
}
.single-staff #articleBox table {
	margin-top: -20px;
	font-size: 1.1em;
}
.single-staff #articleBox table th {
	width: 15%;
	font-weight: bold;
}
.single-staff #articleBox table td {
	padding: 15px;
}
/*************** favoriteBox ****************/
.single-staff #favoriteBox {
	margin-bottom: 40px;
}
.single-staff #favoriteBox .inner {
	display: flex;
	flex-wrap: wrap;
	float: right;
	margin-top: -36px;
}
.single-staff #favoriteBox .inner dl {
	width: 30%;
	margin: 5% 0 2%;
}
.single-staff #favoriteBox .inner dl:nth-child(3n-1) {
	margin: 5% 5% 0;
}
.single-staff #favoriteBox .inner dl dt img {
	width: 100%;
	height: 216px;
	object-fit: cover;
	font-family: 'object-fit: cover;'; /*IE対策*/
}
.single-staff #favoriteBox .inner dl dd {
	margin-top: 10px;
}

/*
=====お問い合わせ ======================================
*/
.contactPage .main{
	margin-bottom: 40px;
}
.contactPage .main h3{
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}
.contactPage .main .text{
	text-align: center;
	margin-bottom: 20px;
}
.contactPage .main .time{
	background: #CCC;
	padding: 10px;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
}

/*
=====ご来店予約 ======================================
*/
#postbox.shop_reservePage{
	width: 100% !important;
	max-width: none !important;
}
.shop_reservePage img{
	width: 100%;
	height: auto;
}
.reservePage #bread, .reservePage #bread a {
	color: #fff;
}
.reservePage #bread a {
	background: url(/share/img/common/arrow_white.png) no-repeat right center;
	-webkit-background-size: 5px;
	background-size: 5px;
}
.reservePage #shoprsv_fvBox h3{
	width: 1080px;
	margin: 0 auto 30px;
}
.reservePage #shoprsv_fvBox .text{
	text-align: center;
	font-size: 22px;
	font-weight: 700;
}
.reservePage #footReserveBox .inner .archive_btn a {
	background-image: none;
}
.reservePage .ban_reserve {
	width: 1080px;
	margin: 0 auto;
}
.single-event .ban_reserve a {
	width: 1080px;
	margin: 0 auto;
}
.single-event .ban_reserve a img {
	max-width: 100%;
	height: auto;
}
#shoprsv_fvBox {
	background: url(/share/img/common/footreserve_bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 40px 0 20px;
}
#shoprsv_fvBox .inner h3 {
	margin: 0 auto;
}
#shoprsv_fvBox .inner h3 img {
	width: 100%;
	height: auto;
}
.reservePage #shoprsv_fvBox .inner {
	padding: 0 0 58px;
}
.single-event #mapBox {
	margin-bottom:40px;
}
/*************** purposeBox ****************/
.reservePage .purposeBox {
	margin-bottom: 60px;
	text-align: center;
}
.reservePage .purposeBox .inner {
	padding: 40px 0 60px;
	background: url(/share/img/page/shop_reserve/bg_stripe.png);
	text-align: center;
}
.reservePage .purposeBox h3 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	display: inline-block;
	background: #111;
	border-radius: 40px;
	color: #FFF;
	padding: 10px 30px;
}
.reservePage .purposeBox ul {
	display: table;
	margin: -40px auto 0;
	background: #FFF;
	padding: 70px 100px 40px;
}
.reservePage .purposeBox ul li {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	background: url(/share/img/common/icon_check.png) no-repeat left center;
	-webkit-background-size: 30px;
	background-size: 30px;
	padding: 5px 0 5px 50px;
}
.reservePage .purposeBox ul li:last-child {
	margin-bottom: 0;
}
.reservePage .purposeBox .text {
	font-size: 3em;
	text-align: center;
	font-weight: 800;
	position: relative;
	display: inline-block;
	padding: 0 120px;
	margin: 40px 0 20px;
}
.reservePage .purposeBox .text:before, .reservePage .purposeBox .text:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 110px;
	height: 4px;
	background-color: black;
	-moz-transform: rotate(60deg);
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}
.reservePage .purposeBox .text:before {
	left: 0;
}
.reservePage .purposeBox .text:after {
	-moz-transform: rotate(-60deg);
	-webkit-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);
	right: 0;
}
.reservePage .purposeBox .bannerBox01 {
	margin: 0 auto;
	width: 1080px;
}
.reservePage .purposeBox .bannerBox01 p {
	text-align: center;
}
/*************** roomBox ****************/
.reservePage .roomBox {
	background: url(/share/img/page/shop_reserve/roomBox_bg.jpg);
	padding: 60px 0 40px;
}
.reservePage .roomBox h3 {
	padding: 20px 30px;
	font-weight: bold;
	font-size: 3em;
	border: 4px solid;
	background: #fff;
	text-align: center;
	display: table;
	margin: 0 auto 40px;
	width: 30%;
}
.reservePage .roomBox ul {
	margin-bottom: 0;
}
.reservePage .roomBox .item {
	margin: 0 20px 20px;
}
.reservePage .roomBox .item .photo .iconBox {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: 10px;
	left: 10px;
}
.reservePage .roomBox .item .inner {
	background: #fff;
	padding: 20px;
}
.reservePage .roomBox .itemList .item .inner .add {
	margin-top: 0px;
}
.reservePage .roomBox .btn_type02 {
	margin-top: 0;
}
.reservePage .roomBox .btn_type02 a {
	background: #fff;
}
.reservePage .roomBox .btn_type02 a:hover {
	background: #111;
	border-color: #fff;
}
/*************** meritBox ****************/
.reservePage #merit {
	padding-top: 70px;
	margin: -70px auto 40px !important;
}
.reservePage .meritBox h3 {
	margin: 60px auto 40px;
	width: 815px;
}
.reservePage .meritBox ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1080px;
	max-width: 98%;
	margin: 0 auto;
}
.reservePage .meritBox ul li {
	width: 340px;
	max-width: 33%;
}
.reservePage .meritBox ul li .text {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #111;
	text-align: center;
	padding: 20px 5px;
}
.reservePage .meritBox .messageBox {
	height: 250px;
	background: url(/share/img/page/shop_reserve/messageBox_bg.jpg) ;
	margin: 60px 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.reservePage .meritBox .messageBox p {
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}

.reservePage .meritBox .text--meritBox ,.single-event .meritBox .text--meritBox {
	font-size: 3em;
	text-align: center;
	font-weight: 800;
	position: relative;
	display: block;
	padding: 0 120px;
	margin: 40px auto 20px;
	/* width: 768px; */
	line-height: 1.4;
}
.reservePage .meritBox .text--meritBox:before, .reservePage .meritBox .text--meritBox:after ,
.single-event .meritBox .text--meritBox:before, .single-event .meritBox .text--meritBox:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 110px;
	height: 4px;
	background-color: black;
	-moz-transform: rotate(60deg);
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}
.reservePage .meritBox .text--meritBox:before ,.single-event .meritBox .text--meritBox:before {
	left: 0;
}
.reservePage .meritBox .text--meritBox:after, .single-event .meritBox .text--meritBox:after {
	-moz-transform: rotate(-60deg);
	-webkit-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);
	right: 0;
}
/*************** flowBox：予約の流れ ****************/
.reservePage .flowBox ,.single-event .flowBox {
	margin: 40px auto;
	width: 1080px;
	max-width: 98%;
}
.reservePage .flowBox .step ,.single-event .flowBox .step {
	text-align: center;
}
.reservePage .flowBox h3 ,.single-event .flowBox h3 {
	font-size: 3em;
	text-align: center;
	font-weight: bold;
	position: relative;
	display: table;
	padding: 0 90px;
	margin: 0 auto 30px;
}
.reservePage .flowBox h3:before, .reservePage .flowBox h3:after,
.single-event .flowBox h3:before, .single-event .flowBox h3:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 60px;
	height: 4px;
	background-color: black;
	-moz-transform: rotate(60deg);
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}
.reservePage .flowBox h3:before, .single-event .flowBox h3:before {
	left: 0;
}
.reservePage .flowBox h3:after, .single-event .flowBox h3:after{
	-moz-transform: rotate(-60deg);
	-webkit-transform: rotate(-60deg);
	-ms-transform: rotate(-60deg);
	transform: rotate(-60deg);
	right: 0;
}
.reservePage .flowBox .inner ,.single-event .flowBox .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.reservePage .flowBox .inner dl, .single-event .flowBox .inner dl {
	width: 24%;
	position: relative;
}
.reservePage .flowBox .inner dl:after, .single-event .flowBox .inner dl:after{
	content: "";
	display: inline-block;
	background: url(/share/img/common/arrow_black.png)no-repeat;
	background-size: 100%;
	width: 20px;
	height: 36px;
	position: absolute;
	right: -10px;
	top: 60px;
}
.reservePage .flowBox .inner dl dt,.single-event .flowBox .inner dl dt {
	width: 160px;
	margin: 0 auto;
}
.reservePage .flowBox .inner dl:last-child:after,.single-event .flowBox .inner dl:last-child:after{
	content: none !important;
}
.reservePage .flowBox .inner dl dd, .single-event .flowBox .inner dl dd{
	margin: 10px 0 0;
	text-align: center;
}
.reservePage .flowBox .attention, .single-event .flowBox .attention{
	background: #f6f6f6;
	padding: 10px;
	display: flex;
	justify-content: center;
	margin: 20px auto 40px;
	color: #D60201;
}
.reservePage #form , .single-event #form{
	width: 1080px;
	max-width: 98%;
	margin: 40px auto 0;
}

/* 店舗案内 */
.reservePage .accessBox .title ,.single-event .accessBox .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
}
.reservePage .accessBox,.single-event .accessBox {
	margin: 50px auto !important;
	width: 1010px;
}
.reservePage .accessBox .inner ,.single-event .accessBox .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.reservePage .accessBox .inner > div ,.single-event .accessBox .inner > div {
	width: 490px;
}
.reservePage .accessBox .inner .slider_pager ,.single-event .accessBox .inner .slider_pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}
.reservePage .accessBox .slider_pager ,.single-event .accessBox .slider_pager {
	justify-content: normal;
}
.reservePage .accessBox .slider_pager li ,.single-event .accessBox .slider_pager li {
	margin: 0 5px; 
}
.reservePage .accessBox .inner .slider_pager li ,.single-event .accessBox .inner .slider_pager li {
	width: 21%;
}
.reservePage .accessBox .inner .slider_pager li a ,.single-event .accessBox .inner .slider_pager li a {
	opacity: 0.5;
}
.reservePage .accessBox .inner .slider_pager li a.active ,.single-event .accessBox .inner .slider_pager li a.active {
	opacity: 1;
}
.reservePage .accessBox .inner .infoBox dl ,.single-event .accessBox .inner .infoBox dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 23px 0;
}
.reservePage .accessBox .inner .infoBox dl dt ,.single-event .accessBox .inner .infoBox dl dt {
	font-weight: bold;
	width: 15%;
}
.reservePage .accessBox .inner .infoBox dl dt,
.single-event .accessBox .inner .infoBox dl dd {
	padding: 0 15px;
	font-size: unset;
}
.reservePage .accessBox .mapBox,.single-event .accessBox .mapBox {
	margin-top: 20px;
}
.single-event .accessBox .inner .slider_pager li img {
	max-width:100%;
	height:auto;
}

/*特典条件*/
.eventPage .conditionBox,
.reservePage .conditionBox,
.showroomPage .conditionBox {
	margin: 50px auto;
}
.eventPage .conditionBox_accordion,
.reservePage .conditionBox_accordion,
.showroomPage .conditionBox_accordion {
	color: #fff;
	background: #ccc;
	padding: 1rem;
	text-align: center;
	position: relative;
	cursor: pointer;
	/* border: 6px double #fff; */
	font-size: 1.4em;
	font-weight: bold;
	width: 60%;
	margin: 0 auto;
}
.eventPage .conditionBox_accordion::after,
.reservePage .conditionBox_accordion::after,
.showroomPage .conditionBox_accordion::after{
	content:"▼";
	display: inline-block;
	width: 2em;
	height: auto;
	line-height: 1;
	padding: 0.5em 0;
	text-align: center;
	border: 2px solid #fff;
	font-size:0.8em;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
.eventPage .conditionBox_accordion.active::after,
.reservePage .conditionBox_accordion.active::after,
.showroomPage .conditionBox_accordion.active::after{
	content:"▲";
}
.eventPage .conditionBox .inner,
.reservePage .conditionBox .inner,
.showroomPage .conditionBox .inner {
	padding: 1rem;
	background: #f6f6f6;
	display: none;
	width: 60%;
	margin: 0 auto;
}
.eventPage .conditionBox .conditionBox_ttl,
.reservePage .conditionBox .conditionBox_ttl,
.showroomPage .conditionBox .conditionBox_ttl {
	text-align: center;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 1em;
}
.eventPage .conditionBox_listWrap,
.reservePage .conditionBox_listWrap,
.showroomPage .conditionBox_listWrap {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.eventPage .conditionBox_itemList,
.reservePage .conditionBox_itemList,
.showroomPage .conditionBox_itemList {
	width: 40%;
	margin: 0 2%;
}
.eventPage .conditionBox_itemList li,
.reservePage .conditionBox_itemList li,
.showroomPage .conditionBox_itemList li {
	font-size: 1.2em;
	margin-bottom: 0.5em;
	position: relative;
	line-height: 1.3;
}
.eventPage .conditionBox_itemList li::before,
.reservePage .conditionBox_itemList li::before,
.showroomPage .conditionBox_itemList li::before {
	content: "・";
	display: inline-block;
}
.eventPage .conditionBox_caution,
.reservePage .conditionBox_caution,
.showroomPage .conditionBox_caution{
	margin: 1em auto;
	padding: 1em;
	font-size: 1.1em;
	color: #D60201;
	border: 1px solid #D60201;
	width: 80%;
}
/*
=====店舗情報:shopPage ======================================
*/
#postbox.shopPage {
	width: 100%;
	max-width: none;
}
.shopPage .contents-inner{
	width: 1080px;
	max-width: 98%;
	margin-right: auto;
	margin-left: auto;
	min-width: 768px;
}
.shopPage img {
	width: 100%;
	height: auto;
}
.shopPage .mainBox {
	margin: -40px 0 40px;
	padding: 40px 0;
	background: url(/share/img/page/shop/shop_main_bg.jpg);
}
.shopPage .title {
	text-align: center;
	font-weight: bold;
	font-size: 2.6em;
	margin-bottom: 20px;
	line-height: 1.4em;
}
.shopPage .mainBox h3 span {
	display: block;
	font-size: 0.7em;
	line-height: 1.4em;
}
.shopPage .mainBox .info {
	margin: 20px 0;
}
.shopPage .mainBox .info > *{
	text-align: center;
}
.shopPage .mainBox .info h4 {
	font-size: 2em;
	font-weight: bold;
}
.shopPage .mainBox .info .text {
	margin-top: 10px;
	font-size: 1.2em;
}
.shopPage .mainBox .comment {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}
/*************** vrBox ****************/
.shopPage .vr_banner h4{
	font-weight: 700;
	text-align: center;
	font-size: 24px;
	margin: 30px 0 10px;
}
.shopPage .vr_banner .text{
	text-align: center;
	margin: 10px 0 40px;
	font-size: 16px;
}
.shopPage .vrBox {
	padding: 50px 0;
	margin: 40px 0;
	background: url(/share/img/page/shop/vr_bg.jpg) no-repeat center center;
}
.shopPage .vrBox .contents-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.shopPage .vrBox .contents-inner > * {
	width: 48%;
}
.shopPage .vrBox .rightCont .ttl{
	font-weight: 700;
	font-size: 2em;
	margin-bottom: 20px;
}
.shopPage .vrBox .rightCont .item{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 700;
}

/*************** vrDetailBox ****************/
.shopPage .vrDetailBox {
	margin: 40px 0;
}
.shopPage .vrDetailBox .detailBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.shopPage .vrDetailBox .detailBox dl {
	width: 32%;
}
.shopPage .vrDetailBox .detailBox dd {
	margin: 10px;
	font-size: 1.2em;
	text-align: center;
}
/*************** pointBox ****************/
.shopPage .pointBox {
	padding: 40px 0;
	margin: 0 0 40px;
	background: url(/share/img/page/shop/consultBox_bg.jpg) center center;
}
.shopPage .pointBox .contents-inner{
	text-align: center;
}
.shopPage .pointBox h3 span {
	font-size: 1.5em;
	background: #FDF200;
	line-height: 66px;
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 0 5px;
}
.shopPage .pointBox .title {
	padding: 0 30px 10px;
	border-bottom: dashed 2px #111;
	display: inline-block;
	margin-bottom: 0;
}
.shopPage .pointBox .itemBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 40px 20px;
}
.shopPage .pointBox .itemBox dl {
	width: 32.5%;
	border: solid 1px #111;
}
.shopPage .pointBox .itemBox dl dt {
	text-align: center;
	background: #FFF;
}
.shopPage .pointBox .itemBox dl dt img {
	padding: 10px 0;
	background: #fff;
	width: 180px;
}
.shopPage .pointBox .itemBox dl dd.caption {
	background: #111;
	color: #fff;
	font-size: 1.3em;
	font-weight: bold;
	padding: 15px;
	text-align: center;
}
.shopPage .pointBox .btn_type02 {
	margin-bottom: 20px;
}
.shopPage .pointBox .btn_type02 a {
	background: #fff;
}
.shopPage .pointBox .btn_type02 a:hover {
	background: #111;
}
/*************** accessBox ****************/
.shopPage #accessBox {
	padding-top: 90px;
	margin: -40px auto 60px;
	font-size: 1.2em;
}
.shopPage #accessBox .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}
.shopPage #accessBox .inner .shopBox {
	width: 47%;
}
.shopPage #accessBox .shopttl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.shopPage #accessBox .shopttl .img {
	width: 120px;
	height: 120px;
	border-radius: 100%;
	margin-right: 20px;
}
.shopPage #accessBox .shopttl h4 {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0 10px 10px;
	border-bottom: 4px solid #111;
}
.shopPage #accessBox .entrytbl {
	height: 450px;
	margin: 0 auto 20px;
}
.shopPage #accessBox .entrytbl td {
	padding: 20px;
	border: none;
	border-bottom: 1px solid #ccc;
}
.shopPage #accessBox .entrytbl th {
	padding: 20px;
	font-weight: bold;
	background: none;
	border: none;
	border-bottom: 1px solid #ccc;
}
.shopPage #accessBox .entrytbl tr:last-child th, .shopPage #accessBox .entrytbl tr:last-child td {
	border: none;
}
/*
=====エラーページ用 ======================================
*/
.err404Page .entry {
	margin: 0;
	border: 1px solid #ccc;
	background: #F4F8FC;
	line-height: 160%;
}
.err404Page .entry p {
	margin: 10px 0;
	line-height: 160%;
}
.err404Page .entry ul {
	margin: 10px 50px 10px 0px;
	padding: 10px;
	color: #333;
	background: #f2f2f2;
	border: 1px dotted #dcdcdc;
}
.err404Page .post_postbox {
	margin: 10px 20px;
	line-height: 160%;
}
.err404Page li {
	margin: 0 0 1px 0;
	padding: 5px 10px;
	background: #F0F0F0;
}

/*
=====イメージ用 ======================================
*/
.attachmentPage .page_title01 {
	background: url(../img/page/attachment_title01.png) no-repeat;
}
.single_box_attachment .navigation {
	padding: 5px;
	text-align: center;
	font-size: 10px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #dcd8c5;
}
.single_box_attachment .entrydate {
	height: 20px;
	margin: 0 0 20px 0;
	padding: 10px 5px 10px 35px;
	font-size: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background: url(../img/common/page_subtitle_bg.png) no-repeat 0 top;
}
.single_box_attachment .entrydate span {
	color: #EBE3CE;
}
.single_box_attachment .entry {
	margin: 0;
	border: 1px solid #ccc;
	border-top: none;
	background: #F4F8FC;
	line-height: 160%;
}
.single_box_attachment .entry p {
	margin: 10px 0;
	line-height: 160%;
}
.single_box_attachment .entry ul {
	margin: 10px 50px 10px 0px;
	padding: 10px;
	color: #333;
	background: #f2f2f2;
	border: 1px dotted #dcdcdc;
}
.single_box_attachment .post_postbox {
	margin: 10px 20px;
	line-height: 160%;
}
.sidebar_single_attachment li {
	margin: 0 0 1px 0;
	padding: 5px 10px;
	background: #F0F0F0;
}
.hover a:hover {
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/*
=====くらココ。の会員規約:membershipPage ======================================
*/
.membership_leadSent{
	font-size: 15px;
	margin-bottom: 20px;
}
.membership_item_ttl{
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
	padding:5px;
	border-bottom: solid 1px #111;
}
.membership_item {
	margin-bottom: 30px;
}
.membership_inList{
	margin: 10px;
}
.membership_inList_item {
	list-style: decimal;
	margin: 0 10px 5px;
}
.membership_inList_defTtl {
	font-weight: 700;
	margin-bottom: 5px;
}
.membership_inList_defitem {
	margin-bottom: 5px;
	display: list-item;
	list-style: disc;
	margin: 0 10px 5px;
}
.membershipPage p a{
	text-decoration: underline;
	color: #00B3A5;
	transition: none !important;
}
.membershipPage p a:hover{
	text-decoration: none;
	opacity: 1 !important;
}
.membership_item_supTtl {
	font-weight: 700;
	margin-bottom: 5px;
}
.membershipPage .sign{
	padding: 5px 0 5px 10px;
	border-left: solid 3px #CCC;
}

/*
=====会社概要:companyPage======================================
*/
.companyPage .entrytbl {
	margin-bottom: 40px;
}
.companyPage .entrytbl th {
	padding: 20px;
}
.companyPage .entrytbl span a{
	text-decoration: underline;
	color: #00B3A5;
	transition: none !important;
}
.companyPage .entrytbl span a:hover{
	text-decoration: none;
	opacity: 1 !important;
}
.companyPage #box03 {
	font-size: 0;
}
.companyPage #box03 .inner {
	width: 49%;
	display: inline-block;
}
.companyPage #box03 .inner.right {
	margin-left: 2%;
}
.companyPage #box03 h3 {
	background: #111;
	color: #fff;
	padding: 10px;
	font-size: 18px;
}

/*
=====jobPage:採用情報（協力会社・職人募集） ======================================
*/
.pageTtl_job{
	background: url(/share/img/page/recruit/bg_job_main.jpg) repeat-x;
	padding: 90px 0px;
}
.pageTtl_job .ttl_job{
	width: 540px;
	margin: 0 auto;
}
.pageTtl_job .ttl_job img{
	width: 100%;
	height: auto;
}
.job_mainBox{
	margin-bottom: 80px;
	padding: 40px 0 10px;
	background: url(/share/img/page/shop/shop_main_bg.jpg);
}
.job_mainBox .main_ttl{
	font-size: 1.8em;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 700;
}
.job_mainBox .main_ttl span{
	display: block;
	font-size: 0.8em;
	border: solid 1px #111;
	width: 500px;
	margin: 0 auto 30px;
	position: relative;
	background:#FFF;
}
.job_mainBox .main_ttl span:before,
.job_mainBox .main_ttl span:after {
	content: "";
	border: solid 15px transparent;
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
}
.job_mainBox .main_ttl span:before {
	border-top: solid 15px #111;
	top: 100%;
}
.job_mainBox .main_ttl span:after {
	border-top: solid 15px #FFF;
	top: calc(100% - 1px);
}
.job_mainBox .main_txt{
	text-align: center;
	font-size: 1.2em;
}
.jobPage .articleBox{
	margin: 80px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.jobPage .articleBox.reverse{
	flex-direction: row-reverse;
}
.jobPage .article_img{
	width: calc(100% - 600px);
}
.jobPage .article_img img{
	width: 100%;
	height: auto;
}
.jobPage .articleBox .inner{
	width: 580px;
	height: auto;
}
.jobPage .article_ttl{
	font-size: 1.4em;
	font-weight: 700;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: solid 2px #111;
}
.jobPage .article_txt{
	font-size: 1.2em;
	padding: 0 10px;
	line-height: 1.8;
}
.jobPage .article_txt .linear{
	background: linear-gradient(transparent 60%,#fff979 60%);
}

/*==================================================
  privacyPage：プライバシーポリシー
  ==================================================*/
  .privacyPage .contents-inner {
  	font-size: 1.2em;
  }
  .privacyPage ol {
  	margin: 40px 0;
  }
  .privacyPage ol li {
  	list-style: decimal;
  	margin-bottom: 20px;
  	padding-bottom: 20px;
  	border-bottom: 1px solid #ccc;
  }
  .privacyPage ol li:last-child {
  	border-bottom: none;
  }
  .privacyPage ol li dl {
  	margin-top: 10px;
  }
  .privacyPage ol li dt {
  	font-weight: bold;
  }
/*==================================================
  sitemapPage：サイトマップ
  ==================================================*/
  .sitemapPage .inner {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
  }
  .sitemapPage ul {
  	width: 32%;
  }
  .sitemapPage li{
  	border: solid 1px #CCC;
  	margin-bottom: 20px;
  }
  .sitemapPage li a {
  	display: block;
  	width: 100%;
  	height: auto;
  	padding: 20px;
  	box-sizing: border-box;
  }
  .sitemapPage li a:hover {
  	background: #111;
  	color: #FFF;
  	opacity: 1 !important;
  }

/*#40019追加*/
/*==================================================
  スタッフコラム
==================================================*/

.columnPage .columnWrap{
	width: 100%;
	max-width: 1080px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin: 30px auto;
}

.columnPage .columnWrap .contents-inner{
	width: calc(100% - 260px);
	max-width:800px;
}

/*************** sidebar ****************/
.columnPage .sidebar-column{
	width:240px;
	position: relative;
}

.columnPage .sidebar-column img{
	width: 100%;
	height: auto;
}

.columnPage .sidebar-column .sidebar--fixed.is-fixed {
  position: fixed;
  z-index: 999;
}

/*広告バナー*/

/*ランキング*/
.sidebar-column .sidebar-ranking {
	margin: 30px 0;
}

.sidebar-column .sidebar-ranking-head {
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	background: #111;
	padding: .5em 1em;
	text-align: center;
}
.sidebar-column .sidebar-ranking-item{
	border-bottom: 1px solid #eee;
	padding: .5em 0;
}
.sidebar-column .sidebar-ranking-item a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
}
.sidebar-column .sidebar-ranking-thum {
	width: 30%;
	flex-shrink: 0;
	margin-right:2%;
}
.sidebar-column .sidebar-ranking-contents {
	width: 68%;
}

.sidebar-column .sidebar-ranking-thum .photo{
	width: 100%;
	aspect-ratio:  3 / 2;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.sidebar-column .sidebar-ranking-thum img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.sidebar-column .sidebar-ranking-num {
	color: #fff;
	background-color: #111;
	border-radius: 20px;
	display: block;
	text-align: center;
	margin-bottom: 5px;
}

/*目次*/
.sidebar-column .widget-area:has(.widgettitle) {
  padding: 1em 1.5em .5em;
  border: 1px solid #ccc;
	background: #f9f9f9;
	margin: 30px 0;
}

.is-fixed .widget-area:has(.widgettitle){
	overflow-x: auto;
	max-height: calc(100vh - 350px)
}

.sidebar-column .toc_widget .widgettitle {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.4em;
	font-weight: bold;
  position: relative;
  margin-bottom: .5em;
}

.sidebar-column .toc_widget .toc_widget_list {
  padding: 0;
}

.sidebar-column .toc_widget .toc_widget_list li {
  list-style: none;
  padding-bottom: .5em;
  margin-bottom: .5em;
  position: relative;
	font-size: 13px;
}

.sidebar-column .toc_widget .toc_widget_list li a::before{
	transition: .3s;
	content:"";
	display: block;
	background: #ccc;
	width: 3px;
	height: 100%;
	position:absolute;
	top:0;
	left:-10px;
	transition: .3s;
}

.sidebar-column .toc_widget .toc_widget_list li a.toc-active{
	font-weight: bold;
}

.sidebar-column .toc_widget .toc_widget_list li a.toc-active::before{
	background: #D60201;
}

.sidebar-column .toc_widget .toc_widget_list li:last-child {
  padding-bottom: 0;
}

.sidebar-column .toc_widget .toc_widget_list li ul {
  padding: 1em 0 0 0;
  margin: 0;
	display: none;
}

.sidebar-column .toc_widget .toc_widget_list li ul li {
  margin-left: 1.5em;
}

.sidebar-column .toc_widget .toc_widget_list li .toc_number {
  color: var(--color-gray);
}

.sidebar-column .toc_widget a{
    color: #111;
		text-decoration: underline;
}


/*************** 一覧 ****************/
.columnPage .archiveBtn {
    display: flex;
    flex-wrap: wrap;
    margin: 25px;
}

.columnPage .archiveBtn li {
    margin: 0;
}

.columnPage .archiveBtn li a {
    display: inline-block;
    padding: 10px;
    margin: 0 10px 10px 0;
    min-width: initial;
    min-width: auto;
    background: #fff;
}

.columnPage .archiveBtn li a:hover{
    background: #111;
}

.columnPage .archiveBtn li.active a{
    background: #111;
    border-color: #111;
    color: #fff;
}

.columnPage .archiveBtn li.active a:hover{
    color: #fff;
}

/*************** itemList ****************/

.columnPage .itemList {
    width:800px;
    margin: 40px auto;
}

.columnPage .itemList .item {
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.columnPage .itemList .item a {
    display: flex;
		align-items: flex-start;
    text-decoration: none;
}

.columnPage .itemList .item .photo{
    margin:20px;
    width:240px;
		box-sizing: border-box;
    aspect-ratio: 3 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.columnPage .itemList .item .photo img{
	width:100%;
	height: 100%;
    object-fit: contain;
}

.columnPage .itemList .item .inner {
    width: calc(100% - 280px);
    padding: 20px;
}

.columnPage .itemList .item .inner .cate_new {
    padding: 2px 10px;
    color: #fff;
    background: #D60201;
    display: inline-block;
    margin-left: 10px;
}

.columnPage .itemList .item .inner .ttl{
    font-size: 1.2em;
    font-weight: bold;
    margin-block: 10px;
    padding-bottom: 5px;
    border-bottom: #D60201 2px solid;
}

.columnPage .itemList .item .inner .update {
    font-weight: bold;
    display: inline-block;
}

.columnPage .itemList .item .inner .cateBox {
    margin-top:10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.columnPage .itemList .item .inner .cateBox .cate_column {
    padding: 2px 10px;
    margin: 0 5px 5px 0;
    border: 1px solid;
    font-size: 0.8em;
    font-weight: bold;
}

.columnPage .itemList .item .inner .content .cont{
    display: inline-block;
    text-decoration: underline;
}
/*************** single ****************/

.columnPage.singlePage #titleBox h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin:10px 0 20px;
}

.columnPage.singlePage #titleBox .dateBox{
    display: flex;
    justify-content: space-between;
}

.columnPage.singlePage #titleBox .cateBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.columnPage.singlePage #titleBox .cate_column a {
    display: block;
    padding: 2px 10px;
    margin: 0 5px 5px 0;
    border: 1px solid;
    font-weight: bold;
}

.columnPage #content{
	font-size: 16px;
}

.columnPage.singlePage #toc_container{
    margin-top:20px;
}

.columnPage .column_author__head{
    font-size: 1.3em;
    font-weight: bold;
    margin: 30px 20px 10px;
}

.columnPage .column_authorBox{
    margin: 0 20px 20px;
    padding: 20px;
    display: flex;
    border: 1px solid #ddd;
    background: #f6f6f6;
}

.columnPage .column_author_photo{
    width: 200px;
    margin-right: 20px;
    flex-shrink: 0;
}

.columnPage .column_author_photo img{
	width: 100%;
	height: auto;
}

.columnPage .column_author_name{
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.columnPage .column_author_link{
    margin-top:10px;
}

.columnPage .column_author_link a{
    display: inline-block;
    padding-right: 10px;
    position: relative;
    color: #666;
}

.columnPage .column_author_link a::before{
    content:"";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top:1px solid;
    border-right: 1px solid;
    position:absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%) rotate(45deg);
}

  /***** CTA:btn_archive *****/
  .columnPage #content .btn_archive a{
    display: block;
    box-sizing: border-box;
    width: 450px;
		color: #111;
    border: solid 1px #111;
		text-decoration: none;
    padding: 30px 0;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    background: #FFF;
    transition: all .3s ease;
  }
  .columnPage #content .btn_archive a:hover{
		opacity: 1;
    background: #111;
    color: #FFF;
    transition: all .3s ease;
  }