@charset "utf-8";

/******************************************************************************************
　　基本レイアウト指定
******************************************************************************************/
img{
	max-width:100%;
	height:auto;
	vertical-align: bottom;
}

html{
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
body{
	-webkit-text-size-adjust:100%;
	font-family:var(--font-family);
	color:var(--color-text);
	font-size:var(--16px);
	font-weight: 400;
	font-style: normal;
	background:#FFFFFF;
	padding-top: 90px;
	overflow-y: scroll;
	overflow-x: hidden;
	transition: background .5s;
}

/******************************************************************************************
	共通エフェクト
******************************************************************************************/
/*マウスストーカー*/
#stalker {
	pointer-events: none;
	position: fixed;
	top: -6px;
	left: -6px;
	width: 12px;
	height: 12px;
	background: #000000;
	border-radius: 50%;
	transition: transform 0.2s, top 0.4s, left 0.4s, width 0.4s, height 0.4s, background-color 0.4s, opacity 0.4s;
	transition-timing-function: ease-out;
	mix-blend-mode: darken;
	z-index: 9997;
	opacity: 0;
}
#stalker.hov_{
	top: -32px;
	left: -32px;
	width: 64px;
	height: 64px;
	transition: 0.5s;
	background: var(--color-yellow);
}
#stalker.hov_yellow { background: var(--color-yellow); } 
#stalker.hov_blue { background: var(--color-blue); } 
#stalker.hov_green { background: var(--color-green); } 
#stalker.hov_red { background: var(--color-red); }

/*ロード画面*/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	width: 100vw;
	height: 100vh;
	background-color: #fff;
}
#loading {
	transition:all 1s; 
}
#loading-wrapper{
	width: 40%;
	max-width: 280px;
}
#loading.loaded{
	opacity: 0;
	visibility: hidden;
}
#loading.done{
	display: none;
}

/*画像出現マスク*/
.mask_wrap{
	display: table;
	overflow: hidden;
}
.mask-wrap .mask{
	display: table;
	position: relative;
	overflow: hidden;
}
.mask-wrap .mask-bg{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #F9F9F9;
}

/*下層アクセス時 エフェクト*/
article, #pagemenu{
    opacity: 0;
    filter: blur(10px);
    transform: translateY(10px);
    transition: opacity .5s ease-out, filter .5s ease-out, transform .5s ease-out;
}
article.show, #pagemenu.show{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


/******************************************************************************************
	共通スタイル
******************************************************************************************/
.wrapper_1520{
	width: 100%;
	max-width: 1550px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.wrapper_1300{
	width: 100%;
	max-width: 1340px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}
.wrapper_1140{
	width: 100%;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

main{
	padding-bottom: 80px;
}
article{
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}
article + article{
	margin-top: 80px;
}

article.article_l{
    width: 100vw;
    max-width: 100vw;
	padding: 60px 20px;
    margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: var(--color-bg-gray);
}
article .wrapper{
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

section{
	line-height: 2.0;
	padding: 0 20px;
}
section + section{
	margin-top: 60px;
}

a{ transition: .3s; }
a:hover{ opacity: 0.7; }

/*パンくず*/
.breadcrumb{
	padding-top: 20px;
	margin-bottom: 60px;
	font-size: var(--12px);
	color: #5F5F5F;
}
.breadcrumb a{
	text-decoration: none;
}
.breadcrumb ul{
	display: flex;
}
.breadcrumb ul li{
	position: relative;
}
.breadcrumb ul li + li{
	margin-left: 22px;
}
.breadcrumb li:not(:last-child)::after{
	content: "";
	width: 7px;
	height:1px;
	background: #C3C3C3;
	position: absolute;
	right: -15px;
	top: 50%;
}

/*見出し*/
h1 {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 25px;
	line-height: 1.2;
}
h1 p.category{
	font-size: var(--15px);
	font-weight: 500;
	color:#5F5F5F;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
}
h1 p:not(.category){
	font-size: var(--40px);
	font-family: var(--font-family-head);
	letter-spacing: 0.08em;
	font-weight: 500;
}
h1 .dots {
	position: absolute;
	bottom: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	opacity: 0;
	animation: dotAppear 0.6s ease-out forwards;
}
h1 .dots:nth-of-type(1) { left: calc(50% - 48px); background-color: var(--color-yellow); animation-delay: 0s; }
h1 .dots:nth-of-type(2) { left: calc(50% - 18px); background-color: var(--color-red); animation-delay: 0.15s; }
h1 .dots:nth-of-type(3) { left: calc(50% + 12px); background-color: var(--color-blue); animation-delay: 0.3s; }
h1 .dots:nth-of-type(4) { left: calc(50% + 42px); background-color: var(--color-green); animation-delay: 0.45s; }
@keyframes dotAppear {
	0% { opacity: 0; transform: translateY(10px); }
	60% { opacity: 1; transform: translateY(-5px); }
	100% { opacity: 1; transform: translateY(0); }
}

h2{
	font-size: var(--24px);
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	word-break: auto-phrase;
}

h3{
	font-size: var(--20px);
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
	word-break: auto-phrase;
}
h3.h3_line{
	border-left: 3px double var(--color-text);
	border-bottom: 1px solid var(--color-text);
	padding: 0 5px 5px 15px;
}



/******************************************************************************************
	ヘッダー
******************************************************************************************/
#header_wrap{
	background: #FFFFFF;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	z-index: 1000;
	opacity: 0;
	transition:all .5s;
	transition-delay: 3.5s;
	margin-top: -15px
}
body.loaded #header_wrap{
	opacity: 1;
	margin-top: 0;
}
body.subpage #header_wrap{
	transition-delay: 0s;
	opacity: 1;
	margin-top: 0;
}
#header_wrap header{
	display: flex;
	align-items: center;
	height: 100%;
}
#header_wrap header #header_logo{
	width: 200px;
}
#header_wrap header #header_nav{
	flex: 1;
	margin: 0 45px;
}
#header_wrap header #toggle{
	width: 40px;
	height: 40px;
}

/*グローバルメニュー*/
#header_wrap header #header_nav{
	transition: opacity .5s;
}
#header_wrap header #header_nav.hidden{
	opacity: 0;
}
#header_wrap header #header_nav nav ul{
	display: flex;
	justify-content: flex-end;
}
#header_wrap header #header_nav nav ul li{
	font-size: var(--13px);
	color: #545454;
	position: relative;
}
#header_wrap header #header_nav nav ul li + li{
	margin-left: 28px;
}
#header_wrap header #header_nav nav ul li a{
	text-decoration: none;
	display: block;
	padding: 10px 2px;
	position: relative;
}
#header_wrap header #header_nav nav ul li a::after {
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #CCCCCC;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}
#header_wrap header #header_nav nav ul li a:hover::after,
#header_wrap header #header_nav nav ul li a.active::after{
	transform: scale(1, 1);
}
#header_wrap header #header_nav nav ul li ul.sub{
	display: block;
	position: absolute;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	width: calc(10em + 30px);
	padding: 10px 15px;
	transform: translateX(-50px);
	opacity:0;
	transition: opacity 0.5s ease, visibility 0s linear 0.5s;
	visibility: hidden;
}
#header_wrap header #header_nav nav ul li:hover > ul.sub {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s ease, visibility 0s linear 0s;
}
#header_wrap header #header_nav nav ul li ul.sub li{
	margin-left: 0;
}


