@charset "utf-8";

/*COMMON*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


html{
	scroll-behavior: smooth;
}

body {
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	background-color: #000;
}

img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


h1,h2,h3,h4{
	font-weight: 700;
}

h1{
	font-size: 48px;
	line-height: 1.4;
}

h2{
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 1.6;
}

h3{
	font-size: 20px;
	line-height: 1.6;
}

p{
	font-size: 16px;
	line-height: 1.8;
}

.inner{
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 4%;
}

main{
	max-width: 1920px;
	margin: 0 auto;
	background-color: #fff;
}

footer{
	max-width: 1920px;
	margin: 0 auto;
}


section{
	padding: 6% 0;
}

/*button*/
.util_btn {
	display: flex;
	align-items: center;
	justify-content: left;
	max-width: 300px;
	width: 100%;
	padding: 20px 40px;
	margin: 6% 0 0;
	font-weight: 700;
	position: relative;
	z-index: 0;
	background:linear-gradient(to right, #be811e,#d6b554);
	box-shadow: 3px 3px 6px  rgba(0, 0, 0, 0.4);
}
.util_btn > span {
	color: #333;
	display: block;
	position: relative;
	z-index: 2;
	font-size:14px;
}
.util_btn em {
	position: absolute;
	height: 1px;
	background: #000;
	width: 47%;
	right: 23px;
	top: 50%;
	transform: scaleX(0.25);
	transform-origin: center right;
	transition: all 0.3s ease;
	z-index: 2;
}
.util_btn::before,
.util_btn::after {
	content: '';
	background: #333;
	height: 50%;
	width: 0;
	position: absolute;
	transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: 1;
}
.util_btn::before {
	top: 0;
	left: 0;
	right: auto;
}
.util_btn::after {
	bottom: 0;
	right: 0;
	left: auto;
}
.util_btn:hover{
	color: #fff;
}
.util_btn:hover::before {
	width: 100%;
	right: 0;
	left: auto;
}
.util_btn:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}
.util_btn:hover span {
	transition: color 0.3s ease;
	color: #fff;
}
.util_btn:hover em {
	background: #fff;
	transform: scaleX(1);
}

.util_link{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

/*TTL*/
.util_ttl{
	margin: 0 0 4%;
}

.util_ttl .en{
	display: block;
	font-size: 100px;
	font-weight: 700;
	background: linear-gradient(90deg, #161f64 0%, #019be4 100%);
	background-size: 200%;
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.content_wrap{
	display: flex;
}

main .line{
	height: 3px;
	background-color: #ccc;
	position: relative;
	margin: 0 0 3%;
}

main .line span{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 3px;
	width: 20%;
	background: linear-gradient(to right, #171c61,#009ee7);
}


/*HEADER*/

#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	color: #fff;
	z-index: 999;
}

button.hamburger{
	display: none;
}
#header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: linear-gradient(to right, #1e1f2c, #0f4294);
	opacity: 0;
	transition: opacity 0.6s ease;
}

#header.bg_change::before {
	background: linear-gradient(to right, #1e1f2c, #0f4294);
	opacity: 0.9;
}

#header nav{
	height: 120px;
	border-bottom: 3px solid #fff;
}

#header nav .logo a:hover{
	transition: all .3s;
	opacity: 0.8;
}

#header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1980px;
	margin: 0 auto;
	padding: 0 2%;
	height: inherit;
}

#header .logo{
	max-width:280px;
}

#header ul{
	display: flex;
	gap: 0 16px;
	width: 64%;
	justify-content: space-between;
	text-align: center;
	line-height: 1.3;
	align-items:center;
}

#header ul li:not(:last-of-type){
	width: calc(100% / 6 - 16px * 5 / 6);
}

#header ul li a{
	display: block;
	position: relative;
	padding: 10px 0;
	font-size: 14px;
}

#header ul li:last-of-type a{
	border-radius: 50px;
	overflow: hidden;
}

#header ul li .util_btn{
	width:260px;
	margin: 0;
	padding: 8px 0;
}

#header ul li a span.en{
	font-size: 26px;
}



#header ul li:not(:last-of-type) a::before{
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -23px;
	height: 3px;
	width: 80px;
	background-color: #c8c8c8;
	opacity: 0;
}

#header ul li:not(:last-of-type) a:hover::before{
	animation: slideLine .6s .1s forwards;
}

#header ul li:not(:last-of-type) a:hover span.en{
	transition: color 0.3s ease;
	color: #c8c8c8;
}


/*sub*/


#sub{
	background: url(../img/common/contact_bg.png) no-repeat center center / cover;
	color: #fff;
	padding:4% 0;
}

