/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 100%;
    height: 75px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: transparent;
	-webkit-transition: all 0.4s ease-in-out, color 0.4s;
	-o-transition: all 0.4s ease-in-out, color 0.4s;
	transition: all 0.4s ease-in-out, color 0.4s;
}
@media screen and (min-width: 992px){
	#header{
		height: 100px;
	}
}
@media screen and (min-width: 1200px){
	#header{ 
		height: 133px;
	}
}

body.fixed{
    top: 0px;
    position: fixed; 
    width: 100%;
    height: 100%;
	z-index: 1001;
}

/* CONTAINER  */
.header_container {
	width: 87.1794%;
	margin-right: auto;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;	
	z-index: 1005;
}
@media screen and (min-width: 992px){
	.header_container{ 
		width: 91.111%;
		align-items: flex-start;
	}
}

/* logo */
.scroll_logo{
    width: 200px;
    margin-bottom: 0;
	transition: .4s;
}
.scroll_logo a{
	display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
	transition: .4s;
}
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	opacity: 1;
	transition: .4s;
}
.scroll_logo a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-image: url("../images/logo.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: .4s;
}
#header.view .scroll_logo img, #header.header_page .scroll_logo img{
	opacity: 0;
}
#header.view .scroll_logo a::after, #header.header_page .scroll_logo a::after{
	opacity: 1;
}
body.fixed .scroll_logo img{
	opacity: 1 !important;
}
body.fixed .scroll_logo a::after{
	opacity: 0 !important;
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 220px;
    } 
}
/**** header_right ****/
.header_right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 86%;
}
/* header_sns */
.header_sns{
	display: flex;
}
.header_sns a{
	display: block;
	position: relative;
	width: 18px;
	height: 18px;
	transition: .3s;
}
.header_sns a + a{
	margin-left: 18px;
}
.header_sns a img{
	display: block;
	width: 100%;
	height: 100%;
}
.header_sns a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: .3s;
}
.header_sns a.insta::after{	
	background-image: url("../images/icon_insta.svg");
}
.header_sns a.line::after{	
	background-image: url("../images/icon_line.svg");
}
.header_sns a:hover{
	opacity: 0.7;
}
#header.view .header_sns a img, #header.header_page .header_sns a img{
	opacity: 0;
}
#header.view .header_sns a::after, #header.header_page .header_sns a::after{
	opacity: 1;
}
body.fixed .header_sns a img{
	opacity: 1 !important;
}
body.fixed .header_sns a::after{
	opacity: 0 !important;
}
@media screen and (min-width: 1200px){
	.header_sns a{
		width: 20px;
		height: 20px;
	}
	.header_sns a + a{
		margin-left: 20px;
	}
}
/* header_link */
.header_link{
	display: flex;
	margin-left: 30px;
	transition: .3s;
}
.header_link a{
	width: 110px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,0.5);
	color: #fff;
	border-radius: 35px;
	font-size: 0.733rem;
	letter-spacing: 0.05em;
	transition: .3s;
}
.header_link a:hover{
	text-decoration: none;
	background-color: #fff;
	color: #000;
}
.header_link a + a{
	margin-left: 10px;
}
#header.view .header_link a{
	border: 1px solid rgba(0,0,0,0.5);
	color: #000;
}
#header.view .header_link a:hover{
	background-color: #000;
	color: #fff;
}
#header.header_page .header_link a{
	border: 1px solid rgba(0,0,0,0.5);
	color: #000;
}
#header.header_page .header_link a:hover{
	background-color: #000;
	color: #fff;
}
body.fixed .header_link a{
	border: 1px solid rgba(255,255,255,0.5) !important;
	color: #fff !important;
}
body.fixed .header_link a:hover{
	background-color: #fff !important;
	color: #000 !important;
}
@media screen and (min-width: 992px){
	.header_link a{
		width: 130px;
		height: 35px;
	}
}
@media screen and (min-width: 1200px){
	.header_link{
		margin-left: 40px;
	}
	.header_link a{
		font-size: 0.733rem;
	}
}
@media screen and (max-width: 767px){
	.header_link{
		display: none;
	}
}







