@charset "utf-8";
/* CSS Document */
/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 400;
	color: #fff;
	font-size: clamp(16px,2vw,18px);
	background: #222;
	-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: 600;
	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;
}

.w960{
	max-width: 960px;
	margin: 0 auto;
}
/*高さ*/

.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;
}
.h50{
	height: 50px;
}

.t_center{
	text-align: center;
}
.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;
}
.f-rev {
    flex-direction: row-reverse;
}
.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;
   z-index: -1;
}


.bg01{
	background: #000;
	color: #fff;
	padding:15vh 0 20vh;
	z-index: 0;
}
.bg01::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url(../img/tabout_bg.png);
	background-position: center bottom;
	background-size: cover;
	left: 0;
	bottom: 0;
	opacity: .8;
	z-index: -1;
}

.bg02{
	background: linear-gradient(15deg, #000, #000, #2e2e2e, #000, #000);
}


/*==見出し=============================================*/
.mincho{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.col_w{
	color: #fff;
}

.ltitle{
	display: block;
	margin: 0 auto 15px;
	text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ltitle span{
	position: relative;
	padding: 0 55px;
}
.ltitle span::before, .ltitle span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #fff;
}

.ltitle span::before {
  left:0;
}
.ltitle span::after {
  right: 0;
}
.stitle {
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    font-size: 25px;
}

/*==btn=============================================*/
.btn_wrap {
	padding: 30px 0;
}
.btn_wrap._c{
	margin: 0 auto;
}
.btn01 {
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: block;
	width: 280px;
	margin: 0 auto;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #fff;
}

.btn01 {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;
  background: #444;
}

.btn01::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.btn01:hover {
  padding: calc(1.5rem - 6px) 3rem;
}
.btn01:hover::before {
  top: 0;
  left: 0;
}


/*check01*/

.check01 li{
	position: relative;
	padding-left: 1.3rem;
}
.check01 li::before{
	position: absolute;
	content: '◎';
	top: 4px;
	left: 0;
	font-size: .8rem;
	
}

