@charset 'UTF-8';
/*************
/* ダミー画像
*************/
.img_dummy{
	position: relative;
}
.img_dummy::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: rgba(0,255,0,0.4);
	top: 0;
	left: 0;
}

/*************
/* effect
*************/
/*下から出現*/
.effect_box_up {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    -webkit-transform: translateY(20px) rotate(0deg);
    -ms-transform: translateY(20px) rotate(0deg);
    transform: translateY(20px) rotate(0deg);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.effect_box_up.leff {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
}
/*その場で出現*/
.effect_box_spot {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.effect_box_spot.leff {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
}
/*左から出現*/
.effect_box_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    -webkit-transform: translateX(-20px) rotate(0deg);
    -ms-transform: translateX(-20px) rotate(0deg);
    transform: translateX(-20px) rotate(0deg);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.effect_box_left.leff {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
}
/*右から出現*/
.effect_box_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    -webkit-transform: translateX(20px) rotate(0deg);
    -ms-transform: translateX(20px) rotate(0deg);
    transform: translateX(20px) rotate(0deg);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.effect_box_right.leff {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
}

/*************
/* hamayaglass オープニングアニメーション
*************/
/* ローディングアニメーション全体 */
#loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 66666;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 背景 */
#loading-animation .loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d2087; /* 任意の背景色 */
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* ロゴ */
#loading-animation .loading-logo {
  position: relative;
	width: 230px;
  z-index: 66667;
  opacity: 0;
  transition: opacity 2s ease;
}
#loading-animation.show-logo .loading-logo {
  opacity: 1;
}
@media screen and (min-width: 768px){
	#loading-animation .loading-logo{
		width: 300px;
	}
}
@media screen and (min-width: 992px){
	#loading-animation .loading-logo{
		width: 350px;
	}
}
@media screen and (min-width: 1400px){
	#loading-animation .loading-logo{
		width: 400px;
	}
}


/*************
/* 100%表示用
*************/
/* 基本設定 */
#page-main {
  width: 100%;
}
#page-main img {
  max-width: 100%;
  height: auto;
}

/*********************
/* 共通
*********************/
/** font **/
.f32{
	font-size: 1.583rem;
	font-weight: 500;
	line-height: 1.5;
}
.f30{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
}
.f24{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
}
.f20{
	font-size: 1.06rem;
	font-weight: 500;
	line-height: 1.5;
}
@media screen and (min-width: 1200px){
	.f32{
		font-size: 1.882rem;
	}
	.f30{
		font-size: 1.764rem;
	}
	.f24{
		font-size: 1.41rem;
	}
	.f20{
		font-size: 1.176rem;
	}
}
/* p-title */
.p-title{
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.7;
}
.p-title .f-eng{
	display: block;
	letter-spacing: -0.01em;
	font-size: 1.875rem;
	line-height: 1.15;
	margin-bottom: 0.56rem;
}
@media screen and (min-width: 992px){
	.p-title .f-eng{
		font-size: 2.43125rem;
		margin-bottom: 0.7rem;
	}
}
@media screen and (min-width: 1400px){
	.p-title{
		font-size: 0.88rem;
	}
	.p-title1 .f-eng{
		font-size: 3.117rem;
		margin-bottom: 0.85rem;
	}
}

