/*common_css*/
@charset "utf-8";
/* CSS Document */


/********
サイトによって異なる
使い回し共通CSS
1.コーディング＞ページ編集＞レイアウト＞全レイアウト共通CSSにコピーして入れる。
********/

.mincho{
	font-family: 'Noto Serif JP', serif;
}


/**-------------------------------------
フォームテーブル
-------------------------------------**/
.owlet-form{
    width: 750px;
    margin: 0 auto;
}

.-w-table table,
.owlet-form table{
	margin: 0 auto;
	width: 100%;
	border-spacing:1px;
	border-collapse:separate;
	background:  #fff;
}
.-w-table table th,
.-w-table table td,
.owlet-form table th,
.owlet-form table td{
	padding: 20px 15px;
	background: #fff;
	text-align: left;
	display: block;
}
.-w-table table th,
.owlet-form table th{
	position: relative;
	padding: 15px 3.5em 15px 15px;
	width: 100%;
	background: #6b6b6b;
	color: #fff;
	line-height: 1.8;
}
@media screen and (max-width: 768px){
    .owlet-form{
        width: 100%;
        margin: 0 auto;
    }

	.-w-table table,
	.-w-table table tbody,
	.-w-table table tr,
	.-w-table table th,
	.-w-table table td,
	.owlet-form table,
	.owlet-form table tbody,
	.owlet-form table tr,
	.owlet-form table th,
	.owlet-form table td{
		display: block;
		width: 100%;
		border: none;
	}
	
	.-w-table table,
	.owlet-form table{
	}
	
	.-w-table table th,
	.-w-table table td
	.owlet-form table th,
	.owlet-form table td{
		text-align: left;
	}
	
	.-w-table table th,
	.owlet-form table th{
		padding-right: 3.5em;
	}
}


/**-------------------------------------
概要
-------------------------------------**/
.outline{
    width: 750px;
    margin: 30px auto;
}
.outline table{
    border-top:1px dotted #8c8a85;
    width: 100%;
    background:#fff;
    text-align:left;
}
.outline table th,
.outline table td{
     border-bottom:1px dotted #8c8a85;
     padding:10px 15px;
}
.outline table th{
    background: #9c9a93;
    color:#fff;
    width: 8em;
    text-align:left;
}


@media screen and (max-width: 768px){
.outline{
    width: 100%;
    margin: 20px auto;
}
}

/**-------------------------------------
必須アイコンの位置
-------------------------------------**/
.require {
	top: 0;
	right: 1em;
	bottom: 0;
	margin:  auto 5px;
	background: #fff;
	border-radius: 0;
	border: 1px solid #6b6b6b;
	color: #6b6b6b;
	z-index: 2;
}
form table th:after{
	content: "任意";
	position: absolute;
	display: inline-block;
	width: 3em;
	height: 2em;
	border-radius: 0;
	background: #fff;
	color: #6b6b6b;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
	line-height: 2em;
	
	top: 0;
	right: 1em;
	bottom: 0;
	margin:  auto 5px;
	background: #fff;
	border-radius: 0;
	border: 1px solid #6b6b6b;
	z-index: 1;
}

/* -------------------------------------
カラム
-------------------------------------*/
/**２つ並び**/
.box2C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box2C > *{
	margin: 20px 0 0;
	width: 48%;
}
.box2C:after{
	display: block;
	width: 48%;
	content: "";
}

/**3つ並び**/
.box3C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box3C > *{
	margin: 20px 0 0;
	width: 31.5%;
}
.box3C:after{
	display: block;
	width: 31.5%;
	content: "";
}

/**4つ並び**/
.box4C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box4C > *{
	margin: 20px 0 0;
	width: 23%;
}
.box4C:after,
.box4C:before{
	display: block;
	width: 23%;
	content: "";
}
.box4C:before{
	order:1;
}
.boxLR{
	display: flex;
	margin: 10px auto;

	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	/**２つ並び**/
	.box2C{
		width: 100%;

		flex-flow: column;
	}
	.box2C > *{
		width: 100%;
	}
	.box2C:after{
		display: none;
	}

	/**3つ並び**/
	.box3C{
		width: 100%;

		flex-flow: column;
	}
	.box3C > *{
		width: 100%;
	}
	.box3C:after{
		display: none;
	}

	/**4つ並び**/
	.box4C{
		width: 100%;
	}
	.box4C > *{
		width: 48%;
	}
	.box4C:after,
	.box4C:before{
		display: none;
	}
}


/* -------------------------------------
見出し+テキスト+画像
.h-text-img>
div>h+p
figure>img

.h-text-img　：　見出し+テキスト　画像右
.h-text-img.left　：　画像左　見出し+テキスト
.h-text-img.center　：　画像+見出し+テキスト　縦並び
-------------------------------------*/
.h-text-img{
	display: flex;
	margin: 30px auto;
	width: 100%;

	justify-content: space-between;
}
.h-text-img.left{
	flex-direction:row-reverse;
}
.h-text-img.center{
	flex-flow: column-reverse nowrap;
}
.h-text-img > div{
	margin: 0 30px 0 0;

	flex: 1;
}.h-text-img.left > div{
	margin: 0 0 0 30px;
}
.h-text-img.center > div{
	margin: 0 30px;

	flex: auto;
}
.h-text-img figure{
	width: 400px;
	height: auto;
}
.h-text-img.center figure{
	margin: 0 0 30px;
	width: 100%;
	height: auto;
}
.h-text-img.center figure{
	margin: 30px 0;
}
.h-text-img.big figure{
	width: 643px;
}
.h-text-img.min figure{
	width: 280px;
}
.h-text-img.free figure{
	width: auto;
}
.h-text-img figure img{
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.h-text-img{
		margin: 30px auto;
		width: 100%;

		flex-flow: column;
	}
	.h-text-img.left{
		flex-direction:column-reverse;
	}
	.h-text-img.center{
		flex-flow: column-reverse nowrap;
	}
	.h-text-img > div,
	.h-text-img.left > div,
	.h-text-img.center > div{
		margin: 5px 0;

		flex: 1;
	}
	.h-text-img figure{
		margin: 5px auto;
		max-width: 400px;
		width: 100%;
		height: auto;
	}
	.h-text-img.center figure{
		margin: 5px auto;
		max-width: 100%;
	}
	.h-text-img figure img{
		width: 100%;
	}
	.h-text-img.big figure{
		max-width: 643px;
		width: 100%;
	}
	.h-text-img.min figure{
		max-width: 280px;
		width: 100%;
	}
}

/**-------------------------------------
背景
-------------------------------------**/
.bg-fff{
	background: #fff;
	overflow: hidden;
}
.bg-e8f0f7{
	background: #e8f0f7;
	overflow: hidden;
}
.bg-f3f0ef{
	background: #f3f0ef;
	overflow: hidden;
}
.bg-img{
	background: no-repeat center / cover;
	padding: 40px 5%;
	position: relative;
}
.bg-img.opacity:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.4);
}
.bg-img.opacity *{
	position: relative;
	z-index: 2;
}

/**================================================================================
サイトで必ず異なる
================================================================================**/
/**-------------------------------------
目次
-------------------------------------**/
.entry-content{
    border:1px solid #969696;
    background:#f2efee;
    padding:0;
    margin:50px 10%;
}
.entry-content dt{
    text-align:center;
    font-weight: bold;
    font-size: 1.1em;
    padding:15px 30px;
}
.entry-content dt + dd{
    border-top:1px solid #969696;
}
.entry-content dd{
    counter-increment: list;
    padding:15px 30px 15px 3em;
    text-indent: -1.2em;
}.entry-content dd:before{
    content: counter(list)". ";
}
.entry-content dd a{
    text-decoration: underline;
}.entry-content dd a:hover{
     text-decoration: none;
}

@media screen and (max-width: 768px){
.entry-content{
    padding:0 ;
    margin:30px 5% 20px;
}
.entry-content dt{
    padding:10px;
}
.entry-content dd{
    padding:10px 10px 10px 2em;
    text-indent: -1.2em;
}
}

/**-------------------------------------
チェックリスト
-------------------------------------**/
.check li{
	background: url(/common/images/check.png) no-repeat left top;
	padding: 0 0 0 30px;
	margin-bottom: 10px;
}

/**-------------------------------------
アイコン
-------------------------------------**/
.tag,
.cat{
	display: inline-block;
	text-align: left;
	margin: 10px auto;
}
.tag > *,
.cat > *{
	text-align: center;
	display: inline-block;
	padding: 3px 2px;
	margin: 1px 1px 0;
	background: #000;
	background: #808080;
	color: #fff;
	min-width: 65px;
	font-size: 12px;
}
.cat > *{
	border: 1px solid #000;
	color: #000;
	background: #fff;
}

@media screen and (max-width: 768px){
    .tag > *,
    .cat > *{
	    /*min-width: 74px;*/
	    width: calc( 25% - 2px);
    }
}



/**-------------------------------------
見出し
-------------------------------------**/
/*ガーディアン社では -w-generalというクラスを、共通の見出しにつけています */
.-w-general {
}
h2.-w-general {
}
h3.-w-general {
}

.titA{
	font-weight: bold ;
	font-size: 28px;
}
.reform .titA{
	color: #6aa2cc;
}
.titB{
	font-size: 32px;
	font-family: 'Noto Serif JP', serif;
}.titB small{
	display: block;
	margin: 0 auto;
	font-weight: normal;
	font-size: 1rem;
}
.titC{
	font-size: 1.2em;
	font-family: 'Noto Serif JP', serif;
}
.titD{
	font-weight: bold;
}
.titE{
    background: #716d63;
    color:#fff;
    padding: 7px 15px;
    margin: 15px auto;
}
.titF{
    background: #716d63;
    color: #fff;
    padding: 5px 15px;
}

.titG{
    font-weight: bold;
    padding:5px;
    border-bottom:1px dashed #716d63;
}

