/* -HEADER
--------------------------------------------------------------------------------------------- */
/* アンカーリンクのスクロール位置調整 */
html {
  scroll-behavior: smooth; /* スクロールを滑らかにする */
  scroll-padding-top: 0; /* スクロール先の余白(スマホサイズ) */
}
#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
    height: 86px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #fff;
	-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;
}

body.fixed2 #headertop {
	transform: translateY(0%);
	transition: .6s;
	transition-delay: .5s;
}
body.fixed2 #headertop.none{
	display: none;
	transition: .6s;
}

#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  transform: translateY(-200%);
}
body.fixed2 #headertop #header.view {
  transform: translateY(0%);
  transition: .3s;
}

@media screen and (min-width: 768px){
	#header{
		height: 120px;
	}
}
@media screen and (min-width: 1200px){
	#header{
		height: 154px;
	}
}


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

/* CONTAINER  */
.header_container {
	width: 87.43%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_left{
	width: auto;
	display: flex;
	align-items: center;
}
.scroll_logo{
	width: 140px;
	margin-right: 60px;
	margin-bottom: 0;
}
.scroll_logo a{
	display: block;
	position: relative;
}
.scroll_logo a img{
	width: 100%;
	display: block;
}
@media screen and (min-width: 768px){
	.header_container{
		width: 93.33%;
	}
}
@media screen and (min-width: 1200px){
	.scroll_logo{
		width: 150px;
		margin-right: 50px;
	}
}
@media screen and (min-width: 1400px){
	.scroll_logo{
		width: 190px;
		margin-right: 60px;
	}
}

.header_menu{
	margin-bottom: 0;
	display: none;
}
.header_menu > li{
	list-style: none;
	margin-right: 25px;
}
.header_menu > li:last-child{
	margin-right: 0;
}
.header_menu > li.fixed_nav_item{
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.header_menu > li.fixed_nav_item .plus{
	position: relative;
	width: 10px;
	height: 10px;
	margin-left: 7px;
	display: inline-block;
	transition: 0.3s;
}
.header_menu > li.fixed_nav_item .plus::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
	background-color: #000;
	transform: translateY(-50%);
}
.header_menu > li.fixed_nav_item .plus::after{
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	top: 50%;
	left: 50%;
	background-color: #000;
	transform: translate(-50%,-50%);
	transition: .3s;
}
.header_menu > li.fixed_nav_item:hover .plus::after{
	height: 0;
}
.fixed_nav_tit{
	color: #000;
	display: inline-block;
	position: relative;
	margin-bottom: 0;
	transition: .3s;
}
.header_menu > li a{
	display: inline-block;
	position: relative;
	color: #000;
	transition: .3s;
}
.header_menu > li a:hover{
	text-decoration: none;
}
/* プルダウンメニューの初期状態：非表示 */
.dropdown {
	position: absolute;
	width: 200px;
	top: 100%;
	left: 50%;
	background-color: #f6f6f6;
	list-style: none;
	padding: 0;
	margin-top: 0.5rem;
	white-space: nowrap;
	max-height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: max-height 0.5s ease, visibility 0.5s ease;
	transform: translateX(-50%);
}
.dropdown li {
	padding: 0;
	position: relative;
}
.dropdown li:not(:last-child)::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	left: 0;
	bottom: 0;
}
.dropdown li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #000;
	width: 100%;
	height: 100%;
	padding: 10px;
}
/* ホバー時にプルダウンメニューを表示 */
.fixed_nav_item:hover .dropdown {
	max-height: 500px; /* 十分大きな値を設定（項目数に応じて調整可） */
	visibility: visible; /* 表示時に見えるようにする */
}
/* メニューが表示されたときのスタイル */
.dropdown.show .dropdown-menu {
	display: block;
}
@media screen and (min-width: 1200px){
	.header_menu{
		display: flex;
	}
}
@media screen and (min-width: 1400px){
	.header_menu > li.fixed_nav_item{
		margin-right: 40px;
	}
}



