@charset "UTF-8";

:root{
	/*使用しない場合も必ず設定*/
	--i_bg_color: #fff;	/*背景色*/
	--i_txt_color: #555;	/*テキスト*/
	--i_main_color: #a8271f;	/*メイン*/
	--i_sub_color: #c1994b;	/*アクセント*/
	--i_sub2_color: #edeae1;	/*薄い色*/
	--i_btn_color: var(--i_main_color);	/*ボタン*/
	--i_btn_hover_color: #804542;	/*ボタンhover*/
	--i_btn_txt_color: #fff;	/*ボタンテキスト*/
	--i_btn_hover_txt_color: #fff;	/*ボタンテキスト*/
	--i_shadow_color: rgba(0,0,0,0.13);	/*シャドウ*/
	--i_border_color: rgba(0,0,0,0.13);	/*ボーダー*/
	--i_noimg_bg_color: #fbf9f9;	/*画像無し*/
}

/*------------------------------------------------------------------*/
/*-----------------------------base---------------------------------*/
/*------------------------------------------------------------------*/

html{
	font-size: 62.5%;
}
body{
	font-size: 1.65rem;
	line-height: 1.9;
	letter-spacing: 0.02rem;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	color: var(--i_txt_color);
}
body, main{
	background: var(--i_bg_color);
}

@media screen and (max-width: 850px){
	html{
		font-size: 55%;
	}
	body{
		letter-spacing: 0px;
	}
}

a{
	outline: 0;
	text-decoration: none;
	color: var(--i_txt_color);
}
section[style*=" color:"]:not([style*=" color: inherit"]) a,
div[style*=" color:"]:not([style*=" color: inherit"]) a{
	color: inherit;
}

/*composite_boxの最大高さとトリミングの起点*/
/*基本はjsにより各カラム中から最大の画角に設定*/
.composite_box01 .inner_item_img img{
	object-position: 50% 50%;
	font-family: 'object-position: 50% 50%;';
}

@media screen and (max-width: 850px){
	#sidebar{
		border: 5px solid var(--i_shadow_color);
	}
}

.no_img{
	background: var(--i_noimg_bg_color, rgba(200,200,200,0.3));
}

/*----------------------------loader----------------------------*/

#load div:nth-of-type(1){
	background: #841c17;
}
#load .loader,
.popup .loader{
	border: 1px solid #b48f47;/*★*/
}
#load .loader,
#load .loader::before,
.popup .loader,
.popup .loader::before{
	border-top-color: #b48f47 !important;
}
#load .loader::before,
#load .loader::after,
.popup .loader::before,
.popup .loader::after{/*★*-1*/
	left: -1px;
	top: -1px;
}

#load img{
	max-width: 120px;
}

/*----------------------------header----------------------------*/

header{
	font-size: 1.4rem;
}
body.scrolled header{
	background: rgba(255,255,255,0.95);
	box-shadow: 0 3px 5px var(--i_shadow_color);
}

header h1{
	line-height: 1.5;
	font-size: 1.2rem;
	letter-spacing: 0rem;
	font-weight: normal;
	opacity: 0.7;
}
header:not(.width_full) .wraper,
header#pattern2:not(.width_full) nav{
	width: 90%;
	max-width: 1600px;
}
body.scrolled header .logo{
	padding: 20px 0 !important;
}
header .logo,
header .logo a{
	max-width: 210px;
}
body.scrolled header .logo a img{

}
header .wraper > .inner{
	min-height: 45px!important;
}

header .header_contents .header_col1{
	/* ▼水平方向レイアウト */
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	/* ▼垂直方向レイアウト */
	/*flex-direction: column;
	align-items: flex-end;*/
}
header .header_contents .header_col1 .tel{
	position: relative;
	font-size: 26px;
	line-height: 1;
	padding-left: 26px;
	font-weight: bold;
	font-weight: normal;
}
header .tel svg,
header .btn .translate a svg,
header .burger li.sp_translate a svg,
header .header_sns li svg{
	fill: #555!important;
}
header .header_contents .header_sns li svg{
	fill: #b48f47;
}
header .sp_menu a div span,
header .sp_menu a div:before,
header .sp_menu a div:after{
	background: var(--i_txt_color);
}
header .header_contents .header_col1 .tel svg{
	width: 22px;
	height: 22px;
	top: calc(50% - 10px);
	left: 0;
}
header .header_contents .header_col1 .btn>a{
	display: block;
	text-align: center;
	min-width: 150px;
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
	padding: 5px 10px;
}
header .btn>a:hover{
	opacity: 1;
	background: var(--i_btn_hover_color);
	color: var(--i_btn_hover_txt_color);
}

header .header_contents .header_col1 .btn .translate a svg{
	max-width: 74%;
	max-height: 74%;
	margin: 13% auto 0;
}
header .header_contents .header_col1 .btn .translate a:hover{
	opacity: 0.8;
}

header nav *{
	color: var(--i_txt_color);
}
header#pattern1 na *v,
header#pattern3 nav *{
	color: var(--i_btn_txt_color);
}
header nav ul.nav_1st{
	width: 95%;
	max-width: 1200px;/*任意*/
}
header nav ul.nav_1st>li{
	box-sizing: border-box;
	position: relative;
}
header nav ul.nav_1st>li:after{/*罫線*/
	content: "";
	width: 1px;
	height: 40%;
	position: absolute;
	top: 30%;
	left: 0;
	border-left: 1px solid rgba(0,0,0,0.13);
}
header nav ul.nav_1st>li:last-child:before{/*罫線*/
	content: "";
	display: block;
	width: 1px;
	height: 40%;
	position: absolute;
	top: 30%;
	right: 0;
	border-left: 1px solid rgba(0,0,0,0.13);
}
body.scrolled header nav ul.nav_1st>li:last-child:before,
body.scrolled header nav ul.nav_1st>li:after{
	border-color: rgba(0,0,0,0.13);
}

header nav ul.nav_1st>li>a{
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	position: relative;
	padding-left: 1vw;
	padding-right: 1vw;
}
header nav ul.nav_1st>li>a span,
body.scrolled header nav ul.nav_1st > li > a span{
	/*ナビの高さはline-heightで調整*/
	line-height: 3;/* マージン普通選択時 */
	/*color: #fff !important; ナビ背景色設定時 */
	transition: .2s ease-in-out;
}

header#pattern3 nav ul.nav_1st>li>a span{
	line-height:3;
}
body.margin header nav ul.nav_1st>li>a span{
	line-height: 4;/* マージン広い選択時 */
}

header nav ul.nav_1st>li:hover>a span{
	color: var(--i_main_color);
}
header nav ul.nav_2nd{
	padding-top: 20px;
}
header nav ul.nav_1st>li:hover ul.nav_2nd{
	padding-top: 10px;
}
header nav ul.nav_2nd>li{
	background: rgba(180,143,71,0.9);
	border-bottom: 1px solid var(--i_border_color);
	box-shadow: 2px 2px 5px var(--i_shadow_color);
}
header nav ul.nav_2nd>li:nth-last-of-type(1){
	border-bottom: none;
}
header nav ul.nav_2nd li a{
	padding: 10px 20px;
	font-weight:  normal;
	font-size: 1.4rem;
	color: #fff!important;
}
body.scrolled header nav ul.nav_2nd li a{
	color: #fff!important;
}
header nav ul.nav_2nd li a span{
	color: #fff!important;
}
header nav ul.nav_2nd>li>a{
	padding-right: 30px;
}
header nav ul.nav_2nd>li>a:after{
	height: 5px;
	width: 5px;
	transform: rotate(-45deg);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	top: calc(50% - 2.5px);
	right: 20px;
}
header nav ul.nav_3rd{
	padding-left: 20px;
}
header nav ul.nav_3nd li a{
	padding: 5px 20px;
}
header nav ul.nav_3rd>li>a:after{
	height: 1px;
	width: 4px;
	background: #fff;
	top: calc(50% - 0.5px);
	left: 5px;
}