.titImg{
	margin: 15px auto;
	text-align: center;
}
.titImg img{
	max-width: 600px;
	height: auto;
}
.toMail{
	background: #000;
	color: #fff;
	padding: 0;
	position: relative;
	min-height: 60px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.toMail:before{
	content: "\e910";
	font-family: icomoon;
	background: #6b6b6b;
	font-size: 40px;
	width: 60px;
	height: 100%;
	min-height: 60px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

@media screen and (max-width: 768px){
	.titA{
		font-size: 22px;
	}
	.titB{
		font-size: 24px;
	}
	.titD{
	}
	.titG{
	    font-size: 18px;
	}
	.titImg{
		margin: 5px auto 0;
		text-align: center;
	}
	.titImg img{
		max-width: 100%;
		height: auto;
	}
	.toMail:before{
		font-size: 40px;
		width: 75px;
		height: 75px;
	}
	.toMail{
	    padding: 0 5px 0 0;
	    font-size: 16px;
	}
}



/**-------------------------------------
ボタン
-------------------------------------**/
.btnA{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 15px 10px;
	width: 500px;
	border-radius: 50px;
	background: #1178e6;
	background: #1ba681;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.1);
	color: #fff;
	text-align: center;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 16px;
}
.btnA:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.btnA.t_C{
	margin: 0 auto;
}

.btnA i{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.8em;
}

.btnA:hover{
	background: rgba(68,63,53,1.0);
	background:  #0e8162;
	color: #fff;
}

.btnB{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 15px 10px;
	width: 500px;
	border-radius: 50px;
	border: 1px solid #716d63;
	background: #fff;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.1);
	color: #716d63;
	text-align: center;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.btnB.t_C{
	margin: 0 auto;
}
.btnB:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.btnB i{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.8em;
	color: inherit;
}
.btnB:hover{
	background: rgba(68,63,53,1.0);
	color: #fff;
}


.reform .btnA{
	background: #6aa2cc;
}.reform .btnA:hover{
	background: #529bd2;
}
@media screen and (max-width: 768px) {
	.btnA{
		width: 88vw;
		padding: 12px 10px 12px 5px;
		font-size: 1.0em;
	}
	.btnB{
		width: 88vw;
		padding: 12px 10px 12px 5px;
		font-size: 1.0em;
	}
}



/**-------------------------------------
swiper slide
-------------------------------------**/
.hero{
	position: relative;
	max-width: 1200px;
	overflow: hidden;
	text-align: center;
	margin: 0 auto;
}
.swiper-container{
    z-index: 50;
}
.swiper-slide{
	height: 750px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.swiper-hero-prev,
.swiper-hero-next{
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 50;
}
.swiper-hero-next{
    left:auto;
    right: 0;
}
.swiper-hero-prev:before,
.swiper-hero-next:before{
    content: "\e5de";
    font-family: 'Material Icons';
    color: #fff;
    font-size: 20px;
    line-height: 1.0;
    background: rgba(0,0,0,0.2);
    padding: 10px 5px;
    margin-top: -2em;
}
.swiper-hero-next:before{
     content: "\e5df";
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 15px 4px;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #646464;
}
.swiper-pagination-bullet {
	width: 9px;
	height: 9px;
}
.swiper-slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    text-align: center;
}

@media screen and (max-width: 768px) {
    .hero{
        height: 122vw;
        max-width: 100%;
    }	

	.swiper-slide{
		height: 122vw;
		background-size: 100% auto;
	}
}


/**================================================================================
固定バナー
================================================================================**/

#fix_bnr{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
	padding: 10px 0; 
	width: 100%;
	background: #00000073;
}

.form_bnr,
.page_bnr{
	display: flex;
	margin: 0 auto;
	width: 980px;
	color: #000;

	justify-content: center;
	align-items: center;
}
#fix_bnr .form_bnr{
	color: #fff;
}


/**-------------------------------------
PC電話
-------------------------------------**/
.form_bnr dl,
.page_bnr dl{
	position: relative;
	margin: 0 30px 0 0;
	padding: 0 0 0 2.5em;
}
.form_bnr dl:before,
.page_bnr dl:before{
	position: absolute;
	top: 0;
	left: 0;
  content: "\e92b";
	font-size: 2.3em;
  font-family: 'icomoon';
}
.form_bnr dl dt,
.page_bnr dl dt{
	font-size: 2.1em;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.0;
}
.form_bnr dl dd,
.page_bnr dl dd{
	margin: 5px;
	font-size: 14px;
}

/**-------------------------------------
ボタン
-------------------------------------**/
.form_bnr .btn,
.page_bnr .btn{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 10px;
	width: 305px;
	/*border-radius: 50px;*/
	background: #716d63;
	background: #FFA500;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.2);
	color: #fff;
	text-align: center;
	line-height: 1.0;
	font-weight: 300;
}.form_bnr .sp.btn,
.page_bnr .sp.btn{
	display: none;
}
.page_bnr .btn{
    font-family: 'Noto Serif JP', serif;
}

#fix_bnr .form_bnr .btn{
	background: #1178e6;
	background: #FFA500;
	box-shadow: none;
	color: #fff;
}
.form_bnr .btn:after,
.page_bnr .btn:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.form_bnr .btn:before,
.page_bnr .btn:before{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.6em;
}
.form_bnr .btn:before,
.page_bnr .btn:before{
	content: "\e942";
	font-family: icomoon;
}.form_bnr .mail:before,
.page_bnr .mail:before{
	content: "\e92c";
	font-family: icomoon;
}.form_bnr .free:before,
.page_bnr .free:before{
	content: "\e928";
	font-family: icomoon;
}
.form_bnr .btn:hover,
#fix_bnr .form_bnr .btn:hover,
.page_bnr .btn:hover,{
	background: rgba(68,63,53,1.0);
		background: #FFA500;
	color: #fff;
}
.btn .spsp{
    display: none;
}


@media screen and (max-width: 768px){
	#fix_bnr{
		padding: 0; 
		background: rgba(255,255,255,1.0);
	}
	#fix_bnr .form_bnr .btn{
	    background: rgba(42,85,138,0.9);
	    		background: #FFA500;
	    color:#fff;
	    border-right: 1px solid #fff;
	    font-size: 14px;
	}
	#fix_bnr .form_bnr .btn .spsp{
        display: block;
    }
    
   
	
	.form_bnr{
		width: 100%;
		border: none;
		color: #3c3c3c;
		font-size: 13px;

		align-items: stretch;
	}
	.page_bnr{
		width: 90%;
		flex-flow: column;
	}

	/**-------------------------------------
	PC電話
	-------------------------------------**/
	.form_bnr dl{
		display: none;
	}
	/**-------------------------------------
	ボタン
	-------------------------------------**/
	.form_bnr .btn{
		display: block;
		margin: 0;
		padding: 15px 0;
		width: auto;
		border-right:1px solid #b4b4b4;
		border-radius: 0;
		background: #1178e6;
		box-shadow: none;
		color: #3c3c3c;
		text-align: center;
		font-size: 1.1em;

		flex: 1;
	}.form_bnr .sp.btn{
		display: block;
	}
	 .form_bnr .pc.btn,
    .page_bnr .pc.btn{
    	display: none;
    }
	#fix_bnr .form_bnr .btn{
		padding: 8px 0;
	}
	.form_bnr .btn:after{
		display: none;
	}
	.form_bnr .btn:before{
		display: block;
		margin: 0 auto 5px;
		font-size: 1.8em;
	}
	.form_bnr .btn:hover{
		background: rgba(68,63,53,1.0);
		color: #fff;
	}
	
	.page_bnr .sp.btn{
		display: block;
	}
	.page_bnr .btn{
		width: 100%;
		margin-bottom: 15px;
	}
}



/** ================================================================================
BASE CSS
owlet ver2.1用＝リソースの「カラー・基本フォント」とセットで使用する。
1.ページ編集＞レイアウト＞全レイアウト共通CSSにこのままコピーして入れる。
2.管理画面＞設定＞リソース＞resource-color.xmlをインポート
3.管理画面＞コンテンツ＞リソース＞カラー・基本フォントから基本設定を行う
================================================================================ **/

/* -------------------------------------
Browser：IE11 over
-------------------------------------
01: CSSをReset
02: /css/default.cssを変更
03: Default
-------------------------------------*/