/*********************
/* 代表あいさつ
*********************/
.mes_img{
	margin-bottom: 3.15rem;
}
.mes_txtArea .f24{
	margin-bottom: 0.5rem;
}
.svg_copy{
	width: 100%;
	max-width: 300px;
	margin-bottom: 2.1rem;
}
.mes_txtArea .f20{
	margin-bottom: 1.075rem;
}
.mes_txtArea .txt_block p + p{
	margin-top: 0.975rem;
}
.mes_txtArea .txt_block p + p.signature{
	margin-top: 2.225rem;
}
@media screen and (min-width: 768px){
	.mes_flex{
		display: flex;
		justify-content: space-between;
	}
	.mes_img{
		width: 42.85%;
		margin-bottom: 0;
	}
	.mes_txtArea{
		width: 45.45%;
	}
}
@media screen and (min-width: 992px){
	.svg_copy{
		max-width: 400px;
	}
}
@media screen and (min-width: 1200px){
	.mes_img{
		width: 36.85%;
	}
	.mes_txtArea{
		width: 51.45%;
	}
	.mes_txtArea .f24{
		margin-bottom: 0.794rem;
	}
	.svg_copy{
		max-width: 510px;
		margin-bottom: 4.3rem;
	}
	.mes_txtArea .f20{
		margin-bottom: 1.67rem;
	}
	.mes_txtArea .txt_block p + p{
		margin-top: 1.747rem;
	}
	.mes_txtArea .txt_block p + p.signature{
		margin-top: 3.8rem;
	}
}
@media screen and (min-width: 1600px){
	.mes_img{
		width: 42.85%;
	}
	.mes_txtArea{
		width: 45.45%;
	}
}
@media screen and (min-width: 1800px){
	.mes_img{
		height: 880px;
	}
	#page-main .mes_img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/*********************
/* 会社概要・沿革
*********************/
.index_link{
	display: flex;
	position: relative;
	padding-top: 30px;
	margin-bottom: 50px;
}
.index_link::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	top: 0;
	left: 0;
}
.index_link a{
	font-size: 0.9375rem;
	letter-spacing: 0;
	display: inline-flex;
	justify-content: space-between;
	width: 103px;
	color: #000;
	transition: .3s;
}
.index_link a + a{
	margin-left: 40px;
}
.index_link a .arrow{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #1d2087;
	display: block;
	position: relative;
}
.index_link a .arrow::after{
	position: absolute;
	content: "";
	width: 8px;
	height: 7px;
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.index_link a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.ov_map{
	margin-top: 26px;
	margin-bottom: 20px;
}
.ov_map .youtube{
	padding: 0;
	aspect-ratio: 167 / 95;
}
.history_block{
	margin-top: 5rem;
}
.overview_block ul{
	margin-bottom: 0;
}
.overview_block ul li{
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
}
@media screen and (min-width: 768px){
	.history_flex{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.index_link{
		width: 20%;
		flex-direction: column;
		margin-bottom: 0;
	}
	.index_link a + a{
		margin-left: 0;
		margin-top: 1.25rem;
	}
	.overview_block{
		width: 69.23%;
	}
}
@media screen and (min-width: 1200px){
	.index_link{
		padding-top: 40px;
	}
	.index_link a{
		font-size: 0.941rem;
		width: 108px;
	}
	.index_link a + a{
		margin-top: 1.35rem;
	}
	.index_link a .arrow{
		width: 28px;
		height: 28px;
	}
	.ov_map{
		margin-top: 46px;
		margin-bottom: 38px;
	}
	.history_block{
		margin-top: 9.41rem;
	}
}
@media screen and (max-width: 767px){
	.history_block .index_link{
		display: none;
	}
}

/*********************
/* 事業展開
*********************/
.dep_main{
	margin-bottom: 5rem;
}
.dep_main .f24{
	margin-bottom: 1.275rem;
}
.dep_main_img{
	width: 100%;
	margin-top: 2.725rem;
	margin-right: auto;
	margin-left: auto;
}
.dep_bk{
	position: relative;
	color: #fff;
	padding: 5rem 0;
}
.dep_bk::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #1d2087;
	top: 0;
	left: 0;
	border-radius: 30px;
	z-index: -1;	
}
.dep_con{
	margin: 5rem auto;
}
.dep_bk .dep_con{
	margin: 0 auto;
}
.dep_logo{
	margin-bottom: 1.6rem;
}
.dep_bk .dep_logo{
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 197px;
	height: 45px;
}
#page-main .dep_bk .dep_logo img{
	height: 20px;
}
#page-main .dep_logo img.musashi_logo{
	width: 130px;
}
#page-main .dep_logo img.ichigo_logo{
	width: 189px;
}
.dep_txtArea .f24{
	margin-bottom: 1.175rem;
}
.dep_txtArea .txt_block .service_txt{
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-top: 1.7rem;
}
@media screen and (min-width: 768px){
	.dep_main_img{
		width: 90%;
	}
	.dep_con_flex{
		display: flex;
		justify-content: space-between;
	}
	.dep_img{
		width: 48.70%;
	}
	.dep_txtArea{
		width: 41.55%;
		align-self: center;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px){	
	.dep_img{
		width: 43.7%;
	}
	.dep_txtArea{
		width: 46.55%;
	}
}
@media screen and (min-width: 1200px){
	.dep_main{
		margin-bottom: 9.41rem;
	}
	.dep_main .f24{
		margin-bottom: 1.75rem;
	}
	.dep_main_img{
		max-width: 740px;
		margin-top: 5.68rem;
	}
	.dep_bk{
		padding: 9.41rem 0; 
	}
	.dep_con{
		margin: 9.41rem auto;
	}
	.dep_logo{
		margin-bottom: 3.26rem;
	}
	.dep_bk .dep_logo{
		width: 260px;
		height: 60px;
	}
	#page-main .dep_bk .dep_logo img{
		height: 26.5px;
	}
	#page-main .dep_logo img.musashi_logo{
		width: 170px;
	}
	#page-main .dep_logo img.ichigo_logo{
		width: 250px;
	}
	.dep_txtArea .f24{
		margin-bottom: 1.55rem;
	}
	.dep_txtArea .txt_block .service_txt{
		font-size: 0.941rem;
		margin-top: 3.317rem;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1399px){	
	.dep_img{
		width: 39.7%;
	}
	.dep_txtArea{
		width: 50.55%;
	}
}
@media screen and (min-width: 1400px) and (max-width: 1499px){	
	.dep_img{
		width: 46.7%;
	}
	.dep_txtArea{
		width: 43.55%;
	}
}
@media screen and (max-width: 767px){
	.dep_bk::before{
		border-radius: 0;
	}
	.dep_img{
		margin-bottom: 3.125rem;
	}
}
.dep_products{
	position: relative;
	margin-top: 2.725rem;
}
.dep_products::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.25);
	top: 0;
	left: 0;
}
.dep_products .f24{
	text-align: center;
}
.dep_products_con ul{
	margin-bottom: 0;
}
.dep_products_con ul li{
	list-style: none;
	position: relative;
	padding: 1.375rem 0;
}
.dep_products_con ul li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.25);
	bottom: 0;
	left: 0;
}
.dep_products_con ul li .item{
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.02em;
	margin-bottom: 0.55rem;
}
.dep_products_con ul li .con{
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	line-height: 1.64;
}
@media screen and (min-width: 768px){
	.dep_products{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		padding-top: 1.375rem;
	}
	.dep_products .f24{
		width: 25.064%;
	}
	.dep_products_con{
		width: 64.935%;
	}
	.dep_products_con ul li:first-child{
		padding-top: 0;
	}
}
@media screen and (min-width: 1200px){
	.dep_products{
		margin-top: 5.88rem;
		padding-top: 1.94rem;
	}
	.dep_products_con ul li{
		padding: 2rem 0 2.58rem;
		display: flex;
	}
	.dep_products_con ul li .item{
		font-size: 0.941rem;
		width: 40%;
		margin-bottom: 0;
	}
	.dep_products_con ul li .con{
		font-size: 0.823rem;
		width: 60%;
		margin-top: 3px;
	}
}
@media screen and (min-width: 1400px){
	.dep_products_con ul li .item{
		width: 35%;
	}
	.dep_products_con ul li .con{
		width: 65%;
	}
}
@media screen and (min-width: 1600px){
	.dep_products_con ul li .item{
		width: 31%;
	}
	.dep_products_con ul li .con{
		width: 69%;
	}
}
@media screen and (max-width: 767px){
	.dep_products .f24{
		padding: 1.375rem 0;
	}
	.dep_products_con ul li:first-child::before{
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		background-color: rgba(255,255,255,0.25);
		top: 0;
		left: 0;
	}
}