@media screen and (max-width: 900px){
	body.scrolled header .logo{
		padding: 10px 0 !important;
	}
	header.open:after,
	header .header_contents{
		background: rgba(2251,251,251,0.95);
	}
	header .burger li.sp_translate a svg{
		height: 28px;
		width: 28px;
		margin: 10% auto;
	}
	header .header_sns,
	header .header_contents .header_col1,
	header .header_contents .header_col2{
		border-top: 1px solid rgba(255,255,255,0.2);
		border-bottom: 1px solid var(--i_border_color);
	}
	header .header_sns{
		border-bottom: none;
	}
	header .header_sns:empty,
	header .header_contents .header_col1:empty,
	header .header_contents .header_col2:empty{
		border: none;
	}
	header .header_contents .header_col1 .tel,
	header .header_contents .header_col1 .btn{
		float: none;
	}
	header .header_contents .header_col2{
		display: block !important;
	}
	header nav{
		border-bottom: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st{
		border-bottom: 1px solid rgba(255,255,255,0.2);
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st li{
		border-bottom: 1px solid var(--i_border_color);
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	header nav ul.nav_1st>li:before,
	header nav ul.nav_1st>li:after{
		display: none !important;
	}
	header nav ul.nav_1st>li i:before,
	header nav ul.nav_1st>li i:after{
		background: var(--i_main_color);
	}
	header nav ul.nav_2nd{
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_2nd>li{
		box-shadow: none;
	}
	header nav ul.nav_2nd li a,
	header nav ul.nav_2nd li a span{
		color: #555!important;
	}
	header nav ul.nav_3rd{
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_3rd>li:nth-last-of-type(1){
		border-bottom: none;
	}
	body.scrolled header nav ul.nav_2nd li a{
		color: var(--i_txt_color)!important;
	}
	header:not(.width_full) .wraper{
		width: calc(100% - 30px);
	}	
	header#pattern2:not(.width_full) nav{
		width: 100%;
	}
	header .logo,
	header .logo a,
	header .logo a img{
		max-width: 120px;
	}
	header nav ul.nav_2nd>li>a:after{
		border-color: var(--i_main_color);
	}
	header nav ul.nav_3rd>li>a:after{
		background: var(--i_main_color);
	}
}

/*----------------------------余白設定----------------------------*/

main>section:first-child:not([class*="pt"]),
main>div:first-child:not([class*="pt"]),
div[class*='pb']+.contents_related,
section[class*='pb']+.contents_related,
div[class*='pb']+.contents_related_tags,
section[class*='pb']+.contents_related_tags{
	padding-top: 60px;
}
main>section:not([class*="pt"]),
main>div:not([class*="pt"]),
aside>section:not([class*="pt"]),
aside>div:not([class*="pt"]){
	padding-bottom: 60px;
}
@media screen and (max-width: 800px){
	main>section:first-child:not([class*="pt"]),
	main>div:first-child:not([class*="pt"]),
	div[class*='pb']+.contents_related,
	section[class*='pb']+.contents_related,
	div[class*='pb']+.contents_related_tags,
	section[class*='pb']+.contents_related_tags{
		padding-top: 40px;
	}
	main>section:not([class*="pt"]),
	main>div:not([class*="pt"]),
	aside>section:not([class*="pt"]),
	aside>div:not([class*="pt"]){
		padding-bottom: 40px;
	}
}

/*----------------------------見出し----------------------------*/

section .content_wrapper>.heading:first-child:last-child{
	margin-bottom: 0;
}

/*--*/

section:not([class*="pt"]) .content_wrapper>.heading:first-child:last-child{
	margin-bottom: 0;
}

.heading.block_header_1,
.heading.block_header_6{
	margin-bottom: 30px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
}
.heading.block_header_1 p,
.heading.block_header_6 .h{
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1.4;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 10px;
	padding-top: 0;
	letter-spacing: 0.3rem;

}
.heading.block_header_1 p:before,
.heading.block_header_6 .h:before{
	display: block;
	content:"";
	background: var(--i_main_color);
	width: 60px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 25px);
}
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:before,
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:before,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:before,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:before{
	background: #fff;
}
.align-left.heading.block_header_1 p:before,
.align-left.heading.block_header_6 .h:before{
	left: 0;
}
.align-right.heading.block_header_1 p:before,
.align-right.heading.block_header_6 .h:before{
	left: auto;
	right: 0;
}
.heading.block_header_1 .h,
.heading.block_header_6 p{
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
}
.index .heading.block_header_1 p,
.index .heading.block_header_6 .h{
	font-size: 4.1rem;
}


@media screen and (max-width: 800px){
	.heading.block_header_1,
	.heading.block_header_6{
		margin-bottom: 20px;
	}
	.heading.block_header_1 p,
	.heading.block_header_6 .h{
		font-size: 2.5rem;
	}
	.heading.block_header_1 .h,
	.heading.block_header_6 p{
		font-size: 1.5rem;
	}
	.index .heading.block_header_1 p,
	.index .heading.block_header_6 .h{
		font-size: 2.8rem;
	}
}

/*--*/

.heading.block_header_2{
	margin-bottom: 30px;
}

.heading.block_header_2 .h{
	display: inline-block;
	font-weight: bold;
	font-size: 2.1rem;
	line-height: 1.5;
	padding-left: 30px;
	padding-bottom: 5px;
	margin-bottom :5px;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.13);
}
.heading.block_header_2 .h:before{
	display: block;
	content:'';
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	top: 0px;
	left: 0;
	background: url("/common/upload_data/atelier-cocochicom/image/bg_h2.png") no-repeat;
	background-size: contain;
}
.heading.block_header_2 p{
	font-size: 1.4rem;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h::before {
	top: 3px;
}


@media screen and (max-width: 800px){
	.heading.block_header_2{
		margin-bottom: 20px;
	}
	.heading.block_header_2 .h{
		font-size: 2.0rem;
	}
	.heading.block_header_2 .h:before{
		top: 6px;
	}
	.heading.block_header_2 p{
		font-size: 1.3rem;
	}
}

/*--*/

.heading.block_header_3{
	overflow: hidden;
	background: url("/common/upload_data/atelier-cocochicom/image/bg_ptn.jpg"), var(--i_main_color);
	padding: 10px 10px 10px 30px;
	margin-bottom: 30px;
}
.heading.block_header_3:before{
	display: block;
	content: "";
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	position: absolute;
	top: 3px;
	left: 3px;
	border: 1px solid rgba(255,255,255,0.5);
}
.heading.block_header_3 .h{
	font-weight: bold;
	font-size: 1.9rem;
	line-height: 1.5;
	color: #fff;
}
.heading.block_header_3 p{
	font-size: 1.4rem;
	color: #fff;
}
@media screen and (max-width: 800px){
	.heading.block_header_3{
		padding: 5px 5px 5px 30px;
		margin-bottom: 20px;
	}
	.heading.block_header_3 .h{
		font-size: 2.0rem;
	}
	.heading.block_header_3 p{
		font-size: 1.3rem;
	}
}

/*--*/

.heading.block_header_4{
	margin-bottom: 15px;
}
.heading.block_header_4:before{
	display: none;
}
.heading.block_header_4 .h{
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 5px;
	color: #b48f47;
}
.heading.block_header_4 p{
	font-size: 1.4rem;
}

/*--*/

.heading.block_header_5{
	margin-bottom: 15px;
}
.heading.block_header_5 .h{
	display: inline;
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.heading.block_header_5 p{
	display: inline;
	font-size: 1.4rem;
}
.heading.block_header_5 p:before{
	content: "　/　";
}

/*----------------------------背景パララックス----------------------------*/

.parallax{
	box-shadow: 0 0 5px var(--i_shadow_color) inset;
}

/*----------------------------ボタン----------------------------*/

.contents_btn01 a,
.glossary_archive .content_wrapper .heading.block_header_2 a:after,
main form .submit span,
main form .submit span input{
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
	padding: 3px 25px;
	transition: .3s ease-in-out;
	overflow: visible!important;
	border-radius: 0;
	font-family: inherit;
}
main form .submit span{
	position: relative;
}
.contents_btn01 a:before,
main form .submit span:before{
	display: block;
	content:"";
	width: 0px;
	height: 1px;
	background: #db7771;
	position: absolute;
	top: calc(50% - .5px);
	left: calc(100% - 25px);
	transition: .3s cubic-bezier(.41,.14,.83,.58);
	transform-origin: left;
	z-index: 1;
}
.contents_btn01 a:hover:before,
main form .submit span:hover:before{
	width: 50px;
}
.contents_btn01 a:hover,
main form .submit span input:hover{
	transform: translateX(5px);
}
.glossary_archive .content_wrapper .heading.block_header_2 a:hover:after{
	background: var(--i_btn_hover_color);
}
.contents_btn01 a[target=_blank] span:before,
.contents_btn01 a[target=_blank] span:after{
	border: 1px solid #fff;
}
.contents_btn01 a:hover[target=_blank] span:before,
.contents_btn01 a:hover[target=_blank] span:after{
	border: 1px solid #fff;
}
.contents_btn01 a span{
	text-align: center;
}
#fixbtn .contents_btn01 a{
	background: #b48f47;
	padding: 3px 0;
}
#fixbtn .contents_btn01 a:before{
	display: none;
}
#fixbtn .contents_btn01 a:hover{
	transform: translateX(0);
	background: #8f7137;
}

/*--------------------------------MV--------------------------------*/

#mv_outer{
}
#mv{
	width: 100%;
	height: calc(90vh - 125px);
	max-height: 1400px;
	min-height: 370px;
}
#mv:after{
	/*スライドに重ねる色*/
	pointer-events: none;
	background: rgba(0,0,0,0.3);
}
#mv:before{
	display: block;
	content: "";
	width: 80%;
	height: 50px;
	max-width: 1200px;
	background: url("/common/upload_data/atelier-cocochicom/image/shadow.png") no-repeat top center/100% auto, #fff;
	position: absolute;
	bottom: 0;
	left: calc(50% - 600px);
	z-index: 6;
}