#sub .util_ttl{
	text-align: center;
}

#sub .util_ttl .en{
	color: #fff;
	-webkit-text-fill-color: unset;
	background: none;
	font-size: 80px;
}

#sub .content_wrap{
	background: url(../img/common/sub_content_bg.png) no-repeat center center / 100% 100%;
	width: 100%;
	margin: 0 auto;
	padding:4% 6%;
	justify-content: center;
	flex-wrap:wrap;
	max-width: 800px;
}

#sub .content_wrap .content_l,
#sub .content_wrap .content_r{
	width: 100%;
	text-align: center;
}

#sub .content_wrap .content_r a{
	margin: 4% auto 0;
	border-radius: 50px;
	overflow: hidden;
	padding: 8px 40px;
	max-width:340px;
	flex-wrap:wrap;
}

#sub .content_wrap .content_r a > span{
	width:100%;
	line-height:1.2;
}

#sub .content_wrap .content_r a .en{
	font-size: 28px;
}

#sub .content_wrap .content_l a{
	font-size: 34px;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
}

#sub .content_wrap .content_l a.pc{
	pointer-events:none;
}

#sub .content_wrap .content_l a:hover{
	opacity: 0.8;
	transition: all .3s;
}

#sub .content_wrap .message{
	font-size:18px;
	font-weight:700;
	width:100%;
	text-align:center;
	margin:0 0 20px;
}

/*footer*/
footer{
	color:#fff;
	background: #333;
	padding: 2% 0;
}

footer .logo{
	max-width: 320px;
	margin: 0 auto 20px;
}

footer ul{
	display: flex;
	gap: 0 60px;
	justify-content: center;
	margin: 40px 0;
}

footer ul li{
	position: relative;
}

footer ul li::after{
	content: '|';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -30px;
}

footer ul li:last-of-type::after{
	display: none;
}

footer ul li a{
	display: block;
	padding: 10px;
}

footer ul li a:hover{
	opacity: 0.8;
	transition: all .3s;
}

footer small{
	font-size: 12px;
	display: block;
	text-align: center;
}


/*kaso*/
#kaso_body h1{
	font-size: 26px;
}
#kaso_body #mv{
	padding: 0;
	position: relative;
}

#kaso_body #mv .txt{
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
}

#kaso_body #mv .txt p.en{
	font-size: 92px;
	line-height: 1.2;
	font-weight: 700;
}


#kaso_body #breadcrumb ol{
	display: flex;
	gap: 0 10px;
	font-weight: 700;
	margin-top: 20px;
	white-space: nowrap;
	max-width: 1520px;
	overflow-x: scroll;
}

#kaso_body #breadcrumb ol::-webkit-scrollbar{
	display: none;
}

#kaso_body #breadcrumb ol li{
	position:relative;
	margin: 0 20px 0 0;
}

#kaso_body #breadcrumb ol li::after{
	content:"＞";
	position:absolute;
	right:-20px;
	top:50%;
	transform:translateY(-50%);
}

#kaso_body #breadcrumb ol li:last-of-type{
	opacity:0.8;
}

#kaso_body #breadcrumb ol li:last-of-type::after{
	display:none;
}

#kaso_body #individual.single{
	padding-top: 120px;
}



/*floating*/

#floating{
	position: fixed;
	top: 30%;
	right: 0;
	z-index: 101;
	transition: opacity 0.3s;
}

#floating ul li{
	max-width: 120px;
	padding: 10px 10px 10px 10px;
	border-radius: 10px 0 0 10px;
	position: relative;
	background: linear-gradient(to right ,#be811e, #d3af4e);
	margin: 0 0 10px;
	border:2px solid #fff;
	border-right:none;
}
#floating ul li:not(:last-of-type){
	background: linear-gradient(to right ,#7e9bbe, #a3c9d4);
}

#floating a{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	z-index:2;
	top:0;
	left:0;
}

#floating ul li:hover .img img{
	transform-style: preserve-3d;
	transition: all 0.5s ease-in-out;
	transform: rotateY(360deg);
	opacity: 0.8;
}


/*#floating ul li:last-of-type{
	background: linear-gradient(to right ,#be811e, #d3af4e);
}*/

#floating ul li .img{
	width: 50px;
	height: 50px;
	margin: 0 auto;
}

#floating ul li span{
	font-size: 14px;
	font-weight: 700;
	display: block;
	text-align: center;
}


#floating.hidden {
	opacity: 0;
	pointer-events: none;
}

/*column card*/
#column .column_head{
	overflow: hidden;
	position: relative;
}