/*********************
/* 経営理念・ビジョン
*********************/
.vis_con + .vis_con{
	margin-top: 4.2rem;
}
.vis_con .f24{
	margin-bottom: 1.275rem;
}
.vis_con .txt_block p + p{
	margin-top: 0.975rem;
}
@media screen and (min-width: 768px){
	.vis_con + .vis_con{
		margin-top: 5.45rem;
	}
}
@media screen and (min-width: 992px){
	.vis_con-flex{
		display: flex;
		justify-content: space-between;
	}
	.vis_con-flex.rev{
		flex-direction: row-reverse;
	}
	.vis_con-txtArea{
		width: 55%;
		align-self: center;
	}
	.vis_con-img{
		width: 37%;
	}
}
@media screen and (min-width: 1200px){
	.vis_con + .vis_con{
		margin-top: 6.1588rem;
	}
	.vis_con .f24{
		margin-bottom: 1.75rem;
	}
}
@media screen and (max-width: 1600px){
	.vis_con-txtArea .br_min1600{
		display: block;
	}
}
@media screen and (max-width: 1599px){
	.vis_con-txtArea .br_min1600{
		display: none;
	}
}
@media screen and (max-width: 991px){
	.vis_con-img{
		margin-top: 2.2rem;
	}
}
@media screen and (max-width: 767px){
	.vis_con-img{
		margin-top: 1.475rem;
	}
}

/*********************
/* グループ会社
*********************/
.group_bk{
	position: relative;
	padding: 5rem 0;
}
.group_bk::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f3f6fa;
	border-radius: 30px;
	z-index: -1;
}
.group_list{
	margin-bottom: 0;
}
.group_list li{
	list-style: none;
	margin-top: 3.125rem;
}
.group_list li:first-child{
	margin-top: 0;
}
.group_logo{
	text-align: center;
	height: 40px;
	margin: 25px 0;
}
#page-main .group_logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
#page-main .group_list li:nth-child(1) .group_logo img{
	max-width: 184px;
}
#page-main .group_list li:nth-child(3) .group_logo img{
	max-width: 144px;
}
#page-main .group_list li:nth-child(4) .group_logo img{
	max-width: 160px;
}
.group_list #form th, .group_list #form td{
	font-size: 0.9375rem;
}
.group_list #form th{
	font-weight: 500;
}
.group_list #form td{
	font-weight: 400;
}
.group_list #form td a{
	color: #000;
	text-decoration: underline;
	transition: .3s;
}
.group_list #form td a:hover{
	opacity: 0.7;
}
@media screen and (min-width: 768px){
	.group_bk::before{
		width: 87.17%;
		left: 50%;
		transform: translateX(-50%);
	}
	.group_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.group_list li{
		width: calc((100% - 40px)/2);
	}
	.group_list li:nth-child(2){
		margin-top: 0;
	}
}
@media screen and (min-width: 1200px){
	.group_bk{
		padding: 9.41rem 0;
	}
	.group_list li{
		width: calc((100% - 80px)/2);
		margin-top: 5.882rem;
	}
	.group_logo{
		height: 50px;
		margin: 40px 0;
	}
	#page-main .group_list li:nth-child(1) .group_logo img{
		max-width: 230px;
	}
	#page-main .group_list li:nth-child(3) .group_logo img{
		max-width: 180px;
	}
	#page-main .group_list li:nth-child(4) .group_logo img{
		max-width: 200px;
	}
	.group_list #form th, .group_list #form td{
		font-size: 0.941rem;
		padding: 1.67rem 0;
	}
}

/*********************
/* 採用情報
*********************/
.recruit_list{
	margin-bottom: 0;
}
.recruit_list li{
	list-style: none;
}
.rec_logo{
	text-align: center;
	height: 40px;
	margin: 25px 0 30px;
}
#page-main .rec_logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
#page-main .rec_logo img.hamaya{
	max-width: 184px;
}
#page-main .rec_logo img.mogami{
	max-width: 144px;
}
@media screen and (min-width: 768px){
	.recruit_list{
		display: flex;
		justify-content: space-between;
	}
	.recruit_list li{
		width: calc((100% - 60px)/3);
	}
}
@media screen and (min-width: 1200px){
	.recruit_list li{
		width: calc((100% - 120px)/3);
	}
	.rec_logo{
		height: 50px;
		margin: 40px 0;
	}
	#page-main .rec_logo img.hamaya{
		max-width: 230px;
	}
	#page-main .rec_logo img.mogami{
		max-width: 180px;
	}
}
@media screen and (max-width: 767px){
	.group_bk::before{
		border-radius: 0;
	}
	.recruit_list li + li{
		margin-top: 5rem;
	}
}

/*********************
/* プライバシーポリシー
*********************/
.policy_block + .policy_block{
	margin-top: 3.35rem;
}
.policy_block ul{
	margin-bottom: 0;
}
.policy_block ul li{
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
}
@media screen and (min-width: 1200px){
	.policy_block + .policy_block{
		margin-top: 3.817rem;
	}
}