#mv .mv_mov{
	background: #000;
}
#mv .mv_mov iframe{
	opacity: 0.7;
}

#mv .mv_text{
	bottom: 70px;
	height: calc(100% - 140px);
	width: 90%;
	left: 5%;
	align-items: center;/*垂直方向中央*/
}
#mv .mv_text div{
	padding: 0 60px;
}
#mv .mv_text h2{
	font-size: 9.5rem !important;/* ←max-font-size的意味合いで使用する。動作はjs。*/
	line-height: 1;
	letter-spacing: -0.3rem;
	font-weight: 400;
	color: #fff;
}
#mv .mv_text p{
	font-size: 2.2rem;
	color: #fff;
	padding-top: 10px;
}
/*#mv .mv_scroll{
    width: 200px;
    height: auto;
    position: absolute;
    bottom: 10px;
	left: calc(50% - 100px);
	text-align: center;
}
#mv .mv_scroll a {
    text-indent: -999999px;
    font-size: 0px;
	padding-top: 80px;
	color: #777;
}
#mv .mv_scroll a::before {
    content: "";
    display: block;
    width: 1px;
	height: 50px;
    position: absolute;
    left: calc(50% - 0.5px);
	top: 0;
	background-color: rgba(180,180,180,0.9);
	transform: rotate(0deg);
	-webkit-animation-name: ScrollDown;
	animation-name: ScrollDown;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
@-webkit-keyframes ScrollDown{
    0% {
        -webkit-transform: translateY(-100.5%);
        transform: translateY(-100.5%);
    }
    100% {
        -webkit-transform: translateY(100.5%);
        transform: translateY(100.5%);
    }
}
@keyframes ScrollDown{
    0% {
        -webkit-transform: translateY(-100.5%);
        transform: translateY(-100.5%);
    }
    100% {
        -webkit-transform: translateY(100.5%);
        transform: translateY(100.5%);
    }
}*/
#mv .mv_pointer{
	width: 5px;
	height:100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	right: 20px !important;
	left:auto;
	bottom:0;
}
#mv .mv_pointer li{
	width: 10px !important;
	height: 30px;
	margin: 0;
}
#mv .mv_pointer li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
	border: 1px solid rgba(255,255,255,0.7);
	margin-top: 10px;
	transform: rotate(45deg);
}
#mv .mv_pointer li.current:before{
	background: #fff;
	border-color: #fff;
}
#mv .mv_arrow{
	display: none;
}
@media screen and (max-width: 1500px){
	#mv:before{
		left: 10%;
	}
}
@media screen and (max-width: 1400px){
	#mv .mv_text div{
		padding: 0;
	}
	#mv .mv_text h2{
		font-size: 8rem!important;
	}
}

@media screen and (max-width: 100vh){
	#mv{
		height: 65vh;
	}
}
@media screen and (max-width: 900px){
	#mv .mv_text h2{
		font-size: 6.4rem!important;
	}
	#mv:before{
		height: 30px;
	}
/*	#mv .mv_scroll a::before {
		height: 30px;
	}
	#mv .mv_scroll{
		bottom: -10px;
	}*/
}

@media screen and (max-width: 600px){
	#mv .mv_text div{
		padding-top: 0!important;
	}
	#mv .mv_text h2{
		font-size: 9vw !important;
	}
}

/*--------------------------------IV--------------------------------*/

#lv{
	background: #000;
	height: 300px;
	padding-bottom: 0;
	width: 100%;
}
header.over+#lv_outer #lv{
	min-height: 300px;
}
#lv div{
	background-color: #fff;
	opacity: 0.5;
}
#lv p{
	left: 0;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px 0
}
#lv p span{
	display: inline-block;
	font-size: 4.5rem;
	color: #fff;
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.1rem;
	padding: 0 60px;
	position: relative;
	word-break: break-all;
	line-height: 1.2;
	text-shadow: 1px 1px 0 var(--i_shadow_color);
}
#lv p span:before,
#lv p span:after{
	content: "";
	display: none;
	width: 40px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: calc(50% + 2px);
	left: 0;
	box-shadow: 1px 1px 0 var(--i_shadow_color);
}
#lv p span:after{
	left: auto;
	right: 0;
}
@media screen and (max-width: 900px){
	#lv{
		padding-top: 0!important;
		height: 170px;
	}
	#lv p span{
		padding: 0 15px;
	}
}

@media screen and (max-width: 800px){
	#lv p span{
		font-size: 3.0rem;
	}
}
@media screen and (max-width: 400px){
	#lv_outer{
		padding-bottom: 20px;
	}
}


/*----------------------------パンくず----------------------------*/

#pan{
	border-bottom: 1px solid var(--i_border_color);
	background: var(--i_sub2_color);
	padding: 0;
}
#pan li{
	font-size: 1.2rem;
	padding: 5px 0 3px 30px;
}
#pan li:before,
#pan li:after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
#pan li:after{
	border-top: 1px solid var(--i_border_color);
	border-right: 1px solid var(--i_border_color);
	left: -15px;
}

/*----------------------------other parts----------------------------*/

/*--リスト--*/

.default_ul li:before{
	border-top: 1px solid var(--i_main_color);
	border-right: 1px solid var(--i_main_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: 8px;
	left: 0;
}

/*--アーカイブページ カテゴリー--*/

.category1 li a{
	border: 1px solid var(--i_border_color);
	border-radius: 50px;
}
.category1 li a:hover,
.category1 li a.current{
	color: var(--i_btn_txt_color);
	background: var(--i_btn_color);
	border-color: transparent;
}

/*--sidebar--*/

#sidebar section,
#sidebar>div{
	border-bottom: 1px solid var(--i_border_color);
}
#sidebar h2{
	text-align: left;
	font-size: 2.2rem;
}
#sidebar .sidebar_tag li{
	border: 1px solid var(--i_border_color);
	background: var(--i_sub2_color);
}
#sidebar .sidebar_list a{
	position: relative;
	padding-left: 15px;
}
#sidebar .sidebar_list a:before{
	content: "";
	display: block;
	position: absolute;
	border-top: 1px solid var(--i_sub_color);
	border-right: 1px solid var(--i_sub_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: calc(50% - 3px);
	left: 0;
}

/*----------------------------pager----------------------------*/

/*アーカイブページページャー*/
.pager li:not(.arrow) a:hover,
.pager li:not(.arrow).current a{
	background: var(--i_main_color);
	border-color: var(--i_main_color);
	color: #fff;
}
.pager li a{
	height: 45px;
	width: 45px;
	border: 1px solid #ccc;
	border-radius: 0px;
	line-height: 45px;
}

/*----------------------------pager2----------------------------*/

/*シングルページページャー*/
.pager2 li a{
	background: var(--i_main_color);
	border-color: var(--i_main_color);
	color: #fff;
	line-height: 45px;
	padding: 0 15px;
}

/*----------------------------popup----------------------------*/

/*画像ポップアップ拡大表示*/
.popup{
	background: rgba(255,255,255,0.7);
}
.popclose{
	/*text-shadow: 1px 1px 1px var(--i_border_color);*/
}
.poptxt{
	font-size: 1.2rem;
}

/*----------------------------footer----------------------------*/

#fixbtn{
	margin-bottom: 30px;
	font-size: 1.55rem;
}
#fixbtn .fixbtnwrap{
	background:url("/common/upload_data/atelier-cocochicom/image/shadow.png") no-repeat center top, #92211a;
	border-bottom: 1px solid rgba(0,0,0,0.13);
}
/*▼ TEL、予約ボタンない = 追従フッター有効でない場合*/
#fixbtn.no .fixbtnwrap{
	background-color: transparent;
}
#fixbtn .fixbtntel,
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span{
	color: #fff;
}
#fixbtn .fixbtntel{
	border-right: 1px solid rgba(0,0,0,0.1);
}
#fixbtn .fixbtntel:nth-last-of-type(2){
	border-right: none;
}
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span{
	font-size: 3.4rem;
	line-height: 1;
	margin-right: 10px;
	font-weight: 400;
}
#fixbtn .fixbtntel a:last-child,
#fixbtn .fixbtntel span:last-child{
	margin-right: 0;
}
#fixbtn .fixbtntel svg{
	width: 22px;
	height: 22px;
	margin-right: 5px;
	fill: #fff;
}