.header_right{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_contact{
	display: none;
}
.header_contact a{
	position: relative;
	background-color: #f6f6f6;
	color: #000;
	letter-spacing: 0;
	font-size: 0.94rem;
	border-radius: 30px;
	width: 200px;
	height: 60px;
	padding-left: 48px;
	display: flex;
	align-items: center;
	margin-right: 30px;
	transition: .4s;
}
.header_contact a:hover{
	text-decoration: none;
	background-color: #1d2087;
	color: #fff;
}
.header_contact a .arrow{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #1d2087;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transform: .4s;
}
.header_contact a .arrow::after{
	width: 8px;
	height: 7px;
	position: absolute;
	content: "";
	background-image: url("../images/arrow_w.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transform: .4s;
}
.header_contact a:hover .arrow{
	background-color: #f6f6f6;
}
.header_contact a:hover .arrow::after{
	background-image: url("../images/arrow_blue.svg");
}
@media screen and (min-width: 768px){
	.header_contact{
		display: flex;
	}
}
@media screen and (min-width: 1400px){
	.header_contact a{
		margin-right: 34px;
	}
}


/* TRIGGER */
.menu-trigger {
	position: relative;
	cursor: pointer;
	width: 50px;
	height: 10px;
	z-index: 1001;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	content: "";
	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:first-child{
	top: 50%;
	transform: translateY(-50%) rotate(25deg);
}
.menu-trigger.tgl-active span:last-child{
	top: 50%;
	bottom: unset;
	transform: translateY(-50%) rotate(-25deg);
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		width: 60px;
	}
	.menu-trigger span{
		height: 1.4px;
	}
}

/* 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: rgba(0,0,0,0.3);
	color: #000;
	padding: 14px;
	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{
	background-color: #fff;
	border-radius: 10px;
	padding: 6.87rem 0 4.37rem;
}
@media screen and (min-width: 992px) {
	.menu-toggle_inner{
		padding: 6.87rem 0 3.12rem;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle{
		padding: 30px;
	}
}
@media screen and (min-width: 1400px) {
	.menu-toggle_inner{
		padding: 9.6rem 0 3.52rem;
	}
}

.toggle_block{
	position: relative;
	width: 82.87%;
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	z-index: 1;
}
.tg_menu{
	margin-bottom: 0;
}
.tg_menu > li{
	list-style: none;
}
.tg_menu > li + li{
	margin-top: 3.37rem;
}
.tg_menu_tit{
	color: #000;
	font-size: 1.56rem;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 1.05rem;
}
.tg_menu > li .flex{
	display: flex;
}
.tg_menu > li ul{
	margin-bottom: 0;
}
.tg_menu > li:first-child ul + ul{
	margin-left: 50px;
}
.tg_menu > li ul li{
	list-style: none;
}
.tg_menu > li ul li a{
	display: inline-block;
	color: #969696;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	line-height: 2.5;
	transition: .3s;
}
.tg_menu > li ul li a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.tg_menu > li ul li a.tg_tab{
	display: inline-flex;
	align-items: center;
}
.tg_menu > li ul li a.tg_tab img{
	width: 10px;
	margin-left: 10px;
}
.tg_company{
	margin-top: 3.37rem;
}
.tg_add{
	font-size: 0.875rem;
	line-height: 1.7;
	letter-spacing: 0.04em;
	margin-bottom: 0.25rem;
}
.tg_map{
	display: inline-flex;
	align-items: center;
	color: #000;
	letter-spacing: 0;
	font-weight: 300 !important;
	font-size: 0.812rem;
	transition: .3s;
}
.tg_map img{
	width: 8px;
	margin-left: 10px;
}
.tg_map:hover{
	text-decoration: none;
	opacity: 0.8;
}
.tg_tel{
	margin-top: 1.9rem;
	
}
.tg_tel p{
	letter-spacing: 0.05em;
	font-size: 0.812rem;
	line-height: 1;
	font-weight: 300 !important;
	margin-bottom: 0;
}
.tg_tel p + p{
	display: flex;
	align-items: flex-end;
	margin-top: 0.51rem;
}
.tg_tel p span{
	font-size: 1.25rem;
	margin-bottom: -2px;
}
.tg_bottom{
	margin-top: 3.02rem;
}
.tg_contact{
	position: relative;
	background-color: #f6f6f6;
	color: #000;
	letter-spacing: 0;
	font-size: 1rem;
	border-radius: 30px;
	width: 220px;
	height: 60px;
	padding-left: 48px;
	display: flex;
	align-items: center;
	transition: .4s;
}
.tg_contact:hover{
	text-decoration: none;
	background-color: #1d2087;
	color: #fff;
}
.tg_contact .arrow{
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #1d2087;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transition: .4s;
}
.tg_contact:hover .arrow{
	background-color: #f6f6f6;
}
.tg_contact .arrow::after{
	width: 8px;
	height: 7px;
	position: absolute;
	content: "";
	background-image: url("../images/arrow_w.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.tg_contact:hover .arrow::after{
	background-image: url("../images/arrow_blue.svg");
}
.tg_policy{
	display: inline-block;
	color: #000;
	font-size: 0.93rem;
	letter-spacing: 0.02em;
	margin-top: 3.15rem;
	transition: .3s;
}
.tg_policy:hover{
	text-decoration: none;
	color: #000;
	opacity: 0.8;
}
@media screen and (min-width: 768px){
	.toggle_block{
		margin-bottom: 6.87rem;
	}
	.tg_menu{
		display: flex;
	}
	.tg_menu > li + li{
		margin-top: 0;
		margin-left: 6.12rem;
	}
	.tg_company{
		margin-top: 5.22rem;
	}
	.tg_bottom{
		margin-top: 5.22rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_block{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 6.87rem;
	}
	.tg_company{
		margin-top: 0;
	}
	.tg_bottom{
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: space-between;
	}
	.tg_policy{
		margin-top: 0;
	}
}
@media screen and (min-width: 1400px){
	.toggle_block{
		margin-bottom: 9.3rem;
	}
	.tg_menu > li + li{
		margin-left: 135px;
	}
	.tg_menu > li:first-child ul + ul{
		margin-left: 70px;
	}
	.tg_menu_tit{
		font-size: 2.11rem;
		margin-bottom: 1.34rem;
	}
	.tg_menu > li ul li a{
		font-size: 1rem;
		line-height: 2.35;
	}
	.tg_menu > li ul li a.tg_tab img{
		width: 12px;
	}
	.tg_add{
		font-size: 1rem;
		margin-bottom: 0.37rem;
	}
	.tg_map{
		font-size: 0.88rem;
	}
	.tg_tel{
		margin-top: 2.04rem;
	}
	.tg_tel p{
		font-size: 0.88rem;
	}
	.tg_tel p + p{
		margin-top: 0.77rem;
	}
	.tg_tel p span{
		font-size: 1.41rem;
	}
	.tg_bottom{
		margin-top: 3.71rem;
	}
	.tg_policy{
		font-size: 0.94rem;
	}
}
/********************
/* slider
********************/
#splide05 .splide__track {
  overflow: hidden;
  height: fit-content;
}
#splide05 .splide__list {
  display: flex;
  align-items: center;
  height: fit-content;
  will-change: transform;
  transition: none !important;
}
#splide05 .splide__slide {
  margin: 0;
  padding: 0;
}
/* アニメーション定義 */
#splide05 .splide__slide.slide1 span{
	font-size: 5.24rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}
