@charset "utf-8";
/* CSS Document */
/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	color: #fff;
	font-size: clamp(16px,2vw,18px);
	background: #202124;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
}
p{
	letter-spacing: 0.1em;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 400;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color: #fff;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
main{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

section {
	padding: 80px 0 ;
	position: relative
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;/*隙間なし*/
}

/*改行　-------*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block !important;
}

/*PC・SP表示-----------------------*/
.sp{
	display: none;
}
.pc{
	display: block;
}

@media (max-width: 768px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}

/*幅・高さ調整-------*/
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
/*高さ*/

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg0{
	margin-bottom: 0 !important;
}

.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

.h30{
	height: 30px;
}

.t_center{
	text-align: center;
}
.t_end{
	text-align: end;
}
.t_left{
	text-align: left;
}
/* 画像　-------------------------- */
.obj-in{
	width: 100%;
	height: 100%;
	object-fit: contain
}
.obj-cov{
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.img_4-3{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.img_16-9{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/*flexbox------------------------*/
.flexbox{
	display: flex;
	flex-wrap: wrap;
}
.f_jsb{
	justify-content: space-between;
}
.f_cent{
	justify-content: center;
}
.fac{
	align-items: center;
}

.comn2{
	width: 48%;
}
.comn3{
	width: calc( 100% / 3 - 20px);
}
.comn4{
	width: 35%;
}
.comn5{
	width: 62%;
}

.f_center{
	align-items: center;
}
@media (max-width: 768px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*==背景=============================================*/
/*背景　画像固定*/
.container{
   position: relative;
}
.line_img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   clip-path: inset(0);
}
.bg{
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-image: url("../img/t_service_bg.jpg");
   background-size: cover;
   background-position: center;
   z-index: -1;
}

.light{
	background: #2E2E2E;
}



/*==見出し=============================================*/
.num{
	font-family: "Anton SC", sans-serif;
}

.ttl {
	font-size: clamp(50px,5vw,85px);
	color:#666;
	font-family: "Ramabhadra", sans-serif;
	letter-spacing: .2rem;
}
.ttl span{
	position: relative;
	padding-left: 5rem;
	font-size: clamp(1.05rem, 0.934rem + 0.49vw, 1.3rem);
	color: #eee;
	font-family: "Zen Old Mincho", serif;
}
.ttl span::before{
	position: absolute;
	content: '';
	width: 3.5rem;
	height: 1px;
	background: #eee;
	top: 50%;
	transform: translateY(-50%);
	
}
.ttl span::before{
	left: 1rem;
}

@media(max-width:500px){
	.ttl span{
	display: block;
		margin-bottom: 20px;
}
}


.tts{
	font-size: clamp(1.125rem, 1.009rem + 0.49vw, 1.375rem);
}


.dtitle{
	background:#666;
	text-align: center;
	color: #fff;
	padding: 5px 0;
	font-size:clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
}


/*==btn=============================================*/
.btn_wrap{
	margin: 50px 0;
}

.mbtn{
	position: relative;
	display: inline-block;
	padding: 15px 0;
	padding-right: 1rem;
	text-align: center;
	font-size: 22px;
	width: 220px;
	margin-right:25px;
}
.mbtn::before{
	position: absolute;
	content: '';
	width: 50px;
	height: 50px;
	border: 1px solid #eee;
	right: -25px;
	bottom:-17px;
	border-radius: 50%;
	transition: .6s;
}

.mbtn .arrow{
	position: absolute;
	content: '';
	width: 215px;
	height: 1px;
	bottom:5px;
	right: 0;
	background: #eee;
}

.mbtn .arrow::after{
    content: '';
    position: absolute;
    bottom: -7px;
    right: -8px;
    border: 8px solid transparent;
    border-left-color: #eee;
    transition: all .2s linear;
}

.mbtn:hover{
	letter-spacing: .2rem;
}
.mbtn:hover::before{
	width: 220px;
	height: 220px;
	border-color: rgba(255,255,255,.0);
	bottom: -100px;
	right: -0px;
	transition: .6s;
	background: rgba(154,154,154,.1);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

/*==マウスカーソル=======================================*/
.cursor {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:rgba(255,255,255,.3);
  z-index: 1000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
  -ms-filter: blur(2px);
  filter: blur(2px);
}

.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background:rgba(255,255,255,.05);
  -ms-filter: blur(5px);
  filter: blur(5px);
}