#fixbtn .contents_btn01{
	border-left: 1px solid rgba(255,255,255,0.1);
}
#fixbtn .contents_btn01:nth-of-type(1){
	border-left: none;
}
#fixbtn .contents_btn01:nth-of-type(1){
	/*▼ TELない場合中央揃え*/
	margin-left: auto;
	margin-right: auto;
}
#fixbtn .contents_btn01 span{
	text-align: center;
	padding: 7px 15px;
}

/*▼ TEL、予約ボタンない = 追従フッター有効でない場合*/
#fixbtn #scrolltop:nth-of-type(1){
	margin-left: auto;
	/*▼ 右揃え*/
	margin-right: 0;
	/*▼ 中央揃え*/
	margin-right: auto;
}
#fixbtn #scrolltop a{
	height: 40px;
	width: 40px;
}
#fixbtn #scrolltop a:before{
	top: 17px;
	left: 3px;
	transform: rotate(45deg);
	transition: 0.2s ease-in-out;
	border-left: 2px solid rgba(255,255,255,0.5);
	border-top: 2px solid rgba(255,255,255,0.5);
	width: 30px;
	height: 30px;
}
#fixbtn #scrolltop a:hover:before{
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
}
/*▼ TEL、予約ボタンない = 追従フッター有効でない場合*/
#fixbtn.no #scrolltop a:before{
	border-color: rgba(120,120,120,0.6) ;
}
#fixbtn.no #scrolltop a:hover:before{
	border-left: 2px solid rgba(120,120,120,1);
	border-top: 2px solid rgba(120,120,120,1);
}

@media screen and (max-width: 600px){
	#fixbtn{
		margin-bottom: 0;
	}
	#fixbtn,
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span{
		font-size: 1.7rem;
	}
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span{
		font-size: 2rem;
	}
	#fixbtn .fixbtntel svg{
		width: 18px;
		height: 18px;
	}
	#fixbtn .contents_btn01 a{
		padding: 0;
	}
	#fixbtn .contents_btn01 a:before{
		display: none;
	}
	#fixbtn .contents_btn01 a span{
		padding: 5px 15px;
	}
}

