/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 100%;
	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;
}
#header, #header.show-toggle.view{
	height: 70px;
}
#header.view{
	height: 60px;
	background-color: rgba(255,255,255,0.8);
}
@media screen and (min-width: 768px){
    #header, #header.show-toggle.view{
        height: 100px;
    }
	#header.view{
		height: 80px;
	}
}
@media screen and (min-width: 1200px){
    #header, #header.show-toggle.view{
        height: 115px;
    }
	#header.view{
		height: 95px;
	}
}
@media screen and (min-width: 1400px){
    #header, #header.show-toggle.view{
        height: 135px;
    }
	#header.view{
		height: 115px;
	}
}

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

/* CONTAINER  */
.header_container {
	width: 90%;
	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;
	
}
@media screen and (min-width: 768px){
	.header_container{
		width: 91.66%;
	}
}
/* logo */
.scroll_logo{
    width: 135px;
    margin-bottom: 0;
	position: relative;
	z-index: 1001;
	transition: .4s;
}
.scroll_logo a,
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
	transition: .4s;
}
.scroll_logo img{
	opacity: 1;
}
.scroll_logo a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-image: url("../images/logo.svg?2025");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .4s;
}
.view .scroll_logo img, .is-fixed .scroll_logo img{
	opacity: 0;
}
.is-fixed .scroll_logo a::after, .view .scroll_logo a::after{
	opacity: 1;
}
@media screen and (min-width: 768px){
    .scroll_logo{
        width: 170px;
    }
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 200px;
    }
}
@media screen and (min-width: 1400px){
    .scroll_logo{
        width: 270px;
    }
}
/* header_right */
.header_right{
	display: flex;
	align-items: center;
}
.header_menu, .header_contact{
	display: flex;
	margin-bottom: 0;
}
.header_menu li, .header_contact li{
	list-style: none;
}
.header_menu li:last-child, .header_contact li:last-child{
	margin-right: 0;
}
.header_menu li a, .header_contact li a{
	font-size: 1rem;
	letter-spacing: 0.02em;
	color: #fff;
	transition: .3s;
}
.header_menu li a:hover, .header_contact li a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.view .header_menu li a, .view .header_contact li a, .header_page .header_menu li a, .header_page .header_contact li a{
	color: #333;
}
.header_menu{
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
}
.header_menu::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 14px;
	background-color: #fff;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: .4s;
}
.view .header_menu::after, .header_page .header_menu::after{
	background-color: #333;
}
.header_menu li{
	margin-right: 20px;
}
.header_contact{
	margin-right: 35px;
}
.header_contact li{
	margin-right: 10px;
}
@media screen and (min-width: 992px){
	.header_menu{
		padding-right: 25px;
		margin-right: 25px;
	}
	.header_menu li{
		margin-right: 30px;
	}
	.header_contact{
		margin-right: 45px;
	}
	.header_contact li{
		margin-right: 20px;
	}
}
@media screen and (min-width: 1200px){
	.header_menu{
		padding-right: 30px;
		margin-right: 30px;
	}
	.header_menu li{
		margin-right: 35px;
	}
	.header_contact{
		margin-right: 50px;
	}
	.header_contact li{
		margin-right: 25px;
	}
}
@media screen and (max-width: 767px){
	.header_menu, .header_contact{
		display: none;
	}
}