/*********************
/* HAMAYA 私たちについて
*********************/
.page_bk{
	position: relative;
	padding: 4.375rem 0 5rem;
}
.page_bk::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f3f6fa;
	border-radius: 30px;
	z-index: -1;
}
.page_bk.bdr0::before{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.hamaya_list{
	margin-bottom: 0;
}
.hamaya_list li{
	list-style: none;
	text-align: center;
	margin-top: 3.75rem;
}
.hamaya_list li:nth-child(1){
	margin-top: 0;
}
.hamaya_img{
	margin-bottom: 0.94375rem;
}
.hamaya_list .f20{
	margin-bottom: 1.14375rem;
}
.hamaya_list .vm{
	background-color: #fff;
}
.hamaya_list .vm:hover{
	background-color: #1d2087;
}
@media screen and (min-width: 768px){
	.page_bk{
		padding: 5.833rem 0 6.66rem;
	}
	.hamaya_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.hamaya_list li{
		width: calc((100% - 40px)/2);
		margin-top: 5.625rem;
	}
	.hamaya_list li:nth-child(2){
		margin-top: 0;
	}
	.hamaya_img{
		margin-bottom: 1.325rem;
	}
	.hamaya_list .f20{
		margin-bottom: 1.425rem;
	}
}
@media screen and (min-width: 992px){
	.hamaya_list li{
		width: calc((100% - 80px)/3);
	}
	.hamaya_list li:nth-child(3){
		margin-top: 0;
	}
}
@media screen and (min-width: 1200px){
	.page_bk{
		padding: 8.235rem 0 9.4117rem;
	}
	.hamaya_list li{
		width: calc((100% - 100px)/3);
		margin-top: 5.294rem;
	}
	.hamaya_img{
		margin-bottom: 1.729rem;
	}
	.hamaya_list .f20{
		margin-bottom: 1.829rem;
	}
}
@media screen and (min-width: 1400px){
	.hamaya_list li{
		width: calc((100% - 120px)/3);
		margin-top: 7.058rem;
	}
	.hamaya_img{
		margin-bottom: 2.129rem;
	}
	.hamaya_list .f20{
		margin-bottom: 2.229rem;
	}
}
@media screen and (min-width: 1600px){
	.hamaya_list li{
		width: calc((100% - 160px)/3);
	}
}

/*********************
/* HAMAYA 事業概要・事業展開
*********************/
/* Overview */
.hamaya_ov_img{
	margin-bottom: 2rem;
}
.hamaya_ov .f30{
	margin-bottom: 1.1875rem;
}
.hamaya_ov .txt_block{
	line-height: 2;
}
@media screen and (min-width: 992px){
	.hamaya_ov_flex{
		display: flex;
		justify-content: space-between;
	}
	.hamaya_ov_img{
		width: 51.948%;
		margin-bottom: 0;
	}
	.hamaya_ov_txtArea{
		width: 38.961%;
		align-self: center;
	}
}
@media screen and (min-width: 1200px){
	.hamaya_ov .c-title1{
		margin-left: 7.792%;
	}
	.hamaya_ov .f30{
		margin-bottom: 1.741rem;
	}
	.hamaya_ov .txt_block{
		line-height: 2.35;
	}
}
@media screen and (min-width: 1400px) and (max-width: 1599px){
	.hamaya_ov_img{
		width: 46.948%;
	}
	.hamaya_ov_txtArea{
		width: 44.961%;
	}
}
@media screen and (max-width: 1399px){
	.hamaya_ov .txt_block{
		text-align: justify;
	}
}
/* Development */
.hamaya_dv{
	position: relative;
	margin-top: 4.5rem;
	padding-top: 4.5rem;
}
.hamaya_dv::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: rgba(100,100,100,0.25);
}
.hamaya_dv_list{
	margin-bottom: 0;
}
.hamaya_dv_list li{
	list-style: none;
}
.hamaya_dv_img{
	margin-bottom: 1.475rem;
}
.hamaya_dv_list .f20{
	margin-bottom: 0.8625rem;
}
.hamaya_dv_list .f20 br{
	display: none;
}
@media screen and (min-width: 768px){
	.hamaya_dv_list{
		display: flex;
		justify-content: space-between;
	}
	.hamaya_dv_list li{
		width: calc((100% - 60px)/3);
	}
}
@media screen and (min-width: 1200px){
	.hamaya_dv{
		margin-top: 9.4117rem;
		padding-top: 8.47rem;
	}
	.hamaya_dv_list{
		width: 84.4155%;
		margin-right: auto;
		margin-left: auto;
	}
	.hamaya_dv_list li{
		width: calc((100% - 80px)/3);
	}
}
@media screen and (min-width: 1400px){
	.hamaya_dv_list li{
		width: calc((100% - 100px)/3);
	}
}
@media screen and (min-width: 1600px){
	.hamaya_dv_img{
		margin-bottom: 2.54rem;
	}
	.hamaya_dv_list .f20{
		margin-bottom: 1.552rem;
	}
}
@media screen and (max-width: 767px){
	.hamaya_dv_list li{
		margin-top: 2.1rem;
	}
	.hamaya_dv_list li:first-child{
		margin-top: 0;
	}
}
@media screen and (min-width: 768px) and (max-width: 1059px){
	.hamaya_dv_list .f20 br{
		display: block;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1599px){
	.hamaya_dv_list .f20 br{
		display: block;
	}
}
/* hamaya_pro_link */
.hamaya_pro_link{
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5.85rem;
}
.hamaya_pro_link a{
	position: relative;
	display: block;
	transition: .4s;
}
.hamaya_pro_link a:hover{
	text-decoration: none;
}
.hamaya_pro_link_img{
	position: relative;
	width: 100%;
	height: 300px;
}
.hamaya_pro_link_img::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
#page-main .hamaya_pro_link_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hamaya_pro_link_txtArea{
	position: absolute;
	width: 90%;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	color: #fff;
	text-align: center;
}
.hamaya_pro_link_txt{
	font-size: 1.375rem;
	margin-bottom: 3.6rem;
}
.hamaya_pro_link_txt .f-eng{
	display: block;
	line-height: 1;
	letter-spacing: 0.06em;
	font-size: 0.8125rem;
	margin-top: 0.55rem;
}
.hamaya_pro_link a .vm{
	background-color: #fff;
	transition: .4s;
}
.hamaya_pro_link a .vm .tab{
	transition: .4s;
}
.hamaya_pro_link a:hover .vm{
	background-color: #1d2087;
	color: #fff;
}
.hamaya_pro_link a:hover .vm .tab{
	background-color: #fff;
}
.hamaya_pro_link a:hover .vm .tab::after{
	background-image: url("../images/tab_blue.svg");
}
@media screen and (min-width: 768px){
	.hamaya_pro_link{
		margin-top: 8.975rem;
	}
	.hamaya_pro_link_img{
		height: 320px;
	}
}
@media screen and (min-width: 1200px){
	.hamaya_pro_link{
		margin-top: 11.364rem;
	}
	.hamaya_pro_link_img{
		height: auto;
	}
	.hamaya_pro_link_txtArea{
		bottom: 50px;
	}
	.hamaya_pro_link_txt{
		font-size: 1.529rem;
		margin-bottom: 4.25rem;
	}
	.hamaya_pro_link_txt .f-eng{
		font-size: 0.823rem;
		margin-top: 0.77rem;
	}
}

