@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', 'sans-serif','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size:16px;
	color: var(--black);
	line-height: 1.65;
	letter-spacing: .025em;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	min-width: 1200px;
}
body *, :before, :after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--black);
	display: block;
	transition: all 0.5s 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;
}
.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: #eb1c1c;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wf {
	font-family: 'Lato', sans-serif;
}
:root{
	--black: #231815;
	--red:#bc4d44;
	--blue:#8596b0;
	--bg-gray:#f5f5f5;
	--bg-red:#fcf6f5;
}
.image img{
	width: 100%;
	height: 100%;
}
.textarea{
	text-align: justify;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	font-family: 'Noto Sans JP', 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 #c9c9c9;
	width: 90%;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', sans-serif;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.6rem;
}
textarea {
	width: 90%;
	height: 10em;
	max-width: 560px;
}
select {
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 25px 10px 10px;
	border-radius: 3px;
	max-width: 12em;
	color: var(--black);
	border: 1px solid #c9c9c9;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff url(/koenji-mashita/pc/img/common/s_arrow.svg) no-repeat right 10px center;
	background-size: auto 4px;
	font-size: 14px;
	cursor: pointer;
}
label{
	display: block;    
	margin-bottom: 10px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: #c9c9c9;
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #c9c9c9;
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
}
input[type="checkbox"]:checked {
	background: var(--blue);
	border: 1px solid #c9c9c9;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 4px;
	top: 13px;
	display: block;
	content: "";
	width: 5px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 9px;
	top: 13px;
	content: "";
	width: 10px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"]{
	border: 1px solid #c9c9c9;
	-webkit-appearance: none;
	position: relative;
	margin-right: 7px;
	border-radius: 50vw;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	background: #fff;
}
input[type="radio"]:checked{
	background:#627877;
	border: 1px solid #c9c9c9;
}
input[type="radio"]:checked:after {
	display: block;
	position: absolute;
	left: 4px;
	top: 4px;
	content: '';
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50vw;
}
input[type="submit"] {
	display: block;
	width: 420px;
	margin: auto;
	padding: 20px;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: .002em;
	text-align: center;
	background: #fff;
	border: 1px solid var(--red);
	color: var(--red);
	transition: all 0.5s ease 0s;
	cursor: pointer;
}
input[type="submit"]:hover {
	background: var(--red);
	color: #fff;
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
	color: #fff;
	background: var(--black);
	position: relative;
	border: 1px solid var(--black);
}
.btn a::after{
	content: "";
	background: url(/koenji-mashita/pc/img/common/arrow_w.svg) no-repeat;
	background-size: contain;
	width: 10px;
	height: 12px;
	position: absolute;
	right: 30px;
}
.btn a:hover {
	background: #fff;
	color: var(--black);
}
.btn a:hover::after{
	background: url(/koenji-mashita/pc/img/common/arrow_b.svg) no-repeat;
	background-size: contain;
}

/*------------------------
header
------------------------*/
header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 110;
	transition: all .3s ease 0s;
	min-width: 1200px;
	background: #fff;
}
header.scrolled{
	background: #fff;
}
header .inner.flex-box {
	justify-content: space-between;
	align-items: center;
}
header .inner {
	margin: 0 110px 0 60px;
	height: 80px;
	position: relative;
}
header .inner .logo a {
	height: auto;
	width: 205px;
}
header.scrolled .inner .logo a{
	height: auto;
	position: unset;
	width: 180px;
	padding: unset;
}
header .contact.flex-box{
	justify-content: flex-end;
	margin-bottom: 15px;
}
header .main_menu{
	display: flex;    
	align-items: center;
}
header .main_menu .flex{
	display: flex;
	flex-direction: column;
    margin-right: 20px;
	text-align: end;
}
/*インスタ*/
header .main_menu .top-wrap {
	align-items: center;
	margin: 0 0 3px auto;
}
header .main_menu .top-wrap .insta-area {
	margin-right: 20px;
}
.insta-area .item {
	display: flex;
	align-items: center;
	margin-right: 15px;
}
.insta-area .txt {
	display: block;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	margin-right: 7px;    
	white-space: nowrap;
}
footer .insta-area .txt {
	color: #fff;
}
.insta-area{
	margin-left: 20px;
}
.insta-area .icn {
    width: 26px;
    height: 26px;
}
.insta-area .icn a {
	display: block;
}
.insta-area .icn a:hover {
	opacity: .6;
}
.insta-area .icn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* 言語 */
header .main_menu .lang-wrap{
	position: relative;
}
header .main_menu .lang-wrap .ttl{
	font-size: 14px;
	font-weight: bold;
	padding-right: 20px;
	cursor: pointer;
}
header .main_menu .lang-wrap .ttl:hover{
	color: var(--red);
}
header .main_menu .lang-wrap .ttl::after{
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 2px solid var(--red);
	border-left: 2px solid var(--red);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: -4px;
	bottom: 0;
	right: 0;
	margin: auto;
	transition: all .3s ease 0s;
}
header .main_menu .lang-wrap ul {
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 10;
	display: none;
}
header .main_menu .lang-wrap ul li a{
	padding: 8px 15px;
	width: 120px;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	background: var(--bg-gray);
	border-bottom: 1px solid var(--black);
	position: relative;
}
header .main_menu .lang-wrap ul li a::after{
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: 1px solid var(--black);
	border-left: 1px solid var(--black);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	transition: all .3s ease 0s;
}
header .main_menu .lang-wrap ul li a:hover{
	background: var(--black);
	color: #fff;
}
header .main_menu .lang-wrap ul li a:hover::after{
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}