/** ================================================================================
		01.Reset
================================================================================ **/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:none;
background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
h1, h2, h3, h4, h5, h6,
dt,th{
	font-weight:normal;
	line-height: inherit;
}
ul,ol {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
table {
border-spacing:0;
border-collapse:collapse;
}
/* change border colour to suit your needs */
hr {
display:block;
margin:1em 0;
padding:0;
height:1px;
border:0;
border-top:1px solid #cccccc;
}
img{
	border:none;
	line-height: 1.0;
}
b,em,i,strong,address{
	font-style: normal;
}

/** ================================================================================
		02./css/default.cssを変更
================================================================================ **/

h1, h2, h3, h4, h5, h6 {
	clear: none;
}

time{
	font-size: 0.8rem;
}

/** ================================================================================
		03.Default
================================================================================ **/
html{
	overflow: auto;
}

body{
	margin: 0 auto;
	min-width: 980px;
	background: #ffffff;
	color:#1e1e1e;
	font-size:16px;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,'Noto Sans JP', sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	
	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

p a{
	text-decoration:underline;
}p a:hover{
	text-decoration:none;
}

a{
	color:inherit;
	text-decoration:none;
	cursor: pointer;
}a:hover{
	-webkit-transition: .3s;
	transition: .3s;
}

a[href=""]{
	pointer-events: none;
}
/**PC電話ボタン無効**/
a[href^="tel"]{
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	a[href^="tel"]{
		pointer-events: auto;
	}
}

hr{
	display:block;
	margin:1em 0;
	padding:0;
	height:1px;
	border:0;
	border-top:1px solid #666666;
}

figure img{
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	body{
		min-width: 100%;
		font-size:16px;
		line-height: 1.5;
	}
	/**post制御**/
	p{
		word-break: break-all;
	}
	table{
		width: 100%;
		word-break: break-all;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	/**post制御**/
}


/* -------------------------------------
ベーススタイル設定
0.block
1.clearfix,clear
2.
3.float
4.align
5.margin
6.padding
-------------------------------------*/
/*0.block */
.block{
	display: block;
}
.in-block{
	display: inline-block;
}

/*1. clearfix,clear */
/* For modern browsers */
.cf:before,
.cf:after {
	display:block;
	overflow:hidden;
	content:"";
}

.cf:after {
	clear:both;
}

.clear{
	clear: both;
}

/*3. float */
.f_L {
	display: inline;
	float: left;
}
.f_R {
	display: inline;
	float: right;
}

/*4. align  */
body .t_R {
	text-align: right;
}
body .t_L {
	text-align: left;
}
body .t_C,
body .t_CR,
body .t_CL{
	text-align: center;
}

body .jc_c{
	justify-content: center;
}
body .jc_fe{
	justify-content: flex-end;
}
body .jc_fs{
	justify-content: flex-start;
}
body .jc_sb{
	justify-content: space-between;
}

body .ai_c{
	align-items: center;
}
body .ai_fe{
	align-items: flex-end;
}
body .ai_fs{
	align-items: flex-start;
}

/*5. margin 必要なら追加　優先順位：高 */
body .m0 {
	margin: 0;
}
body .mb0{
	margin-bottom: 0;
}
body .mb5 {
	margin-bottom: 5px;
}
body .mb10 {
	margin-bottom: 10px;
}
body .mb15 {
	margin-bottom: 15px;
}
body .mb20 {
	margin-bottom: 20px;
}
body .mb30 {
	margin-bottom: 30px;
}
body .mb40 {
	margin-bottom: 40px;
}
body .mb50 {
	margin-bottom: 50px;
}
body .mb80 {
	margin-bottom: 80px;
}
body .mb100 {
	margin-bottom: 100px;
}
body .mb150 {
	margin-bottom: 150px;
}
body .mt0{
	margin-top: 0px;
}
body .mt5 {
	margin-top:5px;
}
body .mt10 {
	margin-top:10px;
}
body .mt15 {
	margin-top:15px;
}
body .mt20 {
	margin-top:20px;
}
body .mt30 {
	margin-top:30px;
}
body .mt40 {
	margin-top:40px;
}
body .mt50 {
	margin-top:50px;
}
body .mt80 {
	margin-top:80px;
}
body .mt100 {
	margin-top:100px;
}
body .mt150 {
	margin-top:150px;
}
body .ml0{
	margin-left: 0;
}
body .ml5 {
	margin-left: 5px;
}
body .ml10 {
	margin-left: 10px;
}
body .ml15 {
	margin-left: 15px;
}
body .ml20 {
	margin-left: 20px;
}
body .ml30 {
	margin-left: 30px;
}
body .mr0{
	margin-right: 0;
}
body .mr5 {
	margin-right: 5px;
}
body .mr10 {
	margin-right: 10px;
}
body .mr15 {
	margin-right: 15px;
}
body .mr20 {
	margin-right: 20px;
}
body .mr30 {
	margin-right: 30px;
}


@media screen and (max-width: 768px) {
    body .t_CR {
	    text-align:right;
    }
    body .t_CL {
	    text-align:left;
    }
    
    
	/*5. margin 30以上は1/2 */
	body .mb40 {
		margin-bottom: 20px;
	}
	body .mb50 {
		margin-bottom: 25px;
	}
	body .mb80 {
		margin-bottom: 40px;
	}
	body .mb100 {
		margin-bottom: 50px;
	}
	body .mb150 {
		margin-bottom: 75px;
	}
	body .mt40 {
		margin-top:20px;
	}
	body .mt50 {
		margin-top:25px;
	}
	body .mt80 {
		margin-top:40px;
	}
	body .mt100 {
		margin-top:50px;
	}
	body .mt150 {
		margin-top:75px;
	}
}

/*6. padding 優先順位:高*/
body .p0 {
	padding: 0;
}
body .plr5 {
	padding: 0 5px;
}
body .plr10 {
	padding: 0 10px;
}
body .plr15 {
	padding: 0 15px;
}
body .plr20 {
	padding: 0 20px;
}
body .ptb10 {
	padding: 10px 0;
}
body .ptb20 {
	padding: 20px 0;
}
body .pall10 {
	padding: 10px;
}
body .pall20 {
	padding: 20px;
}

/* -------------------------------------
幅
-------------------------------------*/
body .w100p,
body .w1100,
body .w1000,
body .w980,
body .w900,
body .w800,
body .w750,
body .w700,
body .w650,
body .w600{
	margin-right: auto;
	margin-left : auto;
}
body .w100p{
	width: 100%;
}
body .w1100{
	width: 1100px;
}
body .w1000{
	width: 1000px;
}
body .w980{
	width: 980px;
}
body .w900{
	width: 900px;
}
body .w800{
	width: 800px;
}
body .w750{
	width: 750px;
}
body .w700{
	width: 700px;
}
body .w650{
	width: 650px;
}
body .w600{
	width: 600px;
}

@media screen and (max-width: 768px) {
	body .w100p,
	body .w1100,
	body .w1000,
	body .w980,
	body .w900,
	body .w800,
	body .w750,
	body .w700,
	body .w650,
	body .w600{
		margin-right: auto;
		margin-left : auto;
	}
	body .w100p{
		width: 100%;
	}
	body .w1100{
		width: 100%;
	}
	body .w1000{
		width: 100%;
	}
	body .w980{
		width: 100%;
	}
	body .w900{
		width: 100%;
	}
	body .w800{
		width: 100%;
	}
	body .w750{
		width: 100%;
	}
	body .w700{
		width: 100%;
	}
	body .w650{
		width: 100%;
	}
	body .w600{
		width: 100%;
	}
	body .w100p > *,
	body .w1100 > *,
	body .w1000 > *,
	body .w980 > *,
	body .w900 > *,
	body .w800 > *,
	body .w750 > *,
	body .w700 > *,
	body .w650 > *,
	body .w600 > *{
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
	body .w100p > .max,
	body .w100p.max,
	body .w1100 > .max,
	body .w1100.max,
	body .w1000 > .max,
	body .w1000.max,
	body .w980 > .max,
	body .w980.max,
	body .w900 > .max,
	body .w900.max,
	body .w800 > .max,
	body .w800.max,
	body .w750 > .max,
	body .w750.max,
	body .w700 > .max,
	body .w700.max,
	body .w650 > .max,
	body .w650.max,
	body .w600 > .max,
	body .w600.max{
		width: 100%;
	}
}

body .calc980{
	padding-right: calc( ( 100% - 980px ) / 2 );
	padding-left: calc( ( 100% - 980px ) / 2 );
}

@media screen and (max-width: 768px){
	body .calc980{
	padding-right: 0;
	padding-left: 0;
	}
	body .calc980 > .max{
		width: 100%;
	}
	body .calc980 > *{
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
}

/* -------------------------------------
文字装飾
-------------------------------------*/
/**黄色マーカー**/
b.liner{
	background: -webkit-linear-gradient(transparent 40%, #fff552 0%);
	background: linear-gradient(transparent 40%, #fff552 0%);
}

/* -------------------------------------
改行
-------------------------------------*/
.pc{
}
.sp{
	display:none;
}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display:block;
	}
}

/* -------------------------------------
写真のエフェクト
-------------------------------------*/
/**4辺ぼかし：親要素にかける**/
.blur_w {
	position: relative;
	display: inline-block;
}
.blur_w:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0);
	box-shadow:
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff;
	content: "";
}

/**角丸：画像に直接かけれる**/
.radius{
	border-radius: 15px;
}

/**hover時画像拡大**/
.scale {
	overflow: hidden;
}
.scale img {
	-webkit-transition: -webkit-transform 0.3s linear;
	-moz-transition: -moz-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	transition: transform 0.3s linear;
}
a:hover .scale img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/**-------------------------------------
地図 動画 iframe
-------------------------------------**/
iframe{
	width: 100%;
}
.youtube{
	position: relative;
	margin: 30px auto 20px;
	padding-bottom: 56.25%;
	width:100%;
	height:0px;
	background-position: center;
	background-size:cover;
	background-repeat: no-repeat;
}
.youtube iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.youtube{
			margin: 20px auto 10px;
	}
}


/**================================================================================
OWLET用　 Browser：IE11 over
================================================================================
・リッチテキスト　
・パンくず
・ページャー
・フォーム
================================================================================**/

/* -------------------------------------
この記述を入れると、ウィジェット設置時に
「コンテンツ幅を選んでの設置」をする選択肢が出るようになります。
対象ウィジェットには<div data-w-width=""></div>を記述
-------------------------------------*/
/*ウィンドウ幅での設置*/
[data-w-width] {
    max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
    width:980px;
    margin: 0 auto;
}

@media screen and (max-width: 768px){
    [data-w-width="1"] {
        width: 90%;
    }
}


/* -------------------------------------
リッチテキスト
-------------------------------------*/
.richtext{
}
.richtext p{
	margin: 0 0 10px;
}
.richtext strong {
}/*リセットしていないので不要*/
.richtext s{
}/*リセットしていないので不要*/
.richtext u{
}/*リセットしていないので不要*/
.richtext em {
	font-style: italic;
}
.richtext ul {
	padding-left: 2em;
}
.richtext ul li {
	list-style: outside disc;
}
.richtext ol {
	padding-left: 2em;
}
.richtext ol li{
	list-style: outside decimal;
}
.richtext h1{
	font-size: 2.0em;
}
.richtext h2{
	font-size: 1.5em;
}
.richtext h3{
	font-size: 1.17em;
}
.richtext h4{
	font-size: 1.0em;
}

.richtext blockquote{
	margin-left: 0;
	padding-left: 5px;
	border-left: 2px solid #444444;
	color: inherit;
}
.richtext table{
	max-width: 100%;
	border: none;
	border-collapse: collapse;
	table-layout: fixed;
	empty-cells: show;
}
.richtext table tr td{
	border: 1px solid #cccccc;
	vertical-align: middle;
	text-align: left;

	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
.richtext img{
	max-width: 100%;
}
.richtext iframe{
	max-width: 100%;
}

.richtext p a{
	text-decoration: underline;
}
.richtext p a:hover{
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.richtext *[style*="font-size: 8px"]{
	}
	.richtext *[style*="font-size: 9px"]{
	}
	.richtext *[style*="font-size: 10px"]{
	}
	.richtext *[style*="font-size: 11px"]{
	}
	.richtext *[style*="font-size: 12px"]{
	}
	.richtext *[style*="font-size: 13px"]{
	}
	.richtext *[style*="font-size: 14px"]{
	}
	.richtext *[style*="font-size: 16px"]{
	    font-size: 1rem!important;
	}
	.richtext *[style*="font-size: 18px"]{
		font-size: 1rem!important;
	}
	.richtext *[style*="font-size: 24px"]{
		font-size: 1.2rem!important;
	}
	.richtext *[style*="font-size: 30px"]{
		font-size: 1.3rem!important;
	}
	.richtext *[style*="font-size: 36px"]{
		font-size: 1.6rem!important;
	}
	.richtext *[style*="font-size: 48px"]{
		font-size: 1.65rem!important;
	}
	.richtext *[style*="font-size: 60px"]{
		font-size: 1.7rem!important;
	}
	.richtext *[style*="font-size: 72px"]{
		font-size: 1.75rem!important;
	}
	.richtext *[style*="font-size: 96px"]{
		font-size: 1.8rem!important;
	}
}

/* -------------------------------------
パンくず
-------------------------------------*/
#breadcrumb{
	margin:5px auto 15px;
	max-width:980px;
	width:94%;
	font-size:12px;
}
/*家アイコン*/
#breadcrumb ul:before {
	display: inline-block;
	content: "\e88a";
	vertical-align: middle;
	font-size: 14px;
	font-family: 'Material Icons';
}
#breadcrumb ul li{
	display:inline-block;
	padding:0 5px;
}
#breadcrumb ul li+li:before{
	content:">";
}
#breadcrumb a{
	text-decoration: underline;
}#breadcrumb a:hover{
	text-decoration: none;
}


/* -------------------------------------
ページャー
-------------------------------------*/
.pagenation{
	margin: 30px auto;
	text-align: center;
}

.pagenation span{
	display: inline-block;
	margin: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid #1e1e1e;
	background: #ffffff;
	color: #1e1e1e;
	text-align: center;
	line-height: 38px;
}
.pagenation span.page{
	background: #1e1e1e;
	color: #ffffff;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
	background: #ffffff;
	color: #1e1e1e;
}.pagenation span a:hover{
	background: #1e1e1e;
	color: #ffffff;
}


@media screen and (max-width: 768px) {
	.pagenation span{
		margin: 3px;
		width: 30px;
		height: 30px;
		line-height: 27px;
	}
}
/* -------------------------------------
フォーム
-------------------------------------*/
/**エラー**/
.alert {
	margin: 5px 0;
	color: #ff0000;
}
form table th{
	position: relative;
}

/**必須**/
.require {
	position: absolute;
	display: inline-block;
	width: 3.2em;
	height: 2em;
	border-radius: 3px;
	background: #faee00;
	color: #000;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
	line-height: 2em;
}
/**送信ボタン**/
.form_button {
	position: relative;
	display: flex;
	margin-bottom: 20px;
	width: 100%;
	text-align: center;

	align-items: center;
	justify-content: center;
}

.form_button input[type="submit"],
.form_button input.submit,
.form_button a{
	display: inline-block;
	margin: 20px 30px 10px;
	padding: 15px 30px;
	width: 200px;
	border: 1px solid #000000;
	background: #000000;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
	border-radius: 50px;
	font-family: 'Noto Serif JP', serif;
}
.form_button a{
	border: 1px solid #000000;
	background: #000000;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid #000000;
	background: #000000;
	color: #ffffff;
}



/*入力タグ*/
form input[type="text"],
form textarea,
form select{
	padding: 5px 4px;
	height:40px;
	border:1px solid #cccccc;
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 5px 5px 0;
	box-shadow: none;
	border-radius: 5px;
}
form select{
    margin:5px;
}
form input[type="text"]{
   width: 100%;
}
form textarea {
	padding: 2px;
	min-height: 150px;
}
form select{
	padding: 0 10px;
	font-size: 14px;
}
td input[type="button"]{
    background: none;
    -webkit-appearance: none;
      appearance: none;
background-image: linear-gradient(to bottom, rgba(255,255,255,1.0) 40%,rgba(200,200,200,0.1) 100% ); /* グラデーション */
   border: 1px solid #cccccc; /* 枠線 */
   border-radius: 0.3em;      /* 角丸 */
   height: 40px;
}
form input[type="file"]{
    display: block;
    margin: 8px 0;
}

