@charset "utf-8";
/* CSS Document */
/*==================
	header
================================================================*/
#header{
	position: fixed;
	width: 100%;
	height: 90px; 
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}
.hlogo{
	height: 100%;
	min-width: 180px;
	padding: 10px 20px;
}
.hlogo img{
	height: 100%;
	object-fit: contain;
}
.gnav{
	height: 100%;
}

.gnav ul{
	display: flex;
	justify-content: flex-end;
	height: 100%;
}
.gnav li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-weight: 600;
	font-size: 16px;
	padding: 0 15px;
}
.gnav li a span{
/*	display: block;*/
	font-size: 12px;
	color: #005b97;
}
.gnav li a:hover{
	background: #333;
	color: #fff;
	transition: .4s;
}

@media (max-width:820px){
	.gnav{
		display: none;
	}
	#header{
		height: 60px; 
	}	
}

/*==================
	mobailMENU
================================================================*/
@media (min-width:821px){
	.openbtn{
		display: none;
	}
}
.openbtn{
    width: 60px;
    height:60px;
	background:#2938ac;
	position: relative;
}
	.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:19px;
}
.openbtn span:nth-of-type(2) {
	top:29px;
}
.openbtn span:nth-of-type(3) {
	top:39px;
}

.openbtn.active span:nth-of-type(1) {
    top: 22px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 34px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

/* ナビゲーション内*/

#g-nav{
    position:fixed;
    z-index: 800;
	top:0;
    right: -200%;
	width:100%;
	max-width: 450px;
    height: 100vh;
	background:url("../img/bg.png");
	transition: all 0.6s;
}

#g-nav.panelactive{
    right: 0;
}
#g-nav ul {
	padding: 80px 3%;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	border-bottom: 1px dashed #333;
	position: relative;
}
#g-nav li a span{
	font-size: 70%;
	color: #2938ac;
	margin-left: 15px;
}
#g-nav li a::after{
	position: absolute;
	content: '\f061';
	right: 4%;
	top: 50%;
	transform: translateY(-50%);
	color: #2938ac;
	font-weight: 600;
	font-family: "Font Awesome 6 Free";
	transition: .4s;
}
#g-nav li a:hover{
	background: rgba(232,247,255,0.4);
}
#g-nav li a:hover::after{
	right: 2%;	
	transition: .4s;	
}

.telbtn{
	display: block;
	font-size: 25px;
	border: 1px solid #005b97;
	background: #fff;
	color: #005b97;
	padding: 10px 0;
	width: 300px;
	margin: 0 auto 20px;
}
.telbtn i{
	margin-right: 10px;
}

/*==================
	pagetop
================================================================*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#2938ac;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top .arrow{
   width: 10px;
   height: 10px;
   border-top: 3px solid #fff;
   border-right: 3px solid #fff;
   transform: rotate(-45deg);
   margin-top: 5px;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}


#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media (max-width: 500px){
#page-top a{
	width: 50px;
	height: 50px;
}	
	#page-top {
		bottom:50px;
	}

}

/*==================
	footer
================================================================*/
footer{
	background: #005b97;
	color: #fff;
	padding: 40px 0;
}
.f_cont,.f_info{
	width: 50%;
	font-size: 16px;	
}
.f_info .flogo{ 
	width: 60%;
	max-width: 350px;
	filter: brightness(0) invert(1);
	margin: 20px 0;
}

.f_cont h2{
	font-family: "DM Serif Display", serif;
	font-size: 2.5rem;
	text-align: center;
    display: flex;
    align-items: center;	
}
.f_cont h2::before,
.f_cont h2::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}

.f_cont h2:before {
    margin-right: 1rem;
}

