@charset "UTF-8";
/* -------------------------------------------

全体設定

 ---------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
	min-width: 1200px;
	color: #333;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	line-height: 1.4;
}
body > div {
	overflow: hidden;
}
a {
	color: #333;
	text-decoration: none;
	transition: 0.6s;
	cursor: pointer !important;
}
a:hover {
	opacity: 0.5;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
@media screen and (min-width: 1920px) {
	body {
		max-width:1920px;
		width: 1920px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 680px) {
	body {
		min-width: 0;
		font-size: 4vw;
	}
}


/* -------------------------------------------

ローディング画面

 ---------------------------------------------------*/
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
}
#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loading-container {
    position: relative;
    width: 100%;
}
.loading-line {
    width: 0%;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.1s linear;
}
.loading-percent {
    position: absolute;
    right: 14vw;
    top: 50%;
	margin-top: -1.04166vw;
	transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.83333vw;
	font-family: "Montserrat", sans-serif;
	font-weight: 200;
}
.loading-percent span.percent-number{
	font-size: 1.6666vw;
	margin-right: 0.26041vw;
}
.loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
	margin-left: -18vw;
	margin-top: -1.979166vw;
    transform: translate(-50%, -50%);
    width: 23.0vw;
    height: auto;
    z-index: -1;
}
.loading-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 1024px) {
	.loading-percent {
	    right: 14vw;
	    top: 50%;
		margin-top: -1.953125vw;
		transform: translate(-50%, -50%);
	}
	.loading-percent span.percent-number{
		font-size: 3.125vw;
		margin-right: 0.48828vw;
	}
	.loading-image {
		margin-left: -18vw;
		margin-top: -2.9296875vw;
	    width: 30.0vw;
	}
}
@media screen and (max-width: 768px) {
	.loading-percent {
	    right: 14vw;
	    top: 50%;
		margin-top: -3.90625vw;
		transform: translate(-50%, -50%);
		font-size: 3.38541vw;
	}
	.loading-percent span.percent-number{
		font-size: 6.25vw;
		margin-right: 0.48828vw;
	}
	.loading-image {
		margin-left: -18vw;
		margin-top: -5.2083vw;
	    width: 60.0vw;
	}
}
@media screen and (max-width: 680px) {
.loading-percent {
    top: 50%;
    left: 50%;
	right: 50%;
	margin-top: -10vw;
	margin-left: -1em;
    transform: translate(-50%, -50%);
	font-size: 4vw;
}
.loading-percent span.percent-number{
	font-size: 5vw;
	margin-right: 0.4411vw;
}
.loading-image {
	margin-left: 0;
	margin-top: -40vw;
    transform: translate(-50%, -50%);
    width: 50vw;
}
.loading-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}




/* -------------------------------------------

共通設定

 ---------------------------------------------------*/
.f_m{
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
}
.tit_sec .f_m{
	font-size: 50px;
	letter-spacing: 0.14em;
}
.tit_sec .sub{
	display: block;
	color: #BB3910;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-left: 4px;
}
.tit_page{
	max-width: 1560px;
	padding: 0 80px;
	margin: 208px auto 88px;
	box-sizing: border-box;
}
.btn{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 220px;
	height: 48px;
	padding: 0 0 0 32px;
	color: #333;
	letter-spacing: 0.1em;
	border: 1px solid #ABABAB;
	box-sizing: border-box;
	border-radius: 40px;
	overflow: hidden;
	z-index: 1;
}
.btn:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #333;
	top: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.btn:hover {
	color: #fff;
	opacity: 1;
}
.btn:hover:after {
	transform: scale(1, 1);
}
.btn:before{
	content: '';
	position: absolute;
	width: 9px;
	height: 9px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 24px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
	box-sizing: border-box;
}
.btn:hover:before,
#contact_page .form .btn_form:hover:before{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.btn_contact{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 194px;
	height: 48px;
	color: #BB3910;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0;
	background: #fff;
	border: 1px solid #E0714E;
	box-sizing: border-box;
}
.btn_contact img.off{
	display: block;
	width: 32px;
	margin: 0 6px 0 0;
}
.btn_contact:hover img.off{
	display: none;
}
.btn_contact img.on{
	display: none;
	width: 32px;
	margin: 0 6px 0 0;
}
.btn_contact:hover img.on{
	display: block;
	width: 32px;
	margin: 0 6px 0 0;
}
.btn_contact:before{
	display: none;
}
.btn_contact:after {
	background: #E0714E;
}
.btn_contact:hover {
	color: #fff;
}
@media screen and (max-width: 680px) {
	.tit_sec .f_m{
		font-size: 9.5vw;
	}
	.tit_sec .sub{
		font-size: 3.25vw;
		margin: 1vw 0 0 0.5vw;
	}
	.tit_page{
		padding: 0 8vw;
		margin: 24vw auto 12vw;
	}
	.btn{
		justify-content: center;
		width: 55vw;
		height: 12vw;
		font-size: 3.5vw;
		padding: 0;
		border-radius: 10vw;
		background: #fff;
	}
	.btn:before{
		width: 2vw;
		height: 2vw;
		right: 8vw;
	}
	.btn:hover:before{
		border-top: 2px solid #333;
		border-right: 2px solid #333;
	}
	.btn:after{
		background: #fff;
	}
	.btn:hover{
		color: #333;
	}	

	.btn_contact{
		width: 55vw;
		height: 12vw;
	}

	.btn_contact:after {
		background: #fff;
	}

	.btn_contact:hover {
		color: #E0714E;
		opacity: 0.5;
	}
	.btn_contact img{
		width: 8vw;
		margin: 0 1vw 0 0;
	}
	
	
	.btn_contact img.off{
		display: block!important;
		width: 8vw!important;
		margin: 0 1vw 0 0!important;
	}
	.btn_contact:hover img.off{
		display: inline-block!important;
		width: 8vw!important;
		margin: 0 1vw 0 0!important;
	}
	.btn_contact img.on{
		display: none!important;
	}
	.btn_contact:hover img.on{
		display: none!important;
	}	
}


/* -------------------------------------------

ヘッダー

 ---------------------------------------------------*/
header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
	padding: 0 40px 0 56px;
	background: #fff;
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.08);
	position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    z-index: 990;
}
header .logo{
	width: 182px;
}
header .gnav{
	display: flex;
	align-items: center;
}
header .gnav ul{
	display: flex;
}
header .gnav ul li{
	margin: 0 40px 0 0;
}
header .gnav ul li.current{
	position: relative;
}
header .gnav ul li.current:after{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: -6px;
	background: #E0714E;
}
header .gnav ul li a{
	font-size: 17px;
	letter-spacing: 0.12em;
}
header .gnav ul li a.f_m{
	font-weight: 500;
}
header .gnav .tel{
	display: flex;
	align-items: center;
	letter-spacing: 0.06em;
}
header .gnav .tel{
	pointer-events: none;
}
header .gnav .tel img{
	width: 32px;
	margin: 0 6px 0 0;
}
header .gnav .tel{
	font-size: 18px;
	font-weight: 600;
	margin: 0 32px 0 0;
}
header .gnav_switch {
	display: none;
}
header .gnav {
	position: static;
	width: auto;
	height: auto;
	background-color: #fff;
	transform: translateZ(0);
}