/*********************
/* HAMAYA 経営理念・ビジョン
*********************/
.hamaya_vis_maintxt{
	font-size: 1.625rem;
	margin-bottom: 2.725rem;
}
.hamaya_vis_maintxt p{
	line-height: 1.5;
	margin-bottom: 0;
}
.hamaya_vis_list{
	margin-bottom: 0;
}
.hamaya_vis_list li{
	list-style: none;
	position: relative;
	padding: 2.5rem 0 2.25rem;
}
.hamaya_vis_list li:first-child{
	padding: 0 0 3rem;
}
.hamaya_vis_list li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: rgba(100,100,100,0.25);
}
.hamaya_vis_img{
	margin-bottom: 1.8875rem;
}
.hamaya_vis_txtArea .f32{
	margin-bottom: 1.175rem;
}
.hamaya_vis_txtArea .p-title{
	margin-bottom: 1.0875rem;
}
@media screen and (min-width: 768px){
	.hamaya_vis_list li{
		padding: 3.4375rem 0 3.25rem;
	}
	.hamaya_vis_list li:first-child{
		padding: 0 0 4.5rem;
	}
	.hamaya_vis_txtArea .f32{
		margin-bottom: 1.6rem;
	}
	.hamaya_vis_txtArea .p-title{
		margin-bottom: 1.7125rem;
	}
}
@media screen and (min-width: 992px){
	.hamaya_vis_maintxt{
		width: 58.923%;
		margin-left: auto;
	}
	.hamaya_vis_list li{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 3.4375rem 0;
	}
	.hamaya_vis_list li:first-child{
		padding: 0 0 4.6875rem;
	}
	.hamaya_vis_img{
		width: 32.23%;
		margin-bottom: 0;
	}
	.hamaya_vis_txtArea{
		width: 58.923%;
	}
}
@media screen and (min-width: 1200px){
	.hamaya_vis_maintxt{
		width: 64.923%;
		font-size: 1.88rem;
		margin-bottom: 4.3058rem;
	}
	.hamaya_vis_list li{
		padding: 4.117rem 0;
	}
	.hamaya_vis_list li:first-child{
		padding: 0 0 5.882rem;
	}
	.hamaya_vis_img{
		width: 27.23%;
	}
	.hamaya_vis_txtArea{
		width: 64.923%;
	}
	.hamaya_vis_txtArea .f32{
		margin-bottom: 1.941rem;
	}
	.hamaya_vis_txtArea .p-title{
		margin-bottom: 2.0647rem;
	}
}
@media screen and (min-width: 1400px){
	.hamaya_vis_maintxt{
		width: 56.923%;
	}
	.hamaya_vis_img{
		width: 29.23%;
	}
	.hamaya_vis_txtArea{
		width: 56.923%;
	}
}
/* 私たちのミッション */
.hmy_vis{
	position: relative;
	margin-top: 5rem;
	padding: 4.75rem 0 5rem;
}
.hmy_vis::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f3f6fa;
	z-index: -1;
}
.hmy_vis_mission .p-title{
	margin-bottom: 1.466rem;
}
.hmy_vis_mission ul{
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.hmy_vis_mission ul li{
	list-style: none;
	aspect-ratio: 1 / 1;
	background-color: #1d2087;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	border-radius: 50%;
	width: 150px;
	margin-right: 20px;
}
.hmy_vis_mission ul li:last-child{
	margin-right: 0;
}
.hmy_vis_mission ul li .no{
	position: absolute;
	left: 50%;
	top: calc(50% - 2.85rem);
	transform: translate(-50%,-50%);
	line-height: 1;
	font-size: 0.9375rem;
}
.hmy_vis_mission ul li .txt{
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.63;
}
.hmy_vis_values{
	margin-top: 4.5rem;
}
.hmy_vis_values .txt_block{
	text-align: justify;
}
.hmy_vis_values-contents{
	position: relative;
	margin-top: 2.1rem;
	margin-bottom: 60px;
}
.hmy_vis_values-contents::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	top: 0;
	right: 0;
}
.hmy_vis_values-contents ul{
	margin-bottom: 0;
	padding-top: 20px;
}
.hmy_vis_values-contents ul li{
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.707rem 14px;
}
.hmy_vis_values-contents ul li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	bottom: 0;
	left: 0;
}
.hmy_vis_values-contents ul li .no{
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	margin-right: 20px;
}
@media screen and (min-width: 768px){
	.hmy_vis{
		margin-top: 7.5rem;
		padding: 7.25rem 0 7.5rem;
	}
	.hmy_vis::before{
		width: 91.111%;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 20px;
	}
	.hmy_vis_mission .p-title{
		margin-bottom: 2.3rem;
	}
	.hmy_vis_mission ul li{
		width: 170px;
	}
	.hmy_vis_values{
		margin-top: 7rem;
	}
	.hmy_vis_values .txt_block{
		width: 62.923%;
		margin-left: auto;
	}
	.hmy_vis_values-contents{
		margin-top: 3.35rem;
		margin-bottom: 90px;
	}
	.hmy_vis_values-contents::before{
		width: 88.46153%;
	}
	.hmy_vis_values-contents ul{
		width: 62.923%;
		margin-left: auto;
		padding-top: 30px;
	}
	.hmy_vis_values-contents ul li .no{
		margin-right: 30px;
	}
}
@media screen and (min-width: 992px){
	.hmy_vis_mission .p-title{
		margin-bottom: 3.033rem;
	}
	.hmy_vis_mission ul li{
		width: 215px;
		margin-right: 30px;
	}
	.hmy_vis_mission ul li .no{
		font-size: 1rem;
		top: calc(50% - 3.65rem);
	}
	.hmy_vis_mission ul li .txt{
		font-size: 1.25rem;
	}
	.hmy_vis_values .txt_block{
		width: 56.923%;
	}
	.hmy_vis_values-contents ul{
		width: 56.923%;
	}
}
@media screen and (min-width: 1200px){
	.hmy_vis{
		margin-top: 9.4117rem;
		padding: 9.0588rem 0 9.4117rem;
	}
	.hmy_vis::before{
		border-radius: 30px;
	}
	.hmy_vis_mission .p-title{
		margin-bottom: 4.405rem;
	}
	.hmy_vis_mission ul li{
		width: 250px;
		margin-right: 50px;
	}
	.hmy_vis_mission ul li .no{
		top: calc(50% - 3.54rem);
	}
	.hmy_vis_mission ul li .txt{
		font-size: 1.294rem;
	}
	.hmy_vis_values{
		margin-top: 8.335rem;
	}
	.hmy_vis_values-contents{
		margin-top: 4.3058rem;
		margin-bottom: 120px;
	}
	.hmy_vis_values-contents ul{
		padding-top: 40px;
	}
	.hmy_vis_values-contents ul li{
		padding: 2.65rem 18px;
	}
	.hmy_vis_values-contents ul li .no{
		font-size: 0.8235rem;
		margin-right: 40px;
	}
}
@media screen and (min-width: 1400px){
	.hmy_vis_mission .p-title{
		margin-bottom: 4.405rem;
	}
	.hmy_vis_mission ul li{
		width: 300px;
	}
	.hmy_vis_mission ul li .no{
		top: calc(50% - 4.135rem);
	}
}
@media screen and (max-width: 575px){
	.hmy_vis_mission ul li{
		width: calc((100% - 20px)/2);
		margin-right: 20px;
	}
	.hmy_vis_mission ul li:nth-child(2){
		margin-right: 0;
	}
}
.hmy_vis_5{
	margin-bottom: 0;
}
.hmy_vis_5 li{
	list-style: none;
	position: relative;
}
.hmy_vis_5 li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: rgba(100,100,100,0.25);
}