/*ハンバーガー*/
#toggle{
	cursor: pointer;
	width: 40px;
	height:40px;
	position: relative;
}
#toggle::before{
	content: "MENU";
	position: absolute;
	font-size: var(--10px);
	bottom: -2px;
	left: 0;
	width: 100%;
	text-align: center;
	letter-spacing: 0.1em;
}
#toggle span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0;
	height: 1px;
	background-color: var(--color-text);
	width: 100%;
  }
#toggle span:nth-of-type(1) {
	top:5px;	
}
#toggle span:nth-of-type(2) {
	top:18px;
}
#toggle.active span:nth-of-type(1) {
	transform: translateY(5px) rotate(-20deg);
}
#toggle.active span:nth-of-type(2){
	transform: translateY(-8px) rotate(20deg);
}

/*開閉メニュー*/
.mainblur{
	filter: blur(8px);
}
#g_nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:90px;
	width:100%;
    height: calc(100% - 90px);
	background:rgba(255,255,255,0.85);
	transition: all 0.3s;
}
#g_nav.active{
	opacity: 1;
	z-index:999;
	overflow: auto;
	width:100%;
	-webkit-overflow-scrolling: touch;
}
#g_nav.active #g_nav-list{
    position: fixed;
    z-index: 998; 
    width: 100%;
    height: 100vh;
}

/*開閉メニューデザイン*/
#g_nav .gnav_menu{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#g_nav .gnav_menu ul{
	display: flex;
	flex-wrap: wrap;
}
#g_nav .gnav_menu ul li{
	width: 20%;
	padding: 0 10px;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
#g_nav .gnav_menu ul li a{
	display: block;
	width: 100%;
	text-decoration: none;
	font-size: var(--16px);
	padding: 10px 10px;
	border-bottom: 1px solid #CCCCCC;
}
#g_nav .gnav_menu ul li ul.sub{
	display: block;
	margin-top: 15px;
}
#g_nav .gnav_menu ul li ul.sub li{
	width: 100%;
	padding: 0;
	margin: 0;
	letter-spacing: 0.05em;
	line-height: 1.2;
}
#g_nav .gnav_menu ul li ul.sub li a{
	padding: 5px 10px;
	font-size: var(--13px);
	border: none;
	color: #545454;
}
#g_nav .contact_area{
	display: flex;
	align-items: stretch;
	margin-top: 50px;
}
#g_nav .contact_area .contact_box{
	width: calc(50% - 20px);
	margin: 0 10px;
	padding: 15px 20px;
	background: #F2F0EA;
	display: flex;
    align-items: center;
	border-radius: 3px;
}
#g_nav .contact_area .contact_box .logo{
	width: 80px;
	margin-right: 30px;
}
#g_nav .contact_area .contact_box .info{
	flex: 1;
}
#g_nav .contact_area .contact_box .name{
	flex: 1;
	font-size: var(--16px);
	font-weight: 700;
}
#g_nav .contact_area .contact_box .name span{
	font-size: var(--12px);
	font-weight: 400;
}
#g_nav .contact_area .contact_box .tel{
	display: flex;
	align-items: center;
	margin-top: 10px;
}
#g_nav .contact_area .contact_box .tel .number{
	font-size: var(--20px);
	font-weight: 700;
	background: url("../img/common/ico_tel.png") no-repeat left center;
	background-size: auto 26px;
	padding-left: 26px;
	margin-right:15px;
}
#g_nav .contact_area .contact_box .tel .note{
	font-size: var(--12px);
	font-weight: 400;
}

/******************************************************************************************
	お問い合わせ
******************************************************************************************/
#contact_wrap{
	background: #F2F0EA;
	padding: 60px 0;
	text-align: center;
}
#contact_wrap h2{
	display: inline-block;
}
#contact_wrap h2.h2_top .en{
	color: #D9CDC6;
	left: 50%;
	transform: translateX(-50%);
}
#contact_wrap .text{
	text-align: center;
	font-size: var(--15px);
	margin:-15px 0 30px 0;
}

#contact_wrap .contact_area{
	display: flex;
}
#contact_wrap .contact_area .contact_box{
	width: calc(50% - 20px);
	margin: 0 10px;
	padding: 15px 20px;
	background: #FCFCFA;
	display: flex;
    align-items: center;
	border-radius: 3px;
	text-align: left;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
#contact_wrap .contact_area .contact_box .logo{
	width: 80px;
	margin-right: 30px;
}
#contact_wrap .contact_area .contact_box .info{
	flex: 1;
}
#contact_wrap .contact_area .contact_box .name{
	flex: 1;
	font-size: var(--16px);
	font-weight: 700;
}
#contact_wrap .contact_area .contact_box .name span{
	font-size: var(--12px);
	font-weight: 400;
}
#contact_wrap .contact_area .contact_box .tel{
	display: flex;
	align-items: center;
	margin-top: 10px;
}
#contact_wrap .contact_area .contact_box .tel .number{
	font-size: var(--20px);
	font-weight: 700;
	background: url("../img/common/ico_tel.png") no-repeat left center;
	background-size: auto 26px;
	padding-left: 26px;
	margin-right:15px;
}
#contact_wrap .contact_area .contact_box .tel .note{
	font-size: var(--12px);
	font-weight: 400;
}
#contact_wrap .contact_area .contact_box .form{
	margin-top: 5px;
	text-align: right;
}
#contact_wrap .contact_area .contact_box .form .btn{
	min-width: auto;
	padding: 8px 30px;
	font-size: var(--12px);
}

/******************************************************************************************
	フッター
******************************************************************************************/
#footer_wrap{
	background: #FFFFFF;
	padding: 40px 0;
}
#footer_wrap footer{
	display: flex;
	align-items: center;
}
#footer_wrap footer .footer_info{
	width: 340px;
	padding: 0 20px 20px 20px;
	border-right: 1px solid #E4E4E4;
}
#footer_wrap footer .footer_info .logo{
	width: 180px;
	margin-bottom: 20px;
}
#footer_wrap footer .footer_info .info{
	color: #404040;
	font-size: var(--12px);
	line-height: 1.7;
}
#footer_wrap footer .footer_info .note{
	display: inline-block;
	background: #6D6D6D;
	border-radius: 3px;
	color: #FFFFFF;
	letter-spacing: 0.1em;
	padding: 0 10px;
}
#footer_wrap footer .footer_info .certification{
	margin-top: 20px;
	width: 240px;
}
#footer_wrap footer .footer_info .copyright{
	color: #777777;
	font-size: var(--10px);
	margin-top: 25px;
}