/* TRIGGER */
.menu-trigger {
	width: 35px;
	height: 8px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.menu-trigger span:first-child {
	top: 0;
}
.menu-trigger span:last-child {
	bottom: 0;
}
.menu-trigger.tgl-active span{
	background-color: #333;
}
.menu-trigger.tgl-active span:first-child {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(25deg);
	-ms-transform: translateY(-50%) rotate(25deg);
	transform: translateY(-50%) rotate(25deg);
}
.menu-trigger.tgl-active span:last-child {
	top: 50%;
	bottom: unset;
	-webkit-transform: translateY(-50%) rotate(-25deg);
	-ms-transform: translateY(-50%) rotate(-25deg);
	transform: translateY(-50%) rotate(-25deg);
}
.view .menu-trigger span,
.header_page .menu-trigger span{
	background-color: #333;
}
@media screen and (min-width: 992px){
	.menu-trigger{
		width: 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: #fff;
	color: #333;
	padding: 0;
	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%);
  overflow-y: scroll;
}
.menu-toggle_inner{
	width: 77.77%;
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 90px;
}
@media screen and (min-width: 768px){
	.menu-toggle_inner{
		padding-top: 100px;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle_inner{
		padding-top: 115px;
		padding-bottom: 135px;
	}
}
@media screen and (min-width: 1400px){
	.menu-toggle_inner{
		padding-top: 135px;
		padding-bottom: 155px;
	}
}

/* toggle_head */
.toggle_tel{
	margin-bottom: 1.585rem;
}
.toggle_tel .tel_block{
	font-size: 1.64rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1;
	margin-bottom: 0.214rem;
} 
.toggle_tel .tel_block span{
	font-size: 0.928rem;
}
.toggle_tel .opentime{
	font-size: 0.714rem;
	letter-spacing: 0.045em;
	margin-bottom: 0;
}
.toggle_contact{
	background-color: #e0ab21;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 50px;
	font-size: 1.14rem;
	letter-spacing: 0;
	transition: .3s;
}
.toggle_contact:hover{
	background-color: #333;
	color: #fff;
	text-decoration: none;
}
@media screen and (min-width: 576px){
	.toggle_head{
		width: 78%;
		margin-right: auto;
		margin-left: auto;
	}
}
@media screen and (min-width: 768px){
	.toggle_tel .tel_block{
		font-size: 1.78rem;
	}
	.toggle_tel .tel_block span{
		font-size: 1rem;
	}
	.toggle_tel .opentime{
		font-size: 0.785rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_head{
		position: absolute;
		width: auto;
		top: 0;
		right: calc((4.17% + 40px) + 66px);
		height: 100px;
		text-align: unset;
		display: flex !important;
		align-items: center;
	}
	.toggle_tel{
		text-align: right;
		margin-right: 30px;
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1200px){
	.toggle_head{
		height: 115px;
	}
	.toggle_tel{
		margin-right: 40px;
	}
	.toggle_tel .tel_block{
		font-size: 1.875rem;
		margin-bottom: 0.375rem;
	}
	.toggle_tel .tel_block span{
		font-size: 1.0625rem;
	}
	.toggle_tel .opentime{
		font-size: 0.8125rem;
	}
	.toggle_contact{
		width: 250px;
		height: 60px;
		font-size: 1.1875rem;
	}
}
@media screen and (min-width: 1400px){
	.toggle_head{
		height: 135px;
		right: calc((4.17% + 40px) + 86px)
	}
}
/* toggle_menu_block */
.toggle_menu_block{
	width: 100%;
	justify-content: center;
	padding-top: 3.57rem;
	padding-bottom: 4.28rem;
}
.toggle_menu_block > ul{
	margin-bottom: 0;
	position: relative;
}
.toggle_menu_block > ul:first-child{
	padding-right: 5%;
	margin-right: 5%;
}
.toggle_menu_block > ul > li{
	list-style: none;
	margin-bottom: 1.92rem;
}
.toggle_menu_block > ul > li a{
	display: inline-block;
	transition: .3s;
}
.toggle_menu_block > ul > li a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.toggle_menu_block .tg_tit .f-eng{
	display: block;
	letter-spacing: 0.05em;
	line-height: 1;
	font-size: 1.285rem;
	font-weight: 400;
	color: #333;
	margin-bottom: 0.114rem;
}
.toggle_menu_block .tg_tit .f-ns{
	color: #666;
	font-size: 0.714rem;
	font-weight: 500;
	letter-spacing: 0.085em;	
}
.accordion{
	position: relative;
}
.accordion-title{
	position: relative;
	cursor: pointer;
	width: 100%;
	margin-bottom: 0;
}
.accordion-title .f-eng .plus{
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background-color: #e0ab21;
	display: inline-block;
	position: relative;
	margin-left: 15px;
}
.accordion-title .f-eng .plus::before, .accordion-title .f-eng .plus::after{
	position: absolute;
	content: "";
	background-color: rgba(255,255,255,0.75);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.accordion-title .f-eng .plus::before{
	width: 7px;
	height: 1px;
}
.accordion-title .f-eng .plus::after{	
	width: 1px;
	height: 7px;
	transition: .3s;
}
.accordion-title.open .f-eng .plus::after{
	height: 0;
}
.accordion-content {
	display: none;
	padding: 0;
}
.accordion-content > ul{
	margin-bottom: 0;
}
.accordion-content > ul li{
	list-style: none;
	margin-bottom: -0.328rem;
}
.accordion-content > ul li:last-child{
	margin-bottom: 0;
}
.accordion-content > ul li a{
	color: #333;
	font-size: 0.857rem;
	letter-spacing: 0.05em;
}
.accordion-content > ul li a.f-ns{
	font-weight: 500;
	font-size: 0.78rem;
}
@media screen and (min-width: 576px){
	.toggle_menu_block{
		width: 78%;
		margin-right: auto;
		margin-left: auto;
	}
	.toggle_menu_block > ul:first-child{
		padding-right: 3rem;
		margin-right: 3rem;
	}
}
@media screen and (min-width: 768px){
	.toggle_menu_block > ul:first-child{
		padding-right: 5rem;
		margin-right: 5rem;
	}
	.toggle_menu_block > ul > li{
		margin-bottom: 2.11rem;
	}
	.toggle_menu_block .tg_tit .f-eng{
		font-size: 1.928rem;
	}
	.accordion-title .f-eng .plus{
		width: 20px;
		height: 20px;
		margin-left: 20px;
	}
	.accordion-title .f-eng .plus::before{
		width: 8px;
		height: 1px;
	}
	.accordion-title .f-eng .plus::after{
		width: 1px;
		height: 8px;
	}
	.accordion-content{
		padding-top: 0.24rem;
	}
	.accordion-content > ul li a{
		font-size: 0.928rem;
	}
	.accordion-content > ul li a.f-ns{
		font-size: 0.857rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_menu_block{
		width: 100%;
		max-width: 1090px;
		padding-top: 4.28rem;
		padding-bottom: 7.14rem;
	}
	.toggle_menu_block.max991-none{
		display: flex !important;
	}
	.toggle_menu_block > ul:first-child, .toggle_menu_block > ul:nth-child(2){
		padding-right: 5rem;
		margin-right: 5rem;
	}
	.toggle_menu_block > ul:first-child::after,	.toggle_menu_block > ul:nth-child(2)::after{
		position: absolute;
		content: "";
		width: 1px;
		height: 100%;
		background-color: rgba(202,199,184,0.75);
		top: 0;
		right: 0;
	}
}
@media screen and (min-width: 1200px){
	.toggle_menu_block{
		padding-top: 3.75rem;
		padding-bottom: 6.25rem;
	}
	.toggle_menu_block > ul:first-child, .toggle_menu_block > ul:nth-child(2){
		padding-right: 4rem;
		margin-right: 4rem;
	}
	.toggle_menu_block > ul > li{
		margin-bottom: 2.3rem;
	}
	.toggle_menu_block .tg_tit{
		font-size: 0.875rem;
	}
	.toggle_menu_block .tg_tit .f-eng{
		font-size: 2.3125rem;
		margin-bottom: 0.55rem;
	}
	.accordion-title .f-eng .plus{
		width: 30px;
		height: 30px;
		margin-left: 30px;
	}
	.accordion-title .f-eng .plus::before{
		width: 12px;
		height: 1px;
	}
	.accordion-title .f-eng .plus::after{
		width: 1px;
		height: 12px;
	}
	.accordion-content{
		padding-top: 0.75rem;
	}
	.accordion-content > ul li{
		margin-bottom: -0.05rem;
	}
	.accordion-content > ul li a{
		font-size: 1rem;
	}
	.accordion-content > ul li a.f-ns{
		font-size: 0.928rem;
	}
}
@media screen and (min-width: 1400px){
	.toggle_menu_block > ul:first-child, .toggle_menu_block > ul:nth-child(2){
		padding-right: 6.5rem;
		margin-right: 6.5rem;
	}
}
@media screen and (max-width: 991px){
	.toggle_menu_block{
		position: relative;
		padding-bottom: 4.5rem;
		margin-bottom: 3.371rem;
	}
	.toggle_menu_block::before{
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		background-color: rgba(202,199,184,0.75);
		bottom: 0;
		left: 50%;
		transform: translate(-50%);
	}
	.toggle_menu_block.min992-none{
		display: flex !important;
	}
	.toggle_menu_block > ul > li:last-child{
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px){
	.toggle_menu_block{
		margin-bottom: 2.857rem;
	}
}

/* toggle_sns */
.toggle_sns{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 2.542rem;
}
.toggle_sns p{
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-right: 27px;
	margin-bottom: 0;
}
.toggle_sns ul{
	margin-bottom: 0;
	display: flex;
}
.toggle_sns ul li{
	list-style: none;
	margin-right: 20px;
}
.toggle_sns ul li:last-child{
	margin-right: 0;
}
.toggle_sns ul li a{
	display: block;
	width: auto;
	height: 21px;
	transition: .3s;
}
.toggle_sns ul li a:hover{
	opacity: 0.8;
}
.toggle_sns ul li a img{
	width: 100%;
	height: 100%;
	display: block;
}
@media screen and (min-width: 768px){
	.toggle_sns{
		width: 78%;
		margin-right: auto;
		margin-left: auto;
	}
}
@media screen and (min-width: 992px){
	.toggle_sns{
		width: 100%;
		margin-bottom: 0;
		justify-content: flex-end;
	}
}

/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: calc(100vh - 55px);
    overflow: hidden;
}
.mv_slider{
    width: 100%;
	height: 100%;
	margin-bottom: 0;
	overflow: hidden;
}
.mv_slider .slick-list,
.mv_slider .slick-track{
    width: 100%;
    height: 100%;
}
.mv_slider li{
    width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    position: relative;
}
.mv_slider li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg");
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg");
}
.mv_txtArea{
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mv_copy{
	width: 100%;
	max-width: 555px;
	margin-bottom: 2.41rem;
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3));
}
.mv_txt{
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.025em;
	line-height: 2.2;
	color: #fff;
	margin-bottom: 0;
}
.mv_scroll{
	position: absolute;
	left: 5%;
	bottom: calc(5% + 61px);
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: 0.075em;
	cursor: pointer;
}
.mv_scroll img{
	width: 7px;
	height: 8px;
	object-fit: contain;
	margin-right: 5px;
}
.pick_post{
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #fff;
	width: 100%;
	padding: 10px 5%;
}
.pick_post ul{
	margin-bottom: 0;
}
.pick_post ul li{
	list-style: none;
}
.pick_post ul li a{
	display: block;
	transition: .3s;
}
.pick_post ul li a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.pick_post .info_cd{
	margin-bottom: 0;
}
.pick_post .info_cat{
	width: 60px;
	height: 20px;
	border: none;
	background-color: #e0ab21;
	color: #fff;
	font-size: 0.78rem;
	letter-spacing: 0;
	margin-right: 10px;
}
.pick_post .info_date{
	font-size: 0.85rem;
}
.pick_post .info_tit{
	font-size: 0.92rem;
}
@media screen and (min-width: 576px){
	.mv{
		height: 100vh;
	}
}
@media screen and (min-width: 768px){
	.mv_txtArea{
		width: 91.66%;
	}
	.mv_txt{
		font-size: 1.14rem;
	}
	.mv_scroll{
		left: 4.17%;
		bottom: 5%;
	}
	.pick_post{
		width: 55%;
		padding: 10px 15px;
	}
	.pick_post ul li a{
		display: flex;
		align-items: center;
	}
	.pick_post .info_cd{
		margin-right: 8px;
	}
}
@media screen and (min-width: 992px){
	.pick_post{
		width: 45%;
		max-width: 574px;
	}
}
@media screen and (min-width: 1200px){
	.mv_copy{
		max-width: 640px;
		margin-bottom: 3.16rem;
	}
	.mv_txt{
		font-size: 1.125rem;
	}
	.mv_scroll{
		font-size: 0.75rem;
	}
	.mv_scroll img{
		width: 8px;
		height: 9px;
		margin-right: 6px;
	}
	.pick_post{
		padding: 13px 20px;
	}
	.pick_post .info_cd{
		margin-right: 16px;
	}
	.pick_post .info_cat{
		width: 65px;
		height: 22px;
		font-size: 0.75rem;
		margin-right: 20px;
	}
	.pick_post .info_date{
		font-size: 0.81rem;
	}
	.pick_post .info_tit{
		font-size: 0.875rem;
	}
}
@media screen and (max-width: 767px){
	.pick_post::after{
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		background-color: #b3b3b3;
		bottom: 0;
		left: 0;
	}
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/**************************
ページヘッダー
**************************/
.page_head{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 7.17rem;
	padding-bottom: 1.65rem;
}
.page_head_tit{
	text-align: center;
}
.page_head_tit .f-eng{
	font-size: 2.85rem;
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin-bottom: -0.47rem;
}
.ph_logo{
	display: inline-block;
	margin-bottom: 1.14rem;
}
.ph_logo.carina{
	width: 240px;
}
.ph_logo.liniere{
	width: 221px;
}
.ph_logo.linoa{
	width: 173px;
}
.ph_logo.noie {
	width: 119px;
}
.page_head_tit .f-ns{
	color: #666;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.085em;
	line-height: 1.75;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.page_head{
		width: 91.66%;
		padding-top: 8.94rem;
		padding-bottom: 2.11rem;
	}
}
@media screen and (min-width: 992px){
	.page_head{
		padding-top: 10.71rem;
		padding-bottom: 2.57rem;
	}
}
@media screen and (min-width: 1200px){
	.page_head_tit .f-eng{
		font-size: 5rem;
		margin-bottom: -0.6rem;
	}
	.page_head_tit .f-ns{
		font-size: 1.25rem;
	}
	.ph_logo{
		margin-bottom: 2.715rem;
	}
	.ph_logo.carina{
		width: 390px;
	}
	.ph_logo.liniere{
		width: 360px;
	}
	.ph_logo.linoa{
		width: 300px;
	}
	.ph_logo.noie {
		width: 195px;
	}
}
@media screen and (min-width: 1400px){
	.page_head{
		padding-top: 12.5rem;
		padding-bottom: 3.05rem;
	}
}