@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	color: var(--txtcolor);
	letter-spacing: .04em;
	line-height: 1.5;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	position: relative;
	width: 100%;
    min-width: 1000px;
}
main {
	display: block;
}
a {
	text-decoration: none;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
*{
	box-sizing: border-box;
}
/* トップと後続でrootを分ける場合 */
/* :root {
	--txtcolor: #231815;
	--btncolor: #ed6103;
	--accentcolor: #f8a355;
	--bgcolor: #f9eedf;
	--myyellow: #fedb05;
	--myblue: #202a3e;
	--myblue2: #0053a6;
	--lightblue: #f7f9fa;	
	--white: #fff;
	--mygray:#cccccc;
	--mygray2:#757575;
	--mygray3:#ebebeb;
	--myred:#ab1313;
} */
/* 前のroot */
/* :root {
	--txtcolor: #231815;
	--btncolor: #fd6d31;
	--accentcolor: #f8a355;
	--bgcolor: #f9eedf;
	--myyellow: #fedb05;
	--mygray: #ebebeb;
	--myblue: #3f4e7a;
} */
:root {
	--txtcolor: #202a3e;
	--btncolor: #0053a6;
	--accentcolor: #0053a6;
	--bgcolor: #f7f9fa;
	--myblue: #3f4e7a;
	--myyellow: #fedb05;
	--white: #fff;
	--mygray:#ebebeb;
	--mygray2:#757575;
	--mygray3:#cccccc;
	--myred:#ab1313;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red {
	color: #e90010;
}
.rf {
	font-family: 'Roboto Condensed', sans-serif;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #ceccca;
	width: 90%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.4rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(/pc/img/common/s_arrow.svg) no-repeat right 10px center;
	background-size: auto 4px;
	padding: 8px 40px 8px 8px;
	border: 1px solid #ceccca;
	max-width: 12em;
}
select::-ms-expand {
	display: none;
}
::placeholder {
  color: var(--mygray3);
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #ceccca;
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 3px;
	margin-right: 8px;
}
input[type="checkbox"]:checked {
	background: var(--accentcolor);
	border: 1px solid var(--btncolor);
}
input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 14px;
	display: block;
	width: 7px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: '';
	display: block;
	position: absolute;
	left: 8px;
	top: 14px;
	width: 12px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 8px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray3);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray3);
	border-radius: 50%;
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--accentcolor);
	border-radius: 50%;
}
input[type="submit"] {
	width: 420px;
	background: var(--btncolor);
	color: #fff;
	padding: 20px;
	font-size: 1.8rem;
	text-align: center;
	font-family: 'Noto Sans JP';
	border-radius: 5px;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	background: var(--accentcolor);
	box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
}
#correctSubmit {
	width: 200px;
	padding: 8px;
	border: 2px solid #ceccca;
	margin-top: 20px;
	font-size: 1.6rem;
	background: var(--mygray3);
	color: var(--txtcolor);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn {
	width: 300px;
	margin: auto;
}
.btn a {
	display: block;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background: var(--btncolor);
	padding: 13px 10px;
	position: relative;
}
.btn a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: calc(50% + 1px);
    right: 15px;
    width: 5px;
    height: 1px;
    background: var(--white);
    transform: rotate(30deg);
    transition: all 0.3s ease 0s;
}
.btn a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 14px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease 0s;
}
.btn a:hover {
	opacity: .8;
}
.btn a:hover::after {
	right: 12px;
}
.btn a:hover::before {
	right: 12px;
}
/*------------------------
header
------------------------*/
#header {
	padding: 10px 0 15px;
	border-bottom: 1px solid var(--mygray);
}
#header .inner {
	width: 1000px;
	margin: auto;
}
@media screen and (max-width: 1200px) {
	#header .inner {
		width: max(90%, 980px);
	}
}
#header .inner .box {
    justify-content: space-between;
    margin-bottom: 14px;
}
#header .inner .box .logo-area .logo {
	display: block;
    width: 54px;
    margin-right: 5px;
}
#header .inner .box .logo-area .name span {
	display: block;
	line-height: 1.2;
}
#header .inner .box .logo-area .name .desc {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
#header .inner .box .logo-area .name .head {
    width: 392px;
}
#header .inner .right .top {
	justify-content: flex-end;
	margin-bottom: 5px;
}
#header .inner .right .top .sns-area {
	margin-right: 20px;
}
#header .inner .right .top .sns-area .icn.twitter a {
	background: var(--txtcolor);
	padding: 6px 8px;
	align-items:center;
	border-radius: 3px;
}
#header .inner .right .top .sns-area .icn.twitter a:hover {
	background: #1DA1F2;
}
#header .inner .right .top .sns-area .icn.twitter a img {
	width: 17px;
	margin-right: 3px;
}
#header .inner .right .top .sns-area .icn.twitter a span {
	display: block;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
}
/*#header .inner .right .top .sns-area {
	align-items: center;
	margin-right: 35px;
}
#header .inner .right .top .sns-area .icn {
	margin-left: 10px;
}
#header .inner .right .top .sns-area .icn.twitter {
	width: 22px;
	height: 18px;
}
#header .inner .right .top .sns-area .icn.instagram {
	width: 20px;
	height: 20px;
}
#header .inner .right .top .sns-area .icn.youtube {
	width: 24px;
	height: 17px;
}
#header .inner .right .top .sns-area .icn a:hover {
	opacity: .8;
}
*/#header .inner .box .right .sub-nav {
	justify-content: flex-end;
	font-size: 1.4rem;
}
#header .inner .right .sub-nav li {
	padding-left: 12px;
	position: relative;
}
#header .inner .right .sub-nav li:not(:last-of-type) {
    padding-right: 20px;
}
#header .sub-nav li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-bottom: 1px solid var(--btncolor);
	border-right: 1px solid var(--btncolor);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s ease 0s;
}
#header .sub-nav li a {
	display: inline-block;
}
#header .sub-nav li:hover::before  {
	left: 2px;
}
#header .sub-nav li a.upper {
	font-size: 12px;
}
#header .right .h-contact {
	align-items: center;
}
#header .right .h-contact .tel {
	margin-right: -3px;
}
#header .right .h-contact .tel p{
	font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.2rem;
	font-weight:normal;
    line-height: 1;
    padding-left: 23px;
    margin-right: 20px;
    background: url(/pc/img/common/icn_tel_black.svg) no-repeat left top 0px;
    background-size: 21px;
    color: var(--txtcolor);
    margin-bottom: -28px;
}
#header .right .h-contact .tel span {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
    font-size: 1.2rem;
    line-height: 1;
	color: var(--txtcolor);
}
#header .right .h-contact .mail a {
	display: block;
    padding: 11px 21px;
    font-size: 1.3rem;
    color: #fff;
    line-height: 1;
    background: var(--btncolor);
}
#header .right .h-contact .mail a::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 12px;
	background: url(/pc/img/common/icn_mail_w.svg) no-repeat left 100%/contain;
	margin-right: 5px;
}
#header .right .h-contact .mail a:hover {
	background: var(--txtcolor);
}
#header .nav-wrap {
	justify-content: space-between;
	align-items: center;
}
#header .nav-wrap .g-nav ul li a {
	display: block;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    padding: 3px 15px;
    position: relative;
    color: var(--txtcolor);
}
#header .nav-wrap .g-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 18px;
	width: calc(100% - 36px);
	height: 4px;
	background: var(--mygray2);
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .5s;
}
#header .nav-wrap .g-nav ul li a:hover::after {
	transform: scale(1, 1);
}
/*お気に入りリスト*/
#header .favorite-wrap {
    position: absolute;
	right: 0;
	top: 15px;
}
@media screen and (max-width: 1200px) {
	#header .favorite-wrap {
		position: absolute;
		right: 0;
		top: 130px;
	}
}
#header .favorite {
	font-weight: 500;
    position: relative;
    background: var(--btncolor);
	width: 100px;
	text-align: center;
}
#header .favorite span {
	color: var(--white);
    display: block;
    font-size: 1.4rem;
    background: url(/pc/img/common/icn_favorite_w.svg) no-repeat center top 18px;
    background-size: 20px;
    padding: 43px 0 10px 0;
}
#header .favorite .save-item_num {
	position: absolute;
    display: block;
    top: 9px;
    right: 24px;
    background: var(--txtcolor);
    padding: 3px 6px 4px;
    font-size: 1.3rem;
    color: #fff;
    line-height: 1;
    border-radius: 50vw;
}
/*------------------------
パンくず
------------------------*/
#breadcrumb {
    width: 1000px;
    margin: 20px auto;
    overflow: hidden;
}
#breadcrumb li {
	float: left;
	font-size: 1.2rem;
	line-height: 1;
	padding-right: 4px;
}
#breadcrumb li:not(:first-of-type)::before {
	content: ' > ';
}
#breadcrumb li a {
	display: inline-block;
	color: var(--txtcolor);
}
#breadcrumb li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid var(--txtcolor);
	margin: auto;
}
#breadcrumb li a:hover {
	opacity: 1;
}
#breadcrumb li a:hover::after {
	width: 100%;
}
/*------------------------
後続タイトル
------------------------*/
.page-ttl {
	width: 1000px;
	margin: 0 auto 40px;
	border: 1px solid var(--mygray);
	padding: 20px 30px;
}
.page-ttl .inner{
    width: 1000px;
    margin: 0 auto;
}
.page-ttl h1 {
	font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--txtcolor);
    letter-spacing: 0.04em;
}
/*------------------------
後続style
------------------------*/
.columun {
	width: 1000px;
	margin: 0 auto 90px;
	justify-content: space-between;
}
.columun .main-contents {
	width: 680px;
}
.columun .main-contents .head {
	font-size: 1.8rem;
	font-weight: bold;
	padding: 10px;
	letter-spacing: .02em;
	border-top: 3px solid var(--accentcolor);
}
.columun .sideber {
	width: 290px;
}
/*------------------------
サイドバー
------------------------*/
/*駅から探す*/
/* .side-station ul {
	border: 1px solid var(--accentcolor);
	border-radius: 8px;
}
.side-station ul li:not(:last-of-type) {
	border-bottom: 1px solid var(--accentcolor);
}
.side-station ul li a {
	display: block;
	padding: 15px;
	line-height: 1;
	position: relative;
}
.side-station ul li a::after {
	content: '';
	width: 4px;
	height: 4px;
	border-bottom: 1px solid var(--accentcolor);
	border-right: 1px solid var(--accentcolor);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	transition: all .3s ease 0s;
}
.side-station ul li a:hover {
	color: var(--btncolor);
}
.side-station ul li a:hover::after {
	border-bottom: 1px solid var(--btncolor);
	border-right: 1px solid var(--btncolor);
	right: 12px;
} */
/*line*/
.columun .sideber .side-line {
	background: url(/pc/img/common/bg_line.jpg) no-repeat bottom -50px left -12px,linear-gradient(#fdfdfd , #f2f2f2);
	background-size: 224px;
	padding: 20px 10px 12px 20px;
	margin-bottom: 7px;
	position: relative;
	box-shadow: 2px 2px 6px rgba(0,0,0,.04);
}
.columun .sideber .side-line .wrap {
	margin-bottom: 48px;
}
.columun .sideber .side-line .wrap .logo {
	width: 46px;
	margin-right: 10px;
}
.columun .sideber .side-line .wrap .txt {
	line-height: 1;
}
.columun .sideber .side-line .wrap .txt .sub {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 5px;
	color: var(--txtcolor);
}
.columun .sideber .side-line .wrap .txt h2 {
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: .1em;
	color: var(--txtcolor);
}
.columun .sideber .side-line .qr {
	width: 109px;
	border: 1px solid var(--mygray3);
	margin-left: 40px;
}
.columun .sideber .side-line .cont {
	position: absolute;
	bottom: 12px;
	right: 10px;
	width: 108px;
	height: 108px;
	border-radius: 50vw;
	background: #3acd01;
	padding: 25px 0 0 15px;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: .025em;
}
.columun .sideber .side-line .ashi:first-of-type {
	position: absolute;
	bottom: 10px;
	right: 80px;
	width: 20px;
	height: 20px;
	background: rgba(49,172,1,.41);
	border-radius: 50vw;
}
.columun .sideber .side-line .ashi:nth-of-type(2) {
	position: absolute;
	bottom: 100px;
	right: 12px;
	width: 30px;
	height: 30px;
	background: rgba(49,172,1,.41);
	border-radius: 50vw;
}
.columun .sideber .side-line .ashi:nth-of-type(3) {
	position: absolute;
	bottom: 88px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: rgba(49,172,1,.41);
	border-radius: 50vw;
}
/*物件リクエスト*/
.columun .sideber .side-contact {
	background: url(/pc/img/common/bg_request.jpg);
	margin-bottom: 20px;
	box-shadow: 2px 2px 6px rgba(0,0,0,.04);
	position: relative;
	overflow: hidden;
	border: 1px solid #927e4f;
    border-image: linear-gradient(to right, #927e4f 0%, #e5d4ab 100%);
    border-image-slice: 1;
}
.columun .sideber .side-contact a:hover {
	opacity: .8;
}
.columun .sideber .side-contact .txt {
	padding: 16px 20px;
}
.columun .sideber .side-contact .sub {
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .025em;
	margin-bottom: 8px;
}
.columun .sideber .side-contact .sub::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 14px;
	background: url(/pc/img/common/ashi_fuki.svg) no-repeat 100%/contain;
	padding-right: 10px;
	transform: rotateY(180deg) rotate(15deg); 
}
.columun .sideber .side-contact .sub::after {
	content: '';
	display: inline-block;
	width: 5px;
	height: 14px;
	background: url(/pc/img/common/ashi_fuki.svg) no-repeat 100%/contain;
	padding-left: 10px;
	transform: rotate(15deg); 
}
.columun .sideber .side-contact h2 {
	font-size: 2.6rem;
    line-height: 1;
    font-weight: 500;
}
.columun .sideber .side-contact .slide-wrap .img-area .img {
	width: 100px;
	margin-right: 1px;
}
.columun .sideber .side-contact .slide-wrap .img-area .img img {
	width: 100%;
	height: 72px;
	object-fit: cover;
}
.columun .sideber .side-contact .slide-wrap .img-area:first-child {
	animation: loop 90s -45s linear infinite;
}
.columun .sideber .side-contact .slide-wrap .img-area:last-child {
	animation: loop2 90s linear infinite;
}
@keyframes loop {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop2 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}
.columun .sideber .side-contact .woman {
	position: absolute;
	bottom: -5px;
	right: -14px;
	width: 128px;
}
/*人気のキーワード特集*/ 
.side-keyword {
	margin-bottom: 20px;
}
.side-keyword h2 {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
	position: relative;
	z-index: 100;
}
.side-keyword h2::before {
    position: absolute;
    top: -8px;
    left: 89px;
    transform: translateX(-50%);
    color: #e2e2e2;
    font-family: "Nunito Sans", sans-serif;
    font-size: 3.6rem;
    font-weight: 100;
    text-transform: uppercase;
    content: 'KEYWORD';
    z-index: -1;
}
.side-keyword ul li a {
	height: 56px;
	margin-bottom: 5px;
	background: url(/pc/img/common/pattern_bg.jpg);
	justify-content: space-between;
	align-items: center;
	color: var(--white);
}
.side-keyword ul li a:hover {
	opacity: 0.8;
}
.side-keyword ul li a .head {
	font-weight: bold;
	line-height: 1;
	padding: 0 15px;
	flex: 1;
}
.side-keyword ul li a .img {
	margin-right: -1px;
    width: 90px;
    height: 100%;
    clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0% 100%);
}
.side-keyword ul li a .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
/*------------------------
お知らせ
------------------------*/
.side-news {
	background-color: var(--mygray);
	margin-bottom: 20px;
}
.side-news h2 {
	font-weight: bold;
	line-height: 1;
	padding: 15px 15px 21px;
	position: relative;
	color: var(--txtcolor);
	border-bottom: 1px solid var(--white);
	z-index: 100;
}
.side-news h2::before {
    position: absolute;
    top: 11px;
    left: 121px;
    transform: translateX(-50%);
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 3.6rem;
    font-weight: 100;
    text-transform: uppercase;
    content: 'INFORMATION';
    z-index: -1;
}
.side-news .inner {
	padding: 5px 15px 15px;
}
.side-news ul {
	margin-bottom: 15px;
}
.side-news ul li a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--white);
}
.side-news ul li a .date {
	display: block;
	font-size: 1.2rem;
	line-height: 1;
	margin-bottom: 3px;
}
.side-news ul li a h3 {
	font-size: 1.5rem;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
.side-news ul li a:hover h3 {
	color: var(--btncolor);
}
/*バナー*/
.side-bnr {
	margin-bottom: 20px;
}
.side-bnr > div a {
	display: block;
	height: 130px;
}
.side-request a {
	background: url(/pc/img/common/bnr_side_request.jpg) no-repeat;
	position: relative;
	display: block;
	margin-bottom: 30px;
	height: 130px;
}
/* side-link */
.side-link{
	margin-bottom: 7px;
}
.side-link h2{
	color: var(--white);
}
.side-link a{
	border: 2px solid var(--txtcolor);
	transition: all .3s ease 0s;
	height: 98px;
}
.side-link a:hover{
	opacity: 0.8;
}
.bnr-brand a{
	display: block;
	background: linear-gradient(rgba(47, 47, 51, 0.4), rgba(47, 47, 51, 0.7)),url(/pc/img/common/side-brand.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.side-link h2{
	padding: 33px 0;
	text-align: center;
	font-size: 21px;
}
.side-link h2 .sub{
	font-size: 14px;
}
.bnr-buy a{
	display: block;
	background: linear-gradient(rgba(47, 47, 51, 0.4), rgba(47, 47, 51, 0.7)),url(/pc/img/common/side-buy.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}
.bnr-buy h2{
	padding: 15px 0;
}
.bnr-qa{
	margin-bottom: 20px;
}
.bnr-qa a{
	display: block;
	background: linear-gradient(rgba(47, 47, 51, 0.4), rgba(47, 47, 51, 0.7)),url(/pc/img/common/side-qa.jpg)no-repeat;
	background-size: cover;
	background-position: center;
}

/* 施設情報 */
.side-bnr .side-facility a {
    background: linear-gradient(rgba(47, 47, 51, 0.4), rgba(47, 47, 51, 0.4)),url(/pc/img/common/side_facility_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
	border:3px solid var(--txtcolor);
	position: relative;
}
.side-bnr .side-facility a::after {
    position: absolute;
    bottom: -22px;
    right: -105px;
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.5;
    font-family: "Nunito Sans", sans-serif;
    font-size: 5rem;
    font-weight: 100;
    text-transform: uppercase;
    content: 'FACILITY';
}
.side-bnr .side-facility h2 {
    padding: 5px 0px 8px 15px;
    font-size: 2.1rem;
    color: #fff;
    letter-spacing: .08em;
    background: var(--txtcolor);
    width: 121px;
    position: relative;
}
.side-bnr .side-facility h2::after {
	position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 0;
    right: -13px;
    border-style: solid;
    border-color: var(--txtcolor) transparent transparent transparent;
    border-width: 45px 13px 0px 0px;
}
.side-bnr .side-lifeline a {
	background: url(/pc/img/common/bnr_lifeline.jpg) no-repeat;
}
.side-bnr a:hover ,
.side-request a:hover {
	opacity: .7;
}
.side-request h2 {
	font-size: 2.1rem;
	font-weight: bold;
	text-align: right;
	letter-spacing: .08em;	
	padding: 83px 20px 0 0;
}
.side-request p {
	position: absolute;
	bottom: 27px;
	left: 22px;
	transform: rotate(-15deg);
	font-size: 1.2rem;
	line-height: 1.25;
	text-align: center;
	letter-spacing: -.075em;
}
.side-bnr .side-lifeline h2 {
	padding: 40px 20px 6px;
	font-size: 2.1rem;
	color: #fff;
	line-height: 1;
	letter-spacing: .08em;	
}
.side-bnr .side-lifeline p {
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.25;
	letter-spacing: .08em;
	padding-left: 20px;
}
.side-bnr .side-owner a {
	display: block;
	background: url(/pc/img/common/bnr_owner.jpg) no-repeat;
	width: 100%;
	height: 190px;
	position: relative;
}
.side-bnr .side-owner h2 {
	font-size: 1.9rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding-top: 6px;
}
.side-bnr .side-owner p {
	position: absolute;
	bottom: 39px;
	right: 25px;
	transform: rotate(-10deg);
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.19;
	letter-spacing: .05em;
}
/*会社概要*/
.side-company h2 {
	font-weight: bold;
	line-height: 1;
	padding: 15px;
	background: var(--txtcolor);
}
.side-company .inner {
	padding: 15px;
	background: var(--mygray);
}
.side-company .inner .img {
	margin-bottom: 10px;
}
.side-company .inner .address {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 5px;
	color: var(--txtcolor);
}
.side-company .inner .tel {
	margin-bottom: 10px;
	color: var(--txtcolor);
}
.side-company .inner .tel .no {
	display: block;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1;
    background: url(/pc/img/common/icn_tel_black.svg) no-repeat left;
    background-size: 24px auto;
    padding: 0 0px 4px 24px;
}
.side-company .inner .tel .time {
	display: block;
	font-size: 1.3rem;
	line-height: 1.25;
}
.sideber .btn {
	width: 100%;
}
.sideber .btn a {
	display: block;
	font-weight: bold;
	color: #fff;
	text-align: center;
	letter-spacing: .08em;
	background: var(--btncolor);
	padding: 10px;
	position: relative;
	box-sizing: border-box;
}
.sideber .line-wrapper .btn a {
    margin-bottom: 20px;
    background: #3acd01;
}
.sideber .btn a:hover {
	opacity: 0.8;
}
/*------------------------
追従お問い合わせ
------------------------*/
.bottom-contact {
	position: sticky;
    left: 0;
    right: 0;
    background: url(/pc/img/common/footer_btm_bg.png) no-repeat left;
	background-size: cover;
    padding: 20px 0 30px;
    z-index: 999;
}
.bottom-contact .inner {
	width: 1000px;
	margin: auto;
	justify-content: space-between;
	align-items: flex-end;
}
@media screen and (max-width: 1200px) {
.bottom-contact .inner {
		width: max(90%,980px);
	}
}
.bottom-contact .inner .text h2 {
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 7px;
	color:var(--white);
}
.bottom-contact .inner .text p {
	line-height: 1.3;
	font-size: 1.4rem;
	color:var(--white);
	font-weight: 300;
}
.bottom-contact .inner .contact-area {
	align-items: flex-end;
}
.bottom-contact .inner .contact-area .tel .no {
    display: block;
    font-size: 4.2rem;
    line-height: 1;
    background: url(/pc/img/common/icn_tel-w.svg) no-repeat left;
    background-size: 34px auto;
    padding: 0 0 6px 33px;
    color: var(--white);
}
.bottom-contact .inner .contact-area .tel .time {
	display: block;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--white);
	font-weight: 300;
}
.bottom-contact .inner .contact-area .mail {
	margin-left: 30px;
}
.bottom-contact .inner .contact-area .mail a {
	width: 268px;
	display: block;
	background: var(--btncolor);
	padding: 20px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	letter-spacing: .08em;
	color: var(--white);
}
.bottom-contact .inner .contact-area .mail a::before {
	content: '';
	display: inline-block;
	background: url(/pc/img/common/icn_mail_w.svg) no-repeat left;
	width: 18px;
	height: 14px;
	margin-right: 6px;
	vertical-align: -1px;
}
.bottom-contact .inner .contact-area .mail a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 1500px) {
	.bottom-contact .ashi {
		display: none;
	}
}
@media screen and (min-width: 1501px) {
	.bottom-contact .ashi {
		width: 204px;
		position: absolute;
		bottom: 0;
		right: 10px;
	}
}
/*------------------------
page-top
------------------------*/
.page-top {
    margin: auto;
    text-align: right;
    position: absolute;
    top: -92px;
    right: 0;
}
.page-top .inner {
	display: inline-block;
    width: 64px;
    height: 64px;
	border-radius: 50%;
}
.page-top .inner a {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--btncolor);
    position: relative;
    transition: all .3s ease 0s;
}
.page-top .inner a::before {
	content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    top: calc(50% + 2px);
    left: 50%;
    transition: all 0.8s ease 0s;
}
.page-top .inner a:hover {
	transform: translateY(3px);
}
/*------------------------
footer
------------------------*/
footer {
	margin-top: -25px;
}
footer .inner {
	width: 1000px;
	margin: auto;
	position: relative;
}
footer .b-special {
    background: url(/pc/img/common/footer_bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 0 20px;
}
footer .b-special .inner .item {
	margin-bottom: 40px;
}
footer .b-special .inner .item h2 {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	color: var(--txtcolor);
	font-size: 15px;
}
footer .b-special .inner .item h2::before {
    content: url(/pc/img/common/f_mark.svg);
    padding-right: 6px;
}
footer .b-special .inner .item ul {
	flex-wrap: wrap;
}
footer .b-special .item ul a {
	display: block;
    padding: 0 40px 12px 16px;
	position: relative;
	line-height: 1;
	font-size: 14px;
}
footer .b-special .brand ul a,footer .b-special .shinjuku-area ul a {
	display: block;
	padding: 0 14px 12px 16px;
	position: relative;
	line-height: 1;
}
footer .b-special .inner .item ul li a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--txtcolor);
	border-right: 1px solid var(--txtcolor);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: -11px;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s ease 0s;
}
footer .b-special .inner .item ul li a:hover::before {
	left: 2px;
}
footer .footer-navi {
	left: 2px;
	background-color: var(--txtcolor)
}
footer .inner nav {
	padding: 30px 0 15px;
}
footer .inner .bottom-menu {
	flex-wrap: wrap;
	margin-bottom: 12px;
}
footer .inner .bottom-menu li {
	margin-bottom: 15px;
}
footer .inner .bottom-menu li a {
	color: #fff;
	display: block;
	padding-right: 30px;
	line-height: 1;
	font-size: 15px;
}
footer .inner .bottom-menu li a:hover {
	opacity: .8;
}
footer .inner .bottom-menu li a:hover::after {
	width: 100%;
}
footer .inner .sns-logo{
    margin-bottom :15px;
}
footer .inner .sns-logo a {
    display: block;
    width: 104px;
    height: 40px;
    margin-right: 10px;
}
footer .inner .sns-logo a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
footer .inner .sns-logo a:hover {
	opacity: 0.8;
}
footer .inner .ex-link a{
	display: block;
    background-color: #00a0e9;
    padding: 8px 0px 8px 10px;
    width: 215px;
    transition: 0.3s all;
    position: relative;
}
footer .inner .ex-link a img{
    display: block;
    width: 170px;
}
footer .inner .ex-link a:hover{
	opacity: 0.8;
}
footer .inner .ex-link a::after{
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: url(/pc/img/common/icn_link.svg) no-repeat;
    background-size: contain;
    display: block;
    margin-right: 5px;
    top: 10px;
    right: 6px;
}
footer .copy {
	background: var(--txtcolor);
	padding: 20px;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	line-height: 1;
}