#footer_wrap footer .footer_menu{
	flex: 1;
	padding-left: 40px;
}
#footer_wrap footer .footer_menu ul{
	display: flex;
	flex-wrap: wrap;
}
#footer_wrap footer .footer_menu ul li{
	width: 16.666%;
	padding: 0 10px;
	color: #545454;
	font-size: var(--13px);
}
#footer_wrap footer .footer_menu ul li:nth-child(n+7) {
	margin-top: 40px;
}
#footer_wrap footer .footer_menu ul li a{
	text-decoration: none;
}
#footer_wrap footer .footer_menu ul li ul.sub{
	display: block;
	margin-top: 10px;
}
#footer_wrap footer .footer_menu ul li ul.sub li{
	width: 100%;
	padding: 0;
	color: #777777;
	font-size: var(--12px);
}
#footer_wrap footer .footer_menu ul li ul.sub li + li{
	margin-top: 6px;
}

#pagetop a{
	background-color: #9F8272;
	color: #fff;
	text-decoration: none;
	font-size: var(--10px);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 900;
}


/******************************************************************************************
	デザインパーツ
******************************************************************************************/
/*白ボタン*/
.btn{
	display: inline-block;
	position: relative;
	background: #FFFFFF;
	color: #404040;
	font-size: var(--13px);
	border: 1px solid #C3C3C3;
	padding: 10px 35px 10px 20px;
	min-width: 120px;
	text-decoration: none;
	margin-right: 20px;
}
.btn::before{
	content: "";
	background: #C3C3C3;
	width: 30px;
	height: 1px;
	position: absolute;
	right: -10px;
	top: 50%;
	transition: .3s;
	z-index: 10;
}
.btn:hover::before{
	right: -20px;
}

/*カラーボタン*/
.btn_big{
	position:relative;
	display:inline-block;
	text-decoration: none;
	background-image:
		radial-gradient(at 0% 0%, #FFF666, transparent),
		radial-gradient(at 100% 0%, #66C5F1, transparent),
		radial-gradient(at 100% 100%, #66C18F, transparent),
		radial-gradient(at 0% 100%, #EF6671, transparent);
	background-attachment: fixed;
	padding:12px 30px;
	min-width: 300px;
	border-radius:50px;
	text-align:center;
}
.btn_big::before{
	content:"";
	background:var(--color-bg-gray);
	background-size:auto 80%;
	overflow: hidden;
	display: block;
	position: absolute;
	top:3px;
	left:3px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	transition:opacity .3s;
	z-index:0;
	border-radius:50px;
}
.btn_big span{
	position:relative;
	z-index:1;
	font-weight:700;
}


/*リンクアイコン*/
.external::after{
	content:"";
	width: 13px;
	height: 13px;
	background: url("../img/common/ico_external.png") no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
a[href$=".pdf"]:not(.noicon)::after{
    content:"";
    display: inline-block;
	vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url("../img/common/ico_pdf.png") no-repeat;
	background-size: contain;
	margin-left: 5px;
	position: relative;
	z-index: 1;
}
i.pdf{
    content:"";
    display: inline-block;
	vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url("../img/common/ico_pdf.png") no-repeat;
	background-size: contain;
	margin-left: 5px;
	position: relative;
	z-index: 1;
}

/*2列*/
.box02{
	display: flex;
	flex-wrap: wrap;
}
.box02 .box{
	width: calc(50% - 30px);
	margin: 0 15px;
}
.box02 .box:nth-child(n+3) {
	margin-top: 20px;
}

/*写真+テキスト*/
.photoarea_l{
	display: flex;
}
.photoarea_l .photo{
	width: 30%;
	min-width: 200px;
	margin-right: 40px;
}
.photoarea_l .text{
	flex: 1;
}

/*数字+テキスト*/
.list_number {
	display: flex;
	flex-wrap: wrap;
}
.list_number dt{
    width: 3.5em;
}
.list_number dd {
    width:calc(100% - 3.5em);
}
.list_number.w2h dt{ width: 2.5em; }
.list_number.w2h dd { width:calc(100% - 2.5em); }

/*リスト：三角*/
ul.ul_circle li{
	padding-left:20px;
	position:relative;
}
ul.ul_circle li::before{
    content:  "";
    width:6px;
    height:6px;
    display:inline-block;
    background-color:#9F8272;
    border-radius:50%;
    position:absolute;
    top:calc(0.5em + 4px);
    left:2px;
}

ul.ul_cursor li{
	padding-left:20px;
	position:relative;
}
ul.ul_cursor li::before{
    content:  "";
    width:6px;
    height:6px;
    display:inline-block;
    position:absolute;
    top:calc(0.5em + 4px);
    left:0;
	border:1px solid;
	border-color:transparent #9F8272 #9F8272 transparent;
	transform: rotate(-45deg);
	border-radius:0;
	background:none;
}

/*テーブル*/
.table_style01{
	width: 100%;
	border-collapse: collapse;
}
.table_style01 th{
	padding: 22px 20px 20px 20px;
	border-top: 1px solid #E4E4E4;
	font-size: var(--14px);
	color: #545454;
	letter-spacing: 0.1em;
	font-weight: 500;
	text-align: left;
}
.table_style01 td{
	width: calc(100% - 10em);
	padding: 20px 20px;
	border-top: 1px solid #E4E4E4;
}
.table_style01 th:last-of-type,
.table_style01 td:last-of-type {
    border-bottom: 1px solid #E4E4E4;
}

/*背景付ボックス*/
.box_gray{
	background: var(--color-bg-gray);
	padding: 30px 40px;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
}



/******************************************************************************************
	TOPページ
******************************************************************************************/
/*メインビジュアル*/
#top_main{
	height: calc(100vh - 90px);
	min-height: 600px;
	display: flex;
	justify-content: center;
    align-items: center;
	position: relative;
}
#top_main #top_main_box{
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}
#top_main .top_main_txt{
	text-align: left;
	font-family: var(--font-family-head);
	line-height: 2.0;
	letter-spacing: 0.1em;
	transition: 0.8s;
	opacity: 0;
	font-size: 0;
}
#top_main .top_main_txt span{
	font-size: 86%;
}
#top_main .top_main_logo{
	width: 320px;
	height: 320px;
	opacity: 0;
	transition:  0.8s;
	margin: 0 40px;
}
body.loaded #top_main .top_main_logo{
	opacity: 1;
}
#top_main #top_main_box.loaded .top_main_txt{
	opacity: 1;
	font-size: var(--30px);
}

/* スクロール */
.scrolldown{
	position:absolute;
	bottom:20px;
	left:50%;
	opacity: 0;
	transition:all .5s;
	transition-delay: 3.5s;
}
body.loaded .scrolldown{
	opacity: 1;
}
.scrolldown span {
	position: absolute;
	left: 50%;
	top: -53px;
	color: #000000;
	font-size: 9px;
	letter-spacing: 0.05em;
	transform: translateX(-50%);
}
.scrolldown:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000000;
	animation:circlemove 1.6s linear infinite;
}
@keyframes circlemove {
	0% { bottom:30px; opacity: 0; }
	33% { bottom:20px; opacity: 1; }
	66% { bottom:10px; opacity: 0.9; }
	100% { bottom:0px; opacity: 0; }
}
.scrolldown:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 35px;
	background: #000000;
}