/*********************
/* HAMAYA 代表あいさつ
*********************/
/* メッセージ */
.hmy_mes-contents ul{
	margin-bottom: 0;
}
.hmy_mes-contents ul li{
	list-style: none;
	position: relative;
	padding-top: 1.1875rem;
}
.hmy_mes-contents ul li + li{
	margin-top: 2.75rem;
}
.hmy_mes-contents ul li::before{
	position: absolute; 
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: rgba(100,100,100,0.25);
}
.hmy_mes_en{
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 2.725rem;
}
.hmy_mes-contents .f32{
	margin-bottom: 1.075rem;
}
.hmy_mes-contents .txt_block{
	text-align: justify;
}
@media screen and (min-width: 768px){
	.hmy_mes{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.hmy_mes .c-title1{
		padding-left: 7.8%;
	}
	.hmy_mes-contents{
		width: 52.948%;
	}
}
@media screen and (min-width: 992px){
	.hmy_mes-contents{
		width: 51.948%;
	}
}
@media screen and (min-width: 1200px){
	.hmy_mes-contents ul li{
		padding-top: 1.647rem;
	}
	.hmy_mes-contents ul li + li{
		margin-top: 5.47rem;
	}
	.hmy_mes_en{
		margin-bottom: 5.282rem;
	}
	.hmy_mes-contents .f32{
		margin-bottom: 2.041rem;
	}
}
@media screen and (max-width: 575px){
	.hmy_mes-contents .f32{
		font-size: 1.375rem;
	}
}
/* HAMAYAの歴史 */
.hmy_his{
	position: relative;
	padding-bottom: 5rem;
	margin-top: 6rem;
}
.hmy_his::before{
	position: absolute;
	content: "";
	width: 100%;
	height: calc(100% - 30px);
	bottom: 0;
	left: 0;
	background-color: #f3f6fa;
	z-index: -1;
}
.hmy_his_box{
	position: relative;
	padding: 3.3125rem 0;
}
.hmy_his_box::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: -1;
	border-radius: 20px;
}
.hmy_his_box .inner{
	width: 86%;
	margin-right: auto;
	margin-left: auto;
}
.hmy_his_box .f24{
	margin-bottom: 1.805rem;
}
.hmy_his_box .txt_block p + p{
	margin-top: 1.1rem;
}
@media screen and (min-width: 768px){
	.hmy_his{
		padding-bottom: 7.5rem;
		margin-top: 9.5rem;
	}
	.hmy_his::before{
		width: 91.111%;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 20px;
	}
	.hmy_his_box{
		padding: 5.1875rem 0;
	}
	.hmy_his_box .inner{
		width: 82%;
		max-width: 1000px;
	}
	.hmy_his_box .f24{
		margin-bottom: 3.278rem;
	}
}
@media screen and (min-width: 992px){
	.hmy_his::before{
		height: calc(100% - 43px);
	}
}
@media screen and (min-width: 1200px){
	.hmy_his{
		padding-bottom: 9.411rem;
		margin-top: 11.635rem;
	}
	.hmy_his::before{
		border-radius: 30px;
		height: calc(100% - 47px);
	}
	.hmy_his_box{
		padding: 6.647rem 0;
	}
	.hmy_his_box::before{
		border-radius: 30px;
	}
	.hmy_his_box .f24{
		margin-bottom: 4.2176rem;
	}
	.hmy_his_box .txt_block p + p{
		margin-top: 1.747rem;
	}
}
@media screen and (min-width: 1400px){
	.hmy_his::before{
		height: calc(100% - 59px);
	}
}
.hmy_m_block{
	margin-top: 5rem;
}
.hmy_m_contents{
	margin-bottom: 0;
}
.hmy_m_contents li{
	list-style: none;
	position: relative;
}
.hmy_m_contents li + li{
	margin-top: 3.3125rem;
	padding-top: 3.3125rem;
}
.hmy_m_contents li + li::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	top: 0;
	left: 0;
}
.hmy_m_contents .txt_block{
	text-align: justify;
}
.hmy_m_contents .txt_block p + p{
	margin-top: 1.1rem;
}
@media screen and (min-width: 576px){
	.hmy_m_imgBlock{
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		position: relative;
		margin-bottom: 4.175rem;
	}
	.hmy_img1{
		width: 44.615384%;
		position: relative;
		left: -3.23%;
	}
	.hmy_img2{
		width: 46.153846%;
		position: absolute;
		bottom: -41.099%;
		right: 0;
	}
}
@media screen and (min-width: 768px){
	.hmy_m_block{
		margin-top: 7.5rem;
	}
	.hmy_m_imgBlock{
		margin-bottom: 4.875rem;
	}
	.hmy_img1{
		left: -9.23%;
	}
	.hmy_m_contents li + li{
		margin-top: 5.1875rem;
		padding-top: 5.1857rem;
	}
}
@media screen and (min-width: 992px){
	.hmy_m_imgBlock{
		margin-bottom: 6.075rem;
	}
	.hmy_m_contents .txt_block{
		width: 76.923%;
		margin-left: auto;
	}
}
@media screen and (min-width: 1200px){
	.hmy_m_block{
		margin-top: 7.147rem;
	}
	.hmy_m_imgBlock{
		margin-bottom: 10.082rem;
	}
	.hmy_m_contents li + li{
		margin-top: 6.647rem;
		padding-top: 6rem;
	}
	.hmy_m_contents .txt_block p + p{
		margin-top: 1.747rem;
	}
}
@media screen and (min-width: 1400px){
	.hmy_m_block{
		margin-top: 10.247rem;
	}
	.hmy_img2{
		bottom: -160px;
	}
	.hmy_m_contents .c-title1{
		margin-bottom: 4.0235rem;
	}
}
@media screen and (max-width: 575px){
	.hmy_m_imgBlock{
		margin-bottom: 3.125rem;
	}
	.hmy_img1{
		width: 65.9%;
	}
	.hmy_img2{
		width: 68.1818%;
		margin-top: 35px;
		margin-left: auto;
	}
}
.hmy_vis{
	margin-bottom: 80px;
}
.hmy_vis_5{
	margin-top: 2.95rem;
}
.hmy_vis_5 li{
	display: flex;
	flex-direction: column;
	padding-left: 5px;
	padding-bottom: 1.875rem;
}
.hmy_vis_5 li + li{
	margin-top: 1.85rem;
}
.vis_5r{
	display: flex;
	align-items: center;
	margin-top: 7px;
}
.hmy_vis_5 .arrow{
	display: flex;
	position: relative;
	margin: 0 10px 0 35px;
}
.hmy_vis_5 .arrow::before{
	content: "";
	display: inline-block;
	border-left: 8px solid #000;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
@media screen and (min-width: 768px){
	.hmy_vis{
		margin-bottom: 120px;
	}
	.hmy_vis_5{
		margin-top: 3.8875rem;
	}
	.hmy_vis_5 li{
		padding-left: 15px;
	}
	.vis_5r{
		margin-top: 10px;
	}
	.hmy_vis_5 .arrow{
		margin: 0 10px 0 38px;
	}
}
@media screen and (min-width: 992px){
	.hmy_vis_5 li{
		flex-direction: row;
		align-items: center;
	}
	.vis_5r{
		margin-top: 0;
	}
	.hmy_vis_5 .arrow{
		margin: 0 23px;
	}
}
@media screen and (min-width: 1200px){
	.hmy_vis{
		margin-bottom: 160px;
	}
	.hmy_vis_5{
		margin-top: 4.4941rem;
	}
	.hmy_vis_5 li{
		padding-left: 20px;
		padding-bottom: 2.647rem;
	}
	.hmy_vis_5 li + li{
		margin-top: 2.6rem;
	}
	.hmy_vis_5 .arrow{
		margin: 0 37px;
	}
}
@media screen and (min-width: 1400px){
	.hmy_vis_5 .arrow{
		margin: 0 47px;
	}
}
@media screen and (max-width: 575px){
	.hmy_vis_5.f20{
		font-size: 1.03rem;
	}
}
/* slider */
#splide06{
	margin-bottom: 2rem;
}
#splide06 .splide__track {
  overflow: hidden;
  height: fit-content;
}
#splide06 .splide__list {
  display: flex;
  align-items: center;
  height: fit-content;
  will-change: transform;
  transition: none !important;
}
#splide06 .splide__slide {
  margin: 0;
  padding: 0;
}
/* アニメーション定義 */
#splide06 .splide__slide.slide1 span{
	font-size: 3.437rem;
	font-weight: 400;
	letter-spacing: -0.002;
	line-height: 1;
}
#splide06 .splide__slide.slide2{
	width: 130px !important;
}
#splide06 .splide__slide.slide1 .slider--img{
	border-radius: 0;
}
#splide06 .slider--img img{
	vertical-align: bottom;
}
@media screen and (min-width: 768px){
	#splide06{
		margin-bottom: 2.733rem;
	}
	#splide06 .splide__slide.slide1 span{
		font-size: 4.644rem;
	}
	#splide06 .splide__slide.slide2{
		width: 187px !important;
	}
}
@media screen and (min-width: 992px){
	#splide06{
		margin-bottom: 2.85rem;
	}
	#splide06 .splide__slide.slide1 span{
		font-size: 5.851rem;
	}
	#splide06 .splide__slide.slide2{
		width: 243px !important;
	}
}
@media screen and (min-width: 1400px){
	#splide06{
		margin-bottom: 3.9058rem;
	}
	#splide06 .splide__slide.slide2{
		width: 300px !important;
	}
	#splide06 .splide__slide.slide1 span{
		font-size: 7.058rem;
		line-height: 1;
	}
}
.visit_end_txt{
	letter-spacing: 0.06em;
	font-size: 1.063rem;
	font-weight: 500;
}
@media screen and (min-width: 768px){
	.visit_end_txt{
		font-size: 1.25rem;
	}
}
@media screen and (min-width: 992px){
	.visit_end_txt{
		font-size: 1.5625rem;
	}
}
@media screen and (min-width: 1400px){
	.visit_end_txt{
		font-size: 1.647rem;
	}
}