@media screen and (max-width: 680px) {
    header {
		position: fixed;
        display: flex;
        align-items: center;
        height: 20vw;
        padding: 0 7.5vw;
		box-shadow: none ;
    }
    header .logo {
        width: 32.5vw;
    }
	header .gnav ul{
		display: block;
		width: 100%;
		margin-bottom: 8vw;
	}
	header .gnav ul li.current:after{
		display: none;
	}
	header .gnav ul li{
		position: relative;
		width: 100%;
		padding: 6vw 5vw;
		margin: 0;
		font-size: 3.5vw;
		border-bottom: 1px solid #ABABAB;
		box-sizing: border-box;
	}
	header .gnav ul li:before{
		content: '';
		width: 1.25vw;
		height: 1.25vw;
		border: 0;
		border-top: solid 1px #2c2c2c;
		border-right: solid 1px #2c2c2c;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		right: 2.5vw;
		bottom: 0;
		margin: auto;
	}
	header .gnav ul li a{
		font-size: 3.5vw;
		color: #333;
		display: block;
	}
    header .gnav .tel {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55vw;
        height: 12vw;
        padding: 0;
        color: #333;
        letter-spacing: 0.1em;
        border: 1px solid #ABABAB;
        box-sizing: border-box;
        border-radius: 10vw;
		background: #fff;
        overflow: hidden;
        z-index: 1;
        font-size: 3.5vw;
        font-weight: 600;
        margin: 0;
		pointer-events: auto;
    }
    header .gnav .tel.btn img {
        width: 28px;
        margin: 0 6px 0 0;
    }
    header .gnav .tel.btn:before {
        display: none;
    }
    header .gnav .tel,
    header .gnav .btn_contact	{
        margin: 6vw 0 3vw ;
		width: 100%;
		height: 15.25vw;
    }
    header .gnav .btn_contact.smp_only{
		display: flex!important;
    }
	header .gnav .open_time{
		font-size: 3.5vw;
		text-align: center;
	}
	/* ハンバーガーボタン */
    header .gnav_switch {
        position: relative;
        display: block;
        width: 6.5vw;
        cursor: pointer;
        right: 0;
        top: 0;
    }
    header .gnav_switch span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000000;
        transition: all .5s;
    }
    header .gnav_switch.active span {
        background-color: #000000;
    }
    header .gnav_switch.active span:nth-of-type(1) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 50%) rotate(-45deg);
    }
    header .gnav_switch.active span:nth-of-type(2) {
        opacity: 0;
    }
    header .gnav_switch span:nth-of-type(2) {
        margin: 1.6vw 0;
    }
    header .gnav_switch.active span:nth-of-type(3) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 50%) rotate(45deg);
    }
    header .gnav_switch {
        cursor: pointer;
        margin-left: auto;
    }
    /* オーバーレイ */
    .menu-overlay {
        position: fixed;
        top: 20vw;
        left: 0;
        width: 100vw;
        height: calc(100svh - 20vw);
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* ドロワーメニュー */
    header .gnav {
        display: block;
        position: fixed;
        top: 20vw;
        right: -74vw;
        width: 74vw;
        height: calc(100svh - 20vw);
        background: #F5F5F5;
        z-index: 999;
		padding: 5vw 6vw;
        transition: right 0.6s 0s ease;
        overflow-y: auto;
		box-sizing: border-box;
    }
    header .gnav.active {
        right: 0;
    }
    /* スクロール防止 */
    body.menu-open {
        overflow: hidden;
    }
}
/* -------------------------------------------

フッター

 ---------------------------------------------------*/