footer{
	background:linear-gradient( to top, rgba(141,31,25,0) 0%, rgb(141,31,25) 60%, rgb(141,31,25) 100%), url("/common/upload_data/atelier-cocochicom/image/bg_ptn1.jpg"), #92211a;
	padding: 0;
	color: #fff;
	text-align: center;
	font-size: 1.35rem;
}
footer a{
	color: #fff;
}
footer nav li{
	letter-spacing: 0.2rem;
	padding: 5px 0;
}
footer .logo{
	width: 160px;
}
footer .sns{
	margin: 0 auto 30px;
}
footer .sns svg{
	width: 40px;
	height: 40px;
	padding: 10px 10px;
	fill: rgba(255,255,255,0.25);
	transition: 0.2s ease-in-out;
}
footer .sns a:hover svg{
	opacity: 1;
	fill: #972a23;
}
#cp{
	padding: 15px 0;
	font-size: 1.1rem;
	letter-spacing: 0.1rem;
	color: rgba(255,255,255,0.5);
}
@media screen and (max-width: 600px){
	footer{
		padding: 0 0 20px;
	}
}
@media screen and (max-width: 600px){
	footer nav ul li{
		border-top: 1px solid rgba(255,255,255,0.05);
		border-bottom: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(2n){
		border-right: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(2n+1){
		border-left: 1px solid rgba(255,255,255,0.05);
	}
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(2),
	footer nav ul li:nth-of-type(3):nth-last-of-type(2n-1){
		border-top: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(1),
	footer nav ul li:nth-last-of-type(2){
		border-bottom: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul {
		border-bottom: 1px solid rgba(255,255,255,0.05);
	}
	footer .logo{
		width: 120px;
		margin-bottom: 15px;
	}
}

/*------------------------------------------------------------------*/
/*----------------------------widget--------------------------------*/
/*------------------------------------------------------------------*/

/*----------------------------contents_faq01----------------------------*/

.contents_faq01 dt{
	padding-left: 5rem;
	margin-bottom: 25px;
	min-height: 35px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
 
}
.contents_faq01 dd{
	padding-left: 7.3rem;
	margin-bottom: 15px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
}
.contents_faq01 dt:before,
.contents_faq01 dd:before{
	width: 4rem;
	height: 4rem;
	font-size: 2.6rem;
	line-height: 1.4;
	padding-left: 1rem;
	box-sizing: border-box;
	font-weight: 400;
	color: #fff;
	background: var(--i_main_color);
}
.contents_faq01 dt:after,
.contents_faq01 dd:after{
	display: block;
	content: "";
	width: calc(4rem - 6px);
	height: calc(4rem - 6px);
	border: 1px solid rgba(255,255,255,0.5);
	background: transparent;

	position: absolute;
	top: 2px;
	left: 2px;
}
.contents_faq01 dd:after{
	left: calc(2.3rem + 2px);
}
.contents_faq01 dd:before{
	color: #fff;
	background: #555;
}
.contents_faq01 dd::before {
	padding-top: 2px;
	padding-left: 11px !important;
}
.contents_faq01 dt::before {
	padding-top: 1px;
}
@media screen and (max-width: 500px){
	.contents_faq01 dt {
		margin-bottom: 0px;
	}
}

/*----------------------------contents_related_tags----------------------------*/

.contents_related_tags .inner_item{
	border: 1px solid var(--i_border_color);
}
.contents_related_tags .inner_item a:hover{
	background: var(--i_sub2_color);
	opacity: 0.8;
}

/*----------------------------block_table_1----------------------------*/

.block_table_1 table thead{
	background: var(--i_sub2_color);
}
.block_table_1 table thead th,
.block_table_1 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_1 table th{
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_1 table td{
	background-color: #fff;
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_1 table thead td{
	text-align: center;
	font-weight: bold;
}

/*----------------------------block_table_2,5,6----------------------------*/

.block_table_2 table thead,
.block_table_2 table thead th,
.block_table_2 table thead td,
.block_table_5 table thead,
.block_table_5 table thead th,
.block_table_5 table thead td,
.block_table_6 table thead,
.block_table_6 table thead th,
.block_table_6 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_2 table th,
.block_table_5 table th,
.block_table_6 table th{
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_2 table td,
.block_table_5 table td,
.block_table_6 table td{
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_2 table thead td,
.block_table_5 table thead td,
.block_table_6 table thead td{
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 500px){
	.block_table_2 table{
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_2 table th{
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_2 table td{
		border-top: 1px dotted var(--i_border_color);
	}
}

/*----------------------------block_table_3----------------------------*/

.block_table_3 table thead,
.block_table_3 table thead th,
.block_table_3 table thead td,
.block_table_7 table thead,
.block_table_7 table thead th,
.block_table_7 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_3 table th,
.block_table_7 table th{
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_3 table td,
.block_table_7 table td{
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
@media screen and (max-width: 500px){
	.block_table_3 table{
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_3 table th{
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_3 table td{
		border-top: 1px dotted var(--i_border_color);
	}
}
.block_table_3_item li{
	vertical-align: middle;
}

/*----------------------------gallery_archive / gallery_single----------------------------*/

.gallery_archive .inner_item a,
.gallery_single .inner_item a{
	transition: 0.2s ease-in-out;
	background-color: transparent;
}
.gallery_archive .inner_item a:hover,
.gallery_single .inner_item a:hover{
	background-color: #000;
}
.gallery_archive .inner_item a:hover img,
.gallery_single .inner_item a:hover img{
	opacity: 0.8;
}
.gallery_archive .inner_item a:after,
.gallery_single .inner_item a:after{
	color: #fff;
}
.gallery_archive .inner_item p span,
.gallery_single .inner_item p span{
	color: #fff;
}
.gallery_single_slider .slick-arrow::before{
	border-color: var(--i_btn_color);
}

/*----------------------------widget_gallery01----------------------------*/

.widget_gallery01 .slick-arrow{
	height: 40px;
	width: 30px;
	top: calc(50% - 20px);
	left: 0;
}
.widget_gallery01 .slick-next{
	left: auto;
	right: 0;
}

/*----------------------------gallery hover効果----------------------------*/

main .widget_gallery01 a,
main .gallery_archive .inner_item a,
main .gallery_single .inner_item a{
	overflow: hidden;
}
main .widget_gallery01 a img,
main .gallery_archive .inner_item a img,
main .gallery_single .inner_item a img{
	/*▼ 位置調整 美容院などの人物の場合は50% 30%あたり*/
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
	backface-visibility: visible;
	transition: 1s ease-out !important;
	transition-property: transform opacity !important;
	transform: scale(1.001,1.001);
}
main .widget_gallery01 a:hover img,
main .gallery_archive .inner_item a:hover img,
main .gallery_single .inner_item a:hover img{
	transform: scale(1.1,1.1);
	opacity: 0.8;
}

/*----------------------------news_archive----------------------------*/

.news_archive article .inner_item_img:hover{
	opacity: 0.8;
}
.news_archive article .entry_meta{
	font-size: 1.3rem;
}

.add_design5 #primary article .inner_item_img a i:nth-last-child(1){
	background-size: 50%!important;
}
#sidebar .widget_news02 li a div span i{
	background-size: 50%!important;
}

/*----------------------------widget_coupon----------------------------*/

.widget_coupon .content_wrapper{
	max-width: 900px !important;
}
.widget_coupon .inner_item>div,
.widget_coupon .inner_item>dl{
	font-size: 1.4rem;
	line-height: 1.7;
}

/*----------------------------widget_form----------------------------*/

.widget_form .privacypolicy{
	border: 1px solid var(--i_border_color);
}
.widget_form form{
	border-top: 1px solid var(--i_border_color);
}
.widget_form form dl{
	border-bottom: 1px solid var(--i_border_color);
}
.widget_form form dt,
.widget_form form dd{
	vertical-align: middle;
}
.widget_form form dt span{
	color: var(--i_sub2_color);
	color: #D90000;
	font-size: 1.2rem;
	font-weight: bold;

}
@media screen and (max-width: 770px){
	.widget_form form dt{
		border-bottom: 1px dotted var(--i_border_color);
	}
}
main form dl input,
main form textarea{
	background: var(--i_sub2_color);
	border: 1px solid transparent;
	letter-spacing: 1px;
}
main form dl input:focus,
main form textarea:focus{
	background: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
}
main form .submit input{
	letter-spacing: 3px;
	border: none;
}
main form select{
	background: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	letter-spacing: 1px;
}
main form input[type=radio] + label,
main form input[type=checkbox] + label{
	padding: 0 15px 0 22px;
}
main form input[type=radio] + label::before,
main form input[type=checkbox] + label::before{
	top: 50%;
	left: 0;
	width: 17px;
	height: 17px;
	margin-top: -9px;
	background: var(--i_sub2_color);
}
main form input[type=radio] + label::before{
	border-radius: 30px;
}
main form input[type=radio]:checked + label::after,
main form input[type=checkbox]:checked + label::after{
	left: 4px;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	background: var(--i_sub_color);
}
main form input[type=radio]:checked + label::after{
	border-radius: 100%;
}
main form input[type=checkbox]:checked + label::after{
}

/*----------------------------widget_link----------------------------*/

.widget_link .inner_item_txt{
	font-size: 2rem;
}

/*----------------------------widget_lp01----------------------------*/

.widget_lp01 li a:hover{
	opacity: 0.8;
}
.widget_lp01 li a div span{
	background-size: 60% auto;
}

/*----------------------------widget_menu01----------------------------*/

.widget_menu01 h3{
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.widget_menu01 li dd{
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_menu02----------------------------*/

.widget_menu02 h3{
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
}
.widget_menu02 li>p{
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_news02----------------------------*/

.block_news_2 li a{
	padding: 30px;
}
.block_news_2 li a:hover:after{
	border-width: 15px;
}

/*----------------------------widget_staff01----------------------------*/

.widget_staff01 .inner_item a:hover *{
	opacity: 0.8;
}
.widget_staff01 .sub{
	font-size: 1.2rem;
	font-weight: bold;
}

/*----------------------------widget_tel----------------------------*/

.widget_tel .inner_item_tel a,
.widget_tel .inner_item_tel span{
	font-size: 3.6rem;
	letter-spacing: 0.1rem;
	line-height: 1.1;
	padding: 20px;
}
@media screen and (max-width: 450px){
	.widget_tel .inner_item_tel a,
	.widget_tel .inner_item_tel span{
		font-size: 2.6rem;
		padding: 15px 10px;
	}
	.widget_tel .inner_item_tel img{
		margin: 0 5px -2px 0;
	}
	.widget_tel .inner_item_tel svg{
		height: 16px;
		width: 16px;
	}
}

/*------------------glossary_archive------------------------*/

.glossary_archive .content_wrapper article{
	margin-bottom: 30px;
	padding-bottom: 30px;/*★1*/
}
.glossary_archive .content_wrapper .heading.block_header_2{
	margin-bottom: 10px;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h{
	font-size: 1.8rem;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:after{
	content: "View More";
	position: absolute;
	width: 150px;
	bottom: 32px;/*★1 + 数px*/
	right: 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: normal;
	padding: 3px 10px;
}
.glossary_archive .content_wrapper article .entry_body{
	padding-right: 180px;
}

@media screen and (max-width: 1224px){
	.glossary_archive .content_wrapper .heading.block_header_2 a:after{
		bottom: calc(32px + 1.8rem);/*★1 + 数px*/
	}
}
@media screen and (max-width: 650px){
	.glossary_archive .content_wrapper article{
		padding-bottom: 60px;
	}
	.glossary_archive .content_wrapper .heading.block_header_2 a:after{
		bottom: 30px;/*★1*/
	}
	.glossary_archive .content_wrapper article .entry_body{
		padding-right: 0;
	}
}

/*------------------recruit------------------------*/

.recruit_archive.add_design1 .recruitment_list .inner_item{
	background: rgba(255,255,255,.8);
}

.index main>section:first-child +div.composite_box01 .heading.block_header_4 .h,
.index main>section:first-child +div+div.composite_box01 .heading.block_header_4 .h{
	font-size: 2.5rem;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 800px){
	.index main>section:first-child +div.composite_box01 .heading.block_header_4 .h,
	.index main>section:first-child +div+div.composite_box01 .heading.block_header_4 .h{
		font-size: 2.1rem;
	}
}

/*------画像×nの追加デザイン用の記述追加------*/

.composite_box01.block_images_7 .inner_item{
	margin-top: 1px !important;
	margin-bottom: 1px !important;
}
.block_images_7 .inner_item_txt{
	background: rgba(0,0,0,0.7);
}

/*------------------etc------------------------*/

.index .contents_box01 .inner_item_txt .heading.block_header_2 .h{
	font-size: 2.8rem!important;
	padding-left: 38px; 
}
@media screen and (max-width: 800px){
	.index .contents_box01 .inner_item_txt .heading.block_header_2 .h{
		font-size: 2.3rem!important;
		padding-left: 30px; 
	}
}
/*------------------------------------------------
追記：css
------------------------------------------------*/ 
:root {
  --i_txt_color: #545045; /*テキスト*/
  --i_txt2_color: #d198ad;	/*テキスト02*/
  --i_main_color: #e5c1cd; /*メイン*/
  --i_sub_color: #eedcb3; /*アクセント*/
  --i_sub2_color: #fdf1f3; /*薄い色*/
  --i_btn_color: #fdf1f3; /*ボタン*/
  --i_btn_txt_color: #545045; /*ボタンテキスト*/
  --i_btn_hover_color: #fff; /*ボタンhover*/
  --i_btn_hover_txt_color: #e5c1cd; /*ボタンhoverテキスト*/
  --i_border_color: #e5c1cd; /*ブログのライン*/
}
/*--------------------------------------------------------------
load
--------------------------------------------------------------*/
#load div:nth-of-type(1){
  background: var(--i_main_color);
}
#load .loader, .popup .loader {
    border: 1px solid var(--i_bg_color);
}
#load .loader, #load .loader::before, .popup .loader, .popup .loader::before{
	border-top-color: var(--i_bg_color) !important;
}
/*--------------------------------------------------------------
body
--------------------------------------------------------------*/
#mv .mv_text h2, #mv .mv_text p, body #main h2, body #main h3, .contents_btn01 a span,.widget_form form .submit input, header .header_contents .header_col1 .tel a, header .header_contents .header_col1 .tel span, header .header_contents .header_col2 .add, header#pattern1 h1, header#pattern2 h1, header#pattern4 h1, .widget_form form .submit input,.category1 li a, .pager2 li a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}
.heading.block_header_1 p, .heading.block_header_6 .h {
    font-family: 'Zen Maru Gothic', sans-serif !important;
    font-weight: 500;
}
body #main, body #main h4, body #main h5, body #main h6, body #main p, body footer span, #fixbtn .fixbtntel a, #fixbtn .fixbtntel p, body footer nav a, header nav ul.nav_1st li a span, #cp, #lv p span, #pan li {
  font-family: 'Noto Sans JP', sans-serif;
}
.heading.block_header_2 .h, .index .contents_box01 .inner_item_txt .heading.block_header_2 .h{
  border-bottom: none;
  padding-left: 12px;
  padding-bottom: 0;
  font-size: 2.4rem;
  color: var(--i_txt2_color);
}
.heading.block_header_2 .h:before{
  background: var(--i_main_color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: auto;
  bottom: 7px;
  left: 0px;	
}
.heading.block_header_2 a,.heading.block_header_4 .h{
  color: var(--i_txt2_color);
}
.heading.block_header_3 {
    padding: 10px !important;
}
/*-------btn--------*/
.contents_btn01 a, .glossary_archive .content_wrapper .heading.block_header_2 a:after, main form .submit span, main form .submit span input {
    border-radius: 80px;
    padding: 0;
	background: transparent;
    color: var(--i_txt_color);
}
.contents_btn01 a, main form .submit span {
    position: relative;
}
.contents_btn01 a:hover:before, main form .submit span:hover:before{
	opacity: 1;
}
.contents_btn01 a:before, main form .submit span:before {
    content: "";
    position: absolute;
    background: url(/common/upload_data/atelier-cocochicom/image/20221116153027.png);
    top: 0;
    left: auto;
    width: 50px;
    right: 20px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
    transform: none;
    transform-origin: 0;
    transition: .3s ease-in-out;
}
.contents_btn01 a:hover:before, main form .submit span:hover:before {
    width: 40px;
}
.contents_btn01 a:after, main form .submit span:after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--i_sub2_color);
    border-radius: 80px;
    transform-origin: left top;
    z-index: -2;
    transition: all 0.3s ease;
    opacity: 1;
}
#top-news+ .block_news_1 .contents_btn01 a:after,#top-flow+ section .contents_btn01 a:after, #top-flow02+ section .contents_btn01 a:after {
    width: 0%;
    opacity: 0;
}
#top-news+ .block_news_1 .contents_btn01 a:hover:after{
	background-color: var(--i_sub2_color);
	opacity: 1;
    width: 100%;
}
#top-flow+ section .contents_btn01 a:hover:after, #top-flow02+ section .contents_btn01 a:hover:after {
    background-color: #fff;
    opacity: 1;
    width: 100%;
}
.inner_item_txt p a, .inner_item_txt_before a, .inner_item_txt_after a {
    text-underline-offset: 5px;
}
.pager2 li a {
    border-radius: 80px;
    border: 2px solid var(--i_sub2_color);
    background-color: var(--i_sub2_color);
    color: var(--i_txt_color);
}
.pager2 li a:hover {
    background: var(--i_bg_color);
}
.category1 li a:hover, .category1 li a.current{
	color: var(--i_txt_color);
    background: var(--i_sub2_color);
}
/*--------------------------------------------------------------
load
--------------------------------------------------------------*/
#load .loader, #load .loader::before, .popup .loader, .popup .loader::before, #load .loader, .popup .loader {
  border-top-color: var(--i_main_color);
}
/*--------------------------------------------------------------
header
--------------------------------------------------------------*/
header, body.scrolled header {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221125171521.png);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: bottom;
    background-color: transparent;
    box-shadow: none;
	padding-bottom: 5px;
}
header .header_contents .header_col1 .btn>a {
    background: var(--i_bg_color);
    border-radius: 80px;
    color: var(--i_txt2_color);
    font-family: 'Zen Maru Gothic', sans-serif;
}
header nav ul.nav_1st>li:hover>a span{
	color: var(--i_bg_color);
}
header nav ul.nav_2nd>li {
    background: var(--i_main_color);
    border-bottom: 1px dashed #fff;
}
header nav ul.nav_3rd li a span {
    color: var(--i_txt_color) !important;
}
hheader nav ul.nav_3rd>li>a:after {
    background: var(--i_txt_color);
}
header nav ul.nav_1st>li:after, header nav ul.nav_1st>li:last-child:before {
    border-left: 1px dashed var(--i_txt_color);
}
header .tel svg, header .btn .translate a svg, header .burger li.sp_translate a svg {
    fill: var(--i_txt_color) !important;
}
/*--------------------------------------------------------------
mv
--------------------------------------------------------------*/
#mv {
    width: 96%;
    border-radius: 80px;
    overflow: hidden;
    margin-top: 15px;
}
#mv .mv_img {
    border-radius: 80px;
    overflow: hidden;
}
#mv:after{
	background: rgb(255 255 255 / 10%);
}
#mv_outer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - -10px);
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221114094713.png),url(/common/upload_data/atelier-cocochicom/image/20221114100204.png);
    background-repeat: no-repeat;
    background-size: 150px,contain;
    background-position: 15px 97%,left top;
    top: -10px;
    z-index: 7;
}
#mv_outer:after {
    content: "";
    position: absolute;
    top: 1px;
    left: calc(2% - 1px);
    width: 96%;
    height: 100%;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118162621.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 230px;
    z-index: 6;
}
#mv .mv_text {
    bottom: 10px;
    right: 10px;
    left: auto;
    align-items: end;
    justify-content: flex-end;
    height: calc(100% - 20px);
}
#mv .mv_text h2{
	font-size: 6rem !important;
    letter-spacing: 0.4rem;
    line-height: 1.4;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    text-shadow: 0px 0px 8px #784141;
}
#mv .mv_pointer {
    width: 20px;
}
#mv .mv_pointer li {
    margin: 5px 0;
    height: 20px;
}
#mv .mv_pointer li::before {
    border: none;
    background-size: cover;
    width: 8px;
    height: 8px;
    transform: none;
    margin-top: 0px;
    background-color: var(--i_main_color);
    border-radius: 50%;
}
#mv .mv_pointer li.current:before {
    border-radius: 50%;
    border: none;
    background-color: #fff;
}
/*--------------------------------------------------------------
新着情報
--------------------------------------------------------------*/
#top-news+ .block_news_1>.content_wrapper {
    background-color: var(--i_main_color);
    padding: 2px;
    border-radius: 80px;
	width: calc(100% - 40px);
}
#top-news+ .block_news_1 .inner {
    background-color: #fff;
    border-radius: 100px;
}
#top-news+ .block_news_1 .contents_btn01 a {
    margin: 5px 0;
}
.block_news_1 li>p, .block_news_1 li a>p{
    width: 100px;
}
#top-news+ .block_news_1 li>p:before, #top-news+ .block_news_1 li a>p:before {
    border-color: var(--i_main_color);
    border-width: 2px;
}
#top-news+ .block_news_1 .contents_btn01 .content_wrapper {
    padding-right: 60px;
}
#top-news+ .block_news_1 .content_wrapper ul {
    padding-left: 20px;
}
/*--------------------------------------------------------------
about
--------------------------------------------------------------*/
#top-about+ .composite_box01 .heading.block_header_4 .h {
    color: var(--i_txt2_color);
}
#top-about+ .composite_box01 .content_wrapper>p {
    font-family: 'Zen Maru Gothic', sans-serif;
}
#top-about+ .composite_box01 {
    margin-top: 0;
}
#top-about+ .composite_box01:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff, transparent);
}
#top-about+ .composite_box01 .wrapper_item .inner_item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.8s ease;
    aspect-ratio: 1/1;
    width: 32% !important;
    height: 100%;
    margin: 10px 3% 10px 15% !important;
}
#top-about+ .composite_box01 .wrapper_item .inner_item:nth-of-type(2) {
    margin: 10px 15% 15px 3% !important;
}
#top-about+.composite_box01 .inner_item:hover {
    filter: drop-shadow(0px 6px 6px rgb(189 172 134 / 80%));
}
#top-about+ .composite_box01 .inner_item>a, #top-about+.composite_box01 .inner_item_img {
    height: 100%;
    transition: 0.8s ease;
}
#top-about+.composite_box01 .inner_item_img img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    background-color: #fff;
}
#top-about+ .composite_box01.block_images_1 a+.inner_item_txt {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    padding: 15px 0 40px;
}
#top-about+ .composite_box01.block_images_1 a+.inner_item_txt:before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 2px);
    height: 100%;
    pointer-events: none;
    background-color: rgb(255 255 255 / 90%);
    border-radius: 100%;
}
#top-about+ .composite_box01.block_images_1 a+.inner_item_txt .heading:before {
    content: "→";
    display: block;
    position: absolute;
    height: 5px;
    width: 5px;
    left: calc(50% - 10px);
    top: auto;
    z-index: 1;
    bottom: 0;
    margin-bottom: -7px;
	font-family: 'Zen Maru Gothic', sans-serif;
}
#top-about+ .composite_box01.block_images_1 a+.inner_item_txt .heading:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 40px;
    top: auto;
    bottom: 0;
    margin-bottom: -32px;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221116153027.png);
    background-size: contain;
    left: 50%;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}