/* ヘッターメニュー */
header .main_menu nav{
	display: flex;
	align-items: center;
}
header .main_menu .menu_list a{
    margin: 0 15px;
	font-size: 15px;
	font-weight: bold;
	display: block;
	letter-spacing: .06em;
	font-weight: 500;
	white-space: nowrap;
}
header .main_menu .menu_list li:last-child a{
	margin: 0 0 0 15px;
}
header .main_menu .menu_list a:hover{
	color: var(--red);
}
header .main_menu .btn a{
	background: var(--red);
	width: 180px;
	height: 45px;
	border: 1px solid var(--red);
	font-size: 16px;
}
@media screen and (min-width:768px) and (max-width:1350px) { 
	header .main_menu .btn a{
        width: 150px;
        font-size: 15px;
	}
	header .main_menu .menu_list a{
        margin: 0 10px;
        font-size: 14px;
	}
	header .main_menu .menu_list li:last-child a{
        margin: 0 0 0 10px;
        font-size: 14px;
}
}


header .main_menu .btn a::after{
	content: none;
}
header .main_menu .btn a::before{
	content: "";
	width: 20px;
	height: 13px;
	background: url(/koenji-mashita/pc/img/common/icon_mail_w.svg) center no-repeat;
	background-size: contain;
	margin-right: 8px;
	transition: all 0.5s ease 0s;
}
header .main_menu .btn a:hover{
	background: #fff;
	color: var(--red);
}
header .main_menu .btn a:hover::before{
	background: url(/koenji-mashita/pc/img/common/icon_mail_r.svg) center no-repeat;
	background-size: contain;
}

/*------------------------
後続ページタイトル
------------------------*/
#top-ttl {
	background: var(--bg-gray);
	position: relative;
}
#top-ttl::before{
	content: "";
	width: 200px;
	height: 200px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 10px;
}
#top-ttl::after{
	content: "";
	width: 200px;
	height: 200px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 10px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#top-ttl .page-ttl{	
	padding: 60px 0 70px;
	text-align: center;
}
#top-ttl .page-ttl h1 {
	color: var(--red);
	font-size: 50px;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: .8;
	position: relative;
	margin-bottom: 8px;
}
#top-ttl .page-ttl .sub{
	font-size: 20px;
	font-weight: 500;
}
/*------------------------
パンくず
------------------------*/
#breadcrumb {
	padding: 8px 0;
	overflow: hidden;
	z-index: 100;
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
#breadcrumb li {
	float: left;
}
#breadcrumb li a {
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
}
#breadcrumb li a:hover{
	color: var(--red);
}
#breadcrumb li::before {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	border-bottom: 1px solid var(--red);
	border-right: 1px solid var(--red);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: auto 12px 0 12px;
	vertical-align: 1px;
}
#breadcrumb li:first-child::before{
	content: none;
}

/*------------------------
section共通
------------------------*/
section .inner{
	width: 1000px;
	margin: 0 auto;
}
section .inner .ttl-wrap h2{
	color: var(--red);
	font-size: 40px;
	font-weight: bold;
	letter-spacing: .08em;
	line-height: .8;
	position: relative;
}
section .inner .ttl-wrap .sub{
	font-weight: 500;
	line-height: 1;
	padding-top: 10px;
}
section .inner .sub-text{
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 25px;
	letter-spacing: .07em;
}

/*------------------------
共通ACCESS
------------------------*/


/*------------------------
共通CONTACT
------------------------*/
#bottom-contact{
	background: url(/koenji-mashita/pc/img/common/img_contact.jpg) center no-repeat;
	background-size: cover;
	margin-bottom: 40px;
}
#bottom-contact .inner{
	padding: 60px 0 70px;
}
#bottom-contact .ttl-wrap{
	text-align: center;
	margin-bottom: 25px;
}
#bottom-contact .btn a{
	width: 320px;
	height: 60px;
	margin: 0 auto;
}
#bottom-contact .btn a::after{
	content: none;
}
#bottom-contact .btn a::before {
	content: "";
	width: 24px;
	height: 15px;
	background: url(/koenji-mashita/pc/img/common/icon_mail_w.svg) center no-repeat;
	background-size: contain;
	margin-right: 10px;
}
#bottom-contact .btn a:hover::before{
	background: url(/koenji-mashita/pc/img/common/icon_mail_b.svg) center no-repeat;
	background-size: contain;
}

