/* -HEADER
--------------------------------------------------------------------------------------------- */
#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
	
  transition: .6s;
}
#headertop.fixed {
  transform: translateY(0%);
  transition: .3s;
}
#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
  background-color: #fff;
}
#headertop.fixed #header.view {
  transform: translateY(0%);
  transition: .3s;
  background-color: #fff;
}
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
    height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001; 
	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;
}
@media screen and (min-width: 768px){
    #header{
        height: 80px;
    }
}
@media screen and (min-width: 1200px){
    #header{
        height: 90px;
    }
}

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

/* CONTAINER  */
.header_container {
	width: 92.3%;
	margin: 0 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: 1200px){
	.header_container{
		width: 91.11%;
	}
}
/* logo */
.scroll_logo{
    width: 230px;
    margin-bottom: 0;
	position: relative;
	transition: .4s;
}
.scroll_logo a,
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 280px;
    }
}
.header_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
	width: calc(100% - 200px);
}
/* お問い合わせbtn */
.header_contact{
	background-color: #3296fa;
	color: #fff;
	font-size: 0.61rem;
	text-align: center;
	letter-spacing: 0.02em;
	font-weight: 500;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 93px;
	height: 23px;
	transition: .3s;
}
.header_contact:hover{
	text-decoration: none;
	color: #fff;
	opacity: 0.7;
	transition: .3s;
}
/* menu */
.fixed_nav{
	margin-right: 22px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.fixed_nav > li{
	list-style: none;
	line-height: 1.7;
}
.fixed_nav > li + li{
	margin-left: 22px;
}
.fixed_nav > li a{
	display: inline-block;
	color: #1e283c;
	font-weight: 400;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	transition: .3s;
}
.fixed_nav > li a:hover{
	text-decoration: none;
	color: #3296fa;
}
.fixed_nav_item {
  position: relative;
  display: inline-block;
}
.fixed_nav_item > div{
	display: inline-flex !important;
	align-items: center;
	color: #1e283c;
	font-weight: 400;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: 0.3s;
}
.fixed_nav_item > div:hover{
	color: #3296fa;	
}
.fixed_nav_item .down{
	position: relative;
	width: 10px;
	height: 5px;
	margin-left: 10px;
}
.fixed_nav_item .down::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url("../images/header_arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: .3s;
}
.fixed_nav_item:hover .down::after{
	background-image: url("../images/header_arrow_hover.svg");
}
/* プルダウンメニューの初期状態：非表示 */
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	list-style: none;
	margin-top: 1.5rem;
	white-space: nowrap;
	max-height: 0; /* 初期状態は高さ0 */
	overflow: hidden; /* 高さが0の間は隠す */
	visibility: hidden; /* 非表示のときは完全に隠す */
	transition: max-height 0.5s ease, visibility 0.5s ease; /* アニメーションの追加 */
	border-radius: 0 0 10px 10px;
}
.dropdown li {
	margin: 0;
	padding: 0;
}
.dropdown li:last-child{
	padding-bottom: 20px;
}
.dropdown li a {
	display: block;
	padding: 10px 35px;
	text-decoration: none;
}
/* ホバー時にプルダウンメニューを表示 */
.fixed_nav_item:hover .dropdown {
	max-height: 500px; /* 十分大きな値を設定（項目数に応じて調整可） */
	visibility: visible; /* 表示時に見えるようにする */
}
/* メニューが表示されたときのスタイル */
.dropdown.show .dropdown-menu {
	display: block;
}
/* ドロップダウンメニューのアイテムのスタイル */
.dropdown li a:hover {
	background-color: #f8f8f8;
}
@media screen and (min-width: 992px){
	.header_right{
		width: calc(100% - 200px);
	}
}
@media screen and (min-width: 1200px){
	.header_right{
		width: calc(100% - 280px);
	}
	/* menu */
	.fixed_nav{
		margin-right: 26px;
	}
	.fixed_nav > li + li{
		margin-left: 26px;
	}
	.fixed_nav > li a{
		font-size: 0.88rem;
	}
	.fixed_nav_item > div{
		font-size: 0.88rem;
	}
	/* お問い合わせbtn */
	.header_contact{
		width: 142px;
		height: 35px;
		font-size: 0.82rem;
	}
}
@media screen and (min-width: 1400px){
	/* menu */
	.fixed_nav{
		margin-right: 41px;
	}
	.fixed_nav > li + li{
		margin-left: 41px;
	}
}
@media screen and (max-width: 991px){
	/* お問い合わせbtn */
	.header_contact{
		display: none;
	}
	/* menu */
	.fixed_nav{
		display: none;
	}
}