/* TRIGGER */
.menu-trigger {
	width: 40px;
	height: 13px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
	margin-left: 30px;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.menu-trigger span:nth-child(1) {
	top: 0;
}
.menu-trigger span:nth-child(2) {
	bottom: 0;
}
#header.view .menu-trigger span, #header.header_page .menu-trigger span{
	background-color: #000;
}
body.fixed .menu-trigger span{
	background-color: #fff !important;
}
.menu-trigger.tgl-active span:nth-child(1) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(30deg);
	-ms-transform: translateY(-50%) rotate(30deg);
	transform: translateY(-50%) rotate(30deg);
}
.menu-trigger.tgl-active span:nth-child(2) {
	top: 50%;
	bottom: unset;
	-webkit-transform: translateY(-50%) rotate(-30deg);
	-ms-transform: translateY(-50%) rotate(-30deg);
	transform: translateY(-50%) rotate(-30deg); 
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		margin-left: 40px;
	}
}

/* MENU TOGGLE */
.menu-toggle {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	transition: 0.4s ease-in-out;
	background-color: #282828;
	color: #fff;
	overflow: hidden;	
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
	display: none;
}
/*menu-toggle.active*/
.menu-toggle.active {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

/*** toggle_bg ***/
.toggle_bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
}
.toggle_bg::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}
.toggle_bg_item{
	width: 100%;
	height: 50%;
}
.toggle_bg_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 992px){
	.toggle_bg{
		flex-direction: row;
	}
	.toggle_bg_item{
		width: 50%;
		height: 100%;
	}
}