footer{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 64px 90px;
	background: #F5F5F5;
}
footer .inner01 .logo{
	width: 182px;
	margin: 0 0 32px;
}
footer .inner01 p{
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
}
footer .inner02{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
footer .inner02 .link{
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin: 24px 0 12px;
}
footer .inner02 .copyright{
	display: block;
	font-size: 12px;
}
@media screen and (max-width: 680px) {
	footer{
		display: block;
		padding: 12vw 8vw 6vw;
	}
	footer .inner01{
		display: block;
	}
	footer .inner01 .logo{
		width: 45.5vw;
		margin: 0 auto 8vw;
	}
	footer .inner01 p{
		font-size: 3.5vw;
		line-height: 1.6;
		margin: 0 0 1vw 5.5vw;
	}
	footer .inner02{
		align-items: center;
		margin: 8vw 0 0;
	}
	footer .inner02 .link{
		font-size: 3.5vw;
		margin: 6vw 0 8vw;
	}
	footer .inner02 .copyright{
		font-size: 3vw;
	}
}


/* -------------------------------------------

TOPページ

 ---------------------------------------------------*/
.top_mv{
	position: relative;
	margin-top: 120px;
}
.top_mv .logo{
	position: absolute;
	width: 728px;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 9;
}
.top_mv_slide {
	height: 680px;
	overflow: hidden;
}
.top_mv_slide_smp{
	display: none;
}
.top_mv_slide img {
	width: 100%;
	height: auto;
}
.top_mv_slide.slick-dotted.slick-slider{
	margin: 0;
}
.dots_box {
	position: absolute;
    display: flex;
	align-items: center;
    justify-content: center;
	width: 58px;
	height: 16px;
	background: #333;
	border-radius: 100px;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
}
.dots_box li {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.dots_box li:hover,
.dots_box li.slick-active {
    background: #FF7B51;
}
.dots_box li:nth-child(2){
	margin: 0 8px;
}
.dots_box li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
#top_page .overview{
	background: url("./images/top/bg_overview.png") no-repeat right top;
/*	min-width: 1920px;*/
}
#top_page .overview .inner{
	max-width: 1560px;
	margin: 0 auto;
	padding: 128px 80px;
	box-sizing: border-box;
}
#top_page .overview .inner .cap{
	font-size: 30px;
	line-height: 1.6;
	letter-spacing: 0.14em;
}
#top_page .overview .inner .cap span{
	display: inline-block;
	padding: 0 0 8px;
	margin: 0 0 12px;
	border-bottom: 1px solid #ABABAB;
	background: #fff;
}
#top_page .overview .inner .txt{
	line-height: 2.5;
	letter-spacing: 0.1em;
	margin: 38px 0 0;
}
#top_page .service{
	max-width: 1200px;
	padding: 102px 0 118px;
	margin: 0 auto 128px;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
	border-radius: 23px;
	overflow: hidden;
}
#top_page .service .tit_sec{
	float: right;
	width: 50%;
}
#top_page .service .img{
	float: left;
	width: 50%;
}
#top_page .service .img img{
	width: 384px;
	margin: 0 0 0 120px;
}
#top_page .service .inner{
	float: right;
	width: 50%;
}
#top_page .service .inner ul{
	display: flex;
	flex-wrap: wrap;
	margin: 24px 0 56px;
}
#top_page .service .inner ul li{
	display: flex;
	align-items: baseline;
	width: 207px;
	margin: 24px 0 0;
}
#top_page .service .inner ul li:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #333;
	margin: 0 10px 0 0;
}
#top_page .works{
	position: relative;
	padding: 120px 0 136px;
	background: url("./images/top/bg_works.png") no-repeat center bottom;
}
#top_page .works .top_area{
	display: flex;
	align-items: center;
	max-width: 1560px;
	padding: 0 80px;
	margin: 0 auto 80px;
	box-sizing: border-box;
}
#top_page .works .top_area .tit_sec{
	color: #fff;
}
#top_page .works .top_area .tit_sec .sub{
	color: #FF7B51;
}
#top_page .works .top_area .arrow_box{
	display: flex;
	align-items: center;
	margin: 0 0 0 80px;
}
#top_page .works .top_area .arrow_box .slick_pause{
	width: 14px;
	height: 16px;
	margin: 0 24px;
	cursor: pointer;
}
#top_page .works .top_area .arrow_box .slick_pause:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url("./images/top/icon_slick_pause.png") no-repeat;
	background-size: cover;
}
#top_page .works .top_area .arrow_box .slick_pause.paused:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url("./images/top/icon_slick_play.png") no-repeat;
	background-size: cover;
}
#top_page .works .top_area .arrow_box .slick-arrow{
	display: flex;
	align-items: center;
	width: 22px;
	cursor: pointer;
}
#top_page .works .top_area .arrow_box .slick-arrow img{
	vertical-align: middle;
}
#top_page .works .top_area .arrow_box .slick-arrow.next-arrow img{
	transform: scale(-1, 1);
}
#top_page .works .cnt{
	margin: 0 26px;
	width: 392px;
}
#top_page .works .cnt a{
	color: #fff;
	letter-spacing: 0.1em;
}
#top_page .works .cnt a img{
	width: 392px;
	height: 278px;
	object-fit: contain;
}
#top_page .works .cnt a .name{
	margin: 28px 8px 8px;
}
#top_page .works .cnt a .cate{
	font-size: 13px;
	padding: 0 8px;
}
#top_page .works .btn{
	position: absolute;
	color: #fff;
	top: 148px;
	left: 75vw;
	border: 1px solid #fff;
}
#top_page .works .btn:after {
	background: #fff;
}
#top_page .works .btn:hover {
	color: #333;
}
#top_page .works .btn:before{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
#top_page .works .btn:hover:before{
	border-top: 2px solid #333;
	border-right: 2px solid #333;
}
.news{
	display: flex;
	justify-content: center;
	margin: 104px 80px;
}
.news .list{
	width: 1160px;
	margin: 0 0 0 80px;
}
.news .list li{
	display: flex;
	line-height: 1.7;
	letter-spacing: 0.1em;
	padding: 24px 0;
}
.news .list li .date{
	font-size: 15px;
	margin: 0 34px 0 0;
}
.news .list li p{
	font-size: 17px;
}
.news .list li p a{
	text-decoration: underline;
}
.news .list li .icon{
	height: 23px;
	font-size: 12px;
	padding: 0 12px;
	margin: 0 0 0 12px;
	border: 1px solid #ABABAB;
	box-sizing: border-box;
	border-radius: 34px;
}
@media screen and (max-width: 1500px) {
	#top_page .overview{
		background: url("./images/top/bg_overview.png") no-repeat right 30px;
		min-width: 1550px;
		transition: all 0.5s 0s ease;
	}
}
@media screen and (max-width: 1360px) {
	#top_page .service{
		max-width: 1040px;
	}
	#top_page .service .img img{
		margin: 0 0 0 80px;
	}	
}
@media screen and (max-width: 680px) {
	.top_mv {
		margin-top: 20vw;
	}
	.top_mv .logo{
		width: 88vw;
	}
	.top_mv_slide {
		display: none;
	}
	.top_mv_slide_smp{
		display: block;
		height: 139vw;
	}
	.dots_box {
		width: 16.5vw;
		height: 4vw;
		border-radius: 25vw;
		bottom: 6vw;
	}
	.dots_box li {
    	width: 1.5vw;
    	height: 1.5vw;
	}
	.dots_box li:nth-child(2){
		margin: 0 3vw;
	}
	#top_page .tit_sec .f_m{
		font-size: 6.5vw;
	}

	#top_page .overview{
		background: url("./images/top/bg_overview.png") no-repeat right -135vw top -120vw;
		min-width: inherit;
	}
	#top_page .overview .inner{
		padding: 16vw 8vw 14vw;
	}
	#top_page .overview .inner .cap{
		font-size: 4.25vw;
	}
	#top_page .overview .inner .cap span{
		padding: 0 0 1vw;
		margin: 0 0 3vw;
	}
	#top_page .overview .inner .txt{
		font-size: 3.25vw;
		line-height: 2.1;
		margin: 5vw 0 0;
	}
	#top_page .service{
		padding: 14vw 8vw;
		margin: 0 6vw 16vw;
		border-radius: 0;
	}
	#top_page .service .tit_sec,
	#top_page .service .img,
	#top_page .service .inner{
		float: none;
		width: 100%;
	}	
	#top_page .service .img{
		margin: 2vw 0 0;
	}
	#top_page .service .img img{
		width: 100%;
		margin: 0 0 8vw;
	}
	#top_page .service .inner ul{
		margin: 8vw 0;
	}
	#top_page .service .inner ul li{
		width: 50%;
		font-size: 3.25vw;
		margin: 2vw 0 0;
	}
	#top_page .service .inner ul li:before{
		width: 2vw;
		height: 2vw;
		margin: 0 2vw 0 0;
	}
	#top_page .service .inner .btn{
		margin: 0 auto;
		padding-right: 4vw;
	}
	#top_page .works{
		padding: 14vw 0 16vw;
	}
	#top_page .works .top_area{
		justify-content: space-between;
		padding: 0 8vw;
		margin: 0 0 8vw;
	}
	#top_page .works .top_area .arrow_box{
		margin: 0 4vw 0 0
	}
	#top_page .works .top_area .arrow_box .slick_pause{
		width: 4vw;
		height: 4vw;
		margin: 0 6.5vw;
	}
	#top_page .works .top_area .arrow_box .slick-arrow{
		width: 5.5vw;
	}
	.slick-initialized .slick-slide{
		width: 100vw;
	}
	#top_page .works .cnt{
		margin: 0 2.5vw;
	}
	#top_page .works .cnt a img{
		width: 65vw;
		height: 46.25vw;
	}
	#top_page .works .cnt a .name{
		font-size: 3.5vw;
		line-height: 1.4;
		margin: 6vw 2vw 2vw;
	}
	#top_page .works .cnt a .cate{
		font-size: 3vw;
		padding: 0 2vw;
	}
	#top_page .works .btn{
		position: relative;
		top: auto;
		right: auto;
		left:auto;
		margin: 8vw auto 0;
		background-color: transparent;
		padding-right: 4vw;
	}
	.news{
		display: block;
		margin: 14vw 8vw;
	}
	.news .list{
		width: 100%;
		margin: 0;
	}
	.news .list li{
		flex-wrap: wrap;
		line-height: 1.6;
		padding: 7vw 0 0;
	}
	.news .list li .date{
		width: 100%;
		font-size: 3.25vw;
		margin: 0 0 1vw;
	}
	.news .list li p{
		font-size: 3.5vw;
	}
	.news .list li .icon{
		width: 13.75vw;
		height: 5.75vw;
		font-size: 3vw;
		padding: 0 3vw;
		margin: 0 0 0 3vw;
		border-radius: 8.5vw;
	}
}