/*電話*/
form input.owlet-input-tel1,
form input.owlet-input-tel2,
form input.owlet-input-tel3,
form input.zip1,
form input.zip2{
    width: 5em;
	margin: 5px;
}
/*名前*/
form input.owlet-input-name-sei,
form input.owlet-input-name-mei{
    width: 8em;
}
/**住所**/
form input.address{
    display: block;
}
/*label*/
form label {
	display: block;
    margin: 5px 0;
}
/*ボタン*/
form button{
	margin: 0 10px;
	padding: 5px 10px;
	border-radius: 5px;
	background: #fff;
}
/*記入例*/
form .owlet-input-sample {
	margin-top: 5px;
	color: #505050;
	font-size: 14px;
	margin-left: 8px;
}
/**フォーム規約**/
.owlet-rules {
	margin: 0 auto 30px;
	width: 100%;
}
.owlet-rules-title {
	margin-bottom: 10px;
	text-align: center;
	font-weight: bold;
	display: none;
}
.owlet-rules-body {
	/*overflow-y:scroll;*/
	box-sizing:border-box;
	margin-bottom: 20px;
	border-top:1px dashed #000;
	padding:15px;
	/*height:200px;
	border:1px solid #dcdcdc;*/
}
.owlet-rules-agree {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}
.owlet-rules-agree .require{
	position: static;
	margin: 0 15px;
}
@media screen and (max-width: 768px) {
	.form_button {
		flex-flow: column-reverse;
	}
	/*iPhone独自スタイル解除*/
	form input[type="button"],
	form input[type="text"],
	form input[type="submit"] {

		-webkit-appearance: none;
	}
	/*入力タグ*/
    form input[type="text"],
    form textarea,
    form select{
    	font-size: 13px;
    }
}
/*widget:fb9a3277-d327-43e9-894d-86238ec12f25*/[data-lib="1174"]{display: flex;
	flex-wrap: wrap;
	padding: 20px var(--calc980);
	padding: 20px 5vw;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	z-index: 1000;
	background: none;
	min-width: 980px;
	width: 100%;
	background: var(--plusbg);}[data-lib="1174"] .onBg{background: rgba(30, 30, 30, 0.6);
	width: 100%;}[data-lib="1174"] h1{font-size: 12px;
	width: 100%;
	margin-bottom: 20px;}[data-lib="1174"] .onBg h1{display: none;}[data-lib="1174"] .logo img{width: 18vw;
	min-width: 190px;
	max-width: 250px;
	display: block;}[data-lib="1174"] nav{flex: 1;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: flex-end;
	margin: 15px 0;}[data-lib="1174"] dl{display: flex;
	font-size: 13px;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 20px;}[data-lib="1174"] dl dd{padding: 0 20px;}[data-lib="1174"] dl dd+dd{border-left: 1px solid var(--plusblack);}[data-lib="1174"].onBg .mail:before{line-height: 1;
	transition: all 0.5s ease 0s;}[data-lib="1174"] nav ul{display: flex;
	justify-content: flex-end;}[data-lib="1174"] nav ul li{padding: 0 6px;
	padding:0 1.3vw;}[data-lib="1174"] nav ul li a{display: block;}[data-lib="1174"] nav ul li a:hover{transition: all 0.5s ease 0s;
	opacity: 0.7;}[data-lib="1174"] .sp{display: none;}@media screen and (max-width: 1150px){[data-lib="1174"]{padding: 20px 5px;}}@media screen and (max-width: 768px){[data-lib="1174"]{padding: 10px;
	min-width: 100%;}[data-lib="1174"] h1{margin: 0;
	display: none;}[data-lib="1174"] .logo img{width: 180px;
	max-width: none;
	min-width: auto;}[data-lib="1174"] nav{position: fixed;
	top: 65px;
	right: -100vw;
	z-index: 1000;
	box-sizing: border-box;
	padding-top: 0;
	width: 100%;
	height: calc(100% - 65px);
	background: var(--plusblack);
	font-size: 16px;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0;
	overflow-y: auto;}[data-lib="1174"] nav dl{position: relative;
	flex-flow: column;
	width: 100%;
	font-size: inherit;
	line-height: inherit;}[data-lib="1174"] nav ul{width: 100%;
	flex-flow: column;}[data-lib="1174"] nav dl dd,[data-lib="1174"] 
  nav ul li{padding: 0;
	border-bottom: 1px solid var(--white);}[data-lib="1174"] nav dl dd a,[data-lib="1174"] 
  nav ul li a{display: block;
	padding: 15px;
	color: var(--white);
	text-decoration: none;}[data-lib="1174"] nav ul li a:hover{background: #fff;
	color: var(--plusblack);}[data-lib="1174"] nav ul li.plus-cv1,[data-lib="1174"] 
  nav ul li.plus-cv2,[data-lib="1174"] 
  nav ul li.plus-cv3{border: none;}[data-lib="1174"] nav ul li.plus-cv1{color: var(--white);
	font-size: 14px;
	text-align: center;
	padding: 0 0 10px;}[data-lib="1174"] nav ul li.plus-cv1 a{font-size: 2rem;
	line-height: 1.2;
	background: var(--white);
	color: var(--plusblack);
	width: 90%;
	margin: 20px auto 10px;
	font-weight: 500;}[data-lib="1174"] nav ul li.plus-cv1 a i{margin-right: 5px;}[data-lib="1174"] nav ul li.plus-cv2 a{width: 90%;
	margin: 20px auto 30px;
	text-align: center;
	background: var(--plusgreen2);
	color: var(--white);}[data-lib="1174"] nav ul li.plus-cv3 a{background: var(--plusbg);
	color: var(--black);
	text-align: center;
	border: none;}[data-lib="1174"] .hamburger{position: fixed;
	display: block;
	top: 5px;
	right: 0;
	z-index: 3;
	z-index: 1500;
	box-sizing: border-box;
	width: 60px;
	height: 60px;
	font-size: 11px;
	cursor: pointer;
	-webkit-transition: all 400ms;
	transition: all 400ms;
	background: var(--plusbg);
	color: #fff;}[data-lib="1174"] .hamburger span{position: absolute;
	width: 35px;
	height: 2px;
	background: var(--plusblack);
	-webkit-transition: all 400ms;
	transition: all 400ms;
	right: 0;
	left: 0;
	margin: 0 auto;}[data-lib="1174"] .hamburger span:nth-child(1){top: 20px;}[data-lib="1174"] .hamburger span:nth-child(2){top: 30px;}[data-lib="1174"] .hamburger span:nth-child(3){top: 40px;}[data-lib="1174"] .hamburger.open{background: var(--plusblack);}[data-lib="1174"] .hamburger.open span{background: #fff;}[data-lib="1174"] .hamburger.open span:nth-child(1){top: 30px;
	transform: rotate(45deg);}[data-lib="1174"] .hamburger.open span:nth-child(2){display: none;}[data-lib="1174"] .hamburger.open span:nth-child(3){top: 30px;
	transform: rotate(-45deg);}[data-lib="1174"] .pc{display: none;}[data-lib="1174"] .sp{display: block;}}/*widget:633dc692-ea8e-40b0-b69c-e4f639dbf644*/[data-lib="1427"] #breadcrumb ul li:nth-child(1){display: none;}[data-lib="1427"] #breadcrumb ul li:nth-child(2):before{display: none;}[data-lib="1427"] br{display: none;}[data-instance="1486"]{background:
url(/_img/ja/cms/1486/bgimg/___/session//?u=1662977486) no-repeat center right var(--calc980),
linear-gradient(to bottom, var(--plusbg) 0%, var(--plusbg) 50%, transparent 50%, transparent 100%),
url(/asset/images/bg04.jpg) repeat;}/*instance mediea*/@media screen and (max-width: 768px){[data-instance="1486"]{background-size: 60vw auto, auto, auto;
	background-position: top 10px right, top left, top left;}}/*widget:e5b80f79-460c-4412-bd76-643617b4ee0f*/[data-lib="1183"]{background: url(/_img/ja/cms_parts_library/1186/image/_/) no-repeat center / cover;
	padding: 100px 0;}[data-lib="1183"] .plus_aside{background: rgba(255, 255, 255, 0.8);
	text-align: center;
	padding: 50px 0 0;
	width: 780px;
	margin: 0 auto;}[data-lib="1183"] .plus_aside .hA{--mb_hA: 20px;}[data-lib="1183"] .plus_aside .tel{font-weight: 700;
	font-size: 2rem;
	margin: 20px auto 0;
	line-height: 1.3;}[data-lib="1183"] .plus_aside .tel small{font-weight: normal;
	font-size: 1.2rem;
	display: inline-block;
	vertical-align: middle;}[data-lib="1183"] .plus_aside a.conv{background: var(--plusgreen2);
	display: block;
	padding: 25px;
	font-weight: 500;
	color: var(--white);
	margin: 40px 0 0;}[data-lib="1183"] .plus_aside a:hover{opacity: 0.8;}@media screen and (max-width: 768px){[data-lib="1183"]{padding: 60px 0;}[data-lib="1183"] .plus_aside{width: 90%;
	font-size: 14px;
	padding: 25px 0 0;}[data-lib="1183"] .plus_aside .tel{font-size: 1.6rem;}[data-lib="1183"] .plus_aside .tel small{display: block;
	font-size: 14px;}[data-lib="1183"] .plus_aside a.conv{padding: 25px 0;
	margin: 20px 0 0;}}/*widget:621fb438-a499-44bb-9013-e627177d9ca9*/[data-lib="1177"]{background: var(--plusbg) url(/_img/ja/cms_parts_library//image/_/)no-repeat bottom right;
	padding: 100px var(--calc980) 132px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;}[data-lib="1177"] .pagetop{width: 60px;
	height: 60px;
	background: var(--plusblack);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	line-height: 1;
	cursor: pointer;
	position: absolute;
	top: -30px;
	right: 10%;}[data-lib="1177"] .pagetop:before{content: "\e5d8";
	font-family: 'Material Icons';
	display: block;
	font-size: 2em;}[data-lib="1177"] .pagetop:after{content: "TOP";
	font-size: 12px;
	font-weight: normal;}[data-lib="1177"] .copyright{width: 100%;
	font-size: 14px;
	color: var(--plusgray);
	margin-top: 50px;}[data-lib="1177"] dt{margin: 0 0 40px;}[data-lib="1177"] dd a{text-decoration: underline;}[data-lib="1177"] dd a:hover{text-decoration: none;}[data-lib="1177"] .foot_sns{display: flex;
	align-items: center;
	line-height: 1;
	margin: 20px auto;
	font-size: 14px;}[data-lib="1177"] .foot_sns>*{margin-right: 15px;}[data-lib="1177"] nav{display: flex;
	justify-content: flex-end;}[data-lib="1177"] nav ul{margin-left: 50px;}[data-lib="1177"] nav ul a{display: block;
	padding: 4px 0;}@media screen and (max-width: 768px){[data-lib="1177"]{background-size: 110% auto;
	background-position: right bottom 95px;
	padding: 50px var(--calc980) 60vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	position: relative;
	flex-flow: column-reverse;}[data-lib="1177"] .pagetop{width: 50px;
	height: 50px;
	top: -25px;
	right: 3%;}[data-lib="1177"] .pagetop:before{font-size: 1.5em;}[data-lib="1177"] .copyright{width: auto;
	position: absolute;
	bottom: 70px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;}[data-lib="1177"] dl{text-align: center;
	margin: 20px 0 40px;}[data-lib="1177"] dt{width: 200px;
	margin: 20px auto 10px;}[data-lib="1177"] .foot_sns{justify-content: center;}[data-lib="1177"] .foot_sns>*{margin: 0 5px;}[data-lib="1177"] nav ul{margin: 0;
	font-size: 14px;
	width: 50%;
	line-height: 1.2;}[data-lib="1177"] nav ul+ul{margin-left: 10px;}[data-lib="1177"] nav ul a{padding: 0 0 15px;}}[data-instance="1499"].plusblog-wrap{background-image:url(/_img/ja/cms/1499/bgimg/___/session//?u=1663306274), 
url(/asset/images/bg04.jpg);}/*instance mediea*/@media  screen and (max-width: 768px){}/*widget:511dfb19-8be9-4109-b75f-2b1c1a6edc68*/[data-lib="1852"] .form_bnr .btn{background: var(--plusgreen2);
	font-size: 18px;}[data-lib="1852"] .form_bnr{font-size: 18px;}@media screen and (max-width: 768px){}/*layout:48*/:root {
  --plusbg: #f7f7f4;
  --plusblack: #1e1e1e;
  --white: #fff;
  --plusgray: #8e8e8e;
  --plusgray2: #d2d2d2;
  --plusgreen: #c2d0bf;
  --plusgreen2: #00a63c;
  --plusorange: #a57f39;
  --calc980: calc((100% - 980px) / 2);
  --tateCenter: translateY(-50%);
  --yokoCenter: translateX(-50%);
  --Center: translate(-50%, -50%);
  --fw: 400;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: .03em;
  color: #1e1e1e;
}

.plusTopmain {
  background: var(--plusbg);
  padding: 1px 0;
}

.plusPagemain {
  padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  letter-spacing: .1em;
}

@media screen and (max-width:768px) {
  :root {
    --calc980: 5%;
  }

  .plusPagemain {
    padding-top: 50px;
  }
 
  body {
    font-size: 15px;
  }
}

/**================================================== 
固定バナー
================================================== **/

#fix_bnr {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    width: 100%;
    background: #00000073;
}

#fix_bnr .form_bnr .btn{
       background: var(--plusgreen2);
       font-size: 18px;
       width: 345px;
}

@media screen and (max-width:768px) {
    #fix_bnr{
		padding: 0; 
		background: rgba(255,255,255,1.0);
	}
	#fix_bnr .form_bnr .btn{
           font-size: 14px;
    }
}

/**================================================== 
 共通
================================================== **/

/**------------------------------ 
見出し
 ------------------------------**/
.plus_title {
  padding: 90px var(--calc980) 1px;
}

.plus_title h2 {
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 1.3;
}

.plus_title small {
  font-size: 1rem;
  font-weight: 500;
}

.plus_title #breadcrumb {
  margin: 75px 0 15px;
  color: var(--plusgray);
}

.plus_title #breadcrumb ul:before {
  color: var(--plusblack);
}

.plus_title #breadcrumb ul li+li:before {
  content: "―";
  display: inline-block;
  margin: 0 5px;
}

.plus_title #breadcrumb a {
  text-decoration: none;
  color: var(--plusblack);
}

.hA {
  --fw: 700;
  --fz_hA: 2.25rem;
  --mb_hA: 30px;
  font-weight: var(--fw);
  line-height: 1.6;
  letter-spacing: .1em;
  font-size: var(--fz_hA);
  margin-bottom: var(--mb_hA);
}

.hA small {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  font-family: 'Josefin Sans', sans-serif;
}

.hA_p {
  width: 750px;
}

.hB {
  --fw: 500;
  font-weight: var(--fw);
  line-height: 1.6;
  letter-spacing: .1em;
  font-size: var(--fz_hB);
}

.hC {
  --mb_hC: 30px;
  background: var(--plusgreen);
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--mb_hC);
}