/*********************
/* HAMAYA 会社概要・沿革
*********************/
.hamaya-history{
	width: 87.17%;
	margin-top: 4.6rem;
	margin-right: auto;
	margin-left: auto;
}
.hamaya-history .c-title1{
	font-size: 0.8125rem;
}
.hamaya-history .c-title1 .f-eng{
	font-size: 2.25rem;
}
@media screen and (min-width: 768px){
	.hamaya-history{
		width: 72.22%;
		max-width: 1290px;
	}
}
@media screen and (min-width: 1200px){
	.hamaya-history{
		margin-top: 9.1058rem;
	}
}
@media screen and (min-width: 1400px){
	.hamaya-history .c-title1{
		font-size: 0.9375rem;
	}
	.hamaya-history .c-title1 .f-eng{
		font-size: 3.3125rem;
	}
}
.timeline-section {
	position: relative;
	width: 100%;
}
/* 背景の細い線 */
.timeline-track {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: rgba(100,100,100,0.25);
	transform: translateX(-50%);
}
/* スクロールで伸びる青い線 */
.timeline-progress {
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px; /* 背景より少し太くすると見えやすい */
	height: 0;
	background-color: #1d2087;
	transform: translateX(-50%);
	z-index: 1;
}
.timeline-item {
	width: 50%;
	box-sizing: border-box;
}
.timeline-year{
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color: #1d2087;
	letter-spacing: 0.02em;
	line-height: 1;
	font-size: 1.5rem;
	position: relative;
	padding-left: 25px;
	padding-bottom: 0.75rem;
	margin-bottom: 0.55rem;
}
.timeline-year::before{
	position: absolute;
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #1d2087;
	bottom: -6px;
	left: 0;
}
.timeline-year::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(29,32,135,0.75);
	left: 0;
	bottom: 0;
}
.timeline-content{
	padding-left: 25px;
}
.timeline-content p{
	font-size: 0.875rem;
	line-height: 1.4;
	margin-bottom: 0;
}
.timeline-img {
	width: 68.143%;
	margin-top: 1.675rem;
	opacity: 0;
    transform: translateY(40px);
    transition: none !important; /* CSSのtransitionがGSAPと喧嘩しないように */
}
.timeline-img img{
	border-radius: 5px;
}