/*TOP用見出し*/
h2.h2_top{
	position: relative;
	letter-spacing: 0.35em;
	text-align: left;
	font-weight: 600;
	font-size: var(--15px);
	padding-top: 30px;
	margin-bottom: 50px;
	margin-top:15px;
}
h2.h2_top span{
	position: relative;
	z-index: 1;
	padding-left: 20px;
}
h2.h2_top span.en{
	color: #E4E4E4;
	font-family: var(--font-family-head);
	font-weight: 400;
	font-size: var(--80px);
	font-style: italic;
	letter-spacing:0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	padding-left: 0;
}

/*お知らせ*/
#top_news{
	background: var(--color-bg-gray);
	padding: 60px 0;
}
.top_news_list{
	display: flex;
	justify-content: space-between;
}
.top_news_list li{
	width: calc(25% - 20px);
	max-width: 250px;
}
.top_news_list li:nth-child(2){
	margin-top: -30px;	
}
.top_news_list li:nth-child(3){
	margin-top: -60px;
}
.top_news_list li:nth-child(4){
	margin-top: -90px;
}
.top_news_list li a{
	display: block;
	width: 100%;
	text-decoration: none;
}
.top_news_list li a .thumbs{
	overflow: hidden;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.top_news_list li a .thumbs img{
	transition:.5s;
}
.top_news_list li a:hover .thumbs img{
 	transform:scale(1.1, 1.1);
}
.top_news_list li a .date{
	font-size: var(--12px);
	color: #797979;
	margin-top: 10px;
	padding: 0 5px;
	transition-delay: .8s;
}
.top_news_list li a .title{
	font-size: var(--14px);
	margin-top: 4px;
	padding: 0 5px;
	line-height: 1.6;
	transition-delay: 1.2s;
}
.top_news_list li a.nolink{
	pointer-events: none;
}
.top_news_list li a.nolink:hover .thumbs img{
 	transform:scale(1);
}
.top_news_more{
	margin-top: -30px;
	text-align: right;
}

/*企業概要*/
@keyframes infinity-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}
#top_about{
	background: url("../img/top/about_bg.png") no-repeat;
	background-position: calc(50% - min(50%, 500px)) calc(50% + 2vw);
	background-size: min(50%, 1000px) auto;
	padding: 150px 0 0 0;
	position: relative;
}
#top_about .scroll-infinity{
	position: absolute;
	width: 100%;
	height: 120px;
	left: 0;
	top: 0;
	z-index: -1;
}
#top_about .scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
	margin-bottom: 60px;
}
#top_about .scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin-top:-15px;
}
#top_about .scroll-infinity__list--left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
#top_about .scroll-infinity__item {
	width: calc(100vw / 2);
	min-width: 1350px;
}
#top_about .scroll-infinity__item > img {
	width: 100%;
	padding: 0 20px;
}
#top_about .wrapper_1300{
	overflow: hidden;
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
}
#top_about .top_about_text{
	width: 45%;
	min-width: 570px;
	float: right;
	padding-bottom: 80px;
}
#top_about .top_about_text{
	font-size: var(--15px);
	color: #404040;
	line-height: 1.9;
	letter-spacing: 0.03em;
}
#top_about .top_about_text p + p{
	margin-top: 25px;
}
#top_about .top_about_text .txt-copy{
	font-family: var(--font-family-head);
	font-size: var(--24px);
}

/*写真横スクロール*/
#top_marquee{
	position: relative;
	padding: 140px 0;
	margin: 0 auto;
	text-align: center;
}
.top_marquee_main{
	overflow: hidden;
	position: relative;
	width: 100%;
	pointer-events: none;
}
.top_marquee_bg{
	overflow: hidden;
	position: relative;
	width: 100%;
	position: absolute;
	left: 0;
	top: 50px;
	z-index: -1;
}
.top_marquee_main ul, .top_marquee_bg ul{
	display: flex;
	width: max-content;
	animation: top_marquee_main 200s linear infinite;
	margin: 0;
	padding: 0;
}
.top_marquee_bg ul{
	animation: top_marquee_main 300s linear infinite;
	padding: 30px 0;
}
.top_marquee_main ul li, .top_marquee_bg ul li{
	list-style: none;
	padding: 0 35px;
	width: 350px;
	flex-shrink: 0;
}
.top_marquee_main ul li:nth-child(2n){
	margin-top: 50px;
}
.top_marquee_bg ul li:nth-child(2n-1){
	margin-top: 250px;
}
.top_marquee_main img{
	display: block;
	width: 100%;
	border-radius: 5px;
}
.top_marquee_bg img{
	display: block;
	width: 50%;
	border-radius: 5px;
	margin: 0 auto;
	-ms-filter: blur(4px);
	filter: blur(4px);
	opacity: .4;
}
.top_marquee_bg li:nth-child(3n+1) img{
	width: 40%;
}
.top_marquee_bg li:nth-child(3n) img{
	width: 60%;
}
@keyframes top_marquee_main{
	from { transform: translateX(0%); }
	to { transform: translateX(-50%); }
}

/*サービス*/
#top_works{
	background: var(--color-bg-gray);
	padding: 60px 0;
}
#top_works .top_works_link_dp{
	margin-bottom: 40px;
	padding-right: 20px;
}
#top_works .top_works_link_dp a{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	padding: 20px 40px;
}
#top_works .top_works_link_dp a .image{
	width: 80px;
}
#top_works .top_works_link_dp a .image img{
	transition:.5s;
}
#top_works .top_works_link_dp a:hover .image img{
 	transform:scale(1.1, 1.1);
}
#top_works .top_works_link_dp a .title{
	flex: 1;
	padding: 0 30px;
	font-size: var(--16px);
}
#top_works .top_works_link_dp a .en{
	font-family: var(--font-family-head);
	font-size: var(--22px);
	font-style: italic;
	color: #E8E8E8;
}

#top_works .top_works_link_list{
	display: flex;
	justify-content: space-between;
}
#top_works .top_works_link_list a{
	display: block;
	width: calc(33.333% - 35px);
	padding: 10px;
	position: relative;
}
#top_works .top_works_link_list a .image{
	border-radius: 2px;
	overflow: hidden;
}
#top_works .top_works_link_list a .image img{
	transition:.5s;
}
#top_works .top_works_link_list a:hover .image img{
 	transform:scale(1.1, 1.1);
}
#top_works .top_works_link_list a .text{
	position: absolute;
	width: calc(100% - 55px);
	height: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
    align-items: flex-end;
	flex-direction: column;
	background: linear-gradient(to right,  rgba(0,0,0,0) 30%,rgba(0,0,0,0.5) 100%);
	color: #E8E8E8;
	padding: 10px 20px;
}
#top_works .top_works_link_list a .en{
	font-family: var(--font-family-head);
	font-size: var(--22px);
	font-style: italic;
	color: #E8E8E8;
	margin-bottom: 5px;
}
#top_works .top_works_link_list a .title{
	font-size: var(--16px);
}