/*** toggle_inner ***/
.toggle_inner{
	width: 100%;
	padding-top: 100px;
	position: relative;
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.tgl_flex{
	width: 87.1794%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 767px){
	.toggle_inner{
		padding-bottom: 75px;
	}
}

/* tgl_menu */
.tgl_menu{
	display: flex;
	justify-content: space-between;
}
.tgl_menu_item{
	width: calc((100% - 2.5rem)/2);
	position: relative;
}
.tgl_menu_item::before{
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(255,255,255,0.5);
	top: 0;
	right: 0;
}
.tgl_nav{
	margin-bottom: 0;
	padding-bottom: 2.769rem;
}
.tgl_nav li{
	list-style: none;
}
.tgl_nav li + li{
	margin-top: 1.73rem;
}
.tgl_nav li a{
	display: inline-block;
	color: #fff;
	font-size: 0.769rem;
	letter-spacing: 0.1em;
	transition: .3s;
}
.tgl_nav li a .f-eng{
	display: block;
	font-size: 1.38rem;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 0.269rem;
}
.tgl_nav li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (min-width: 576px){
	.tgl_menu_item{
		width: calc((100% - 3.769rem)/2);
	}
	.tgl_nav li a{
		font-size: 0.846rem;
	}
	.tgl_nav li a .f-eng{
		font-size: 1.538rem;
	}
}
@media screen and (min-width: 768px){
	.tgl_flex{
		width: 67.7%;
	}
	.tgl_menu_item{
		width: calc((100% - 5.65rem)/2);
	}
	.tgl_nav li a{
		font-size: 0.846rem;
	}
	.tgl_nav li a .f-eng{
		font-size: 1.538rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_inner{
		padding-top: 100px;
	}
	.tgl_flex{
		display: flex;
		width: 77.7%;
		max-width: 1250px;
		margin: 4rem auto;
	}
	.tgl_menu{
		width: 61.3%;
	}
	.tgl_nav{
		padding-bottom: 4.615rem;
	}
}
@media screen and (min-width: 992px) and (max-width: 1399px) and (min-height: 700px) and (max-height: 800px){
	.toggle_inner{
		display: flex;
		align-items: center;
	}
}
@media screen and (min-width: 1200px){
	.toggle_inner{
		padding-top: 133px;
	}
}
@media screen and (min-width: 1400px){
	.tgl_nav{
		padding-bottom: 5.2rem;
	}
	.tgl_nav li + li{
		margin-top: 2.63rem;
	}
	.tgl_nav li a{
		font-size: 0.933rem;
	}
	.tgl_nav li a .f-eng{
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}
}
@media screen and (min-width: 1400px) and (min-height: 900px) {
	.toggle_inner{
		display: flex;
		align-items: center;
	}
}
@media screen and (min-width: 1800px){
	.tgl_menu_item{
		width: calc((100% - 9.8rem)/2);
	}
}
/*  */
.tgl_info{
	margin-top: 4.615rem;
}
.tgl_contact_tit{
	font-size: 0.769rem;
	letter-spacing: 0.05em;
	margin-bottom: 2.67rem;
}
.tgl_contact_tit .f-eng{
	display: block;
	font-size: 1.38rem;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 0.753rem;
}
.tgl_tel{
	font-size: 1.538rem;
	letter-spacing: 0;
	line-height: 1;
}
.tgl_info_txt{
	font-size: 0.769rem;
	line-height: 1.84;
	letter-spacing: 0.05em;
	margin-bottom: 0;
}
.tgl_button{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 2.67rem;
}
.tgl_button a{
	width: 100%;
	max-width: 300px;
	height: 45px;
	background-color: #000;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 60px;
	font-size: 0.846rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.tgl_button a + a{
	margin-top: 8px;
}
.tgl_button a:hover{
	background-color: rgba(255,255,255,0.2);
	text-decoration: none;
}
.tgl_policy{
	display: inline-block;
	color: #fff;
	letter-spacing: 0.05em;
	font-size: 0.769rem;
	transition: .3s;
}
.tgl_policy:hover{
	text-decoration: none;
	color: #fff;
	opacity: 0.7;
}
@media screen and (min-width: 576px){
	.tgl_contact_tit{
		font-size: 0.846rem;
		margin-bottom: 3.34rem;
	}
	.tgl_contact_tit .f-eng{
		font-size: 1.538rem;
		margin-bottom: 1.038rem;
	}
	.tgl_tel{
		font-size: 1.923rem;
	}
	.tgl_info_txt{
		font-size: 0.846em;
	}
	.tgl_button{
		margin-top: 3.44rem;
	}
	.tgl_button a{
		height: 50px;
	}
	.tgl_policy{
		font-size: 0.846rem;
	}
}
@media screen and (min-width: 768px){
	.tgl_info{
		margin-top: 5.95rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_info_block{
		width: 38.7%;
		padding-left: 3.846rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.tgl_info{
		margin-top: 0;
	}
}
@media screen and (min-width: 1400px){
	.tgl_contact_tit{
		font-size: 0.933rem;
		margin-bottom: 3.3rem;
	}
	.tgl_contact_tit .f-eng{
		font-size: 2rem;
		margin-bottom: 1.4rem;
	}
	.tgl_tel{
		font-size: 2.666rem;
	}
	.tgl_info_txt{
		font-size: 0.866rem;
	}
	.tgl_button{
		margin-top: 3.6rem;
	}
	.tgl_button a{
		height: 60px;
	}
	.tgl_button a + a{
		margin-top: 10px;
	}
	.tgl_policy{
		font-size: 0.933rem;
	}
}
@media screen and (min-width: 1800px){
	.toggle_info_block{
		padding-left: 6.66rem;
	}
}
@media screen and (max-width: 767px){
	.tgl_info{
		margin-bottom: 1.9rem;
	}
}

/**************************
MV
**************************/
.mv{
    position: relative;
	width: 100%;
    height: 100vh;
	min-height: 500px;
}
.mv_slider{
	position: relative;
	display: flex;
	background-color: #333;
	height: 100vh;
	overflow: hidden;
}
.mvSlide__left, .mvSlide__right{
	width: 50%;
	overflow: hidden;
}
.mvSlide{
	position: relative;
	width: 100%;
}
.mvSlide__item{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
.mvSlide__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	transform: scale(1.2) translateY(0);
}
.mvSlide__left .mvSlide__img{
	clip-path: polygon(0% 0%, 100% 0%, 0% 0%, 0% 100%);
}
.mvSlide__left .mvSlide__item.before .mvSlide__img{
	position: relative;
	z-index: 2;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation-name: mvSlide_before_left;
	animation-duration: 7.5s;
	animation-fill-mode: forwards;
	transition-timing-function: linear;
}
.mvSlide__left .mvSlide__item.active .mvSlide__img{
	position: relative;
	z-index: 3;
	animation-name: mvSlide_left;
	animation-duration: 3s;
	transition-timing-function: linear;
}
.mvSlide__right .mvSlide__img {
	clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
.mvSlide__right .mvSlide__item.before .mvSlide__img {
	position: relative;
	z-index: 2;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	animation-name: mvSlide_before_right;
	animation-duration: 5s;
	animation-fill-mode: forwards;
	transition-timing-function: linear;
}
.mvSlide__right .mvSlide__item.active .mvSlide__img {
	position: relative;
	z-index: 3;
	animation-name: mvSlide_right;
	animation-duration: 3s;
	transition-timing-function: linear;
}
@keyframes mvSlide_left {
	0% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
		transform: scale(1.2) translateY(0);
	}
	50% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		transform: scale(1.2) translateY(30px);
	}
}
@keyframes mvSlide_before_left {
	0% {
		transform: scale(1.2) translateY(30px);
	}
	100% {
		transform: scale(1.2) translateY(100px);
	}
}
@keyframes mvSlide_left_sp {
	0% {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
		transform: scale(1.2) translateX(0);
	}
	50% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		transform: scale(1.2) translateX(30px);
	}
}
@keyframes mvSlide_before_left_sp {
	0% {
		transform: scale(1.2) translateX(30px);
	}
	100% {
		transform: scale(1.2) translateX(100px);
	}
}
@keyframes mvSlide_right {
	0% {
		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
		transform: scale(1.2) translateY(70px);
	}
	50% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		transform: scale(1.2) translateY(0px);
	}
}
@keyframes mvSlide_before_right {
	0% {
		transform: scale(1.2) translateY(0px);
	}
	100% {
		transform: scale(1.2) translateY(-30px);
	}
}
@keyframes mvSlide_right_sp {
	0% {
		clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
		transform: scale(1.2) translateX(70px);
	}
	50% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		transform: scale(1.2) translateX(0px);
	}
}
@keyframes mvSlide_before_right_sp {
	0% {
		transform: scale(1.2) translateX(0px);
	}
	100% {
		transform: scale(1.2) translateX(-30px);
	}
}
@media screen and (max-width: 767px){
	.mv_slider{
		flex-direction: column;
	}
	.mvSlide__item {
		width: 100%;
		height: 50vh;
	}
	.mvSlide__img {
		width: 100%;
		height: 50vh;
		transform: scale(1.2) translateX(0);
	}
	.mvSlide__left {
		width: 100%;
		height: 50vh;
	}
	.mvSlide__right {
		width: 100%;
		height: 50vh;
	}
	.mvSlide__left .mvSlide__img {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	.mvSlide__left .mvSlide__item.before .mvSlide__img {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		animation-name: mvSlide_before_left_sp;
	}
	.mvSlide__left .mvSlide__item.active .mvSlide__img {
		animation-name: mvSlide_left_sp;
	}
	.mvSlide__right .mvSlide__img {
		clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	}
	.mvSlide__right .mvSlide__item.before .mvSlide__img {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		animation-name: mvSlide_before_right_sp;
	}
	.mvSlide__right .mvSlide__item.active .mvSlide__img {
		animation-name: mvSlide_right_sp;
	}
}
/* counter */
.slider-counter {
	color: #fff;
	padding: 0;
	z-index: 3;
	font-family: 'mendl-sans-dusk', sans-serif;
	font-weight: 300;
	font-style: normal;
	letter-spacing: 0;
	line-height: 1;
	font-size: 1rem;
	position: absolute;
	bottom: 36px;
	left: 6.41%;
}
.slider-watermark{
	position: absolute;
	width: 80px;
	right: 6.41%;
	bottom: 36px;
	z-index: 3;
}
.slider-watermark img{
	display: block;
}
@media screen and (min-width: 768px) {
	.slider-watermark {
		bottom: 46px;
	}
	.slider-counter {
		bottom: 46px;
	}
}
@media screen and (min-width: 1200px) {
	.slider-watermark {
		right: 4.44%;
		bottom: 56px;
	}
	.slider-counter {
		width: 100px;
		left: 4.44%;
		bottom: 56px;
	}
}
/* text */
.mv_txtArea{
	text-align: center;
	position: absolute;
	width: 86%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	z-index: 3;
}
.mv_txtArea .f-eng{
	font-size: 2.769rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1.22rem;
}
.mv_txt{
	font-size: 1.07rem;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.mv_txtArea .f-eng{
		font-size: 3.846rem;
		margin-bottom: 1.307rem;
	}
	.mv_txt{
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 1200px){
	.mv_txtArea .f-eng{
		font-size: 4rem;
		margin-bottom: 1.66rem;
	}
	.mv_txt{
		font-size: 1.33rem;
	}
}

/********************
/* ページheader
********************/
.page_head{
	position: relative;
	width: 100%;
}
.page_head::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
}
.head_inner{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	color: #000;
	position: relative;
	padding: 9.4rem 0 4.61rem;
}
.head_en{
	font-size: 3.46rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0.938rem;
}
.head_jp{
	font-size: 1.153rem;
}
@media screen and (min-width: 768px){
	.head_inner{
		padding: 9.4rem 0 5.84rem;
	}
	.head_en{
		font-size: 4rem;
		margin-bottom: 1.12rem;
	}
	.head_jp{
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 992px){
	.head_inner{
		padding: 10.68rem 0 7.89rem;
	}	
}
@media screen and (min-width: 1400px){
	.head_inner{
		padding: 13.86rem 0 10.4rem;
	}
	.head_en{
		font-size: 4.66rem;
		margin-bottom: 1.43rem;
	}
	.head_jp{
		font-size: 1.33rem;
		letter-spacing: 0.01em;
	}
}

/********************
/* desgin casa header
********************/
.dc_head{
	width: 100%;
	position: relative;
}
.dc_head_img{
	width: 100%;
	height: 100vh;
}
.dc_head_img::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
.dc_head_img.watermark::after{
	width: 70px;
	height: 10px;
	right: 15px;
	bottom: 10px;
}
.dc_head_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dc_head_txt{
	position: absolute;
	width: 87.615%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.dc_head_logo{
	width: 230px;
	margin-bottom: 1.9rem;
}
.dc_head_txt h1{
	font-size: 1.15rem;
	letter-spacing: 0.1em;
	line-height: 1.66;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.dc_head_logo{
		width: 293px;
	}
}
@media screen and (min-width: 992px){
	.dc_head_logo{
		width: 355px;
		margin-bottom: 2.57rem;
	}
}
@media screen and (min-width: 1200px){
	.dc_head_txt h1{
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1400px){
	.dc_head_img.watermark::after{
		width: 80px;
		height: 12px;
		right: 20px;
		bottom: 15px;
	}
	.dc_head_logo{
		width: 450px;
		margin-bottom: 2.93rem;
	}
}