#column .column_head .cate{
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	font-weight: 700;
	padding: 6px 20px;
	width: 60%;
	background: linear-gradient(to right,#c08623,#d3b04e);
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

#column ul.tag{
	z-index: 1;
	overflow: hidden;
}

#column ul.tag li{
	border: 1px solid #333;
	padding: 2px 4px;
	float: left;
	margin: 0 10px 10px 0;
	font-size:12px;
}

#column ul.tag li:nth-of-type(n + 7){
	display: none;
}



#column ul.tag li a{
	padding: 2px 4px;
	display: block;
}

#column ul.tag li:hover{
	color: #fff;
	border-color: #00367d;
	background-color: #00367d;
	transition: all .3s;
}

#column h3{
	font-size:20px;
}



/*single article*/

#article{
	padding:2% 0 0;
}

#article .column_head{
	position: relative;
}

#article .cate{
	position: absolute;
	top: 0;
	font-weight: 700;
	padding: 6px 20px;
	width: 60%;
	background: linear-gradient(to right,#c08623,#d3b04e);
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

section ul.tag li,
section time{
	font-size: 12px;
}


#article time{
	display: block;
	margin: 10px 0;
}

#article ul.tag{
	overflow: hidden;
}

#article ul.tag li{
	float: left;
	border: 1px solid #333;
	margin:0 10px 10px 0;
	padding: 2px 4px;
}

#article ul.tag li:nth-of-type(n + 7){
	display: none;
}

#article h3,
#news h3,
#column h3{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	height: calc(40px * 1.6);
}

/*news*/
#news ul li{
	border-top: 2px solid #d4d4d4;
	border-bottom: 2px solid #d4d4d4;
	padding: 3% 0;
	position: relative;
}

#news ul li a{
	height: 80%;
	top: 50%;
	transform: translateY(-50%);
}

#news ul li:hover h3 {
	color: #0a3a8c;
	transition: all .3s;
}

#news ul li:first-of-type{
	border-bottom: none;
}

#news .news_head{
	display: flex;
	gap: 0 20px;
	align-items: center;
	margin: 0 0 20px;
	white-space: nowrap;
}

#news .news_head .cate{
	border: 1px solid #333;
	padding: 2px 18px;
	font-size: 14px;
}

/* ページネーション*/

div.wp-pagenavi{

	clear: both;
	text-align:center;
	margin: 40px 0 0;

}

div.wp-pagenavi a{	

	border: 1px solid #1a1f8f;
	color: #1a1f8f;
	padding:8px 8px;
	margin: 0 4px;
	text-decoration: none;
	background:#FFF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 15px;
}


div.wp-pagenavi a:hover{

	background:#1a1f8f78;
	border: 1px solid #1a1f8f;	
	color: #fff;
}


div.wp-pagenavi span.pages{

	border: 1px solid #1a1f8f;
	color: #1a1f8f;
	padding:8px 14px;
	margin: 0 4px;
	background:#FFF;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 16px;

}


div.wp-pagenavi span.current{

	border:1px solid #1a1f8f;
	color: #FFF;
	padding:8px 14px;
	margin: 0 4px;
	background:#1a1f8f;
	border-radius: 3px;
	-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 16px;

}

div.wp-pagenavi span.extend{
	display: none;
}

/*コラム ページネーション*/

#pagination{
	background-color: #e5e5e5;
	padding: 0 0 4%;
}

#pagination .inner{
	background-color: #fff;
	padding: 0 0 4%;

}

#pagination nav {
	text-align: center;
}

#pagination ul {
	display: flex;
	justify-content: center;
	gap: 0 20px;
	align-items:center;
}

#pagination ul li{
	position: relative;
	font-weight: 700;
}

#pagination ul li:not(:last-of-type)::after{
	content: '';
	height: 80%;
	width: 1px;
	background-color: #333;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

#pagination ul li a {
	padding: 20px;
	display: block;
	position: relative;
}

#pagination ul li a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: linear-gradient(to right,#161f64, #019be4);

}

#pagination ul li a:hover::after{
	width: 100%;
	transition: all .3s;
}

/*scroll top*/
.pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: #fff;
	border: solid 2px #161f64;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.pagetop__arrow {
	height: 10px;
	width: 10px;
	border-top: 3px solid #161f64;
	border-right: 3px solid #161f64;
	transform: translateY(20%) rotate(-45deg);
}
.grecaptcha-badge {
	visibility: hidden;
}

/*animation*/

@keyframes slideLine{
	0%{
		opacity: 0;
		left: 0;
	}

	100%{
		opacity: 1;
		left: 50%;
	}
}


.en{
	font-family: "Oswald", sans-serif;
}

.sp,
.tablet{
	display: none !important;
}