/******************************************************************************************
	下層ページメニュー
******************************************************************************************/
article:has(.category_menu) {
	max-width: 100%;
}
.category_menu{
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.category_menu ul{
	display: flex;
	flex-wrap: wrap;
}
.category_menu ul li{
    width: calc(50% - 60px);
    margin: 0 30px;
}
.category_menu ul li:nth-child(n+3) {
	margin-top: 50px;
}
.category_menu ul li a{
	text-decoration: none;
}
.category_menu ul li .image{
	overflow: hidden;
	border-radius: 3px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.category_menu ul li .image img{
	transition:.5s;
}
.category_menu ul li a:hover .image img{
 	transform:scale(1.1, 1.1);
}
.category_menu ul li .text{
	padding: 0 5px;
}
.category_menu ul li .text .title{
	font-size: var(--18px);
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.category_menu ul li .text .note{
	font-size: var(--13px);
	color: #777777;
}

/******************************************************************************************
	企業情報
******************************************************************************************/
/*企業概要*/
.company_profile {
    display: flex;
    align-items: flex-start;
    min-height: 200px;
}
.company_profile .logo {
    width: 240px;
    margin-right: 60px;
    position: sticky;
    top: 100px;
	padding-top: 15px;
}
.company_profile .text{
	flex: 1;
}
.company_profile .text .info{
	padding: 0 20px;
}
.company_profile .text dl{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.company_profile .text dl dt {
	width: 10em;
	padding: 22px 20px 20px 20px;
	border-top: 1px solid #E4E4E4;
	font-size: var(--14px);
	color: #545454;
	letter-spacing: 0.1em;
}
.company_profile .text dl dd {
	width: calc(100% - 10em);
	padding: 20px 20px;
	border-top: 1px solid #E4E4E4;
}
.company_profile .text dl dt:last-of-type,
.company_profile .text dl dd:last-of-type {
    border-bottom: 1px solid #E4E4E4;
}

/*沿革*/
.history_timeline{
    display: flex;
    align-items: flex-start;
    min-height: 200px;
}
.history_timeline .image{
    width: 40%;
    margin-right: 60px;
    position: sticky;
    top: 100px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.history_timeline .image .photo{
	width: 50%;
	max-width: 200px;
	order: 1;
}
.history_timeline .image .note{
	width: 50%;
	order: 0;
	font-size: var(--12px);
	padding: 0 5px 30px 0;
}
.history_timeline .image .note .title{
	font-size: var(--14px);
	margin-bottom: 5px;
}
.history_timeline .timeline{
	flex: 1;
	padding-left: 15px;
}
.history_timeline .timeline dl{
	border-left: 1px solid #E4E4E4;
	padding-left: 30px;
}
.history_timeline .timeline dt{
	position: relative;
	font-weight: bold;
	color: #9F8272;
	font-size: var(--15px);
}
.history_timeline .timeline dd + dt{
	margin-top: 30px;
}
.history_timeline .timeline dt::before{
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 15px;
	background: #9F8272;
	position: absolute;
	left: -36px;
	top: 8px;
}

.history_photoarea {
    width: 100vw;
    max-width: 100vw;
	padding: 0;
    margin-left: calc(50% - 50vw);
	margin-top: 100px;
	overflow: hidden;
}
.history_photoarea .scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}
.history_photoarea .scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
}
.history_photoarea .scroll-infinity__list--left {
	animation: infinity-scroll-left 240s infinite linear 0.5s both;
}
.history_photoarea .scroll-infinity__item {
	width: calc(100vw / 2);
	min-width: 2400px;
}
.history_photoarea .scroll-infinity__item > img {
	width: 100%;
}

/*社長ご挨拶*/
.message_ceo{
	background: url("../about/img/message/CEO_photo.jpg") no-repeat right;
	background-size: auto 100%;
	padding: 50px 40% 50px 0;
}
.message_ceo .image_sp{
	display: none;
}
.message_ceo .sign{
	width: 200px;
}

/*企業理念*/
.message_philosophy{
	text-align: center;
	font-size: var(--40px);
	font-family: var(--font-family-head);
	letter-spacing: 0.15em;
	margin-bottom: 50px;
}
.message_vision{
	text-align: center;
	margin-bottom: 50px;
}
.message_vision img{
	width: 60%;
	max-width: 260px;
}

/*取り組み*/
.action_photoarea{
	display: flex;
	align-items: flex-start;
	min-height: 200px;
}
.action_photoarea .photo{
	width: 300px;
	margin-right: 50px;
	position: sticky;
	top: 100px;
}
.action_photoarea .photo p{
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
}
.action_photoarea .text{
	flex: 1;
}
.action_video{
	text-align: center;
}
.action_video video{
	width: 100%;
	max-width: 700px;
	border: 1px solid #C3C3C3;
}

/*資格取得*/
.certified_member{
	font-weight: 700;
}


/******************************************************************************************
	新着情報
******************************************************************************************/
dl.newslist{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
dl.newslist dt {
	width: 10em;
	padding: 22px 20px 20px 20px;
	border-top: 1px solid #E4E4E4;
	font-size: var(--14px);
	color: #545454;
	letter-spacing: 0.1em;
}
dl.newslist dd {
	width: calc(100% - 10em);
	padding: 20px 20px;
	border-top: 1px solid #E4E4E4;
}
dl.newslist dt:last-of-type,
dl.newslist dd:last-of-type {
    border-bottom: 1px solid #E4E4E4;
}

/*ニュース記事*/
.news_title{
	padding: 0 10px 20px 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid #E4E4E4;
}
.news_title .title{
	font-size: var(--24px);
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}
.news_title .date{
	font-size: var(--14px);
	color: #545454;
}
.news_body{
	padding: 0 10px;
}
.news_body .image{
	text-align: center;
}
.news_body .image img{
	overflow: hidden;
	box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}


/******************************************************************************************
	採用情報
******************************************************************************************/
.btn_entry{
	width: 100%;
	min-width: auto;
	max-width: 400px;
	font-size: var(--18px);
	letter-spacing: 0.2em;
}

/******************************************************************************************
	お問い合わせ
******************************************************************************************/
.contact_form{
	width: 100%;
	max-width: 860px;
	margin: 20px auto;
}
.contact_form dl{
	margin-bottom: 40px;
}
.contact_form dt{
	font-size: var(--14px);
	color: #545454;
    letter-spacing: 0.1em;
	font-weight: 700;
	margin-bottom: 8px;
}
.contact_form dt .required{
	display: inline-block;
	vertical-align: middle;
	color: var(--color-red);
	font-weight: 500;
	font-size: var(--12px);
	letter-spacing: 0;
	line-height: 1.4;
	border: 1px solid var(--color-red);
	padding: 0 5px;
	border-radius: 2px;
	background: #FFFFFF;
	margin: -2px 5px 0 0;
}
.contact_form dd{}
.contact_form dt + dd{
	margin-bottom: 30px;
}
.contact_form .error-msg {
	color: var(--color-red);
	font-size: var(--14px);
	margin-top: 5px;
	padding: 0 5px;
}
.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	outline: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	vertical-align: middle;
}
.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form textarea:focus {
	border-color: #66afe9;
	box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);
}
.contact_form textarea {
	height: 250px;
	resize: vertical;
}
.contact_form input[type="text"]:has(+ .error-msg),
.contact_form input[type="email"]:has(+ .error-msg),
.contact_form textarea:has(+ .error-msg) {
	background-color: #ffeeee;
	border: 1px solid #ff9999;
}
.contact_form .confirm{
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #FAFAFA;
}

.contact_form button{
	position:relative;
	display:inline-block;
	text-decoration: none;
	background-image:
		radial-gradient(at 0% 0%, #FFF666, transparent),
		radial-gradient(at 100% 0%, #66C5F1, transparent),
		radial-gradient(at 100% 100%, #66C18F, transparent),
		radial-gradient(at 0% 100%, #EF6671, transparent);
	background-attachment: fixed;
	padding:12px 30px;
	min-width: 350px;
	border-radius:50px;
	text-align:center;
	transition:opacity .3s;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}
.contact_form button:hover{
	opacity: 0.7;
}
.contact_form button::before{
	content:"";
	background:#FFFFFF;
	background-size:auto 80%;
	overflow: hidden;
	display: block;
	position: absolute;
	top:3px;
	left:3px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	z-index:0;
	border-radius:50px;
}
.contact_form button span{
	position:relative;
	z-index:1;
	font-weight:700;
}
.contact_form button.btn_submit::before{
	background: #EE6B33;
	border: 2px solid #FFFFFF;
}
.contact_form button.btn_submit span{
	color: #FFFFFF;
}

.contact_form .btn_corrected {
	background-color: #888888;
	color: #FFFFFF;
	padding: 8px 30px;
	min-width: 200px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition:opacity .3s;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}
.contact_form .btn_corrected:hover{
	opacity: 0.7;
}


/******************************************************************************************
	事業内容
******************************************************************************************/
[class^="service_menu_"] a{
	text-decoration: none;
}
[class^="service_menu_"] a .image{
	overflow: hidden;
	border-radius: 3px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	text-align: center;
}
[class^="service_menu_"] a .image img{
	transition:.5s;
}
[class^="service_menu_"] a:hover .image img{
 	transform:scale(1.1, 1.1);
}
[class^="service_menu_"] a .text{
	padding: 0 5px;
}
[class^="service_menu_"] a .text .title{
	font-size: var(--18px);
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
[class^="service_menu_"] a .text .note{
	font-size: var(--13px);
	color: #777777;
}
.service_menu_dp{
	margin-bottom: 50px;
}
.service_menu_dp a .image{
	background-image:
		radial-gradient(at 0% 0%, #FFFDE5, transparent),
		radial-gradient(at 100% 0%, #E5F5FD, transparent),
		radial-gradient(at 100% 100%, #E5F4EC, transparent),
		radial-gradient(at 0% 100%, #FCE5E7, transparent);
	background-attachment: fixed;
	padding: 30px;
}
.service_menu_dp a .image img{
	width: 50%;
	max-width: 160px;
}
.service_menu_list{}
.service_menu_list ul{
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
.service_menu_list ul li{
	width: calc(33.333% - 20px);
	margin-right: 20px;
}
.service_menu_list ul li:nth-child(n+4) {
	margin-top: 50px;
}

/*データパブリッシング*/
.dp_head{
	font-size: var(--26px);
	font-family: var(--font-family-head);
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}
#scroll-icon{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
#scroll-icon svg{
	max-width: 100%;
}
#scroll-icon .linkbox{
	position: absolute;
	width: 90%;
	height: 80%;
	left: 5%;
	top: 10%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
#scroll-icon .linkbox p{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:0;
}
#scroll-icon .linkbox p a{
	display: block;
	width: 100%;
	height: 100%;
}
article.article_dp{
	margin-top: 0;
	background: 0;
}
.bg_undefined{ background: #FFFFFF; }
/*.bg_yellow{ background: #FFFDE5; }
.bg_red{ background: #FCE5E7; }
.bg_blue{ background: #E5F5FD; }
.bg_green{ background: #E5F4EC; }*/
.bg_yellow { background: #FFFEEF; }
.bg_red { background: #FEEBEC; }
.bg_blue { background: #EEF9FE; }
.bg_green { background: #EEF8F2; }

.dp_service_head{
	width: 100%;
	max-width: 1100px;
	padding: 0 15px;
	margin: 0 auto;
}
.dp_service_head p{
	font-weight: 700;
	margin-bottom: 5px;
}
article[data-bg="yellow"] .dp_service_head p{
	color:  var(--color-yellow);
}
article[data-bg="red"] .dp_service_head p{
	color:  var(--color-red);
}
article[data-bg="green"] .dp_service_head p{
	color:  var(--color-green);
}
article[data-bg="blue"] .dp_service_head p{
	color:  var(--color-blue);
}
.dp_service_head h2{
	font-size: var(--28px);
	font-weight: 700;
}
.dp_service_list{
	margin-top: 30px;
}
.dp_service_list ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 90px;
}
.dp_service_list ul li{
	width: calc(25% - 40px);
	aspect-ratio: 1 / 1;
	margin: 0 20px;
	background: #FFFFFF;
	text-align: center;
	padding: 0;
	border-radius: 50%;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	border: 5px solid;
	overflow: hidden;
	position: relative;
	transition: transform .3s;
	transform: scale(0.95);
}
.dp_service_list ul li:hover{
	/*transform:scale(1.05);*/
}
.dp_service_list ul li:nth-child(2){
	top: -30px;	
}
.dp_service_list ul li:nth-child(3){
	top: -60px;
}
.dp_service_list ul li:nth-child(4){
	top: -90px;
}
.dp_service_list ul li a{
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
	text-decoration: none;
	pointer-events: none;
}
article[data-bg="yellow"] .dp_service_list ul li{
	border-color:  var(--color-yellow);
}
article[data-bg="red"] .dp_service_list ul li{
	border-color:  var(--color-red);
}
article[data-bg="green"] .dp_service_list ul li{
	border-color:  var(--color-green);
}
article[data-bg="blue"] .dp_service_list ul li{
	border-color:  var(--color-blue);
}
.dp_service_list ul li .icon{
	margin-bottom: 5px;
}
.dp_service_list ul li .icon img{
	width: 100%;
	max-width: 95px;
}
.dp_service_list ul li .text{
	font-size: var(--17px);
	color: var(--color-text);
	line-height: 1.5;
	height: 3.8em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.article_dp .works_list{
	margin-top: 30px;
	justify-content: center;
}

/*データパブリッシング用モーダル*/
.modal-overlay {
	position: fixed;
	inset: 0;
	display: none;
	overflow: hidden;
	z-index: 1500;
}
.modal-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 85%;
	height: 85%;
	max-width: 1300px;
	max-height: calc(100vh - 120px);
	background: white;
	border-radius: 12px;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	padding: 20px;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 10;

}
.modal-overlay.show .modal-content.visible {
	opacity: 1;
}
.close-btn {
	position: fixed;
	top: 15px;
	right: 15px;
	font-size: var(--30px);
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1500;
	opacity: 0;
	transition: opacity 0.4s ease;
	line-height: 1;
	color: #FFFFFF;
}
.close-btn.visible {
	opacity: 1;
}
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(0,151,66, 0.95);
	opacity: 1;
	pointer-events: none;
	transform: scale(0);
	transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
	z-index: 0;
}

.dp_modal_title{
	height: 50px;
	border-bottom:1px solid var(--color-green);
	color: var(--color-green);
	font-size: var(--20px);
	font-weight: 700;
	line-height: 50px;
	padding: 0 20px;
	position: sticky;
	left: 0;
	top: 0;
	margin-bottom: 15px;
}
.dp_modal_container{
	display: flex;
	padding: 20px 30px;
	align-items:flex-start;
	height: calc(100% - 65px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	touch-action: pan-y;
}
.dp_modal_container::-webkit-scrollbar {
	width: 20px;
}
.dp_modal_container::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 20px;
}
.dp_modal_container::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	border: 6px solid transparent;
	background-clip: content-box;
}
.dp_modal_container .image{
	position: sticky;
	left: 0;
	top:40px;
	width: 40%;
}
.dp_modal_container .image .image_wrap{
	position: relative;
}
.dp_modal_container .image .image_wrap p:nth-child(n+2) {
	position: absolute;
	left: 0;
	top: 0;
}
.dp_modal_container .text{
	width: 60%;
	padding-left: 50px;
	font-size: var(--17px);
	line-height: 2.0;
}

.image_fade{opacity:0; transform: scale(0.7); transition: .5s;}
.modal-content.visible .image_fade{opacity: 1; transform: scale(1);}
.modal-content.visible .image_fade:nth-child(1) { transition-delay: 0.3s; }
.modal-content.visible .image_fade:nth-child(2) { transition-delay: 0.8s; }
.modal-content.visible .image_fade:nth-child(3) { transition-delay: 1.0s; }
.modal-content.visible .image_fade:nth-child(4) { transition-delay: 1.2s; }
.modal-content.visible .image_fade:nth-child(5) { transition-delay: 1.4s; }
.modal-content.visible .image_fade:nth-child(6) { transition-delay: 1.6s; }
.modal-content.visible .image_fade:nth-child(7) { transition-delay: 1.8s; }
.modal-content.visible .image_fade:nth-child(8) { transition-delay: 2.0s; }
.modal-content.visible .image_fade:nth-child(9) { transition-delay: 2.2s; }
.modal-content.visible .image_fade:nth-child(10) { transition-delay: 2.4s; }
.modal-content.visible .image_fade:nth-child(11) { transition-delay: 2.6s; }
.modal-content.visible .image_fade:nth-child(12) { transition-delay: 2.8s; }
.modal-content.visible .image_fade:nth-child(13) { transition-delay: 3.0s; }
.modal-content.visible .image_fade:nth-child(14) { transition-delay: 3.2s; }
.modal-content.visible .image_fade:nth-child(15) { transition-delay: 3.4s; }


/*取り扱いサービス リスト*/
.service_items{
	display: flex;
	flex-wrap: wrap;
	margin: -15px -15px 0 0;
}
.service_items li{
	width: calc(33.333% - 15px);
	margin-right: 15px;
	margin-top: 15px;
	font-size: var(--15px);
	font-weight: 700;
	display: flex;
	align-items: center;
	line-height: 1.4;
	background: var(--color-bg-gray);
	padding: 10px 15px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
.service_items li .icon{
	width: 50px;
	margin-right: 10px;
}
.service_items li p:last-child{
	flex: 1;
}
.service_items.w100 li{
	width: 100%;
}

/*制作のステップ*/
.service_flow {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	max-width: 860px;
	padding: 0 15px;
}
.service_flow dd {
	margin-left: 47px;
}
.service_flow_list {
	position: relative;
}
.service_flow_list::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #EEEEEE;
	margin-left: -128px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
	border-radius: 20px;
}
.service_flow_list > li {
	position: relative;
}
.service_flow_list > li:not(:last-child) {
	margin-bottom: 50px;
}
.service_flow_list > li .icon {
	font-size: var(--18px);
	width: 1.8em;
	height: 1.8em;
	line-height: 1.8;
	text-align: center;
	font-weight: bold;
	border-radius: 100vh;
	color: #FFFFFF;
	background: #9F8272;
	display: inline-block;
	margin-right: 15px;
	letter-spacing: -0.075em;
}
.service_flow_list > li dl {
	padding-left: 70px;
	position: relative;
}
.service_flow_list > li dl::before,
.service_flow_list > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
}
.service_flow_list > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #9F8272;
	border-radius: 50%;
	left: -4px;
}
.service_flow_list > li dl::after {
	width: 50px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
}
.service_flow_list > li dl dt {
	font-size: var(--19px);
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #9F8272;
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
}

/*お問い合わせボタン*/
.btn_service{
	font-size: var(--20px);
	letter-spacing: 0.1em;
}


/******************************************************************************************
	制作実績
******************************************************************************************/
.works_list{
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
.works_list li{
	width: calc(33.333% - 20px);
	margin-right: 20px;
}
.works_list li:nth-child(n+4) {
	margin-top: 50px;
}
.works_list li .image{
	overflow: hidden;
	border-radius: 3px;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.works_list li .text{
	padding: 0 5px;
}
.works_list li .category{
	font-size: var(--12px);
	line-height: 1.4;
	letter-spacing: -0.05em;
	margin-bottom: 5px;
	color: var(--color-text);
}
.works_list li .category span{
	display: inline-block;
	border: 1px solid #333333;
	padding: 0 5px;
	border-radius: 2px;
	margin-right: 5px;
	background: #FFFFFF;
}
.works_list li .category span:last-child{
	margin-right: 0;
}


/*--------------------------------------------------------------------*/
/*大口注文*/
/*--------------------------------------------------------------------*/
.order_ming{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.order_ming .image{
	order: 2;
	width: 450px;
	margin-left: 50px;
}
.order_ming .text{
	flex: 1;
	order: 1;
}
.order_ming .text .title{
	font-size: var(--30px);
	margin-bottom: 10px;
}
.order_box2 {
	padding: 5px;
	font-weight: bold;
	background: #492F16;
	border-radius: 10px;
}
.order_box2 p {
	margin: 0px;
	padding: 15px;
	border: 1px solid #FFFFFF;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: var(--28px);
	text-align: center;
}
.order_sample{
	border:1px solid #CCCCCC;
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 20px;
}
.order_sample .text{
	flex: 1;
}
.order_sample .image{
	width: 110px;
	margin-left: 20px;
}
.order_box {
	position: relative;
	padding:20px;
}
.order_box:before,.order_box:after{ 
	content:'';
	width: 40px;
	height: 60px;
	position: absolute;
	display: inline-block;
}
.order_box:before{
	border-left: solid 1px #999999;
	border-top: solid 1px #999999;
	top:0;
	left: 0;
}
.order_box:after{
	border-right: solid 1px #999999;
	border-bottom: solid 1px #999999;
	bottom:0;
	right: 0;
}

.order_mitsumori{
	background-color:#F1F1F1;
	padding:20px;
	margin:20px 0;
}
.order_mitsumori_title{
	font-size:var(--26px);
	text-align:center;
	color:#28190E;
	font-weight:bold;
}
.order_mitsumori table{
	background:#FFFFFF;
	border:none;
	width: 100%;
}
.order_mitsumori table th{
	background: url("../service/lp/img/order/arrow.png") no-repeat #492F16;
	background-position: center bottom 15px;
	text-align:center;
	border:none;
	color:#FFFFFF;
	padding:45px 30px;
	font-size: var(--18px);
}
.order_mitsumori table td{
	border-bottom:#28190E 1px solid;
	border-top:#28190E 1px solid;
	border-left:none;
	border-right:none;
	padding:10px 20px;
}
.order_case_list{
	display: flex;
	justify-content: center;
}
.order_case_list li{
	text-align: center;
	margin: 0 15px;
}
.order_case_list li p{
	font-size: var(--13px);
	margin-top: 10px;
}
.order_box3 {
    padding: 5px;
    margin: 10px 0;
    font-weight: bold;
    background:  #492F16;
    border-radius: 5px;
}
.order_box3 p{
	margin:0px;
	padding:10px;
	border:1px solid #FFFFFF;
	border-radius: 5px;
	color:#FFFFFF;
	font-size:var(--20px);
	text-align:center;
} 
.order_tel{
	text-align:center;
	font-size:var(--30px);
	color:#000000;
	font-weight:bold;
	padding:3px 0 3px 30px;
}
.order_tel img{
	vertical-align: middle;
}
.voice_box_l {
  position: relative;
  display: block;
  margin: 15px 0 0px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
}
.voice_box_l:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}

.voice_box_l:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}
.voice_box_r {
  position: relative;
  display: block;
  margin: 15px 15px 0 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
}
.voice_box_r:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}
.voice_box_r:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}


/*--------------------------------------------------------------------*/
/*XMF Remote*/
/*--------------------------------------------------------------------*/
.xmf_info{
    background:#FDEFF5;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.xmf_info .title{
    width: 240px;
    background: #F077BA;
    padding:40px 30px 40px 40px;
    margin-right: 80px;
    position: relative;
}
.xmf_info .title::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    left: 100%;
    top: 0;
    background:linear-gradient(to bottom left, transparent 50%, #F077BA calc(50% + 1px) ,#F077BA 50.5%) top left/ 100% 50.5% no-repeat,
    linear-gradient(to top left, transparent 50%, #F077BA calc(50% + 1px) , #F077BA 50%) bottom left / 100% 50% no-repeat;
}

.xmf_info.security{background:#FFFEEE;}
.xmf_info.security .title{background:#F0E13C;}
.xmf_info.security .title::before{ background:linear-gradient(to bottom left, transparent 50%, #F0E13C calc(50% + 1px) ,#F0E13C 50.5%) top left/ 100% 50.5% no-repeat, linear-gradient(to top left, transparent 50%, #F0E13C calc(50% + 1px) , #F0E13C 50%) bottom left / 100% 50% no-repeat;}

.xmf_info.response{background:#EAF6FD;}
.xmf_info.response .title{background:#5DC2F0;}
.xmf_info.response .title::before{ background:linear-gradient(to bottom left, transparent 50%, #5DC2F0 calc(50% + 1px) ,#5DC2F0 50.5%) top left/ 100% 50.5% no-repeat, linear-gradient(to top left, transparent 50%, #5DC2F0 calc(50% + 1px) , #5DC2F0 50%) bottom left / 100% 50% no-repeat;}

.xmf_info.ecology{background:#EBF5EC;}
.xmf_info.ecology .title{background:#5DBE88;}
.xmf_info.ecology .title::before{ background:linear-gradient(to bottom left, transparent 50%, #5DBE88 calc(50% + 1px) ,#5DBE88 50.5%) top left/ 100% 50.5% no-repeat, linear-gradient(to top left, transparent 50%, #5DBE88 calc(50% + 1px) , #5DBE88 50%) bottom left / 100% 50% no-repeat;}

.xmf_info .text{
    width: calc(100% - 320px);
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 40px 20px 0;
}
.xmf_info .text p + p{
    margin-top: 20px;
}
.xmf_info .text img{
    width: 80px;
    padding: 0 3px 3px 0;
    vertical-align: bottom;
}

.xmf_image{
    margin-top: 50px;
}
.xmf_image p{
    padding: 40px;
    background: #DDDDDD;
    margin-bottom: 30px;
}
.xmf_contact{
    margin: 50px 0;
    padding: 0 10px;
    text-align: center;
}


/*--------------------------------------------------------------------*/
/*limex*/
/*--------------------------------------------------------------------*/
.limex_wrap .flex_box, 
.limex_wrap .flex_item_box {
    display: flex;
}
.limex_wrap .img_pc {
    display: block !important;
}
.limex_wrap .img_sp {
    display: none !important;
}
.limex_wrap .limex_img{
	overflow: hidden;
}
.limex_wrap .limex_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.limex_wrap .limex_info_box {
   	flex: 1;
    max-height: auto;
    border-top: 1px solid #EEF0F0;
    border-bottom: 1px solid #EEF0F0;
    background: #FFF;
    background-image: 
        linear-gradient(45deg, #EEF0F0 30px, transparent 0),
        linear-gradient(-45deg, #EEF0F0 30px, transparent 0),
        linear-gradient(135deg, #EEF0F0 30px, transparent 0),
        linear-gradient(-135deg, #EEF0F0 30px, transparent 0);
    padding: 44px 35px;
}
.limex_wrap .limex_info_box .text img {
    padding: 0 3px 3px 0;
    vertical-align: middle;
}
.limex_wrap .limex_info_box .text span {
    padding-left: 10px;
    font-size: 18px;
}
.limex_wrap .limex_info_box p {
    font-size: 16px;
}
.limex_wrap .limex_item_text {
    background: #006699;
    padding: 20px 18px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
}
.limex_wrap .limex_item_area {
    background: #F6F7F7;
    padding: 25px 15px 35px 15px;
}
.limex_wrap .item-zirei {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.limex_wrap .item-zirei::before,
.limex_wrap .item-zirei::after {
    background-color: #006699;
    content: "";
    height: 2px;
    width: 40px;
}
.limex_wrap .item-zirei::before {
    margin-right: 15px;
}
.limex_wrap .item-zirei::after {
    margin-left: 15px;
}
.limex_wrap .item-zirei p {
    color: #006699;
    font-size: 20px;
}
.limex_wrap .limex_item_box {
    width: 100%;
    text-align: center;
}
.limex_wrap .limex_item_box p {
    padding-top: 15px;
    font-size: 16px;
}
.limex_wrap .limex_contact {
    margin: 50px 0;
    text-align: center;
}