.f_cont h2:after {
    margin-left: 1rem;
}
.f_cont_btn.tel{
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.f_cont_btn.tel .num{
	font-size: 2.3rem;
}
.f_cont_btn.mail a{
	display: block;
	width: 80%;
	max-width: 400px;
	position: relative;
	text-align: center;
	background: #fff;
	color: #005b97;
	margin: 0 auto;
	font-size: clamp(1.2rem, 1.061rem + 0.59vw, 1.5rem);
	padding: 10px 0;
	border: 2px solid #fff;
}

.f_cont_btn.mail a:hover{
	background: rgba(41,56,172,.50);
	color: #fff;
	transition: .4s;
}
.copy{
	background: #000;
	color: #fff;
	padding: 5px 0;
	text-align: center;
	font-size: 13px;
}

@media (max-width: 768px){
	.f_cont,.f_info{
		width: 100%;
		margin-bottom: 30px;
	}
	.f_info{
		text-align: center;
	}
	.f_info .flogo{
		margin: 20px auto;
	}
}
@media (max-width: 500px){
	.copy{
		padding-bottom: 45px;
	}
	.f_info{font-size: 14px;}
}

/*==================
	sp-foot-btn
================================================================*/
@media (min-width: 501px){
	#spnavi{
		display: none;
	}	
}
  #spnavi {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #333;
  }
  #spnavi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #spnavi ul li {
    width: 50%;
    border-right: 1px solid #fff;
  }
  #spnavi ul li:last-child {
    border-right: none;
	background:#2938ac;  
  }
  #spnavi ul li a {
    display: block !important;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    line-height: 2;
  }
  #spnavi ul li a.sp_tel:before {
    font-family: "Font Awesome 6 Free";
    content: "\f095";
    font-weight: 900;
  }
  #spnavi ul li a.sp_contact:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0e0";
    font-weight: 900;
  }
  #spnavi ul li a span {
    font-size: 1rem;
	margin-left: 5px;  
  }

/*==================
	FV
================================================================*/
.slide_wrap{
	width: 100%;
	max-height: 100vh;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}

.top_slider{
	overflow: hidden;
	position: relative;
}
.topslider {
	margin-left: auto;
	width: calc(100% - 90px);
	max-height: 100vh;
	aspect-ratio: 4 / 3;
}

.top_slider .topslider li{
	position: relative;
	width: 100%;
	max-height: 100vh;
	aspect-ratio: 4 / 3;
	background:#fff;
	background-size: cover;
	background-position: center center;
}
.top_slider .topslider li.top01{
	background:url("../img/slide02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .topslider li.top02{
	background:url("../img/slide03.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .topslider li.top03{
	background:url("../img/slide01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.topslider li h2.catch{
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.15em;
	position: absolute;
	top: 40%;
	left: 100%;
	transform: translate(-50%,-50%);
	text-align: center;
	font-size: clamp(1.3rem, 0.049rem + 5.27vw, 4rem);
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	opacity: 0.1;
	transition: 2s;
	width: 100%;
	
}
.topslider li h2.catch span{
	font-size: 70%;
}
.topslider li.slick-active h2.catch{
	left: 50%;
	opacity: 1;	
}
.top01 h2.catch{
	width: 50%;
	max-width: 500px;
}

@keyframes fadezoom{
	0%{
		transform: scale(1.2);
	}
	100%{
		transform: scale(1);
	}
}
.add-animation{
	animation: fadezoom 5s 0s forwards;
}

.fvinfo{
	position: absolute;
	content: '';
	background: #2938ac;
	color: #fff;
	left: 0;
	bottom: 0;
	padding: 15px 20px;
}
.fvtel{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	position: relative;
}
.fvtel::after{
	position: absolute;
	content: '';
	width: calc(100% + 40px);
	height: 1px;
	background: #fff;
	left: -20px;
	bottom:-10px;
}
.fvtel .wbox{
	background: #fff;
	color: #2938ac;
	padding: 1% 5%;
}
.fvtel .num{
	padding-left: 15px;
	font-size: 1.5rem;
	line-height: 1.2
}
.fvaddress{
	padding-top: 10px;
}

@media (max-width:820px){
	.slide_wrap{
		padding-top: 60px;
	}
}

@media (max-width:768px){
	.topslider {
		width:95%;
	}
}
@media (max-width:600px){
	.fvinfo{
		display: none;
	}
}
@media (max-width:450px){
	.topslider {
		width:100%;
	}
}
/*==================
	index-contents
================================================================*/

/*Greeting*/
.greeting{
    padding: 20vh 0 15vh;
    color: #fff;
    margin: 8vh 0;
}
.greeting::before {
  content: 'MOTOZAKITEKKIN MOTOZAKITEKKIN';
    position: absolute;
    white-space: nowrap;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    color: rgba(67,67,67,.5);
    font-size: clamp(100px, 18vw, 180px);
	font-family: "DM Serif Display", serif;
    line-height: 1.0;
    text-align: center;
    z-index: -1;
    animation: flowimg 20s linear infinite;
	 letter-spacing: 0.1em;
}

@keyframes flowimg {
	 0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.greeting::after{
	position: absolute;
	content: '';
	background: url(../img/greet-bg.jpg);
	background-size: cover;
	width: 100%;
	height: calc(100% - 11vh);
	left: 0;
	bottom: 0;
	z-index: -2;
}
.gtxt{
	padding: 80px 0;
	text-shadow: 0 0 3px #000;
	font-size: clamp(17px,2.1vw,20px);
}


/*contents-link*/
.contents-link{
	padding-bottom: 0;
}
.link{
	width: 50%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	position: relative;

}
.link a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.link a figure{
	position: absolute;
	transition: .5s;
	z-index: -2;
}
.link a:hover figure{
	transform: scale(1.1);
	transition: .5s;
}
.link._left a::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #005b97;
	z-index: -1;
	opacity: .4;
	
}
.link.right a figure {
	top: -20%;
}
.link_txt{
	width:clamp(240px,50%,600px);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	
}
.link_txt img{
	object-fit: contain;
	width: 100%;
	
}
@media (max-width: 768px) {
	.contents-link{
		padding-top: 0;
	}
	.link{
		width: 100%;
	}
}

/*news*/
.news{
	background: url("../img/bg.png");
}
#newsWrap{
	height: 200px;
	max-width: 980px;
	margin: 0 auto;
	overflow-y: auto;
	border: 1px solid #005b97;
	padding:0 1rem 1rem;
	background: #fff;
}
#newsWrap::-webkit-scrollbar {
  width: 5px;
}
#newsWrap::-webkit-scrollbar-thumb {
  background-color: #005b97;
  border-radius: 0px;
}
#newsList a{
	width: 98%;
	display: block;
	padding: 1rem 1rem;
	border-bottom: 1px dashed #005b97;
	margin: 0 1%;
	color: #333;
	position: relative;
}
#newsList a::before{
	position: absolute;
	content: '\f061';
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-weight: 600;
	font-family: "Font Awesome 6 Free";
}