/*------------------------
共通SNS
------------------------*/
#sns-wrap{
	padding: 60px 0 80px;
}
#sns-wrap .inner{
	display: flex;
	justify-content: space-between;
	background: var(--bg-gray);
	padding: 30px 40px;
}
#sns-wrap .inner .ttl-wrap h2{
	font-size: 30px;
	letter-spacing: .03em;
}

#sns-wrap .link-wrap{
	display: flex;
	align-items: center;
}
#sns-wrap .link-wrap .link a{
	width: 210px;
	height: 55px;
	display: flex;
	align-items: center;
	background: #000;
	color: #fff;
	padding: 0 20px;
	margin-left: 10px;
	font-size: 18px;
	font-weight: 500;
}
#sns-wrap .link-wrap .link a:hover{
	transform: translateY(-5px);
}
#sns-wrap .link-wrap .link .image{
	width: 30px;
	height: 30px;
	margin-right: 15px;
}
#sns-wrap .link-wrap .link .image img{
	object-fit: contain;
	margin: auto;
}

#sns-wrap .link-wrap .link.insta a{
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
#sns-wrap .link-wrap .link.facebook a{
	background: #0866ff;
}

/*------------------------
page_top
------------------------*/
#page-top {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	text-align: right;
	width: 72px;
	height: 72px;
	position: sticky;
	bottom: 100px;
	z-index: 100;
	opacity: 0;
	margin: 0 40px -40px auto;
}
#page-top.show {
	opacity: 1;
	visibility: visible;
}
#page-top a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	background: var(--red);
}
#page-top a:after {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}
#page-top a:hover{
	transform: translateY(-5px);
}

/*------------------------
footer
------------------------*/
footer .inner{
	width: 1000px;
	margin: 0 auto;
}

/* nav */
footer .n-area{
	background: #4f4644;
}
footer .n-area .inner{
	padding: 60px 0 80px;
}
footer .n-area .logo a{
	width: 180px;
	margin-bottom: 20px;
	display: block;
}
footer .n-area nav{
	display: flex;
	align-items: center;
}
footer .n-area nav ul li a {
	display: block;
	padding: 0px 15px;
	font-weight: 500;
	color: #fff;
	letter-spacing: .06em;
}
footer .n-area nav ul li:first-child a{
	padding: 0 15px 0 0;
}
footer .n-area nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid #fff;
	margin: auto;
}
footer .n-area nav ul li a:hover::after {
	width: 100%;
}

/* SNS */
footer .n-area .sns{
	display: flex;
	align-items: center;
}
footer .n-area .sns span a{
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-right: 10px;
}
footer .n-area .sns span img{
	object-fit: contain;
}
footer .n-area .sns span a:hover{
	transform: translateY(-5px);
}


/* copy */
footer .c-area {
	justify-content: space-between;
}
footer .c-area .left {
	font-size: 14px;
	line-height: 1;
}

/* 個人情報 */
footer .c-area{
	padding: 25px 0;
}
footer .c-area .privacy {
	display: block;
	margin-bottom: 10px;
}
footer .c-area .privacy a {
	display: inline-block;
	padding-left: 14px;
	position: relative;
}
footer .c-area .privacy a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--red);
	border-right: 1px solid var(--red);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s ease 0s;
}
footer .c-area .privacy a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid var(--red);
	margin: 5px auto 0;
}
footer .c-area .privacy a:hover::after {
	width: 100%;
}
footer .c-area .logo {
	width: 167px;
}

/*------------------------
error
------------------------*/
.error .contents{
	width: 800px;
	margin:  0 auto 50px;
}
.error .contents h2{
	font-size:2rem;
	margin-bottom:15px;
	padding-bottom:5px;
	line-height:1.35;
}
.error .contents li{
	font-size: 1.6rem;
}

/*------------------------
色指定
------------------------*/
.tag-col01{
	background: #bfe3f1;
	color: var(--block);
}
.tag-col02{
	background: #d6f1bf;
	color: var(--block);
}
.tag-col03{
	background: #f1eebf;
	color: var(--block);
}
.tag-col04{
	background: #e2d4f5;
	color: var(--block);
}
.tag-col05{
	background: #f5d4e1;
	color: var(--block);
}
.tag-col06{
	background: #fff;
	color: var(--block);
}
.tag.none,.num.none{
	color: #fff;
	background: var(--y_green);
}