@charset "utf-8";
/*=============================
		common
===============================*/

:root {
	--c_orange: #F57846;
	--c_brown: #443732;
	--c_pale: #F1E6D9;
	--c_border: #DCD7C8;
	--c_gray: #F4F4F4;
	--c_orange50: #F8A07D;
	--c_pale50: #F8F1EA;
	--bs_basic: 3px 3px 10px 3px rgba(153, 153, 153, 0.2);
}

html {
	/*scroll-padding-top: 100px;*/
	scroll-behavior: smooth;
}

/*nav*/
html.fixed, body.fixed {
	overflow: hidden;
	width: 100%;
}

/* clearfix */
.clearfix:after {
 content: ".";
 display: block;
 clear: both;
 height: 0;
 visibility: hidden;
}
.clearfix {
 	min-height: 1px;
	overflow: hidden;
}
* html .clearfix {
 height: 1px;
 overflow: hidden;
}
a:hover {
 	opacity: 0.7;
}

/* wrap */
.wrap{
	position: relative;
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 1;
}

/* view */
.pc_view,
.sp_none {
	display: block!important;
}
.sp_view,
.pc_none {
	display: none!important;
}

/* button */
.r_button {
	display: block;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 70px;
	letter-spacing: 1.5px;
	width: fit-content;
	height: 70px;
	padding: 0 70px;
	margin: 0 auto;
	border-radius: 99px;
	background: var(--c_orange);
	position: relative;
	box-shadow: var(--bs_basic);
	transition: all 0.3s ease;
}
.r_button:hover {
	opacity: 0.7;
}
.r_button::before {
	position: absolute;
	content: "";
	height: 27px;
	aspect-ratio: 148 / 240;
	background: url("../images/ic_arrow_right_wh.svg") no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	right: 25px;
	transform: translate(0 , -48%);
	transition: all 0.3s ease;
}
@media (any-hover: hover) {
	.r_button:hover::before {
		right: 20px;
		transform: translate(0 , -48%);
	}
}




/*=============================
		header
===============================*/
.header{
	position: fixed;
	padding: 0 25px 0;
	min-width: 1320px;
	width: 100%;
	height: 140px;
	display: block flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	margin: 0 auto;
	transition: all ease 0.3s;
	/*background: var(--c_pale50);*/
	z-index: 10;
}
.header.is_scroll{
	width: calc(100% - 40px);
	background: rgba(255 , 255 , 255 , 0.98 );
	margin: 20px;
	padding-inline: 30px; 
	border-radius: 20px;
	height: 100px;
	box-shadow: var(--bs_basic);
}

/* a */
.header a{
	display: block;
	transition: all .3s ease;
}

/* left(logo) */
.header .header_left {
	padding: 0;
}
.header .header_left h1 a .logo,
.header .header_left p a .logo {
	width: 380px;
	height: auto;
	transition: all ease 0.3s;
}
.header .header_left h1 a .logo.is_scroll,
.header .header_left p a .logo.is_scroll {
	width: 290px;
	height: auto;
}

/* right(nav) */
.header > .header_right nav ul{
	display: flex;
	align-items: center;
}
.header > .header_right nav ul li{
	margin-left: 50px;
}
.header.is_scroll > .header_right nav ul li{
	margin-left: 40px;
}


.header > .header_right nav ul li a {
	position: relative;
	color: var(--c_brown);
	text-align: center;
	font-weight: 500;
	transition: all .3s ease;
}
.header > .header_right nav ul li a {
	font-size: 95%;
}

.header > .header_right nav ul li a .ic_insta {
	width: 60px;
	height: auto;
}
.header.is_scroll > .header_right nav ul li a .ic_insta {
	width: 55px;
	height: auto;
}

/* sp_btn_nav */
.header #btn_nav_wrapper{
	display: none;
	margin: auto;
	width: 80px;
	height: 24px;
	cursor: pointer;
	box-sizing: border-box;
	padding-top: 16px;
	z-index: 1001;
	transition: all .3s ease;
}
.header #btn_nav_wrapper .btn_nav{
	position: relative;
	background: var(--c_orange);
	border-radius: 99px;
	width: 60%;
	height: 2px;
}
.header #btn_nav_wrapper.active .btn_nav{
    background: rgba(0,0,0,0);
	transition: background 0 linear;
}

.header #btn_nav_wrapper .btn_nav::after,
.header #btn_nav_wrapper .btn_nav::before {
	width: 80px;
	height: 2px;
	border-radius: 99px;
}
.header #btn_nav_wrapper .btn_nav::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 10px;
	background: var(--c_orange);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header #btn_nav_wrapper .btn_nav::after {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	background: var(--c_orange);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header #btn_nav_wrapper.active .btn_nav:after {
	top: 0;
	background: var(--c_orange);
	transform: rotate(25deg);
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header #btn_nav_wrapper.active .btn_nav:before {
	bottom: 0;
	background: var(--c_orange);
	transform: rotate(-25deg);
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* right_sp(nav) */
.header_right_sp{
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 99;
}

/*============================
         footer
============================*/
footer {
	background: var(--c_orange);
	padding: 55px 0 25px;
	border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
footer .inner.flex {
	display: flex;
	justify-content: space-between;
}
footer .inner.flex .reg {
	color: #fff;
	font-size: 13px;
}
footer .inner.flex .policy a {
	color: #fff;
	font-size: 13px;
	text-decoration: underline;
}