/* -------------------------------------------

事業内容

 ---------------------------------------------------*/
#service_page .overview{
	height: 826px;
	text-align: center;
	padding: 96px 80px 0;
	background: url("./images/service/bg_overview.png") no-repeat;
}
#service_page .overview .tit{
	display: inline-block;
	font-size: 34px;
	letter-spacing: 0.14em;
	padding: 0 0 12px;
	border-bottom: 1px solid #ABABAB;
}
#service_page .overview .cap{
	line-height: 1.75;
	letter-spacing: 0.01em;
	margin: 32px 0 0;
}
#service_page .overview .reason{
	max-width: 1400px;
	color: #fff;
	padding: 68px 0 100px;
	margin: 52px auto 0;
	background-image: linear-gradient(90deg, #2e2e2e, #3e3e3e 53%, #2e2e2e);
}
#service_page .overview .reason .tit_reason{
	font-size: 28px;
	letter-spacing: 0.14em;
}
#service_page .overview .reason .tit_reason .name{
	font-size: 33px;
}
#service_page .overview .reason .tit_reason .num{
	font-size: 44px;
}
#service_page .overview .reason ul{
	display: flex;
	justify-content: space-between;
	margin: 72px 0 0;
	padding: 0 80px;
}
#service_page .overview .reason ul li{
	position: relative;
	width: 368px;
}
#service_page .overview .reason ul li:nth-child(2){
	margin: 0 40px;
}
#service_page .overview .reason ul li .num{
	position: absolute;
	display: flex;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 26px;
	font-weight: 300;
	left: 0;
	top: 0;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#service_page .overview .reason ul li .icon{
	width: 170px;
	margin: 0 auto;
}
#service_page .overview .reason ul li .tit_cnt{
	font-size: 22px;
	letter-spacing: 0.1em;
	text-align: center;
	margin: 32px 0 24px;
}
#service_page .overview .reason ul li .txt{
	line-height: 1.75;
	letter-spacing: 0.1em;
	text-align: left;
}
#service_page .wrapper{
	max-width: 1400px;
	padding: 0 80px;
	margin: 0 auto 32px;
}
#service_page .tit_service{
	display: flex;
	align-items: center;
	font-size: 34px;
	letter-spacing: 0.18em;
	margin: 128px 0 72px;
}