/*animation*/

.curtain{
	position: relative;
}

.curtain_anim::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background:#e9eced;
	z-index: 2;
	top: 0;
	right: 0;
	animation-name: curtain_anim;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

#product .curtain_anim::before,
#news .curtain_anim::before,
#access .curtain_anim::before{
	background:#fff;
}

@keyframes curtain_anim{
	from {

		width: 100%;
	}
	to {
		width: 0;
	}
}

.fade{
	opacity: 0;
}
.fade_anim{
	animation-name: fade_anim;
	animation-duration:2s;
	animation-fill-mode:forwards;

}
@keyframes fade_anim{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*RESPONSIVE*/
@media print, screen and (min-width: 1280px) and (max-width: 1759px){
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
	p{
		font-size:15px;
	}
	#sub .util_ttl .en{
		font-size:60px;
	}
	#sub .content_wrap{
		padding:4%;
		width:100%;
	}
	#sub .content_wrap .content_l a {
		font-size: 34px;
	}
	#sub .content_wrap .content_r a{
		padding: 10px 20px;
		justify-content: center;
	}
	#kaso_body #mv .txt p.en {
		font-size: 62px;}
	#kaso_body h1 {
		font-size: 20px;
	}
	#kaso_body #breadcrumb ol{
		font-size:14px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
}

@media screen and (min-width: 1759px){
	#header ul{
		width: 54%;
	}
}

@media screen and (max-width: 1279px){

	.util_ttl .en{
		font-size: 80px;
	}
	.tablet{
		display: block !important;
	}

	#kaso_body #individual.single{
		padding-top: 60px;
	}

	/*HEADER*/

	#header{
		height: 60px;
		border-bottom: 1px solid #fff;

	}

	#header .logo.tablet {
		max-width: 180px;
		padding: 10px 0 0 20px;
	}

	#header .hamburger {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		width: 60px;
		height: 59px;
		padding: 0;
		border: none;
		background: #000;
		cursor: pointer;
		display: block;
	}

	#header .hamburger_wrapper {
		position: relative;
		width: 30px;
		height: 20px;
		margin: 20px auto;
	}

	#header .hamburger_wrapper span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	}

	#header .hamburger_wrapper span:nth-child(1) { top: 0; }
	#header .hamburger_wrapper span:nth-child(2) { top: 9px; }
	#header .hamburger_wrapper span:nth-child(3) { top: 18px; }

	#header .hamburger.active .hamburger_wrapper span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	#header .hamburger.active .hamburger_wrapper span:nth-child(2) {
		opacity: 0;
		transform: translateX(20px);
	}

	#header .hamburger.active .hamburger_wrapper span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	#header nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		visibility: hidden;
		z-index: 900;
	}

	#header .fade_bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.95);
		opacity: 0;
		transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	}

	#header nav.active {
		visibility: visible;
	}

	#header nav.active .fade_bg {
		opacity: 1;
	}

	#header .inner {
		position: relative;
		flex-direction: column;
		justify-content:flex-start;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		padding: 60px 0;
	}

	#header ul{
		width: 92%;
		flex-wrap: wrap;
		margin: 4% 0 0;
	}

	#header ul li {
		width: calc(100% / 5 - 16px * 4 / 5);
		position: relative;
		opacity: 0;
		transform: translateY(80px);
		transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	}

	#header nav.active ul li {
		opacity: 1;
		transform: translateY(0);
	}

	#header ul li:last-of-type{
		width:100%;
		margin: 6% 0 0;
		display: flex;
		justify-content: center;
	}

	#header ul li:not(:last-of-type) a::before{
		background-color: #fff;
		bottom: -10px;
	}

	#header ul li:not(:last-of-type) a:hover span.en{
		color: #fff;
	}

	#header nav.active ul li:nth-child(1) { transition-delay: 0.2s; }
	#header nav.active ul li:nth-child(2) { transition-delay: 0.35s; }
	#header nav.active ul li:nth-child(3) { transition-delay: 0.55s; }
	#header nav.active ul li:nth-child(4) { transition-delay: 0.75s; }
	#header nav.active ul li:nth-child(5) { transition-delay: 0.95s; }
	#header nav.active ul li:nth-child(6) { transition-delay: 1.05s; }

	#floating ul{
		width: 100%;
	}
	#floating ul li{
		padding: 10px 4px 10px 4px;
	}
	#floating ul li .img {
		width: 45px;
		height: 45px;
	}
	#floating ul li span {
		font-size: 12px;
	}
	#kaso_body #breadcrumb ol li{
		font-size:12px;
	}
	#kaso_body #lead p{
		font-size: 20px;
	}
}