/* sp */
.hamaya-history-sp{
	display: none;
}
@media screen and (max-width: 767px){
	.hamaya-history-sp{
		display: block;
	}
	.hamaya-history-sp .nav{
		display: block;
		margin-bottom: 1.925rem;
	}
	.hamaya-history-sp .nav-link{
		padding: 0;
		background-color: #f3f6fa;
		color: #a0a0a0;
		font-size: 0.8125rem;
		height: 40px;
		line-height: 40px;
		text-align: center;
	}
	.hamaya-history-sp .nav-tabs{
		border-bottom: none;
	}
	.hamaya-history-sp .nav-item{
		margin-bottom: 0;
	}
	.hamaya-history-sp .nav-tabs .nav-link{
		border: none;
		border-radius: 0;
	}
	.hamaya-history-sp .nav-tabs .nav-link:hover, .hamaya-history-sp .nav-tabs .nav-link:focus{
		border: none;
	}
	.hamaya-history-sp .nav-tabs .nav-link.active, .hamaya-history-sp .nav-tabs .nav-item.show .nav-link{
		color: #fff;
		background-color: #1d2087;
		border: none;
	}
	.hamaya-history-sp .timeline-section{
		padding: 0;
	}
	.hamaya-history-sp .timeline-track, .hamaya-history-sp .timeline-progress{
		top: 0;
		bottom: auto;
		left: 6px;
		transform: none;
		width: 1px;
	}
	.hamaya-history-sp .timeline-item{
		width: 100%;
		padding-bottom: 3.1rem;
	}
	.hamaya-history-sp .timeline-img{
		width: 240px;
	}
}
/* pc */
.hamaya-history-pc{
	display: none;
}
@media screen and (min-width: 768px){
	.hamaya-history-pc{
		display: block;
	}
	.timeline-title{
		display: flex;
	}
	.timeline-title div{
		width: 50%;
		text-align: center;
		height: 40px;
		line-height: 40px;
		font-size: 0.9375rem;
		position: relative;
	}
	.timeline-title-h{
		background-color: #1d2087;
		color: #fff;
	}
	.timeline-title-w{
		background-color: #f3f6fa;
		color: #000;
	}
	.timeline-title-w::before{
		position: absolute;
		content: "";
		width: 1px;
		height: 100%;
		top: 0;
		left: 0;
		background-color: #1d2087;
	}
	.hamaya-history-pc .timeline-flex{
		display: flex;
		align-items: flex-start;
	}
	.hamaya-history-pc .timeline-item{
		height: 133px;
		position: relative;
	}
	.hamaya-history-pc .timeline-item.pt{
		padding-top: 1.9375rem;
		padding-bottom: 3.1rem;
		height: auto;
	}
	.timeline-year::before{
		width: 16px;
		height: 16px;
		bottom: -8px;
	}
	.hamaya-history-pc .timeline-item.left{
		margin-right: auto;
	}
	.hamaya-history-pc .timeline-item.left .timeline-year::before{
		left: unset;
		right: -8px;
	}
	.hamaya-history-pc .timeline-item.left .timeline-year, .hamaya-history-pc .timeline-item.left .timeline-content{
		padding-left: 0;
		padding-right: 30px;
	}	
	.hamaya-history-pc .timeline-item.right{
		margin-left: auto;
	}
	.hamaya-history-pc .timeline-item.right .timeline-year::before{
		left: -8px;
	}
	.hamaya-history-pc .timeline-item.right .timeline-year, .hamaya-history-pc .timeline-item.right .timeline-content{
		padding-left: 30px;
	}
	.hamaya-history-pc .timeline-img{
		max-width: 400px;
		position: absolute;
	}
	.hamaya-history-pc .timeline-flex.img-rel .timeline-item{
		height: auto;
		padding-bottom: 3.1rem;
	}
	.hamaya-history-pc .timeline-flex.img-rel .timeline-img{
		position: relative;
	}
}
@media screen and (min-width: 1200px){
	.timeline-title div{
		font-size: 1.0588rem;
		height: 50px;
		line-height: 50px;
	}
	.hamaya-history-pc .timeline-item{
		height: 186px;
	}
	.hamaya-history-pc .timeline-item.pt{
		padding-top: 2.3529rem;
		padding-bottom: 4.188rem;
		height: auto;
	}
	.timeline-year{
		font-size: 1.764rem;
		padding-bottom: 1.1764rem;
		margin-bottom: 0.825rem;
	}
	.timeline-year::before{
		width: 20px;
		height: 20px;
		bottom: -10px;
	}
	.hamaya-history-pc .timeline-item.left .timeline-year::before{
		right: -10px;
	}
	.hamaya-history-pc .timeline-item.right .timeline-year::before{
		left: -10px;
	}
	.timeline-content p{
		font-size: 1.0588rem;
	}
	.hamaya-history-pc .timeline-item.left .timeline-year, .hamaya-history-pc .timeline-item.left .timeline-content{
		padding-right: 45px;
	}
	.hamaya-history-pc .timeline-item.right .timeline-year, .hamaya-history-pc .timeline-item.right .timeline-content{
		padding-left: 45px;
	}
	.hamaya-history-pc .timeline-flex.img-rel .timeline-item{
		padding-bottom: 4.188rem;
	}
	.hamaya-history-pc .timeline-img{
		margin-top: 2.329rem;
	}
}
@media screen and (min-width: 1400px){
	.hamaya-history-pc .timeline-item.left .timeline-year, .hamaya-history-pc .timeline-item.left .timeline-content{
		padding-right: 58px;
	}
	.hamaya-history-pc .timeline-item.right .timeline-year, .hamaya-history-pc .timeline-item.right .timeline-content{
		padding-left: 58px;
	}
}
@media screen and (min-width: 1765px){
	.hamaya-history-pc .timeline-item{
		height: auto;
		padding-bottom: 4.188rem;
	}
	.hamaya-history-pc .timeline-flex.img-rel .timeline-item{
		padding-bottom: 4.188rem;
	}
}