#service_page .tit_service img{
	width: 50px;
	margin: 0 30px 0 0;
}
#service_page .tit_service span{
	color: #BB3910;
	font-size: 16px;
	letter-spacing: 0.1em;
	margin: 5px 0 0 16px;
}
#service_page .handouts .tit_service:after{
	border:1px solid #E0714E;
	content: '';
	position: absolute;
	top: 50%;
	width: calc(100% - 530px);
	left: 530px;
}
#service_page .handouts ul{
	display: flex;
	flex-wrap: wrap;
	max-width: 1240px;
	margin: 0 auto;
	justify-content: space-between;
}
#service_page .handouts ul li{
	width: 49.55%;
	padding: 40px 40px 48px;
	margin: 0 0 10px;
	background: #F5F5F5;
	box-sizing: border-box;
}
#service_page .handouts ul li .tit{
	display: flex;
	align-items: baseline;
	font-size: 20px;
}
#service_page .handouts ul li .tit:before,
#service_page .ad .wrap .tit:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #BB3910;
	margin: 0 16px 0 0;
}
#service_page .handouts ul li .img{
	width: 370px;
	margin: 32px auto 0;
}
#service_page .ad .tit_service img{
	width: 46px;
}
#service_page .ad .wrap{
	max-width: 1240px;
	padding: 40px;
	margin: 0 auto;
	background: #F5F5F5;
	box-sizing: border-box;
}
#service_page .ad .tit_service:after{
	border:1px solid #E0714E;
	content: '';
	position: absolute;
	top: 50%;
	width: calc(100% - 810px);
	left: 810px;
}
#service_page .ad .wrap .tit{
	display: flex;
	align-items: center;
	font-size: 20px;
}
#service_page .ad .wrap .cnt{
	display: flex;
	justify-content: space-between;
	margin: 32px 0 0;
}
#service_page .ad .wrap .cnt .img{
	max-width: 868px;
	margin: 0 48px 0 24px;
}
#service_page .ad .wrap .cnt .inner .txt{
	line-height: 1.75;
	letter-spacing: 0.1em;
}
#service_page .ad .wrap .cnt .inner .btn,
#contact_page .form .btn_form{
	color: #BB3910;
	margin: 48px 0 0;
	background: #fff;
	border: 1px solid #E0714E;
}
#service_page .ad .wrap .cnt .inner .btn img{
	width: 14px;
	margin: 0 30px 0 0;
}
#service_page .ad .wrap .cnt .inner .btn:before{
	display: none;
}
#service_page .ad .wrap .cnt .inner .btn:after,
#contact_page .form .btn_form:after{
	background: #E0714E;
}
#service_page .ad .wrap .cnt .inner .btn:hover,
#contact_page .form .btn_form:hover{
	color: #fff;
}
.btn img.off{
	display: block;
	width: 32px;
	margin: 0 6px 0 0;
}
.btn:hover img.off{
	display: none;
}
.btn img.on{
	display: none;
	width: 32px;
	margin: 0 6px 0 0;
}
.btn:hover img.on{
	display: block;
	width: 32px;
	margin: 0 6px 0 0;
}
#service_page .consideration{
	display: flex;
	height: 504px;
	margin: 128px 0 0;
	background: #F7FBF3;
}
#service_page .consideration .img{
	width: calc(100% - 804px);
}
#service_page .consideration .cnt{
	width: 804px;
	padding: 64px 72px 0;
	box-sizing: border-box;
}
#service_page .consideration .cnt .tit{
	font-size: 34px;
	letter-spacing: 0.1em;
	padding: 0 0 10px;
	margin: 0 0 32px;
	border-bottom: 1px solid #4DA80D;
}
#service_page .consideration .cnt .txt{
	line-height: 1.75;
	letter-spacing: 0.1em;
}
#service_page .consideration .cnt ul{
	padding: 24px;
	margin: 16px 0;
	background: #EFF8E5;
}
#service_page .consideration .cnt ul li{
	display: flex;
	align-items: center;
	font-weight: 500;
	line-height: 1.75;
}
#service_page .consideration .cnt ul li:nth-child(2){
	margin: 10px 0;
}
#service_page .consideration .cnt ul li img{
	width: 14px;
	margin: 0 6px 0 0;
}
@media screen and (max-width: 1560px) {
	#service_page .consideration .img {
		width: calc(100% - 804px);
	}
	#service_page .consideration .img img{
		height: 100%;
		object-fit: cover;
	}
	#service_page .consideration .cnt{
		width: 804px;
	}
}
@media screen and (max-width: 1360px) {
	#service_page .handouts ul li{
		width: 49.5%;
	}
	#service_page .handouts ul li .img{
		width: 295px;
	}
}
@media screen and (max-width: 680px) {
	.btn:hover img.off{
		display: inline-block;
	}
	#service_page .overview{
		height: auto;
		text-align: left;
		padding: 0 6vw 14vw;
		background: #E4E6E6;
	}
	#service_page .overview .tagline{
		width: 100vw;
		padding: 0 8vw 14vw;
		margin: 0 -6vw;
		background: url("./images/service/bg_overview_smp.png") no-repeat bottom #fff;
		background-size: contain;
		box-sizing: border-box;
	}
	#service_page .overview .tit{
		display: inline;
		font-size: 4.75vw;
		line-height: 2;
		text-align: left;
		padding: 0 0 1vw;
	}
	#service_page .overview .cap{
		font-size: 3.5vw;
		line-height: 2;
		margin: 6vw 0 0;
	}
	#service_page .overview .reason{
		padding: 12vw 7vw 14vw;
		margin: 0;
	}
	#service_page .overview .reason .tit_reason{
		font-size: 4.75vw;
		text-align: center;
	}
	#service_page .overview .reason .tit_reason .name{
		font-size: 5.5vw;
	}
	#service_page .overview .reason .tit_reason .num{
		font-size: 7.5vw;
	}
	#service_page .overview .reason ul{
		display: block;
		margin: 10vw 0 0;
		padding: 0;
	}
	#service_page .overview .reason ul li{
		width: 100%;
	}
	#service_page .overview .reason ul li:nth-child(2){
		margin: 11.5vw 0;
	}
	#service_page .overview .reason ul li .num{
		align-items: center;
		width: 9vw;
		height: 9vw;
		font-size: 5vw;
		left: 8.75vw;
	}
	#service_page .overview .reason ul li .icon{
		width: 32.5vw;
	}
	#service_page .overview .reason ul li .tit_cnt{
		font-size: 4vw;
		margin: 4vw 0 2vw;
	}
	#service_page .overview .reason ul li .txt{
		font-size: 3.25vw;
		line-height: 1.8;
		text-align: center;
	}
	#service_page .wrapper{
		padding: 0 6vw;
		margin: 0 auto 4vw;
	}
	#service_page .tit_service{
		flex-wrap: wrap;
		font-size: 5vw;
		letter-spacing: 0.1em;
		margin: 12.5vw 0 8vw;
	}
	#service_page .tit_service img{
		width: 8vw;
		margin: 0 3vw 0 0;
	}
	#service_page .tit_service span{
		display: block;
		font-size: 4vw;
		margin: 3vw 0 0;
	}
	#service_page .handouts .tit_service:after,
	#service_page .ad .tit_service:after{
		position: relative;
		top: 0;
		margin-top: 10px;
		width: 100%;
		left: 0;
	}
	#service_page .handouts ul{
		display: block;
	}
	#service_page .handouts ul li{
		width: 100%;
		padding: 6vw;
		margin: 0 0 6vw;
	}
	#service_page .handouts ul li:last-child{
		margin: 0;
	}
	#service_page .handouts ul li .tit:before,
	#service_page .ad .wrap .tit:before{
		width: 2.5vw;
		height: 2.5vw;
		margin: 0 2vw 0 0;
	}
	#service_page .handouts ul li .tit{
		font-size: 3.5vw;
	}	
	#service_page .handouts ul li .img{
		width: 100%;
		margin: 2vw auto 0;
	}
	#service_page .ad .tit_service img{
		width: 8.5vw;
	}
	#service_page .ad .wrap{
		padding: 6vw 6vw 8vw;
	}
	#service_page .ad .wrap .tit{
		font-size: 3.5vw;
	}
	#service_page .ad .wrap .cnt{
		display: block;
		margin: 2.5vw 0 0;
	}
	#service_page .ad .wrap .cnt .img{
		margin: 0;
	}
	#service_page .ad .wrap .cnt .inner .txt{
		font-size: 3.5vw;
		line-height: 1.6;
		text-align: center;
		margin: 5vw 0 3vw;
	}
	#service_page .ad .wrap .cnt .inner .btn{
		margin: 0 auto;
	}
	#service_page .ad .wrap .cnt .inner .btn:hover, 
	#contact_page .form .btn_form{
		padding-right: 4vw;
	}
	#service_page .ad .wrap .cnt .inner .btn:hover, 
	#contact_page .form .btn_form:hover{
		color: #BB3910;
		opacity: 0.5;
	}
	#service_page .ad .wrap .cnt .inner .btn:after, 
	#contact_page .form .btn_form:after{
		background: #fff;
		color: #BB3910;
	}
	#contact_page .form .btn_form:hover:before{
		border-top: 2px solid #BB3910;
		border-right: 2px solid #BB3910;
	}
	#service_page .ad .wrap .cnt .inner .btn img{
		width: 3.5vw;
		margin: 0 0 0 4vw;
	}
	#service_page .consideration{
		display: block;
		height: auto;
		margin: 13.75vw 0 0;
	}
	#service_page .consideration .img{
		width: 100%;
	}
	#service_page .consideration .cnt{
		width: 100%;
		padding: 8vw 6vw 12vw;
	}
	#service_page .consideration .cnt .tit{
		font-size: 4.75vw;
		padding: 0 0 2vw;
		margin: 0 0 8vw;
	}
	#service_page .consideration .cnt .txt{
		font-size: 3.5vw;
	}
	#service_page .consideration .cnt ul{
		padding: 6vw 4vw;
		margin: 4vw 0;
	}
	#service_page .consideration .cnt ul li{
		align-items: baseline;
		font-size: 3.5vw;
		font-weight: 500;
	}
	#service_page .consideration .cnt ul li:nth-child(2){
		margin: 2.5vw 0;
	}
	#service_page .consideration .cnt ul li img{
		width: 3.5vw;
		margin: 0 2vw 0 0;
	}
}

/* -------------------------------------------

制作実績

 ---------------------------------------------------*/