#newsList a:hover{
	background: #b1cddf;
	color: #fff;
}
#newsList .up_ymd{
	margin-right: 20px;
}


/*company*/
.company-title{
	padding: 8vh 0;
	position: relative;
}

.company-title::before,
.company-title::after{
	position: absolute;
	content: '';
	width: 75%;
	height: 100%;
	top: 0;
	z-index: -1;
}
.company-title::before{
	background: url(../img/comp_bg.jpg);
	background-size:cover;
	background-position: left center;
	width: 80%;
	left: 0;
}
.company-title::after{
	background: linear-gradient(to left,#005b97 35%,rgba(0,0,0,0));
	right: 0;
}

.title_txt{
	width:clamp(300px,50%,600px);
	margin-left: auto;
}
.title_txt img{
	object-fit: contain;
	width: 100%;
	
}
.about{
	max-width: 960px;
	margin: 30px auto ;
}
.about tr{
	border: 2px solid #eee;
}
.about th{
	width: 28%;
	padding: .8rem 1rem;
	background: #005b97;
	color: #fff;
	border-right: 2px solid #eee;
}
.about td{
	padding: .8rem 1rem;
}
.map{
	width: 100%;
	height: 40vh;
}
.map iframe{
	object-fit: cover;
}

/*==================
	下層　ページタイトル
================================================================*/
.kfv{
	margin-top: 90px;
	position: relative;
	background:url("../img/comp_bg.jpg");
	background-position: center 75%;
	padding: 50px 0;
	text-align: center;
	color: #fff;
}
.pagetitle{
	text-shadow: 0 0 5px #003e66;
	font-size: clamp(40px, 7vw, 60px);
	letter-spacing: .2rem;
}

.pagetitle_sub .ja{
	padding: 5px 5vw;
	background: linear-gradient(90deg,rgba(0,0,0,0),#005b97,#005b97,rgba(0,0,0,0))
}

@media(max-width:820px){
	.kfv{
		margin-top: 60px;
	}
}

/*==================
	business-contents
================================================================*/
.b-txt{
	text-align: center;
}

@media(max-width:500px){
	.b-txt{
		text-align: left;
	}
}






/*==================
	recruit
================================================================*/
.rtitle{
	font-weight: 600;
	margin-bottom: 15px;
	color: #005b97;
	border-bottom: 1px solid #005b97;
}

.r-table{
	margin: 30px auto ;
}
.r-table tr{
	border: 2px solid #eee;
}
.r-table th{
	width: 28%;
	padding: .8rem 1rem;
	background: #005b97;
	color: #fff;
	border-right: 2px solid #eee;
}
.r-table td{
	padding: .8rem 1rem;
	background: #fff;
	width: 66%;	
}
@media(max-width:460px){
	.r-table th {
		padding: .8rem .5rem;
		font-weight: 400;
		font-size: 16px;
	}
}

/*==================
	contact
================================================================*/
.contact-title{
	padding: 8vh 0;
	position: relative;
}

.contact-title::before,
.contact-title::after{
	position: absolute;
	content: '';
	width: 75%;
	height: 100%;
	top: 0;
	z-index: -1;
}
.contact-title::before{
	background: url("../img/greet-bg.jpg");
	background-size:cover;
	background-position: left 30%;
	width: 80%;
	left: 0;
}
.contact-title::after{
	background: linear-gradient(to left,#005b97 35%,rgba(0,0,0,0));
	right: 0;
}



.contact .tel_contact{
	text-align: center;
	border-top: 2px solid #aaa;
	border-bottom: 2px solid #aaa;
	padding: 20px 0 5px;
	margin: 0 auto;
	max-width: 600px;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.8rem;
	white-space: nowrap;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 500;
	letter-spacing: 0.08em;
}
.contact .tel_contact a i{
	display: inline-block;
	font-size: 0.7em;
}
.contact .tel_contact a:hover{
	opacity: 0.5;
}
.contact .tel_contact p{
	font-size: .8rem;
}
@media (max-width: 750px){
	.contact .tel_contact a{
		font-size: 2rem;
	}
}

/*メールフォーム*/
.mailform{
	margin: 0 auto;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #005b97;
}
.mailform .row div:nth-child(1){
	width: 28%;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row span.hissu{
	color: #fff;
	background: #005b97;
}
.mailform .row span.ninni{
	background: #f9f5f4;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .box.mini{
	width: 120px !important;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #f4f4f4;
	border-radius: 2px;
	margin-left: 5px;
	border: 1px solid #ccc;
}
.mailform .postal_btn:hover{
	opacity: 0.7;
}
.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	padding: 12px 5px;
	margin: 0 auto;
	width: 90%;
	max-width: 300px;
	background: #2938ac;
	border: 1px solid #2938ac;
	/*border-radius: 500px;*/
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #2938ac;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: block;
	padding-left: 20px;
	position: relative;
	margin-bottom: 15px;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    opacity: 0;
    position: absolute;
    top: 55%;
	margin-top: -10px;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #000;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #000;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*プライバシーポリシー*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	
}
.privacy li .privacy_wrap .privacy_subject{
	text-align: center;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	text-decoration: underline;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}
.privacy li .privacy_wrap .privacy_subject:hover{
	text-decoration: none;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}

/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background-color: #f2f2f2;
	margin-top: 5px;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #433c2e;
}





/*==================
	news-datal
================================================================*/


.detailUpfile{
	max-width: 680px;
	margin: 20px 0;
}
.ntitle{
	font-size: clamp(18px,2.5vw,22px);
	position: relative;
	padding: 0.5rem 1rem;
	margin-bottom: 10px;
}
.ntitle::before {
    position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    height: 1px;
    content: '';
    background: #333;
}
.ntitle::after {
    position: absolute;
    bottom: 0;
    left: 0;
	width: 10%;
    height: 2px;
    content: '';
    background: #005b97;
}
.news-detail #up_ymd{
	font-size: 15px;
	text-align: end;
	color: #005b97;
	padding: 0 15px;
}
.news-box{
	padding: 3vh 2% 5vh;
}