#top-about+.composite_box01 .inner_item>a:hover * {
    opacity: 1;
}
/*--------------------------------------------------------------
line
--------------------------------------------------------------*/
#line+ .contents_hr {
    margin-top: -60px;
}
#line+ .contents_hr hr {
    display: none;
}
/*--------------------------------------------------------------
flow
--------------------------------------------------------------*/
#top-flow+ section .wrapper_item, #top-flow02+ section .wrapper_item {
    position: relative;
}
#top-flow+ section .content_wrapper .wrapper_item:before, #top-flow02+ section .content_wrapper .wrapper_item:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118165255.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    max-width: none;
    margin: auto;
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    z-index: -1;
    pointer-events: none;
}
#top-flow+ .contents_box01 .inner_item_img, #top-flow02+ .contents_box01 .inner_item_img {
    overflow: hidden;
    margin: auto;
    margin-left: 20px;
    max-width: none !important;
	height: 400px;
    padding-top: 0;
	flex-basis: 70%;
}
#top-flow02+ .contents_box01 .inner_item_img {
    margin-left: 0;
    margin-right: 20px;
}
#top-flow+ .contents_box01 .inner_item_img img, #top-flow02+ .contents_box01 .inner_item_img img {
    border-radius: 0;
    width: 82% !important;
    margin-left: 16%;
    aspect-ratio: 3/2;
    height: auto !important;
    top: calc(50% - 19px);
    transform: translateY(-50%);
}
#top-flow02+ .contents_box01 .inner_item_img img {
    margin-left: 0;
}
#top-flow+.contents_box01 .wrapper_item .inner_item_img:before, #top-flow02+.contents_box01 .wrapper_item .inner_item_img:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221117144833.png);
    z-index: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#top-flow02+.contents_box01 .wrapper_item .inner_item_img:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221117144836.png);
}
#top-flow+ .contents_box01 .heading.block_header_2 .h,#top-flow02+ .contents_box01 .heading.block_header_2 .h{
	color: var(--i_txt_color);
}
#top-flow+.contents_box01 .inner_item_txt,#top-flow02+.contents_box01 .inner_item_txt {
    padding: 20px 10px;
}
#top-flow+ .contents_box01 .heading .h:before, #top-flow02+ .contents_box01 .heading .h:before {
    background: var(--i_txt_color);
}
#top-flow+ section .content_wrapper .inner_item_txt p, #top-flow02+ section .content_wrapper .inner_item_txt p {
    text-decoration: underline;
    text-decoration-color: #808080;
    text-decoration-style: dashed;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
	text-align: center;
}
#top-flow+ section .contents_btn01 a:before,#top-flow02+ section .contents_btn01 a:before{
	-webkit-filter: brightness(200%);
    filter: brightness(200%);
}
#top-flow+ section .contents_btn01 a:hover:before, #top-flow02+ section .contents_btn01 a:hover:before {
    filter: none;
	-webkit-filter:none;
}
#top-flow+ section .contents_btn01 a:hover:after, #top-flow02+ section .contents_btn01 a:hover:after {
    background-color: #fff;
}
#top-flow+ section:before,#top-flow+ section:after,#top-flow02+ section:before,#top-flow02+ section:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118104713.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat;
    animation: kirakira 4s ease-in-out infinite alternate;
}
#top-flow+ section:after{
	background-image: url(/common/upload_data/atelier-cocochicom/image/20221118104711.png);
}
#top-flow02+ section:after {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118104706.png);
}
#top-flow02+ section:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118104708.png);
}
#top-flow02+ section:before, #top-flow02+ section:after {
    background-position: top;
}
#top-flow+ section:before, #top-flow02+ section:before {
    animation: kirakira02 4s ease-in-out infinite alternate;
}
@keyframes kirakira {
  0% {opacity:0.8;}
  50%{opacity:0.2;}	
  100% {opacity:0.8;}
}
@keyframes kirakira02 {
  0% {opacity:0.2;}
  50%{opacity:0.8;}
  100% {opacity:0.2;}
}
/*--------------------------------------------------------------
gallery
--------------------------------------------------------------*/
#top-work+ .widget_gallery01 h2 {
    color: #fff;
    text-shadow: 0px 0px 8px #784141;
}
#top-work+ .widget_gallery01 .heading.block_header_1 p:before, #top-work+ .widget_gallery01 .heading.block_header_6 .h:before {
    background: #fff;
}
#top-work+ .widget_gallery01:before {
    content:"";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: inherit;
    filter: blur(2px);
}
#top-work+ .widget_gallery01 .slick-track {
    column-gap: 10px;
}
#top-work+ .widget_gallery01 .inner_item {
    background-color: #fff;
    padding: 5px;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.2));
    margin: 5px;
}
#top-work+.widget_gallery01 .inner_item .heading {
    padding: 10px;
}
#top-work+ .widget_gallery01 .slick-prev {
    margin-left: -20px;
}
#top-work+ .widget_gallery01 .slick-next {
    margin-right: -20px;
}
#top-work+ .widget_gallery01 .slick-next:before,#top-work+ .widget_gallery01 .slick-prev:before {
    border-color: #fff;
    border-width: 2px;
    width: 10px;
    height: 10px;
    left: calc(50% - 5px);
    top: calc(50% - -5px);
}
/*--------------------------------------------------------------
top-btn
--------------------------------------------------------------*/
#top-btn+ .composite_box01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221114100204.png),url(/common/upload_data/atelier-cocochicom/image/20221129092647.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 200px,112px;
    background-position: bottom left,99% 99%;
}
#top-btn+ .composite_box01 .inner_item {
    overflow: hidden;
    border-radius: 20px;
}
#top-btn+ .composite_box01 .wrapper_item{
	justify-content: space-between;
}
#top-btn+ .composite_box01:not(.block_images_13) .inner_item:nth-of-type(2):nth-last-of-type(1) {
    margin-left: 0;
}
#top-btn+ .composite_box01 .inner_item:nth-of-type(2) .inner_item_img:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221116141857.png);
    bottom: 0;
}
#top-btn+ .composite_box01 .inner_item_img {
    position: relative;
}
#top-btn+ .composite_box01 .inner_item_img:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221116141858.png);
    background-size: contain;
    z-index: 1;
    content: "";
    width: 120px;
    height: 80px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