.hD {
  --mb_hC: 30px;
  background: var(--plusgray);
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--mb_hC);
  color: var(--white);
}

.hE {
  font-weight: var(--fw);
  line-height: 1.6;
  letter-spacing: .1em;
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.hE small {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  font-family: 'Josefin Sans', sans-serif;
}

.hF {
  background: var(--plusgray);
  padding: 7px 15px;
  margin: 15px auto;
  font-weight: 500;
  color: var(--white);
}

@media screen and (max-width:768px) {
  .plus_title {
    padding: 45px var(--calc980) 1px;
  }

  .plus_title h2 {
    font-size: 1.5rem;
  }

  .plus_title small {
    font-size: 0.8rem;
  }

  .plus_title #breadcrumb {
    margin: 45px 0 10px;
  }

  .plus_title #breadcrumb ul li+li:before {
    margin: 0 2px;
  }



  .hA {
    --fz_hA: 1.5rem;
    letter-spacing: .05rem;
  }

  .hA_p {
    width: 90vw;
  }

  .hC,
  .hD {
    --mb_hC: 20px;
    font-size: 1.1rem;
    padding: 10px;
  }

  .hE {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

/**------------------------------ 
ボタン
 ------------------------------**/
.moreA {
  --fz_btn: 1rem;
  position: relative;
  display: block;
  padding: 15px 10px;
  width: 70%;
  max-width: 350px;
  border-radius: 50px;
  border: 1px solid var(--plusblack);
  text-align: center;
  line-height: 1.5;
  font-weight: var(--fw);
  font-size: var(--fz_btn);
}

.moreA:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f1df";
  font-family: 'Material Icons';
  transform: var(--tateCenter);
}

.moreA:hover {
  color: var(--plusbg);
  background: var(--plusblack);
}


.moreB {
  --fz_btn: 1rem;
  --fw: 500;
  text-align: right;
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: var(--fw);
  font-size: var(--fz_btn);
  position: relative;
}

.moreB:after {
  display: inline-block;
  margin-left: 15px;
  content: "\f1df";
  font-family: 'Material Icons';
}

.moreB:before {
  content: "";
  height: 1px;
  flex: 1;
  margin-right: 25px;
  border-bottom: 1px dashed var(--plusblack);
}

@media screen and (max-width: 768px) {
  .moreA {
    width: 90vw;
    padding: 12px 10px 12px 5px;
    font-size: 1.0em;
    margin-left: auto;
    margin-right: auto;
  }

}

/**------------------------------ 
カテゴリボタン
 ------------------------------**/
.pluscatBtn-Wrap {
  width: 980px;
  margin: 0 auto;
}

.pluscatBtn-Wrap .hA {
  --fz_hA: 1.6rem;
}

.plus-catBtn {
  display: flex;
  justify-content: flex-start;
  margin-left: -15px;
  flex-wrap: wrap;
}

.plus-catBtn a {
  width: 31%;
  position: relative;
  display: block;
  padding: 15px 10px;
  /*flex: 1;*/
  border-radius: 50px;
  border: 1px solid var(--plusblack);
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 1% 15px;
}

.plus-catBtn a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f1df";
  font-family: 'Material Icons';
  transform: var(--tateCenter);
}

.plus-catBtn a:hover {
  color: var(--plusbg);
  background: var(--plusblack);
}

@media screen and (max-width:768px) {
  .pluscatBtn-Wrap {
    width: 90%;
    margin: 0 auto 40px;
  }

  .pluscatBtn-Wrap .hA {
    --fz_hA: 1.2rem;
    --mb_hA: 15px;
  }

  .plus-catBtn {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .plus-catBtn a {
    width: auto;
    flex: 1;
    font-size: 0.9rem;
    padding: 10px;
    margin: 5px 1%;
    white-space: nowrap;
  }

  .plus-catBtn a:after {
    display: none;
  }
}

/**------------------------------ 
ページャー
 ------------------------------**/
.plusPagemain .pagenation span {
  border-radius: 50%;
}

.plusPagemain .pagenation span a {
  border-radius: 50%;
}

.plusPagemain .pagenation .prev,
.plusPagemain .pagenation .next,
.plusPagemain .pagenation .prev a,
.plusPagemain .pagenation .next a,
.plusPagemain .pagenation .prev a:hover,
.plusPagemain .pagenation .next a:hover {
  border: none;
  color: var(--white);
  background: none;
}

.plusPagemain .pagenation .prev a:before {
  content: "\e317";
  font-family: 'Material Icons';
  color: var(--plusblack);
}

.plusPagemain .pagenation .next a:before {
  content: "\f1df";
  font-family: 'Material Icons';
  color: var(--plusblack);
}

@media screen and (max-width: 768px) {
  .pagenation span {
    margin: 3px;
    width: 30px;
    height: 30px;
    line-height: 27px;
  }
}


/**------------------------------ 
画像
 ------------------------------**/
/* -------------------------------------
bg-blur
-------------------------------------*/
figure.bg-blur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  height: 313px;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

figure.bg-blur::before {
  content: "";
  display: block;
  width: 110%;
  height: 110%;
  position: absolute;
  left: -5%;
  top: -5%;
  -webkit-filter: blur(6px);
  filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, .5);
  background-size: cover;
}

figure.bg-blur img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 2;
}

a:hover figure.bg-blur {
  opacity: 0.7;
}

a:hover figure.bg-blur img {
  opacity: 1.0;
}

@media screen and (max-width: 768px) {
  figure.bg-blur {
    height: 60vw;
    max-width: 480px;
  }

  .h-text-img figure {
    max-width: 100%;
  }
}

/**------------------------------ 
セクション
 ------------------------------**/
.plus-bg01 {
  background: url(/asset/images/bg01.jpg) no-repeat top right;
  padding: 100px var(--calc980);
}

.plus-bg02 {
  background: var(--white);
}

.plus-bg03 {
  background: var(--plusgreen);
}

.plus-bg04 {
  background: url(/asset/images/bg04.jpg) repeat;
}

.plus-bg05 {
  background: var(--plusbg);
}

.plus-sec01 {
  padding: 100px var(--calc980);
}

.plus-sec02 {
  padding: 100px 0;
}

.plus-sec03 {
  padding: 0 var(--calc980);
}

.plus-sec04 {
  padding: 100px var(--calc980) 50px;
}

.plus-sec05 {
  padding: 50px var(--calc980);
}

@media screen and (max-width:768px) {
  .plus-bg01 {
    background: url(/asset/images/bg01.jpg) no-repeat top right / 80% auto;
    padding: 50px var(--calc980);
  }

  .plus-sec01 {
    padding: 50px var(--calc980);
  }

  .plus-sec02 {
    padding: 50px 0;
  }
  
  .plus-sec04 {
      padding: 50px var(--calc980) 1px;
    }
    
    .plus-sec05 {
      padding: 30px var(--calc980);
    }
}




/**================================================== 
 HERO
================================================== **/
.plusHero {
  --hero-height: 700px;
  margin-top: calc(var(--header-height) * -1);
  margin-bottom: 100px;
  height: var(--hero-height);
  overflow: hidden;
  position: relative;
  min-width: 980px;
}

.plusHero .swiper-slide {
  height: var(--hero-height);
  position: relative;
  overflow: hidden;
}

.plusHero .swiper-slide img {
  width: 70vw;
  height: var(--hero-height);
  object-fit: cover;
}

.plusHero::after {
  content: "";
  display: block;
  width: 30vw;
  height: 100%;
  background: var(--plusbg);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
  pointer-events: none;
}

.plusHero .plusHero-logo {
  display: inline-block;
  position: absolute;
  left: 2%;
  bottom: 20px;
  z-index: 51;
}

.plusHero .catch {
  width: max(35vw, 420px);
  position: absolute;
  right: 0;
  top: 50%;
  transform: var(--tateCenter);
  z-index: 60;
}

.plusHero .catch {
  --fz_hB: 2.3rem;
}

.plusHero .catch p {
  font-size: 1.1rem;
}

/* アニメーション */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.plusHero .swiper-slide-active img,
.plusHero .swiper-slide-duplicate-active img,
.plusHero .swiper-slide-prev img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

@media screen and (max-width: 768px) {
  .plusHero {
    --hero-height: 500px;
    margin-top: 0;
    margin-bottom: 40px;
    height: auto;
    min-width: auto;
  }

  .plusHero::after {
    content: "";
    display: block;
    width: 5vw;
    height: 100%;
    background: var(--plusbg);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
    pointer-events: none;
    display: none;
  }
  
  .plusHero video{
        width: 100%;
        height: auto;
    }

  .plusHero .swiper-slide img {
    width: 95%;
    height: var(--hero-height);
    object-fit: cover;
  }

  .plusHero .plusHero-logo {
    width: clamp(300px, 95%, 400px);
    left: 0;
    top: 380px;
    bottom: auto;
    text-align: center;
  }

  .plusHero .plusHero-logo img {
    width: 48%;
  }

  .plusHero .catch {
    --fz_hB: 1.5rem;
  }

  .plusHero .catch p {
    font-size: 1rem;
  }

  .plusHero .catch {
    width: 90%;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    z-index: 60;
    margin: 20px auto 50px;
  }
}


/**================================================== 
 イベント一覧
================================================== **/
.plusevent-wrap {
  width: 810px;
  margin: 60px 0 80px;
}

.plusevent-list {
  --fz_hB: 20px;
  --fw: 500;
}

.plusevent-list li {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
}

.plusevent-list li a {
  display: flex;
  flex-direction: column;
  padding: 0 0 1px;
  height: 100%;
}

.plusevent-list li {
  width: 380px;
  margin-right: 20px;
  margin-bottom: 0;
  background: var(--white);
}

.plusevent-list figure {
  text-align: center;
}

.plusevent-list figure img {
  width: 100%;
  height: 253px;
  object-fit: cover;
  display: block;
}

.plusevent-list h4 {
  padding: 25px;
  flex-grow: 1;
}

.plusevent-list time {
  display: block;
  margin-top: auto;
  padding: 0 25px 25px;
}

@media screen and (max-width: 768px) {
  .plusevent-wrap {
    width: 100%;
    margin: 40px 0 0;
  }

  .plusevent-list {
    margin-bottom: 30px;
  }

  .plusevent-list li {
    margin: 0 0 20px;
    width: 100%;
  }

  .plusevent-list figure {}

  .plusevent-list figure img {
    width: 100%;
    height: 66.6vw;
  }

  .plusevent-list h4 {
    padding: 25px 15px 0;
  }

  .plusevent-list p {
    font-size: 14px;
    padding: 15px 15px;
  }

  .plusevent-list time {
    padding: 0 15px 25px;
  }
}


/**================================================== 
 間取り一覧
================================================== **/

.plusmadori-wrap {
  background-repeat: no-repeat;
  background-position: top 100px right var(--calc980);
}

.plusmadori-list {
  --fz_hB: 20px;
  --fw: 500;
  margin: 60px 0;
}

.plusmadori-list li {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  background: var(--white);
}

.plusmadori-list li a {
  display: flex;
  flex-direction: column;
  padding: 0 0 1px;
  height: 100%;
}

.plusmadori-list figure {
  text-align: center;
  padding: 0 20px;
}

.plusmadori-list figure img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}

.plusmadori-list h4 {
  display: flex;
  padding: 20px;
  flex-grow: 1;
  background: var(--plusblack);
  color: var(--white);
}

.plusmadori-list h4:before {
  content: "PLAN";
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 0;
  border-right: 1px solid var(--white);
  margin: 0 20px 0 0;
}

.plusmadori-wrap .moreA {
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .plusmadori-wrap {
    background-position: top 20px right 3%;
    background-size: 40vw auto;
    padding-top: 100px;
  }

  .plusmadori-list {
    margin: 40px 0 30px;
  }

  .plusmadori-list li {
    margin: 0 auto 20px;
    width: 100%;
  }

  .plusmadori-list figure {}

  .plusmadori-list figure img {
    width: 100%;
    height: 60vw;
  }

  .plusmadori-list h4 {
    padding: 15px;
  }

}

.plus-attachment01 {
  background: no-repeat center / cover;
  background-attachment: fixed;
  height: 600px;
}

@media screen and (max-width:768px) {
  .plus-attachment01 {
    background-attachment: scroll;
    height: 80vw;
  }
}

/**================================================== 
 コンセプト
================================================== **/
.plusconc-wrap {}

.plusconc-wrap .h-text-img {
  margin: 120px auto;
}