#works_page .wrap{
	max-width: 1560px;
	padding: 0 80px;
	margin: 0 auto;
	box-sizing: border-box;
}
#works_page .search_cate{
	display: flex;
}
#works_page .search_cate .tit{
	display: flex;
	align-items: center;
	font-size: 15px;
	letter-spacing: 0.1em;
	padding: 0 40px 0 48px;
	background: #F5F5F5;
}
#works_page .search_cate .tit:after{
	content: "";
	width: 1px;
	height: 22px;
	margin: 0 0 0 40px;
	background: #ABABAB;
}
#works_page .search_cate .tit img{
	width: 16px;
	margin: 0 10px 0 0;
}
#works_page .search_cate ul{
	display: flex;
	align-items: center;
	padding: 18px 56px 18px 0;
	background: #F5F5F5;
}
#works_page .search_cate ul li{
	margin: 0 20px;
}
#works_page .search_cate ul li a{
	font-size: 15px;
	letter-spacing: 0.1em;
}
#works_page .search_cate ul li.active{
	padding: 8px 24px 10px;
	background: #3D3D3D;
	border-radius: 30px;
}
#works_page .search_cate ul li.active a{
	color: #fff;
}
#works_page .search_cate ul li.current-cat{
	padding: 8px 24px 10px;
	background: #3D3D3D;
	border-radius: 30px;
}
#works_page .search_cate ul li.current-cat a{
	color: #fff;
}
#works_page .works_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 72px 0 0;
}
#works_page .works_list:after {
  	content: "";
	width: 430px;
}
#works_page .works_list li{
	width: 430px;
	margin: 0 0 64px;
}
#works_page .works_list li img{
	width: 430px;
	height: 304px;
	object-fit: contain;
}
#works_page .works_list li .name{
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0.1em;
	margin: 28px 0 8px;
}
#works_page .works_list li .cate{
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
#works_page .nav-links{
	display: flex;
	justify-content: center;
	margin: 16px 0 160px;
}
#works_page .nav-links a,
#works_page .nav-links span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 20px;
	font-weight: 300;
	margin: 0 12px;
	border: 1px solid #333;
	box-sizing: border-box;
}
#works_page .nav-links span.current{
	color: #fff;
	background: #333;
}

@media screen and (max-width: 1560px) {
	#works_page .works_list li{
		width: 31%;
	}
	#works_page .works_list:after {
		width: 31%;
	}
	#works_page .works_list li img{
		width: 27.564vw;
		height: 19.487vw;
	}
}
@media screen and (max-width: 1200px) {
	#works_page .works_list li img{
		width: 330px;
		height: 234px;
	}	
}
@media screen and (max-width: 680px) {
	#works_page .wrap{
		padding: 0;
	}
	#works_page .search_cate{
		display: block;
		padding: 6vw 6vw 8vw;
	background: #F5F5F5;
	}
	#works_page .search_cate .tit{
		font-size: 3.5vw;
		padding: 0 0 0 2vw;
	}
	#works_page .search_cate .tit:after{
		display: none;
	}
	#works_page .search_cate .tit img{
		width: 4vw;
		margin: 0 2.5vw 0 0;
	}
	#works_page .search_cate ul{
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0;
		margin: 1.5vw 0 0;
	}
	#works_page .search_cate ul li{
		width: calc(100% / 3);
		margin: 6.5vw 0 0;
		box-sizing: border-box;
	}
	#works_page .search_cate ul li a{
		display: flex;
		justify-content: center;
		font-size: 3.5vw;
	}
	#works_page .search_cate ul li.active{
		padding: 2vw 7vw;
		border-radius: 8vw;
	}
	#works_page .search_cate ul li.current-cat{
		padding: 2vw;
		border-radius: 8vw;
	}
	#works_page .works_list{
		margin: 10vw 10vw 0;
	}
	#works_page .works_list:after {
		display: none;
	}
	#works_page .works_list li{
		width: 100%;
		margin: 0 0 8vw;
	}
	#works_page .works_list li:last-child{
		margin: 0;
	}
	#works_page .works_list li img{
		width: 100%;
		height: auto;
		object-fit: none;
	}
	#works_page .works_list li .name{
		font-size: 3.75vw;
		line-height: 1.6;
		margin: 4vw 0 2vw;
	}
	#works_page .works_list li .cate{
		font-size: 3vw;
		line-height: 1.6;
	}
	#works_page .nav-links{
		margin: 14vw 0 16vw;
	}
	#works_page .nav-links a,
	#works_page .nav-links span	{
		width: 10vw;
		height: 11vw;
		font-size: 4.25vw;
		margin: 0 1.5vw;
	}
}

/* -------------------------------------------

制作実績詳細

 ---------------------------------------------------*/
#works_item_page .wrap{
	max-width: 1560px;
	padding: 0 80px;
	margin: 0 auto 160px;
	box-sizing: border-box;
	overflow: hidden;
}
#works_item_page .tit_item,
#works_item_page .info{
	float: right;
	width: 490px;
	margin: 0 70px 0 0;
}
#works_item_page .tit_item .name{
	font-size: 36px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
#works_item_page .tit_item .cate{
	display: block;
	letter-spacing: 0.1em;
	text-decoration: underline;
	margin: 24px 0 0;
}
#works_item_page .img_wrap{
	float: left;
	max-width: 760px;
}
#works_item_page .img_wrap .img{
	margin: 0 0 24px;
}
#works_item_page .img_wrap .img:last-of-type{
	margin: 0;
}
#works_item_page .info{
	font-size: 15px;
}
#works_item_page .info .tit_info{
	color: #BB3910;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin: 80px 0 0;
}
#works_item_page .info .txt{
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin: 24px 0;
}
#works_item_page .info .note{
	display: flex;
	flex-wrap: wrap;
}
#works_item_page .info .note dt{
	width: 3em;
}
#works_item_page .info .note dd{
	width: calc(100% - 3em);
}
@media screen and (max-width: 1560px) {
	#works_item_page .img_wrap{
		width: 48%;
	}
}
@media screen and (max-width: 1360px) {
	#works_item_page .tit_item,
	#works_item_page .info{
		margin: 0;
	}
}
@media screen and (max-width: 680px) {
	#works_item_page .wrap{
		padding: 0 8vw;
		margin: 0 auto 16vw;
	}
	#works_item_page .tit_item,
	#works_item_page .info{
		float: none;
		width: 100%;
		margin: 0;
	}
	#works_item_page .tit_item .name{
		font-size: 4.5vw;
		line-height: 1.6;
	}
	#works_item_page .tit_item .cate{
		font-size: 3.25vw;
		margin: 4vw 0 0;
	}
	#works_item_page .img_wrap{
		float: none;
		width: 100%;
		margin: 6vw 0 0;
	}
	#works_item_page .img_wrap .img{
		margin: 0 0 4vw;
	}
	#works_item_page .info{
		font-size: 3.5vw;
		margin: 0 0 1vw 0;
	}
	#works_item_page .info .tit_info{
		font-size: 4.5vw;
		margin: 6vw 0 0;
	}
	#works_item_page .info .txt{
		font-size: 3.5vw;
		line-height: 1.6;
		margin: 4vw 0;
	}
}