@media screen and (max-width: 1023px){


}




@media screen and (max-width: 767px){
	/*COMMON*/
	section{
		padding: 12% 0;
	}
	h2 {
		font-size: 16px;}

	h3{
		font-size: 18px;
	}
	p {
		font-size: 16px;
	}

	.util_ttl .en {
		font-size: 60px;
	}
	.util_btn{
		margin: 8% auto 0;
	}

	.content_wrap{
		flex-direction: column;
	}


	.pc{
		display: none !important;
	}
	.sp{
		display: block !important;
	}


	/*HEADER*/

	#header .logo {
		max-width: 180px;
		margin: 0 auto 0 0;
	}

	#header .inner {
		padding: 40px 4%;
	}

	#header ul{
		width: 100%;
		flex-direction: column;
		gap: 20px 0;
		margin: 8% 0 0;
	}

	#header ul li:not(:last-of-type){
		width: 100%;
		text-align: left;
	}

	#header ul li:not(:last-of-type) a{
		width: 80%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-end;
	}

	#header ul li:not(:last-of-type) a span.en{
		margin: 0 20px 0 0;
	}

	#header ul li:not(:last-of-type) a::before{
		opacity: 1;
		height: 1px;
		width: 100%;
		left: 0;
		bottom: 0;
		transform: none;
		pointer-events: none;
	}
	#header ul li:not(:last-of-type) a:hover::before{
		animation: none;
	}

	#sub{
		padding: 8% 0;
	}

	#sub .util_ttl .en{
		font-size: 50px;
	}

	#sub .content_wrap{
		width: 100%;
		flex-direction: column;
	}
	#sub .content_wrap .content_l, #sub .content_wrap .content_r{
		width: 100%;
	}

	#sub .content_wrap .content_l a{
		font-size: 30px;
	}
	#sub .content_wrap .content_l{
		margin: 0 0 8%;
	}

	#sub .content_wrap .content_r a .en {
		font-size: 26px;
	}

	#sub .content_wrap .content_r .util_btn{
		padding: 10px 40px;
	}

	#floating{
		bottom:0;
		top: auto;
		left:0;
		width: 100%;
	}

	#floating ul{
		height:60px;
		display:flex;
		margin:0 auto;
	}

	#floating ul li{
        width: calc(100% / 2 - 6px * 1 / 2);
		border-radius: 10px 10px 0 0;
		margin:0 auto;
		max-width: 200px;
				display: flex;
		justify-content: center;
		align-items:center;
		box-shadow:4px 4px 4px rgba(51,51,51,0.3);
		gap:0 10px;
			border:2px solid #fff;
	border-bottom:none;
	}

	#floating ul li:not(:last-of-type){
		margin: 0 0 0 auto;
	}

	#floating ul li .img{
        width: 30px;
        height: 30px;
        margin: 0 0 0 30px;
	}

	#floating ul li span{
        font-size: 14px;
        width: calc(100% - 70px);
        display: block;
        text-align: left;
	}
	

	#kaso_body #mv .txt p.en{
		font-size: 52px;
	}

	#kaso_body h1{
		font-size: 18px;
	}

	#kaso_body #breadcrumb ol{
		font-size: 12px;
	}


	#news .news_head .cate{
		font-size: 14px;
	}

	#pagination{
		padding:0 0 8%;
	}


	div.wp-pagenavi span.pages{
		display:none;
	}
	div.wp-pagenavi a{
		padding:8px 14px;
	}
	#kaso_body #lead p{
		font-size:15px;
	}
	#article h3,
#news h3,
#column h3{
	height: calc(32px * 1.6);
}
	
	.pagetop{
		bottom:70px;
		right:10px;
	}

}
@media screen and (max-width: 520px){
	p{
		font-size: 15px;
	}
	#about .util_ttl{
		width:50%;
	}

	#article .cate{
		padding: 4px 12px;
		width: 80%;
	}
	#kaso_body #mv .txt p.en{
		font-size:46px;
	}
	#kaso_body h1 {
		font-size: 15px;
	}


	footer .logo {
		max-width: 190px;
		margin: 6% auto 20px;
	}

	footer ul {
		flex-wrap: wrap;
		text-align: center;
		gap: 10px 10px;
		font-size: 13px;
	}

	footer ul li{
		width: calc(50% - 10px * 1/ 2);
	}

	footer ul li::after{
		display: none;
	}

	footer{
		padding:4% 0 20%;
	}

	.pagetop {
		height: 45px;
		width: 45px;
		right: 10px;
		bottom: 65px;
	}
	#kaso_body #individual.single {
		padding-top: 50px;
	}


}