.plusconc-wrap .h-text-img>div {
  padding: 0 5%;
  margin:0;
}

.plusconc-wrap figure {
  width: 55%;
  text-align: center;
  flex: none;
  position: relative;
}

.plusconc-wrap .figure {
  width: 50%;
  padding: 5%;
}

.plusconc-wrap .figure.min{
  padding:5% 10%;
}

.plusconc-wrap figure figcaption {
  display: flex;
  width: 70%;
  position: absolute;
  bottom: 15px;
  left: 40px;
}

.plusconc-wrap figure.aboutseal>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plusconc-title {
  text-align: center;
  font-size: 3.1rem;
  font-weight: 700;
}

.plusconc-title small {
  display: block;
  font-size: 2.25rem;
}

@media screen and (max-width:768px) {
  .plusconc-wrap .h-text-img {
    margin: 50px auto;
    flex-flow: column-reverse;
  }

  .plusconc-wrap .h-text-img.reverse {
    flex-flow: column;
  }

  .plusconc-wrap figure {
    width: 100%;
    text-align: center;
    flex: none;
    position: relative;
  }

  .plusconc-wrap .figure {
    max-width: 400px;
    width: 100%;
    padding: 5%;
  }
  
  .plusconc-wrap .figure.min{
      width: 60%;
      padding:5%;
  }

  .plusconc-wrap figure figcaption {
    width: 100%;
    padding: 0 3%;
    left: 0;
    transform: none;
    justify-content: center;
  }

  .plusconc-wrap figure figcaption img {
    flex: 1;
    width: 45%;
  }

  .plusconc-title {
    font-size: 1.8rem;

  }

  .plusconc-title small {
    display: block;
    font-size: 1.1rem;
  }
}

/**================================================== 
ピックアップ 
================================================== **/
.plusblog-wrap {
  position: relative;
  padding: 100px 0 100px var(--calc980);
  overflow: hidden;
  background:
    no-repeat top 100px right var(--calc980),
    repeat;
}

.plusblog-wrap.plusPage2 {
  padding: 100px var(--calc980);
}

.plusblog-wrap02 {
  position: relative;
  padding: 100px 0 120px var(--calc980);
  overflow: hidden;
  background:
    no-repeat top 50px right var(--calc980);
  background-color: var(--plusgreen);
}

.plusblog-list {
  --fz_hB: 20px;
  --fw: 500;
  margin: 30px 0 0;
}

.plusblog-list.swiper-wrapper {
  margin: 80px 0 0;
}

.plusblog-list li {
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  background: var(--white);
}

.plusblog-list li a {
  display: flex;
  flex-direction: column;
  padding: 0 0 1px;
  height: 100%;
}

.plusblog-list li.swiper-slide {
  width: 380px;
  margin-right: 20px;
  margin-bottom: 0;
}

.plusblog-list figure {
  text-align: center;
}

.plusblog-list figure img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  display: block;
}

.plusblog-list li.swiper-slide figure img {
  height: 253px;
}

.plusblog-list h4 {
  padding: 25px 25px 0;
  flex-grow: 1;
}

.plusblog-list p {
  padding: 15px 25px;
  line-height: 1.8;
}

.plusblog-list time {
  display: block;
  margin-top: auto;
  padding: 0 25px 25px;
}

.plusblog-slider .swiper-slide {
  display: flex;
}

.plusblog-slider .swiper-slide {
  height: auto !important;
}


@media screen and (max-width: 768px) {

  .plusblog-wrap {
    margin: 50px 0 0;
    padding: 100px var(--calc980) 40px;
    background-position: top 20px right 3%;
    background-size: 40vw auto;
  }

  .plusblog-wrap.plusPage2 {
    margin: 0;
    padding: 100px var(--calc980) 50px;
  }

  .plusblog-wrap02 {
    margin: 0;
    padding: 50px var(--calc980) 60px;
    background-position: top 20px right 3%;
    background-size: 40vw auto;
  }

  .plusblog-list {
    margin: 40px 0 0;
  }

  .plusblog-list.swiper-wrapper {
    margin: 40px 0 0;
  }

  .plusblog-list li {
    margin: 0 0 20px;
    width: 100%;
  }

  .plusblog-list li.swiper-slide {
    margin: 0;
    width: 100%;
  }

  .plusblog-list figure {}

  .plusblog-list figure img {
    width: 100%;
    height: 65vw;
  }

  .plusblog-list li.swiper-slide figure img {
    height: 65vw;
  }

  .plusblog-list h4 {
    padding: 25px 15px 0;
  }

  .plusblog-list p {
    font-size: 14px;
    padding: 15px 15px;
  }

  .plusblog-list time {
    padding: 0 15px 25px;
  }

}

/* スライドパーツ */
.swiper-container-autoheight .plusblog-list.swiper-wrapper {
  align-items: stretch;
}

.plusblog-parts {
  --plusblog-parts-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 980px;
  margin: 50px 0 50px;
}

.plusblog-parts .plusblog-next,
.plusblog-parts .plusblog-prev {
  width: var(--plusblog-parts-height);
  height: var(--plusblog-parts-height);
  margin-left: 10px;
  position: static;
  background: none;
}

.plusblog-parts .plusblog-next::after,
.plusblog-parts .plusblog-prev::after {
  display: none;
}

.plusblog-parts .plusblog-next::before,
.plusblog-parts .plusblog-prev::before {
  content: "→";
  display: grid;
  place-items: center;
  width: var(--plusblog-parts-height);
  height: var(--plusblog-parts-height);
  color: var(--plusblack);
  font-weight: var(--fw-b);
  line-height: 1.0;
  border-radius: 50%;
  border: 1px solid var(--plusblack);
}

.plusblog-parts .plusblog-prev::before {
  content: "←";
}

.plusblog-parts .plusblog-next:hover::before,
.plusblog-parts .plusblog-prev:hover::before {}

.plusblog-parts .plusblog-pagination {
  width: auto;
  height: var(--plusblog-parts-height);
  margin-right: 20px;
  font-size: 1.5rem;
  line-height: 1.0;
  position: static;
}

.plusblog-parts .plusblog-pagination .swiper-pagination-current {
  color: var(--plusblack);
}

.swiper-pagination-total {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {

  .plusblog-parts {
    margin: 30px 5% 30px 0;
  }

  /* スライドパーツ */
  .plusblog-parts .plusblog-pagination {
    margin-right: 10px;
    font-size: 1.2rem;
  }
}

/**================================================== 
 施工事例一覧
================================================== **/

.plusworks_wrap {
  background-repeat: no-repeat;
  background-position: top 100px right;
}

/**------------------------------ 
TOP
 ------------------------------**/

.plusworks-list {
  padding: 50px var(--calc980);
}

.plusworks-list li {
  position: relative;
  --fz_hB: 1.5rem;
}

.plusworks-list li+li {
  margin-top: 100px;
}

.plusworks-list li .f1,
.plusworks-list li .hB,
.plusworks-list li p,
.plusworks-list li .moreB {
  width: 630px;
  margin-bottom: 30px;
}

.plusworks-list li .f2,
.plusworks-list li .f3 {
  position: absolute;
  width: 300px;
}

.plusworks-list li .f2 {
  bottom: 330px;
}

.plusworks-list li .f3 {
  bottom: 0;
}

.plusworks-list li:nth-child(odd) .f2,
.plusworks-list li:nth-child(odd) .f3 {
  right: 0;
}

.plusworks-list li:nth-child(even) {
  padding-left: calc(100% - 630px);
}

.plusworks-list li:nth-child(even) .f2,
.plusworks-list li:nth-child(even) .f3 {
  left: 0;
}

@media screen and (max-width:768px) {
  .plusworks_wrap {
    background-position: top 30px right;
    background-size: 50vw auto;
  }

  .plusworks-list {
    padding: 20px 0;
  }

  .plusworks-list li {
    position: relative;
    --fz_hB: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .plusworks-list li+li {
    margin-top: 40px;
  }

  .plusworks-list li .f1,
  .plusworks-list li .hA,
  .plusworks-list li p,
  .plusworks-list li .moreB {
    width: 100%;
    margin-bottom: 15px;
  }

  .plusworks-list li .f2 {
    width: 48%;
    position: relative;
    bottom: auto;
    margin-top: -10px;
    margin-bottom: 15px;
  }

  .plusworks-list li .f3 {
    position: relative;
    bottom: auto;
    width: 48%;
    margin-top: -10px;
    margin-bottom: 15px;
  }

  .plusworks-list li:nth-child(odd) .f2,
  .plusworks-list li:nth-child(odd) .f3 {
    right: auto;
  }

  .plusworks-list li:nth-child(even) {
    padding-left: 0;
  }

  .plusworks-list li:nth-child(even) .f2,
  .plusworks-list li:nth-child(even) .f3 {
    left: auto;
  }

}

/**------------------------------ 
一覧ページ
 ------------------------------**/
.plusworks-posts {}

.plusworks-posts>* {
  margin: 0 0 60px;
}

.plusworks-posts em {
  display: inline-block;
  padding: 3px 5px;
  min-width: 150px;
  background: var(--plusgreen);
  text-align: center;
  margin: 20px 0;
  font-size: 0.9rem;
}
.plusworks-posts em.plusblack {
  background: var(--plusblack);
  color: var(--white);
  width: 100%;
  margin: 0;
}

.plusworks-posts .hB {
  --fw: 700;
}

.plusworks-posts time {
  display: block;
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  .plusworks-posts em {
    margin: 10px 0;
  }

  .plusworks-posts time {
    margin-top: 15px;
  }
}

/**================================================== 
 施工事例詳細
================================================== **/
/**------------------------------ 
タイトル
 ------------------------------**/
.plusworks-title {
  padding: 0 var(--calc980);
}

.plusworks-title em {
  display: inline-block;
  padding: 3px 5px;
  min-width: 200px;
  background: var(--plusgreen);
  text-align: center;
  margin-bottom: 40px;
}

.plusworks-title em.plusblack {
  background: var(--plusblack);
  color: var(--white);
}

.plusworks-title h1 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 2.25rem;
}

.plusworks-title time {
  display: block;
  font-size: 14px;
  color: var(--plusgray);
  margin-bottom: 20px;
}

.plusworks-title .sns {
  margin-bottom: 30px;
}

.sns>* {
  display: inline-block;
  margin: 0 3px 0 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 3px;
}

.sns .tw {
  background: #50aff0;
}

.sns .gb {
  background: #3a5b97;
}

.sns .line {
  background: #00b900;
}

@media screen and (max-width:768px) {
  .plusworks-title {
    padding: 0 var(--calc980);
  }

  .plusworks-title em {
    min-width: 150px;
    margin-bottom: 20px;
    font-size: 0.9rem;
  }

  .plusworks-title h1 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }


  .plusworks-title .sns {
    margin-bottom: 30px;
  }

  .sns>* {
    font-size: 20px;
    width: 2.3rem;
    height: 2.3rem;
    line-height: 2.3rem;
  }
}

/**------------------------------ 
スライド
 ------------------------------**/

.plusworks-Hero {
  padding: 1px var(--calc980);
  margin: 40px auto;
}

.plusworks-Hero .read {
  margin: 40px auto 0;
}

.swiper-container {
  width: 100%;
}

.swiper-container.plusworks-slider {
  height: 653px;
}

.plusworks-thumbnail {
  height: 90px;
  margin: 10px 0;
}

.plusworks-thumbnail .swiper-wrapper .swiper-slide {
  width: 12%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.plusworks-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1.0;
}

.plusworks-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.plusworks-slider .swiper-button-next,
.plusworks-slider .swiper-button-prev {
  background: none;
}

.plusworks-slider .swiper-button-next::after,
.plusworks-slider .swiper-button-prev::after {
  display: none;
}

.plusworks-slider .swiper-button-next::before,
.plusworks-slider .swiper-button-prev::before {
  content: "\e5cc";
  display: grid;
  color: var(--white);
  font-weight: var(--fw-b);
  line-height: 1.0;
  border-radius: 50%;
  font-family: 'Material Icons';
  font-size: 2rem;
}

.plusworks-slider .swiper-button-prev::before {
  content: "\e5cb";
}

.plusworks-slider .swiper-button-next:hover::before,
.plusworks-slider .swiper-button-prev:hover::before {}


/**４個以下の時はサムネイル左寄せ**/
.plusworks-thumbnail.small4 .swiper-wrapper {
  transform: none !important;
}