#splide05 .splide__slide.slide2{
	width: 220px !important;
}
#splide05 .splide__slide.slide1 .slider--img{
	border-radius: 0;
}
#splide05 .slider--img img{
	vertical-align: bottom;
}
@media screen and (min-width: 1400px){
	#splide05 .splide__slide.slide1 span{
		font-size: 7.058rem;
	}
	#splide05 .splide__slide.slide2{
		width: 300px !important;
	}
}
@media screen and (max-width: 767px){
	#splide05{
		display: none;
	}
}

/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: 100vh;
	padding-top: 86px;
    overflow: hidden;
}
.mv_slider{
	width: 100%;
	height: 41.42%;
	overflow: hidden;
}
.mv_slider .slick-list,
.mv_slider .slick-track{
    width: 100%;
    height: 100%;
}
.mv_slider .mv_item{
    width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    position: relative;
}
.mv_slider .mv_item:first-child{
	background-image: url("../images/mv.jpg?202603");
	background-position: center;
}
.mv_slider .mv_item:nth-child(2){
	background-image: url("../images/mv2.jpg?20260302");
	background-position: center;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@media screen and (min-width: 768px){
	.mv{
		padding-top: 120px;
	}
	.mv_slider{
		width: 63.2%;
		height: 100%;
		border-radius: 0 10px 10px 0;
	}
}
@media screen and (min-width: 992px){
	.mv_slider{
		width: 72%;
	}
}
@media screen and (min-width: 1200px){
	.mv{
		padding-top: 154px;
	}
	.mv_slider{
		width: 71.5%;
	}
}
@media screen and (min-width: 1400px){
	.mv_slider{
		width: 73.33%;
	}
}
.mv_txtArea{
	width: 94.87%;
	position: relative;
	color: #000;
	margin-top: 7.075rem;
	margin-left: auto;
	margin-bottom: 2.81rem;
	z-index: 1;
}
.mv_txtArea .f-eng{
	font-size: 3.43rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1.5rem;
}
.mv_txtArea .f-eng span{
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.mv_txtArea .f-eng span::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1d2087;
	z-index: 2;
	transform-origin: right;
	transform: scaleX(1);
}
.mv_txtArea .f-eng .eng2{
	margin-left: 165px;
}
/* .show クラスが付与されたらアニメーション開始 */
.mv_txtArea .f-eng.show span::after {
	animation: revealText 1s ease forwards;
	animation-delay: 0.3s;
}
@keyframes revealText {
	0% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}
@media screen and (min-width: 768px){
	.mv_txtArea{
		position: absolute;
		width: 50%;
		right: 0;
		bottom: 2.23rem;
		margin: 0;
	}
	.mv_txtArea .f-eng{
		font-size: 5.24rem;
		margin-bottom: 3.37rem;
	}
	.mv_txtArea .f-eng .eng2{
		margin-left: 110px;
	}
	.mv_txtArea .f-eng .eng3{
		margin-left: 80px;
	}
}
@media screen and (min-width: 992px){
	.mv_txtArea{
		width: 38%;
	}
}
@media screen and (min-width: 1400px){
	.mv_txtArea{
		width: 37.61%;
	}
	.mv_txtArea .f-eng{
		font-size: 7.058rem;
		margin-bottom: 3.37rem;
	}
	.mv_txtArea .f-eng .eng2{
		margin-left: 155px;
	}
	.mv_txtArea .f-eng .eng3{
		margin-left: 125px;
	}	
}
@media screen and (min-width: 1600px){
	.mv_txtArea{
		width: 34.61%;
	}
}

.mvtxt_animation {
	width: 100%;
	max-width: 220px;
	margin-left: auto;
	margin-right: 3.84%;
}
.mvtxt_animation svg{
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (min-width: 768px){
	.mvtxt_animation{
		max-width: 250px;
		margin-right: 7%;
	}
}
@media screen and (min-width: 1400px){
	.mvtxt_animation{
		max-width: 295px;
		margin-left: 11.47rem;
		margin-right: 0;
	}
}
/***************************************************
 * Generated by SVG Artista on 5/29/2025, 4:28:21 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.3s;
          transition: fill 0.3s ease-in 0.3s;
}

svg.active .svg-elem-1 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.4s;
          transition: fill 0.3s ease-in 0.4s;
}

svg.active .svg-elem-2 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.5s;
          transition: fill 0.3s ease-in 0.5s;
}

svg.active .svg-elem-3 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.6000000000000001s;
          transition: fill 0.3s ease-in 0.6000000000000001s;
}

svg.active .svg-elem-4 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.7s;
          transition: fill 0.3s ease-in 0.7s;
}

svg.active .svg-elem-5 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.8s;
          transition: fill 0.3s ease-in 0.8s;
}

svg.active .svg-elem-6 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 0.9000000000000001s;
          transition: fill 0.3s ease-in 0.9000000000000001s;
}

svg.active .svg-elem-7 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1s;
          transition: fill 0.3s ease-in 1s;
}

svg.active .svg-elem-8 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.1s;
          transition: fill 0.3s ease-in 1.1s;
}

svg.active .svg-elem-9 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.2s;
          transition: fill 0.3s ease-in 1.2s;
}

svg.active .svg-elem-10 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.3s;
          transition: fill 0.3s ease-in 1.3s;
}

svg.active .svg-elem-11 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.4000000000000001s;
          transition: fill 0.3s ease-in 1.4000000000000001s;
}

svg.active .svg-elem-12 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.5000000000000002s;
          transition: fill 0.3s ease-in 1.5000000000000002s;
}

svg.active .svg-elem-13 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.6s;
          transition: fill 0.3s ease-in 1.6s;
}

svg.active .svg-elem-14 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.7000000000000002s;
          transition: fill 0.3s ease-in 1.7000000000000002s;
}

svg.active .svg-elem-15 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.8s;
          transition: fill 0.3s ease-in 1.8s;
}

svg.active .svg-elem-16 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 1.9000000000000001s;
          transition: fill 0.3s ease-in 1.9000000000000001s;
}

svg.active .svg-elem-17 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 2s;
          transition: fill 0.3s ease-in 2s;
}

svg.active .svg-elem-18 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 2.1s;
          transition: fill 0.3s ease-in 2.1s;
}

svg.active .svg-elem-19 {
  fill: rgb(0, 0, 0);
}

svg .svg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.3s ease-in 2.2s;
          transition: fill 0.3s ease-in 2.2s;
}

svg.active .svg-elem-20 {
  fill: rgb(0, 0, 0);
}




/**************************
ページヘッダー
**************************/
.page-head{
	padding: 11.08rem 0 3.125rem;
	margin-bottom: 4.8rem;
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.page-head::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	left: 0;
	bottom: 0;
}
.head_en{
	font-size: 3.125rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0.96rem;
}
.head-bfont{
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
	margin-bottom: 0;
}
@media screen and (min-width: 1200px){
	.page-head{
		padding: 17.77rem 0 7.058rem;
		margin-bottom: 7.058rem;
	}
	.head_en{
		font-size: 5rem;
		margin-bottom: 1.35rem;
	}
	.head-bfont{
		font-size: 1.176rem;
	}
}
/* 画像付きページヘッダー */
.page-head.image{
	width: 100%;
	margin-left: 0;
	padding-top: 86px;
	padding-bottom: 0;
}
.page-head.image::after{
	content: none;
}
.head_img img{
	border-radius: 0 10px 10px 0;
}
@media screen and (min-width: 768px){
	.page-head.image{
		width: 93.77%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 120px;
	}
	.head_img{
		width: 60.16%;
	}
	.page-head.image .page_ttl{
		text-align: right;
	}
}
@media screen and (min-width: 1200px){
	.page-head.image{
		padding-top: 154px;
	}
}
@media screen and (min-width: 1600px){
	.head_img{
		width: 65.16%;
	}
}
@media screen and (min-width: 1800px){
	.head_img{
		height: 640px;
	}
	.head_img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width: 767px){
	.head_img{
		width: 93.77%;
		margin-bottom: 40px;
	}
	.page-head.image .page_ttl{
		width: 86.66%;
		margin-right: auto;
		margin-left: auto;
	}
}
/* HAMAYA header */
.page-head.hamaya{
	margin-bottom: 0;
}
.page-head.hamaya::after{
	display: none;
}
.hamaya .head_en{
	display: inline-block;
	width: 230px;
	font-size: unset;
}
@media screen and (min-width: 768px){
	.hamaya .head_en{
		width: 250px;
	}
}
@media screen and (min-width: 1200px){
	.page-head.hamaya{
		padding-bottom: 7.3529rem;
	}
	.hamaya .head_en{
		width: 300px;
	}
}
/* HAMAYA header(image) */
.page-head.hamaya_image{
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	padding-top: 86px;
}
.page-head.head_pdNone{
	padding-bottom: 0 !important;
}
.hamaya_head_img{
	position: relative;
}
.hamaya_head_img::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.7);
}
.hamayaglass_head-slide .slick-track, .hamayaglass_head-slide .slick-list{
	height: 100%;
}
.hamaya_head_img img, .hamayaglass_head-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hamaya_image .page_ttl{
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
@media screen and (min-width: 768px){
	.page-head.hamaya_image{
		padding-top: 120px;
	}
}
@media screen and (min-width: 1200px){
	.page-head.hamaya_image{
		padding-top: 154px;
	}
}
@media screen and (min-width: 1800px){
	.hamaya_head_img, .hamayaglass_head-slide{
		height: 640px;
	}
}
@media screen and (max-width: 767px){
	.hamaya_head_img, .hamayaglass_head-slide{
		height: 280px;
	}
}
@media screen and (max-width: 479px){
	.hamaya_head_img, .hamayaglass_head-slide{
		height: 230px;
	}
}


/* 404title */
.head-bfont .jp{
	font-size: 1rem;
	display: block;
	margin-top: 0.5rem;
}
@media screen and (min-width: 768px){
	.head-bfont .jp{
		font-size: 1.2rem;
	}
}