/* -------------------------------------------

会社概要

 ---------------------------------------------------*/
#company_page .wrap{
	max-width: 1120px;
	margin: 0 auto 160px;
}
.company_list{
	display: flex;
	flex-wrap: wrap;
	max-width: 840px;
}
.company_list dt,
.company_list dd{
	line-height: 2;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #DBDBDB;
	box-sizing: border-box;
}
.company_list dt{
	width: 172px;
	padding: 28px 0 28px 32px;
}
.company_list dd{
	width: calc(100% - 172px);
	padding: 28px 32px 28px 0;
}
.company_list dt:last-of-type,
.company_list dd:last-of-type{
	border: none;
}
@media screen and (max-width: 1360px) {
	.company_list{
		margin: 0 auto;
		max-width: 708px;
	}
}
@media screen and (max-width: 680px) {
	#company_page .wrap{
		margin: 0 auto 14vw;
	}
	.company_list{
		padding: 0 8vw;
	}
	.company_list dt,
	.company_list dd{
		font-size: 3.5vw;
		line-height: 1.6;
	}
	.company_list dt{
		width: 20vw;
		padding: 6vw 0;
	}
	.company_list dd{
		width: calc(100% - 20vw);
		padding: 6vw 0;
	}
}

/* -------------------------------------------

お問い合わせ

 ---------------------------------------------------*/
#contact_page .wrap{
	max-width: 840px;
	margin: 0 auto 160px;
}
#contact_page .flow{
	display: flex;
	margin: 0 0 32px;
}
#contact_page .flow li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 48px;
	letter-spacing: 0.1em;
	margin: 0 56px 0 0;
	border: 1px solid #DBDBDB;
	box-sizing: border-box;
}
#contact_page .flow li:after{
	content: "";
	position: absolute;
	width: 6px;
	height: 8px;
	right: -32px;
	background: url("./images/contact/icon_arrow.png") no-repeat;
}
#contact_page .flow li:last-child:after{
	display: none;
}
#contact_page .flow li.current{
	color: #fff;
	background: #333;
	border: 1px solid #333;
}
#contact_page .wrap .txt{
	line-height: 1.75;
	letter-spacing: 0.1em;
}
#contact_page .wrap .txt a{
	text-decoration: underline;
}
#contact_page .form_list{
	margin: 72px 0 64px;
}
#contact_page .form_list li{
	display: flex;
	align-items: center;
	margin: 0 0 48px;
}
#contact_page .form_list li:last-child{
	margin: 0;
}
#contact_page .form_list li.vertical_t{
	align-items: flex-start;
}
#contact_page .form_list li .tit{
	display: flex;
	align-items: center;
	width: 300px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
#contact_page .form .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 20px;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin: 0 0 0 10px;
	border-radius: 80px;
}
#contact_page .form .must{
	background: #BB3910;
}
#contact_page .form .any{
	background: #6D6D6D;
}
#contact_page .form_list li .input{
	width: calc(100% - 300px);
}
#contact_page .form_list li input,
#contact_page .form_list li textarea{
	margin: 0;
	background: none;
	border-radius: 0;
	font-size: 15px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 46px;
	border: 1px solid #DBDBDB;
	padding: 0 20px;
	box-sizing: border-box;
}
#contact_page .form_list li textarea {
	height: 140px;
	padding: 20px;
	resize: none;
}
#contact_page .form .agree{
	display: flex;
	align-items: center;
	letter-spacing: 0.1em;
	margin: 40px 0 0;
}
#contact_page .form .agree label{
	display: flex;
	align-items: center;
}
#contact_page .form .agree input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 24px;
	height: 24px;
	border: 1px solid #DBDBDB;
	margin: 0 20px 0 0;
}
#contact_page .form .agree input[type="checkbox"]:checked:before {
	position: absolute;
	content: "";
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(50deg);
	width: 5px;
	height: 10px;
	border-right: 2px solid #BB3910;
	border-bottom: 2px solid #BB3910;
}
#contact_page .form .btn_form{
	justify-content: center;
	padding: 0;
	width: 234px;
	cursor: pointer;
}
#contact_page .form .btn_form:before {
    border-top: 2px solid #BB3910;
    border-right: 2px solid #BB3910;
}
#contact_page .tit_contact{
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 72px 0 40px;
}
#contact_page .confirm_list{
	margin: 0 0 64px;
}
#contact_page .confirm_list .tit{
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin: 48px 0 0;
}
#contact_page .confirm_list .input{
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin: 16px 0 0;
}
#contact_page .btn_wrap{
	display: flex;
}
#contact_page .btn_wrap .btn_back{
	justify-content: flex-end;
	padding: 0 32px 0 0;
	cursor: pointer;
}
#contact_page .btn_wrap .btn_back:before{
	left: 24px;
	right: auto;
	transform: rotate(225deg);
}
#contact_page .form .btn_wrap .btn_form{
	margin: 0 0 0 40px;
}