@media screen and (max-width:768px) {
  .plusworks-Hero {
    padding: 0 var(--calc980);
    margin: 40px auto;
  }
  .plusworks-Hero img{
    width: 100%;
    height: auto;
    object-fit: fill;
}


  .swiper-container.plusworks-slider {
    height: 62vw;
  }

  .plusworks-thumbnail {
    height: 17vw;
    margin: 10px 0;
  }

  .plusworks-Hero .read {
    margin: 30px auto 0;
  }
}

/**------------------------------ 
ギャラリー
 ------------------------------**/
.plusworks-gallery,
.plusworks-refer{
  padding: 80px var(--calc980) 50px;
}

.plusworks-gallery i,
.plusworks-around i,
.plusworks-refer i{
  border: 1px solid var(--plusblack);
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 5px;
  margin-bottom: 40px;
}

.plusworks-gallery.plus-bg03 i,
.plusworks-gallery.plus-bg i{
  background: var(--plusblack);
  color: var(--white);
}


.plusworks-gallery .read,
.plusworks-around .read,
.plusworks-refer .read{
  max-width: 980px;
  margin-bottom: 40px;
}

.plusworks-gallery li {
  margin-bottom: 30px;
}

.plusworks-gallery figure {
  margin-bottom: 15px;
}

.plus-worksintro {
  background: var(--white);
  padding: 40px;
  margin: 70px auto 50px;
}

.plus-worksintro .hA {
  --fz_hA: 1.3rem;
}

.plus-worksintro li {
  margin: 0 0 15px;
}

.plus-worksintro li figure {
  margin-bottom: 0;
}

.plusworks-refer .plustable table {
  width: 100%;
}

.plusworks-refer .plustable th,
.plusworks-refer .plustable td {
  padding: 15px 25px;
}
.plusworks-refer .plustable td{
    border-left:1px dotted var(--plusgray2);
}

@media screen and (max-width:768px) {
  .plusworks-gallery,
  .plusworks-refer{
    padding: 30px var(--calc980);
  }

  .plusworks-gallery li {
    margin-bottom: 20px;
  }


  .plusworks-gallery i,
  .plusworks-around i,
  .plusworks-refer i{
    margin-bottom: 20px;
    width: 150px;
    font-size: 0.9rem;
  }

  .plusworks-gallery .read,
  .plusworks-around .read,
  .plusworks-refer .read{
    margin-bottom: 20px;
  }

  .plus-worksintro {
    padding: 15px;
    margin: 20px auto;
  }

  .plus-worksintro .hA {
    --fz_hA: 1.2rem;
  }

  .plus-worksintro li {
    margin: 0 0 15px;
  }
  
  .plusworks-refer .plustable table {
    width: 110%;
    margin-left: -5%;
  }

  .plusworks-refer .plustable th,
  .plusworks-refer .plustable td {
    width: auto;
    padding: 15px 5px;
    font-size: 0.8rem;
  }

  .plusworks-refer .plustable th {
    white-space: nowrap;
  }
}




/**------------------------------ 
before after
  ------------------------------**/
.plusworks-around {
  margin: 50px 0 100px var(--calc980);
}

.plusworks-around li {
  width: 980px;
}

.plusworks-around li a {
  width: 980px;
}

.plusworks-around li h3 {
  background: var(--plusgray);
  color: var(--white);
  text-align: center;
  font-size: 20px;
  padding: 10px;
}

.plusworks-around .pluse-before p,
.plusworks-around .pluse-after p{
    width: 100%;
    max-width: 980px;
}

.plusworks-around .pluse-after li h3 {
  background: var(--plusgreen);
  color: var(--plusblack);
}

.plusworks-around li figure{
    width: 980px;
    height: 653px;
}

.plusworks-around li img {
  display: block;
}

.pluse-before+.pluse-after {
  position: relative;
}

.pluse-before+.pluse-after:before {
  content: "\e154";
  font-family: 'Material Icons';
  display: block;
  transform: translateX(-10rem) rotate(90deg);
  font-size: 5rem;
  width: 4rem;
  height: 4rem;
  margin: 40px auto;
  color: var(--plusgray);
  line-height: 1;
}

/* スライドパーツ */
.plusworks-around .swiper-container-autoheight .swiper-wrapper {
  align-items: stretch;
}

.plusworks-parts {
  --plusblog-parts-height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 980px;
  margin: 30px 0;
}

.plusworks-parts .plusworks-next,
.plusworks-parts .plusworks-prev {
  width: var(--plusblog-parts-height);
  height: var(--plusblog-parts-height);
  margin-left: 10px;
  position: static;
  background: none;
}

.plusworks-parts .plusworks-next::after,
.plusworks-parts .plusworks-prev::after {
  display: none;
}

.plusworks-parts .plusworks-next::before,
.plusworks-parts .plusworks-prev::before {
  content: "→";
  display: grid;
  place-items: center;
  width: var(--plusblog-parts-height);
  height: var(--plusblog-parts-height);
  color: var(--plusblack);
  font-weight: var(--fw-b);
  line-height: 1.0;
  border-radius: 50%;
  border: 1px solid var(--plusblack);
}

.plusworks-parts .plusworks-prev::before {
  content: "←";
}

.plusworks-parts .plusworks-next:hover::before,
.plusworks-parts .plusworks-prev:hover::before {}

.plusworks-parts .plusworks-pagination {
  width: auto;
  height: var(--plusblog-parts-height);
  margin-right: 20px;
  font-size: 1.5rem;
  line-height: 1.0;
  position: static;
}

.plusworks-parts .plusworks-pagination .swiper-pagination-current {
  color: var(--plusblack);
}

.swiper-pagination-total {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .plusworks-around {
    margin: 30px 3%;
  }

  .plusworks-around li {
    width: 100%;
  }

  .plusworks-around li a {
    width: 100%;
  }
  
  .plusworks-around li figure{
    width: 100%;
    height: 66vw;
}

  .plusworks-around li h3 {
    font-size: 0.9rem;
    padding: 10px 5px;
  }

  .pluse-before+.pluse-after:before {
    transform: translateX(0) rotate(90deg);
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
    margin: 20px auto;
  }

  .plusworks-parts {
    margin: 30px 3%;
  }

  /* スライ.plus-outlineドパーツ */
  .plusworks-parts .plusworks-pagination {
    margin-right: 10px;
    font-size: 1.2rem;
  }
}

/**------------------------------ 
メッセージ
 ------------------------------**/
.plusworks-message {
  padding: 100px var(--calc980);
  background: var(--plusbg);
}

.plusworks-message dl dt {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 20px 0;
}

.plusworks-message .plus-outline {
  display: flex;
  justify-content: space-between;
  margin: 100px 0;
}

.plusworks-message .plus-outline .hA {
  --fz_hA: 1.6rem;
}

.plusworks-message .plus-outline table {
  width: 650px;
}

.plustable table th,
.plustable table td {
  padding: 15px;
  text-align: left;
}

.plustable table th {
  font-weight: 700;
  border-bottom: 2px solid var(--plusgray);
  width: 12rem;
}

.plustable table td {
  border-bottom: 2px solid var(--plusgray2);
}

.plusworks-message .moreA {
  margin: 100px auto 20px;
}

@media screen and (max-width:768px) {
  .plusworks-message {
    padding: 50px var(--calc980);
  }

  .plusworks-message dl dt {
    margin: 15px 0;
  }

  .plusworks-message .plus-outline {
    margin: 50px 0;
    flex-flow: column;
  }

  .plusworks-message .plus-outline .hA {
    --fz_hA: 1.3rem;
  }

  .plusworks-message .plus-outline table {
    width: 100%;
  }

  .plustable table th,
  .plustable table td {
    padding: 15px 0;
    text-align: left;
    font-size: 0.9rem;
  }

  .plustable table th {
    width: 35%;
  }

  .plusworks-message .moreA {
    margin: 50px auto 20px;
  }
}



/**------------------------------ 
記事繰り返し
 ------------------------------**/
.plusworks-loop {
  width: 980px;
  margin: 50px auto;
}

.plusworks-loop .moreA {
  margin: 30px auto 50px;
  max-width: 500px;
}

.plusworks-loop .fixnum {
  padding: 1px 0;
}

.plusworks-loop .fixnum figure {
  text-align: center;
}

.plusworks-loop .fixnum .moreA {
  margin: 30px auto 50px;
  max-width: 500px;
}

.plusworks-loop .fixnum .fw_b {
  margin: 30px 10%;
  font-weight: 500;
  font-size: 1.3rem;
}

.plusworks-loop .fixnum .C_text {
  border: 1px solid var(--plusgray);
  background: var(--plusbg);
  padding: 20px;
  margin: 20px 10%;
}

.plusworks-loop .fixnum .richtext {
  margin: 20px 0;
  padding: 1px 10%;
}

.entry-content{
    width:784px;
    margin: 50px auto;
    background: var(--plusbg);
    padding-bottom: 15px;
}

.entry-content dd {
    padding: 15px 30px 0 3em;
}

@media screen and (max-width:768px) {
  .plusworks-loop {
    width: 100%;
    margin: 40px auto;
  }

    .plusworks-loop .moreA{
       max-width: 90%; 
    }
    
  .plusworks-loop .fixnum .moreA {
    margin: 30px auto;
    max-width: 90%;
  }

  .plusworks-loop .fixnum .fw_b {
    margin: 20px 5%;
    font-weight: 500;
    font-size: 1.2rem;
  }

  .plusworks-loop .fixnum .C_text {
    padding: 15px;
    margin: 20px 5%;
  }

  .plusworks-loop .fixnum .richtext {
    margin: 15px 0;
    padding: 1px 5%;
  }
  
  .entry-content{
    width:90%;
    margin: 25px auto;
}
}


/**================================================== 
 お知らせ
================================================== **/

.plusnews-wrap {
  background-repeat: no-repeat;
  background-position: top 100px right var(--calc980);
  min-height: 557px;
}

.plusnews-list {
  margin: 50px 0 80px;
}

.plusnews-list li+li {
  margin-top: 30px;
}

.plusnews-list a {
  display: flex;
}

.plusnews-list a time {
  font-size: 1rem;
  width: 10em;
  margin-top: 2px;
  flex: none;
}

.plusnews-list a p {
  font-size: 18px;
}

@media screen and (max-width:768px) {
  .plusnews-wrap {
    background-position: top 20px right var(--calc980);
    background-size: 100px auto;
  }

  .plusnews-list {
    margin: 50px 0 40px;
  }

  .plusnews-list a {
    display: block;
  }

  .plusnews-list a time {
    font-size: 1rem;
    width: 100%;
    margin: 0 0 10px;
    flex: none;
  }
}

/**================================================== 
 よくあるご質問
================================================== **/
.plusfaq-posts {
  margin: 0 0 100px;
}

.plusfaq-posts dl {
  border: 1px solid var(--plusgray2);
  background: var(--plusbg);
  padding: 35px 85px;
  margin: 0 0 15px;
}

.plusfaq-posts dl dt {
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
}

.plusfaq-posts dl dt:before {
  content: "Q";
  display: block;
  position: absolute;
  top: 0;
  left: -50px;
  font-size: 1.6rem;
  line-height: 1;
}

.plusfaq-posts dl dt:after {
  content: "+";
  border: 1px solid var(--plusblack);
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: var(--tateCenter);
  right: -50px;
  text-align: center;
  line-height: 1.9rem;
  border-radius: 50px;
}

.plusfaq-posts dl.togglefaq dt:after {
  content: "－";
  background: var(--plusblack);
  color: var(--white);
}

.plusfaq-posts dl dd {
  display: none;
  margin-top: 30px;
}

@media screen and (max-width:768px) {
  .plusfaq-posts {
    margin: 0 0 50px;
  }

  .plusfaq-posts dl {
    padding: 15px 40px;
  }

  .plusfaq-posts dl dt {
    font-size: 1.0rem;
  }

  .plusfaq-posts dl dt:before {
    left: -1.2em;
    font-size: 1.6rem;
  }

  .plusfaq-posts dl dt:after {
    width: 1.5rem;
    height: 1.5rem;
    right: -1.8rem;
    line-height: 1.4rem;
  }

  .plusfaq-posts dl.togglefaq dt:after {
    content: "－";
    background: var(--plusblack);
    color: var(--white);
  }

}

/**================================================== 
 費用目安
================================================== **/

.pluscost-posts{
    padding: 100px 0 0;
}

.pluscost-posts .hA {
  --mb_hA: 1.2rem;
}

.pluscost-posts .plus-sec01:nth-child(1){
    padding-top:0;
}