#top-btn+ .composite_box01 .inner_item a+.inner_item_txt {
    margin-top: 0px;
}
#top-btn+ .composite_box01 .inner_item_txt .heading:before {
    background: #fff;
}
#top-btn+ .composite_box01 a:hover+.inner_item_txt .heading:before {
	opacity: 0.4;
}
#top-btn+ .composite_box01 a:hover+.inner_item_txt .heading .h {
    opacity: 0.4;
}
#top-btn+ .composite_box01 .inner_item_txt .heading .h {
    transition: .3s ease-in-out; 
}
/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
footer {
    background: #eddbe1;
}
footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221118165255.png);
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
}
#fixbtn .fixbtnwrap {
    background: url(/common/upload_data/atelier-cocochicom/image/shadow.png) no-repeat center top, #f9f0db;
    border-bottom: none;
}
#fixbtn .fixbtntel, #fixbtn .fixbtntel a, #fixbtn .fixbtntel span{
	color: var(--i_txt_color);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}
#fixbtn .fixbtntel svg {
    fill: var(--i_txt_color);
}
#fixbtn .contents_btn01 a {
    background: var(--i_sub_color);
    color: var(--i_txt_color);
	border-radius: 80px;
}
#fixbtn .contents_btn01 a:hover{
	background: #fff;
}
#fixbtn .contents_btn01 a:after {
    content: none;
}
#fixbtn #scrolltop a:before {
    background-image: url(/common/upload_data/atelier-cocochicom/image/20221117123616.png);
    background-size: cover;
    border: none;
    transform: none;
    top: 0;
    width: 40px;
    height: 40px;
    left: 0;
}
#fixbtn #scrolltop a:hover:before{
    border: none;
    filter: brightness(60%) blur(0.3px);
}
footer .sns svg{
	fill: #fff;
}
footer .sns a:hover svg{
	opacity: 0.8;
    fill: #fff;
}
#cp{
	color: #fff;
}
/*--------------------------------------------------------------
内容ページ
--------------------------------------------------------------*/
#lv {
    width: calc(100% - 40px);
    border-radius: 20px;
    margin-top: 15px;
    background-color: #fff;

}
#lv .parallax_img {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
#lv p span {
    color: var(--i_txt_color);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3rem;
    text-shadow: none;
    filter: drop-shadow(0px 0px 3px #fff);
}
#pan {
    background-color: #fff;
    border-bottom: 1px dashed var(--i_border_color);
}
#pan ul {
    margin: 0 auto 5px;
}
#pan li:before, #pan li:after {
    height: 10px;
    width: 10px;
    top: calc(50% - 5px);
}
#pan li:after {
    border-top: 2px solid var(--i_border_color);
    border-right: 2px solid var(--i_border_color);
    left: 5px;
}
.block_text_4 > .content_wrapper {
  max-width: 1160px !important;
  width: calc(100% - 40px);
}
.parallax {
    box-shadow: none;
}
.view_archive #lv .parallax_img, .view_detail #lv .parallax_img, .view_gallery_archive #lv .parallax_img, .view_recruit_detail #lv .parallax_img {
    transform: translateY(0) !important;
    top: 0;
    height: calc(100% + 10px) !important;
    width: calc(100% + 10px) !important;
    filter: blur(5px);
    margin-top: -5px !important;
    margin-left: -5px !important;
}
.parallax .parallax_img {
    filter: blur(5px);
    transform: none !important;
}
/*--------------------------------------------------------------
はじめての方へ
--------------------------------------------------------------*/
#img_resize+ .contents_box01 .inner_item_img, #about-img+ .composite_box01 .inner_item_img, #img_resize02+ .contents_box01 .inner_item_img {
    border-radius: 20px;
    overflow: hidden;
}
#img_resize02+ .contents_box01 .inner_item_img {
    aspect-ratio: 1/1;
	width: 100%;
	padding: 10px !important;
}
#img_resize02+ .contents_box01 .inner_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
#img_resize02+ .contents_box01.block_image_text_11 .wrapper_item, #img_resize02+ .contents_box01.block_image_text_12 .wrapper_item {
    border: 1px dashed var(--i_border_color, rgba(125,125,125,0.3));
	border-radius: 20px;
}
/*--------------------------------------------------------------
フォーム
--------------------------------------------------------------*/
main form input[type=radio]:checked + label::after, main form input[type=checkbox]:checked + label::after {
    background: var(--i_txt_color);
}
main form .submit span {
    padding: 5px;
}
.contents_faq01 dd:before{
	background: var(--i_txt_color);
}
/*--------------------------------------------------------------
レスポンシブ
--------------------------------------------------------------*/
@media screen and (min-width: 1020px){
	#top-flow02+ section .content_wrapper .inner_item_txt p br:first-of-type {
    display: none;
}
}
@media screen and (max-width: 1200px) and (min-width:901px){
	header:not(.width_full) .wraper, header#pattern2:not(.width_full) nav {
    width: calc(100% - 40px);
}
header#pattern2 nav {
    padding-right: 0;
}
}
@media screen and (max-width: 1000px){
#page-about+ section .inner_item_txt p {
    text-align: left !important;
}
}
@media screen and (min-width:901px){
header nav ul>li>a span {
    font-size: clamp(1rem, 0.902rem + 0.49vw, 1.5rem);
}
#lv {
    height: 340px;
}
#img_resize02+ .contents_box01 .inner_item_img {
	padding: 10px;
}	
}
@media screen and (max-width: 900px){
.contents_btn01 a:after, main form .submit span:after,#top-news+ .block_news_1 .contents_btn01 a:after, #top-flow+ section .contents_btn01 a:after, #top-flow02+ section .contents_btn01 a:after{
	width: 100%;
	opacity: 1;
}
header#pattern2 .logo {
    padding: 20px 0 !important;
}
header .header_contents .header_col1 .btn>a {
    background: var(--i_sub_color);
    color: var(--i_txt_color);
}
header.open:after, header .header_contents{
	background: #fff;	
	}