/* TRIGGER */
.menu-trigger {
	width: 62px;
	height: 23px;
	position: relative;
	cursor: pointer;
	background-color: #1e283c;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	margin-left: 8px;
	transition: .2s;
}
.menu-trigger .inner{
	position: relative;
	width: 20px; 
	height: 6px;
}
.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:first-child {
	top: 0;
}
.menu-trigger span:last-child {
	bottom: 0;
}
.menu-trigger.tgl-active{
	background-color: transparent;
	width: 20px;
	height: auto;
	right: 20px;
}
.menu-trigger.tgl-active .inner{
	height: 10px;
}
.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);
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		width: 88px;
		height: 35px;
		margin-left: 10px;
	}
	.menu-trigger .inner{
		width: 34px;
		height: 8px;
	}
	.menu-trigger.tgl-active{
		width: 34px;
		top: 20px;
		right: 30px;
	}
	.menu-trigger.tgl-active .inner{
		height: 15px;
	}
}

/* MENU TOGGLE */
.menu-toggle {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: 0.2s ease-in-out;
  top: 0;
  right: 0;
  opacity: 0;
  color: #fff;
  visibility: hidden;
}
.menu-toggle.active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.menu-toggle_inner{
	position: relative;
	width: 100%;
	height: calc(100% - 30px);
	top: 15px;
}
.menu-toggle_inner::after{
	position: absolute;
	content: "";
	width: calc(100% - 30px);
	height: 100%;
	background-color: #1e283c;
	border-radius: 8px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
.menu-toggle_block{
	width: 100%;
	height: 100%;
	padding: 4.86rem 10.26% 7.66rem;
	overflow-y: scroll;
}
@media screen and (min-width: 768px){
	.menu-toggle_inner{
		width: 76.2195%;
		height: auto;
		margin-left: auto;
		margin-right: 3.85%;
	}
	.menu-toggle_inner::after{
		width: 100%;
	}
	.menu-toggle_block{
		padding-bottom: 4.3rem;
	}
}
@media screen and (min-width: 992px){
	.menu-toggle_inner{
		width: 88%;
		max-width: 1250px;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle_inner{
		margin-right: 4.42%;
		padding-top: 0;
		top: 27px;
	}
	.menu-toggle_block{
		padding-top: 4.32rem;
		padding-bottom: 4.68rem;
	}
}
/* toggle New Release */
.toggle_news{
	padding-left: 30px;
}
.toggle_news_tit{
	font-size: 0.93rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	position: relative;
	margin-bottom: 0.4rem;
}
.toggle_news_tit::before{
	position: absolute;
	content: "";
	width: 15px;
	height: 9px;
	background-image: url("../images/diamond.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 8px;
	left: -30px;
}
.toggle_newsArea a{
	display: inline-flex;
	transition: .3s;
}
.toggle_newsArea a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.toggle_newsArea .info_date{
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: #fff;
	margin-right: 13px;
	margin-bottom: 0;
}
.toggle_newsArea .info_tit{
	font-size: 0.73rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: #fff;
	margin-bottom: 0;
}
.toggle_news .no-post{
	font-size: 0.73rem;
	letter-spacing: 0.06em;
	margin-bottom: 0;
}
@media screen and (min-width: 992px){
	.toggle_news{
		display: flex;
	}
	.toggle_news_tit{
		margin-bottom: 0;
	}
	.toggle_newsArea{
		margin-top: -0.1rem;
		margin-left: 35px;
	}
}
@media screen and (min-width: 1200px){
	.toggle_news_tit{
		font-size: 0.88rem;
	}
	.toggle_news_tit::before{
		top: 11px;
	}
	.toggle_newsArea{
		margin-top: -0.2rem;
		margin-left: 45px;
	}
	.toggle_newsArea .info_date{
		font-size: 0.82rem;
		margin-right: 20px;
	}
	.toggle_newsArea .info_tit{
		font-size: 0.76rem;
	}
}
/* toggle_nav */
.toggle_nav{
	display: flex;
	flex-wrap: wrap;
	margin-top: 5.1rem;
	margin-bottom: 0;
}
.toggle_nav li{
	list-style: none;
}
.toggle_nav > li{
	margin-top: 2.63rem;
}
.toggle_nav > li:nth-child(1), .toggle_nav > li:nth-child(2){
	margin-top: 0;
}
.toggle_nav > li:nth-child(odd){
	width: 115px;
}
.toggle_nav > li:nth-child(2n){
	margin-left: 55px;
}
.toggle_nav > li.tnav_column{
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.toggle_nav > li.tnav_column a{
	cursor: pointer;
	transition: .3s;
}
.toggle_nav > li.tnav_column a:first-child{
	width: 115px;
}
.toggle_nav > li.tnav_column a:nth-child(2){
	margin-left: 55px;
}
.toggle_nav > li.tnav_column a:hover{
	color: #999;
	text-decoration: none;
}
.toggle_nav a{
	display: inline-block;
	transition: .3s;
}
.toggle_nav a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.toggle_nav a.tnav_tit:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #999;
}
.tnav_tit{
	font-size: 0.73rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: #999;
	margin-bottom: 0;
}
.tnav_tit .f-eng{
	display: block;
	color: #fff;
	font-size: 1.53rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 0.5rem;
}
.toggle_nav > li ul{
	margin-top: 0.86rem;
	margin-bottom: 0;
}
.toggle_nav > li ul li a{
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 2.3;
}
@media screen and (min-width: 768px){
	.toggle_nav > li:nth-child(3){
		margin-top: 0;
		margin-left: 55px;
	}
	.toggle_nav > li:nth-child(4){
		margin-left: 0;
	}
	.toggle_nav > li:nth-child(2n+1){
		width: auto;
	}
	.toggle_nav > li:first-child{
		width: 115px;
	}
	.toggle_nav > li.tnav_column{
		width: auto;
		margin-left: 55px;
	}
	.toggle_nav > li.tnav_column a:first-child{
		width: 127px;
	}
}
@media screen and (min-width: 992px){
	.toggle_nav > li:nth-child(4){
		margin-top: 0;
		margin-left: 55px;
	}
	.toggle_nav > li.tnav_column{
		margin-left: 0;
	}
	.toggle_nav > li:first-child, .toggle_nav > li.tnav_column a:first-child{
		width: auto;
	}
	.toggle_nav > li.tnav_column{
		flex-direction: column;
		margin-top: 0;
		margin-left: 55px;
	}
	.toggle_nav > li.tnav_column a:nth-child(2){
		margin-top: 2rem;
		margin-left: 0;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px){
	.toggle_nav > li:nth-child(2n){
		margin-left: 50px;
	}
	.toggle_nav > li:nth-child(3){
		margin-left: 50px;
	}
	.toggle_nav > li.tnav_column{
		margin-left: 50px;
	}
}
@media screen and (min-width: 1200px){
	.toggle_nav{
		margin-top: 3.829rem;
	}
	.toggle_nav > li ul{
		margin-top: 0.97rem;
	}
	.toggle_nav > li ul li a{
		font-size: 0.76rem;
		line-height: 2.5;
	}
	.tnav_tit{
		font-size: 0.7rem;
	}
	.tnav_tit .f-eng{
		margin-bottom: 0.458rem;
	}
	.toggle_nav > li:nth-child(2n), .toggle_nav > li:nth-child(3), .toggle_nav > li:nth-child(4), .toggle_nav > li.tnav_column{
		margin-left: 60px;
	}
	.toggle_nav > li.tnav_column a:nth-child(2){
		margin-top: 1.95rem;
	}
}
@media screen and (min-width: 1400px){
	.toggle_nav > li:nth-child(2n), .toggle_nav > li:nth-child(3), .toggle_nav > li:nth-child(4), .toggle_nav > li.tnav_column{
		margin-left: 65px;
	}
}
/* toggle_company */
.toggle_company{
	position: relative;
	margin-top: 4.428rem;
}
.toggle_company .item + .item{
	margin-top: 1.1rem;
}
.toggle_company .tit{
	font-size: 0.86rem;
	letter-spacing: 0;
	line-height: 2.15;
	margin-bottom: 0.23rem;
}
.toggle_company .txt{
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0.06em;
	line-height: 1.83;
	color: #bfbfbf;
	margin-bottom: 0;
}
@media screen and (min-width: 992px){
	.toggle_company{
		display: flex;
	}
	.toggle_company .item + .item{
		margin-top: 0;
		margin-left: 80px;
	}
}
@media screen and (min-width: 1200px){
	.toggle_company{
		margin-top: 9.488rem;
	}
	.toggle_company .item + .item{
		margin-left: 100px;
	}
	.toggle_company .tit{
		font-size: 0.76rem;
		margin-bottom: 0.14rem;
	}
	.toggle_company .txt{
		font-size: 0.7rem;
	}
}
/* toggle_bottom */
.toggle_bottom{
	text-align: right;
	margin-top: 3.8rem;
}
.toggle_policy{
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0;
	color: #bfbfbf;
	text-decoration: underline;
	transition: .3s;
}
.toggle_policy:hover{
	color: #bfbfbf;
	opacity: 0.7;
}
.toggle_copy{
	position: relative;
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0;
	color: #bfbfbf;
	text-decoration: underline;
	padding-top: 2.8rem;
	margin-top: 2.66rem;
	margin-bottom: 0;
}
.toggle_copy::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: rgba(187,190,196,0.5);
}
@media screen and (min-width: 768px){
	.toggle_bottom{
		display: flex;
		justify-content: space-between;
	}
	.toggle_copy{
		padding-top: 0;
		margin-top: 0;
		text-decoration: none;
	}
	.toggle_copy::before{
		display: none;
	}
}
@media screen and (min-width: 1200px){
	.toggle_bottom{
		margin-top: 3.417rem;
	}
	.toggle_policy{
		font-size: 0.647rem;
	}
	.toggle_copy{
		font-size: 0.647rem;
	}
}


/**************************
MV
**************************/
.mv{
    position: relative;
    width: 92.3%;
	margin: 0 auto;
    height: 100vh;
	padding-top: 70px;
	padding-bottom: 4%;
}
.mv_inner{
	width: 100%;
	height: 100%;
	position: relative;
    overflow: hidden;
}
.mv_slider{
    width: 100%;
	height: 100%;
	margin-bottom: 0;
	border-radius: 10px;
	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::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.mv_slider li:first-child{
	background-image: url("../images/fv1_sp.jpg");
}
.mv_slider li:nth-child(2){
	background-image: url("../images/fv2_sp.jpg?2026");
}
.mv_slider li:nth-child(3){
	background-image: url("../images/fv3_sp.jpg");
}
.mv_txtArea{
	width: 83.33%;
	position: absolute;
	color: #fff;
	left: 50%;
	bottom: 8.26%;
	transform: translateX(-50%);
}
.mv_en{
	font-size: 3.06rem;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.05;
	margin-bottom: 0.76rem;
}
.mv_jp{
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.mv{
		padding-top: 80px;
	}
	.mv_slider li:first-child{
		background-image: url("../images/fv1.jpg");
	}
	.mv_slider li:nth-child(2){
		background-image: url("../images/fv2.jpg");
	}
	.mv_slider li:nth-child(3){
		background-image: url("../images/fv3.jpg");
	}
	.mv_en{
		margin-bottom: 1.56rem;
	}
}
@media screen and (min-width: 1200px){
	.mv{
		width: 95.55%;
		padding-top: 90px;
		padding-bottom: 2.5%;
	}
	.mv_txtArea{
		width: 88.139%;
		bottom: 8.71%;
	}
	.mv_en{
		font-size: 4.117rem;
		line-height: 2.1;
		margin-bottom: -0.34rem;
	}
	.mv_jp{
		font-size: 1.17rem;
		letter-spacing: 0.1em;
	}
}
@media screen and (min-width: 1400px){
	.mv_img::before{
		background-position: 5% center;
	}
}
@media screen and (min-width: 1400px){
	.mv_en{
		font-size: 5rem;
	}
}
.pc_topimg{
	position: absolute;
	width: 21.976%;
	max-width: 378px;
	top: 75.326%;
	right: 5.81%;
}
@media screen and (max-width: 991px){
	.pc_topimg{
		display: none;
	}
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}


/**************************
ページヘッダー
**************************/
.page_head{
	width: 92.3%;
	margin: 0 auto 4rem;
	padding-top: 9.83rem;
}
.noimage .page_tit, .service_head .page_tit{
	position: relative;
	padding-bottom: 4rem;
}
.noimage .page_tit::after, .service_head .page_tit::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(180,180,180,0.3);
	left: 0;
	bottom: 0;
}
.head_en{
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 1.2rem;
}
.head_jp{
	position: relative;
	font-size: 0.79rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	padding-left: 20px;
	margin-bottom: 0;
}
.head_jp::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 9px;
	background-image: url("../images/diamond.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.page_head_img{
	width: 100%;
	aspect-ratio: 72 / 49;
	margin-top: 4rem;
}
.page_head_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 768px){
	.page_head_img{
		aspect-ratio: 43 / 20;
	}
}
@media screen and (min-width: 1200px){
	.page_head{
		width: 95.55%;
		margin-bottom: 8.529rem; 
	}
	.page_head.noimage{
		margin-bottom: 8.82rem; 
	}
	.page_tit{
		width: 95.34%;
		margin: 0 auto;
	}
	.noimage .page_tit, .service_head .page_tit{
		padding-bottom: 7.64rem;
	}
	.head_en{
		font-size: 5.88rem;
		margin-bottom: 1.96rem;
	}
	.head_jp{
		font-size: 1rem;
		padding-left: 35px;
	}
	.head_jp::before{
		width: 20px;
		height: 13px;
	}
	.page_head_img{
		margin-top: 7.64rem;
	}
}
/* 事業内容 */
.service_link{
	margin-top: 30px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}
.service_link li{
	list-style: none;
	display: inline-flex;
	margin-right: 20px;
	margin-bottom: 20px;
}
.service_link li a{
	display: inline-flex;
	align-items: center;
	color: #1e283c;
	font-size: 1rem;
	letter-spacing: 0;
	transition: .3s;
}
.service_link li a .arrow{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #1e283c;
	position: relative;
	margin-right: 10px;
}
.service_link li a .arrow::after{
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.service_link li.active a{
	opacity: 0.3;
	pointer-events: none;
}
.service_link li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.service_head .page_head_img{
	margin-top: 5rem;
}
@media screen and (min-width: 576px){
	.service_link{
		flex-direction: row;
	}
	.service_link li{
		margin-right: 0;
		margin-bottom: 0;
	}
	.service_link li + li{
		margin-right: 0;
		margin-left: 20px;
	}
}
@media screen and (min-width: 768px){
	.service_link{
		justify-content: flex-end;
	}
}
@media screen and (min-width: 1200px){
	.service_link{
		width: 95.34%;
		margin: 50px auto 0;
	}
	.service_link li + li{
		margin-left: 40px;
	}
	.service_link li a .arrow{
		width: 34px;
		height: 34px;
		margin-right: 15px;
	}
	.service_link li a .arrow::after{
		width: 9px;
		height: 7px;
	}
	.service_head .page_head_img{
		margin-top: 150px;
	}
}