.pluscost-posts ul {
  margin: 30px auto;
}

.pluscost-posts ul li h3.hC,
.pluscost-posts ul li h3.hD{
  text-align: center;
  font-size: 20px;
  padding: 10px;
  font-weight: normal;
  margin: 0;
}

.pluscost-posts ul li img {
  display: block;
}

.pluscost-posts table {
  width: 100%;
  margin: 60px auto;
}

.pluscost-posts i {
  border: 1px solid var(--plusblack);
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
}

.pluscost-posts>*:nth-child(even) {
  background: var(--plusbg);
}

@media screen and (max-width:768px) {
    .pluscost-posts{
        padding: 50px 0 0;
    }
    
  .pluscost-posts .hA {
    --mb_hA: 1.1rem;
  }

  .pluscost-posts ul {
    margin: 10px auto;
  }

  .pluscost-posts ul li {
    margin: 0;
  }

  .pluscost-posts ul li h3.hC,
  .pluscost-posts ul li h3.hD{
    font-size: 0.9rem;
    padding: 10px 5px;
  }

  .pluscost-posts ul li img {
    display: block;
  }

  .pluscost-posts table {
    width: 100%;
    margin: 15px auto 40px;
  }

  .pluscost-posts i {
    min-width: 150px;
    font-size: 0.9em;
  }

}

/**================================================== 
 コンセプト＆デザイン
================================================== **/

.plusdesign-wrap {}

.plusdesign-wrap>figure {
  margin: 40px 0 50px;
}

.plusdesign-wrap>figure img {
  width: 100%;
}

.plusdesign-list {
  margin: 40px auto;
}

.plusdesign-list>* {
  margin-bottom: 40px;
}

.plusdesign-list .hB {
  font-size: 1.1rem;
  margin: 15px 0;
}

@media screen and (max-width:768px) {
  .plusdesign-wrap {}

  .plusdesign-wrap>figure {
    margin: 30px 0;
  }

  .plusdesign-wrap>figure img {
    width: 100%;
  }

  .plusdesign-list {
    margin: 15px auto;
  }

  .plusdesign-list figure img {
    width: 100%;
  }

  .plusdesign-list>* {
    margin-bottom: 30px;
  }

  .plusdesign-list .hB {
    font-size: 1.1rem;
    margin: 15px 0;
  }
}

/**================================================== 
 サービス紹介
================================================== **/
.pluservice-wrap {}


.pluservice-title {
  text-align: center;
  font-size: 3.1rem;
  font-weight: 500;
}

.pluservice-title small {
  display: block;
  font-size: 1.2rem;
  margin-top: 30px;
  letter-spacing: 0.1rem;
}

.pluservice-waku {
  width: 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--plusgray);
  background: var(--plusbg);
  padding: 30px;
  margin: 60px auto;
  mix-blend-mode: multiply;
}

.pluservice-waku p {
  margin: 0 40px 0 0;
}


.pluservice-list .h-text-img {
  margin: 120px auto;
}

.pluservice-list .h-text-img:nth-child(odd) {
  flex-flow: row-reverse;
}

.pluservice-list .h-text-img>div {
  padding: 0 5%;
}

.pluservice-list figure {
  width: 55%;
  text-align: center;
  flex: none;
  position: relative;
}

.pluservice-list .h-text-img small {
  font-family: 'Josefin Sans', sans-serif;
}

.pluservice-wrap h3+.plusdesign-list {
  margin: 0;
}

.pluservice-about {}

.plusabout-list {
  margin: 60px auto;
}

.plusabout-list li {
  margin: 0 0 20px;
}

.plusabout-list .hB {
  --fz_hB: 1.1rem;
  margin-bottom: 20px;
}

@media screen and (max-width:768px) {
  .pluservice-list .h-text-img {
    margin: 50px auto;
    flex-flow: column-reverse;
  }

  .pluservice-list .h-text-img.reverse {
    flex-flow: column;
  }

  .pluservice-list figure {
    width: 100%;
    text-align: center;
    flex: none;
    position: relative;
  }

  .pluservice-title {
    font-size: 1.8rem;
  }

  .pluservice-title small {
    display: block;
    font-size: 1.1rem;
    max-width: 90vw;
    margin-right: auto;
    margin-left: auto;
  }

  .pluservice-waku {
    width: 90%;
    padding: 25px 15px;
    margin: 30px auto;
    flex-flow: column;
  }

  .pluservice-waku p {
    margin: 0 0 20px;
  }

  .pluservice-waku .moreA {
    width: 100%;
  }

  .pluservice-list .h-text-img {
    margin: 30px auto;
  }

  .pluservice-list .h-text-img:nth-child(odd) {
    flex-flow: column-reverse;
  }

  .pluservice-list .h-text-img>div {
    padding: 0 5%;
  }

  .pluservice-list .h-text-img figure {
    max-width: 100%;
    width: 100%;
    text-align: center;
    flex: none;
    position: relative;
  }

  .pluservice-list .h-text-img small {
    font-family: 'Josefin Sans', sans-serif;
  }

  .pluservice-wrap h3+.plusdesign-list {
    margin: 0;
  }

  .pluservice-about {}

  .plusabout-list {
    margin: 30px auto;
  }

  .plusabout-list li {
    margin: 0 0 20px;
  }

  .plusabout-list .hB {
    --fz_hB: 1.1rem;
    margin-bottom: 20px;
  }

}

/**================================================== 
 店舗
================================================== **/
.plussoudan-wrap .figure {
  margin: 50px auto 10px;
}

.plussoudan-wrap .plusdesign-list {
  margin: 0;
}

.plussoudan-waku {
  width: 980px;
  display: flex;
  justify-content: flex-start;
  border: 1px solid var(--plusgray);
  background: var(--plusbg);
  padding: 30px;
  margin: 60px auto;
}
.plussoudan-waku:hover{
   opacity: 0.8;
}

.plussoudan-waku p {
  margin: 0 0 0 40px;
}

.plussoudan-waku p b {
  font-size: 1.1rem;
}

.plussoudan-waku span {
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--plusgray);
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  padding: 15px 50px;
  line-height: 1;
}

.plusstaff-wrap .h-text-img {
  margin: 0 0 100px;
}

.plusstaff-wrap .h-text-img figure {
  width: 55%;
  text-align: right;
}

.plusstaff-list {
  background: var(--white);
  padding: 0 0 20px;
  margin: 40px 0 0;
}

.plusstaff-list .name {
  margin: 10px 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--plusgray);
  padding: 0 0 10px;
}

.plusstaff-list .name dt {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.plusstaff-list p {
  padding: 0 15px;
}

.plus-greeting {
  margin: 140px 0 0;
}

.plus-greeting .h-text-img {
  align-items: flex-end;
}

.plus-greeting .h-text-img figure {
  width: 300px;
  padding: 0 20px;
}

.plus-greeting .h-text-img .hA{
    letter-spacing: 0;
}

.plus-access .hA {
  --mb_hA: 80px;
}

.plus-access table {
  width: 100%;
  margin-bottom: 50px;
}

.plus-access .moreA {
  margin-top: 30px;
}

.plusmap {
  margin: 100px auto 30px;
}

.plusmap iframe {
  width: 100%;
  height: 450px;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  .plussoudan-wrap .figure {
    margin: 40px auto 10px;
  }

  .plussoudan-wrap .plusdesign-list {
    margin: 0;
  }

  .plussoudan-waku {
    width: 100%;
    padding: 15px;
    margin: 20px auto;
    flex-flow: column;
  }

  .plussoudan-waku p {
    margin: 0;
  }

  .plussoudan-waku p b {
    font-size: 1.1rem;
  }

  .plussoudan-waku span {
    padding: 10px;
    line-height: 1;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    width: auto;
  }

  .plusstaff-wrap .h-text-img {
    margin: 0 0 50px;
  }

  .plusstaff-wrap .h-text-img figure {
    width: 100%;
  }

  .plusstaff-list {
    margin: 20px 0 0;
  }

  .plusstaff-list .name {
    margin: 10px 20px;
    font-weight: 500;
    border-bottom: 1px solid var(--plusgray);
    padding: 0 0 10px;
  }

  .plus-greeting {
    margin: 70px 0 0;
  }

  .plus-greeting .h-text-img {
    align-items: flex-end;
    margin: 0;
  }

  .plus-greeting .h-text-img figure {
    width: 180px;
    padding: 0;
    margin: 30px auto;
  }

  .plus-access .hA {
    --mb_hA: 40px;
  }

  .plus-access .moreA {
    margin-top: 30px;
  }

  .plusmap {
    margin: 50px auto 30px;
  }

  .plusmap iframe {
    height: 300px;
  }
}


/**================================================== 
 流れ
================================================== **/

.plus-flow {
  counter-reset: number 0;
  margin-bottom: 100px;
}

.plus-flow li {
  position: relative;
  padding: 1px 0 4rem 6rem;
  min-height: 5rem;
}

.plus-flow li:before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  display: block;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  font-size: 2rem;
  background: var(--plusgreen);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.plus-flow li:after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: var(--plusgreen);
  position: absolute;
  top: 0;
  left: 2rem;
  z-index: 2;
}

.plus-flow li:last-child:after {
  display: none;
}

.plus-flow .hB {
  font-size: 1.4rem;
  margin: 15px 0;
}

.plus-flow .hB .material-icons {
  font-size: 1.5em;
  color: var(--plusgray);
  vertical-align: middle;
  margin: 0 15px 0 0;
  line-height: 1;
}

.plus-flow .tel {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
}

.plus-flow .tel small {
  font-weight: normal;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}

.plus-flow a[href^="tel"],
.plus-flow .mail {
  display: flex;
  align-items: center;
  flex-flow: column;
  position: relative;
  border: 1px solid var(--plusgray);
  padding: 30px 20px 20px;
  text-align: center;
  margin: 40px 0 0;
}

.plus-flow .mail a {
  font-size: 1.2rem;
  font-weight: bold;
}

.plus-flow a[href^="tel"]:before {
  content: "\e325";
  font-family: 'Material Icons';
  display: inline-block;
  position: absolute;
  font-size: 3rem;
  top: -20px;
  left: 50%;
  background: var(--white);
  line-height: 1;
  transform: var(--yokoCenter);
}

.plus-flow .mail:before {
  content: "\f187";
  font-family: 'Material Icons';
  display: inline-block;
  position: absolute;
  font-size: 3rem;
  top: -25px;
  left: 50%;
  background: var(--white);
  line-height: 1;
  transform: var(--yokoCenter);
}

.plus-flow .mail .moreA {
  width: 95%;
  margin: 20px auto 0;
  font-size: 1rem;
}

.plusflow-waku {
  width: 100%;
  border: 1px solid var(--plusgray);
  background: var(--plusbg);
  padding: 20px;
  margin: 20px auto;
}

.plusflow-waku b {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

@media screen and (max-width:768px) {
  .plus-flow{
    margin-bottom: 40px;
  }
    
  .plus-flow li {
    padding: 1px 0 2rem 3rem;
    min-height: 3rem;
  }

  .plus-flow li:before {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.2rem;
  }

  .plus-flow li:after {
    width: 3px;
    left: 1.2rem;
  }

  .plus-flow .hB {
    font-size: 1.2rem;
    margin: 3px 0 10px;
  }

  .plus-flow .hB .material-icons {
    font-size: 1.8em;
    margin: 0 5px 0 0;
  }

  .plus-flow .tel {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .plus-flow a[href^="tel"],
  .plus-flow .mail {
    padding: 30px 5px 20px;
    font-size: 0.9rem;
  }


  .plus-flow .mail a {
    font-size: 0.9rem;
    font-weight: bold;
  }

  .plus-flow a[href^="tel"]:before {
    font-size: 2.5rem;
  }

  .plus-flow .mail:before {
    font-size: 2.5rem;
    top: -20px;
  }

  .plus-flow .mail .moreA {
    font-size: 0.9rem;
  }

  .plusflow-waku {
    padding: 15px;
    margin: 15px auto;
    font-size: 0.9rem;
  }

  .plusflow-waku b {
    font-size: 1.0rem;
  }
}


.plusprivacy ul {
  margin: 5px 0;
}

.plusprivacy ul ul {
  margin: 5px 0 5px 1.5em;
}

.plusprivacy ul li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

@media screen and (max-width:768px) {
.plusprivacy ul ul {
  margin: 5px 0 5px 0.5em;
}
.plusprivacy ul li {
  padding-left: 1em;
  text-indent: -1em;
}
}