/* Contactform7 */
.wpcf7-list-item{
	margin:0!important;
}
.wpcf7-list-item-label{
	cursor: pointer;
}
.agree>p{
	display:flex;
}
.wpcf7-submit,
.wpcf7-previous{
	font-size:16px;
}
.wpcf7-not-valid-tip {
	margin-top: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output
{
	margin: 0;
	padding: 0;
	color: #dc3232;
	border: none;
	box-sizing: border-box;
}
.wpcf7 form .wpcf7-response-output{
	padding: 0;
}

@media screen and (max-width: 680px) {
	#contact_page .wrap{
		padding: 0 8vw;
		margin: 0 auto 0;
	}
	#contact_page .flow{
		margin: 0 0 8vw;
	}
	#contact_page .flow li{
		width: 16vw;
		height: 10.5vw;
		font-size: 3.5vw;
		margin: 0 9vw 0 0;
	}
	#contact_page .flow li:after{
		width: 1.5vw;
		height: 2vw;
		right: -6vw;
	}
	#contact_page .wrap .txt{
		line-height: 1.6;
		font-size: 3.5vw;
	}
	#contact_page .form_list{
		margin: 10vw 0 8vw;
	}
	#contact_page .form_list li{
		display: block;
		margin: 0 0 8vw;
	}
	#contact_page .form_list li .tit{
		width: 100%;
		font-size: 3.5vw;
	}
	#contact_page .form span{
		height: 5vw;
		font-size: 3.25vw;
		margin: 0;
		border-radius: 20vw;
	}
	#contact_page .form .wpcf7-acceptance span{
		width: auto;
		height: auto;
		font-size: 3.5vw;
		margin: 0 0 0 2.5vw;
		border-radius:0;
	}
	#contact_page .form_list li .input{
		width: 100%;
		margin: 3vw 0 0;
	}
	#contact_page .form_list li input,
	#contact_page .form_list li textarea{
		height: 11.5vw;
		padding: 0 5vw;
	}
	#contact_page .form_list li textarea {
		height: 35vw;
		padding: 5vw;
	}
	#contact_page .form .agree{
		margin: 6vw 0 0;
	}
	#contact_page .form .agree input[type="checkbox"] {
		width: 5vw;
		height: 5vw;
		margin: 0 2vw 0 0;
	}
	#contact_page .form .agree input[type="checkbox"]:checked:before {
		width: 1.25vw;
		height: 2.5vw;
	}
	#contact_page .form .btn_form{
		width: 55vw;
		margin: 10vw auto 0;
	}
	#contact_page .tit_contact{
		font-size: 4vw;
		margin: 10vw 0 8vw;
	}
	#contact_page .confirm_list{
		margin: 0 0 10vw;
	}
	#contact_page .confirm_list .tit{
		font-size: 3.5vw;
		margin: 8vw 0 0;
	}
	#contact_page .confirm_list .input{
		font-size: 3.5vw;
		line-height: 1.6;
		margin: 2vw 0 0;
	}
	#contact_page .btn_wrap{
		flex-direction: column-reverse;
		align-items: center;
	}
	#contact_page .btn_wrap .btn_back{
		justify-content: center;
		padding: 0 0 0 4vw;
	}
	#contact_page .btn_wrap .btn_back:before{
		left: 8vw;
	}
	#contact_page .form .btn_wrap .btn_form{
		margin: 0 0 6vw;
	}
	.wpcf7-submit,
	.wpcf7-previous{
		font-size:3.5vw;
	}
	.wpcf7-not-valid-tip {
	margin-top: 2.5vw;
	}
	.wpcf7-spinner{
		display: none!important;
	}
	.wpcf7 form.invalid .wpcf7-response-output,
	.wpcf7 form.unaccepted .wpcf7-response-output,
	.wpcf7 form.payment-required .wpcf7-response-output
	{
		font-size:3.25vw;
		padding: 0 7.5vw;
		margin: 4vw 2vw;
	}
	.wpcf7 form.invalid .wpcf7-response-output{
		margin-top: 3vw!important;
	}
}

/* -------------------------------------------

プライバシーポリシー

 ---------------------------------------------------*/
#privacy_page .wrap{
	max-width: 1120px;
	padding: 0 80px;
	margin: 0 auto 160px;
}
#privacy_page .tit_privacy{
	font-size: 24px;
	letter-spacing: 0.1em;
	margin: 56px 0 0;
}
#privacy_page p,
#privacy_page .wrap ul li{
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
#privacy_page .txt{
	margin: 16px 0 0;
}
#privacy_page .wrap ul{
	margin: 16px 0 0;
}
#privacy_page .wrap ul li{
	position: relative;
	display: flex;
	align-items: center;
	margin: 12px 0 0 1em;
}
#privacy_page .wrap ul li:before{
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	margin: 0 0 0 1em;
	left: -2em;
	top: 10px;
	background: #333;
	border-radius: 50%;
}
#privacy_page .address{
	font-size: 18px;
	margin: 16px 0;
}
#privacy_page .btn.btn_contact_gray{
	width: 250px;
	margin: 40px 0 0;
	padding 0 0 0 24px;
}
@media screen and (max-width: 680px) {
	#privacy_page .wrap{
		padding: 0 8vw;
		margin: 0 auto 14vw;
	}
	#privacy_page .tit_privacy{
		font-size: 3.75vw;
		margin: 10vw 0 0;
	}
	#privacy_page p,
	#privacy_page > ul li{
		font-size: 3.5vw;
		line-height: 1.6;
	}
	#privacy_page .txt{
		margin: 3vw 0 0;
	}
	#privacy_page .wrap ul{
		margin: 3vw 0 0;
	}
	#privacy_page .wrap ul li{
		margin: 3vw 0 0 1em;
	}
	#privacy_page .wrap ul li:before{
		width: 1vw;
		height: 1vw;
		top: 2.5vw;
	}
	#privacy_page .address{
		font-size: 3.5vw;
		margin: 0 0 1vw 5.5vw;
	}
	#privacy_page .wrap .btn{
		width: 60vw;
		margin: 4vw 0 0;
	}
}

/* -------------------------------------------

404

 ---------------------------------------------------*/
#page_404{
	text-align: center;
}
#page_404 .tit{
	font-size: 80px;
	font-weight: 200;
	margin: 280px 0 0;
}
#page_404 .cap{
	font-size: 24px;
	letter-spacing: 0.1em;
	margin: 48px 0 16px;
}
#page_404 .txt{
	letter-spacing: 0.1em;
}
#page_404 .btn_back{
	width: 250px;
	margin: 80px auto 160px;
}
@media screen and (max-width: 680px) {
	#page_404 .tit{
		font-size:  10vw;
		margin: 20vw 0 0;
	}
	#page_404 .cap{
		font-size: 4vw;
		margin: 8vw 0 4vw;
	}
	#page_404 .txt{
		font-size: 	3.5vw;
		line-height: 1.6;
		margin: 0 8vw;
	}
	#page_404 .btn_back{
		width: 55vw;
		margin: 8vw auto 14vw;
	}
}


.smp_only{
	display: none;
}
@media screen and (max-width: 680px) {
	.pc_only{
		display: none;
	}
	.smp_only{
		display: block;
	}
}


/* -------------------------------------------

装飾

 ---------------------------------------------------*/
/* ふわっとフェードイン */
/* フェードインエフェクト用のクラス */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }


/* -------------------------------------------

パンくずナビ

 ---------------------------------------------------*/
.breadcrumbs {
	display: flex;
	align-items: center;
	color:#888888;
	font-weight: normal;
	text-align: left;
	width: 1400px;
	margin: 160px auto 30px;
	padding: 0 80px;
}
.breadcrumbs a {
	color:#888888;
}
.breadcrumbs span {
	padding:0 16px;
}
.breadcrumbs span:first-child {
	padding:0 16px 0 0;
	box-sizing: border-box;
}
.breadcrumbs span:last-child {
	padding:0 0 0 16px;
	box-sizing: border-box;
}
.breadcrumb_separate{
	height:12px;
	width: auto;
}
@media screen and (max-width: 680px) {
	.breadcrumbs {
		flex-wrap: wrap;
		width: 100%;
		padding: 0 6vw;
		box-sizing: border-box;
		font-size: 3.5vw;
		margin: 14vw 0 4vw;
	}
	.breadcrumbs span {
		padding:0;
		margin-right: 1.5vw;
		margin-bottom: 1vw;
		white-space: nowrap;
	}
	.breadcrumbs span:first-child {
		padding:0;
	}
	.breadcrumbs span:last-child {
		padding:0;
	}
	.breadcrumb_separate{
		height:3vw;
		margin-right: 1.5vw;
		margin-bottom: 1vw;
	}
}