header nav ul.nav_1st>li i:before {
    height: 2px;
    top: calc(50% - 1px);
}
header nav ul.nav_1st>li i:after {
    width: 2px;
    left: calc(50% - 1px);
}
header nav ul.nav_2nd li:not(:first-of-type) {
    border-top: 1px dashed var(--i_main_color);
}
header nav ul.nav_1st>li:hover>a span{
	color: var(--i_main_color);	
	}	
#mv {
    border-radius: 40px;
    width: calc(100% - 20px);
    height: calc(100vh - 107px);
	height: calc(100dvh - 107px);
    margin-top: 20px;
	overflow: hidden;
}
#mv .mv_img{
	border-radius: 40px;	
	}
#mv_outer:after {
    width: calc(100% - 20px);
    left: 9px;
}	
#mv .mv_text h2 {
    font-size: 4rem !important;
}	
#mv .mv_pointer{
	width: 100%;
	height: 20px;
	right: 0 !important;
	display: block;
	text-align: center;
}
#mv .mv_pointer li {
    margin: 0 8px;
}
/*--news--*/
#top-news+ .block_news_1>.content_wrapper {
    border-radius: 20px;
}
#top-news+ .block_news_1 .inner {
    padding: 40px 10px;
    border-radius: 20px;
    display: block;
    width: calc(100% - 20px);
}
#top-news+ .block_news_1 .content_wrapper ul {
    padding-left: 0;
}
#top-news+ .block_news_1 .contents_btn01 .content_wrapper{
	padding-right: 0;
	}	
/*--flow--*/
#top-flow+ section .contents_btn01 a:after, #top-flow02+ section .contents_btn01 a:after {
    background-color: #fff;
}	
#top-flow+ section:before, #top-flow+ section:after, #top-flow02+ section:before, #top-flow02+ section:after{
	background-repeat: repeat-y;	
	}
#top-flow+ section .wrapper_item, #top-flow02+ section .wrapper_item{
	padding: 40px 10px !important;	
	}	
#top-flow+ section .content_wrapper .wrapper_item:before, #top-flow02+ section .content_wrapper .wrapper_item:before {
    left: 0;
    height: 100% !important;
    top: 0;
}
#top-flow+.contents_box01 .wrapper_item .inner_item_img:before{
	background-position: 20%;
}
#top-flow02+.contents_box01 .wrapper_item .inner_item_img:before {
    background-position: 80%;
}
#top-flow+ .contents_box01 .inner_item_img, #top-flow02+ .contents_box01 .inner_item_img{
    overflow: hidden;
    margin: auto;
    max-width: none !important;
    padding-top: 50% !important;
    flex-basis: auto;
    height: auto;
 }
#top-flow+ .contents_box01 .inner_item_img img, #top-flow02+ .contents_box01 .inner_item_img img{
	width: 64% !important;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
#top-flow+ section .contents_btn01 a:hover:after, #top-flow02+ section .contents_btn01 a:hover:after {
    background-color: #fff;
}
#top-flow+ section .contents_btn01 a:before, #top-flow02+ section .contents_btn01 a:before {
   filter: none;
	-webkit-filter:none;
}
 /*tab時画像サイズ制限*/
  #img_resize + section .inner_item_img, #img_resize02+ section .inner_item_img, #img_resize + div .inner_item_img{
    max-width: 400px !important;
    margin-left: auto;
    margin-right: auto;
  }
  #img_resize02+ .contents_box01 .inner_item_img{
	padding: 0 10px !important;
    margin-top: 10px;
}	
  #img_resize02+ .contents_box01 .inner_item_img img {
    width: 100% !important;
}
#about-img+ .composite_box01 .inner_item_img img {
    height: auto !important;
}	
}
@media screen and (max-width: 700px){
#top-about+ .composite_box01 .wrapper_item .inner_item, #top-about+ .composite_box01 .wrapper_item .inner_item:nth-of-type(2){
	width: 78% !important;
	margin: 15px auto !important;
}
#top-about+ .composite_box01 a+.inner_item_txt p {
    padding: 3px 18px !important;
}	
#fixbtn .contents_btn01 span {
    padding: 7px 70px;
}
#about-img+ .composite_box01 .inner_item{
	width: 100% !important;
    max-width: 400px;
    margin-left: auto !important;
    margin-right: auto;	
	}
#about-img+ .composite_box01 .inner_item:not(:last-of-type) {
    margin-bottom: 30px !important;
}
}
@media screen and (max-width: 600px){
#top-btn+ .composite_box01:before {
    background-size: 168px,80px;
}
footer nav ul li {
    border-top: none!important;
    border-bottom: 1px solid #fff !important;
}	
footer nav ul li:nth-last-of-type(2n) {
    border-right: 1px solid #fff !important;
}
footer nav ul li:nth-of-type(1), footer nav ul li:nth-of-type(2) {
    border-top: 1px solid #fff !important;
}	
#fixbtn .contents_btn01 a span {
    padding: 5px 30px;
}	
}
@media screen and (max-width: 500px){
	.block_table_3 table td{
	text-align: center;	
	}
	.block_table_3 table td, .block_table_7 table td {
    border-top: none;
	border-bottom: none;
}
}
@media screen and (max-width: 480px){
#mv_outer:before{
	background-size: 100px,contain;
	background-position: 15px 97%,-50px top;
}
#mv_outer:after {
    background-size: 160px;
}
#mv .mv_text h2 {
    font-size: 3rem !important;
}	
}
